Tag Archives: tips

Roundup – Royalty Free Icons and Images for Web Developers

We all need, ‘em – quality icons and images for websites and applications. One of the biggest problems is finding packs that are – Consistently high quality Have a consistent look and feel There’s little point in have a hodge-podge … Continue reading

Posted in Design, Software Engineering | Tagged Design, guides, images, tips | Leave a comment

Wicket – forcing page reload on browser back button…

An interesting issue arises when doing AJAX with Wicket, where you have an AJAX-enabled page with a bunch of controls that get generated/refreshed by AJAX. The user then navigates to another page, and subsequently hits the back button and returns … Continue reading

Posted in Java, Software Engineering | Tagged ajax, Java, tips, web, wicket | 7 Comments

1 second guide – enabling gzip compression in Apache Tomcat

This is one of those note-to-self posts. Add the following attributes to the <Connector> in Tomcat’s server.xml to enable gzip compression of responses: compression=”on” compressionMinSize=”2048″ compressableMimeType=”text/html,text/xml,text/csv,text/css,text/javascript” Done.

Posted in Java, Software Engineering | Tagged Java, tips, tomcat | Leave a comment

Wicket On Google App Engine (GAE) – Deployment Configuration

Just a quick tip – generally with Wicket we want to supply our application with a way to choose between “Development” vs. “Deployment” mode automatically, so that we can get stack traces etc. during development and disable development features for … Continue reading

Posted in Java, Software Engineering | Tagged app-engine, Google, Java, open-source, tips, wicket | 1 Comment