I have found a good collection of e-books on digital photography. I haven't read all of them. So I can't tell you which one is good and which one is not. I am definitely planning to read few of them - at least the books by famous Ansel Adams. You can download them from here.
If you happen to know any good books on photography, please leave the name in the comment section.
Showing posts with label download. Show all posts
Showing posts with label download. Show all posts
Monday, May 11, 2009
Friday, October 24, 2008
10 Open Source Desktop Softwares I Use Everyday On My Windows Machine
I am a big fan of open source and free softwares. Here is the list of open source desktop software I use every single day on my windows machine.
Google Chrome
Free Download Manager
uTorrent
Notepad++
Console
7zip
Mozilla Firefox
VLC Media player
OpenOffice
Cygwin









Saturday, October 11, 2008
Regualr Expression Quick Reference Guide
Here are some handy files I found over net on regular expression matching.
[download] RE quick ref guide
[download] RE Cheat Sheet
This website is for the javascript coders:
http://www.visibone.com/regular-expressions/
[download] RE quick ref guide
[download] RE Cheat Sheet
This website is for the javascript coders:
http://www.visibone.com/regular-expressions/
Saturday, April 12, 2008
Visual Studio Keyboard Shortcuts
Keyboard shortcuts for visual studio. This is quite useful..
[Download]=>Visual Studio Keyboard Shortcuts.pdf
Sunday, June 10, 2007
List of site for downloading e-books
Hi all, how r u? After a long break i will write here regularly again. Below here is some links where you can download free books. check these out. i am sure it would be beneficial for you. take care. If you know some other sites where books can be downloaded please leave a comment and the link of the site. ciao. :)
ftp://194.44.214.3/pub/e-books/ [6/12/07]
http://www.esnips.com // this site is actually is a file sharing site, quite useful. lots of books also here
http://www.betah.co.il/ // Recently found this one
http://mail.stibanas.ac.id/ebooks/
http://lab.lpicn.org/pub/books/
http://www.packet-surge.com/ebooks/
http://www.gayanb.com/index.php
http://www.flazx.com/
http://www.comms.scitech.susx.ac.uk/fft/
http://www.giuciao.com/books/oreilly.htm
http://www.gutenberg.org/
http://www.bibliomania.com/
the search string for searching ebooks in google :
+("index of") +("/ebooks"|"/book") +(chm|pdf|zip|rar) +apache
to find a particular eBook file
Try this query:
allinurl: (rar|chm|zip|pdf|tgz) "Chess" -html -php -asp -txt"
http://mail.stibanas.ac.id/ebooks/
http://lab.lpicn.org/pub/books/
http://www.packet-surge.com/ebooks/
http://www.gayanb.com/index.php
http://www.flazx.com/
http://www.comms.scitech.susx.ac.uk/fft/
http://www.giuciao.com/books/oreilly.htm
http://www.gutenberg.org/
http://www.bibliomania.com/
the search string for searching ebooks in google :
+("index of") +("/ebooks"|"/book") +(chm|pdf|zip|rar) +apache
to find a particular eBook file
Try this query:
allinurl: (rar|chm|zip|pdf|tgz) "Chess" -html -php -asp -txt"
Wednesday, June 06, 2007
Visual Studio Tips.. 80 Character Guideline
Enabling Guidelines in Visual Studio
Lots of people wants to limit the number of character in one line of their code to be maximum of 80/100. This is done basically for readability. Believe me, code looks really readable if you follow the character limit for one line. Here is the way to have character guidelines in microsoft visual studio editor.
First, shut down Visual Studio if already started.Open Registry editor (start>run>regedit.exe). Browse to
[here 7.1 is used for visual studio 2003, look for 8.0 if you use vs 2005, or 9.0 for vs 2008]. Create a string value called
Set Guides to the following
Where x,y,z are the RGB values and n is the column number. You can have at most 13 guidelines. For example set the Guides value data to,
This will place a Red guideline at column numbers 80 and 100.
And now launch VS and open any text file.
Disabling Guidelines
Just delete the Guides keys you created above. Restart VS, and no more guidelines.
Easier Way:
You can download following registry file and run which will do the same thing.
vs2003_guideline.reg
vs2005_guideline.reg
vs2008_guideline.reg
vcs2008ExpressEdition_guideline.reg
If you find this post useful, you might also like [this] and [this] post by me as well.
Thanks
Lots of people wants to limit the number of character in one line of their code to be maximum of 80/100. This is done basically for readability. Believe me, code looks really readable if you follow the character limit for one line. Here is the way to have character guidelines in microsoft visual studio editor.
First, shut down Visual Studio if already started.Open Registry editor (start>run>regedit.exe). Browse to
[HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\7.1\Text Editor]
[here 7.1 is used for visual studio 2003, look for 8.0 if you use vs 2005, or 9.0 for vs 2008]. Create a string value called
Guides
Set Guides to the following
RGB(x,y,z) n1,...,n13
Where x,y,z are the RGB values and n is the column number. You can have at most 13 guidelines. For example set the Guides value data to,
RGB(128,0,0) 80,100
This will place a Red guideline at column numbers 80 and 100.
And now launch VS and open any text file.
Disabling Guidelines
Just delete the Guides keys you created above. Restart VS, and no more guidelines.
Easier Way:
You can download following registry file and run which will do the same thing.
vs2003_guideline.reg
vs2005_guideline.reg
vs2008_guideline.reg
vcs2008ExpressEdition_guideline.reg
If you find this post useful, you might also like [this] and [this] post by me as well.
Thanks
Programming Windows - Part II
Some resources i found quite useful. Its basically for win32/ATL/WTL programmers.
read:
Programming Windows by Charles Petzold [download ebook]2625KB
Inside ATL [download ebook]1633KB
ATL Internals [download ebook]4174KB
Win 32 API tutorial:: http://www.relisoft.com/win32/index.htm
WTL Links:
If i find any more tutorials or books i will post it here.
read:
Programming Windows by Charles Petzold [download ebook]2625KB
Inside ATL [download ebook]1633KB
ATL Internals [download ebook]4174KB
Win 32 API tutorial:: http://www.relisoft.com/win32/index.htm
WTL Links:
- WTL Homepage
- Code Project WTL Articles, in particular these are excellent:
- WTL for MFC Programmers, Part I - ATL GUI Classes
- WTL for MFC Programmers, Part II - WTL GUI Base Classes
- WTL for MFC Programmers, Part III - Toolbars and Status Bars
- WTL for MFC Programmers, Part IV - Dialogs and Controls
- WTL for MFC Programmers, Part V - Advanced Dialog UI Classes
- WTL for MFC Programmers, Part VI - Hosting ActiveX Controls
- WTL for MFC Programmers, Part VII - Splitter Windows
- WTL for MFC Programmers, Part VIII - Property Sheets and Wizards
- WTL for MFC Programmers, Part IX - GDI Classes, Common Dialogs, and Utility Classes
- WTL for MFC Programmers, Part X - Implementing a Drag and Drop Source
- WTL 3.1 Quick Reference (99% applicable to WTL 7.1)
- A page with links to various WTL resources and websites
- A great introduction to COM programming with ATL
If i find any more tutorials or books i will post it here.
Saturday, June 03, 2006
Football Videos to Download
Here are some links where you can find Footaball Goal videos .
Football goals to download [ index of many video site]
Index of /goals
Futbol Mix
France 98 Goals
[site in French.. but who cares when you only need to download the videos.. :) ]
Football goals to download [ index of many video site]
Index of /goals
Futbol Mix
France 98 Goals
[site in French.. but who cares when you only need to download the videos.. :) ]
Subscribe to:
Posts (Atom)