Having read Mark Pilgrims fine and highly recommendable book HTML 5: Up and Running (available for free here) all of a sudden there was a great many things that I would like to try out and experiment with. One of them being microdata.
Continue reading Microdata on the About Page
Tag: StreetCred
Using cURL to download a file
Hey Peter, it’s Peter. Just a quick reminder for when you forget the next time.
To download a file using cURL you can use either:
curl -O http://code.jquery.com/jquery-1.4.3.js
Which’ll download the file in question and store it with the same name as on the server. Or you can use
curl -o yourCleverNameHere.please http://code.jquery.com/jquery-1.4.3.js
Now you won’t need to look this up here next time.
Kind regards.
Yourself