Adobe’s PSD format has been a black box for ages. We’ve built a Ruby library that opens up the PSD format and allows you to easily work with Photoshop documents.
PSD.rb — A Ruby library for reading and writing Adobe Photoshop Documents →
A rather geeky/technical weblog, est. 2001, by Bramus
Adobe’s PSD format has been a black box for ages. We’ve built a Ruby library that opens up the PSD format and allows you to easily work with Photoshop documents.
PSD.rb — A Ruby library for reading and writing Adobe Photoshop Documents →
Hilarious talk on Ruby/JavaScript funkyness, by Gary Bernhardt.
The code example below gives a nice result 😀
Array(16).join("wat" - 1) + " Batman!"
Via Lode.
BozoCrack is a depressingly effective MD5 password hash cracker with almost zero CPU/GPU load. Instead of rainbow tables, dictionaries, or brute force, BozoCrack simply finds the plaintext password … via Google.
Specifically, it Googles the MD5 hash and hopes the plaintext appears somewhere on the first page of results.
It works way better than it ever should.
Clever.
(via inventis)
Siri Says gets that Siri biz-nass all up in your Ruby.
[ruby]require "rubygems"
require "siri_says"
siri_says /deploy/ do |message|
puts "> Deploying…"
end
SiriSays::Engine.run(google_username, google_password)[/ruby]
Tell Siri: “Schedule a deploy right now.”
(seconds later)
[ruby]> Deploying…[/ruby]
ZOMG!