Archive for September, 2008

Keep copyright notice updated on your website – javascript

You must have seen the copy right notice or the copy right sign with year and company name on websites, generally at the very bottom of website page, like below: Copyright ©1987-2008 © 2008 Microsoft © 2006–2008 Cleartrip Travel Services Private Limited The little but quite important problem we are going to solve here is [...]


Adobe Photoshop.com Mobile Beta

If you are getting confused here with .com thing appended with Adobe Photoshop then you need to visit www.photoshop.com and check out the online service launched by Adobe few months back. You can share your pictures just like other service along with photo editing. Well, all complex editing feature can not be provided on a [...]


URLEncode and URLDecode

URL Encoding is used when placing text in a query string to avoid it being confused with the URL itself. Some times you need to pass data from browser to web server in query string and data may be having some text which may confuse web server. URL encoding is normally performed to convert data [...]


HTML & CSS useful Notes & examples

Some useful notes and reference content and links about HTML and css: HTML & CSS Workshop Notes View SlideShare presentation or Upload your own. (tags: uscupe css)


How to copy a directory from one location to another location? – Java

I found requirement of moving contents of one directory to another directory while cloning one object which have some associated files. Code below solves this problem using recursion, by calling same function in case the file is another directory. It is copying whole directory structure from source to target. Code below is quite simple to [...]