A brand new(and efficient) way to implement Paging
Here is a link I bumped into while doing some R&D. As usual, couldn't stop my self... and posted it here. http://weblogs.asp.net/scottgu/archive/2006/01/01/434314.aspx
My personal blog... mostly technical posts and few things about me....
Here is a link I bumped into while doing some R&D. As usual, couldn't stop my self... and posted it here. http://weblogs.asp.net/scottgu/archive/2006/01/01/434314.aspx
Posted by Chinmay at Wednesday, December 20, 2006 0 comments
Labels: .Net
Posted by Chinmay at Wednesday, December 20, 2006 0 comments
Labels: .Net
Posted by Chinmay at Tuesday, December 19, 2006 0 comments
As you all know, now I've got what I always wanted, I am kindda free now, so I've decided I'll answer most of the queries you guyz had when I was there. As a part of that, here are the online resources I use a lot :
Non-Microsoft Subscriptions I Use
SDTimes.com
Redmondmag.com
101Communications.com(For Free Subscriptions)
MCPMag.com
ENTOnline.com
Tcpmag.com
Microsoft Subscriptions I Use
MS Architecure Journal - Hard Copy as well as Soft Copy:D
MSDN Flash India and International
MCP Flash
Microsfot Security bulletin and Notifications
TechNet Flash
Mobile PC
Sites I Use
TechTree.com
Experts-Exchange.com
CodeProject.com
bytemycode.com
PCQuest.com
msdn.microsoft.com
geekinterview.com
google.com
Posted by Chinmay at Thursday, December 07, 2006 0 comments
Labels: Microsoft
Posted by Chinmay at Tuesday, November 28, 2006 0 comments
Recently I got a a mail clearly asking information regarding Archive Bit that is available on FAT32, NTFS and its implications from Developer's perspective. So here is an article that will try to throw some light on this topic.
According to PCMAG : A file classification that indicates whether the file has been updated since the last backup. A bit is set in the file directory to indicate the archive status. When a file is created or saved, the bit is turned on. When it is backed up, the bit is turned off.
and technically its a file attribute controlled by the high-order bit of the t3 byte (FCB + 11) in a directory element. This attribute is set if the file has been archived.
Here is a VBScript code sample that shows how to access File Attributes.
http://sallisawok.org/caspdoc/html/vbscript_file_object_attributes_property.htm
Posted by Chinmay at Monday, November 06, 2006 0 comments
Google has launched yet another Developer friendly service yesterday ie Google CodeSearch(http://www.google.com/codesearch).
It's a search engine developed for developers and it provides an interface to use RegEx to search code snippets they are looking for. I didn't try it much as now I am headed to some other things... I felt it will be extremely useful to you people.
Google Code Search helps you find function definitions and sample code by giving you one place to search publicly accessible source code hosted on the Internet. With Google Code Search, you can:
- Use regular expressions to search more precisely
- Restrict your search by language, license or filename
- View the source file with links back to the entire package and the webpage where it came from
Posted by Chinmay at Friday, October 06, 2006 0 comments
I was looking at the newsletter from CodeProject and got my eyes on this kewl article. Have a look at this tiny (aaaargh) article.
Posted by Chinmay at Tuesday, September 12, 2006 0 comments
Hey hey.... it's been a long long time... I agree... yes.... its been a long time... had gone through many things in last 6 months, got VNS Series of projects, took part in MS Security Shootout 2006(http://www.securityshootout.com) also decided what I will be doing next few years...of course its Software Development but now I can see it, define it and then it comes to my mind that going on that path I'll need something on my side, some credential/certification and what in this world is better than MS Certifications if you are a .Net Developer? So today was a big day, I went to Crystal Arcade at CG Road, Ahmedabad and I got my first MS Certification i.e. Microsoft .NET Framework 2.0 - Application Development Foundation C# (70-536). The exam was tough but the MSDN2, Virtual Labs and Visual Studio Express/Beta editions I used was sufficient enough to crack it. And I got it done, it took time, but it was done. And now I am heading towards the Final Destination for a Developer lets see how does it rolls out....
Posted by Chinmay at Wednesday, August 09, 2006 0 comments
Many of my friends recently asked me about GAC and the Side by Side Versioning support .Net provides. After doing a lot of R&D, one of them came up with a question like this : How to use two different versions of an assembly by using a GAC. He knew how to add Assemblies to GAC so that was not at all a problem, infact, if you refer to HOW TO: Install an Assembly into the Global Assembly Cache in Visual Studio .NET its pretty simple. However, after you add it to GAC, the .Net IDE doesnt show you those assemblies, listed in Add Reference Dialog Box.
After searching MS KB, I got an easy way to do that, here it follows :
Open Registry Editor and add the following Key to it.
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\AssemblyFolders\ESSAssemblies]@="C:\\ESSAssemblies"
Here, ESSAssemblies is the name of the Folder where your Assemblies reside.
Posted by Chinmay at Monday, January 30, 2006 0 comments