-
Recent Posts
Categories
- Android (15)
- Applications (9)
- Development (14)
- GLSL (2)
- Java (9)
- LibGDX (2)
- Math (5)
- Photography (1)
- Scala (3)
- Timelapse (1)
- Tips and Tricks (3)
Tags
Archives
Tag Archives: programming
BigDecimalMath
Java 8 is out and there are still no Math functions for BigDecimal. After playing around with some implementations to calculate Pi I decided to write some implementation of BigDecimalMath to fill this gap. The result of this is available … Continue reading
Posted in Development, Java, Math
Tagged algorithm, BigDecimal, Java, math, optimization, performance, precision, programming
8 Comments
Make an App available on Android 1.5 and small screen
I have always published my simpler Android applications for all Android devices version 1.5 and higher. I thought this would allow the application to run on the maximal number of devices. Recently I bought a new Android phone for testing: … Continue reading
Posted in Android
Tagged Android, Android 1.5, Android 1.6, Android Market, programming, small screen
Leave a comment
How Scala influenced my Java Programming
For a while I have been experimenting in my free time with Scala. While I don’t believe that I will use Scala at work in the near future I have nevertheless noticed that Scala has changed the way I think … Continue reading
Posted in Development, Java, Scala
Tagged collections, concurrency, DSL, functional, immutable, Java, programming, scala, tuple
Leave a comment
Using Force-Based Graphs
This is a collection of my experiences using force-based algorithms to draw graphs. I used this algorithm in the Wiki Spiderweb application. Here the good points: Easy to implement Natural looking results User interaction is possible Some influence of placement … Continue reading
Using images from HTML in assets directory
The last post described how to show an HTML file in Android from the assets directory in the WebView. Sooner or later you will want to show images in the HTML. Solution 1 : Images in assets directory The easy … Continue reading
Posted in Android, Development, Tips and Tricks
Tagged Android, assets, image, programming, resource
Leave a comment
Language specific HTML Help in Android
Sooner or later your application becomes so complex that you want to be helpful to the user. One way of being helpful is to provide a help text that explains how to use the application. Solution 1 : Use a … Continue reading
Posted in Android, Development, Tips and Tricks
Tagged Android, help, HTML, Java, programming, resource
Leave a comment