People always say hands on learning is the way to go. Learn all about photography with the SLR Camera Simulator.
via Semel
People always say hands on learning is the way to go. Learn all about photography with the SLR Camera Simulator.
via Semel
by Ira Glass
(via digdog)
(via digdog)
Now this looks like fun! Got a new wireless remote that I haven’t found much use for…. yet.
Fun excuse to get a wireless remote for your camera: Jumping on the bed photos!
(Photo by lisakimberly on Flickr)
ahhh - memories!
Affordable.
ScraperWiki is a platform for writing and scheduling screen scrapers, and for storing the data they generate.
ScraperWiki lets you write your scraper in Python, PHP or Ruby, schedule scrapes and download scraped data in CSV format, as an SQLite3 database or via the API. You can fork existing scrapers too, Github-style.
Let’s say you wanted to grab all the URLs from link posts on the front page of One Thing Well and store them. Here’s how, in Python:
import scraperwiki import lxml.html root = scraperwiki.scrape('http://onethingwell.org/') content = lxml.html.etree.HTML(root) linkage = content.xpath("/html/body/div/article/h2/a/@href") for links in linkage: record = { "link" : links } scraperwiki.datastore.save(["link"], record)You can see the results on ScraperWiki.
And here’s another scraper—a bit more complex at 26 lines of code—which grabs the URLs from every link post on OTW by following the ‘Older’ link at the bottom of the page and parsing the next page until it reaches the last one.
I only know the very, very basics of Python, but the above scrapers were really easy to cobble together by
followingnicking code from the ScraperWiki tutorials and a bit of trial and error.Have a go, and let me know if you make a cool scraper.
It has been great to see ready made solutions like HTML5 Boilerplate come out this past year. But many times these templates are overkill for what you need and bloat is the result. Initializer is a simple web page that builds a custom download based on a few choices — just pick what you need for a given project.