Skip to main content

Posts

Showing posts from August, 2012

REST

I have just started to look at REST and how to use it in future projects. The list below are just some of the sites I have visited and found interesting: Building Web Services the REST Way How-to: REST Web services demystified

Windows touch command

If you like the unix command touch and want to to something similar in Windows, i.e. change the time stamp of a file, then there is not built-in command for that. Instead use the copy command like this: copy /b foo.txt +,, If you really want a touch command, then place it in a batch file called touch...