Tag Archives: how to

HTML5 tip: Yes, you can still use div

“Sorry, can you say that again?”, I hear you ask. Certainly: you can still use >! Despite HTML5 bringing us new elements like >, >, and >, the > element still has its place. Let the HTML5 Doctor tell you why.
Read the full article at the source.

Read more

Simpler Ant Builds With the Ant Script Library

Ant may be unfashionable these days, but it still has its advantages. Key among these are familiarity and simplicity: most Java developers have worked with Ant, and with an Ant build what you get is what you see. A major disadvantage, though, is that Ant provides very little out-of-the-box.. [...]
Read the full article at the [...]

Read more

ASP.NET MVC 3: Using multiple view engines in same project [.NET Zone]

One of nice features of ASP.NET MVC 3 is support for multiple view engines. There will be two out-of-box view engines: one for classic ASPX-based views and one for Razor-based views. In this posting I will show you this new feature and demonstrate how to use different view engine in same project.. [...]
Read the full [...]

Read more

.NET Hidden Gems – Memory fail points

I am embarking in a series of mini post called .NET hidden gems, not necessarily new bits but usually unknown. They are dedicated to those small features and components that are not commonly used but can deliver interesting value in certain scenarios.. [...]
Read the full article at the source.

Read more

Never having to use $_GET or $_POST again

I completely missed this great new feature build in PHP 5.2 since I haven’t been using much vanilla PHP lately due to my preference for CodeIgniter.
Read the full article at the source.

Read more

How to Turn Your Android Phone into a Fully-Automated Superphone

What if your phone automatically went silent when you step into the movie theater? Texted your significant other when you finished your long commute? Or automatically turned down the volume when a particularly loud friend called? It can; here’s how.
Read the full article at the source.

Read more

Practical PHP Patterns: Two Step View

The Two Step View pattern, as its own name suggests, proposes a mechanism composed of two steps for generating an HTML page: first, a logical representation of the page is produced, as a map (key => value) of the different elements of the page. Then, the physical representation is rendered, by juggling around the single [...]

Read more

SQL Server – Backup of a FILESTREAM database may include garbage files as well

This post demonstrates that the backup of a FILESTREAM database in SQL Server 2008/R2 may also include garbage files that are lying around at the time of taking the backup.
Read the full article at the source.

Read more

Android UI: Making an Analog Rotary Knob

In this article we recreate an analog knob on Android. The result includes realistic touch-based rotation, worn textured look and even sound effects. Source is included.
Read the full article at the source.

Read more

Creating a tar.gz file in Java

Today’s article demonstrates how to create a tar.gz file in a single pass in Java.
Read the full article at the source.

Read more