Author Archive

18 of my Favorite Corporate Software Engineering & Tech Blogs

by Hendrik Will. 0 Comments

Here is my actual favorite list of Corporate Software Engineering & Tech Blogs of young web startups and big guys like Twitter, Facebook and Pinterest.

You can get interesting insights how they can handle millions of users every day. They share programming techniques, tool reviews and deal with topics like High Scalability, Infrastructure, Software Architecture and Big Data.

Definitely a good way to learn new stuff and catch up with the latest trends.

Measure elapsed time in Nanoseconds with Java

by Hendrik Will. 0 Comments

For my recent experimental gaming project I wanted to measure the overall elapsed time since the beginning of a game.
In my main class I added a startup variable of type long which contains the current time in nanoseconds. At the end of a game call the function stopWatch(startup); to get the elapsed time in seconds.

Flickering Sencha Touch Animations on Android

by Hendrik Will. 3 Comments

After deploying my project on Android Devices I found out about some annoying bug in Sencha Touch. It causes flickering on Android when using Animations like cardSwitchAnimation: ‘slide.’ All available solutions didn’t seem to fix this issue on my setup completely. I was using a tabBar at the bottom of my application and the icons of it didn’t get rendered when the app loaded for the first time.

Hibernate Dependencies for a Maven Web App

by Hendrik Will. 0 Comments

If you’re using Maven to build a Web App with the latest version of Hibernate you only need to add the hibernate-core dependency to your pom.xml (Project Object Model).  The Hibernate project added their own pom.xml which will download all other library dependencies from the Maven repository for you automatically.

I saw that many blogs still refer that you have to add many dependencies to use Hibernate which confused me a lot. Also JBoss recently started to sync their repository with the Maven repository. So there is no need to add another JBoss repository to your pom.xml.

“TYPO3 Templates” book review

by Hendrik Will. 2 Comments

Packt Publishing asked me to review their latest book about TYPO3 Templates by Jeremy Greenawalt.

This book covers everything you should know about TYPO3 Template Engine TemplaVoila. You’ll learn everything from install of the extension to mapping a template from scratch. This method more easy  than the classic marker method or the makeautotemplate extension.

The book also has a whole chapter about different kinds of menus TYPO3 brings with it and shows how to use them with TemplaVoila. Another interesting chapter is about customization of the backend for backend users and groups.

Last but not least they even cover BusyNoggin’s TemplaVoila Framework in a whole chapter. This is quite interesting and you should definitely read it.

In my opinion this book gives a good overview about TemplaVoila template building and even gives some outlook to the Framework. I think this book is good for beginners and intermediate users who would like to learn using from scratch or learn some more advanced techniques. Designers should be familiar with HTML/CSS. Experts may not find anything new.

Table of contents

Sample Chapter: Chapter No.4 ”Creating Flexible Menus”

Here you can buy the book!

Is Jolicloud 1.1 really the web of tomorrow?

by Hendrik Will. 1 Comment

I just stumbled upon the Jolicloud 1.1 operating system which has been developed especially for Netbooks. It is based on the Ubuntu Netbook Remix Linux distribution and shows lots of HTML5 capabilities. There is a Windows installer but you can also install it as your primary operating system. To gain a better impression of Jolicloud I installed it as virtual instance  with Oracle’s VirtualBox. Of course you could also install it on your USB drive.

How to export your Delicious bookmarks to a XML file

by Hendrik Will. 6 Comments

Today, there have been rumors that Yahoo!’s bookmarking service Delicious will be shut down soon. If you’re scared about losing all your bookmarks there are two ways how to save all of your Delicious bookmarks.

First option would be to use their export option. This way you will get a HTML file.

Second more advanced option would be to use curl+Delicious API and grab all of your bookmarks including tags to an XML file.