Proper use of Strings in Java
Discover when and when not to use Strings in Java. This article describes in an easy way a common pitfall when working with Strings in... more »
Tweet 0 Comments Save Tags: how-to , java
Android and Windows Phone 7: Part 2 – Emulators - WP7
One of the key components of a mobile development environment is the emulator that will allow developers to test their applications (to... more »
Tweet 0 Comments Save Tags: how-to , microsoft , mobile , tools
Stop waiting, start array dereferencing in PHP now!
Ever since I started programming object oriented PHP I've been using function chaining and function dereferencing. But there is another... more »
Tweet 0 Comments Save Tags: how-to , php
Why describing your project is a good idea and why people won't steal it
Way to often, when you talk to your friends about your great idea, you just came up with "I have this new idea, but well, I can't talk to... more »
Tweet 0 Comments Save Tags: how-to , methodology , opinion
Getting Started with Memcached Distributed Memory Caching
Cache is memory used to store the most frequently used resources, because accessing resources from a cache is faster than accessing them... more »
Tweet 0 Comments Save Tags: how-to , tools , trends , web services
Visual Studio 2010 Database Projects Guidance
VS 2010 database project guidelines enlighten the scenarios and different approach of using the VS 2010 tools more effectively and... more »
Tweet 0 Comments Save Tags: .net , database , how-to , microsoft
Speed Dating - Using time compression instead of MDX Cubes to deliver rapid data analysis
The term “data warehouse” may have originated because it once took a literal warehouse to hold all the servers you needed to store a few... more »
Tweet 0 Comments Save Tags: database , how-to , microsoft , server
Google Data Java Client API - Java Tutorial
The Google Data Protocol is an Application Programming Interface released by Google Inc. This API creates an interface which gives a... more »
Tweet 0 Comments Save Tags: how-to , java , tools
Setting Up Android Development Environment Using Eclipse
Setting Up Android Development Environment Using Eclipse
Tweet 0 Comments Save Tags: eclipse , how-to , java , open source
Performance Optimization: How to Load your javascript faster!
Load your javascript fasterJavascript is now extremely important. Some sites use javascript for a tiny enchantments, many of today’s... more »
Tweet 0 Comments Save Tags: how-to , javascript
Nice and Naughty Transactions in Hibernate and Spring
I came across a very interesting fact about Spring transaction management.
Tweet 1 Comments Save Tags: frameworks , how-to , java , reviews
Top 3 Performance Problems in Custom Microsoft CRM Applications
Last week I got engaged with a company that built a custom application on top of MS CRM. In their testing lab they experienced very slow... more »
Tweet 0 Comments Save Tags: .net , how-to , microsoft , web 2.0
Scala: SwingBuilder Essentials
A distinguishing feature of the Groovy programming language is its builders. A Groovy builder lets you imbed hierarchical structures... more »
Tweet 0 Comments Save Tags: frameworks , groovy , how-to , other languages
New AIR Launchpad Gets Apps Off the Grown Faster
As developers learn to build desktop applications with Adobe AIR and Flex, they tend to face a similar set of challenges - creating... more »
Tweet 2 Comments Save Tags: flash-flex , how-to , news , tools
Android and Windows Phone 7: Part 1 – setting up the environment
I recently got to work with an Android device, so I decided to start working with Android development tools, to see how far I can get... more »
Tweet 1 Comments Save Tags: how-to , microsoft , mobile , tools
Converting Ntext column to Nvarchar(max) in SQL Server
In this short post, I will show you how to convert ntext column to nvarchar(max).
Tweet 0 Comments Save Tags: .net , database , how-to
How to make same height of cell across tables
We always have this case specially using DataList control in ASP.NET as if its asked to use Table format; it creates table in which... more »
Tweet 1 Comments Save Tags: .net , how-to , microsoft , tools
MongoDB and CouchDB: vastly different queries
Both MongoDB and CouchDB are document-oriented datastores. They both work with JSON documents. They both are usually thrown into the... more »
Tweet 0 Comments Save Tags: database , how-to , other languages
How to build a Kanban board
When I arrived here at Allbus S.r.l. as a consultant two weeks ago, the team was busy developing a managerial web application. After... more »
Tweet 0 Comments Save Tags: agile , how-to , methodology , tools
Temp Table VS Table Variable in SQL Server
Here are some differences between Temp Table and Table Variable in SQL Server.
Tweet 0 Comments Save Tags: .net , database , how-to
jQuery and Ajax Best Demos Part-7
A Collection of jQuery, Ajax and PHP Tutorials with live demos, tutorials posted on 9lessons blog. In these demos I had explained about... more »
Tweet 1 Comments Save Tags: ajax , how-to , javascript , web design
TSQL Tips and Tricks - Different ways to know the server name
This post shows different ways of determining the server name from TSQL.
Tweet 0 Comments Save Tags: database , how-to , microsoft , server
TSQL Beginners Challenge 15 - Reverse the order of words within a sentence
This challenge is to reverse the order of words within a sentence. Most of us must be familiar with reversing the order of letters within a word.
Tweet 0 Comments Save Tags: database , how-to , microsoft , research
OSGi Readiness — Loading Classes
In my previous post on “OSGi Compliance”, I discussed the idea of making libraries ready for OSGi without depending on OSGi directly. In... more »
Tweet 0 Comments Save Tags: frameworks , how-to , java , trends
Java Garbage Collection
It deals with identifying and freeing the memory of java application that are not used for a long time. There are two type garbage... more »
Tweet 0 Comments Save Tags: how-to , java