Category Archives: Programming

Five reasons why HTML5 is much better to Flash

14th
Jun. × ’10
If the war was popular in internet browsers, then the standards, now is the HTML5 versus Flash . Which is better? – Why prefer one over another? I think HTML5 is the future. I also believe that Flash has always been a nuisance rather than an asset (and I think since 1999, eight years before [...]
Posted in Programming | Tagged , | Leave a comment

A company will plant one tree for every bug you find their applications

2nd
Sep. × ’09
If you are a lover of ecology and a potential hacker, perhaps this initiative and is a good way to combine both, as the company Kentico, which is responsible for developing software, launched what it called “Trees For Bugs”. The project aims to plant a tree every time someone finds a bug in some of [...]
Posted in Programming | Tagged | Leave a comment

PostgreSQL 8.4 maintains its distance with rivals

2nd
Jul. × ’09
The Group PostgreSQL Global Development has released version 8.4 of the database of open source with advanced features. There are nearly 300 improvements to administration, programming and query language opening up new possibilities with this database. Some improvements are: * Restoring the database using parallel processes, accelerating the recovery of a back up to 8 [...]
Posted in Programming | Tagged , , | Leave a comment

Add/Remove NewLine in SQL Query

9th
Feb. × ’09
Add NewLine in SQL Query:     Code: Declare @FristName Char(10) Declare @LastName Char(10)  Set @FristName = ‘Venu’ Set @LastName = ‘Thomas’  Select (@FristName + CHAR(13) + CHAR(10)+ @LastName) As Name OutPut: Name   ———————-  Venu       Thomas     (1 row(s) affected)   Remove NewLine in SQL Query: Code: Declare @FristName Char(5) Declare [...]
Posted in Programming | Tagged , | Leave a comment

ASP.NET MVC 1.0 Release Candidate Now Available

28th
Jan. × ’09
Today we shipped the ASP.NET MVC 1.0 Release Candidate (RC).  Click here to download it (note: the link just went live so if it isn’t working wait a few minutes for the server you are hitting to refresh).  It works with both Visual Studio 2008 and Visual Web Developer 2008 (which is free). Today’s RC is the [...]
Also posted in Download, Technology | Tagged , | Leave a comment

ASP.Net 2.0 – Master Pages: Tips, Tricks, and Traps

19th
Jan. × ’09
Good article about tips, tricks and traps around the master-page feature in ASP.Net 2.0. Click Here…
Also posted in Technology | Tagged , | 1 Comment

40 Tips for optimizing your PHP code

14th
Dec. × ’08
Here useful 40 trip for optimizing your PHP code http://reinholdweber.com/?p=3
Also posted in Technology | Tagged | Leave a comment