Programming

Working with ASP

by Guest-Blogger on January 11, 2011

in ASP.Net

ASP stands for Active Server Pages. These are pages that, in addition to the ordinary HTML code of a web page, have added commands that a web server processes before sending the web page to the browser. These extra commands are called server side scripts. ASP web hosting allows these scripts to be implemented and [...]

{ 0 comments }

Just completed an article on how Non-JavaScript Programmers can create attractive yet SEO Friendly Drop Down Menu Using JQuery. Share your views in comments below

{ 0 comments }

Watermark Images in PHP

by Shabbir on May 15, 2010

in PHP

I was thinking about writing this article for quite sometime now but somehow it was getting delayed but finally today I decided to get this done. How to watermark images in PHP on the fly Do share your views in comments.

{ 0 comments }

How to Make Money with PHP

by Shabbir on December 21, 2009

in Make Money,PHP

PHP is one of the hottest skills for quite some time now and Elance Work Index also confirms the same. If you are an averagely good in PHP you can make handsome money doing small to mid size freelancing projects in PHP at Elance. What is your hottest skill(s)? Share them in comments … For [...]

{ 17 comments }

Elance published October Elance Work Index which ranks the hottest skills in-demand and hiring trends in the freelance industry on the Web in October. PHP is still at the top but CMS and specially Joomla getting hot with lots of projects posted. Though Graphic design looses some places and points, Adobe Illustrator gains quite a [...]

{ 0 comments }

Elance published the September Elance Work Index which ranks the hottest skills in-demand and hiring trends in the freelance industry on the Web in September. PHP, graphic design, flash and article writing were among the fastest growing skills in demand. Check out September Elance Work Index at the official blog.

{ 2 comments }

Good C++ Books

by Shabbir on July 17, 2009

in C/C++

I have used Google book search to find some of the best books in c++. Here are my collection. Nice book to start with your C++ learning and it should be one of the first book to start with. It covers all the basics about C++ in a very simple and easy way. Google book [...]

{ 1 comment }

ASP at a glance

by Shabbir on April 10, 2009

in ASP.Net

ASP contains text, HTML tags and different scripts. These scripts in an ASP file are executed on the server.Before learning ASP one should have knowledge of VBscript or Java script.ASP means Active Server Pages and this pages runs on Internet Information Services .ASP file is the same as HTML file it contains HTML, XML, and [...]

{ 1 comment }

AJAX Explained

by Shabbir on April 10, 2009

in Programming

AJAX means  Asynchronous JavaScript And XML.It is a method to create web applications in more faster way.In this without loading the page Javascript communicates with the webserver.It uses asynchronous data transfer so that webpages can request information in small bits.AJAX is supported by all the servers.As AJAX directly communicates with the server so one need [...]

{ 1 comment }

Bytecode helps to solve Java’s portability and security problem. It is a highly optimized set of instructions designed  to be executed by Java run-time system,which is called as  Java Virtual Machine (JVM).JVM is an interpreter for bytecode,it helps to solve major problems associated with downloading programs over the Internet . Let us see portability and [...]

{ 3 comments }

WordPress as CMS

by Shabbir on December 13, 2008

in CMS,PHP

Every website uses CMS to manage the content effectively and there are so many CMS available to to be used it sometimes becomes very difficult to decide which one is best for your needs. Here I am going to discuss about WordPress theme which many believe is a blogging engine but thats actually not true [...]

{ 3 comments }

PHP comes with an in-built function to display time in your required format, but what if you want to display date and time according to user’s timezone, that’s where PEAR package Date comes in. Let’s see how we can convert a date in GMT to IST. <?php // include class include ("Date.php");   // initialize [...]

{ 0 comments }

PHP has come a long way in the last few years and now its one of the most popular known web language but has any one of us thought why the Name of the language is PHP and nothing else Or what is the full form of PHP. If No read through the complete post [...]

{ 1 comment }

Safe Programming

by Shabbir on August 22, 2008

in C/C++

Once doing Code Review I found a code snippet like this and so thought would share my experience here. CDialog *SomeDialog = new CMyDialog(<<Some Param>>); SomeDialog->SomeFunction(this); In the above code we always assume that SomeDialog is always allocated with the CMyDialog class pointer but that may not be the case always and so its always [...]

{ 5 comments }

Many developers like me tend to write code in ANSI compilation till we managed to get our hands on Visual Studio 2005 where the default setting is Unicode compilation and so you may need to be using the _T() / TEXT like function and if you are aware of them your life could become hell. [...]

{ 4 comments }