Touch Command for Windows
If you every need to change the last modified date on a windows file here is a command that does so
copy /b test.txt +,,
Source:
Labels: Command
Web Related issues such as design, programing, search engine optimisation , revenue generation. The is also my area to give back to the internet community that has given me so much,
If you every need to change the last modified date on a windows file here is a command that does so
Labels: Command
If you host Open Ads or use Geographic targeting you will realise that from time to time you need to update you geo-location data file. This is an shell script to help
Labels: shell
Testing a lime 3g Modem... For many web developers cross browser testing has been a pain. One of the greatest pains has been test the different versions of IE, 5.5, 6, 7 and now 8. Users of browsers like Firefox, Safari and Opera tend to upgrade regular and even in some cases the updates are automated.
Today I got a e-mail asking about Javascript frame works. I am no expert but from my little fooling around I like JQuery..
“jQuery is a fast, concise, JavaScript Library that simplifies how you traverse HTML documents, handle events, perform animations, and add Ajax interactions to your web pages. jQuery is designed to change the way that you write JavaScript”.As usual it boils doing to what you are doing, your style and what best suits you project
Labels: Javscript
I needed the get the date for batch file on Windows in this format yyyy-mm-dd e.g. 2009-03-20 so I did a little research on the internet.
FOR /F "TOKENS=1* DELIMS= " %%A IN ('DATE/T') DO SET CDATE=%%BFOR /F "TOKENS=1,2 eol=/ DELIMS=/ " %%A IN ('DATE/T') DO SET mm=%%BFOR /F "TOKENS=1,2 DELIMS=/ eol=/" %%A IN ('echo %CDATE%') DO SET dd=%%BFOR /F "TOKENS=2,3 DELIMS=/ " %%A IN ('echo %CDATE%') DO SET yyyy=%%B