All posts in 'English posts'

Optimizing web resources with wro4j, Spring and ehcache

18-Jan-12

I think that almost no website today can do without JavaScript. There are some incredible good JavaScript libraries like jQuery for which an enormous mass of plugins and extensions exits. The downside of this is, that for example the JavaScript code of my daily picture project Daily Fratze is bigger than the whole startpage of […]

Read the complete article »

Creating a CSRF protection with Spring 3.1

11-Jan-12

Note: This tutorial is for Spring Security 3.1, an updated version that uses the build-in CSRF protection of Spring Security 3.2 can be found here CSRF Attacks still seems to be a problem, a pity that there is no standard solution in the Spring 3.1 framework. Although not probably, i wanted to protect my projects […]

Read the complete article »

Mac OS X Lion loses network connection after sleep

05-Jan-12

Sleep related problems have never been a problem for me with OS X (at least the sleep of the machine) since Lion. Sleep works perfectly fine but after wake my machine has no internet connection anymore, at least it looks like this. It’s only domains that aren’t resolved anymore. It also affects wired and wifi […]

Read the complete article »

Git snippets

22-Dec-11

These are a view things that i had looked up to solve some problems and i plan to update this post regularly… To push a new branch to remote git push origin new_branchgit push origin new_branch To delete a remote branch git push origin :new_branchgit push origin :new_branch To push new tags git push –tags […]

Read the complete article »

oEmbedding twitter updates with Java and WordPress

20-Dec-11

I’m really a big fan of oEmbed. My project Daily Fratze acts as oEmbed provider and consumer for example. Now I’m really happy that twitter announced that it now acts as an oembed provider: Introducing the statuses/oembed endpoint: dev.twitter.com/docs/api/1/get… ^TS — Twitter API (@twitterapi) Dezember 8, 2011 (I’d even be happier if twitter would autodiscover […]

Read the complete article »