Skip to content

Instantly share code, notes, and snippets.

@subratrout
Forked from vlandham/parse_interviews.rb
Created September 24, 2017 01:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save subratrout/34fff733eff32a98760cc02c5f5641c2 to your computer and use it in GitHub Desktop.
Save subratrout/34fff733eff32a98760cc02c5f5641c2 to your computer and use it in GitHub Desktop.
parse usesthis.com
#!/usr/bin/env ruby
require 'yaml'
require 'json'
input_dirname = ARGV[0]
output_filename = "parsed_interviews.json"
class Categorizer
HW_CATEGORIES = [[/.*dell.*/, ["pc","system"]],
[/.*(imac|mac pro|macpro|mac mini|macmini).*/, ["mac","system","desktop"]],
[/.*(macbook|ibook).*/, ["mac","system","laptop"]],
[/.*ipad.*/, ["mac","mobile","tablet"]],
[/.*ipod.*/, ["mac","music"]],
[/.*zune.*/, ["music","pc"]],
[/.*iphone.*/,["mac","mobile","phone"]],
[/.*thinkpad.*/,["pc","system","laptop"]],
[/.*thinkpad.*/,["pc","system","laptop"]],
[/.*latitude.*/,["pc","laptop"]]
]
def self.categories_for_hardware hardware
cats = []
HW_CATEGORIES.each do |regex, hw_cats|
if hardware[:name].downcase =~ regex
cats << hw_cats
end
end
cats.flatten!
cats.uniq
end
end
class Interview
class << self
attr_accessor :all_hardware
end
attr_accessor :content, :filename, :header_data, :date, :hardware, :software
def initialize filename
#puts filename
@header_data = ''
@content = ''
@date = Date.parse(File.basename(filename).split(".")[0]) #uses . to separate words in header
self.content = File.read(filename)
extract_header
sections = self.content.split(/^###/m) #returns array of 5. one for each section
self.hardware = extract_section sections[2]
categorize_hardware
self.software = extract_section sections[3]
end
def categorize_hardware
self.hardware.each do |hw|
cats = Categorizer.categories_for_hardware hw
hw[:categories] = cats
end
end
def extract_section section
links = []
section.scan(/\[(.*?)\](\[|\()(.*?)(\]|\))/m) do |match|
link = {}
link[:name] = match[0]
link[:url] = match[2]
ware = Interview.all_hardware[link[:name].downcase]
if ware
link[:url] = ware["url"]
link[:description] = ware["description"]
end
links << link
end
links
end
def extract_header
if content =~ /^(---\s*\n.*?\n?)^(---\s*$\n?)/m
self.content = $' #POSTMATCH
begin
self.header_data = YAML.load($1)
rescue => e
puts "YAML Exception reading #{self.filename}: #{e.message}"
end
else
puts "ERROR: no header parsing for #{self.filename}"
end
end
def to_json
all_data = {}
all_data.merge! header_data
all_data[:date] = self.date
all_data[:hardware] = hardware
all_data[:software] = software
all_data.to_json
end
end
interview_filenames = Dir.glob(File.join(input_dirname,"_posts", "*.interview"))
puts "#{interview_filenames.size} interviews found"
hardware_filenames = Dir.glob(File.join(input_dirname,"hardware", "*.yml"))
puts "#{hardware_filenames.size} hardware files found"
output_file = File.open(output_filename, 'w')
hardware = {}
hardware_filenames.each do |hardware_filename|
ware = YAML.load(File.read(hardware_filename))
hardware[ware["title"].downcase] = ware
end
Interview.all_hardware = hardware
interviews = []
interview_filenames.each do |filename|
interviews << Interview.new(filename)
end
interviews.sort! {|x,y| x.date <=> y.date}
interviews.each do |interview|
output_file.puts(interview.to_json)
end
output_file.close
puts "Output at #{output_filename}"
{"layout":"post","title":"An interview with Alex Payne","slug":"alex.payne","person":"Alex Payne","summary":"Developer, API bitch at Twitter","categories":["mac","developer","web"],"date":"2009-01-02","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Cinema Display","url":"http://www.apple.com/displays/cinema/","description":"The LCD display line.","categories":[]},{"name":"iLap","url":"http://www.raindesigninc.com/ilap.html","description":"Laptop stand.","categories":[]},{"name":"Dvorak","url":"http://en.wikipedia.org/wiki/Dvorak_Simplified_Keyboard \"The Dvorak keyboard layout.\"","categories":[]},{"name":"ReadyNAS NV+","url":"http://www.readynas.com/?cat=4","description":"A backup/storage solution.","categories":[]},{"name":"Time Machine","url":"time-machine","categories":[]},{"name":"Backblaze","url":"","categories":[]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]},{"name":"SE110MPA","url":"http://store.shure.com/store/shure/en_US/DisplayProductDetailsPage/productID.106610400","description":"Sound-isolating headphones.","categories":[]},{"name":"A5","url":"http://www.audioengineusa.com/a5_home.php","description":"Tiny but powerful speakers.","categories":[]},{"name":"AirPort Express","url":"http://www.apple.com/airportexpress/","description":"A small wireless access point.","categories":[]},{"name":"WRT54GL","url":"http://www.linksysbycisco.com/us/en/products/WRT54GL","description":"A Linux-based Wireless Broadband router.","categories":[]},{"name":"Tomato","url":"","categories":[]}],"software":[{"name":"TextMate","url":""},{"name":"Terminal","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Fluid","url":""},{"name":"Gmail","url":""},{"name":"Ruby","url":""},{"name":"Safari AdBlock","url":"safari-adblock"},{"name":"Inquisitor","url":""},{"name":"iChat","url":""},{"name":"Twitterrific","url":""},{"name":"iCal","url":""},{"name":"Google Calendar","url":"google-calendar"},{"name":"Things","url":""},{"name":"MacJournal","url":""},{"name":"Yep","url":""},{"name":"Knox","url":""},{"name":"TextExpander","url":""},{"name":"LaunchBar","url":""},{"name":"Growl","url":""},{"name":"HardwareGrowler","url":""},{"name":"Caffeine","url":""},{"name":"iStat pro","url":"istat-pro"},{"name":"Dropbox","url":""},{"name":"Google Apps","url":"google-apps"},{"name":"Trac","url":""},{"name":"Google Code","url":"http://code.google.com/p/twitter-api/issues/list \"The Twitter API issue list.\""},{"name":"Review Board","url":"review-board"},{"name":"Git","url":""},{"name":"cgit","url":""},{"name":"iTunes","url":""},{"name":"Last.fm","url":""},{"name":"Bloom","url":"bloom-ios"},{"name":"Isolator","url":""},{"name":"Instapaper","url":""},{"name":"Google Reader","url":"google-reader"}]}
{"layout":"post","title":"An interview with Jona Bechtolt","slug":"jona.bechtolt","person":"Jona Bechtolt","summary":"Half of the band YACHT","categories":["mac","musician"],"date":"2009-01-09","hardware":[{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]},{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"MacBook","url":"http://www.apple.com/macbook/","description":"The consumer Mac laptop.","categories":["mac","system","laptop"]},{"name":"Audio Kontrol 1","url":"http://native-instruments.com/?id=audiokontrol1","description":"A high-end audio interface.","categories":[]},{"name":"PowerShot SD1000","url":"http://usa.canon.com/consumer/controller?act=ModelInfoAct&amp;fcategoryid=145&amp;modelid=14901","description":"A 7.1 megapixel compact digital camera.","categories":[]}],"software":[{"name":"Ableton Live 7","url":"live"},{"name":"Smartelectronix","url":"http://www.smartelectronix.com/ \"A collection of music plugin developers.\""},{"name":"mda plugins","url":"mda-vst"},{"name":"Audio Damage","url":"http://www.audiodamage.com/ \"Creators of Automatron, Rough Rider Pro and other music plugins.\""},{"name":"Reason 4","url":"reason"},{"name":"Peak","url":""},{"name":"Magic","url":"http://www.htc.com/www/product/magic/","description":"An Android-based smartphone."},{"name":"Final Cut Pro","url":"final-cut-pro"},{"name":"Apple Motion","url":"motion"},{"name":"Adobe Flash","url":"flash"},{"name":"Photoshop","url":""},{"name":"Illustrator","url":""},{"name":"Coda","url":""},{"name":"Transmit","url":""},{"name":"InDesign","url":""},{"name":"Unison","url":""},{"name":"Transmission","url":""},{"name":"binsearch","url":""},{"name":"PizzaTorrent","url":""}]}
{"layout":"post","title":"An interview with Gabe Newell","slug":"gabe.newell","person":"Gabe Newell","summary":"Co-founder of Valve","categories":["windows","suit","game"],"date":"2009-01-17","hardware":[{"name":"Razer gaming mouse","url":"http://www2.razerzone.com/MouseGuide/index.html \"Razer make gaming peripherals.\"","categories":[]},{"name":"Lian-Li","url":"oa-desk","categories":[]},{"name":"BeyondTV","url":"beyond-tv","categories":[]}],"software":[{"name":"Windows XP","url":"windows-xp"},{"name":"Office 2003","url":"office"},{"name":"Chrome","url":""},{"name":"Firefox","url":""},{"name":"MS DevStudio","url":"visual-studio"},{"name":"Perforce","url":""},{"name":"IncrediBuild","url":""},{"name":"Bloglines.com","url":"bloglines"}]}
{"layout":"post","title":"An interview with Steven Frank","slug":"steven.frank","person":"Steven Frank","summary":"Mac developer, co-founder of Panic","categories":["mac","developer","software"],"date":"2009-01-17","hardware":[{"name":"Mac Pro","url":"http://www.apple.com/macpro/","description":"The Intel-based Mac tower computer.","categories":["mac","system","desktop"]},{"name":"MacBook Air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Drobo","url":"http://drobo.com/Products/drobo.html","description":"A nice hardware-based backup system.","categories":[]},{"name":"AppleTV","url":"apple-tv","categories":[]},{"name":"iTunes","url":"itunes","categories":[]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]}],"software":[{"name":"Xcode","url":""},{"name":"Coda","url":""},{"name":"Transmit","url":""},{"name":"Mail","url":""},{"name":"Address Book","url":"address-book"},{"name":"iCal","url":""},{"name":"MobileMe","url":"mobile-me"},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Firefox","url":""},{"name":"LaunchBar","url":""},{"name":"Yojimbo","url":""},{"name":"Subversion","url":""},{"name":"Skitch","url":""},{"name":"VMWare Fusion","url":"vmware-fusion"},{"name":"Dropbox","url":""},{"name":"World of Warcraft","url":"wow"},{"name":"iTunes","url":""},{"name":"iChat","url":""}]}
{"layout":"post","title":"An interview with John Gruber","slug":"john.gruber","person":"John Gruber","summary":"Writer (Daring Fireball)","categories":["mac","writer"],"credits":{"name":"George Del Barrio","url":"http://superbiate.com/"},"date":"2009-01-22","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Cinema Display","url":"http://www.apple.com/displays/cinema/","description":"The LCD display line.","categories":[]},{"name":"Apple Extended Keyboard II","url":"http://www.flickr.com/photos/gruber/sets/72157604797968156/ \"Gruber's photos of his keyboard.\"","categories":[]},{"name":"iMate","url":"http://griffintechnology.com/products/imate/","description":"An ADB to USB dongle.","categories":[]},{"name":"iPhone 3G","url":"http://www.apple.com/iphone/iphone-3g/","description":"The 3G iPhone.","categories":["mac","mobile","phone"]},{"name":"Ricoh GR-D","url":"gr-digital","categories":[]},{"name":"Rebel XT","url":"http://www.usa.canon.com/cusa/support/consumer/eos_slr_camera_systems/eos_digital_slr_cameras/digital_rebel_xt","description":"An 8 megapixel digital SLR.","categories":[]},{"name":"28mm","url":"ef-28mm-f2.8","categories":[]},{"name":"50mm","url":"ef-50mm-f1.8-ii","categories":[]},{"name":"Flip Ultra","url":"http://theflip.com/products_flip_ultra.shtml","description":"A compact digital video recorder.","categories":[]},{"name":"Kodak Zi6","url":"zi6","categories":[]},{"name":"G-Raid2","url":"http://g-technology.com/products/G-RAID2.cfm","description":"A dual-drive RAID system.","categories":[]},{"name":"Time Capsule","url":"http://www.apple.com/timecapsule/","description":"A WiFi access point and backup system.","categories":[]},{"name":"Kensington 7-port USB hub","url":"domehub","categories":[]},{"name":"soft cover Moleskine","url":"moleskine","categories":[]},{"name":"0.38mm Uni-ball Signo RT","url":"signo-gel-rt","categories":[]}],"software":[{"name":"Yojimbo","url":""},{"name":"BBEdit","url":""},{"name":"Quicksilver","url":""},{"name":"LaunchBar","url":""},{"name":"NetNewsWire","url":""},{"name":"WebKit","url":""},{"name":"BusySync","url":""},{"name":"Twitterrific","url":""},{"name":"Script Debugger","url":"script-debugger"},{"name":"Numbers","url":""},{"name":"SuperDuper","url":""},{"name":"Sound Studio","url":"sound-studio"},{"name":"MarsEdit","url":""},{"name":"TypeIt4Me","url":""},{"name":"DragThing","url":""},{"name":"ExpanDrive","url":""},{"name":"Keynote","url":""},{"name":"Acorn","url":""},{"name":"Photoshop","url":""},{"name":"Apple Mail","url":"mail"},{"name":"SpamSieve","url":""},{"name":"FastScripts","url":""},{"name":"Keyboard Maestro","url":"keyboard-maestro"},{"name":"ThisService","url":""},{"name":"Dropbox","url":""},{"name":"OmniOutliner Pro","url":"omnioutliner-pro"},{"name":"Things","url":""},{"name":"The Hit List","url":"the-hit-list"},{"name":"Tweetie","url":"tweetie-ios"},{"name":"Things","url":"things-ios"},{"name":"Instapaper","url":""},{"name":"NetNewsWire","url":"netnewswire-ios"},{"name":"Movable Type","url":"movable-type"},{"name":"iMT","url":""}]}
{"layout":"post","title":"An interview with David Lanham","slug":"david.lanham","person":"David Lanham","summary":"Visual artist, iconographer (The Iconfactory)","categories":["mac","artist","icon"],"date":"2009-01-28","hardware":[{"name":"Mac Pro","url":"http://www.apple.com/macpro/","description":"The Intel-based Mac tower computer.","categories":["mac","system","desktop"]},{"name":"Wacom Intuos","url":"intuos","categories":[]},{"name":"Cintiq monitor","url":"cintiq","categories":[]}],"software":[{"name":"Adobe Illustrator","url":"illustrator"},{"name":"Photoshop","url":""},{"name":"Iconbuilder","url":""},{"name":"Candybar","url":""},{"name":"iWork","url":""},{"name":"On the Job","url":"on-the-job"},{"name":"Things","url":""},{"name":"Adium","url":""},{"name":"iChat","url":""},{"name":"Twitterrific","url":""},{"name":"Apple Mail","url":"mail"},{"name":"iTunes","url":""},{"name":"SuperDuper!","url":"superduper"},{"name":"Time Machine","url":"time-machine"}]}
{"layout":"post","title":"An interview with Jonathan Coulton","slug":"jonathan.coulton","person":"Jonathan Coulton","summary":"Internet musical superstar","categories":["mac","musician"],"date":"2009-02-10","hardware":[{"name":"Mac Mini","url":"http://www.apple.com/macmini/","description":"The lil' Intel-based Mac.","categories":["mac","system","desktop"]},{"name":"Digi 002","url":"http://digidesign.com/index.cfm?langid=100&amp;navid=105&amp;itemid=23597","description":"Multitrack studio hardware.","categories":[]},{"name":"dbx 376 Tube Channel Strip","url":"376","categories":[]},{"name":"Line6 Pod Pro","url":"pod-pro","categories":[]},{"name":"Lexicon MX200","url":"mx200","categories":[]},{"name":"Shure KSM32","url":"ksm32","categories":[]},{"name":"SM57","url":"http://shure.com/ProAudio/Products/WiredMicrophones/us_pro_SM57-LC_content","description":"An instrument microphone.","categories":[]},{"name":"Tenori-On","url":"http://www.global.yamaha.com/tenori-on/index.html","description":"An awesome Japanese digital instrument.","categories":[]},{"name":"Zendrum","url":"http://www.zendrum.com/","description":"A MIDI triggering controller.","categories":[]},{"name":"Ableton Live","url":"live","categories":[]},{"name":"Fender Strat","url":"strat","categories":[]},{"name":"Fender Squire","url":"esquire","categories":[]},{"name":"Mele ukulele","url":"mahogany-ukulele","categories":[]}],"software":[{"name":"Pro Tools LE","url":"pro-tools-le"},{"name":"M-Tron Pro","url":"gforce-m-tron-pro"},{"name":"Reel Drums","url":"reel-drums"},{"name":"BFD","url":""}]}
{"layout":"post","title":"An interview with why the lucky stiff","slug":"why","person":"why the lucky stiff","summary":"Internet rodent","categories":["windows","mac","developer","web"],"date":"2009-02-13","hardware":[],"software":[]}
{"layout":"post","title":"An interview with Gina Trapani","slug":"gina.trapani","person":"Gina Trapani","summary":"Writer, blogger, creator of smarterware.org","categories":["mac","windows","writer","developer","web"],"date":"2009-02-20","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"built myself from parts","url":"http://lifehacker.com/5151369/the-first+timers-guide-to-building-a-computer-from-scratch \"Lifehacker article on building a PC from scratch.\"","categories":[]},{"name":"iCurve laptop stand","url":"icurve","categories":[]},{"name":"Ikea Jerker","url":"jerker","categories":[]},{"name":"switched","url":"http://smarterware.org/184/why-i-switched-to-android-from-the-iphone \"Why Gina switched to an Android.\"","categories":[]},{"name":"HTC G1 phone","url":"g1","categories":[]},{"name":"Android","url":"","categories":[]}],"software":[{"name":"XP","url":"windows-xp"},{"name":"Vista","url":"windows-vista"},{"name":"Windows 7 beta","url":"windows-7"},{"name":"Leopard","url":"leopard"},{"name":"Firefox","url":""},{"name":"Gmail","url":""},{"name":"Google Reader","url":"google-reader"},{"name":"Google Calendar","url":"google-calendar"},{"name":"Google Docs","url":"google-docs"},{"name":"Twitter","url":""},{"name":"EditPlus","url":"editplus"},{"name":"Digsby","url":""},{"name":"Picasa","url":""},{"name":"Google Chrome","url":"chrome"},{"name":"SnagIt","url":""},{"name":"Camtasia Studio","url":"camtasia"},{"name":"SyncBack Free","url":"syncback"},{"name":"Cygwin","url":""},{"name":"TextMate","url":""},{"name":"Smultron","url":""},{"name":"InstantShot!","url":"instantshot"},{"name":"TextExpander","url":""},{"name":"Time Machine","url":"time-machine"},{"name":"Quicksilver","url":""},{"name":"GeekTool","url":""},{"name":"Terminal","url":""},{"name":"todo.txt","url":"todo.sh"},{"name":"Git","url":""},{"name":"KeePass","url":""},{"name":"Mozy","url":""},{"name":"Evernote","url":""},{"name":"Synergy","url":""}]}
{"layout":"post","title":"An interview with Paul Graham","slug":"paul.graham","person":"Paul Graham","summary":"Head of YCombinator, creator of the Arc language","categories":["mac","developer","web"],"date":"2009-03-14","hardware":[{"name":"MacBook Air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Cinema HD display","url":"cinema-display","categories":[]},{"name":"FreeBSD","url":"","categories":[]}],"software":[{"name":"Firefox","url":""},{"name":"Terminal","url":""},{"name":"MzScheme","url":""},{"name":"Dropbox","url":""},{"name":"Gmail","url":""},{"name":"Google Calendar","url":"google-calendar"},{"name":"Etherpad","url":""},{"name":"Snipshot","url":""},{"name":"Picwing","url":""},{"name":"Yahoo Store","url":"small-business"}]}
{"layout":"post","title":"An interview with James Thomson","slug":"james.thomson","person":"James Thomson","summary":"Mac developer (DragThing, PCalc)","categories":["mac","developer","software"],"credits":{"name":"Ian Farrell","url":"http://www.flickr.com/photos/iain"},"date":"2009-03-23","hardware":[{"name":"Mac Pro","url":"http://www.apple.com/macpro/","description":"The Intel-based Mac tower computer.","categories":["mac","system","desktop"]},{"name":"L245WP","url":"","categories":[]},{"name":"iPod Touch","url":"http://www.apple.com/ipodtouch/","description":"It's like an iPhone, without the phone bit.","categories":["mac","music"]},{"name":"MacBook","url":"http://www.apple.com/macbook/","description":"The consumer Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]}],"software":[{"name":"Xcode","url":""},{"name":"Photoshop","url":""},{"name":"BBEdit","url":""},{"name":"Dreamweaver","url":""},{"name":"Interarchy","url":""},{"name":"Filemaker Pro","url":"filemaker-pro"},{"name":"Retrospect","url":""},{"name":"Adium","url":""},{"name":"Twitterrific","url":""},{"name":"iTunes","url":""},{"name":"Mail","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"DragThing","url":""},{"name":"PCalc","url":""},{"name":"PCalc","url":"pcalc-ios"},{"name":"Twitkitteh","url":"twitkitteh-ios"},{"name":"Fieldrunners","url":"fieldrunners-ios"}]}
{"layout":"post","title":"An interview with Steph Thirion","slug":"steph.thirion","person":"Steph Thirion","summary":"Game developer (Eliss)","categories":["mac","developer","game"],"date":"2009-03-27","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"E2007WFP","url":"http://dell.com/content/products/productdetails.aspx/monitor_2007wfp?c=au&amp;l=en&amp;s=bsd&amp;cs=aubsd1","description":"A 20 inch LCD screen with USB ports.","categories":[]},{"name":"iPod touch","url":"http://www.apple.com/ipodtouch/","description":"It's like an iPhone, without the phone bit.","categories":["mac","music"]},{"name":"Casio SK-10","url":"sk-10","categories":[]}],"software":[{"name":"Scrivener","url":""},{"name":"TaskPaper","url":""},{"name":"iCal","url":""},{"name":"Apple Mail","url":"mail"},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Firefox","url":""},{"name":"TextMate","url":""},{"name":"Xcode","url":""},{"name":"Processing","url":""},{"name":"git","url":""},{"name":"git bundle","url":"tm-git-bundle"},{"name":"CSSEdit","url":""},{"name":"CyberDuck","url":""},{"name":"AWS","url":"s3"},{"name":"App Engine Launcher","url":"app-engine-launcher"},{"name":"App Engine","url":"app-engine"},{"name":"toucheliss.com","url":"http://www.toucheliss.com \"The website for Eliss.\""},{"name":"Adobe Fireworks","url":"fireworks"},{"name":"Adobe Illustrator","url":"illustrator"},{"name":"Scriptographer","url":""},{"name":"Adobe Photoshop","url":"photoshop"},{"name":"Leopard","url":""},{"name":"Spaces","url":""},{"name":"Time Machine","url":"time-machine"},{"name":"Tiger","url":""},{"name":"Logic Pro 8","url":"logic-pro"},{"name":"Ableton Live 7","url":"live"},{"name":"Soundtrack Pro","url":"soundtrack-pro"},{"name":"Audacity","url":""},{"name":"Battery 3","url":"battery-3"},{"name":"Pro-53","url":""},{"name":"QuickSilver","url":""}]}
{"layout":"post","title":"An interview with Garrett Murray","slug":"garrett.murray","person":"Garrett Murray","summary":"Film maker, creator of Ego","categories":["mac","developer","software","film"],"date":"2009-04-01","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"LED Cinema Display","url":"cinema-display","categories":[]},{"name":"Apple Keyboard","url":"keyboard","categories":[]},{"name":"Mighty Mouse","url":"http://www.apple.com/mightymouse/","description":"The wireless mouse with the nipple.","categories":[]},{"name":"Logitech MX Revolution","url":"mx-revolution","categories":[]},{"name":"Bose Companion 3 speaker system","url":"companion-3","categories":[]},{"name":"second-gen FW800 Drobo","url":"drobo","categories":[]},{"name":"Airport Extremes","url":"airport-extreme","categories":[]},{"name":"podcast","url":"http://maniacalragepodcast.com/ \"A podcast by Garrett and Shawn.\"","categories":[]},{"name":"Digidesign Mbox 2","url":"mbox","categories":[]},{"name":"Panasonic HVX-200A","url":"ag-hvx200a","categories":[]},{"name":"50mm","url":"af-nikkor-50mm-f1.8d","categories":[]},{"name":"28mm","url":"af-nikkor-28mm-f2.8d","categories":[]},{"name":"quick","url":"http://www.flickr.com/photos/garrettmurray/2927448272 \"Garrett's video, 'My Day, Yesterday' on Flickr.\"","categories":[]},{"name":"little","url":"http://www.flickr.com/photos/garrettmurray/2948938889 \"Garrett's video, 'My Day, Yesterday: Going to Vegas' on Flickr.\"","categories":[]},{"name":"Nikon D90","url":"d90","categories":[]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]}],"software":[{"name":"TextMate","url":""},{"name":"CSSEdit","url":""},{"name":"Transmit","url":""},{"name":"Twitterrific","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Firefox","url":""},{"name":"NewsFire","url":""},{"name":"Dropbox","url":""},{"name":"Grabup","url":""},{"name":"Mail","url":""},{"name":"iChat","url":""},{"name":"Terminal","url":""},{"name":"Photoshop CS4","url":"photoshop"},{"name":"Final Cut Pro","url":"final-cut-pro"},{"name":"Pro Tools LE","url":"pro-tools-le"},{"name":"iPhoto","url":""},{"name":"Lightroom","url":""},{"name":"Podcast Maker","url":"podcast-maker"},{"name":"Maniacal Rage TV","url":"http://maniacalragepodcast.com/ \"A podcast by Garrett and Shawn.\""},{"name":"site","url":"http://maniacalrage.net \"Garrett's website.\""},{"name":"Tumblr","url":""},{"name":"Ego","url":"ego-ios"},{"name":"Tweetie","url":"tweetie-ios"},{"name":"NetNewsWire","url":"netnewswire-ios"},{"name":"Things","url":"things-ios"},{"name":"Horror Vacui","url":"horror-vacui-ios"},{"name":"Fieldrunners","url":"fieldrunners-ios"}]}
{"layout":"post","title":"An interview with Sophia Teutschler","slug":"sophia.teutschler","person":"Sophia Teutschler","summary":"Mac developer (CoverSutra, Groceries, Tipulator)","categories":["mac","developer","software"],"date":"2009-04-07","hardware":[{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Time Capsule","url":"http://www.apple.com/timecapsule/","description":"A WiFi access point and backup system.","categories":[]},{"name":"Sound Sticks","url":"soundsticks","categories":[]},{"name":"iPods","url":"ipod","categories":["mac","music"]}],"software":[{"name":"Xcode","url":""},{"name":"Coda","url":""},{"name":"CSSEdit","url":""},{"name":"TextMate","url":""},{"name":"LittleSnapper","url":""},{"name":"Wallet","url":""},{"name":"Fontcase","url":""},{"name":"total twitter addict","url":"http://twitter.com/sophiestication \"Sophia on Twitter.\""},{"name":"Twitterrific","url":""},{"name":"Bluebird","url":""},{"name":"iChat","url":""},{"name":"Mail","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"iTunes","url":""},{"name":"CoverSutra","url":""}]}
{"layout":"post","title":"An interview with Alex Kohlhofer","slug":"alex.kohlhofer","person":"Alex Kohlhofer","summary":"Web developer (Weewar, Spreedly, No Kahuna)","categories":["mac","developer","software"],"date":"2009-04-14","hardware":[{"name":"MacBook","url":"http://www.apple.com/macbook/","description":"The consumer Mac laptop.","categories":["mac","system","laptop"]},{"name":"Aiko","url":"http://www.weareaiko.com/everyday/ \"A funky clothes label.\"","categories":[]},{"name":"20inch Wide Screen","url":"e207wfp","categories":[]},{"name":"Wii","url":"http://www.wii.com/","description":"A unique gaming console.","categories":[]},{"name":"360","url":"xbox-360","categories":[]},{"name":"Bluetooth keyboard","url":"keyboard","categories":[]},{"name":"net book","url":"eee-pc-901","categories":[]}],"software":[{"name":"Google Chrome","url":"chrome"},{"name":"Safari 4","url":"safari"},{"name":"CSSEdit","url":""},{"name":"Textmate","url":""},{"name":"Coda","url":""},{"name":"Photoshop","url":""},{"name":"OmniGraffle","url":""},{"name":"TextEdit","url":""},{"name":"Git","url":""},{"name":"GitHub","url":""},{"name":"No Kahuna","url":"no-kahuna"},{"name":"Gmail","url":""},{"name":"Google Reader","url":"google-reader"},{"name":"FriendFeed","url":""},{"name":"me","url":"http://friendfeed.com/kohlhofer \"Alex on FriendFeed\""},{"name":"Flickr","url":""},{"name":"me","url":"http://www.flickr.com/photos/plasticshore/ \"Alex on Flickr.\""},{"name":"Twitter","url":""},{"name":"me","url":"http://twitter.com/kohlhofer \"Alex on Twitter.\""},{"name":"Tumblr","url":""},{"name":"me","url":"http://blog.kohlhofer.com \"Alex's tumblelog.\""},{"name":"iChat","url":""},{"name":"Skype","url":""},{"name":"Things","url":""}]}
{"layout":"post","title":"An interview with Anselm Hook","slug":"anselm.hook","person":"Anselm Hook","summary":"MakerLab hacker, CTO of Meedan","categories":["mac","developer","software"],"date":"2009-04-22","hardware":[{"name":"EC2","url":"","categories":[]},{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]}],"software":[{"name":"OpenBSD","url":""},{"name":"PF","url":""},{"name":"OpenSSH","url":""},{"name":"OS X","url":"mac-os-x"},{"name":"my girlfriend","url":"http://paigesaez.org \"Paige's website.\""},{"name":"MacPorts","url":""},{"name":"Merb","url":""},{"name":"OpenCV","url":""},{"name":"MapServer","url":""},{"name":"Ruby","url":""},{"name":"Python","url":""},{"name":"Lua","url":""},{"name":"C++","url":"c-plusplus"},{"name":"PHP","url":""},{"name":"Java","url":""},{"name":"C#","url":"c-sharp"},{"name":"Merb","url":""},{"name":"Twitter","url":""},{"name":"Gmail","url":""},{"name":"Firefox","url":""},{"name":"Colloquy","url":""},{"name":"Skitch","url":""},{"name":"Processing","url":""},{"name":"Xcode","url":""},{"name":"vi","url":""}]}
{"layout":"post","title":"An interview with Ben Fry","slug":"ben.fry","person":"Ben Fry","summary":"Data designer, co-creator of Processing","categories":["mac","developer","software"],"date":"2009-05-02","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Cinema Display","url":"http://www.apple.com/displays/cinema/","description":"The LCD display line.","categories":[]},{"name":"MacBook Air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"597 EVDO","url":"compass-597","categories":[]}],"software":[{"name":"Emacs","url":"carbon-emacs"},{"name":"Processing","url":""},{"name":"Eclipse","url":""},{"name":"Illustrator","url":""},{"name":"Photoshop","url":""},{"name":"Transmit","url":""},{"name":"TextWrangler","url":""},{"name":"Hex Fiend","url":"hex-fiend"},{"name":"OpenOffice","url":""},{"name":"Picasa","url":""},{"name":"MacPorts","url":""},{"name":"FontForge","url":""}]}
{"layout":"post","title":"An interview with Jakob Nielsen","slug":"jakob.nielsen","person":"Jakob Nielsen","summary":"Usability specialist (Nielsen Group)","categories":["windows","designer","usability"],"date":"2009-06-13","hardware":[{"name":"Area-51","url":"","categories":[]},{"name":"30-inch monitor","url":"3007wfp","categories":[]},{"name":"Acer Ferrari 5000-5832","url":"http://www.amazon.com/Acer-Ferrari-5000-5832-Processor-Ultimate/dp/B000LO8ZPM","description":"A co-branded PC laptop.","categories":[]},{"name":"iPod Touch","url":"http://www.apple.com/ipodtouch/","description":"It's like an iPhone, without the phone bit.","categories":["mac","music"]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]},{"name":"Wii","url":"http://www.wii.com/","description":"A unique gaming console.","categories":[]}],"software":[{"name":"Windows Vista","url":"windows-vista"},{"name":"Office 2007","url":"office"},{"name":"Photoshop Elements","url":"photoshop-elements"},{"name":"Snagit","url":""},{"name":"Morae","url":""},{"name":"Skype","url":""},{"name":"\"ribbon\" style UI","url":"http://www.useit.com/alertbox/application-design.html \"Jakob's article on the 10 best Application UIs (2008"},{"name":"more productive to downgrade","url":"http://www.useit.com/alertbox/features.html \"Jakob's article on 'Feature Richness and User Engagement.'\""}]}
{"layout":"post","title":"An interview with Joe Hewitt","slug":"joe.hewitt","person":"Joe Hewitt","summary":"Creator of Firebug, iPhone developer (Facebook)","categories":["mac","developer","software"],"date":"2009-06-28","hardware":[{"name":"Mac Pro","url":"http://www.apple.com/macpro/","description":"The Intel-based Mac tower computer.","categories":["mac","system","desktop"]},{"name":"cinema displays","url":"cinema-display","categories":[]},{"name":"Macbook Air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPhone 3G S","url":"iphone-3gs","categories":["mac","mobile","phone"]},{"name":"5D Mark II","url":"eos-5d-mark-ii","categories":[]},{"name":"Airport Extreme","url":"http://www.apple.com/airportextreme/","description":"A wireless access point.","categories":[]},{"name":"Time Machine","url":"time-machine","categories":[]}],"software":[{"name":"Xcode","url":""},{"name":"Terminal","url":""},{"name":"Path Finder","url":"path-finder"},{"name":"Firefox","url":""},{"name":"Textmate","url":""},{"name":"Markdown","url":""},{"name":"Python","url":""},{"name":"xScope","url":""},{"name":"LaunchBar","url":""},{"name":"Quicksilver","url":""},{"name":"ExpanDrive","url":""},{"name":"LittleSnapper","url":""},{"name":"Layers","url":""},{"name":"ScreenFlow","url":""},{"name":"Photoshop CS3","url":"photoshop"},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Mac OS X","url":"mac-os-x"},{"name":"Mail.app","url":"mail"},{"name":"Tweetie","url":""},{"name":"iChat","url":""},{"name":"Lightroom","url":""},{"name":"iMovie '09","url":"imovie"},{"name":"Fluid","url":""},{"name":"Instapaper","url":"instapaper-ios"},{"name":"QuadCamera","url":"quadcamera-ios"},{"name":"Yelp","url":"yelp-ios"},{"name":"MLB At Bat","url":"mlb-at-bat-ios"},{"name":"Pandora","url":"pandora-ios"},{"name":"Kindle","url":"http://www.amazon.com/kindle/","description":"A digital book reader."},{"name":"Twitterrific","url":"twitterrific-ios"},{"name":"Facebook","url":"facebook-ios"},{"name":"Google Reader","url":"google-reader"}]}
{"layout":"post","title":"An interview with John Siracusa","slug":"john.siracusa","person":"John Siracusa","summary":"Programmer, writer (Ars Technica)","categories":["mac","writer","developer","software"],"date":"2009-07-01","hardware":[{"name":"Mac Pro","url":"http://www.apple.com/macpro/","description":"The Intel-based Mac tower computer.","categories":["mac","system","desktop"]},{"name":"Cinema display","url":"http://www.apple.com/displays/cinema/","description":"The LCD display line.","categories":[]},{"name":"GigaWorks T40 Premium 2.0","url":"gigaworks-t40","categories":[]},{"name":"Logitech MX300","url":"mx-300","categories":[]},{"name":"Performa 6110CD","url":"http://www.everymac.com/systems/apple/mac_performa/stats/mac_performa_6110cd.html","description":"An old PPC-based Mac.","categories":[]},{"name":"i-rocks","url":"http://www.i-rocks.com/Product_List.aspx?CLASS_ID=1036","description":"A USB 2.0 hub.","categories":[]},{"name":"D-Link DGS-2205","url":"dgs-2205","categories":[]},{"name":"AirPort Extreme","url":"http://www.apple.com/airportextreme/","description":"A wireless access point.","categories":[]},{"name":"FiOS","url":"http://www.verizon.com/fios/","description":"Fibre optic Internet connection.","categories":[]},{"name":"ONT","url":"http://en.wikipedia.org/wiki/Optical_Network_Terminal#ONT \"Wikipedia entry on ONT.\"","categories":[]},{"name":"Stylus CX7800","url":"http://www.epson.com/cgi-bin/Store/consumer/consDetail.jsp?BV_UseBVCookie=yes&oid=56291070&modeloid=58773&infoType=Overview","description":"An all-in-one printer/copier/scanner.","categories":[]},{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"PHR-100AF","url":"http://www.macally.com/en/product/ArticleShow.asp?ArticleID=104","description":"An external Firewire hard drive enclosure.","categories":[]},{"name":"iPod touch","url":"http://www.apple.com/ipodtouch/","description":"It's like an iPhone, without the phone bit.","categories":["mac","music"]},{"name":"iPod shuffle","url":"http://www.apple.com/ipodshuffle/","description":"The smallest iPod.","categories":["mac","music"]},{"name":"iPod","url":"http://www.apple.com/ipod/","description":"The infamous music player.","categories":["mac","music"]},{"name":"Newton MessagePad 120","url":"http://www.everymac.com/systems/apple/messagepad/stats/newton_mp_120.html","description":"A much-loved PDA device.","categories":[]},{"name":"M.I.T swapfest","url":"http://www.mitflea.com/ \"The MIT flea markets site.\"","categories":[]},{"name":"Time Machine","url":"time-machine","categories":[]},{"name":"SuperDuper!","url":"superduper","categories":[]},{"name":"Backblaze","url":"","categories":[]}],"software":[{"name":"BBEdit","url":""},{"name":"Terminal","url":""},{"name":"Entourage","url":""},{"name":"Claris Emailer","url":"emailer"},{"name":"iCal","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Safari 4 Reload Fix","url":"safari-4-reload-fix"},{"name":"Firefox","url":""},{"name":"JavaScript debugger","url":"firebug"},{"name":"Camino","url":""},{"name":"OmniWeb","url":""},{"name":"Opera","url":""},{"name":"Chrome","url":""},{"name":"Chromium","url":""},{"name":"most of my web browsing","url":"http://arstechnica.com/staff/fatbits/2005/09/1200.ars \"John's Ars Technica article, 'The state of Mac web browsing'.\""},{"name":"NetNewsWire","url":""},{"name":"Colloquy","url":""},{"name":"Adium","url":""},{"name":"Fire","url":""},{"name":"Twitterrific","url":""},{"name":"WindowShade X","url":"windowshade-x"},{"name":"APE","url":""},{"name":"get a bad rap","url":"http://arstechnica.com/staff/fatbits/2006/02/2918.ars \"John's Arc Technica article, 'Paths in the grass'.\""},{"name":"Quicksilver","url":""},{"name":"LaunchBar","url":""},{"name":"DragThing","url":""},{"name":"ASM","url":""},{"name":"iStat Menus","url":"istat-menus"},{"name":"Dropbox","url":""},{"name":"Yojimbo","url":""},{"name":"MobileMe","url":"mobile-me"},{"name":"MacFUSE","url":""},{"name":"sshfs","url":""},{"name":"VMware Fusion","url":"vmware-fusion"},{"name":"Boot Camp","url":"boot-camp"},{"name":"Twitterrific","url":"twitterrific-ios"},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Peggle","url":"peggle-ios"},{"name":"Dictate","url":""},{"name":"RSI","url":"http://en.wikipedia.org/wiki/Repetitive_strain_injury \"Wikipedia entry on RSI.\""}]}
{"layout":"post","title":"An interview with Violet Blue","slug":"violet.blue","person":"Violet Blue","summary":"Writer, speaker, sex educator","categories":["mac","writer","sex"],"date":"2009-07-13","hardware":[{"name":"Mac Mini","url":"http://www.apple.com/macmini/","description":"The lil' Intel-based Mac.","categories":["mac","system","desktop"]},{"name":"Cinema Display","url":"http://www.apple.com/displays/cinema/","description":"The LCD display line.","categories":[]},{"name":"MacBook","url":"http://www.apple.com/macbook/","description":"The consumer Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPod","url":"http://www.apple.com/ipod/","description":"The infamous music player.","categories":["mac","music"]},{"name":"SoundDock","url":"","categories":[]},{"name":"iPod Nano","url":"http://www.apple.com/ipodnano/","description":"The smallest iPod with a screen.","categories":["mac","music"]},{"name":"DMC-TZ3K","url":"lumix-dmc-tz3","categories":[]},{"name":"Xacti HD-1000","url":"xacti-vpc-hd1000","categories":[]},{"name":"Xacti HD waterproof","url":"xacti-vpc-wh1","categories":[]},{"name":"Helio Ocean","url":"helio-ocean","categories":[]},{"name":"N95-8G","url":"n95-8g","categories":[]},{"name":"N95","url":"","categories":[]},{"name":"N97","url":"","categories":[]},{"name":"Android","url":"","categories":[]},{"name":"Flickr","url":"","categories":[]},{"name":"12seconds","url":"","categories":[]},{"name":"Qik","url":"","categories":[]},{"name":"Twitter","url":"","categories":[]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]}],"software":[{"name":"Leopard","url":""},{"name":"Firefox","url":""},{"name":"MS Word","url":"word"},{"name":"Google Docs","url":"google-docs"},{"name":"GarageBand","url":""},{"name":"iTunes","url":""},{"name":"iMovie","url":""},{"name":"Photoshop","url":""},{"name":"iPhoto","url":""},{"name":"Adobe Acrobat","url":"acrobat"},{"name":"TextEdit","url":""},{"name":"Eye-Fi","url":"http://www.eye.fi/","description":"Memory cards for cameras with built-in WiFi."},{"name":"Fluid","url":""},{"name":"Gmail","url":""},{"name":"Google Calendar","url":"google-calendar"},{"name":"Google Reader","url":"google-reader"},{"name":"WordPress","url":""},{"name":"Movable Type","url":"movable-type"},{"name":"Blip.tv","url":""},{"name":"Libsyn","url":""},{"name":"YouTube","url":""},{"name":"Cyberduck","url":""},{"name":"Apture","url":""},{"name":"Disqus","url":""},{"name":"Growl","url":""}]}
{"layout":"post","title":"An interview with Sam Brown","slug":"sam.brown","person":"Sam Brown","summary":"Illustrator (Exploding Dog)","categories":["mac","artist"],"date":"2009-07-20","hardware":[{"name":"Power Mac G5","url":"http://en.wikipedia.org/wiki/Power_Mac_G5","description":"A desktop Mac with an IBM PowerPC G5 CPU.","categories":[]},{"name":"Cintiq","url":"http://wacom.com/cintiq/","description":"The computer screen you can draw on.","categories":[]},{"name":"Intuos","url":"http://www.wacom.com/intuos/","description":"A pen tablet.","categories":[]},{"name":"MacBook","url":"http://www.apple.com/macbook/","description":"The consumer Mac laptop.","categories":["mac","system","laptop"]},{"name":"PowerBook G4","url":"http://en.wikipedia.org/wiki/PowerBook_G4","description":"An older, popular Mac laptop with the PowerPC G4 CPU.","categories":[]},{"name":"I wrote a tribute to it","url":"http://www.explodingdog.com/powerbookg4/ \"Sam's tribute to his Powerbook.\"","categories":[]},{"name":"Mac Mini","url":"http://www.apple.com/macmini/","description":"The lil' Intel-based Mac.","categories":["mac","system","desktop"]},{"name":"Epson 7800","url":"stylus-pro-7800","categories":[]},{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]}],"software":[{"name":"Photoshop CS3","url":"photoshop"},{"name":"BBEdit","url":""},{"name":"Transmit","url":""},{"name":"Scribbles","url":""},{"name":"TweetDeck","url":""},{"name":"iTunes","url":""},{"name":"Mail","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."}]}
{"layout":"post","title":"An interview with John Martz","slug":"john.martz","person":"John Martz","summary":"Illustrator, robot","categories":["mac","artist"],"date":"2009-07-27","hardware":[{"name":"Mac Pro","url":"http://www.apple.com/macpro/","description":"The Intel-based Mac tower computer.","categories":["mac","system","desktop"]},{"name":"Studio Display","url":"http://www.everymac.com/monitors/apple/studio_cinema/specs/apple_studio_display_17_fp.html","description":"Apple's older line of LCD/CRT screens.","categories":[]},{"name":"Cintiq 21UX","url":"cintiq","categories":[]},{"name":"Time Capsule","url":"http://www.apple.com/timecapsule/","description":"A WiFi access point and backup system.","categories":[]},{"name":"Macbook","url":"http://www.apple.com/macbook/","description":"The consumer Mac laptop.","categories":["mac","system","laptop"]},{"name":"the 12WX","url":"cintiq","categories":[]},{"name":"Stylus Photo 1280","url":"http://www.epson.com/cgi-bin/Store/consumer/consDetail.jsp?oid=28907797&modeloid=14387&infoType=Overview","description":"A printer supporting up to 13 inch prints.","categories":[]},{"name":"CanoScan 8800F","url":"http://www.usa.canon.com/consumer/controller?act=ModelInfoAct&fcategoryid=235&modelid=15561","description":"A film and negative scanner.","categories":[]},{"name":"iPhone 3G","url":"http://www.apple.com/iphone/iphone-3g/","description":"The 3G iPhone.","categories":["mac","mobile","phone"]},{"name":"Wii","url":"http://www.wii.com/","description":"A unique gaming console.","categories":[]},{"name":"PS3","url":"","categories":[]},{"name":"Mac Mini","url":"http://www.apple.com/macmini/","description":"The lil' Intel-based Mac.","categories":["mac","system","desktop"]}],"software":[{"name":"Photoshop CS3","url":"photoshop"},{"name":"Manga Studio EX 4","url":"manga-studio-ex"},{"name":"Illustrator","url":""},{"name":"InDesign","url":""},{"name":"After Effects","url":"after-effects"},{"name":"Coda","url":""},{"name":"CSSEdit","url":""},{"name":"WordPress","url":""},{"name":"ExpressionEngine","url":""},{"name":"Tweetie","url":""},{"name":"Twitter","url":""},{"name":"Dropbox","url":""},{"name":"Evernote","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"LaunchBar","url":""},{"name":"FontExplorer X","url":"fontexplorer-x"},{"name":"1Password","url":""},{"name":"iTunes","url":""},{"name":"Gmail","url":""},{"name":"Google Reader","url":"google-reader"},{"name":"Flickr","url":""},{"name":"Last.fm","url":""},{"name":"Momentile","url":""},{"name":"Tumblr","url":""},{"name":"LibraryThing","url":""},{"name":"2Across","url":"2across-ios"},{"name":"Byline","url":"byline-ios"},{"name":"Evernote","url":"evernote-ios"},{"name":"Tweetie","url":"tweetie-ios"},{"name":"Drop7","url":"drop7-ios"},{"name":"Instapaper","url":"instapaper-ios"},{"name":"Peggle","url":"peggle-ios"},{"name":"Convertbot","url":"convertbot-ios"},{"name":"CameraBag","url":"camerabag-ios"}]}
{"layout":"post","title":"An interview with Steve Jackson","slug":"steve.jackson","person":"Steve Jackson","summary":"Game designer","categories":["mac","designer","game"],"credits":{"name":"Steve Jackson Games"},"date":"2009-08-02","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"MacBook","url":"http://www.apple.com/macbook/","description":"The consumer Mac laptop.","categories":["mac","system","laptop"]},{"name":"HP 1210","url":"laserjet-cp1210","categories":[]},{"name":"1200","url":"laserjet-1200","categories":[]},{"name":"HP C4280","url":"photosmart-c4280","categories":[]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]}],"software":[{"name":"Firefox","url":""},{"name":"Savitar","url":""},{"name":"Mail","url":""},{"name":"Word","url":""},{"name":"AppleWorks","url":""},{"name":"XyWrite","url":""},{"name":"BBEdit","url":""},{"name":"Filemaker Pro","url":"filemaker-pro"}]}
{"layout":"post","title":"An interview with danah boyd","slug":"danah.boyd","person":"danah boyd","summary":"Researcher, Microsoft Research New England","categories":["mac","researcher"],"credits":{"name":"Adam Tinworth","url":"http://www.flickr.com/people/adders/"},"date":"2009-08-12","hardware":[{"name":"MacBook","url":"http://www.apple.com/macbook/","description":"The consumer Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPhone 3G","url":"http://www.apple.com/iphone/iphone-3g/","description":"The 3G iPhone.","categories":["mac","mobile","phone"]},{"name":"Mac Minis","url":"mac-mini","categories":["mac","system","desktop"]},{"name":"OSX","url":"mac-os-x","categories":[]},{"name":"Time Machine","url":"time-machine","categories":[]},{"name":"Sidekick","url":"http://www.sidekick.com/","description":"A popular line of smartphones.","categories":[]},{"name":"TiVo","url":"http://www.tivo.com/","description":"A digital TV recording system.","categories":[]},{"name":"PS2","url":"ps2","categories":[]},{"name":"Katamari Damacy","url":"katamari-damacy","categories":[]},{"name":"Kindle","url":"http://www.amazon.com/kindle/","description":"A digital book reader.","categories":[]}],"software":[{"name":"Mail","url":"mail"},{"name":"Calendar","url":"ical"},{"name":"Microsoft Office","url":"office"},{"name":"Adobe CS4","url":"creative-suite"},{"name":"Firefox","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"iTunes","url":""},{"name":"iChat","url":""},{"name":"VoodooPad","url":""},{"name":"Adium","url":""},{"name":"TweetDeck","url":""},{"name":"Snak","url":""},{"name":"Bookends","url":""},{"name":"PandoraJam","url":""},{"name":"Last.FM","url":""},{"name":"MAMP","url":""},{"name":"TextEdit","url":""},{"name":"Mail","url":"mail-ios"},{"name":"Messages","url":"messages-ios"},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Tweetie","url":"tweetie-ios"},{"name":"Summizer","url":"summizer-ios"},{"name":"NYTimes","url":"nytimes-ios"},{"name":"Tripit","url":"tripit-ios"},{"name":"KENKEN","url":"kenken-ios"},{"name":"Drop 7","url":"drop7-ios"},{"name":"AroundMe","url":"aroundme-ios"},{"name":"Foursquare","url":"foursquare-ios"}]}
{"layout":"post","title":"An interview with Máirín Duffy","slug":"mairin.duffy","person":"Máirín Duffy","summary":"UI designer, usability tester (Red Hat, Fedora)","categories":["linux","designer","usability"],"date":"2009-08-30","hardware":[{"name":"Lenovo Thinkpad x61 tablet","url":"thinkpad-x61","categories":["pc","system","laptop"]},{"name":"Precision 470 Workstations","url":"precision-470","categories":[]},{"name":"Red Hat Enterprise Linux 5","url":"rhel","categories":[]},{"name":"Apple G4 tower","url":"power-mac-g4","categories":[]},{"name":"Adobe Illustrator","url":"illustrator","categories":[]},{"name":"SVG format","url":"http://www.w3.org/Graphics/SVG \"The official SVG spec.\"","categories":[]},{"name":"Playstation 3","url":"http://www.us.playstation.com/PS3","description":"A shiny gaming console from Sony.","categories":[]},{"name":"Optoma HD70 720p digital projector","url":"hd70","categories":[]},{"name":"imported pink Sony PSP","url":"psp","categories":[]},{"name":"pink Nintendo DS","url":"ds","categories":[]},{"name":"Canon Digital Rebel XTI SLR camera","url":"rebel-xti","categories":[]},{"name":"a pink Sony Cybershot DSC-W120","url":"cyber-shot-w120","categories":[]},{"name":"Kodak EasyShare DX6490","url":"easyshare-dx6490","categories":[]},{"name":"Creative Webcam Notebook","url":"webcam-notebook","categories":[]},{"name":"a Canon LiDE 30","url":"lide-30","categories":[]},{"name":"the pink Sansa Clip 2GB model","url":"sansa-clip","categories":[]},{"name":"OGG Vorbis","url":"http://vorbis.com/ \"The official site for the OGG audio format.\"","categories":[]},{"name":"Virgin Mobile Flasher v7 phone","url":"flasher-v7","categories":[]}],"software":[{"name":"Fedora 11","url":"fedora"},{"name":"Red Hat Enterprise Linux 5","url":"rhel"},{"name":"Red Hat Network","url":"red-hat-network"},{"name":"GNOME","url":""},{"name":"Inkscape","url":""},{"name":"vector graphics","url":"http://en.wikipedia.org/wiki/Vector_graphics \"Wikipedia entry on vector graphics.\""},{"name":"the Gimp","url":"gimp"},{"name":"Scribus","url":""},{"name":"Agave","url":""},{"name":"Krita","url":""},{"name":"Audacity","url":""},{"name":"PiTiVi","url":""},{"name":"Firefox","url":""},{"name":"Evolution","url":""},{"name":"Mutt","url":""},{"name":"vim","url":""},{"name":"Python","url":""},{"name":"git","url":""},{"name":"Gedit","url":""},{"name":"Gnote","url":""},{"name":"Rhythmbox","url":""},{"name":"Twitter","url":""},{"name":"identi.ca","url":""},{"name":"Laconi.ca","url":"statusnet"},{"name":"Gwibber","url":""},{"name":"Wordpress.com","url":"wordpress"},{"name":"Wordpress MU","url":"wordpress-mu"},{"name":"Lekhonee","url":""},{"name":"Zimbra","url":""},{"name":"Flickr","url":""},{"name":"Gallery2","url":"gallery"},{"name":"Creative Commons","url":"http://creativecommons.org \"The official Creative Commons site.\""},{"name":"IRC","url":"http://en.wikipedia.org/wiki/Internet_Relay_Chat \"Wikipedia entry for IRC.\""},{"name":"XChat","url":""},{"name":"Pidgin","url":""},{"name":"Gobby","url":""},{"name":"Ekiga","url":""},{"name":"MediaWiki","url":""},{"name":"trac","url":""},{"name":"KVM","url":""},{"name":"VirtManager","url":"virt-manager"},{"name":"heuristic evaluations","url":"http://en.wikipedia.org/wiki/Heuristic_evaluation \"Wikipedia entry on heuristic evaluation.\""},{"name":"Xournal","url":""},{"name":"CellWriter","url":""}]}
{"layout":"post","title":"An interview with Amit Gupta","slug":"amit.gupta","person":"Amit Gupta","summary":"Photographer, entrepreneur","categories":["mac","designer","entrepeneur"],"date":"2009-10-02","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPhone 3Gs","url":"http://www.apple.com/iphone/iphone-3gs/","description":"The iPhone with a 3 megapixel camera and video recording.","categories":["mac","mobile","phone"]},{"name":"Samsung SyncMaster 244T","url":"syncmaster-244t","categories":[]},{"name":"Kinesis Advantage keyboard","url":"advantage-usb","categories":[]},{"name":"Logitech MX Revolution","url":"mx-revolution","categories":[]},{"name":"Sierra Compass 597 USB Modem","url":"compass-597","categories":[]},{"name":"2GB LiveScribe pen","url":"pulse-smartpen","categories":[]},{"name":"AudioTechnica noise-canceling headphones","url":"ath-anc7b","categories":[]},{"name":"Peltor H10A earmuffs","url":"optime-105","categories":[]},{"name":"airport","url":"airport-express","categories":[]},{"name":"MacBook","url":"http://www.apple.com/macbook/","description":"The consumer Mac laptop.","categories":["mac","system","laptop"]},{"name":"twitter","url":"","categories":[]},{"name":"Apple Wireless Keyboard","url":"keyboard","categories":[]},{"name":"geekdesk height-adjustable standing/sitting desk","url":"geekdesk","categories":[]},{"name":"Mirra chair","url":"mirra","categories":[]},{"name":"Nikon D70","url":"http://imaging.nikon.com/products/imaging/technology/archives/digitalcamera/slr/2004/d70/","description":"A 6.1 megapixel digital SLR camera.","categories":[]},{"name":"50mm 1.8","url":"af-nikkor-50mm-f1.8d","categories":[]},{"name":"Canon SD800IS","url":"powershot-sd800","categories":[]},{"name":"Flip HDs","url":"flip-ultra-hd","categories":[]}],"software":[{"name":"Mail.app","url":"mail"},{"name":"Mail.app","url":"mail"},{"name":"Mail.app","url":"mail"},{"name":"Things","url":""},{"name":"Gabble","url":""},{"name":"Yammer","url":""},{"name":"Tweetie","url":""},{"name":"iCal","url":""},{"name":"AddressBook","url":"address-book"},{"name":"Daylite","url":""},{"name":"LiveScribe desktop","url":"livescribe-desktop"},{"name":"PandoraBoy","url":""},{"name":"VMWare Fusion","url":"vmware-fusion"},{"name":"Quickbooks","url":""},{"name":"Photoshop CS4","url":"photoshop"},{"name":"iStat menus","url":"istat-menus"},{"name":"Backblaze","url":""},{"name":"RescueTime","url":""},{"name":"Textexpander","url":""},{"name":"Steer Mouse","url":"steermouse"},{"name":"Multiclutch","url":""},{"name":"SmartSleep","url":""},{"name":"JumpCut","url":""},{"name":"QuickSilver","url":""}]}
{"layout":"post","title":"An interview with Dan Benjamin","slug":"dan.benjamin","person":"Dan Benjamin","summary":"Developer, broadcaster","categories":["mac","developer","software","podcaster"],"date":"2009-10-06","hardware":[{"name":"15-inch MacBook Pro","url":"macbook-pro","categories":["mac","system","laptop"]},{"name":"Apple 24-inch LED Cinema Display","url":"cinema-display","categories":[]},{"name":"mStand","url":"http://www.raindesigninc.com/mstand.html","description":"A laptop stand.","categories":[]},{"name":"Apple Wireless Bluetooth Keyboard","url":"keyboard","categories":[]},{"name":"Logitech V450 Nano Cordless Laser Mouse for Notebooks","url":"v450-nano","categories":[]},{"name":"SuperDuper!","url":"superduper","categories":[]},{"name":"Time Machine","url":"time-machine","categories":[]},{"name":"500GB Western Digital Passport USB 2.0 portable hard drive","url":"passport-essential","categories":[]},{"name":"2TB Lacie 2Big Quadra","url":"2big-quadra","categories":[]},{"name":"Drobo 2","url":"drobo","categories":[]},{"name":"NewerTech Voyager Q drive dock","url":"voyager-q","categories":[]},{"name":"Dan's review","url":"http://hivelogic.com/articles/newertech-voyager-q-review/ \"Dan's review of the Voyager Q dock.\"","categories":[]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]},{"name":"Shure SM7B","url":"sm7b","categories":[]},{"name":"M-Audio Fast Track Ultra 8x8 USB 2.0 Interface","url":"fast-track-ultra","categories":[]},{"name":"Heil Sound PL2T studio mic boom","url":"heil-sound-pl2t","categories":[]},{"name":"Airport Extreme","url":"http://www.apple.com/airportextreme/","description":"A wireless access point.","categories":[]},{"name":"HP OfficeJet 6210","url":"officejet-6210","categories":[]}],"software":[{"name":"Mail","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Preview","url":""},{"name":"iCal","url":""},{"name":"Address Book","url":"address-book"},{"name":"iTunes","url":""},{"name":"TextMate","url":""},{"name":"Terminal","url":""},{"name":"Yojimbo","url":""},{"name":"Final Cut Pro","url":"final-cut-pro"},{"name":"Freeverse Sound Studio 3","url":"sound-studio"},{"name":"Pro Tools M-Powered","url":"pro-tools-m-powered"},{"name":"Photoshop CS4","url":"photoshop"},{"name":"Tweetie","url":""},{"name":"iChat","url":""}]}
{"layout":"post","title":"An interview with Khoi Vinh","slug":"khoi.vinh","person":"Khoi Vinh","summary":"Designer director (NYTimes.com)","categories":["mac","designer","web"],"date":"2009-10-12","hardware":[{"name":"MacBook Air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Twitter","url":"","categories":[]},{"name":"Speck SeeThru","url":"seethru-macbook-air","categories":[]},{"name":"mStand","url":"http://www.raindesigninc.com/mstand.html","description":"A laptop stand.","categories":[]},{"name":"keyboard","url":"http://www.apple.com/keyboard/","description":"The slim keyboard for Macs.","categories":[]},{"name":"Synergy","url":"","categories":[]},{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"a KB Cover","url":"black-kbcover-apple-keyboard","categories":[]},{"name":"Dell 1905FP","url":"1905fp","categories":["pc","system"]},{"name":"Apple Cinema Displays","url":"cinema-display","categories":[]},{"name":"Kensington Expert Mouse","url":"expert-mouse","categories":[]},{"name":"iPod photo","url":"http://en.wikipedia.org/wiki/IPod_Photo","description":"An iPod that allowed photo viewing.","categories":["mac","music"]},{"name":"Apple Remote","url":"http://store.apple.com/us/product/MA128G/B","description":"The remote Apple includes with computers these days.","categories":[]},{"name":"Nikon D70","url":"http://imaging.nikon.com/products/imaging/technology/archives/digitalcamera/slr/2004/d70/","description":"A 6.1 megapixel digital SLR camera.","categories":[]}],"software":[{"name":"Yojimbo","url":""},{"name":"MobileMe","url":"mobile-me"},{"name":"Google Reader","url":"google-reader"},{"name":"Adobe Photoshop","url":"photoshop"},{"name":"Adium","url":""},{"name":"iChat","url":""},{"name":"Path Finder","url":"path-finder"},{"name":"1Password","url":""},{"name":"Firefox","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Chrome","url":""},{"name":"Choosy","url":""}]}
{"layout":"post","title":"An interview with Amy Hoy","slug":"amy.hoy","person":"Amy Hoy","summary":"Interface designer","categories":["mac","designer","web"],"date":"2009-10-27","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Apple Cinema Display","url":"cinema-display","categories":[]},{"name":"Pro keyboard","url":"pro-keyboard","categories":[]},{"name":"Apple Extended II keyboard","url":"extended-keyboard-ii","categories":[]},{"name":"MX1000","url":"mx-1000","categories":[]},{"name":"Wacom Intuos 3","url":"intuos","categories":[]},{"name":"Bamboo","url":"http://wacom.com/bamboo/","description":"Smaller pen/multi-touch tablets.","categories":[]},{"name":"Kindle","url":"http://www.amazon.com/kindle/","description":"A digital book reader.","categories":[]},{"name":"iPhones","url":"iphone","categories":["mac","mobile","phone"]},{"name":"Nano","url":"ipod-nano","categories":[]}],"software":[{"name":"Safari's","url":"safari"},{"name":"Firefox","url":""},{"name":"Textmate","url":""},{"name":"git","url":""},{"name":"Github","url":""},{"name":"Quicksilver","url":""},{"name":"Mailplane","url":""},{"name":"Tweetie","url":""},{"name":"Photoshop","url":""},{"name":"Illustrator","url":""},{"name":"InDesign","url":""},{"name":"Lightroom","url":""},{"name":"The Hit List","url":"the-hit-list"},{"name":"Omnigraffle Pro","url":"omnigraffle-pro"},{"name":"Rails RJS Cheatsheet","url":"http://slash7.com/articles/2006/10/8/rjs-demistified-with-pretty-colors \"Amy's Rails RJS cheatsheet.\""},{"name":"12-page Jump Start Ecommerce Guide","url":"http://jumpstartcc.com/ \"Amy's ecommerce guide.\""},{"name":"Scrivener","url":""},{"name":"Curio","url":""},{"name":"Skitch","url":""},{"name":"Little Snapper","url":"littlesnapper"},{"name":"Skim","url":""},{"name":"FontExplorer X","url":"fontexplorer-x"},{"name":"iCal","url":""},{"name":"Dot Grid","url":"dot-grid-book"}]}
{"layout":"post","title":"An interview with Allan Odgaard","slug":"allan.odgaard","person":"Allan Odgaard","summary":"Mac developer (TextMate)","categories":["mac","developer","software"],"date":"2009-11-01","hardware":[{"name":"Mac Pro","url":"http://www.apple.com/macpro/","description":"The Intel-based Mac tower computer.","categories":["mac","system","desktop"]},{"name":"keyboard","url":"http://www.apple.com/keyboard/","description":"The slim keyboard for Macs.","categories":[]},{"name":"mighty mouse","url":"http://www.apple.com/mightymouse/","description":"The wireless mouse with the nipple.","categories":[]},{"name":"Cinema Display","url":"http://www.apple.com/displays/cinema/","description":"The LCD display line.","categories":[]},{"name":"AirPort Express","url":"http://www.apple.com/airportexpress/","description":"A small wireless access point.","categories":[]},{"name":"MBP","url":"macbook-pro","categories":[]}],"software":[{"name":"Adium","url":""},{"name":"LimeChat","url":""},{"name":"Soryu’s Limelight theme","url":"http://www.serenity.de/blog/2008-03-03-LimeChat.html \"A theme for LimeChat.\""},{"name":"OmniWeb","url":""},{"name":"Sneaky Peak","url":"http://www.omnigroup.com/applications/omniweb/download/sneakypeek \"Nightly builds of OmniWeb.\""},{"name":"Transmission","url":""},{"name":"NicePlayer","url":""},{"name":"Perian","url":""},{"name":"Mail","url":""},{"name":"Finder","url":""},{"name":"Terminal","url":""},{"name":"iTunes","url":""},{"name":"TextMate","url":""},{"name":"Quicksilver","url":""},{"name":"remind","url":""},{"name":"GeekTool","url":""},{"name":"TextExpander","url":""},{"name":"The Unarchiver","url":"the-unarchiver"},{"name":"TVShows","url":""},{"name":"NumberKey","url":"numberkey-ios"},{"name":"git","url":""},{"name":"Markdown.pl","url":"markdown"},{"name":"rsync","url":""},{"name":"CMake","url":""}]}
{"layout":"post","title":"An interview with Jeffrey Zeldman","slug":"jeffrey.zeldman","person":"Jeffrey Zeldman","summary":"Web designer, fan of Web Standards","categories":["mac","designer","web"],"date":"2009-11-13","hardware":[{"name":"iMacs","url":"imac","categories":["mac","system","desktop"]},{"name":"Eames desks","url":"eames-desk","categories":[]},{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]}],"software":[{"name":"PageSpinner","url":""},{"name":"TextMate","url":""},{"name":"Fetch","url":""},{"name":"WordPress","url":""},{"name":"Noel Jackson","url":"http://jcksn.com/ \"Noel's website.\""},{"name":"Photoshop","url":""},{"name":"Illustrator","url":""},{"name":"Pages","url":""},{"name":"Keynote","url":""},{"name":"my Flickr account","url":"http://www.flickr.com/photos/zeldman/ \"Zeldman's Flickr account.\""},{"name":"Twitter","url":""},{"name":"My Twitter","url":"http://twitter.com/zeldman \"Zeldman's Twitter account.\""},{"name":"Hahlo","url":""},{"name":"Twitterrific","url":""},{"name":"Tweetie for iPhone","url":"tweetie-ios"},{"name":"Cocktail","url":""},{"name":"SuperDuper","url":""},{"name":"Basecamp","url":""},{"name":"Dropbox","url":""},{"name":"Mobile Me","url":"mobile-me"},{"name":"Snapz Pro X","url":"snapz-pro-x"},{"name":"CoverScout","url":""},{"name":"xScope","url":""}]}
{"layout":"post","title":"An interview with Cal Henderson","slug":"cal.henderson","person":"Cal Henderson","summary":"Web developer, professional asshat","categories":["mac","windows","developer","web"],"date":"2009-11-26","hardware":[{"name":"Quicksilver","url":"","categories":[]},{"name":"Mac Pro","url":"http://www.apple.com/macpro/","description":"The Intel-based Mac tower computer.","categories":["mac","system","desktop"]},{"name":"Boot Camp","url":"boot-camp","categories":[]},{"name":"the wireless keyboard","url":"keyboard","categories":[]},{"name":"30\" widescreen Dell flatpanels","url":"3008wfp","categories":["pc","system"]},{"name":"Companion 5's","url":"companion-5","categories":[]},{"name":"optical mouse","url":"http://reviews.logitech.com/7061/344/logitech-optical-mouse-reviews/reviews.htm","description":"A simple mouse.","categories":[]},{"name":"HP Elitebook","url":"elitebook-8530w","categories":[]},{"name":"20\" flat panels","url":"2007fp","categories":[]},{"name":"$15 Microsoft one","url":"wired-keyboard-500","categories":[]},{"name":"Antec cooling pad","url":"notebook-cooler","categories":[]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]},{"name":"World of Warcraft","url":"wow","categories":[]},{"name":"Ikea Jerker desks","url":"jerker","categories":[]},{"name":"Sony MDR-7506 headphones","url":"mdr-7506","categories":[]}],"software":[{"name":"Windows XP Professional","url":"windows-xp"},{"name":"noted","url":""},{"name":"Firefox","url":""},{"name":"Thunderbird","url":""},{"name":"Outlook Express","url":"outlook-express"},{"name":"mIRC","url":""},{"name":"Miranda","url":""},{"name":"Trillian","url":""},{"name":"XMarks","url":""},{"name":"Evernote","url":""},{"name":"SyncToy","url":""},{"name":"Putty","url":""},{"name":"WinSCP","url":""},{"name":"Paint Shop Pro 5","url":"paint-shop-pro"},{"name":"Google Reader","url":"google-reader"},{"name":"Google Docs","url":"google-docs"},{"name":"Flickr","url":""},{"name":"(me)","url":"http://www.flickr.com/photos/bees/ \"Cal's photos.\""},{"name":"last.fm","url":""},{"name":"(me)","url":"http://www.last.fm/user/iamcal/ \"Cal's music.\""},{"name":"Wakoopa","url":""},{"name":"(me)","url":"http://wakoopa.com/iamcal \"Cal's software.\""},{"name":"Goodreads","url":""},{"name":"(me)","url":"http://www.goodreads.com/user/show/2234063-cal-henderson \"Cal's book.\""},{"name":"PHP","url":""},{"name":"MySQL","url":""},{"name":"Perl","url":""},{"name":"Linux","url":""},{"name":"Subversion","url":""},{"name":"Git","url":""},{"name":"CVS","url":""},{"name":"phpMyAdmin","url":""},{"name":"iTunes","url":""},{"name":"iTunes Remote","url":"itunes-remote"},{"name":"Pandora","url":""}]}
{"layout":"post","title":"An interview with Loren Brichter","slug":"loren.brichter","person":"Loren Brichter","summary":"Mac/iPhone developer (Tweetie)","categories":["mac","developer","software"],"date":"2009-12-03","hardware":[{"name":"Mac Pro","url":"http://www.apple.com/macpro/","description":"The Intel-based Mac tower computer.","categories":["mac","system","desktop"]},{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Cinema Display","url":"http://www.apple.com/displays/cinema/","description":"The LCD display line.","categories":[]},{"name":"mStand","url":"http://www.raindesigninc.com/mstand.html","description":"A laptop stand.","categories":[]},{"name":"aluminum keyboard","url":"keyboard","categories":[]},{"name":"Mighty Mouse","url":"http://www.apple.com/mightymouse/","description":"The wireless mouse with the nipple.","categories":[]},{"name":"iPhone 3GS","url":"http://www.apple.com/iphone/iphone-3gs/","description":"The iPhone with a 3 megapixel camera and video recording.","categories":["mac","mobile","phone"]},{"name":"iPod touches","url":"ipod-touch","categories":["mac","music"]},{"name":"Nikon D700","url":"http://www.nikonusa.com/Find-Your-Nikon/Product/Digital-SLR/25444/D700.html","description":"A 12.1 megapixel DSLR.","categories":[]},{"name":"50mm f/1.4","url":"af-nikkor-50mm-f1.4d","categories":[]},{"name":"Wii","url":"http://www.wii.com/","description":"A unique gaming console.","categories":[]},{"name":"PS3","url":"","categories":[]}],"software":[{"name":"Tweetie","url":""},{"name":"Dropbox","url":""},{"name":"Lightroom","url":""},{"name":"Gmail","url":""},{"name":"Mail","url":"mail"},{"name":"Fluid","url":""},{"name":"NetNewsWire","url":""},{"name":"Byline","url":"byline-ios"},{"name":"Things","url":""},{"name":"Instapaper","url":"instapaper-ios"},{"name":"BusyCal","url":""},{"name":"iCal","url":""},{"name":"TextMate","url":""},{"name":"Xcode","url":""},{"name":"Photoshop CS4","url":"photoshop"},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"QuickSilver","url":""},{"name":"LaunchBar","url":""}]}
{"layout":"post","title":"An interview with Aaron Swartz","slug":"aaron.swartz","person":"Aaron Swartz","summary":"Hacker, activist","categories":["mac","linux","developer","hacker","web"],"date":"2009-12-06","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"MacBook","url":"http://www.apple.com/macbook/","description":"The consumer Mac laptop.","categories":["mac","system","laptop"]},{"name":"AppleDesign Powered Speakers","url":"http://en.wikipedia.org/wiki/PowerCD#AppleDesign_Powered_Speakers","description":"A set of powered speakers released with the PowerCD.","categories":[]},{"name":"Samsung ML-1630 printer","url":"ml-1630","categories":[]},{"name":"AirPort Express","url":"http://www.apple.com/airportexpress/","description":"A small wireless access point.","categories":[]},{"name":"Embody chair","url":"embody","categories":[]},{"name":"Wireless Keyboard","url":"keyboard","categories":[]},{"name":"Android G1","url":"g1","categories":[]}],"software":[{"name":"Google Chrome","url":"chrome"},{"name":"Mailplane","url":""},{"name":"TextMate","url":""},{"name":"OmniOutliner","url":""},{"name":"iTunes","url":""},{"name":"iCal","url":""},{"name":"Google Calendar","url":"google-calendar"},{"name":"Terminal","url":""},{"name":"Transmit","url":""},{"name":"Markdown","url":""},{"name":"Ubuntu","url":""},{"name":"GNU screen","url":"screen"},{"name":"Python","url":""},{"name":"lighttpd","url":""},{"name":"PostgreSQL","url":""},{"name":"Git","url":""},{"name":"Tumblr","url":""},{"name":"Flickr","url":""},{"name":"Delicious","url":""},{"name":"Instapaper","url":""}]}
{"layout":"post","title":"An interview with Dan Cederholm","slug":"dan.cederholm","person":"Dan Cederholm","summary":"Web designer (SimpleBits)","categories":["mac","designer","web"],"date":"2010-01-07","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Powerbook","url":"powerbook-g4","categories":[]},{"name":"Cinema display","url":"http://www.apple.com/displays/cinema/","description":"The LCD display line.","categories":[]},{"name":"thin Mac keyboards","url":"keyboard","categories":[]},{"name":"Magic Mouse","url":"http://www.apple.com/magicmouse","description":"A multi-touch mouse.","categories":[]},{"name":"iPhone 3GS","url":"http://www.apple.com/iphone/iphone-3gs/","description":"The iPhone with a 3 megapixel camera and video recording.","categories":["mac","mobile","phone"]},{"name":"AppleTV","url":"apple-tv","categories":[]},{"name":"Nikon D90","url":"d90","categories":[]},{"name":"Leica C-LUX1","url":"c-lux-1","categories":[]},{"name":"Waterfield Cargo","url":"cargo-bag","categories":[]},{"name":"Doug Bowman mentioned them back in 2003","url":"http://stopdesign.com/archive/2003/09/10/sfbags.html \"Bowman's post about WaterField bags.\"","categories":[]}],"software":[{"name":"Coda","url":""},{"name":"Photoshop CS3","url":"photoshop"},{"name":"Tweetie","url":""},{"name":"xScope","url":""},{"name":"NetNewsWire","url":""},{"name":"SnapnDrag","url":""},{"name":"iShowU","url":""},{"name":"Keynote","url":""},{"name":"SuperDuper!","url":"superduper"},{"name":"GitX","url":""},{"name":"Dribbble","url":""},{"name":"VMware Fusion","url":"vmware-fusion"},{"name":"Tweetie 2","url":"tweetie-ios"},{"name":"MLB At Bat","url":"mlb-at-bat-ios"},{"name":"Ego","url":"ego-ios"},{"name":"The Weather Channel","url":"weather-channel-ios"},{"name":"Ramp Champ","url":"ramp-champ-ios"},{"name":"WordPress","url":"wordpress-ios"}]}
{"layout":"post","title":"An interview with Richard Stallman","slug":"richard.stallman","person":"Richard Stallman","summary":"Freedom campaigner","categories":["linux","developer","software"],"date":"2010-01-23","hardware":[{"name":"Lemote Yeelong","url":"yeelong","categories":[]}],"software":[{"name":"PMON","url":""},{"name":"gNewSense","url":""},{"name":"GNU/Linux distros","url":"http://www.gnu.org/distros \"GNU/Linux distributions.\""},{"name":"Emacs","url":""},{"name":"X console","url":"xfree86"}]}
{"layout":"post","title":"An interview with Mark Pilgrim","slug":"mark.pilgrim","person":"Mark Pilgrim","summary":"Developer & standards advocate (Google)","categories":["linux","writer","developer","web"],"date":"2010-01-30","hardware":[{"name":"ThinkCentre M57p","url":"http://www-307.ibm.com/pc/support/site.wss/document.do?sitestyle=lenovo&lndocid=MIGR-68844","description":"An old tower PC.","categories":[]},{"name":"Ultrasharp 2407WFP","url":"http://accessories.us.dell.com/sna/productdetail.aspx?sku=320-4335","description":"A 24 inch LCD monitor.","categories":[]},{"name":"Samsung 275T+","url":"275t-plus","categories":[]},{"name":"Customizer 104","url":"http://pckeyboards.stores.yahoo.net/customizer.html","description":"A keyboard in the style of the old Model M keyboards.","categories":[]},{"name":"IBM Model M","url":"model-m","categories":[]},{"name":"Logitech MX-1000 Cordless mouse","url":"mx-1000","categories":[]},{"name":"Drobos","url":"drobo","categories":[]},{"name":"Android G1 Dev Phone","url":"g1","categories":[]},{"name":"IKEA Poäng","url":"poang","categories":[]}],"software":[{"name":"Cyanogen ROM","url":"cyanogen"},{"name":"Astrid","url":""},{"name":"Twidroid","url":""},{"name":"connectbot","url":""},{"name":"Robo Defense","url":"robo-defense"},{"name":"Ubuntu Linux","url":"ubuntu"},{"name":"rxvt-unicode","url":""},{"name":"screen","url":""},{"name":"zsh","url":""},{"name":"Emacs 23","url":"emacs"},{"name":"ido-mode","url":""},{"name":"Emacs subreddit","url":"http://www.reddit.com/r/emacs \"The emacs category on reddit.\""},{"name":"Chromium","url":""},{"name":"Gmail","url":""},{"name":"Google Reader","url":"google-reader"},{"name":"mini-\"planet\"","url":"http://feeds.diveintomark.org/ \"Mark's feeds.\""},{"name":"Pandora","url":""},{"name":"Logitech Squeezebox","url":"squeezebox"},{"name":"Google Docs","url":"google-docs"},{"name":"AppleTV","url":"apple-tv"},{"name":"Wii","url":"http://www.wii.com/","description":"A unique gaming console."},{"name":"a custom launcher","url":"configurable-usb-loader"},{"name":"Klipsch iGroove","url":"igroove"},{"name":"Dive Into Python","url":"http://diveintopython.org/ \"Mark's Python guide.\""},{"name":"DocBook","url":""},{"name":"Dive Into Greasemonkey","url":"http://diveintogreasemonkey.org/ \"Mark's Greasemonkey guide.\""},{"name":"documentation for Universal Feed Parser","url":"http://feedparser.org/docs/ \"The docs for the feed parser.\""},{"name":"it makes sense to write in HTML","url":"http://diveintomark.org/archives/2009/03/27/dive-into-history-2009-edition \"Mark's article on writing in HTML.\""},{"name":"Dive Into Python 3","url":"http://diveintopython3.org/ \"Mark's Python v3 guide.\""},{"name":"Dive Into HTML5","url":"http://diveintohtml5.org/ \"Mark's HTML5 guide.\""}]}
{"layout":"post","title":"An interview with Adam Saltsman","slug":"adam.saltsman","person":"Adam Saltsman","summary":"Game designer (Canabalt)","categories":["mac","designer","game"],"date":"2010-02-17","hardware":[{"name":"macbook","url":"http://www.apple.com/macbook/","description":"The consumer Mac laptop.","categories":["mac","system","laptop"]},{"name":"Time Machine","url":"time-machine","categories":[]},{"name":"Apple Airport Extreme","url":"airport-extreme","categories":[]}],"software":[{"name":"XCode","url":""},{"name":"Eclipse","url":""},{"name":"Photoshop CS4","url":"photoshop"},{"name":"Cosmigo Pro Motion","url":"pro-motion"},{"name":"CFXR","url":""},{"name":"Audacity","url":""}]}
{"layout":"post","title":"An interview with Jason Rohrer","slug":"jason.rohrer","person":"Jason Rohrer","summary":"Game developer (Passage)","categories":["windows","linux","developer","game"],"date":"2010-02-25","hardware":[{"name":"Dell Inspiron 4100","url":"inspiron-4100","categories":["pc","system"]},{"name":"PowerComputing 250 MHz","url":"powertower-pro-250","categories":[]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]},{"name":"Intel Mac Mini","url":"mac-mini","categories":["mac","system","desktop"]},{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"a DataHand","url":"the-professional-ii","categories":[]}],"software":[{"name":"Windows XP","url":"windows-xp"},{"name":"Vista-hobbled","url":"windows-vista"},{"name":"Ubuntu","url":""},{"name":"Xubuntu","url":""},{"name":"Emacs","url":""},{"name":"makefiles","url":"make"},{"name":"GCC","url":""},{"name":"mtPaint","url":""},{"name":"GIMP","url":""},{"name":"Skencil","url":""},{"name":"LaTeX","url":""},{"name":"Firefox","url":""},{"name":"SDL","url":""},{"name":"Mac OS X","url":"mac-os-x"},{"name":"MinGW","url":""},{"name":"MSys","url":""},{"name":"GameMaker","url":"game-maker"}]}
{"layout":"post","title":"An interview with Derek Powazek","slug":"derek.powazek","person":"Derek Powazek","summary":"Designer, writer, small dog appreciator","categories":["mac","writer","designer","web"],"credits":{"name":"Heather Champ"},"date":"2010-03-06","hardware":[{"name":"iPhone 3GS","url":"http://www.apple.com/iphone/iphone-3gs/","description":"The iPhone with a 3 megapixel camera and video recording.","categories":["mac","mobile","phone"]},{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"EOS 5D","url":"http://www.usa.canon.com/consumer/controller?act=ModelInfoAct&fcategoryid=139&modelid=11933","description":"A 12 megapixel DSLR.","categories":[]},{"name":"Dymo LabelWriter Twin Turbo","url":"labelwriter-twin-turbo","categories":[]}],"software":[{"name":"Adobe Creative Suite","url":"creative-suite"},{"name":"Apple Mail","url":"mail"},{"name":"WriteRoom","url":""},{"name":"Microsoft Office","url":"office"},{"name":"FileMaker","url":"filemaker-pro"},{"name":"Endicia","url":""}]}
{"layout":"post","title":"An interview with Anne Halsall","slug":"anne.halsall","person":"Anne Halsall","summary":"Interface/UI designer","categories":["mac","designer","interface"],"date":"2010-03-12","hardware":[{"name":"MacBook Pros","url":"macbook-pro","categories":["mac","system","laptop"]},{"name":"24\" Cinema Display","url":"cinema-display","categories":[]},{"name":"aluminum keyboard","url":"keyboard","categories":[]},{"name":"Mighty Mouse","url":"http://www.apple.com/mightymouse/","description":"The wireless mouse with the nipple.","categories":[]},{"name":"Magic Mouse","url":"http://www.apple.com/magicmouse","description":"A multi-touch mouse.","categories":[]},{"name":"a tiny 5\" Wacom Graphire tablet","url":"graphire","categories":[]},{"name":"iPhone 3GS","url":"http://www.apple.com/iphone/iphone-3gs/","description":"The iPhone with a 3 megapixel camera and video recording.","categories":["mac","mobile","phone"]},{"name":"Nintendo DS Lite","url":"ds-lite","categories":[]},{"name":"Lumix DMC-FS3","url":"lumix-dmc-fs3","categories":[]}],"software":[{"name":"Adobe CS4 suite","url":"creative-suite"},{"name":"Illustrator","url":""},{"name":"Fireworks","url":""},{"name":"Photoshop","url":""},{"name":"Coda","url":""},{"name":"Xcode","url":""},{"name":"awesome Mac IDE","url":"inform"},{"name":"DropBox","url":""},{"name":"iTunes","url":""},{"name":"lala.com","url":"lala"},{"name":"Adium","url":""},{"name":"Google Chrome","url":"chrome"},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Mac OS X","url":"mac-os-x"},{"name":"Billings","url":""},{"name":"CandyBar","url":""},{"name":"ExpanDrive","url":""},{"name":"Scrivener","url":""},{"name":"OmniFocus","url":""},{"name":"Avernum","url":""},{"name":"Escape Velocity","url":"escape-velocity-nova"},{"name":"Zoom","url":""},{"name":"Dwarf Fortress","url":"dwarf-fortress"}]}
{"layout":"post","title":"An interview with Bert Kersey","slug":"bert.kersey","person":"Bert Kersey","summary":"Apple II developer, bird fancier","categories":["mac","developer","software"],"date":"2010-03-19","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"G-Raid","url":"http://www.g-technology.com/Products/g-raid.cfm","description":"A dual-drive RAID storage system.","categories":[]},{"name":"PowerBook’s","url":"powerbook-g4","categories":[]},{"name":"Sony HDR-FX7 HDV","url":"hdr-fx7","categories":[]},{"name":"iPod photo","url":"http://en.wikipedia.org/wiki/IPod_Photo","description":"An iPod that allowed photo viewing.","categories":["mac","music"]},{"name":"AT2020 USB Cardioid Condenser Microphone","url":"at2020","categories":[]}],"software":[{"name":"Final Cut Pro","url":"final-cut-pro"},{"name":"Soundtrack Pro","url":"soundtrack-pro"},{"name":"Adobe Photoshop","url":"photoshop"},{"name":"Microsoft Excel","url":"excel"},{"name":"Toast","url":""},{"name":"TextEdit","url":""},{"name":"Mail","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"iTunes","url":""},{"name":"iPhoto","url":""},{"name":"iDVD","url":""},{"name":"Monster Fair Pinball","url":"monster-fair-pinball"}]}
{"layout":"post","title":"An interview with Guy Kawasaki","slug":"guy.kawasaki","person":"Guy Kawasaki","summary":"Venture capitalist, entrepreneur","categories":["mac","suit","writer"],"date":"2010-03-25","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Magic Mouse","url":"http://www.apple.com/magicmouse","description":"A multi-touch mouse.","categories":[]},{"name":"Mac Pro","url":"http://www.apple.com/macpro/","description":"The Intel-based Mac tower computer.","categories":["mac","system","desktop"]},{"name":"Apple Cinema Display","url":"cinema-display","categories":[]},{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"iPhone 3GS","url":"http://www.apple.com/iphone/iphone-3gs/","description":"The iPhone with a 3 megapixel camera and video recording.","categories":["mac","mobile","phone"]},{"name":"Nexus One","url":"http://www.google.com/phone/","description":"Google's smart phone.","categories":[]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]}],"software":[{"name":"Mail","url":""},{"name":"iCal","url":""},{"name":"LightRoom","url":""},{"name":"BBEdit","url":""},{"name":"MarsEdit","url":""},{"name":"TextExpander","url":""},{"name":"TweetDeck","url":""},{"name":"PowerPoint","url":""},{"name":"Word","url":""},{"name":"Firefox","url":""},{"name":"Google Chrome","url":"chrome"},{"name":"Alltock","url":""},{"name":"Evernote","url":""},{"name":"Preview","url":""},{"name":"DropBox","url":""},{"name":"Tweetie","url":"tweetie-ios"},{"name":"TripIt","url":"tripit-ios"},{"name":"Evernote","url":"evernote-ios"},{"name":"Ego","url":"ego-ios"},{"name":"Analytics","url":"analytics-ios"},{"name":"You're #1","url":"youre-number-one-ios"},{"name":"more gory details","url":"http://www.openforum.com/idea-hub/topics/the-world/article/my-favorite-applications-guy-kawasaki \"Guy's favourite apps.\""},{"name":"SmartBrief","url":"http://www.smartbrief.com/ \"Industry newsletters.\""},{"name":"StumbleUpon","url":""}]}
{"layout":"post","title":"An interview with David Heinemeier Hansson","slug":"david.heinemeier.hansson","person":"David Heinemeier Hansson","summary":"Software developer (37signals)","categories":["mac","developer","web"],"date":"2010-04-07","hardware":[{"name":"cinema display","url":"http://www.apple.com/displays/cinema/","description":"The LCD display line.","categories":[]},{"name":"Macbook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Macbook Air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"ScanSnap","url":"scansnap-s1500m","categories":[]},{"name":"Magic Mouse","url":"http://www.apple.com/magicmouse","description":"A multi-touch mouse.","categories":[]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]}],"software":[{"name":"TextMate","url":""},{"name":"Propane","url":""},{"name":"Dropbox","url":""},{"name":"NetNewsWire","url":""},{"name":"Tweetie","url":""},{"name":"Skitch","url":""},{"name":"Basecamp","url":""},{"name":"Highrise","url":""},{"name":"Backpack","url":""}]}
{"layout":"post","title":"An interview with Bobbie Johnson","slug":"bobbie.johnson","person":"Bobbie Johnson","summary":"Writer","categories":["mac","writer","journalist"],"credits":{"name":"Meg Pickard","url":"http://www.flickr.com/photos/meg/"},"date":"2010-04-08","hardware":[{"name":"Mac Pro","url":"http://www.apple.com/macpro/","description":"The Intel-based Mac tower computer.","categories":["mac","system","desktop"]},{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"12” G4 Powerbook","url":"powerbook-g4","categories":[]}],"software":[{"name":"WriteRoom","url":""},{"name":"Firefox","url":""},{"name":"Google Chrome","url":"chrome"},{"name":"Gmail","url":""},{"name":"TeuxDeux","url":""},{"name":"Wordpress","url":""},{"name":"Tweetdeck","url":""},{"name":"Spotify","url":""}]}
{"layout":"post","title":"An interview with Andrew 'Bunnie' Huang","slug":"andrew.huang","person":"Andrew 'Bunnie' Huang","summary":"Hardware misfit","categories":["windows","linux","hardware","hacker"],"date":"2010-04-17","hardware":[{"name":"Lenovo T61p","url":"thinkpad-t61p","categories":[]},{"name":"ThinkPad mini dock","url":"http://shop.lenovo.com/SEUILibrary/controller/e/web/LenovoPortal/en_US/catalog.workflow:item.detail?GroupID=38&Code=433710U&current-category-id=34851FD360E5473EB9DFEB639312E18E","description":"A docking station for ThinkPad laptops.","categories":["pc","system","laptop"]},{"name":"LG Flatron W2452T","url":"w2452t","categories":[]},{"name":"NAD 325BEE","url":"c325bee","categories":[]},{"name":"Paradigm Atom","url":"atom-monitor","categories":[]},{"name":"Kinesis Professional QD","url":"advantage-pro-usb","categories":[]},{"name":"Logitech VX Nano","url":"vx-nano","categories":[]},{"name":"3D connexion SpaceNavigator for Notebooks","url":"spacenavigator-notebook","categories":[]},{"name":"Corsair 64 GB Flash Voyager","url":"flash-voyager","categories":[]},{"name":"Netgear ReadyNAS Duo","url":"readynas-duo","categories":[]},{"name":"APC Backup Pro 650VA","url":"back-ups-pro-650va","categories":[]},{"name":"Etymotic hf5","url":"hf5","categories":[]},{"name":"Beagle 480 USB","url":"beagle-usb-480","categories":[]},{"name":"Sony Cybershot DSC-T10","url":"cyber-shot-dsct-10","categories":[]},{"name":"Blackberry Bold","url":"bold","categories":[]},{"name":"Nintendo DSi","url":"dsi","categories":[]},{"name":"USB power adapter","url":"http://store.apple.com/us/product/MB352LL/B","description":"A small wall adapter for charging devices over USB.","categories":[]},{"name":"USB memory watch","url":"http://www.thinkgeek.com/gadgets/watches/9771/","description":"A watch with built-in storage.","categories":[]},{"name":"Peak Optics 7x Scale Loupe","url":"1975-scale-loupe-7x","categories":[]},{"name":"Tektronix TDS5104B","url":"tds5104b","categories":[]},{"name":"P6245","url":"http://www2.tek.com/cmswpt/psdetails.lotr?ct=PS&cs=psu&ci=13504&lc=EN","description":"An active probe.","categories":[]},{"name":"ERSA SMT Unit 60A","url":"smt-60a","categories":[]},{"name":"Weller WTCPT","url":"wtcpt","categories":[]},{"name":"ERSA Independent 75","url":"independent-75","categories":[]},{"name":"Olympus BHMJL","url":"bhm-jl","categories":[]},{"name":"Versalaser VL300","url":"vls-platform","categories":[]},{"name":"Keithley 2000","url":"2000-dmm","categories":[]}],"software":[{"name":"Windows XP","url":"windows-xp"},{"name":"VMware","url":"vmware-workstation"},{"name":"Ubuntu","url":""},{"name":"Quickbooks","url":""},{"name":"PGPdisk","url":"whole-disk-encryption"},{"name":"Eudora","url":""},{"name":"Altium Designer","url":"altium-designer"},{"name":"Solidworks","url":""},{"name":"emacs","url":""},{"name":"Firefox","url":""},{"name":"Windows Media Player","url":"windows-media-player"},{"name":"Skype","url":""},{"name":"Pidgin","url":""},{"name":"Office","url":""},{"name":"Visio","url":""},{"name":"Adobe Photoshop","url":"photoshop"},{"name":"Illustrator","url":""},{"name":"Ghostview","url":""},{"name":"PDFSAM","url":""},{"name":"Adobe Flash CS4","url":"flash"},{"name":"Flashdevelop","url":""},{"name":"Snagit","url":""},{"name":"cygwin","url":""},{"name":"IDA Pro","url":"ida-pro"},{"name":"Hex Workshop","url":"hex-workshop"},{"name":"SVN","url":"subversion"},{"name":"World of Warcraft","url":"wow"}]}
{"layout":"post","title":"An interview with Blaise Aguera y Arcas","slug":"blaise.aguera.y.arcas","person":"Blaise Aguera y Arcas","summary":"Architect (Bing Maps/Mobile)","categories":["windows","developer","web"],"date":"2010-04-29","hardware":[{"name":"VGN-Z690","url":"vgn-z690","categories":[]},{"name":"iPhone 3GS","url":"http://www.apple.com/iphone/iphone-3gs/","description":"The iPhone with a 3 megapixel camera and video recording.","categories":["mac","mobile","phone"]}],"software":[{"name":"Windows 7","url":"windows-7"},{"name":"Office 2010","url":"office"},{"name":"Outlook","url":""},{"name":"Word","url":""},{"name":"Powerpoint","url":""},{"name":"MATLAB","url":""},{"name":"Mathematica","url":""},{"name":"Developer Studio","url":"visual-studio"},{"name":"python","url":""},{"name":"TakeOne","url":""},{"name":"Photosynth","url":""},{"name":"ICE Panorama","url":"ice"},{"name":"Miktex","url":""},{"name":"the GIMP","url":"gimp"}]}
{"layout":"post","title":"An interview with Tim Bray","slug":"tim.bray","person":"Tim Bray","summary":"Developer Advocate (Google)","categories":["mac","developer","software"],"date":"2010-05-08","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Mac Pro","url":"http://www.apple.com/macpro/","description":"The Intel-based Mac tower computer.","categories":["mac","system","desktop"]},{"name":"Windows 7","url":"windows-7","categories":[]},{"name":"Canon i9900 photo printer","url":"i9900","categories":[]},{"name":"My wife","url":"http://laurenwood.org/ \"Lauren's website.\"","categories":[]},{"name":"a thousand CDs worth of music ripped","url":"http://www.tbray.org/ongoing/When/200x/2009/06/12/Music-Migration-Done \"Tim's post on ripping his CDs.\"","categories":[]},{"name":"Benchmark DAC1 USB","url":"dac1-usb","categories":[]},{"name":"KingRex USB DAC","url":"ud-01","categories":[]},{"name":"Cary Rocket 88","url":"rocket-88","categories":[]},{"name":"NEC 2690 display","url":"multisync-2690","categories":[]},{"name":"James Duncan Davidson's recommendation","url":"http://blog.duncandavidson.com/2008/03/nec-2690wuxi-first-impressions.html \"James' article on the monitor.\"","categories":[]},{"name":"SPARC T2000","url":"http://www.sun.com/servers/coolthreads/se_t2000/","description":"An enterprise server.","categories":[]},{"name":"one kind","url":"http://www.tbray.org/ongoing/When/200x/2008/05/01/Wide-Finder-2 \"Tim's post on Wide Finder 2.\"","categories":[]},{"name":"another","url":"http://www.tbray.org/ongoing/When/200x/2009/09/27/Concur-dot-next \"Tim's posts on Concurrent Programming.\"","categories":[]},{"name":"Nexus One","url":"http://www.google.com/phone/","description":"Google's smart phone.","categories":[]}],"software":[{"name":"Keynote","url":""},{"name":"Lightroom","url":""},{"name":"Aquamacs","url":""},{"name":"Perl","url":""},{"name":"Erlang","url":""},{"name":"Eclipse","url":""},{"name":"Android","url":""},{"name":"NetBeans","url":""},{"name":"Java","url":""},{"name":"Ruby","url":""},{"name":"Clojure","url":""},{"name":"C","url":""},{"name":"Gmail","url":""},{"name":"Fluidized","url":"fluid"},{"name":"Camino","url":""},{"name":"Adium","url":""},{"name":"Colloquy","url":""},{"name":"NetNewsWire","url":""},{"name":"Tweetie","url":""},{"name":"Photoshop Elements","url":"photoshop-elements"},{"name":"Terminal.app","url":"terminal"},{"name":"screen","url":""},{"name":"bash","url":""},{"name":"Vim","url":""},{"name":"Emacs","url":""},{"name":"big long blog post","url":"http://www.tbray.org/ongoing/When/200x/2009/08/27/How-To-Use-The-Dock \"How Tim uses the Dock.\""},{"name":"Twidroid","url":""},{"name":"Connectbot","url":""},{"name":"Tunes remote","url":"tunesremote"},{"name":"Spanning Sync","url":"spanning-sync"},{"name":"doubleTwist","url":""},{"name":"Debian","url":""},{"name":"OpenSolaris","url":""},{"name":"httpd","url":""},{"name":"Rack","url":""},{"name":"MySQL","url":""}]}
{"layout":"post","title":"An interview with Maggie McFee","slug":"maggie.mcfee","person":"Maggie McFee","summary":"Technologist","categories":["mac","sysadmin","artist"],"date":"2010-05-15","hardware":[{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"Ubuntu Linux","url":"ubuntu","categories":[]},{"name":"quad-core Mac Pro","url":"mac-pro","categories":["mac","system","desktop"]},{"name":"MacBook Air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Netgear ReadyNAS NV+","url":"readynas-nv-plus","categories":[]},{"name":"NewerTech drive","url":"voyager-q","categories":[]},{"name":"Apple Mac Pro","url":"mac-pro","categories":["mac","system","desktop"]},{"name":"Radeon HD 4870","url":"radeon-hd-4870-mac","categories":[]},{"name":"BlackMagic Intensity Pro","url":"intensity-pro","categories":[]},{"name":"Sans Digital TR5M","url":"towerraid-tr5m-b","categories":[]},{"name":"Dell S2309W","url":"sp2309w","categories":["pc","system"]},{"name":"Dell S2409W","url":"s2409w","categories":["pc","system"]},{"name":"M-Audio BX5a","url":"studiophile-bx5a","categories":[]},{"name":"M-Audio Axiom 49","url":"axiom-49","categories":[]},{"name":"Mac Mini","url":"http://www.apple.com/macmini/","description":"The lil' Intel-based Mac.","categories":["mac","system","desktop"]},{"name":"NewerTech MiniStack","url":"ministack-v2.5","categories":[]},{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Mighty Mouse","url":"http://www.apple.com/mightymouse/","description":"The wireless mouse with the nipple.","categories":[]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]},{"name":"Google Ion","url":"magic","categories":[]}],"software":[{"name":"OS X","url":"mac-os-x"},{"name":"Firefox","url":""},{"name":"Thunderbird","url":""},{"name":"TextWrangler","url":""},{"name":"BBedit","url":""},{"name":"Apple Remote Desktop","url":"remote-desktop"},{"name":"VMware Fusion","url":"vmware-fusion"},{"name":"X11","url":"xfree86"},{"name":"Terminal","url":""},{"name":"iCal","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"ExpanDrive","url":""},{"name":"Final Cut Studio","url":"final-cut-studio"},{"name":"VisualHub","url":""},{"name":"iWork","url":""},{"name":"Transmit","url":""},{"name":"Avid Media Composer","url":"media-composer"},{"name":"Adobe CS4 Production","url":"creative-suite"},{"name":"Aperture","url":""},{"name":"Logic Studio","url":"logic-studio"},{"name":"SuperDuper!","url":"superduper"},{"name":"Time Machine","url":"time-machine"}]}
{"layout":"post","title":"An interview with Joel Johnson","slug":"joel.johnson","person":"Joel Johnson","summary":"Writer","categories":["mac","windows","writer"],"date":"2010-05-17","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"keyboard","url":"http://www.apple.com/keyboard/","description":"The slim keyboard for Macs.","categories":[]},{"name":"Windows 7","url":"windows-7","categories":[]},{"name":"Left 4 Dead 2","url":"l4d2","categories":[]},{"name":"Team Fortress 2","url":"tf2","categories":[]},{"name":"Mac Mini","url":"http://www.apple.com/macmini/","description":"The lil' Intel-based Mac.","categories":["mac","system","desktop"]},{"name":"Canon Rebel XT","url":"rebel-xt","categories":[]},{"name":"iPhone 3GS","url":"http://www.apple.com/iphone/iphone-3gs/","description":"The iPhone with a 3 megapixel camera and video recording.","categories":["mac","mobile","phone"]}],"software":[{"name":"Writeroom","url":"writeroom"},{"name":"Adium","url":""},{"name":"Google Docs","url":"google-docs"},{"name":"Photoshop","url":""},{"name":"Illustrator","url":""},{"name":"Chrome","url":""},{"name":"1Password","url":""}]}
{"layout":"post","title":"An interview with American McGee","slug":"american.mcgee","person":"American McGee","summary":"Game designer","categories":["mac","windows","developer","game"],"date":"2010-05-22","hardware":[{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]},{"name":"spicypony.cn","url":"http://spicypony.cn/","categories":[]},{"name":"DexIQ","url":"dexiq-ios","categories":[]},{"name":"American McGee's Crooked House","url":"crooked-house-ios","categories":[]},{"name":"Kindle 6\" International","url":"kindle","categories":[]},{"name":"Macbook","url":"http://www.apple.com/macbook/","description":"The consumer Mac laptop.","categories":["mac","system","laptop"]},{"name":"PS3","url":"","categories":[]},{"name":"360","url":"xbox-360","categories":[]},{"name":"Wii","url":"http://www.wii.com/","description":"A unique gaming console.","categories":[]}],"software":[{"name":"Unreal 3","url":"unreal-engine"},{"name":"Photoshop CS4","url":"photoshop"},{"name":"Chrome","url":""},{"name":"Office","url":""},{"name":"Perforce","url":""},{"name":"Bugzilla","url":""}]}
{"layout":"post","title":"An interview with Christopher Leary","slug":"christopher.leary","person":"Christopher Leary","summary":"Musician (Ochre)","categories":["windows","musician"],"date":"2010-06-02","hardware":[{"name":"Windows 7","url":"windows-7","categories":[]},{"name":"Radeon HD4850","url":"radeon-hd-4850","categories":[]},{"name":"Waldorf Micro Q","url":"micro-q-phoenix","categories":[]},{"name":"Dave Smith Evolver","url":"evolver","categories":[]},{"name":"Echo Audiofire 8","url":"audiofire8","categories":[]},{"name":"Steinberg Cubase 4","url":"cubase","categories":[]},{"name":"Evolution MK-249C MIDI keyboard","url":"mk-249c","categories":[]},{"name":"MOTU MIDI Express XT","url":"express-xt","categories":[]},{"name":"Magma PCI","url":"http://www.magma.com/pciexpansion.asp","description":"An expansion system for adding new PCI/PCI-X cards.","categories":[]},{"name":"UAD-1","url":"http://en.wikipedia.org/wiki/UAD-1","description":"A PCI card with an on-board media processor.","categories":[]},{"name":"Audio Technica AT4040","url":"at4040","categories":[]},{"name":"Yamaha Pacifica 312","url":"pacifica-312","categories":[]},{"name":"Mytek Stereo96 DAC","url":"stereo96","categories":[]},{"name":"Klein & Hummel O300","url":"o-300","categories":[]},{"name":"Herman Miller Mirra","url":"mirra","categories":[]}],"software":[{"name":"Zeta","url":"z3ta"},{"name":"Waldorf Attack","url":"attack"},{"name":"Native Instruments Battery","url":"battery"},{"name":"NI Kontakt","url":"kontakt"},{"name":"Sonnox","url":"http://www.sonnoxplugins.com/pub/plugins/home.htm \"Audio plugin developers.\""},{"name":"PSP","url":"http://www.us.playstation.com/PSP","description":"Sony's portable gaming console."},{"name":"Voxengo","url":"http://www.voxengo.com/ \"Audio plugin developers.\""},{"name":"GRM Tools","url":"http://www.grmtools.org/ \"Audio plugins developers.\""},{"name":"Smart Electronix","url":"http://www.smartelectronix.com/ \"Audio plugin developers and experimenters.\""},{"name":"Ohm Force","url":"http://www.ohmforce.com/HomePage.do \"Audio plugin developers.\""},{"name":"Wavelab","url":""},{"name":"FileChucker","url":""},{"name":"Filezilla","url":""}]}
{"layout":"post","title":"An interview with Craig Mod","slug":"craig.mod","person":"Craig Mod","summary":"Writer, designer, publisher, developer","categories":["mac","writer","designer"],"date":"2010-06-08","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"Cinema Display","url":"http://www.apple.com/displays/cinema/","description":"The LCD display line.","categories":[]},{"name":"Time Capsule","url":"http://www.apple.com/timecapsule/","description":"A WiFi access point and backup system.","categories":[]},{"name":"Magic Mouse","url":"http://www.apple.com/magicmouse","description":"A multi-touch mouse.","categories":[]},{"name":"iPod Touch","url":"http://www.apple.com/ipodtouch/","description":"It's like an iPhone, without the phone bit.","categories":["mac","music"]},{"name":"the mountains","url":"http://craigmod.com/journal/annapurna_moonrise/ \"Craig's post on climbing into the Himalayas.\"","categories":[]},{"name":"iPhone 3GS","url":"http://www.apple.com/iphone/iphone-3gs/","description":"The iPhone with a 3 megapixel camera and video recording.","categories":["mac","mobile","phone"]},{"name":"Lumix GF1","url":"http://panasonic.net/avc/lumix/systemcamera/gms/gf1/index.html","description":"A 12.1 megapixel digital camera.","categories":[]},{"name":"my","url":"http://craigmod.com/journal/gf1-fieldtest/ \"Craig's post on the GF1.\"","categories":[]}],"software":[{"name":"Chrome","url":""},{"name":"Gmail","url":""},{"name":"Google Calendar","url":"google-calendar"},{"name":"Google Reader","url":"google-reader"},{"name":"Google Docs","url":"google-docs"},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is."},{"name":"desktop","url":"tweetie"},{"name":"Pages","url":""},{"name":"Things","url":""},{"name":"Instapaper Pro","url":"instapaper-ios"},{"name":"Simplenote","url":"simplenote-ios"},{"name":"TextExpander","url":""},{"name":"Fluid","url":""},{"name":"Coda","url":""},{"name":"Terminal","url":""},{"name":"Sequel Pro","url":"sequel-pro"},{"name":"Firefox","url":""},{"name":"firebug","url":""},{"name":"PHP","url":""},{"name":"CodeIgniter","url":""},{"name":"Expression Engine","url":"expressionengine"},{"name":"Transmit","url":""},{"name":"Crash Plan","url":"crashplan"},{"name":"Git","url":""},{"name":"GitHub","url":""},{"name":"Lightroom","url":""},{"name":"Photoshop","url":""},{"name":"Illustrator","url":""},{"name":"Indesign","url":""},{"name":"Keynote","url":""},{"name":"BBEdit","url":""},{"name":"Textmate","url":""}]}
{"layout":"post","title":"An interview with Ben Hammersley","slug":"ben.hammersley","person":"Ben Hammersley","summary":"Editor (Wired UK), war correspondent","categories":["mac","photographer","journalist","editor"],"date":"2010-06-23","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"MacBook Air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"iBook","url":"http://en.wikipedia.org/wiki/IBook","description":"Apple's old consumer laptop.","categories":["mac","system","laptop"]}],"software":[{"name":"QuickSilver","url":""},{"name":"Zumodrive","url":""},{"name":"Firefox","url":""},{"name":"Mozilla Weave","url":"weave"},{"name":"Xmarks","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Spotify","url":""},{"name":"Gmail","url":""},{"name":"Instapaper","url":"instapaper-ios"},{"name":"Tweetie","url":"tweetie-ios"},{"name":"Foursquare","url":"foursquare-ios"},{"name":"Byline","url":"byline-ios"},{"name":"Words With Friends","url":"words-with-friends-ios"},{"name":"Boxee","url":""},{"name":"Google Docs","url":"google-docs"},{"name":"BaseCamp","url":""},{"name":"TextMate","url":""},{"name":"Transmit","url":""},{"name":"Terminal","url":""},{"name":"Mail.app","url":"mail"}]}
{"layout":"post","title":"An interview with Colin Percival","slug":"colin.percival","person":"Colin Percival","summary":"Developer, security officer (FreeBSD)","categories":["bsd","developer","software"],"date":"2010-06-27","hardware":[{"name":"Dell XPS M1530","url":"xps-m1530","categories":["pc","system"]},{"name":"an HTC Dream","url":"g1","categories":[]}],"software":[{"name":"FreeBSD","url":""},{"name":"KDE","url":""},{"name":"Konqueror","url":""},{"name":"Firefox","url":""},{"name":"Thunderbird","url":""},{"name":"kwrite","url":""},{"name":"nano","url":""},{"name":"emacs","url":""},{"name":"djbdns","url":""},{"name":"qmail","url":""},{"name":"ezmlm","url":""},{"name":"Apache","url":"httpd"},{"name":"stunnel","url":""},{"name":"EC2","url":""},{"name":"Ubuntu","url":""},{"name":"my recent blog post","url":"http://www.daemonology.net/blog/2010-04-05-FreeBSD-EC2.html \"Colin's post on FreeBSD and EC2.\""},{"name":"Android","url":""},{"name":"Twidroid","url":""},{"name":"ConnectBot","url":""}]}
{"layout":"post","title":"An interview with Sue Allspaw","slug":"sue.allspaw","person":"Sue Allspaw","summary":"Poet, information security analyst","categories":["windows","security","poet"],"date":"2010-07-03","hardware":[{"name":"G60-120US","url":"http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01533413&cc=us&dlc=en&lc=en","description":"A 15.6 inch PC laptop.","categories":[]},{"name":"iPhone 3G","url":"http://www.apple.com/iphone/iphone-3g/","description":"The 3G iPhone.","categories":["mac","mobile","phone"]},{"name":"ECW gear","url":"http://photolibrary.usap.gov/Portscripts/PortWeb.dll?query&field1=Filename&op1=matches&value=ECWGUYCLIP.JPG&catalog=Antarctica&template=USAPgovMidThumbs \"Extreme Cold Weather clothing.\"","categories":[]},{"name":"harder-to-reach places","url":"http://www.flickr.com/photos/squeedunk/146215929/ \"Sue's photo of Antarctica.\"","categories":[]},{"name":"Canon Power Shot A95","url":"powershot-a95","categories":[]}],"software":[{"name":"Microsoft Word","url":"word"},{"name":"Microsoft Excel","url":"excel"},{"name":"WordPress","url":""},{"name":"Nessus","url":""},{"name":"NStalker","url":"n-stalker"},{"name":"Grendel","url":"grendel-scan"},{"name":"WebScarab","url":""},{"name":"PowerPoint","url":""},{"name":"Visio","url":""}]}
{"layout":"post","title":"An interview with Laura Khalil","slug":"laura.khalil","person":"Laura Khalil","summary":"Marketer, puzzler, robot builder","categories":["mac","hacker","blogger"],"date":"2010-07-06","hardware":[{"name":"Macbook","url":"http://www.apple.com/macbook/","description":"The consumer Mac laptop.","categories":["mac","system","laptop"]},{"name":"Samsung Moment","url":"moment","categories":[]},{"name":"Android","url":"","categories":[]},{"name":"Nikon D40","url":"d40","categories":[]},{"name":"PowerShot SD1100IS","url":"powershot-sd1100-is","categories":[]},{"name":"Orion SkyQuest XT8i","url":"skyquest-xt8i","categories":[]},{"name":"Galileoscope","url":"","categories":[]},{"name":"TV-B-Gone","url":"http://www.tvbgone.com/cfe_tvbg_main.php","description":"A remote control for turning off televisions.","categories":[]},{"name":"Elecraft K2 HF","url":"k2-hf","categories":[]},{"name":"Wii","url":"http://www.wii.com/","description":"A unique gaming console.","categories":[]},{"name":"Netflix","url":"","categories":[]},{"name":"Dance Dance Revolution","url":"ddr","categories":[]}],"software":[{"name":"Gmail","url":""},{"name":"Google Calendar","url":"google-calendar"},{"name":"Google Reader","url":"google-reader"},{"name":"Firefox","url":""},{"name":"Chrome","url":""},{"name":"Grooveshark","url":""},{"name":"Wordpress","url":""},{"name":"Google Doc","url":"google-docs"},{"name":"Picasa","url":""},{"name":"Audacity","url":""},{"name":"TextMate","url":""},{"name":"Ruby","url":""},{"name":"Python","url":""},{"name":"Skitch","url":""},{"name":"Balsamiq","url":""}]}
{"layout":"post","title":"An interview with Michael Lopp","slug":"michael.lopp","person":"Michael Lopp","summary":"Engineering manager, reposer","categories":["mac","manager","software","writer"],"date":"2010-07-09","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"MacBook Air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"a Johnson & Murphy messenger bag","url":"dividends-messenger","categories":[]},{"name":"Mac Pro","url":"http://www.apple.com/macpro/","description":"The Intel-based Mac tower computer.","categories":["mac","system","desktop"]},{"name":"keyboard","url":"http://www.apple.com/keyboard/","description":"The slim keyboard for Macs.","categories":[]},{"name":"Logitech Performance Mouse MX","url":"performance-mouse-mx","categories":[]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"a Panasonic DMC-LX3","url":"dmc-lx3","categories":[]}],"software":[{"name":"Mac OS X","url":"mac-os-x"},{"name":"LaunchBar","url":""},{"name":"Chrome","url":""},{"name":"NetNewsWire","url":""},{"name":"Things","url":""},{"name":"TextEdit","url":""},{"name":"Microsoft Word","url":"word"},{"name":"TextMate","url":""},{"name":"Keynote","url":""},{"name":"CSSEdit","url":""},{"name":"Transmit 3","url":"transmit"},{"name":"Photoshop CS3","url":"photoshop"}]}
{"layout":"post","title":"An interview with Dustin Curtis","slug":"dustin.curtis","person":"Dustin Curtis","summary":"Writer, UX designer","categories":["mac","designer","interface","writer"],"date":"2010-07-11","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Here's a picture","url":"http://screenshots.dustincurtis.com/photo-20100527-183723.jpg \"A photo of Dustin's MacBook Pro's guts.\"","categories":[]},{"name":"Sennheiser HD-600","url":"hd-600","categories":[]},{"name":"Shure SE-530","url":"se530","categories":[]},{"name":"a Canon T1i camera","url":"rebel-t1i","categories":[]}],"software":[{"name":"Dropbox","url":""},{"name":"S3","url":""},{"name":"JungleDisk","url":"jungle-disk"},{"name":"CS5 Master Collection","url":"creative-suite"},{"name":"Photoshop","url":""},{"name":"Textmate","url":""},{"name":"Vim","url":""},{"name":"Git","url":""},{"name":"Capistrano","url":""},{"name":"nginx","url":""},{"name":"php","url":""},{"name":"the Webkit nightly","url":"webkit"},{"name":"Things","url":""},{"name":"iCal","url":""},{"name":"Tweetie","url":""},{"name":"Chromium","url":""},{"name":"Firefox","url":""},{"name":"XCode","url":""},{"name":"Transmission","url":""},{"name":"VMWare Fusion","url":"vmware-fusion"},{"name":"Word 2010","url":"word"},{"name":"Transmit 4","url":"transmit"},{"name":"Aperture 3","url":"aperture"},{"name":"VLC","url":""},{"name":"Steam","url":""},{"name":"Pandora One","url":"pandora-one"},{"name":"Terminal","url":""}]}
{"layout":"post","title":"An interview with Mitch Altman","slug":"mitch.altman","person":"Mitch Altman","summary":"Inventor","categories":["mac","windows","hacker","hardware"],"date":"2010-07-21","hardware":[{"name":"Marian Marc 8 MIDI sound card","url":"marc-8-midi","categories":[]},{"name":"3ware Escalade 7850","url":"escalade-7850","categories":[]},{"name":"Kensington Expert Mouse Trackball","url":"expert-mouse","categories":[]},{"name":"Bamboo Pen & Touch","url":"bamboo","categories":[]},{"name":"SlimBlade Trackball","url":"slimblade","categories":[]},{"name":"Microsoft Natural keyboard","url":"natural-keyboard","categories":[]},{"name":"Lenovo ThinkPad T400","url":"thinkpad-t400","categories":["pc","system","laptop"]}],"software":[{"name":"Windows Vista","url":"windows-vista"},{"name":"Ubuntu","url":""},{"name":"Windows 7","url":"windows-7"},{"name":"Microsoft Office 2007","url":"office"},{"name":"OpenOffice","url":""},{"name":"Thunderbird","url":""},{"name":"Eudora","url":""},{"name":"QuickBooks online","url":"quickbooks"},{"name":"Quicken 2002","url":"quicken-deluxe"},{"name":"CoolEdit Pro 2.0","url":"cool-edit-pro"},{"name":"FruityLoops Studio","url":"fruityloops"},{"name":"Photoshop 7","url":"photoshop"},{"name":"Word","url":""},{"name":"Inkscape","url":""},{"name":"Microsoft Movie Maker","url":"movie-maker"},{"name":"Adobe Lightroom","url":"lightroom"},{"name":"my Flickr account","url":"http://www.flickr.com/photos/maltman23 \"Mitch's Flickr account.\""},{"name":"ZeusEdit","url":""},{"name":"Brief Editor","url":"brief"},{"name":"WinAVR","url":""},{"name":"Skype","url":""},{"name":"WS FTP Pro","url":"ws-ftp-pro"},{"name":"PuTTY","url":""},{"name":"Nero Burning ROM","url":"nero-burning-rom"},{"name":"Win2PDF","url":""},{"name":"WinZip","url":""},{"name":"WinRAR","url":""},{"name":"Avast","url":"avast-free"},{"name":"True Image Home","url":"true-home-image"}]}
{"layout":"post","title":"An interview with Stewart Smith","slug":"stewart.smith","person":"Stewart Smith","summary":"Programmer, graphic designer","categories":["developer","software","designer"],"date":"2010-08-01","hardware":[{"name":"NSA","url":"http://nsa.gov/ \"America's National Security Agency.\"","categories":[]},{"name":"Gutenberg bibles","url":"http://en.wikipedia.org/wiki/Gutenberg_Bible \"A Wikipedia entry on the Gutenberg Bible.\"","categories":[]}],"software":[{"name":"Ruby","url":""},{"name":"Why","url":"http://en.wikipedia.org/wiki/Why_the_lucky_stiff \"The Wikipedia entry on Why.\""},{"name":"OpenGL","url":""},{"name":"JavaScript","url":""},{"name":"Scheme","url":""},{"name":"Lisp","url":""},{"name":"C","url":""},{"name":"C++","url":"c-plusplus"},{"name":"Objective-C","url":""},{"name":"Python","url":""},{"name":"sharp friends","url":"http://j2labs.net/ \"J2 Labs' website.\""}]}
{"layout":"post","title":"An interview with Dave Shea","slug":"dave.shea","person":"Dave Shea","summary":"Designer, illustrator","categories":["mac","artist","designer","web"],"credits":{"name":"Tom Coates","url":"http://www.flickr.com/photos/plasticbag/"},"date":"2010-08-10","hardware":[{"name":"Macbook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"MacBook Air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"a mouse","url":"magic-mouse","categories":[]},{"name":"keyboard","url":"http://www.apple.com/keyboard/","description":"The slim keyboard for Macs.","categories":[]},{"name":"Canon 20D","url":"rebel-xt","categories":[]},{"name":"28-135mm","url":"ef-28mm-f2.8","categories":[]},{"name":"10-22mm EF-S","url":"ef-s-10-22mm-f3.5-4.5-usm","categories":[]},{"name":"50mm f/1.8 prime","url":"ef-50mm-f1.8-ii","categories":[]},{"name":"32GB iPhone 3GS","url":"iphone-3gs","categories":["mac","mobile","phone"]},{"name":"aluminum model","url":"iphone","categories":[]}],"software":[{"name":"CS4","url":"creative-suite"},{"name":"Photoshop","url":""},{"name":"Illustrator","url":""},{"name":"InDesign","url":""},{"name":"Coda","url":""},{"name":"Transmit","url":""},{"name":"TextMate","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"1Password","url":""},{"name":"iCal","url":""},{"name":"Parallels","url":"parallels-desktop"},{"name":"iTunes","url":""},{"name":"Keynote","url":""},{"name":"Terminal","url":""},{"name":"Processing","url":""},{"name":"GMail","url":""},{"name":"DropBox","url":""},{"name":"BaseCamp","url":""},{"name":"MobileMe","url":"mobile-me"},{"name":"WeatherEye","url":"weathereye-ios"},{"name":"1Password","url":"1password-ios"},{"name":"Air Sharing","url":"air-sharing-ios"},{"name":"RunKeeper","url":"runkeeper-ios"}]}
{"layout":"post","title":"An interview with Stephen Wolfram","slug":"stephen.wolfram","person":"Stephen Wolfram","summary":"Scientist, developer, mathematician","categories":["mac","windows","developer","software","scientist"],"date":"2010-08-17","hardware":[{"name":"Windows 7","url":"windows-7","categories":[]},{"name":"detailed here","url":"http://www.wolframscience.com/nksonline/page-854b-text \"A page listing the computers Stephen has used.\"","categories":[]},{"name":"15\" MacBook Pro","url":"macbook-pro","categories":["mac","system","laptop"]},{"name":"Lenovo ThinkPad X301","url":"thinkpad-x301","categories":["pc","system","laptop"]},{"name":"MacBook Air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"MiFi","url":"http://en.wikipedia.org/wiki/MiFi","description":"A portable mobile hotspot.","categories":[]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"iPad 3G","url":"http://www.apple.com/ipad/","description":"Apple's tablet device (with 3G).","categories":["mac","mobile","tablet"]},{"name":"Kindle","url":"http://www.amazon.com/kindle/","description":"A digital book reader.","categories":[]},{"name":"gridMathematica","url":"","categories":[]},{"name":"Anybots","url":"http://anybots.com/ \"A telepresence robot.\"","categories":[]}],"software":[{"name":"Firefox","url":""},{"name":"Adobe Connect","url":"connect"},{"name":"ShoreTel","url":"http://www.shoretel.com/","description":"All-in-one VoIP phone system."},{"name":"webMathematica","url":""}]}
{"layout":"post","title":"An interview with Salvatore Sanfilippo","slug":"salvatore.sanfilippo","person":"Salvatore Sanfilippo","summary":"Software developer (Redis)","categories":["mac","linux","developer","software"],"date":"2010-08-27","hardware":[{"name":"Macbook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Mac OS X","url":"mac-os-x","categories":[]},{"name":"Ubuntu","url":"","categories":[]},{"name":"Dell T3500","url":"precision-t3500","categories":["pc","system"]},{"name":"iPhone 3G","url":"http://www.apple.com/iphone/iphone-3g/","description":"The 3G iPhone.","categories":["mac","mobile","phone"]}],"software":[{"name":"zsh","url":""},{"name":"vim","url":""},{"name":"git","url":""},{"name":"Google Chrome","url":"chrome"},{"name":"Adium","url":""},{"name":"TweetDeck","url":""},{"name":"uTorrent","url":""},{"name":"Colloquy","url":""},{"name":"Gmail","url":""},{"name":"Github","url":""},{"name":"Flickr","url":""},{"name":"search.twitter.com","url":"http://search.twitter.com/ \"Twitter's search engine.\""},{"name":"duck duck go","url":"duckduckgo"},{"name":"Time Machine","url":"time-machine"},{"name":"fvwm2","url":"fvwm"},{"name":"this minimalistic setup","url":"http://antirez.com/blogdata/119/desktop.png \"A screenshot of Salvatore's minimal desktop.\""}]}
{"layout":"post","title":"An interview with Keita Takahashi","slug":"keita.takahashi","person":"Keita Takahashi","summary":"Game designer (Katamari Damacy)","categories":["mac","designer","game"],"date":"2010-09-03","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"SyncMaster 730mp","url":"http://www.samsung.com/us/support/detail/supportPrdDetail.do?menu=SP01&prd_ia_cd=05020100&prd_mdl_cd=&prd_mdl_name=730MP","description":"A 17 inch monitor/TV.","categories":[]},{"name":"Playstation 3","url":"http://www.us.playstation.com/PS3","description":"A shiny gaming console from Sony.","categories":[]},{"name":"Happy Hacking Keyboard Professional 2","url":"happy-hacking-keyboard","categories":[]},{"name":"Apple Mighty Mouse","url":"mighty-mouse","categories":[]},{"name":"MacBook","url":"http://www.apple.com/macbook/","description":"The consumer Mac laptop.","categories":["mac","system","laptop"]},{"name":"Apple Magic Mouse","url":"magic-mouse","categories":[]},{"name":"Marathon Mouse M705","url":"http://www.logitech.com/en-us/mice-pointers/mice/devices/5843","description":"A wireless mouse.","categories":[]},{"name":"Intuos","url":"http://www.wacom.com/intuos/","description":"A pen tablet.","categories":[]},{"name":"iPod","url":"http://www.apple.com/ipod/","description":"The infamous music player.","categories":["mac","music"]},{"name":"Nokia NM705i","url":"nm705i","categories":[]},{"name":"DSC-HX5V","url":"cyber-shot-hx5v","categories":[]},{"name":"SONY OLED XEL-1","url":"xel-1","categories":[]},{"name":"Numatic Henry","url":"henry-xtra","categories":[]},{"name":"BOSE Wave Radio","url":"wave-radio-cd","categories":[]},{"name":"SHARP SJ-XW44S","url":"sj-xw44s","categories":[]},{"name":"ARROW","url":"http://www.arrow.ecnet.jp/ \"Arrow, bespoke bike makers.\"","categories":[]}],"software":[{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"WebKit","url":""},{"name":"Minefield","url":""},{"name":"Colloquy","url":""},{"name":"Pathfinder","url":"path-finder"},{"name":"Photoshop CS4","url":"photoshop"},{"name":"Illustrator CS3","url":"illustrator"},{"name":"ImageReady","url":""},{"name":"GIFfun","url":"giffun"},{"name":"Desktastic","url":""},{"name":"Coda","url":""},{"name":"ClipMenu","url":""},{"name":"MenuCalendarClock iCal Edition","url":"menucalendarclock"},{"name":"AppCleaner","url":""},{"name":"OmniWeb","url":""},{"name":"OmniFocus","url":""}]}
{"layout":"post","title":"An interview with Jason Fried","slug":"jason.fried","person":"Jason Fried","summary":"Co-founder of 37 Signals","categories":["mac","suit","software"],"date":"2010-09-09","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"cinema display","url":"http://www.apple.com/displays/cinema/","description":"The LCD display line.","categories":[]},{"name":"a Fuji ScanSnap","url":"scansnap-s1500m","categories":[]},{"name":"Shure SE530s","url":"se530","categories":[]}],"software":[{"name":"Basecamp","url":""},{"name":"Highrise","url":""},{"name":"Campfire","url":""},{"name":"Backpack","url":""},{"name":"Writeboard","url":""},{"name":"Ta-da List","url":"ta-da-list"},{"name":"TextMate","url":""},{"name":"Dropbox","url":""},{"name":"Git","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Firefox","url":""},{"name":"Chrome","url":""},{"name":"Propane","url":""},{"name":"Terminal","url":""},{"name":"Instapaper","url":""},{"name":"Photoshop","url":""},{"name":"Mail","url":""},{"name":"Divvy","url":""},{"name":"MobileMe","url":"mobile-me"},{"name":"Transmit","url":""},{"name":"Logbook","url":""},{"name":"Airfoil","url":""},{"name":"iTunes","url":""},{"name":"Keynote","url":""},{"name":"1Password","url":""},{"name":"Pulsar","url":""}]}
{"layout":"post","title":"An interview with Matthew Mckeon","slug":"matthew.mckeon","person":"Matthew Mckeon","summary":"Developer (IBM Visual Communication Lab)","categories":["mac","linux","developer","software"],"date":"2010-09-15","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Time Machine","url":"time-machine","categories":[]},{"name":"iPhone 3G","url":"http://www.apple.com/iphone/iphone-3g/","description":"The 3G iPhone.","categories":["mac","mobile","phone"]},{"name":"MOTOFONE","url":"http://www.motorola.com/Consumers/XW-EN/Consumer-Products-and-Services/Mobile-Phones/MOTOFONE-F3-XW-EN","description":"A candybar-style mobile phone.","categories":[]},{"name":"Thinkpad T40","url":"http://www.thinkwiki.org/wiki/Category:T40","description":"A 14.1 inch PC laptop.","categories":["pc","system","laptop"]},{"name":"Powerbook G4","url":"http://en.wikipedia.org/wiki/PowerBook_G4","description":"An older, popular Mac laptop with the PowerPC G4 CPU.","categories":[]},{"name":"Ubuntu","url":"","categories":[]},{"name":"XO1","url":"xo-1","categories":[]}],"software":[{"name":"Tiddlywiki","url":""},{"name":"Zotero","url":""},{"name":"del.icio.us","url":"delicious"},{"name":"Excel","url":""},{"name":"SQLite","url":""},{"name":"Ruby","url":""},{"name":"Emacs","url":""},{"name":"Illustrator","url":""},{"name":"Photoshop","url":""},{"name":"color synthAxis","url":"color-synthaxis"},{"name":"ColorBrewer","url":""},{"name":"Colour Lovers","url":"colour-lovers"},{"name":"Adobe kuler","url":"kuler"},{"name":"Processing","url":""},{"name":"Java","url":""},{"name":"Processing.js","url":"processing.js"},{"name":"TextMate","url":""},{"name":"IntelliJ IDEA","url":"intellij-idea"},{"name":"Eclipse","url":""},{"name":"Flash Builder","url":"flash-builder"},{"name":"Quantum GIS","url":"qgis"},{"name":"MapShaper","url":""},{"name":"PostgreSQL","url":""},{"name":"Carbonite","url":""},{"name":"Git","url":""},{"name":"Lotus Notes","url":"lotus-notes"},{"name":"Mail.app","url":"mail"},{"name":"Thunderbird","url":""},{"name":"Google Calendar","url":"google-calendar"},{"name":"Firefox","url":""},{"name":"Firebug","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Chrome","url":""},{"name":"Opera","url":""},{"name":"IE","url":"internet-explorer"},{"name":"VMWare Fusion","url":"vmware-fusion"},{"name":"Word","url":""},{"name":"Powerpoint","url":""},{"name":"Google Maps","url":"google-maps"},{"name":"Twitter","url":"twitter-ios"},{"name":"Instapaper","url":"instapaper-ios"},{"name":"Wikipanion","url":"wikipanion-ios"},{"name":"MassTransit","url":"masstransit-ios"},{"name":"NYTimes","url":"nytimes-ios"}]}
{"layout":"post","title":"An interview with Adam Glazier","slug":"adam.glazier","person":"Adam Glazier","summary":"Interaction + sound designer (IDEO)","categories":["mac","designer","developer","software","musician"],"date":"2010-09-22","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Apple display","url":"cinema-display","categories":[]},{"name":"Apple keyboard","url":"keyboard","categories":[]},{"name":"Apple Magic Mouse","url":"magic-mouse","categories":[]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]},{"name":"iPod Touch","url":"http://www.apple.com/ipodtouch/","description":"It's like an iPhone, without the phone bit.","categories":["mac","music"]},{"name":"Nexus One","url":"http://www.google.com/phone/","description":"Google's smart phone.","categories":[]},{"name":"Dell Streak","url":"streak","categories":["pc","system"]},{"name":"Acer Netbook","url":"aspire-one-d250","categories":[]},{"name":"Android","url":"","categories":[]},{"name":"HP Touchsmart","url":"touchsmart-iq816","categories":[]},{"name":"Pro Tools Mbox 2","url":"mbox","categories":[]},{"name":"AKG C2000B","url":"c-2000-b","categories":[]},{"name":"H100","url":"h-100","categories":[]},{"name":"AKG K701","url":"k-701","categories":[]}],"software":[{"name":"OmniOutliner","url":""},{"name":"Illustrator","url":""},{"name":"Photoshop","url":""},{"name":"Fireworks","url":""},{"name":"Flash","url":""},{"name":"AIR for android","url":"air-android"},{"name":"Houdini","url":""},{"name":"LiveView","url":"liveview-ios"},{"name":"TotalFinder","url":""},{"name":"Things","url":""},{"name":"Coda","url":""},{"name":"Snapz Pro X","url":"snapz-pro-x"},{"name":"MagicPrefs","url":""},{"name":"OS X app","url":"1password"},{"name":"iPhone app","url":"1password-ios"},{"name":"Speakerphone","url":""},{"name":"Adobe Soundbooth","url":"soundbooth"},{"name":"Max/MSP","url":"max"},{"name":"Pro Tools","url":"pro-tools"},{"name":"Peak","url":""},{"name":"BFD","url":""},{"name":"Guitar Rig","url":"guitar-rig-pro"}]}
{"layout":"post","title":"An interview with Neven Mrgan","slug":"neven.mrgan","person":"Neven Mrgan","summary":"Designer (Panic Inc.)","categories":["mac","designer","software"],"date":"2010-09-28","hardware":[{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"Magic Mouse","url":"http://www.apple.com/magicmouse","description":"A multi-touch mouse.","categories":[]},{"name":"keyboard","url":"http://www.apple.com/keyboard/","description":"The slim keyboard for Macs.","categories":[]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"Photoshop","url":"","categories":[]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"Simplifi","url":"http://www.griffintechnology.com/products/simplifi","description":"An iOS device dock, card reader, and USB hub.","categories":[]}],"software":[{"name":"Photoshop","url":""},{"name":"Coda","url":""},{"name":"Illustrator","url":""},{"name":"Web Inspector","url":"web-inspector"},{"name":"LiveView","url":"liveview-ios"},{"name":"Dropbox","url":""},{"name":"CloudApp","url":"cloudapp"},{"name":"iChat","url":""},{"name":"CoTweet","url":""}]}
{"layout":"post","title":"An interview with Jeff LaMarche","slug":"jeff.lamarche","person":"Jeff LaMarche","summary":"Author, software developer","categories":["mac","developer","software","writer"],"date":"2010-10-05","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]},{"name":"iPod touch","url":"http://www.apple.com/ipodtouch/","description":"It's like an iPhone, without the phone bit.","categories":["mac","music"]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"Nexus One","url":"http://www.google.com/phone/","description":"Google's smart phone.","categories":[]},{"name":"Android","url":"","categories":[]},{"name":"HP 1300","url":"laserjet-1300","categories":[]},{"name":"Epson R1900","url":"stylus-photo-r1900","categories":[]}],"software":[{"name":"Xcode","url":""},{"name":"Accessorizer","url":""},{"name":"Activity Monitor","url":"activity-monitor"},{"name":"Word 2008","url":"word"},{"name":"TextMate","url":""},{"name":"MarsEdit","url":""},{"name":"Terminal.app","url":"terminal"},{"name":"Acorn","url":""},{"name":"Pixelmator","url":""},{"name":"Opacity","url":""},{"name":"OmniGraffle","url":""},{"name":"Blender 2.5","url":"blender"},{"name":"Skype","url":""},{"name":"Tweetie","url":""},{"name":"Twitterrific","url":"twitterrific-ios"},{"name":"iShowU HD","url":"ishowu-hd"}]}
{"layout":"post","title":"An interview with Marco Arment","slug":"marco.arment","person":"Marco Arment","summary":"Developer (Instapaper, Tumblr)","categories":["mac","developer","software","web"],"date":"2010-10-10","hardware":[{"name":"Mac Pros","url":"mac-pro","categories":["mac","system","desktop"]},{"name":"Microsoft Natural Ergonomic Keyboard 4000","url":"natural-ergonomic-keyboard-4000","categories":[]},{"name":"Magic Mouse","url":"http://www.apple.com/magicmouse","description":"A multi-touch mouse.","categories":[]},{"name":"Fog Creek","url":"http://www.fogcreek.com/ \"Software developers of software for developers.\"","categories":[]},{"name":"the same ones","url":"http://www.joelonsoftware.com/items/2008/06/06.html \"Joel's post on the desks they got for Fog Creek.\"","categories":[]},{"name":"Embody","url":"http://www.hermanmiller.com/Products/Embody-Chairs","description":"An ergonomic work chair.","categories":[]},{"name":"Galant","url":"http://www.ikea.com/us/en/catalog/products/S29806818","description":"An office desk.","categories":[]},{"name":"Sennheiser HD 280 Pro","url":"hd-280-pro","categories":[]},{"name":"Paradigm Atom Monitor speakers","url":"atom-monitor","categories":[]},{"name":"this","url":"http://www.marco.org/205544054 \"Marco's post on his computer setup.\"","categories":[]},{"name":"Fujitsu ScanSnap S510M","url":"scansnap-s510m","categories":[]},{"name":"this article","url":"http://www.43folders.com/2007/11/06/palimpsest-guide-mostly-paperless-life \"The 43 Folders post on a paperless life.\"","categories":[]},{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"5D Mark II","url":"eos-5d-mark-ii","categories":[]}],"software":[{"name":"Mac OS","url":"mac-os-x"},{"name":"TextMate","url":""},{"name":"AckMate","url":""},{"name":"Soulver","url":""},{"name":"Terminal","url":""},{"name":"Google Reader","url":"google-reader"},{"name":"Tweetie for Mac","url":"tweetie"},{"name":"TaskPaper","url":""},{"name":"1Password","url":""},{"name":"iWork","url":""},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device."}]}
{"layout":"post","title":"An interview with Kieran Healy","slug":"kieran.healy","person":"Kieran Healy","summary":"Sociologist","categories":["mac","researcher","scientist"],"date":"2010-10-17","hardware":[{"name":"PowerBook 145B","url":"http://lowendmac.com/pb/powerbook-145b.html","description":"A Mac laptop from the early 90's.","categories":[]},{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"24\" Apple LED Cinema Display ","url":"cinema-display","categories":[]},{"name":"Mighty Mouse","url":"http://www.apple.com/mightymouse/","description":"The wireless mouse with the nipple.","categories":[]},{"name":"Western Digital MyBook","url":"my-book-for-mac","categories":[]},{"name":"1TB LaCie Starck","url":"starck","categories":[]},{"name":"15\" 2.4 GHz Core 2 Duo MacBook Pro","url":"macbook-pro","categories":["mac","system","laptop"]},{"name":"16GB iPhone 3GS","url":"iphone-3gs","categories":["mac","mobile","phone"]}],"software":[{"name":"Mail","url":""},{"name":"iCal","url":""},{"name":"iChat","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Terminal","url":""},{"name":"Microsoft Office","url":"office"},{"name":"Excel","url":""},{"name":"LaunchBar","url":""},{"name":"MacFUSE","url":""},{"name":"DropBox","url":""},{"name":"SuperDuper","url":""},{"name":"Crashplan","url":""},{"name":"my wife's","url":"http://lapaul.org/ \"L.A. Paul's website.\""},{"name":"1Password","url":""},{"name":"Freedom","url":""},{"name":"Anti-Social","url":"anti-social"},{"name":"Jon Elster's ideas","url":"http://www.powells.com/biblio/61-9780521665612-1 \"A book about 'Rationality, Precommitment, and Constraints'.\""},{"name":"written about this elsewhere","url":"http://www.kieranhealy.org/files/misc/workflow-apps.pdf \"Kieran's writeup on 'Choosing Your Workflow Applications' (PDF"},{"name":"git","url":""},{"name":"Emacs 23","url":"emacs-for-mac-os-x"},{"name":"TextMate","url":""},{"name":"Skim","url":""},{"name":"Emacs Starter Kit","url":"http://eschulte.github.com/emacs-starter-kit/ \"A collection of sane Emacs defaults.\""},{"name":"original","url":"http://github.com/technomancy/emacs-starter-kit#readme \"A collection of sane Emacs defaults.\""},{"name":"available on github","url":"http://kjhealy.github.com/emacs-starter-kit/ \"Kieran's Emacs Starter Kit for the Social Sciences.\""},{"name":"Markdown","url":""},{"name":"Pandoc","url":""},{"name":"org-mode","url":""},{"name":"LaTeX","url":""},{"name":"AucTeX","url":""},{"name":"RefTeX","url":""},{"name":"Biblatex","url":""},{"name":"TeX distribution","url":"mactex"},{"name":"BibDesk","url":""},{"name":"ESS","url":""},{"name":"R","url":""},{"name":"Keynote","url":""},{"name":"OmniGraffle","url":""},{"name":"Pixelmator","url":""}]}
{"layout":"post","title":"An interview with Justin Smith","slug":"justin.smith","person":"Justin Smith","summary":"Game developer (Enviro-Bear 2010)","categories":["windows","developer","game"],"date":"2010-10-24","hardware":[{"name":"XP","url":"windows-xp","categories":[]},{"name":"Mac Mini","url":"http://www.apple.com/macmini/","description":"The lil' Intel-based Mac.","categories":["mac","system","desktop"]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]}],"software":[{"name":"MS Visual C++ Express","url":"visual-studio-express"},{"name":"XCode","url":""},{"name":"Photoshop 6","url":"photoshop"},{"name":"Audacity","url":""},{"name":"SFXR","url":""},{"name":"Google Docs","url":"google-docs"},{"name":"Firefox","url":""},{"name":"TOTAL COMMANDER","url":"total-commander"},{"name":"Araxis Merge","url":"merge"},{"name":"Dropbox","url":""}]}
{"layout":"post","title":"An interview with Robert Love","slug":"robert.love","person":"Robert Love","summary":"Software engineer (Google)","categories":["mac","linux","developer","software","writer"],"date":"2010-11-02","hardware":[{"name":"a 30\" HP monitor","url":"lp3065","categories":[]},{"name":"the old IBM Model M keyboards","url":"model-m","categories":[]},{"name":"a Logitech MX518","url":"mx-518","categories":[]},{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Linode","url":"","categories":[]},{"name":"Nexus One","url":"http://www.google.com/phone/","description":"Google's smart phone.","categories":[]},{"name":"Kindle 2","url":"kindle","categories":[]}],"software":[{"name":"Ubuntu","url":""},{"name":"Goobuntu","url":""},{"name":"GNOME","url":""},{"name":"GNOME Terminal","url":"gnome-terminal"},{"name":"VIM","url":""},{"name":"Chrome","url":""},{"name":"C","url":""},{"name":"C++","url":"c-plusplus"},{"name":"GCC","url":""},{"name":"Mac OS X","url":"mac-os-x"},{"name":"Red Hat Enterprise","url":"rhel"},{"name":"Dropbox","url":""},{"name":"Gmail","url":""},{"name":"Google Calendar","url":"google-calendar"},{"name":"Google Reader","url":"google-reader"},{"name":"Twitter","url":""},{"name":"Google Docs","url":"google-docs"}]}
{"layout":"post","title":"An interview with Liz Danzico","slug":"liz.danzico","person":"Liz Danzico","summary":"Designer, educator, editor","categories":["mac","writer","designer","editor"],"credits":{"name":"Faruk Ates","url":"http://farukat.es/"},"date":"2010-11-06","hardware":[{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"Mac Pro","url":"http://www.apple.com/macpro/","description":"The Intel-based Mac tower computer.","categories":["mac","system","desktop"]},{"name":"studio display monitor","url":"studio-display","categories":[]},{"name":"MacBook Air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPad 16GB 3G","url":"ipad-3g","categories":["mac","mobile","tablet"]},{"name":"Nikon D40","url":"d40","categories":[]},{"name":"Leica C-LUX 2","url":"c-lux-2","categories":[]},{"name":"NeatReceipts","url":"http://www.neatco.com/products/neatreceipts","description":"A portable scanner and digital filing system.","categories":[]},{"name":"Apple TV","url":"http://www.apple.com/appletv/","description":"The media station device.","categories":[]},{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"Zenith Trans-oceanic Multiband AM/FM Shortwave Radio","url":"d7000y","categories":[]}],"software":[{"name":"Google Reader","url":"google-reader"},{"name":"Google Calendar","url":"google-calendar"},{"name":"Adium","url":""},{"name":"see this recently","url":"http://www.dailymail.co.uk/sciencetech/article-1297065/New-hands-free-technology-lets-motorists-use-Twitter-driving.html?ITO=1490 \"A Daily Mail article about hands-free tweeting while in a car.\""},{"name":"TextEdit","url":""},{"name":"Ommwriter","url":""},{"name":"Google Documents","url":"google-docs"},{"name":"Writeboards","url":"writeboard"},{"name":"Keynote","url":""},{"name":"OmniGraffle","url":""},{"name":"Keynote and prototypes now","url":"keynote-kung-fu"},{"name":"ExpressionEngine","url":""},{"name":"WordPress MU","url":"wordpress-mu"},{"name":"PmWiki","url":""},{"name":"tumblr","url":""},{"name":"Instapaper Pro","url":"instapaper-ios"},{"name":"SimpleNote","url":"simplenote-ios"},{"name":"TextExpander","url":""},{"name":"Reeder","url":"reeder-ios"},{"name":"Peel","url":""},{"name":"iTunes","url":""}]}
{"layout":"post","title":"An interview with James Gosling","slug":"james.gosling","person":"James Gosling","summary":"Software engineer (Java)","categories":["mac","linux","developer","software"],"date":"2010-11-11","hardware":[{"name":"Macbook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Mac Mini","url":"http://www.apple.com/macmini/","description":"The lil' Intel-based Mac.","categories":["mac","system","desktop"]},{"name":"OpenSolaris","url":"","categories":[]},{"name":"Ubuntu","url":"","categories":[]},{"name":"Mac Pro","url":"http://www.apple.com/macpro/","description":"The Intel-based Mac tower computer.","categories":["mac","system","desktop"]},{"name":"Apple screen","url":"cinema-display","categories":[]},{"name":"a 3Dconnexion mouse","url":"spaceexplorer","categories":[]},{"name":"Kindles","url":"kindle","categories":[]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"Canon EOS 5D Mark II","url":"eos-5d-mark-ii","categories":[]},{"name":"EF 24-105mm f/4L IS USM","url":"http://www.usa.canon.com/cusa/consumer/products/cameras/ef_lens_lineup/ef_24_105mm_f_4l_is_usm","description":"A lens for DSLRs.","categories":[]},{"name":"EF 100-400mm f/4.5-5.6L IS USM","url":"http://www.usa.canon.com/cusa/consumer/products/cameras/ef_lens_lineup/ef_100_400mm_f_4_5_5_6l_is_usm","description":"A telephoto lens for DSLRs.","categories":[]},{"name":"Olympus STYLUS TOUGH-6020","url":"stylus-tough-6020","categories":[]},{"name":"Indigo","url":"","categories":[]},{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]}],"software":[{"name":"NetBeans","url":""},{"name":"vi","url":""},{"name":"OpenOffice","url":""},{"name":"Pages","url":""},{"name":"Keynote","url":""},{"name":"Numbers","url":""},{"name":"I wrote my own years ago","url":"huckster"},{"name":"NewTek LightWave","url":"lightwave"},{"name":"Photoshop","url":""},{"name":"Aperture","url":""}]}
{"layout":"post","title":"An interview with Isa Chandra Moskowitz","slug":"isa.chandra.moskowitz","person":"Isa Chandra Moskowitz","summary":"Vegan cook, writer","categories":["mac","food","writer"],"date":"2010-11-14","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Android phone","url":"g1","categories":[]},{"name":"Nintendo DS","url":"ds","categories":[]},{"name":"iPod mini","url":"http://en.wikipedia.org/wiki/IPod_Mini","description":"A mid-range audio player.","categories":["mac","music"]},{"name":"Canon 30D","url":"eos-30d","categories":[]},{"name":"Canon G11","url":"powershot-g11","categories":[]}],"software":[{"name":"Google Docs","url":"google-docs"},{"name":"Google Calendar","url":"google-calendar"},{"name":"Google video chat","url":"google-talk"},{"name":"Skype","url":""},{"name":"Photoshop","url":""},{"name":"Flickr","url":""},{"name":"Wordpress","url":""},{"name":"Calorie Count","url":"http://caloriecount.about.com/cc/recipe_analysis.php \"A too lfor tracking calories in a recipe.\""},{"name":"PicSay Pro","url":"picsay-pro"},{"name":"grooveshark.com","url":"grooveshark"},{"name":"Pandora","url":""},{"name":"iTunes","url":""},{"name":"Word","url":""},{"name":"Firefox","url":""},{"name":"Photo Booth","url":"photo-booth"}]}
{"layout":"post","title":"An interview with Tom Scott","slug":"tom.scott","person":"Tom Scott","summary":"Geek comedian","categories":["windows","comedian"],"credits":{"name":"Cristiano Betta","url":"http://cristianobetta.com/"},"date":"2010-11-20","hardware":[{"name":"Dell Latitude D830","url":"latitude-d830","categories":["pc","system","laptop"]},{"name":"bad sci-fi film","url":"http://www.imdb.com/title/tt0146316/ \"The IMDB entry for Tomb Raider.\"","categories":[]},{"name":"Firefox","url":"","categories":[]},{"name":"iPhone 3G","url":"http://www.apple.com/iphone/iphone-3g/","description":"The 3G iPhone.","categories":["mac","mobile","phone"]},{"name":"Nokia 770","url":"n770","categories":[]},{"name":"Sagem X-2","url":"myx-2","categories":[]},{"name":"Android","url":"","categories":[]},{"name":"Canon HV20","url":"vixia-hv20","categories":[]},{"name":"25 frames per second","url":"http://en.wikipedia.org/wiki/576i \"The Wikipedia entry on 576i.\"","categories":[]},{"name":"Sanyo Xacti FH1","url":"vpc-fh1","categories":[]},{"name":"Coles Electroacoustics 4104 microphone","url":"4104-commentators","categories":[]},{"name":"London Hackspace","url":"http://london.hackspace.org.uk/ \"The site for the hacker space in London.\"","categories":[]}],"software":[{"name":"Gmail","url":""},{"name":"Notepad++","url":"notepad-plusplus"},{"name":"Adobe CS3","url":"creative-suite"},{"name":"VirtualDub","url":""},{"name":"AVISynth","url":""},{"name":"MPEG Streamclip","url":"mpeg-streamclip"},{"name":"Winamp","url":""}]}
{"layout":"post","title":"An interview with Craig Hockenberry","slug":"craig.hockenberry","person":"Craig Hockenberry","summary":"Programmer (The Iconfactory)","categories":["mac","developer","software"],"date":"2010-11-30","hardware":[{"name":"MacBook air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Mac Pro","url":"http://www.apple.com/macpro/","description":"The Intel-based Mac tower computer.","categories":["mac","system","desktop"]},{"name":"pixels on your desktop","url":"http://files.iconfactory.net/craig/SixtyInch.jpg \"A photo of Craig's screens.\"","categories":[]},{"name":"Matias Tactile Pro","url":"tactile-pro","categories":[]},{"name":"Apple Extended Keyboard II","url":"extended-keyboard-ii","categories":[]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]},{"name":"iPod touch","url":"http://www.apple.com/ipodtouch/","description":"It's like an iPhone, without the phone bit.","categories":["mac","music"]},{"name":"iPhone 3G","url":"http://www.apple.com/iphone/iphone-3g/","description":"The 3G iPhone.","categories":["mac","mobile","phone"]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"Aego M-series","url":"aego-m","categories":[]},{"name":"Nuforce uDAC","url":"icon-udac","categories":[]},{"name":"J-47 Telegraph Key","url":"http://k6ix.net/J-37/J47.html \"A telegraph key.\"","categories":[]},{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]}],"software":[{"name":"Office","url":""},{"name":"Entourage","url":""},{"name":"Excel","url":""},{"name":"Word","url":""},{"name":"Mail","url":""},{"name":"Numbers","url":""},{"name":"Pages","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Twitterrific","url":""},{"name":"Skype","url":""},{"name":"iChat","url":""},{"name":"Versions","url":""},{"name":"Kaleidoscope","url":""},{"name":"Terminal","url":""},{"name":"Xcode","url":""},{"name":"BBEdit","url":""},{"name":"Coda","url":""},{"name":"Pcalc","url":""},{"name":"Acorn","url":""},{"name":"xScope","url":""},{"name":"VMware Fusion","url":"vmware-fusion"},{"name":"Remote Desktop","url":"remote-desktop"},{"name":"Overflow","url":""}]}
{"layout":"post","title":"An interview with Jeff Lindsay","slug":"jeff.lindsay","person":"Jeff Lindsay","summary":"Hacker/Philosopher","categories":["mac","developer","software","hacker"],"date":"2010-12-01","hardware":[{"name":"MacBook Pros","url":"macbook-pro","categories":["mac","system","laptop"]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]},{"name":"Bamboo tablet","url":"bamboo","categories":[]}],"software":[{"name":"Chrome","url":""},{"name":"TextMate","url":""},{"name":"Quicksilver","url":""},{"name":"Terminal","url":""},{"name":"Keynote","url":""},{"name":"Skitch","url":""},{"name":"Dropbox","url":""},{"name":"VLC","url":""},{"name":"Growl","url":""},{"name":"Notify.io","url":"notify-io"},{"name":"git","url":""},{"name":"ssh","url":"openssh"},{"name":"python","url":""},{"name":"ruby","url":""},{"name":"irb","url":""},{"name":"curl","url":""},{"name":"vim","url":""},{"name":"netcat","url":""},{"name":"localtunnel","url":""},{"name":"this script I wrote","url":"https://gist.github.com/466293 \"Jeff's gist for piping stuff into QS.\""},{"name":"rake","url":""},{"name":"Gmail","url":""},{"name":"Google Calendar","url":"google-calendar"},{"name":"Google Apps","url":"google-apps"},{"name":"App Engine","url":"app-engine"},{"name":"GitHub","url":""},{"name":"Wordpress","url":""},{"name":"EC2","url":""},{"name":"Remember the Milk","url":"remember-the-milk"},{"name":"Flickr","url":""},{"name":"Tumblr","url":""},{"name":"Heroku","url":""},{"name":"Saucelabs","url":"sauce-labs"}]}
{"layout":"post","title":"An interview with MrVoletron","slug":"mrvoletron","person":"MrVoletron","summary":"Musician/gnome-wrangler","categories":["windows","musician"],"date":"2010-12-02","hardware":[{"name":"Windows 7","url":"windows-7","categories":[]},{"name":"Compaq PC","url":"presario-sr5648f","categories":[]},{"name":"mouse","url":"naga","categories":[]},{"name":"keyboard","url":"http://www.apple.com/keyboard/","description":"The slim keyboard for Macs.","categories":[]},{"name":"Axiom Pro 49","url":"http://www.m-audio.com/products/en_us/AxiomPro49.html","description":"A 49-Key USB MIDI controller.","categories":[]},{"name":"Wii","url":"http://www.wii.com/","description":"A unique gaming console.","categories":[]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"Razer Carcharias","url":"carcharias","categories":[]},{"name":"Sony MDR-V600's","url":"mdr-v600","categories":[]},{"name":"Bose 3-speaker Companion","url":"companion-3","categories":[]}],"software":[{"name":"Ableton Live","url":"live"},{"name":"Absynth","url":""},{"name":"Zebra","url":""},{"name":"dBlue Glitch","url":"glitch"},{"name":"oZone","url":""},{"name":"sample packs","url":"loopmasters"},{"name":"World of Warcraft","url":"wow"}]}
{"layout":"post","title":"An interview with Chris Wanstrath","slug":"chris.wanstrath","person":"Chris Wanstrath","summary":"CEO and co-founder, GitHub","categories":["mac","developer","web","suit"],"date":"2010-12-03","hardware":[{"name":"Macbook Air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"Logitech MX518 mouse","url":"mx-518","categories":[]},{"name":"USB Overdrive","url":"usb-overdrive","categories":[]},{"name":"Kim Cuartero","url":"http://twitter.com/kcuartero \"Kim's Twitter account.\"","categories":[]},{"name":"laptop bag","url":"http://www.flickr.com/photos/ozmm/4170583206/ \"A photo of Chris' bag.\"","categories":[]}],"software":[{"name":"Kindle","url":"http://www.amazon.com/kindle/","description":"A digital book reader."},{"name":"Dropbox","url":""},{"name":"Simplenote","url":"simplenote-ios"},{"name":"Pastebot","url":"pastebot-ios"},{"name":"Calcbot","url":"calcbot-ios"},{"name":"Campfire","url":""},{"name":"Propane","url":""},{"name":"Skitch","url":""},{"name":"Aquamacs","url":""},{"name":"textmate.el","url":"textmate-el"},{"name":"coffee-mode","url":"coffee-mode"},{"name":"git","url":""},{"name":"magit","url":""},{"name":"Arq","url":""},{"name":"Caffeine","url":""},{"name":"Photo Booth","url":"photo-booth"},{"name":"Stunners of the Month","url":"http://stunnerofthemonth.com/ \"A sunglasses club.\""},{"name":"OS X","url":"mac-os-x"},{"name":"LaunchBar","url":""},{"name":"Acorn","url":""},{"name":"Things","url":""},{"name":"Carcassonne","url":"carcassonne-ios"}]}
{"layout":"post","title":"An interview with MC Frontalot","slug":"mc.frontalot","person":"MC Frontalot","summary":"Nerdcore rapper","categories":["windows","musician"],"date":"2010-12-04","hardware":[{"name":"Windows 7","url":"windows-7","categories":[]},{"name":"Edirol UA-101","url":"ua-101","categories":[]},{"name":"V-Studio 100","url":"http://www.cakewalk.com/products/v-studio/default.aspx?Prod=VS-100","description":"A portable music production studio.","categories":[]},{"name":"Audio Technica 4050/CM5","url":"at4050-cm5","categories":[]}],"software":[{"name":"Reaper","url":""},{"name":"GarageBand","url":""},{"name":"Rock Band Network","url":"http://www.rockband.com/rock-band-network \"The Rock Band network for artists to add songs for the game.\""},{"name":"Pro Tools","url":"pro-tools"},{"name":"Logic","url":"logic-studio"},{"name":"Reason","url":""},{"name":"Ableton Live","url":"live"},{"name":"RVox","url":"renaissance-vox"}]}
{"layout":"post","title":"An interview with Michael Sippey","slug":"michael.sippey","person":"Michael Sippey","summary":"VP Corp Development (Six Apart/SAY)","categories":["mac","suit","software"],"date":"2010-12-05","hardware":[{"name":"Mac mini","url":"http://www.apple.com/macmini/","description":"The lil' Intel-based Mac.","categories":["mac","system","desktop"]},{"name":"MacBook","url":"http://www.apple.com/macbook/","description":"The consumer Mac laptop.","categories":["mac","system","laptop"]},{"name":"Apple keyboards","url":"keyboard","categories":[]},{"name":"Magic Mouses","url":"magic-mouse","categories":[]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"iPad 16GB","url":"ipad","categories":["mac","mobile","tablet"]},{"name":"family computer","url":"http://www.sippey.com/2010/01/the-ipad-is-the-family-computer.html \"Michael's post on the iPad.\"","categories":[]}],"software":[{"name":"Google Chrome","url":"chrome"},{"name":"iChat","url":""},{"name":"Remember the Milk","url":"remember-the-milk"},{"name":"Rdio","url":""},{"name":"Pandora","url":""},{"name":"iTunes","url":""},{"name":"Dropbox","url":""},{"name":"Powerpoint","url":""},{"name":"Keynote","url":""},{"name":"Word","url":""},{"name":"Pages","url":""},{"name":"Excel","url":""},{"name":"Windows 7","url":"windows-7"},{"name":"Office 2010","url":"office"},{"name":"VMWare's Fusion","url":"vmware-fusion"},{"name":"Numbers","url":""},{"name":"TextMate","url":""},{"name":"vim","url":""},{"name":"Acorn","url":""},{"name":"Photoshop","url":""},{"name":"TypePad","url":"typepad-ios"},{"name":"Remember the Milk","url":"remember-the-milk-ios"},{"name":"Simplenote","url":"simplenote-ios"},{"name":"Captio","url":"captio-ios"},{"name":"Foursquare","url":"foursquare-ios"},{"name":"Facebook","url":"facebook-ios"},{"name":"Kindle","url":"http://www.amazon.com/kindle/","description":"A digital book reader."},{"name":"Angry Birds","url":"angry-birds-ios"},{"name":"MLB At Bat","url":"mlb-at-bat-ios"},{"name":"Nike+","url":"http://nikerunning.nike.com/nikeos/p/nikeplus/en_US/plus/#//dashboard/","description":"A software/hardware combo for tracking your running."}]}
{"layout":"post","title":"An interview with Todd Dominey","slug":"todd.dominey","person":"Todd Dominey","summary":"Hat-wearer (SlideShowPro)","categories":["mac","windows","developer","web"],"date":"2010-12-06","hardware":[{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"Mac Pro","url":"http://www.apple.com/macpro/","description":"The Intel-based Mac tower computer.","categories":["mac","system","desktop"]},{"name":"Cinema Display","url":"http://www.apple.com/displays/cinema/","description":"The LCD display line.","categories":[]},{"name":"Dell Inspiron 6000","url":"inspiron-6000","categories":["pc","system"]},{"name":"Adobe Lightroom","url":"lightroom","categories":[]},{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"Nexus One","url":"http://www.google.com/phone/","description":"Google's smart phone.","categories":[]},{"name":"Aeron","url":"http://www.hermanmiller.com/Products/Aeron-Chairs","description":"A very very popular work chair.","categories":[]},{"name":"Mirra","url":"http://www.hermanmiller.com/Products/Mirra-Chairs","description":"An ergonomic work chair.","categories":[]},{"name":"Magic Mouse","url":"http://www.apple.com/magicmouse","description":"A multi-touch mouse.","categories":[]},{"name":"Grado SR-80s","url":"sr80i","categories":[]},{"name":"Samson C03U","url":"c03u","categories":[]},{"name":"Canon 7D","url":"eos-7d","categories":[]}],"software":[{"name":"Photoshop CS5","url":"photoshop"},{"name":"Illustrator CS5","url":"illustrator"},{"name":"Flash CS5","url":"flash"},{"name":"TextMate","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Chrome","url":""},{"name":"Firefox","url":""},{"name":"Transmit","url":""},{"name":"Tweetie","url":""},{"name":"Skitch","url":""},{"name":"TextExpander","url":""},{"name":"Alfred","url":""},{"name":"Default Folder","url":"default-folder-x"},{"name":"Terminal","url":""},{"name":"Console","url":""},{"name":"Dropbox","url":""},{"name":"Mail","url":""},{"name":"iTunes","url":""},{"name":"Campfire","url":""},{"name":"1Password","url":""}]}
{"layout":"post","title":"An interview with Ted Leung","slug":"ted.leung","person":"Ted Leung","summary":"Technologist, photographer","categories":["mac","photographer","software"],"date":"2010-12-13","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Cinema Display","url":"http://www.apple.com/displays/cinema/","description":"The LCD display line.","categories":[]},{"name":"Logitech Performance Mouse MX","url":"performance-mouse-mx","categories":[]},{"name":"Powermate","url":"http://www.griffintechnology.com/products/powermate ","description":"A USB multimedia controller.","categories":[]},{"name":"Time Capsule","url":"http://www.apple.com/timecapsule/","description":"A WiFi access point and backup system.","categories":[]},{"name":"Mac Pro","url":"http://www.apple.com/macpro/","description":"The Intel-based Mac tower computer.","categories":["mac","system","desktop"]},{"name":"SuperDuper!","url":"superduper","categories":[]},{"name":"3090WQXi","url":"http://www.amazon.com/NEC-LCD3090WQXi-BK-30-Inch-Widescreen-Resolution/dp/B0013DJ31A/","description":"A 30 inch LCD monitor.","categories":[]},{"name":"Z5500","url":"z-5500","categories":[]},{"name":"Apple Keyboard","url":"keyboard","categories":[]},{"name":"Logitech MX Revolution","url":"mx-revolution","categories":[]},{"name":"Fujitsu Scansnap S1500M","url":"scansnap-s1500m","categories":[]},{"name":"ColorMunki","url":"colormunki-photo","categories":[]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"Panasonic GF-1","url":"lumix-gf1","categories":[]},{"name":"Nikon D3","url":"d3","categories":[]}],"software":[{"name":"exhaustive list","url":"http://www.sauria.com/blog/mac-tips-and-tricks/ \"Ted's full list of software.\""},{"name":"Firefox","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"1Password","url":""},{"name":"Dropbox","url":""},{"name":"NetNewsWire","url":""},{"name":"Echofon","url":""},{"name":"Fluidized","url":"fluid"},{"name":"Adium","url":""},{"name":"Gabble","url":""},{"name":"Entourage","url":""},{"name":"Mail.app","url":"mail"},{"name":"Mail-Act-On","url":"mail-act-on"},{"name":"Keyboard Maestro","url":"keyboard-maestro"},{"name":"Typeit4Me","url":""},{"name":"FastScripts","url":""},{"name":"iCal","url":""},{"name":"OmniFocus","url":""},{"name":"Evernote","url":"evernote-mac"},{"name":"DevonThink","url":""},{"name":"OmniOutliner","url":""},{"name":"Mindnode Pro","url":"mindnode-pro"},{"name":"Preview","url":""},{"name":"Skim","url":""},{"name":"Microsoft Office","url":"office"},{"name":"Keynote","url":""},{"name":"Ecto","url":""},{"name":"Quicksilver","url":""},{"name":"PathFinder","url":"path-finder"},{"name":"iStat Menus","url":"istat-menus"},{"name":"Default Folder X","url":"default-folder-x"},{"name":"Hazel","url":""},{"name":"Teleport","url":""},{"name":"homebrew","url":""},{"name":"zsh","url":""},{"name":"Emacs","url":""},{"name":"VirtualBox","url":""},{"name":"Lightroom","url":""},{"name":"Photoshop","url":""},{"name":"Noiseware","url":""},{"name":"OmniFocus","url":"omnifocus-ios"},{"name":"Evernote","url":"evernote-ios"},{"name":"Instapaper","url":"instapaper-ios"},{"name":"Goodreader","url":"goodreader-ios"},{"name":"Flipboard","url":"flipboard-ios"},{"name":"Twitter","url":"twitter-ios"},{"name":"Camera+","url":"camera-plus-ios"},{"name":"Facebook","url":"facebook-ios"},{"name":"Foursquare","url":"foursquare-ios"},{"name":"Tripit","url":"tripit-ios"},{"name":"Yelp","url":"yelp-ios"},{"name":"Urban Spoon","url":"urbanspoon-ios"}]}
{"layout":"post","title":"An interview with Michael Ogawa","slug":"michael.ogawa","person":"Michael Ogawa","summary":"PhD student, developer (code_swarm)","categories":["windows","developer","software"],"date":"2010-12-21","hardware":[{"name":"15\" Dell XPS M1530","url":"xps-m1530","categories":["pc","system"]},{"name":"external enclosure","url":"silver-river-duo","categories":[]},{"name":"Arduino","url":"http://arduino.cc/","description":"Open-source prototyping hardware.","categories":[]},{"name":"Ion Drum Rocker","url":"drum-rocker-xbox","categories":[]}],"software":[{"name":"Windows 7","url":"windows-7"},{"name":"Google Chrome","url":"chrome"},{"name":"Gmail","url":""},{"name":"Calendar","url":"google-calendar"},{"name":"Docs","url":"google-docs"},{"name":"Reader","url":"google-reader"},{"name":"Processing","url":""},{"name":"gVim","url":"vim"},{"name":"GIMP","url":""},{"name":"MiKTeX","url":""},{"name":"Prezi","url":""},{"name":"MoinMoin","url":""},{"name":"Gephi","url":""}]}
{"layout":"post","title":"An interview with Aaron Boodman","slug":"aaron.boodman","person":"Aaron Boodman","summary":"Developer (Greasemonkey, Google Chrome)","categories":["mac","linux","windows","developer","software"],"date":"2010-12-26","hardware":[{"name":"Z600","url":"http://h10010.www1.hp.com/wwpc/us/en/sm/WF05a/12454-12454-296719-307907-4270225-3718663.html","description":"A powerful PC workstation.","categories":[]},{"name":"Z600","url":"http://h10010.www1.hp.com/wwpc/us/en/sm/WF05a/12454-12454-296719-307907-4270225-3718663.html","description":"A powerful PC workstation.","categories":[]},{"name":"Vista","url":"windows-vista","categories":[]},{"name":"Mac Pro","url":"http://www.apple.com/macpro/","description":"The Intel-based Mac tower computer.","categories":["mac","system","desktop"]},{"name":"Belkin 2-port","url":"2-port-ps-2-kvm","categories":[]},{"name":"Levono T61","url":"thinkpad-t61","categories":[]},{"name":"Cr48","url":"cr-48","categories":[]}],"software":[{"name":"Ubuntu Linux","url":"ubuntu"},{"name":"emacs","url":""},{"name":"Screen","url":""},{"name":"Irssi","url":""},{"name":"Git","url":""},{"name":"wonders of screen","url":"http://lizzie.spod.cx/screenirssi.shtml \"A tutorial for using irssi with screen.\""},{"name":"pull","url":"http://www.kernel.org/pub/software/scm/git/docs/git-pull.html \"Docs for the git-pull command.\""},{"name":"push","url":"http://www.kernel.org/pub/software/scm/git/docs/git-push.html \"Docs for the git-push command.\""},{"name":"pickaxe","url":"http://gitfu.wordpress.com/2008/06/03/the-pickaxe-finding-changes-was-never-easier/ \"Docs for the pickaxe command in git.\""}]}
{"layout":"post","title":"An interview with Adam Lisagor","slug":"adam.lisagor","person":"Adam Lisagor","summary":"Video director","categories":["mac","artist","film"],"date":"2011-01-06","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Mac Pro","url":"http://www.apple.com/macpro/","description":"The Intel-based Mac tower computer.","categories":["mac","system","desktop"]},{"name":"Air","url":"macbook-air","categories":[]},{"name":"Cinema Displays","url":"cinema-display","categories":[]},{"name":"Intuos4 Wacom tablet","url":"intuos","categories":[]},{"name":"Magic Mouse","url":"http://www.apple.com/magicmouse","description":"A multi-touch mouse.","categories":[]},{"name":"Apple keyboard","url":"keyboard","categories":[]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"Harmon Kardon Soundsticks","url":"soundsticks","categories":[]},{"name":"Time Capsule","url":"http://www.apple.com/timecapsule/","description":"A WiFi access point and backup system.","categories":[]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]},{"name":"Kurzweil sp88x","url":"sp88x","categories":[]},{"name":"M-Audio Fast Track Pro","url":"fast-track-pro","categories":[]},{"name":"M-Audio Nova","url":"nova","categories":[]},{"name":"Jambox","url":"http://www.jawbone.com/product-jambox-overview","description":"A wireless speaker and speakerphone.","categories":[]},{"name":"Sony MDR-7506","url":"mdr-7506","categories":[]},{"name":"Apple TV","url":"http://www.apple.com/appletv/","description":"The media station device.","categories":[]},{"name":"aTV Flash","url":"atv-flash","categories":[]},{"name":"Canon 7D DSLR","url":"eos-7d","categories":[]},{"name":"Sennheiser G3 Evolution","url":"ew-100-g3","categories":[]},{"name":"Sennheiser ME66","url":"me-66","categories":[]},{"name":"Tascam DR-100","url":"dr-100","categories":[]}],"software":[{"name":"Final Cut Studio","url":"final-cut-studio"},{"name":"Shake","url":""},{"name":"Logic Studio","url":"logic-studio"},{"name":"Motion","url":""},{"name":"After Effects","url":"after-effects"},{"name":"Transmit 4","url":"transmit"},{"name":"Skype","url":""},{"name":"Call Recorder","url":"call-recorder"},{"name":"Xcode","url":""},{"name":"Snapz Pro X","url":"snapz-pro-x"},{"name":"SimFinger","url":""},{"name":"TextWrangler","url":""},{"name":"Notational Velocity","url":"notational-velocity"},{"name":"Final Draft","url":"final-draft"},{"name":"TextEdit","url":""},{"name":"Dropbox","url":""},{"name":"1Password","url":""},{"name":"Birdhouse","url":"birdhouse-ios"},{"name":"Twitter","url":"twitter-ios"},{"name":"Remote","url":"remote-ios"},{"name":"LogMeIn","url":"ignition-ios"}]}
{"layout":"post","title":"An interview with Matt Biddulph","slug":"matt.biddulph","person":"Matt Biddulph","summary":"Prototyper, strategy guy (Nokia/Dopplr)","categories":["mac","developer","web"],"date":"2011-01-13","hardware":[{"name":"Macbook","url":"http://www.apple.com/macbook/","description":"The consumer Mac laptop.","categories":["mac","system","laptop"]},{"name":"Corsair P256 SSD","url":"performance-p256","categories":[]},{"name":"Seagate FreeAgent USB disk","url":"freeagent-goflex","categories":[]},{"name":"Henge Docks","url":"henge-dock","categories":[]},{"name":"27\" Cinema Display","url":"cinema-display","categories":[]},{"name":"Bowers & Wilkins MM-1","url":"mm-1","categories":[]},{"name":"Audio Technica ATH-M50","url":"ath-m50","categories":[]},{"name":"3G iPad","url":"ipad-3g","categories":["mac","mobile","tablet"]},{"name":"Mifi","url":"http://en.wikipedia.org/wiki/MiFi","description":"A portable mobile hotspot.","categories":[]},{"name":"Canon 5D Mark II camera","url":"eos-5d-mark-ii","categories":[]}],"software":[{"name":"vim","url":""},{"name":"Terminal","url":""},{"name":"MacVim.app","url":"macvim"},{"name":"Vagrant","url":""},{"name":"VirtualBox","url":""},{"name":"Adobe Lightroom","url":"lightroom"},{"name":"Traktor","url":"traktor-pro"},{"name":"Ableton Live","url":"live"},{"name":"Keynote","url":""},{"name":"Yorufukurou","url":""},{"name":"Chrome","url":""},{"name":"NetNewsWire","url":""},{"name":"Google Reader","url":"google-reader"},{"name":"Notational Velocity","url":"notational-velocity"},{"name":"Omnifocus","url":""},{"name":"MobileMe","url":"mobile-me"},{"name":"Instapaper","url":""},{"name":"Tuffmail","url":""},{"name":"github","url":""},{"name":"Time Capsule","url":"http://www.apple.com/timecapsule/","description":"A WiFi access point and backup system."},{"name":"Dropbox","url":""},{"name":"Kindle","url":"http://www.amazon.com/kindle/","description":"A digital book reader."},{"name":"Instapaper","url":"instapaper-ios"},{"name":"Reeder","url":"reeder-ios"},{"name":"Simplenote","url":"simplenote-ios"},{"name":"Twitter","url":"twitter-ios"}]}
{"layout":"post","title":"An interview with Tony 'Lunchbreath' Ruth","slug":"tony.ruth","person":"Tony 'Lunchbreath' Ruth","summary":"Illustrator","categories":["mac","artist","designer"],"date":"2011-01-18","hardware":[{"name":"Wacom Cintiq 21UX","url":"cintiq","categories":[]},{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"Griffin Powermate","url":"powermate","categories":[]},{"name":"Apple Magic Trackpad","url":"magic-trackpad","categories":[]},{"name":"PowerMac G5","url":"power-mac-g5","categories":[]},{"name":"Cinema Display","url":"http://www.apple.com/displays/cinema/","description":"The LCD display line.","categories":[]},{"name":"Logitech LX7 Cordless","url":"lx7","categories":[]},{"name":"Macbook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPad 3G","url":"http://www.apple.com/ipad/","description":"Apple's tablet device (with 3G).","categories":["mac","mobile","tablet"]},{"name":"iPhone 3G","url":"http://www.apple.com/iphone/iphone-3g/","description":"The 3G iPhone.","categories":["mac","mobile","phone"]},{"name":"Canon G10","url":"powershot-g10","categories":[]}],"software":[{"name":"Photoshop CS3","url":"photoshop"},{"name":"Illustrator","url":""},{"name":"Bridge","url":""},{"name":"Sketchup","url":"sketchup"},{"name":"Pages","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Firefox","url":""},{"name":"Mail","url":""},{"name":"Keynote","url":""},{"name":"Acrobat","url":""},{"name":"Google Calendar","url":"google-calendar"}]}
{"layout":"post","title":"An interview with Andrew Plotkin","slug":"andrew.plotkin","person":"Andrew Plotkin","summary":"Hacker, IF Wizard","categories":["mac","developer","game","writer"],"date":"2011-01-22","hardware":[{"name":"PowerMac G4","url":"power-mac-g4","categories":[]},{"name":"17\" Apple Studio Display","url":"studio-display","categories":[]},{"name":"Dell U2410","url":"u2410","categories":["pc","system"]},{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Myst Online","url":"uru","categories":[]},{"name":"Matias TactilePro","url":"tactile-pro","categories":[]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"iPod Touch","url":"http://www.apple.com/ipodtouch/","description":"It's like an iPhone, without the phone bit.","categories":["mac","music"]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]}],"software":[{"name":"Emacs","url":""},{"name":"Lynx","url":""},{"name":"Pine","url":""},{"name":"Alpine","url":""},{"name":"Emacs","url":""},{"name":"TextWrangler","url":""},{"name":"iChat","url":""},{"name":"Tweetie","url":""},{"name":"Twitter usage","url":"http://twitter.com/zarfeblong \"Andrew's Twitter account.\""},{"name":"iTunes","url":""},{"name":"Audio Hijack Pro","url":"audio-hijack-pro"},{"name":"Preview","url":""},{"name":"iCab","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"ClickToFlash","url":""},{"name":"Gimp","url":""},{"name":"Inkscape","url":""},{"name":"Google SketchUp","url":"sketchup"},{"name":"Xcode","url":""},{"name":"Inform 7","url":"inform"},{"name":"iCab Mobile","url":"icab-ios"},{"name":"iSSH","url":"issh-ios"}]}
{"layout":"post","title":"An interview with Derek Yu","slug":"derek.yu","person":"Derek Yu","summary":"Illustrator, indie game developer (Aquaria, Spelunky)","categories":["mac","artist","designer","developer","game"],"date":"2011-01-29","hardware":[{"name":"X58","url":"http://www.cyberpowerpc.com/system/CyberPower_X58_Same_Day/","description":"A gaming PC.","categories":[]},{"name":"Macbook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Windows XP","url":"windows-xp","categories":[]},{"name":"Wacom Intuos3","url":"intuos","categories":[]},{"name":"Faber-Castell PITT Artist Pen Brushes","url":"pitt","categories":[]},{"name":"HP Photosmart C4580","url":"photosmart-c4580","categories":[]}],"software":[{"name":"Microsoft Visual Studio 2008","url":"visual-studio"},{"name":"Game Maker","url":"game-maker"},{"name":"Diabolika","url":"diabolika-ios"},{"name":"Unity","url":""},{"name":"Adobe Photoshop CS4","url":"photoshop"},{"name":"Illustrator CS3","url":"illustrator"},{"name":"FRAPS","url":""},{"name":"Chrome","url":""},{"name":"Firefox","url":""},{"name":"WinRAR","url":""},{"name":"Notepad++","url":"notepad-plusplus"},{"name":"Filezilla","url":""}]}
{"layout":"post","title":"An interview with Emily Short","slug":"emily.short","person":"Emily Short","summary":"Interactive narrative consultant","categories":["mac","writer","game"],"date":"2011-02-07","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Windows XP","url":"windows-xp","categories":[]},{"name":"Xbox 360","url":"http://www.xbox.com/en-US/hardware/","description":"A popular gaming console.","categories":[]},{"name":"64 GB iPad","url":"ipad","categories":["mac","mobile","tablet"]},{"name":"Sennheiser CX 300 II in-ear headphones","url":"cx-300-ii","categories":[]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]},{"name":"black Moleskine notebooks","url":"moleskine","categories":[]}],"software":[{"name":"Mac OS X 10.6.4","url":"mac-os-x"},{"name":"Mail","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Terminal","url":""},{"name":"iChat","url":""},{"name":"Inform","url":""},{"name":"BBEdit","url":""},{"name":"Microsoft Word","url":"word"},{"name":"OmniGraffle","url":""},{"name":"Here","url":"http://inform-fiction.org/I7Downloads/Examples/bronze/Overview.html \"Emily's making-of for a piece of her IF.\""},{"name":"Xcode","url":""},{"name":"Flash","url":""},{"name":"Processing","url":""},{"name":"Scrivener","url":""},{"name":"Papers","url":""},{"name":"Keynote","url":""},{"name":"PowerPoint","url":""},{"name":"Illustrator","url":""},{"name":"Photoshop Elements","url":"photoshop-elements"},{"name":"Aperture","url":""}]}
{"layout":"post","title":"An interview with Martin Kool","slug":"martin.kool","person":"Martin Kool","summary":"HTML5 rocket surgeon, underpants gnome","categories":["windows","developer","web"],"date":"2011-02-12","hardware":[{"name":"Dell X1","url":"latitude-x1","categories":["pc","system"]},{"name":"Dell E4200","url":"latitude-e4200","categories":["pc","system"]},{"name":"iPad 3G","url":"http://www.apple.com/ipad/","description":"Apple's tablet device (with 3G).","categories":["mac","mobile","tablet"]},{"name":"Flipboard","url":"flipboard-ios","categories":[]},{"name":"Dell OptiPlex 760","url":"optiplex-760","categories":["pc","system"]}],"software":[{"name":"XP","url":"windows-xp"},{"name":"Visual Studio 2010","url":"visual-studio"},{"name":"C#","url":"c-sharp"},{"name":"Chrome","url":""},{"name":"PNGOutWin","url":""},{"name":"AutoHotkey","url":""},{"name":"ReCSS","url":""},{"name":"Total Commander","url":"total-commander"}]}
{"layout":"post","title":"An interview with Jessica Hische","slug":"jessica.hische","person":"Jessica Hische","summary":"Letterer, graphic designer","categories":["mac","designer","web","type"],"date":"2011-02-15","hardware":[{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"Apple Display","url":"cinema-display","categories":[]},{"name":"Twitter","url":"","categories":[]},{"name":"iChat","url":"","categories":[]},{"name":"Magic Mouse","url":"http://www.apple.com/magicmouse","description":"A multi-touch mouse.","categories":[]},{"name":"Apple trackpad","url":"magic-trackpad","categories":[]},{"name":"keyboard","url":"http://www.apple.com/keyboard/","description":"The slim keyboard for Macs.","categories":[]},{"name":"Blue Ball microphone","url":"ball","categories":[]},{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"MacBook Air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]}],"software":[{"name":"Adobe Creative Suite CS5","url":"creative-suite"},{"name":"Illustrator","url":""},{"name":"Lightroom","url":""},{"name":"GF1","url":"lumix-gf1"},{"name":"Fontlab Studio 5","url":"fontlab-studio"},{"name":"DropBox","url":""},{"name":"Google Calendar","url":"google-calendar"},{"name":"iCal","url":""},{"name":"TeuxDeux","url":"teuxdeux"},{"name":"TextEdit","url":""},{"name":"Wordpress","url":""},{"name":"Tumblr","url":""},{"name":"Daily Drop Cap","url":"http://dailydropcap.com/ \"Jessica's font project site.\""}]}
{"layout":"post","title":"An interview with Martijn Van Der Meulen","slug":"martijn.van.der.meulen","person":"Martijn Van Der Meulen","summary":"Creative Producer (Sony Computer Entertainment)","categories":["windows","suit","game"],"date":"2011-02-21","hardware":[{"name":"Hoverboard","url":"http://en.wikipedia.org/wiki/Hoverboard \"The Wikipedia entry on Hoverboards.\"","categories":[]},{"name":"Nexus S","url":"http://www.google.com/nexus/","description":"An Android-based smart phone.","categories":[]},{"name":"Dell Mini 9","url":"inspiron-mini-9","categories":["pc","system"]},{"name":"PlayStation 3","url":"http://www.us.playstation.com/PS3","description":"A shiny gaming console from Sony.","categories":[]},{"name":"PSP's","url":"psp","categories":[]},{"name":"Canon 400D","url":"rebel-xti","categories":[]},{"name":"HF3461 Philips Wake-up Light","url":"wake-up-light","categories":[]}],"software":[{"name":"Hansoft","url":""},{"name":"MS Excel","url":"excel"},{"name":"Windows XP","url":"windows-xp"},{"name":"Rainmeter","url":"rainmeter"},{"name":"Bumptop","url":""},{"name":"Google Chrome","url":"chrome"},{"name":"Google Docs","url":"google-docs"},{"name":"Google Reader","url":"google-reader"},{"name":"Spotify Premium","url":"spotify"},{"name":"WebSharing","url":"websharing-android"},{"name":"Human Japanese","url":"human-japanese-android"},{"name":"HyperJump","url":"hyper-jump-android"},{"name":"Game Dev Story","url":"game-dev-story-android"},{"name":"Twitter","url":"http://twitter.com/MvdMbladiebla \"Martijn's Twitter account.\""},{"name":"NeoGAF","url":"http://www.neogaf.com/forum/ \"The NeoGAF gaming forums.\""}]}
{"layout":"post","title":"An interview with Rui Carmo","slug":"rui.carmo","person":"Rui Carmo","summary":"Systems Engineer","categories":["mac","developer","software","systems"],"date":"2011-02-28","hardware":[{"name":"Mac Mini","url":"http://www.apple.com/macmini/","description":"The lil' Intel-based Mac.","categories":["mac","system","desktop"]},{"name":"Dell Optiplex 380","url":"optiplex-380","categories":["pc","system"]},{"name":"Ubuntu","url":"","categories":[]},{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"MacBook","url":"http://www.apple.com/macbook/","description":"The consumer Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPhone 3GS","url":"http://www.apple.com/iphone/iphone-3gs/","description":"The iPhone with a 3 megapixel camera and video recording.","categories":["mac","mobile","phone"]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"iPod Touch","url":"http://www.apple.com/ipodtouch/","description":"It's like an iPhone, without the phone bit.","categories":["mac","music"]},{"name":"iTunes","url":"","categories":[]},{"name":"Airport Extreme","url":"http://www.apple.com/airportextreme/","description":"A wireless access point.","categories":[]},{"name":"Airport Express","url":"http://www.apple.com/airportexpress/","description":"A small wireless access point.","categories":[]},{"name":"NSLU2","url":"http://en.wikipedia.org/wiki/NSLU2","description":"A Network-attached storage device.","categories":[]}],"software":[{"name":"vim","url":""},{"name":"screen","url":""},{"name":"OSX","url":"mac-os-x"},{"name":"Mail","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Xcode","url":""},{"name":"Evernote","url":""},{"name":"MobileMe","url":"mobile-me"},{"name":"Dropbox","url":""},{"name":"Office 2011","url":"office"},{"name":"iWork","url":""},{"name":"Keynote","url":""},{"name":"Adobe Creative Suite","url":"creative-suite"},{"name":"OmniGraffle","url":""},{"name":"Pixelmator","url":""},{"name":"VectorDesigner","url":""},{"name":"Sketch","url":""},{"name":"Seashore","url":""},{"name":"GIMP","url":""},{"name":"Adium","url":""},{"name":"Shelf","url":""},{"name":"ShiftIt","url":""},{"name":"MenuMeters","url":""},{"name":"vmware-fusion","url":""},{"name":"VirtualBox","url":""},{"name":"Dropbox","url":"dropbox-ios"},{"name":"Evernote","url":"evernote-ios"},{"name":"2Do","url":"2do-ios"},{"name":"Keynote","url":"keynote-ios"},{"name":"Pages","url":"pages-ios"},{"name":"Numbers","url":"numbers-ios"},{"name":"OmniGraffle","url":"omnigraffle-ios"},{"name":"Reeder","url":"reeder-ios"},{"name":"Instapaper","url":"instapaper-ios"},{"name":"Stanza","url":"stanza-ios"},{"name":"GoodReader","url":"goodreader-ios"},{"name":"Nebulous","url":"nebulous-notes-ios"},{"name":"iSSH","url":"issh-ios"},{"name":"iTeleport","url":"iteleport-ios"}]}
{"layout":"post","title":"An interview with Warren Ellis","slug":"warren.ellis","person":"Warren Ellis","summary":"Writer (Transmetropolitan, Crooked Little Vein)","categories":["windows","writer"],"date":"2011-03-05","hardware":[{"name":"Thinkpad W701","url":"http://shop.lenovo.com/us/notebooks/thinkpad/w-series/w701","description":"A 17 inch PC laptop.","categories":["pc","system","laptop"]},{"name":"Windows 7","url":"windows-7","categories":[]},{"name":"Asus Eee 701","url":"eee-pc-701","categories":[]},{"name":"Windows XP","url":"windows-xp","categories":[]},{"name":"16GB iPhone 3GS","url":"iphone-3gs","categories":["mac","mobile","phone"]},{"name":"Kindle 3","url":"kindle","categories":[]}],"software":[{"name":"Chrome","url":""},{"name":"OpenOffice","url":""},{"name":"Final Draft","url":"final-draft"},{"name":"CeltX","url":""},{"name":"Gmail","url":""},{"name":"Jungle Disk","url":"jungle-disk"},{"name":"Memeo","url":"memeo-backup"},{"name":"Dropbox","url":""},{"name":"1password","url":""},{"name":"Google Reader","url":"google-reader"},{"name":"Snackr","url":""},{"name":"Pinboard","url":""},{"name":"Zumodrive","url":""},{"name":"iTunes","url":""},{"name":"Seesmic Desktop 2","url":"seesmic-desktop"},{"name":"Tweetdeck","url":""},{"name":"Reeder","url":"reeder-ios"},{"name":"Kindle","url":"http://www.amazon.com/kindle/","description":"A digital book reader."},{"name":"Guardian app","url":"guardian-ios"},{"name":"BBC News app","url":"bbc-news-ios"},{"name":"Evernote","url":"evernote-ios"},{"name":"Dropbox","url":"dropbox-ios"},{"name":"Wikipanion","url":"wikipanion-ios"},{"name":"Instapaper","url":"instapaper-ios"},{"name":"Convert","url":"convert-ios"},{"name":"Twitterrific","url":"twitterrific-ios"},{"name":"Instagram","url":"instagram-ios"},{"name":"Met Office","url":"met-office-weather-ios"},{"name":"The Wire","url":"the-wire-ios"},{"name":"Tumblr","url":"tumblr-ios"},{"name":"Mongoliad","url":"mongoliad-ios"},{"name":"TuneIn Radio","url":"tunein-radio-ios"},{"name":"Stanza","url":"stanza-ios"},{"name":"Remember The Milk","url":"remember-the-milk"},{"name":"Wordpress","url":""}]}
{"layout":"post","title":"An interview with Eric Meyer","slug":"eric.meyer","person":"Eric Meyer","summary":"Web standards monkey","categories":["mac","developer","web","writer"],"credits":{"name":"Pete Karl II","url":"http://www.flickr.com/photos/pete-karl/"},"date":"2011-03-08","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Logitech MX 500","url":"mx500","categories":[]},{"name":"G4/500","url":"power-mac-g4","categories":[]},{"name":"Apple Cinema Display","url":"cinema-display","categories":[]},{"name":"iPhone 3GS","url":"http://www.apple.com/iphone/iphone-3gs/","description":"The iPhone with a 3 megapixel camera and video recording.","categories":["mac","mobile","phone"]}],"software":[{"name":"OS X","url":"mac-os-x"},{"name":"Windows XP","url":"windows-xp"},{"name":"VMware Fusion","url":"vmware-fusion"},{"name":"IE","url":"internet-explorer"},{"name":"Windows 7","url":"windows-7"},{"name":"Terminal","url":""},{"name":"Marco Polo","url":"marcopolo"},{"name":"BBEdit","url":""},{"name":"Adobe Photoshop","url":"photoshop"},{"name":"my business partner","url":"http://jeffrey.zeldman.usesthis.com/ \"Jeffrey's Setup interview.\""},{"name":"Camino 2","url":"camino"},{"name":"Firefox","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Word","url":""},{"name":"Adobe Acrobat","url":"acrobat"},{"name":"Keynote","url":""},{"name":"S5","url":""},{"name":"Caffeine","url":""},{"name":"Mouseposé","url":"mousepose"},{"name":"Camouflage","url":""},{"name":"Paparazzi!","url":"paparazzi"},{"name":"Backdrop","url":""},{"name":"NetNewsWire","url":""},{"name":"Twitterrific","url":""},{"name":"Adium","url":""},{"name":"Skype","url":""},{"name":"Transmit","url":""},{"name":"Eudora","url":""},{"name":"Thunderbird","url":""},{"name":"DragThing","url":""},{"name":"DigitalColor Meter","url":"digitalcolor-meter"},{"name":"CleanArchiver","url":""},{"name":"Osmos","url":""},{"name":"Darwinia","url":""}]}
{"layout":"post","title":"An interview with Shaun Inman","slug":"shaun.inman","person":"Shaun Inman","summary":"Designer, developer, composer","categories":["mac","designer","developer","web","game"],"credits":{"name":"Jason Santa Maria","url":"http://www.flickr.com/photos/jasonsantamaria/"},"date":"2011-03-12","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPod touch","url":"http://www.apple.com/ipodtouch/","description":"It's like an iPhone, without the phone bit.","categories":["mac","music"]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"Nintendo DS Lite","url":"ds-lite","categories":[]},{"name":"Sony PSP-3000","url":"psp-3000","categories":[]},{"name":"Super SmartJoy","url":"http://en.wikipedia.org/wiki/Super_SmartJoy","description":"A dongle for using a Super NES controller on a computer.","categories":[]},{"name":"Apple Cinema Display","url":"cinema-display","categories":[]},{"name":"Samson C01U USB Studio Condenser","url":"c01u","categories":[]},{"name":"M-Audio Keystation 61es","url":"keystation-61es","categories":[]},{"name":"Time Capsule","url":"http://www.apple.com/timecapsule/","description":"A WiFi access point and backup system.","categories":[]},{"name":"Airport Extreme","url":"http://www.apple.com/airportextreme/","description":"A wireless access point.","categories":[]},{"name":"G5","url":"power-mac-g5","categories":[]},{"name":"Microsoft Explorer","url":"explorer-mouse","categories":[]},{"name":"Magic Mouse","url":"http://www.apple.com/magicmouse","description":"A multi-touch mouse.","categories":[]},{"name":"Apple Wireless Keyboard","url":"keyboard","categories":[]}],"software":[{"name":"LaunchBar","url":""},{"name":"Photoshop CS3","url":"photoshop"},{"name":"TextMate","url":""},{"name":"Xcode","url":""},{"name":"Transmit","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"1Password","url":""},{"name":"iSimulate","url":"isimulate-ios"},{"name":"Screens","url":"screens-ios"},{"name":"Shortwave","url":""},{"name":"Lessn","url":""},{"name":"Twitter","url":""},{"name":"Dribbble","url":""},{"name":"Audio Overload","url":"audio-overload"},{"name":"8-bit music composition workflow","url":"http://shauninman.com/archive/2010/07/06/mml_bundle_now_creates_multi_song_nsfs \"Shaun's post on his music workflow.\""}]}
{"layout":"post","title":"An interview with Bryan Lee O'Malley","slug":"bryan.lee.omalley","person":"Bryan Lee O'Malley","summary":"Cartoonist (Scott Pilgrim)","categories":["mac","artist"],"date":"2011-03-15","hardware":[{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"Macbook","url":"http://www.apple.com/macbook/","description":"The consumer Mac laptop.","categories":["mac","system","laptop"]},{"name":"dumb new Mac touchpad","url":"magic-trackpad","categories":[]},{"name":"Magic Mouse","url":"http://www.apple.com/magicmouse","description":"A multi-touch mouse.","categories":[]},{"name":"Epson 10000XL","url":"10000xl","categories":[]}],"software":[{"name":"Photoshop","url":""},{"name":"Final Draft","url":"final-draft"},{"name":"Lightroom","url":""},{"name":"iPhoto","url":""}]}
{"layout":"post","title":"An interview with Thomas Fuchs","slug":"thomas.fuchs","person":"Thomas Fuchs","summary":"Developer (script.aculo.us, Prototype)","categories":["mac","developer","web"],"date":"2011-03-19","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"Cinema Displays","url":"cinema-display","categories":[]},{"name":"Rain mStands","url":"mstand","categories":[]},{"name":"Magic Mouse","url":"http://www.apple.com/magicmouse","description":"A multi-touch mouse.","categories":[]},{"name":"Magic Trackpad","url":"http://www.apple.com/magictrackpad/","description":"A trackpad for desktop machines.","categories":[]},{"name":"Logitech G500","url":"g500","categories":[]},{"name":"USB rocket launcher","url":"http://www.thinkgeek.com/interests/techies/8a0f/ \"A USB-controlled foam rocket launcher.\"","categories":[]}],"software":[{"name":"MacVIM","url":""},{"name":"TextMate","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Google Chrome","url":"chrome"},{"name":"Terminal.app","url":"terminal"},{"name":"I finally found one","url":"http://mir.aculo.us/2010/10/12/the-long-search-for-a-terminal-font-is-over/ \"Thomas' post on finding a coding font.\""},{"name":"Transmit","url":""},{"name":"Propane","url":""},{"name":"Adium","url":""},{"name":"Skitch","url":""},{"name":"Textual","url":""},{"name":"VMWare Fusion","url":"vmware-fusion"},{"name":"Campfire","url":""},{"name":"ServerDensity","url":"server-density"},{"name":"Pingdom","url":""},{"name":"Clicky","url":""},{"name":"Charm","url":""}]}
{"layout":"post","title":"An interview with Simon Carless","slug":"simon.carless","person":"Simon Carless","summary":"Gamer (GDC, IGF, Gamasutra, GameSetWatch)","categories":["windows","suit","game"],"date":"2011-03-22","hardware":[{"name":"VoodooPC HP Firebird 803","url":"firebird","categories":[]},{"name":"Asus VE245TL","url":"ve245tl","categories":[]},{"name":"Boston Acoustics MM226 speakers","url":"horizon-mm226","categories":[]},{"name":"Microsoft Natural Ergonomic Desktop 7000","url":"natural-ergonomic-desktop-7000","categories":[]},{"name":"Lenovo Thinkpad X201","url":"thinkpad-x201","categories":["pc","system","laptop"]},{"name":"BlackBerry Torch 9800","url":"torch-9800","categories":[]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"Macbook","url":"http://www.apple.com/macbook/","description":"The consumer Mac laptop.","categories":["mac","system","laptop"]},{"name":"Xbox 360 Slim","url":"xbox-360","categories":[]},{"name":"'red ring of death'","url":"http://en.wikipedia.org/wiki/Xbox_360_technical_problems \"The Wikipedia article on the Red Ring of Death.\"","categories":[]},{"name":"Sony PlayStation 3","url":"ps3","categories":[]},{"name":"Nintendo Wii","url":"wii","categories":[]},{"name":"GP32","url":"http://en.wikipedia.org/wiki/Gp32","description":"A handheld gaming console.","categories":[]},{"name":"a GN TWIN","url":"gn-twin","categories":[]},{"name":"Retro Duo","url":"http://en.wikipedia.org/wiki/Retro_Duo","description":"A gaming console that plays NES and SNES games.","categories":[]},{"name":"blowing into the cart","url":"http://www.bustedtees.com/blowme/ \"The 'Blow Me' t-shirt.\"","categories":[]},{"name":"Nintendo DSi","url":"dsi","categories":[]},{"name":"Nintendo DS","url":"ds","categories":[]},{"name":"Sony PSP-1000","url":"psp","categories":[]},{"name":"iPod Touch","url":"http://www.apple.com/ipodtouch/","description":"It's like an iPhone, without the phone bit.","categories":["mac","music"]},{"name":"Nintendo 3DS","url":"3ds","categories":[]},{"name":"Sega Aero City","url":"aero-city","categories":[]},{"name":"Neo-Geo MVS","url":"http://www.system16.com/hardware.php?id=869","description":"A gaming system motherboard.","categories":[]},{"name":"Sega-STV","url":"st-v","categories":[]}],"software":[{"name":"Mozilla Firefox","url":"firefox"},{"name":"Campfire","url":""},{"name":"MovableType","url":"movable-type"},{"name":"Wordpress","url":""},{"name":"Trillian Pro","url":"trillian"},{"name":"the Trillian SIP plug-in","url":"trillian-sip"},{"name":"Windows Vista","url":"windows-vista"},{"name":"Tweetdeck","url":""},{"name":"World Of Goo","url":"world-of-goo-ios"},{"name":"Plants Vs. Zombies","url":"plants-vs-zombies-ios"},{"name":"Helsing's Fire","url":"helsings-fire-ios"},{"name":"Kometen","url":"kometen-ios"},{"name":"IGF-nominated 'Best Mobile Game' titles","url":"http://www.igf.com/02finalists.html \"IGF Best Mobile Game finalists.\""},{"name":"Reeder","url":"reeder-ios"},{"name":"Pixlr","url":""},{"name":"Irfanview","url":""},{"name":"Bloglines","url":""},{"name":"Google Reader","url":"google-reader"},{"name":"a Delicious feed","url":"http://www.delicious.com/simoncarless \"Simon's Delicious account.\""},{"name":"OpenOffice","url":""},{"name":"Gmail","url":""},{"name":"iTunes","url":""},{"name":"Mog.com","url":"mog"},{"name":"Trials HD","url":"trials-hd"},{"name":"Pinball FX 2","url":"pinball-fx-2"},{"name":"Pac-Man CE DX","url":"pac-man-ce-dx"},{"name":"Disney Epic Mickey","url":"epic-mickey"},{"name":"Rock Band 3","url":"rock-band"}]}
{"layout":"post","title":"An interview with MG Siegler","slug":"mg.siegler","person":"MG Siegler","summary":"Tech reporter (TechCrunch)","categories":["mac","journalist","developer","web"],"date":"2011-03-26","hardware":[{"name":"MacBook Airs","url":"macbook-air","categories":["mac","system","laptop"]},{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"Time Machine","url":"time-machine","categories":[]},{"name":"Time Capsule","url":"http://www.apple.com/timecapsule/","description":"A WiFi access point and backup system.","categories":[]},{"name":"keyboard","url":"http://www.apple.com/keyboard/","description":"The slim keyboard for Macs.","categories":[]},{"name":"Magic Mouse","url":"http://www.apple.com/magicmouse","description":"A multi-touch mouse.","categories":[]},{"name":"Magic Trackpad","url":"http://www.apple.com/magictrackpad/","description":"A trackpad for desktop machines.","categories":[]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"Windows 7","url":"windows-7","categories":[]},{"name":"Boot Camp","url":"boot-camp","categories":[]},{"name":"iPad 2","url":"http://www.apple.com/ipad/","description":"Apple's newer tablet device.","categories":["mac","mobile","tablet"]},{"name":"Xcode","url":"","categories":[]}],"software":[{"name":"Chrome","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Mac App Store","url":"mac-app-store"},{"name":"Twitter for Mac","url":"twitter-mac"},{"name":"Reeder for Mac","url":"reeder"},{"name":"iTunes","url":""},{"name":"iCal","url":""},{"name":"Yammer","url":""},{"name":"iChat","url":""},{"name":"Skype","url":""},{"name":"Gmail","url":""},{"name":"WordPress","url":""},{"name":"Pages","url":""},{"name":"TextEdit","url":""}]}
{"layout":"post","title":"An interview with Nate 'Igor' Smith","slug":"nate.smith","person":"Nate 'Igor' Smith","summary":"Photographer","categories":["mac","windows","photographer"],"date":"2011-03-29","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"Nikon D700","url":"http://www.nikonusa.com/Find-Your-Nikon/Product/Digital-SLR/25444/D700.html","description":"A 12.1 megapixel DSLR.","categories":[]},{"name":"Nikon D300","url":"d300","categories":[]},{"name":"Nikkor 24-70 2.8","url":"af-s-nikkor-24-70mm-f2.8g-ed","categories":[]},{"name":"Nikkor 24-120 3.5-5.6","url":"af-s-nikkor-24-120mm-f3.5-5.6g-if-ed","categories":[]},{"name":"Sigma 70-200 2.8","url":"70-200mm-ex-dg","categories":[]},{"name":"SB-800","url":"sb-800-af-speedlight","categories":[]},{"name":"Quantum Battery 1+","url":"qb-1-plus","categories":[]},{"name":"Leica C-Lux 3","url":"c-lux-3","categories":[]}],"software":[{"name":"Photoshop","url":""},{"name":"JAlbum","url":""},{"name":"TweetDeck","url":"tweetdeck"},{"name":"Adium","url":""},{"name":"Camino","url":""},{"name":"Chrome","url":""},{"name":"Internet Explorer","url":"internet-explorer"},{"name":"CyberDuck","url":""}]}
{"layout":"post","title":"An interview with Rasmus Andersson","slug":"rasmus.andersson","person":"Rasmus Andersson","summary":"Designer, programmer (Spotify, Facebook)","categories":["mac","designer","developer","web"],"date":"2011-04-03","hardware":[{"name":"MacBook Pro 15\"","url":"macbook-pro","categories":["mac","system","laptop"]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"LV2 speakers","url":"living-lv2","categories":[]},{"name":"old beautiful PowerBook 15","url":"http://www.flickr.com/photos/rsms/73641960/ \"A photo of Rasmus' PowerBook.\"","categories":[]},{"name":"M9","url":"http://us.leica-camera.com/photography/m_system/m9/","description":"An 18.5 megapixel digital camera with a full-frame sensor.","categories":[]},{"name":"M8","url":"http://us.leica-camera.com/photography/m_system/m8/","description":"A 10.3 megapixel digital camera.","categories":[]},{"name":"M6","url":"http://en.wikipedia.org/wiki/Leica_M6","description":"A film camera.","categories":[]},{"name":"500C/M","url":"500-cm","categories":[]},{"name":"Photography is one of three big occupations","url":"http://www.flickr.com/photos/rsms \"Rasmus' Flickr photos.\"","categories":[]},{"name":"Logitech MX 400","url":"mx-400","categories":[]}],"software":[{"name":"Photoshop","url":""},{"name":"Preview","url":""},{"name":"mail","url":"gmail"},{"name":"calendar","url":"google-calendar"},{"name":"docs","url":"google-docs"},{"name":"Chrome","url":""},{"name":"Spotify","url":""},{"name":"Dropbox","url":""},{"name":"Mac OS X","url":"mac-os-x"},{"name":"Debian","url":""},{"name":"Ubuntu","url":""},{"name":"rebinding \"Eject\"","url":"noejectdelay"},{"name":"Visor-ified","url":"visor"},{"name":"bash","url":""},{"name":"Droplr","url":""},{"name":"MenuMeters","url":""},{"name":"TotalFinder","url":""},{"name":"a bunch of less visual stuff related to the shell","url":"https://github.com/rsms/workenv/tree/master/terminal \"Rasmus' shell tweaks, on Github.\""},{"name":"TextMate","url":""},{"name":"I quit Spotify to join Facebook","url":"http://rsms.me/2010/06/11/moving-on \"Rasmus' post about joining Facebook.\""},{"name":"I decided to put some effort","url":"http://rsms.me/2011/01/20/why-i-wrote-a-programmers-text-editor \"Rasmus' post about writing Kod.\""},{"name":"Kod","url":""},{"name":"GitHub","url":""},{"name":"Chris Wanstrath","url":"http://chris.wanstrath.usesthis.com/ \"Chris' interview.\""},{"name":"Twitter desktop application","url":"twitter-mac"}]}
{"layout":"post","title":"An interview with Wilson Miner","slug":"wilson.miner","person":"Wilson Miner","summary":"Web designer (Rdio)","categories":["mac","designer","web"],"credits":{"name":"CreativeMornings","url":"http://www.flickr.com/photos/sanfrancisco_creativemornings/5479227521/"},"date":"2011-04-05","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Cinema Display","url":"http://www.apple.com/displays/cinema/","description":"The LCD display line.","categories":[]},{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"Dropbox","url":"","categories":[]},{"name":"Boot Camp","url":"boot-camp","categories":[]},{"name":"Steam","url":"","categories":[]},{"name":"Logitech Performance MX","url":"performance-mouse-mx","categories":[]},{"name":"Seagate FreeAgent Go","url":"freeagent-go","categories":[]},{"name":"Mac Mini","url":"http://www.apple.com/macmini/","description":"The lil' Intel-based Mac.","categories":["mac","system","desktop"]},{"name":"XBMC","url":"","categories":[]},{"name":"ReadyNAS NV+","url":"http://www.readynas.com/?cat=4","description":"A backup/storage solution.","categories":[]},{"name":"Roku","url":"http://roku.com/","description":"A device for streaming entertainment to your TV.","categories":[]},{"name":"Beresford TC-7520","url":"tc-7520","categories":[]},{"name":"Beolab 4000","url":"http://www.bang-olufsen.com/beolab4000","description":"Swanky speakers.","categories":[]},{"name":"Sennheiser HD 650","url":"hd-650","categories":[]},{"name":"NuForce","url":"icon-udac","categories":[]},{"name":"Grado SR60","url":"sr60i","categories":[]},{"name":"iPhone 3GS","url":"http://www.apple.com/iphone/iphone-3gs/","description":"The iPhone with a 3 megapixel camera and video recording.","categories":["mac","mobile","phone"]},{"name":"Kindle","url":"http://www.amazon.com/kindle/","description":"A digital book reader.","categories":[]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"Air Video","url":"air-video","categories":[]}],"software":[{"name":"Photoshop","url":""},{"name":"Illustrator","url":""},{"name":"Sparrow","url":""},{"name":"iChat","url":""},{"name":"Skype","url":""},{"name":"Things","url":""},{"name":"TextMate","url":""},{"name":"Tower","url":""},{"name":"Notational Velocity","url":"notational-velocity"},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Chrome","url":""},{"name":"Google Docs","url":"google-docs"},{"name":"iCal","url":""},{"name":"Twitter","url":"twitter-mac"},{"name":"Reeder","url":"reeder"},{"name":"LittleSnapper","url":""},{"name":"Lookwork","url":""}]}
{"layout":"post","title":"An interview with Russ Cox","slug":"russ.cox","person":"Russ Cox","summary":"Software developer (Plan 9, Google Code Search, RE2, Go)","categories":["mac","windows","developer","software"],"date":"2011-04-09","hardware":[{"name":"Mac Mini","url":"http://www.apple.com/macmini/","description":"The lil' Intel-based Mac.","categories":["mac","system","desktop"]},{"name":"Dell 2001FP 20\" LCD","url":"2001fp","categories":["pc","system"]},{"name":"Samsung ML-1750 laser printer","url":"ml-1750","categories":[]},{"name":"Apple Time Capsule","url":"time-capsule","categories":[]},{"name":"Netgear ReadyNAS Duo","url":"readynas-duo","categories":[]},{"name":"Fujitsu ScanSnap S510","url":"scansnap-s510","categories":[]},{"name":"small Apple keyboard","url":"keyboard","categories":[]},{"name":"Evoluent mouse","url":"verticalmouse","categories":[]},{"name":"SPARC simulated by an FPGA","url":"http://www.readynas.com/forum/viewtopic.php?f=7&t=48124 \"A thread about ReadyNAS and SPARC.\"","categories":[]},{"name":"IBM Thinkpad X40","url":"thinkpad-x40","categories":["pc","system","laptop"]},{"name":"Lenovo Thinkpad X201s","url":"thinkpad-x201s","categories":["pc","system","laptop"]},{"name":"Bose QC2 headphones","url":"quietcomfort-2","categories":[]},{"name":"QC15","url":"quietcomfort-15","categories":[]},{"name":"Nexus One phone","url":"nexus-one","categories":[]},{"name":"Nikon D90","url":"d90","categories":[]},{"name":"18-200mm AF-S lens","url":"af-s-dx-nikkor-18-200mm-f3.5-5.6g-ed-vr-ii","categories":[]},{"name":"Kindle 3","url":"kindle","categories":[]}],"software":[{"name":"Plan 9 from Bell Labs","url":"plan-9"},{"name":"Plan 9 from User Space","url":"plan-9-user-space"},{"name":"_acme_","url":"acme"},{"name":"this video","url":"http://www.youtube.com/watch?v=dopu3ZtdCsg \"A video of acme in action.\""},{"name":"Rob Pike","url":"http://herpolhode.com/rob/ \"Rob's website.\""},{"name":"_sam_","url":"sam"},{"name":"_ed_","url":"ed"},{"name":"Boston","url":"http://www.google.com/intl/mn/jobs/uslocations/boston/index.html \"Google in Boston.\""},{"name":"Sydney","url":"http://www.google.com.au/intl/en/jobs/sydney/ \"Google in Sydney.\""},{"name":"Ken Thompson","url":"http://plan9.bell-labs.com/who/ken/ \"Ken's website.\""},{"name":"Bjarne Stroustroup","url":"http://www.research.att.com/~bs/ \"Bjarne's website.\""},{"name":"Google Chrome","url":"chrome"},{"name":"swtch.com","url":"http://swtch.com/unix \"Rob's website.\""},{"name":"Blogger","url":""},{"name":"blog posts","url":"http://research.swtch.com/ \"Rob's research posts.\""},{"name":"Google Reader","url":"google-reader"},{"name":"Google Voice","url":"google-voice"},{"name":"Picasa","url":""},{"name":"SmugMug","url":""},{"name":"SmugFolio","url":"smugfolio-android"},{"name":"TripIt","url":""},{"name":"Android app","url":"tripit-android"},{"name":"Google TV box","url":"internet-tv-blu-ray"},{"name":"Unison","url":""},{"name":"Dropbox","url":""}]}
{"layout":"post","title":"An interview with Robert Hodgin","slug":"robert.hodgin","person":"Robert Hodgin","summary":"Code artist","categories":["mac","windows","developer","artist"],"date":"2011-04-12","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"Vonage","url":"","categories":[]},{"name":"microcell","url":"3g-microcell","categories":[]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"XBox","url":"xbox-360","categories":[]},{"name":"PS3","url":"","categories":[]}],"software":[{"name":"XCode","url":""},{"name":"C++","url":"c-plusplus"},{"name":"Cinder","url":""},{"name":"Photoshop CS4","url":"photoshop"},{"name":"Mail","url":""},{"name":"Twitter","url":"twitter-mac"},{"name":"Chrome","url":""},{"name":"Adium","url":""},{"name":"TextEdit","url":""},{"name":"Pinboard","url":""},{"name":"GMail","url":""}]}
{"layout":"post","title":"An interview with Ariel Waldman","slug":"ariel.waldman","person":"Ariel Waldman","summary":"Space hacker","categories":["mac","hacker"],"date":"2011-04-16","hardware":[{"name":"tea kettle robot","url":"one-touch-tea-maker","categories":[]},{"name":"cat feeding robot","url":"lebistro-pet-feeder","categories":[]},{"name":"bunny bot","url":"nabaztag","categories":[]},{"name":"NuMark Pro TT2","url":"pro-tt2","categories":[]},{"name":"Apple TV2","url":"apple-tv","categories":[]},{"name":"Airport Express","url":"http://www.apple.com/airportexpress/","description":"A small wireless access point.","categories":[]},{"name":"technosocial wormhole","url":"http://www.ted.com/talks/amber_case_we_are_all_cyborgs_now.html \"Amber Case's talk, 'We are all cyborgs now.'\"","categories":[]},{"name":"white BlackBerry Torch","url":"torch-9800","categories":[]},{"name":"iPod Touch","url":"http://www.apple.com/ipodtouch/","description":"It's like an iPhone, without the phone bit.","categories":["mac","music"]},{"name":"MacBook Pro 15\"","url":"macbook-pro","categories":["mac","system","laptop"]},{"name":"Virgin Mobile Mifi 2200","url":"mifi","categories":[]},{"name":"Nikon D80","url":"d80","categories":[]},{"name":"Arduino","url":"http://arduino.cc/","description":"Open-source prototyping hardware.","categories":[]},{"name":"Toasted Skin Syndrome","url":"http://newyork.cbslocal.com/2010/10/04/toasted-leg-syndrome-warning-for-laptop-users-of/ \"A news article about the syndrome.\"","categories":[]}],"software":[{"name":"PBworks","url":""},{"name":"SimpleGTD","url":""},{"name":"LittleSnapper","url":""},{"name":"Flickr","url":""},{"name":"On The Job","url":"on-the-job"},{"name":"Audio Recorder","url":"audio-recorder"},{"name":"Skype","url":""},{"name":"Matt Biddulph","url":"http://matt.biddulph.usesthis.com/ \"Matt's interview.\""},{"name":"Adobe CS4","url":"creative-suite"},{"name":"Firefox 4.0","url":"firefox"},{"name":"iChat","url":""},{"name":"this security breach on Adium","url":"http://trac.adium.im/ticket/13306 \"A bug in Adium regarding blocked contacts.\""},{"name":"DropBox","url":""},{"name":"Tweetie for Mac","url":"twitter-mac"},{"name":"TextEdit","url":""},{"name":"Microsoft PowerPoint","url":"powerpoint"}]}
{"layout":"post","title":"An interview with Frank Chimero","slug":"frank.chimero","person":"Frank Chimero","summary":"Designer, illustrator, writer","categories":["mac","designer","artist","writer"],"date":"2011-04-18","hardware":[{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"Kindle","url":"http://www.amazon.com/kindle/","description":"A digital book reader.","categories":[]},{"name":"Macbook Air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"Panasonic Lumix GF1","url":"lumix-gf1","categories":[]},{"name":"Apple TV","url":"http://www.apple.com/appletv/","description":"The media station device.","categories":[]},{"name":"Netflix","url":"","categories":[]},{"name":"The Bicycle Thief","url":"http://www.imdb.com/title/tt0040522/ \"The 'Bicycle Thieves' entry in IMDB.\"","categories":[]},{"name":"Shawshank Redemption","url":"http://www.imdb.com/title/tt0111161/ \"'The Shawshank Redemption' entry in IMDB.\"","categories":[]},{"name":"Muji","url":"http://www.muji.us/ \"Muji stationary.\"","categories":[]}],"software":[{"name":"Illustrator","url":""},{"name":"Photoshop","url":""},{"name":"TextMate","url":""},{"name":"TextEdit","url":""},{"name":"BusyCal","url":""},{"name":"Google Calendars","url":"google-calendar"},{"name":"Gmail","url":""},{"name":"Google Reader","url":"google-reader"},{"name":"Reeder.app","url":"reeder-ios"},{"name":"Instapaper Pro","url":"instapaper-ios"},{"name":"SimpleNote","url":"simplenote-ios"},{"name":"Dropbox","url":""},{"name":"SuperDuper","url":"superduper"},{"name":"iTunes","url":""},{"name":"Rdio","url":""}]}
{"layout":"post","title":"An interview with Joshua Allen","slug":"joshua.allen","person":"Joshua Allen","summary":"Funny writer dude","categories":["mac","writer"],"date":"2011-04-23","hardware":[{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"keyboard","url":"http://www.apple.com/keyboard/","description":"The slim keyboard for Macs.","categories":[]},{"name":"Kensington keyboard","url":"slimtype-mac","categories":[]},{"name":"Logitech mouse","url":"optical-mouse","categories":[]},{"name":"Blue Snowball","url":"snowball","categories":[]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"podcasts","url":"http://itunes.apple.com/podcast/the-fireland-podcast/id305591514 \"Joshua's Fireland podcast on iTunes.\"","categories":[]}],"software":[{"name":"Word","url":""},{"name":"Gmail","url":""},{"name":"Scrivener","url":""},{"name":"music stuff","url":"http://www.fireland.com/orifex \"Joshua's music.\""},{"name":"MetaSynth","url":""},{"name":"Peak","url":""},{"name":"Coda","url":""},{"name":"Transmit","url":""},{"name":"CandyBar","url":""},{"name":"Photoshop","url":""},{"name":"Pixelmator","url":""},{"name":"SuperDuper","url":""}]}
{"layout":"post","title":"An interview with Leah Culver","slug":"leah.culver","person":"Leah Culver","summary":"Developer (Convore, Pownce)","categories":["mac","developer","software","web"],"date":"2011-04-25","hardware":[{"name":"MacBook Air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]}],"software":[{"name":"Chrome","url":""},{"name":"Sparrow","url":""},{"name":"GMail","url":""},{"name":"Docs","url":"google-docs"},{"name":"Maps","url":"google-maps"},{"name":"Calendar","url":"google-calendar"},{"name":"Coda","url":""},{"name":"XCode","url":""},{"name":"GitX","url":""},{"name":"Terminal","url":""},{"name":"Firefox","url":""},{"name":"Firebug","url":""},{"name":"TypePad","url":""},{"name":"tweet","url":"https://twitter.com/leahculver \"Leah's Twitter account.\""},{"name":"Adium","url":""},{"name":"Colloquy","url":""},{"name":"GitHub","url":""},{"name":"Dropbox","url":""},{"name":"Rdio","url":""},{"name":"1Password","url":""},{"name":"Foursquare","url":"foursquare-ios"},{"name":"Yelp","url":"yelp-ios"},{"name":"Taxi Magic","url":"taxi-magic-ios"},{"name":"Uber","url":"uber-ios"},{"name":"Reeder","url":"reeder-ios"},{"name":"Instagram","url":"instagram-ios"},{"name":"Path","url":"path-ios"},{"name":"Echofon","url":"echofon-ios"},{"name":"Kindle","url":"http://www.amazon.com/kindle/","description":"A digital book reader."},{"name":"Plancast","url":"plancast-ios"},{"name":"Convore","url":"convore-ios"}]}
{"layout":"post","title":"An interview with Andy Smith","slug":"andy.smith","person":"Andy Smith","summary":"Software developer (OpenStack for Rackspace)","categories":["mac","linux","developer","software"],"credits":{"name":"Jason Samsa","url":"http://www.flickr.com/photos/jsamsa/3402960203/"},"date":"2011-04-30","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Belkin KVM switch","url":"switch2","categories":[]},{"name":"Cinema Display","url":"http://www.apple.com/displays/cinema/","description":"The LCD display line.","categories":[]},{"name":"Das Keyboard Model S Ultimate","url":"model-s-ultimate","categories":[]},{"name":"Logitech MX518","url":"mx-518","categories":[]},{"name":"SteelSeries QcK Heavy","url":"qck-heavy","categories":[]},{"name":"HD 280 Pros","url":"hd-280-pro","categories":[]},{"name":"HD 650's","url":"hd-650","categories":[]},{"name":"Technic SL1200MK2","url":"sl-1200","categories":[]},{"name":"Shuttle XPC","url":"g2-7600","categories":[]},{"name":"Cr-48","url":"http://www.google.com/chromeos/pilot-program-cr48.html","description":"Google's first Chrome OS netbook.","categories":[]},{"name":"30\" Dell monitor","url":"3007wfp","categories":["pc","system"]},{"name":"Wacom Bamboo Pen and Touch pad","url":"bamboo","categories":[]},{"name":"HTC Evo Shift 4G","url":"evo-shift-4g","categories":[]},{"name":"Leica M8.2","url":"m8.2","categories":[]},{"name":"Kindle wifi+3g","url":"kindle","categories":[]},{"name":"Xbox 360","url":"http://www.xbox.com/en-US/hardware/","description":"A popular gaming console.","categories":[]},{"name":"PS3","url":"","categories":[]}],"software":[{"name":"Ubuntu","url":""},{"name":"OS X","url":"mac-os-x"},{"name":"Google Chrome","url":"chrome"},{"name":"iterm2","url":""},{"name":"gvim","url":"vim"},{"name":"MacVim","url":""},{"name":"zsh","url":""},{"name":"NERD_comments plugin","url":"nerdcommenter"},{"name":"git","url":""},{"name":"git-bzr-ng","url":""},{"name":"github","url":""},{"name":"Vagrant","url":""},{"name":"Chef","url":""},{"name":"irssi","url":""},{"name":"screen","url":""},{"name":"Adobe Lightroom","url":"lightroom"},{"name":"OmniGraffle","url":""},{"name":"Keynote","url":""},{"name":"Homebrew","url":""},{"name":"Skype","url":""},{"name":"Ario","url":""},{"name":"mpd","url":""},{"name":"CyanogenMod 7","url":"cyanogen"},{"name":"Kindle","url":"http://www.amazon.com/kindle/","description":"A digital book reader."},{"name":"Foursquare","url":"foursquare-android"},{"name":"GMail","url":"gmail-android"},{"name":"Google Voice","url":"google-voice-android"},{"name":"Starcraft 2","url":"starcraft-2"}]}
{"layout":"post","title":"An interview with Tom Preston-Werner","slug":"tom.preston-werner","person":"Tom Preston-Werner","summary":"Co-founder of Github","categories":["mac","developer","web","suit"],"date":"2011-05-02","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]}],"software":[{"name":"TextMate","url":""},{"name":"emacs","url":""},{"name":"Terminal.app","url":"terminal"},{"name":"Git","url":""},{"name":"Google Chrome","url":"chrome"},{"name":"GitHub","url":""},{"name":"Propane","url":""},{"name":"Campfire","url":""},{"name":"Google Mail","url":"gmail"},{"name":"Mailplane","url":""},{"name":"Skype","url":""},{"name":"Preview","url":""},{"name":"iTunes","url":""},{"name":"iStat Menus","url":"istat-menus"}]}
{"layout":"post","title":"An interview with Anil Dash","slug":"anil.dash","person":"Anil Dash","summary":"Blogger, director of Expert Labs","categories":["mac","suit","developer","web"],"date":"2011-05-07","hardware":[{"name":"Macbook Air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Mac Mini","url":"http://www.apple.com/macmini/","description":"The lil' Intel-based Mac.","categories":["mac","system","desktop"]},{"name":"Cinema Display","url":"http://www.apple.com/displays/cinema/","description":"The LCD display line.","categories":[]}],"software":[{"name":"Google Chrome","url":"chrome"},{"name":"iChat","url":""},{"name":"Movable Type","url":"movable-type"},{"name":"Facebook","url":""},{"name":"Stellar","url":""},{"name":"Mlkshk","url":""},{"name":"Evernote","url":""},{"name":"ThinkUp","url":""},{"name":"PowerPoint","url":""},{"name":"Keynote","url":""},{"name":"Photoshop","url":""},{"name":"Word","url":""},{"name":"Excel","url":""},{"name":"Google Docs","url":"google-docs"},{"name":"Preview","url":""},{"name":"TextWrangler","url":""},{"name":"Tower","url":""},{"name":"Git","url":""},{"name":"GitHub","url":""},{"name":"Terminal","url":""},{"name":"Facetime","url":""},{"name":"Skype","url":""},{"name":"Twitter","url":"twitter-ios"},{"name":"Words with Friends","url":"words-with-friends-ios"},{"name":"Google Authenticator app","url":"google-authenticator-ios"},{"name":"DropBox","url":""}]}
{"layout":"post","title":"An interview with Kathryn Yu","slug":"kathryn.yu","person":"Kathryn Yu","summary":"Photographer","categories":["mac","photographer"],"date":"2011-05-09","hardware":[{"name":"Canon 5D Mark II","url":"eos-5d-mark-ii","categories":[]},{"name":"Canon 70-200mm f/2.8 IS lens","url":"ef-70-200mm-f2.8l-is-usm","categories":[]},{"name":"580 EX's","url":"speedlight-580ex","categories":[]},{"name":"430 EX's","url":"speedlight-430ex","categories":[]},{"name":"Speedliting","url":"http://speedliting.com/ \"A weblog about flash photography.\"","categories":[]},{"name":"Lomo LC-A's","url":"lc-a","categories":[]},{"name":"Holga","url":"http://microsites.lomography.com/holga/","description":"A toy plastic film camera.","categories":[]},{"name":"Diana","url":"http://microsites.lomography.com/diana/","description":"A film camera.","categories":[]},{"name":"Lomo Sprocket Rocket","url":"sprocket-rocket","categories":[]},{"name":"Lomo Fisheye 2","url":"fisheye-2","categories":[]},{"name":"Lomo ActionSampler","url":"actionsampler","categories":[]},{"name":"Vivitar Ultra Wide and Slim","url":"ultra-wide-and-slim","categories":[]},{"name":"Olympus XA2","url":"xa2","categories":[]},{"name":"favorite LC-A and LC-A+ shots","url":"http://www.flickr.com/photos/kathryn/sets/72157625885849550/ \"Kathryn's favourite LC shots.\"","categories":[]},{"name":"signs on film","url":"http://www.flickr.com/photos/kathryn/sets/72157615316063386/ \"Kathryn's photos of signs in NYC.\"","categories":[]},{"name":"MacBook Air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]}],"software":[{"name":"iView MediaPro","url":"iview-mediapro"},{"name":"Photo Mechanic","url":"photo-mechanic"},{"name":"Adobe Photoshop","url":"photoshop"},{"name":"Lightroom","url":""},{"name":"Aperture","url":""},{"name":"Drobo","url":"http://drobo.com/Products/drobo.html","description":"A nice hardware-based backup system."},{"name":"Backblaze","url":""},{"name":"Flickr","url":""},{"name":"Dropbox","url":""}]}
{"layout":"post","title":"An interview with Josh Nimoy","slug":"josh.nimoy","person":"Josh Nimoy","summary":"Artist, designer, hacktivist, musician, developer","categories":["mac","designer","artist","musician","developer","software","film"],"date":"2011-05-13","hardware":[{"name":"13\" Macbook Pro","url":"macbook-pro","categories":["mac","system","laptop"]},{"name":"Motorola Droid 2","url":"droid-2","categories":[]},{"name":"Radioshack 22-802 Auto-Ranging multimeter","url":"22-802","categories":[]},{"name":"Weller WES51","url":"wes51","categories":[]},{"name":"Leatherman Squirt E4","url":"squirt-e4","categories":[]},{"name":"Xeltek SuperPro 280U","url":"superpro-280u","categories":[]},{"name":"shift registers","url":"http://en.wikipedia.org/wiki/Shift_register \"The Wikipedia entry for shift registers.\"","categories":[]},{"name":"demultiplexers","url":"http://en.wikipedia.org/wiki/Multiplexer \"The Wikipedia entry for multiplexers\"","categories":[]},{"name":"RoHS","url":"http://en.wikipedia.org/wiki/Restriction_of_Hazardous_Substances_Directive \"The Wikipedia entry for RoHS.\"","categories":[]}],"software":[{"name":"OS X Snow Leopard","url":"mac-os-x"},{"name":"MacPorts","url":""},{"name":"Windows XP SP2","url":"windows-xp"},{"name":"Cygwin","url":""},{"name":"Makefile","url":"make"},{"name":"gcc","url":""},{"name":"scons","url":""},{"name":"emacs","url":""},{"name":"eshell","url":""},{"name":"Xcode","url":""},{"name":"Code::Blocks","url":"codeblocks"},{"name":"Visual Studio","url":"visual-studio"},{"name":"git","url":""},{"name":"svn","url":""},{"name":"Python","url":""},{"name":"PHP","url":""},{"name":"software art","url":"http://en.wikipedia.org/wiki/Software_art \"The Wikipedia entry for Software Art.\""},{"name":"jttoolkit","url":""},{"name":"OpenFrameworks","url":""},{"name":"Processing","url":""},{"name":"Cinder","url":""},{"name":"C++","url":"c-plusplus"},{"name":"wxWidgets","url":""}]}
{"layout":"post","title":"An interview with Kevin Kelly","slug":"kevin.kelly","person":"Kevin Kelly","summary":"Writer, co-founder of Wired","categories":["mac","writer","editor"],"date":"2011-05-16","hardware":[{"name":"Mac G5","url":"power-mac-g5","categories":[]},{"name":"Cinema screens","url":"cinema-display","categories":[]},{"name":"Mac Air","url":"macbook-air","categories":[]},{"name":"Wacom Graphire tablet","url":"graphire","categories":[]},{"name":"Transcend USB Card Reader","url":"p5","categories":[]},{"name":"Brock Microscope","url":"magiscope-70","categories":[]},{"name":"Bose Quite15","url":"quietcomfort-15","categories":[]},{"name":"Fenix AA LED flashlight","url":"l1d-ce","categories":[]},{"name":"Kindle","url":"http://www.amazon.com/kindle/","description":"A digital book reader.","categories":[]},{"name":"FX37","url":"lumix-dmc-fx37","categories":[]},{"name":"Logitech Wireless Presenter","url":"wireless-presenter-r400","categories":[]},{"name":"Garmin Nuvi 1300","url":"nuvi-1300","categories":[]},{"name":"Lumix FZ35","url":"lumix-dmc-fz35","categories":[]}],"software":[{"name":"Eudora","url":""},{"name":"Postbox","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"iTunes","url":""},{"name":"Lightroom","url":""},{"name":"Photoshop","url":""},{"name":"InDesign","url":""},{"name":"Bridge","url":""},{"name":"Word","url":""},{"name":"Powerpoint","url":""},{"name":"MarsEdit","url":""},{"name":"MovableType","url":"movable-type"},{"name":"EasyBatchPhoto","url":""},{"name":"Scrivener","url":""},{"name":"Evernote","url":""},{"name":"NoteBook","url":"notebook-mac"}]}
{"layout":"post","title":"An interview with Mark Jardine","slug":"mark.jardine","person":"Mark Jardine","summary":"Designer (Tapbots)","categories":["mac","designer","web","software"],"date":"2011-05-21","hardware":[{"name":"27\" Core i7 iMac","url":"imac","categories":["mac","system","desktop"]},{"name":"Apple Wireless Keyboard","url":"keyboard","categories":[]},{"name":"Magic Mouse","url":"http://www.apple.com/magicmouse","description":"A multi-touch mouse.","categories":[]},{"name":"Magic Trackpad","url":"http://www.apple.com/magictrackpad/","description":"A trackpad for desktop machines.","categories":[]},{"name":"24\" Apple LED Cinema Display","url":"cinema-display","categories":[]},{"name":"M-Audio Studiophile AV40's","url":"studiophile-av-40","categories":[]},{"name":"Lacie d2 Quadra","url":"d2-quadra","categories":[]},{"name":"Drobo","url":"http://drobo.com/Products/drobo.html","description":"A nice hardware-based backup system.","categories":[]},{"name":"Audio Technica AT2020 USB Condenser Mic","url":"at2020","categories":[]},{"name":"Microkorg XL","url":"http://www.korg.com/microkorgxl","description":"A MIDI keyboard.","categories":[]},{"name":"M-Audio Radium 61","url":"radium-61","categories":[]},{"name":"Boot Camp","url":"boot-camp","categories":[]},{"name":"Logitech MX1000","url":"mx-1000","categories":[]},{"name":"Creative Fatality USB Headset","url":"fata1ity-hs-1000","categories":[]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"11\" Macbook Air","url":"macbook-air","categories":["mac","system","laptop"]},{"name":"Tom Bihn Ristretto","url":"ristretto-ipad","categories":[]},{"name":"Shure SE530","url":"se530","categories":[]},{"name":"Sony PSP-Go","url":"psp-go","categories":[]},{"name":"Nintendo 3DS","url":"3ds","categories":[]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"Canon 5D Mark II","url":"eos-5d-mark-ii","categories":[]},{"name":"430ex","url":"speedlight-430ex","categories":[]},{"name":"580ex","url":"speedlight-580ex","categories":[]},{"name":"35mm 1.4L","url":"ef-35mm-f1.4l-usm","categories":[]},{"name":"50mm 1.2L","url":"ef-50mm-f1.2l-usm","categories":[]},{"name":"16-35 2.8L","url":"ef-16-35mm-f2.8l-ii-usm","categories":[]},{"name":"70-200mm 2.8L IS","url":"ef-70-200mm-f2.8l-is-usm","categories":[]},{"name":"Steadicam Merlin","url":"http://www.tiffen.com/handheldmerlin.html","description":"Slider hardware for recording steady video.","categories":[]},{"name":"indislider Pro","url":"indisliderpro","categories":[]}],"software":[{"name":"Mac OS X","url":"mac-os-x"},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"iCal","url":""},{"name":"Address Book","url":"address-book"},{"name":"Mail","url":""},{"name":"iChat","url":""},{"name":"Notational Velocity","url":"notational-velocity"},{"name":"SimpleNote","url":"simplenote-ios"},{"name":"Dropbox","url":""},{"name":"Twitter for Mac","url":"twitter-mac"},{"name":"iTunes","url":""},{"name":"Apple TV's","url":"apple-tv"},{"name":"Photoshop","url":""},{"name":"Illustrator","url":""},{"name":"Coda","url":""},{"name":"Espresso","url":""},{"name":"Textmate","url":""},{"name":"Transmit","url":""},{"name":"Final Cut Studio","url":"final-cut-studio"},{"name":"Aperture","url":""},{"name":"Logic","url":"logic-studio"},{"name":"Garageband","url":""}]}
{"layout":"post","title":"An interview with Tony Warriner","slug":"tony.warriner","person":"Tony Warriner","summary":"Game developer, co-founder (Revolution)","categories":["mac","developer","game"],"date":"2011-05-23","hardware":[{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"Windows 7","url":"windows-7","categories":[]},{"name":"Parallels","url":"parallels-desktop","categories":[]},{"name":"iPod touches","url":"ipod-touch","categories":["mac","music"]},{"name":"3G iPhone","url":"iphone-3g","categories":["mac","mobile","phone"]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"iPad 2","url":"http://www.apple.com/ipad/","description":"Apple's newer tablet device.","categories":["mac","mobile","tablet"]},{"name":"Nexus S","url":"http://www.google.com/nexus/","description":"An Android-based smart phone.","categories":[]},{"name":"PSP","url":"http://www.us.playstation.com/PSP","description":"Sony's portable gaming console.","categories":[]},{"name":"DS","url":"http://www.nintendo.com/ds/","description":"A portable gaming console.","categories":[]}],"software":[{"name":"XCode","url":""},{"name":"Visual Studio","url":"visual-studio"},{"name":"Photoshop","url":""},{"name":"Parallels","url":"parallels-desktop"},{"name":"Versions","url":""},{"name":"Tweetdeck","url":""},{"name":"MSN","url":"windows-live-messenger"},{"name":"Skype","url":""},{"name":"Ultraedit","url":""},{"name":"Filezilla","url":""},{"name":"Chrome","url":""},{"name":"Dropbox","url":""},{"name":"Dropbox","url":"dropbox-ios"},{"name":"WhatsApp","url":"whatsapp-ios"},{"name":"Foursquare","url":"foursquare-ios"},{"name":"TuneIn Radio","url":"tunein-radio-ios"},{"name":"WeatherPro","url":"weatherpro-ios"},{"name":"TweetBot","url":"tweetbot-ios"}]}
{"layout":"post","title":"An interview with Wiley Wiggins","slug":"wiley.wiggins","person":"Wiley Wiggins","summary":"Creative director, actor, animator, musician","categories":["mac","actor","musician","game","suit"],"date":"2011-05-28","hardware":[{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"Wacom Intuos","url":"intuos","categories":[]},{"name":"Presonus Firepod","url":"fp10","categories":[]},{"name":"M-Audio Axiom 25","url":"axiom-25","categories":[]},{"name":"Nord Lead 2","url":"http://www.vintagesynth.com/clavia/nord2.php","description":"A synthesizer.","categories":[]},{"name":"Macbook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Nintendo Wii","url":"wii","categories":[]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]}],"software":[{"name":"Final Cut Studio","url":"final-cut-studio"},{"name":"Logic Studio","url":"logic-studio"},{"name":"VDMX","url":""},{"name":"Motion","url":""},{"name":"Toon Boom Studio","url":"toon-boom-studio"},{"name":"Zwoptex","url":""},{"name":"Coda","url":""},{"name":"Photoshop","url":""},{"name":"Processing","url":""},{"name":"MpegStreamclip","url":"mpeg-streamclip"},{"name":"Quartz Composer","url":"quartz-composer"},{"name":"iTeleport","url":"iteleport-ios"},{"name":"iA writer","url":"ia-writer-ios"},{"name":"Blogsy","url":"blogsy-ios"}]}
{"layout":"post","title":"An interview with Ben Kamens","slug":"ben.kamens","person":"Ben Kamens","summary":"Lead developer (The Khan Academy)","categories":["mac","developer","web"],"date":"2011-05-30","hardware":[{"name":"MacBooks","url":"macbook","categories":["mac","system","laptop"]},{"name":"Cinema Display","url":"http://www.apple.com/displays/cinema/","description":"The LCD display line.","categories":[]},{"name":"Magic Trackpad","url":"http://www.apple.com/magictrackpad/","description":"A trackpad for desktop machines.","categories":[]},{"name":"rubber ducks and one monkey","url":"http://static.tumblr.com/9hgswys/CGplgazrc/ducks.jpg \"A photo of the duck army and monkey.\"","categories":[]}],"software":[{"name":"Quicksilver","url":""},{"name":"Terminal.app","url":"terminal"},{"name":"Chrome","url":""},{"name":"MacVim's","url":"macvim"},{"name":"HipChat","url":""},{"name":"Skype","url":""},{"name":"gmail/Google apps","url":"gmail"},{"name":"App Engine","url":"app-engine"},{"name":"Mercurial","url":""},{"name":"Kiln","url":""},{"name":"Git","url":""},{"name":"Github","url":""},{"name":"Firefox","url":""},{"name":"GTMetrix","url":""},{"name":"Netflix","url":""}]}
{"layout":"post","title":"An interview with Josh Myer","slug":"josh.myer","person":"Josh Myer","summary":"Analytics guy, idealist/hacker (BitTorrent, Applied Platonics)","categories":["mac","developer","software","hacker"],"date":"2011-06-06","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Cinema Display","url":"http://www.apple.com/displays/cinema/","description":"The LCD display line.","categories":[]},{"name":"Ergotron LCD Arm","url":"mx-lcd-arm","categories":[]},{"name":"network speed readings from a hundred million machines","url":"http://www.fastcompany.com/1728751/bittorrent-netflix-isp-report-card-sneak-peek-network-performance-data \"A Fast Company article on Bittorrent's ISP statistics.\"","categories":[]},{"name":"Lamy Safari EF","url":"safari-fountain-pen","categories":[]},{"name":"USBTinyISP","url":"http://www.ladyada.net/make/usbtinyisp/","description":"A USB programmer.","categories":[]},{"name":"Weller WES51","url":"wes51","categories":[]},{"name":"reflow","url":"http://www.youtube.com/watch?v=_5lksMvmqQc&amp;t=0m8s \"A YouTube video about soldering and skillet reflow.\"","categories":[]}],"software":[{"name":"Rdio","url":""},{"name":"Pinboard.in","url":"pinboard"},{"name":"emacs","url":""},{"name":"Aquamacs","url":""},{"name":"vim","url":""},{"name":"GNU R","url":"r"},{"name":"WEKA","url":""},{"name":"python","url":""},{"name":"perl","url":""},{"name":"awk","url":""},{"name":"sed","url":""},{"name":"Arduino IDE","url":"arduino"},{"name":"EAGLECad","url":"eagle"},{"name":"FreeRouting","url":""},{"name":"OpenOffice's","url":"openoffice"},{"name":"Gnumeric","url":""},{"name":"Simon Tatham's Puzzle Collection","url":"portable-puzzle-collection"}]}
{"layout":"post","title":"An interview with Jon Hicks","slug":"jon.hicks","person":"Jon Hicks","summary":"Designer, gentleman","categories":["mac","designer","web","software"],"date":"2011-06-08","hardware":[{"name":"Macbook Air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Apple Display","url":"cinema-display","categories":[]},{"name":"keyboard","url":"http://www.apple.com/keyboard/","description":"The slim keyboard for Macs.","categories":[]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]}],"software":[{"name":"Chrome","url":""},{"name":"Camino","url":""},{"name":"Dropbox","url":""},{"name":"Time Machine","url":"time-machine"},{"name":"Photoshop","url":""},{"name":"Acorn","url":""},{"name":"Opacity","url":""},{"name":"Adobe Illustrator CS5","url":"illustrator"},{"name":"Coda","url":""},{"name":"VMWare Fusion","url":"vmware-fusion"},{"name":"Windows XP","url":"windows-xp"},{"name":"7","url":"windows-7"},{"name":"Evernote","url":"evernote-mac"},{"name":"iPhone app","url":"evernote-ios"},{"name":"Alfred","url":""},{"name":"Quicksilver","url":""},{"name":"ColorSnapper","url":""},{"name":"a lifesaver for me","url":" http://hicksdesign.co.uk/journal/how-to-survive-as-a-colourblind-designer \"Jon's post on being a colour-blind designer.\""},{"name":"Skitch","url":""},{"name":"Reeder","url":""}]}
{"layout":"post","title":"An interview with Katie O'Shea","slug":"katie.o.shea","person":"Katie O'Shea","summary":"Barista, bike fanatic","categories":["coffee","biker"],"credits":{"name":"Matthew Staver"},"date":"2011-06-10","hardware":[{"name":"Synesso Hydra","url":"hydra","categories":[]},{"name":"Hario V60","url":"http://www.amazon.com/Hario-V60-Coffee-Server-14oz/dp/B003DAH9B2","description":"A coffee server.","categories":[]},{"name":"Chemex 6-cup glass woodneck","url":"chemex-6-cup","categories":[]},{"name":"Coava Kone","url":"kone","categories":[]},{"name":"Mazzer Robur E","url":"robur","categories":[]},{"name":"Mazzer Super Jolly","url":"super-jolly","categories":[]},{"name":"Rancilio Rocky","url":"rocky","categories":[]},{"name":"Red Rooster Camano","url":"camano","categories":[]},{"name":"Puch Olympia","url":"http://www.flickr.com/photos/katieshakes/3800421765/ \"A photo of Katie's bike (including frame","categories":[]},{"name":"Motobecane Mirage","url":"mirage","categories":[]}],"software":[{"name":"Black Cat Classic Espresso","url":"black-cat-classic"},{"name":"El Pino","url":"el-pino"},{"name":"La Tortuga Honduras","url":"la-tortuga"},{"name":"Brooks saddles","url":"http://www.brooksengland.com/en/Shop_Saddles.aspx \"Brooks' saddles.\""},{"name":"Sugino","url":"http://www.suginoltd.co.jp/ \"Sugino's website.\""},{"name":"Dia-Compe","url":"http://www.diacompe.co.jp/ \"Dia-Compe's website.\""}]}
{"layout":"post","title":"An interview with Jon Tan","slug":"jon.tan","person":"Jon Tan","summary":"Designer (Fontdeck, Mapalong, Brooklyn Beta)","categories":["mac","designer","web"],"credits":{"name":"Samantha Cliffe","url":"http://samanthacliffe.com/"},"date":"2011-06-13","hardware":[{"name":"15\" Macbook Pro","url":"macbook-pro","categories":["mac","system","laptop"]},{"name":"Time Capsule","url":"http://www.apple.com/timecapsule/","description":"A WiFi access point and backup system.","categories":[]},{"name":"Macbook Air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"Fuji X100","url":"finepix-x100","categories":[]}],"software":[{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Chrome","url":""},{"name":"Firefox","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Fluid","url":""},{"name":"Google Apps","url":"google-apps"},{"name":"Gmail","url":""},{"name":"Apple Mail","url":"mail"},{"name":"Notational Velocity","url":"notational-velocity"},{"name":"Simple Note","url":"simplenote-ios"},{"name":"black 0.38MM Muji gel-ink ballpoint","url":"gel-ink-0.38mm"},{"name":"black Faber-Castell Grip mechanical pencil","url":"grip-0.7mm"},{"name":"Lamy CP 1 fountain pen","url":"cp-1"},{"name":"Coda","url":""},{"name":"Fontcase","url":""},{"name":"Fireworks","url":""},{"name":"Google Docs","url":"google-docs"},{"name":"Keynote","url":""},{"name":"Aperture","url":""},{"name":"PTLens plugin","url":"ptlens"},{"name":"Flickr","url":"http://www.flickr.com/photos/jontangerine/ \"Jon's Flickr account.\""},{"name":"Instagram","url":"http://instagrid.me/jontan/ \"Jon's Instagram account.\""},{"name":"Spotify","url":""},{"name":"Airfoil","url":""},{"name":"Teuxdeux","url":""},{"name":"Dropbox","url":""},{"name":"Gimme Bar","url":"gimme-bar"},{"name":"Linkinus","url":""},{"name":"Skype","url":""},{"name":"TweetDeck","url":""},{"name":"analogcoop","url":"http://twitter.com/analogcoop \"The @analogcoop Twitter account.\""},{"name":"mapalong","url":"http://twitter.com/mapalong \"The @mapalong Twitter account.\""},{"name":"fontdeck","url":"http://twitter.com/fontdeck \"The @fontdeck Twitter account.\""},{"name":"mildbunch","url":"http://twitter.com/mildbunch \"The @mildbunch Twitter account.\""},{"name":"Tweetbot","url":"tweetbot-ios"},{"name":"Echofon","url":""}]}
{"layout":"post","title":"An interview with Nate Bolt","slug":"nate.bolt","person":"Nate Bolt","summary":"Researcher, designer (Beep Show, Ethnio)","categories":["mac","designer","writer","researcher"],"date":"2011-06-15","hardware":[{"name":"quad-core i7 MBP","url":"macbook-pro","categories":[]},{"name":"LED Cinema display","url":"cinema-display","categories":[]},{"name":"Mac Mini","url":"http://www.apple.com/macmini/","description":"The lil' Intel-based Mac.","categories":["mac","system","desktop"]},{"name":"iPads","url":"ipad","categories":["mac","mobile","tablet"]},{"name":"Canon 5D2","url":"eos-5d-mark-ii","categories":[]},{"name":"Slik Tripod","url":"sprint-pro-ii","categories":["mac","music"]},{"name":"Time Lapse Controller","url":"digital-timer-remote","categories":[]},{"name":"Tiffen Merlin Steadicam","url":"steadicam-merlin","categories":[]}],"software":[{"name":"Mail","url":""},{"name":"Gdocs","url":"google-docs"},{"name":"Adium","url":""},{"name":"Tweetdeck","url":""},{"name":"After Effects CS5","url":"after-effects"},{"name":"Photoshop CS5","url":"photoshop"},{"name":"Lightroom 3","url":"lightroom"},{"name":"iMovie","url":""},{"name":"Rdio","url":""},{"name":"Chrome","url":""},{"name":"AutoPano Pro","url":"autopano-pro"},{"name":"Instagram","url":"instagram-ios"},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone."},{"name":"Skype","url":"skype-ios"},{"name":"Drobo","url":"http://drobo.com/Products/drobo.html","description":"A nice hardware-based backup system."},{"name":"Mozy","url":""},{"name":"Dropbox","url":""}]}
{"layout":"post","title":"An interview with Thessaly La Force","slug":"thessaly.la.force","person":"Thessaly La Force","summary":"Writer, editor (The Paris Review)","categories":["mac","writer","editor"],"date":"2011-06-17","hardware":[{"name":"Macbook Air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Macbook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]},{"name":"Moleskines","url":"moleskine","categories":[]},{"name":"started watercoloring again","url":"http://www.flickr.com/photos/thessaly/5744107244/ \"A photo of one of Thessaly's paintings.\"","categories":[]}],"software":[{"name":"The Paris Review blog","url":"http://www.theparisreview.org/blog/ \"The Paris Review's weblog.\""},{"name":"Wordpress","url":""},{"name":"Word","url":""},{"name":"Tweetie","url":""},{"name":"Chrome","url":""},{"name":"gchat","url":"google-talk"},{"name":"Adobe Photoshop CS5","url":"photoshop"},{"name":"Lightroom","url":""},{"name":"InDesign","url":""},{"name":"The Ideal Bookshelf","url":"http://thessalylaforce.com/theidealbookshelf \"The page about the book Thessaly is working on.\""},{"name":"painting the bookshelves","url":"http://idealbookshelf.typepad.com/ \"Jane's paintings of bookshelves.\""},{"name":"Google Docs","url":"google-docs"},{"name":"Tumblr","url":""},{"name":"like Lynda Barry","url":"http://www.theparisreview.org/blog/2010/12/01/lynda-barry-on-picture-this/ \"An interview with Lynda Barry on The Paris Review.\""}]}
{"layout":"post","title":"An interview with r. stevens","slug":"r.stevens","person":"r. stevens","summary":"Cartoonist (Diesel Sweeties)","categories":["mac","artist"],"date":"2011-06-20","hardware":[{"name":"11\" Macbook Air","url":"macbook-air","categories":["mac","system","laptop"]},{"name":"Evoluent Vertical Mouse","url":"verticalmouse","categories":[]},{"name":"Cintiq","url":"http://wacom.com/cintiq/","description":"The computer screen you can draw on.","categories":[]},{"name":"Magic Trackpad","url":"http://www.apple.com/magictrackpad/","description":"A trackpad for desktop machines.","categories":[]},{"name":"keyboard","url":"http://www.apple.com/keyboard/","description":"The slim keyboard for Macs.","categories":[]},{"name":"ioSafe USB hard drives","url":"solo","categories":[]},{"name":"Technivorm Moccamaster","url":"moccamaster-kb-741","categories":[]}],"software":[{"name":"Photoshop","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Instapaper","url":""},{"name":"Adium","url":""},{"name":"Feeder","url":""},{"name":"Transmit","url":""},{"name":"Dropbox","url":""}]}
{"layout":"post","title":"An interview with Shawn Thorsson","slug":"shawn.thorsson","person":"Shawn Thorsson","summary":"Prop replica and costume hobbyist","categories":["windows","clothing","hacker"],"date":"2011-06-22","hardware":[{"name":"Mark One Mod Zero eyeball","url":"http://en.wikipedia.org/wiki/Visual_inspection \"The Wikipedia entry for visual inspection.\"","categories":[]}],"software":[{"name":"Pepakura","url":""},{"name":"Photoshop","url":""}]}
{"layout":"post","title":"An interview with James Freeman","slug":"james.freeman","person":"James Freeman","summary":"Founder, Blue Bottle Coffee","categories":["coffee","suit"],"date":"2011-06-24","hardware":[{"name":"San Marco Leva","url":"http://www.flickr.com/photos/niallkennedy/2214282137/ \"A photo of the Leva at Blue Bottle in Mint Plaza, SF.\"","categories":[]},{"name":"Bonmac dripper","url":"ceramic-dripper","categories":[]},{"name":"Kenaf filters","url":"http://store.bluebottlecoffee.net/detail.bok?no=97","description":"Coffee filters.","categories":[]},{"name":"AWS gram scale","url":"aws-scale","categories":[]},{"name":"Takahiro .5 liter kettle","url":"takahiro.5","categories":[]},{"name":"Porlex hand grinder","url":"porlex-grinder","categories":[]},{"name":"Macbook","url":"http://www.apple.com/macbook/","description":"The consumer Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]}],"software":[]}
{"layout":"post","title":"An interview with Pablo Barquín","slug":"pablo.barquin","person":"Pablo Barquín","summary":"Art director, motion graphics artist (Physalia)","categories":["windows","designer","film","hacker"],"date":"2011-06-27","hardware":[{"name":"Intuos","url":"http://www.wacom.com/intuos/","description":"A pen tablet.","categories":[]},{"name":"motion control system","url":"http://www.physaliastudio.com/motion-control.html \"Physalia's home-built motion control system.\"","categories":[]},{"name":"light box","url":"http://www.physaliastudio.com/lightbox.html \"Physalia's home-built light box.\"","categories":[]},{"name":"Arduinos","url":"arduino","categories":[]},{"name":"Parallax Propeller","url":"propeller","categories":[]}],"software":[{"name":"3dsMax","url":"3ds-max"},{"name":"After Effects","url":"after-effects"},{"name":"Maya","url":""},{"name":"Photoshop","url":""},{"name":"ZBrush","url":""},{"name":"Firefox","url":""},{"name":"Eagle","url":""},{"name":"Processing","url":""}]}
{"layout":"post","title":"An interview with Bob Sabiston","slug":"bob.sabiston","person":"Bob Sabiston","summary":"Developer, owner of Flat Black Films","categories":["mac","windows","developer","software","film"],"date":"2011-06-29","hardware":[{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"Intuos","url":"http://www.wacom.com/intuos/","description":"A pen tablet.","categories":[]},{"name":"Windows XP","url":"windows-xp","categories":[]},{"name":"Windows 7","url":"windows-7","categories":[]},{"name":"MacBook Air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"Kindle","url":"http://www.amazon.com/kindle/","description":"A digital book reader.","categories":[]}],"software":[{"name":"Xcode","url":""},{"name":"CodeWarrior","url":""},{"name":"Final Cut","url":"final-cut-pro"},{"name":"Illustrator","url":""},{"name":"Photoshop","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Firefox","url":""},{"name":"iWeb","url":""},{"name":"iTunes","url":""},{"name":"Mail","url":""},{"name":"Time Machine","url":"time-machine"},{"name":"Virtual II","url":"virtual-ii"}]}
{"layout":"post","title":"An interview with Jessamyn West","slug":"jessamyn.west","person":"Jessamyn West","summary":"Librarian, MetaFilter community manager","categories":["mac","writer","librarian","community"],"date":"2011-07-01","hardware":[{"name":"Macbook Air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"Ubuntu","url":"","categories":[]},{"name":"Toshiba Satellite","url":"satellite-110cs","categories":[]},{"name":"DG One","url":"dg-one","categories":[]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"Brother HL-2170W","url":"hl-2170w","categories":[]},{"name":"HP Photosmart 375","url":"photosmart-375","categories":[]},{"name":"neoprene Belkin sleeve","url":"neoprene-air","categories":[]},{"name":"this thing","url":"cushtop","categories":[]},{"name":"a good chair","url":"embody","categories":[]},{"name":"Sony Ericsson Z750","url":"z750i","categories":[]},{"name":"iPhone 3","url":"iphone-3g","categories":["mac","mobile","phone"]}],"software":[{"name":"Scrivener","url":""},{"name":"Taco HTML edit","url":"taco-html-edit"},{"name":"my own PowerPoint emulator","url":"http://www.librarian.net/stax/1286/presentations-without-powerpoint-how-i-do-it/ \"Jessaymn's web-based slides tool.\""},{"name":"Keynote","url":""},{"name":"WordPress","url":""},{"name":"Koha","url":""},{"name":"old versions","url":"http://lastyearsmodel.org/ \"'Saving the planet through sheer laziness.'\""},{"name":"Photoshop Elements 3","url":"photoshop-elements"},{"name":"iPhoto","url":""},{"name":"OpenOffice","url":""},{"name":"MS Office Suite","url":"office"},{"name":"Firefox","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Chrome","url":""},{"name":"MLKSHK","url":""},{"name":"Flickr","url":""},{"name":"Facebook","url":""},{"name":"trivia league","url":"http://www.learnedleague.com/ \"The LearnedLeague's site.\""},{"name":"Gmail","url":""},{"name":"Greasemonkey","url":""},{"name":"elm","url":""},{"name":"Adium","url":""},{"name":"delicious","url":""},{"name":"unalog","url":""},{"name":"pinboard","url":""},{"name":"NetNewsWire","url":""},{"name":"NatsuLion","url":"natsulion-ios"},{"name":"Syrinx","url":""},{"name":"Quicksilver","url":""},{"name":"Time Out","url":"time-out"},{"name":"Fugu","url":""},{"name":"Cyberduck","url":""},{"name":"Bhangra","url":""},{"name":"fake sticky note","url":"stickies"},{"name":"torrenting","url":"transmission"},{"name":"usenet","url":"easynews"}]}
{"layout":"post","title":"An interview with Laura Brunow Miner","slug":"laura.brunow.miner","person":"Laura Brunow Miner","summary":"Editor, designer, event inventor (Pictory, Phoot Camp)","categories":["mac","designer","editor"],"date":"2011-07-04","hardware":[{"name":"cinema display","url":"http://www.apple.com/displays/cinema/","description":"The LCD display line.","categories":[]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"Canon 5D Mark II","url":"eos-5d-mark-ii","categories":[]},{"name":"Lomo LC-A+","url":"lc-a-plus","categories":[]}],"software":[{"name":"Django","url":""},{"name":"Photoshop","url":""},{"name":"Lightroom","url":""},{"name":"Google Docs","url":"google-docs"},{"name":"blog","url":"http://pictoryblog.tumblr.com \"The Pictory blog.\""},{"name":"Tumblr","url":""},{"name":"InDesign","url":""},{"name":"Mint","url":""},{"name":"Doodle","url":""},{"name":"Facebook","url":""},{"name":"blog","url":"http://phootcamp.tumblr.com \"The Phoot Camp blog.\""},{"name":"Virb.com","url":"virb"},{"name":"Instagram","url":"instagram-ios"},{"name":"Kindle","url":"http://www.amazon.com/kindle/","description":"A digital book reader."},{"name":"This American Life","url":"this-american-life-ios"},{"name":"TED","url":"ted-ios"},{"name":"Rdio","url":"rdio-ios"},{"name":"Dog Park Finder","url":"dog-park-finder-ios"},{"name":"Things","url":""},{"name":"Adium","url":""},{"name":"Chrome","url":""},{"name":"Flickr","url":"http://www.flickr.com/photos/brunow/ \"Laura's photos on Flickr.\""},{"name":"Dribbble","url":"http://dribbble.com/lbm \"Laura's Dribbble account.\""},{"name":"Rdio.com","url":"rdio"}]}
{"layout":"post","title":"An interview with Horace Dediu","slug":"horace.dediu","person":"Horace Dediu","summary":"Writer, podcaster (Asymco, The Critical Path)","categories":["mac","writer","podcaster"],"date":"2011-07-06","hardware":[{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"Cinema display","url":"http://www.apple.com/displays/cinema/","description":"The LCD display line.","categories":[]},{"name":"keyboard","url":"http://www.apple.com/keyboard/","description":"The slim keyboard for Macs.","categories":[]},{"name":"Magic Mouse","url":"http://www.apple.com/magicmouse","description":"A multi-touch mouse.","categories":[]},{"name":"Magic Trackpad","url":"http://www.apple.com/magictrackpad/","description":"A trackpad for desktop machines.","categories":[]},{"name":"Time Capsule","url":"http://www.apple.com/timecapsule/","description":"A WiFi access point and backup system.","categories":[]},{"name":"Apple LaserWriter 12/640","url":"laserwriter-12-640","categories":[]},{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"3GS","url":"iphone-3gs","categories":[]},{"name":"4","url":"iphone-4","categories":[]},{"name":"iPad 2","url":"http://www.apple.com/ipad/","description":"Apple's newer tablet device.","categories":["mac","mobile","tablet"]},{"name":"Vonage","url":"","categories":[]},{"name":"Apple TV","url":"http://www.apple.com/appletv/","description":"The media station device.","categories":[]}],"software":[{"name":"Numbers","url":""},{"name":"Keynote","url":""},{"name":"Pages","url":""},{"name":"Wordpress","url":""},{"name":"Excel","url":""},{"name":"BBEdit","url":""},{"name":"Automator","url":""},{"name":"Xcode","url":""},{"name":"Twitter","url":"twitter-mac"},{"name":"iChat","url":""},{"name":"Skype","url":""},{"name":"iTunes","url":""},{"name":"MobileMe","url":"mobile-me"}]}
{"layout":"post","title":"An interview with David Sleight","slug":"david.sleight","person":"David Sleight","summary":"Creative director, web designer, tinkerer","categories":["mac","designer","web","interface"],"date":"2011-07-08","hardware":[{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"MacBook","url":"http://www.apple.com/macbook/","description":"The consumer Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPad 2","url":"http://www.apple.com/ipad/","description":"Apple's newer tablet device.","categories":["mac","mobile","tablet"]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"stuffed labbit","url":"stache-labbit-plush-7-inch","categories":[]}],"software":[{"name":"CS5 apps","url":"creative-suite"},{"name":"Omnigraffle Pro","url":"omnigraffle-pro"},{"name":"BBEdit","url":""},{"name":"Coda","url":""},{"name":"VMware Fusion","url":"vmware-fusion"},{"name":"Things","url":""},{"name":"iOS devices","url":"things-ios"},{"name":"Dropbox","url":""},{"name":"keep things in sync","url":"http://culturedcode.com/things/wiki/index.php/Syncing_Things_between_several_Macs_using_Dropbox \"An article on using DropBox to keep Things in sync.\""},{"name":"registration form","url":"https://www.dropbox.com/register \"The registration form for DropBox.\""}]}
{"layout":"post","title":"An interview with Gus Mueller","slug":"gus.mueller","person":"Gus Mueller","summary":"Founder, Flying Meat (VoodooPad, Acorn)","categories":["mac","developer","software"],"credits":{"name":"Steve Weller"},"date":"2011-07-20","hardware":[{"name":"Mac Pro","url":"http://www.apple.com/macpro/","description":"The Intel-based Mac tower computer.","categories":["mac","system","desktop"]},{"name":"Time Machine","url":"time-machine","categories":[]},{"name":"Cinema Display","url":"http://www.apple.com/displays/cinema/","description":"The LCD display line.","categories":[]},{"name":"Logitech MX518 mouse","url":"mx-518","categories":[]},{"name":"MS natural ergonomic keyboard","url":"natural-ergonomic-keyboard-4000","categories":[]},{"name":"Line 6 TonePort","url":"toneport-ux1","categories":[]},{"name":"Wacom Intuos","url":"intuos","categories":[]},{"name":"Wacom Cintiq","url":"cintiq","categories":[]},{"name":"GeekDesk","url":"http://www.geekdesk.com/default.asp?contentID=604","description":"An electronic, height-adjustable desk.","categories":[]},{"name":"iPads","url":"ipad","categories":["mac","mobile","tablet"]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]}],"software":[{"name":"Acorn","url":""},{"name":"VoodooPad","url":""},{"name":"Xcode","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Apple Mail","url":"mail"},{"name":"Colloquy","url":""},{"name":"iChat","url":""},{"name":"Twitter","url":"twitter-mac"},{"name":"JSTalk Editor","url":"jstalk"},{"name":"Coda","url":""},{"name":"Transmit","url":""},{"name":"BBEdit","url":""},{"name":"SubEthaEdit","url":""},{"name":"LaunchBar","url":""},{"name":"DropBox","url":""},{"name":"Backblaze","url":""},{"name":"rsync","url":""}]}
{"layout":"post","title":"An interview with Jonathan Foote","slug":"jonathan.foote","person":"Jonathan Foote","summary":"Recovering scientist","categories":["windows","linux","scientist","hacker","hardware","artist"],"date":"2011-07-22","hardware":[{"name":"Cygwin","url":"","categories":[]},{"name":"VirtualBox","url":"","categories":[]},{"name":"Ubuntu","url":"","categories":[]},{"name":"Logitech Marble Mouse","url":"marble-mouse","categories":[]},{"name":"Win7","url":"windows-7","categories":[]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]},{"name":"robotics","url":"http://wiki.orbswarm.com/index.php?title=Overview \"Information on the SWARM art work/robots.\"","categories":[]},{"name":"stand-alone art installations","url":"http://rotormind.com/projects/portfolio/Carr/ \"Information on an interactive LED lightwork by Jonathan.\"","categories":[]},{"name":"TS-7260","url":"http://www.embeddedarm.com/products/board-detail.php?product=TS-7260","description":"A single board embeddable computer.","categories":[]},{"name":"BeagleBoard","url":"http://beagleboard.org/","description":"An open development hardware board.","categories":[]},{"name":"Chumby","url":"http://www.chumby.com/","description":"A little device that runs Flash applications.","categories":[]},{"name":"Python","url":"","categories":[]},{"name":"OSC","url":"pyosc","categories":[]},{"name":"TouchOSC","url":"touchosc-ios","categories":[]},{"name":"Arduino","url":"http://arduino.cc/","description":"Open-source prototyping hardware.","categories":[]},{"name":"rotorboard","url":"http://www.flickr.com/photos/headrotor/3534845287/ \"A photo of the rotorboard.\"","categories":[]},{"name":"W51 soldering iron","url":"wes51","categories":[]},{"name":"Tektronix 4-channel scope","url":"tds2004b","categories":[]},{"name":"Fluke 179 DMM","url":"fluke-170","categories":[]},{"name":"these strippers","url":"se-94","categories":[]}],"software":[{"name":"1-bit microcontrollers","url":"m14500"},{"name":"brainfuck","url":""},{"name":"emacs","url":""},{"name":"awk","url":""},{"name":"grep","url":""},{"name":"sed","url":""},{"name":"bash","url":""},{"name":"C","url":""},{"name":"Objective C","url":"objective-c"},{"name":"Inkscape","url":""},{"name":"Blender","url":""},{"name":"Octave","url":""},{"name":"VisualSVN server","url":"visualsvn-server"},{"name":"svn","url":"subversion"},{"name":"TortoiseSVN","url":""},{"name":"EagleCAD","url":"eagle"},{"name":"Python","url":""},{"name":"fun and profit","url":"http://rotormind.com/projects/portfolio/rotorbryte/ \"Jonathan's GUI projects.\""},{"name":"wxFormBuilder","url":""},{"name":"wxPython","url":""},{"name":"One Minute Python","url":"http://www.oneminutepython.com/ \"A guide for creating Python applications.\""}]}
{"layout":"post","title":"An interview with John Resig","slug":"john.resig","person":"John Resig","summary":"Programmer (jQuery)","categories":["mac","windows","developer","web"],"credits":{"name":"Ben Alman","url":"http://www.flickr.com/photos/rj3/5635241487/"},"date":"2011-07-25","hardware":[{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"Macbook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Windows XP","url":"windows-xp","categories":[]},{"name":"Chromebook","url":"http://www.google.com/chromebook/","description":"A laptop built for only running Web apps.","categories":[]},{"name":"MacBook","url":"http://www.apple.com/macbook/","description":"The consumer Mac laptop.","categories":["mac","system","laptop"]},{"name":"Mac Minis","url":"mac-mini","categories":["mac","system","desktop"]},{"name":"BenQ W500","url":"w500","categories":[]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"iPad 2","url":"http://www.apple.com/ipad/","description":"Apple's newer tablet device.","categories":["mac","mobile","tablet"]},{"name":"Thecus N5200BR","url":"n5200","categories":[]},{"name":"Dropbox","url":"","categories":[]}],"software":[{"name":"Firefox","url":""},{"name":"Google Mail","url":"gmail"},{"name":"Calendar","url":"google-calendar"},{"name":"Google Docs","url":"google-docs"},{"name":"Keynote","url":""},{"name":"Textmate","url":""},{"name":"Skype","url":""},{"name":"IRSSI","url":""},{"name":"Gyazo","url":""},{"name":"Chrome","url":""},{"name":"vim","url":""},{"name":"vim config","url":"https://gist.github.com/955547 \"John's vim config.\""},{"name":"iTerm2","url":""},{"name":"Opera","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"VMWare Fusion","url":"vmware-fusion"},{"name":"IE","url":"internet-explorer"},{"name":"MAMP","url":""},{"name":"MySQL DB","url":"mysql"},{"name":"Git","url":""},{"name":"Github","url":""},{"name":"Dropbox","url":""},{"name":"Twitter","url":"twitter-ios"},{"name":"Foursquare","url":"foursquare-ios"},{"name":"Carcassonne","url":"carcassonne-ios"},{"name":"MassTransit","url":"masstransit-ios"},{"name":"Yelp","url":"yelp-ios"},{"name":"Facebook","url":"facebook-ios"},{"name":"iSSH","url":"issh-ios"},{"name":"VLC","url":""},{"name":"Boxee","url":""},{"name":"iTunes","url":""},{"name":"Netflix","url":""},{"name":"SABnzbd+","url":"sabnzbd-plus"},{"name":"Starcraft 2","url":"starcraft-2"},{"name":"Minecraft","url":""},{"name":"Words with Friends","url":"words-with-friends-ios"}]}
{"layout":"post","title":"An interview with Hilary Mason","slug":"hilary.mason","person":"Hilary Mason","summary":"Chief scientist (bitly)","categories":["mac","scientist","web"],"date":"2011-07-27","hardware":[{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"magic mouse","url":"http://www.apple.com/magicmouse","description":"A multi-touch mouse.","categories":[]},{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"MacBook air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"HTC Nexus One","url":"nexus-one","categories":[]}],"software":[{"name":"Chrome","url":""},{"name":"gmail","url":""},{"name":"Mail.app","url":"mail"},{"name":"Adium","url":""},{"name":"Evernote","url":""},{"name":"TextMate","url":""},{"name":"MacVim","url":""},{"name":"vim","url":""},{"name":"iterm2","url":"iterm2"},{"name":"Bash","url":""},{"name":"screen","url":""},{"name":"Python","url":""},{"name":"C","url":""},{"name":"R","url":""},{"name":"sed","url":""},{"name":"awk","url":""},{"name":"grep","url":""}]}
{"layout":"post","title":"An interview with Rebekah Cox","slug":"rebekah.cox","person":"Rebekah Cox","summary":"Product designer (Quora)","categories":["mac","designer","web"],"date":"2011-07-29","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Cinema display","url":"http://www.apple.com/displays/cinema/","description":"The LCD display line.","categories":[]},{"name":"keyboard","url":"http://www.apple.com/keyboard/","description":"The slim keyboard for Macs.","categories":[]},{"name":"mighty mouse","url":"http://www.apple.com/mightymouse/","description":"The wireless mouse with the nipple.","categories":[]}],"software":[{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Chrome","url":""},{"name":"Mail","url":""},{"name":"Adium","url":""},{"name":"Terminal","url":""},{"name":"TextWrangler","url":""},{"name":"BBEdit","url":""},{"name":"Vim","url":""},{"name":"Photoshop","url":""},{"name":"Python","url":""},{"name":"ExpanDrive","url":""}]}
{"layout":"post","title":"An interview with Ligaya Turmelle","slug":"ligaya.turmelle","person":"Ligaya Turmelle","summary":"MySQL DBA, PHP developer","categories":["mac","developer","software"],"credits":{"name":"Rob Allen","url":"http://www.flickr.com/photos/akrabat/5762478709/"},"date":"2011-08-01","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Alto Connect Notebook Stand","url":"alto-connect","categories":[]},{"name":"Natural Ergonomic keyboard","url":"natural-ergonomic-keyboard-4000","categories":[]},{"name":"Kindle","url":"http://www.amazon.com/kindle/","description":"A digital book reader.","categories":[]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]}],"software":[{"name":"Firefox","url":""},{"name":"Terminal","url":""},{"name":"VirtualBox","url":""},{"name":"Thunderbird","url":""},{"name":"xchat","url":""},{"name":"Adium","url":""},{"name":"iCal","url":""},{"name":"Skype","url":""},{"name":"N.A.D.D","url":"http://www.randsinrepose.com/archives/2003/07/10/nadd.html \"Rands' article on Nerd Attention Deficiency Disorder.\""},{"name":"Keynote","url":""},{"name":"shared shell","url":"shared-shell"},{"name":"vi","url":""},{"name":"MySQL","url":""}]}
{"layout":"post","title":"An interview with Cheryl Klein","slug":"cheryl.klein","person":"Cheryl Klein","summary":"Writer, book editor (Scholastic)","categories":["mac","writer","editor"],"date":"2011-08-03","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Kindle 3","url":"kindle","categories":[]},{"name":"Papermate Sharpwriter mechanical pencil","url":"sharpwriter","categories":[]},{"name":"Prismacolor Col-Erase colored pencils","url":"col-erase","categories":[]},{"name":"HTC Incredible 2","url":"incredible-2","categories":[]}],"software":[{"name":"Microsoft Word","url":"word"},{"name":"OpenOffice","url":""},{"name":"PowerPoint","url":""},{"name":"Blogger","url":""},{"name":"WordPress","url":""},{"name":"Chrome","url":""},{"name":"Firefox","url":""}]}
{"layout":"post","title":"An interview with Tom Armitage","slug":"tom.armitage","person":"Tom Armitage","summary":"Game designer, technologist (Hide and Seek)","categories":["mac","designer","developer","game","web"],"date":"2011-08-05","hardware":[{"name":"Macbook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Benq E2220HD","url":"e2220hd","categories":[]},{"name":"Dropbox","url":"","categories":[]},{"name":"Apple keyboard","url":"keyboard","categories":[]},{"name":"Logitech VX Nano","url":"vx-nano","categories":[]},{"name":"Wacom Bamboo","url":"bamboo","categories":[]},{"name":"Lightroom","url":"","categories":[]},{"name":"Lightroom","url":"","categories":[]},{"name":"Gmail","url":"","categories":[]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"iPhone 3G","url":"http://www.apple.com/iphone/iphone-3g/","description":"The 3G iPhone.","categories":["mac","mobile","phone"]},{"name":"Nikon D90","url":"d90","categories":[]},{"name":"PS3","url":"","categories":[]},{"name":"3DS","url":"http://www.nintendo.com/3ds/","description":"A portable gaming console with a 3D screen.","categories":[]},{"name":"Vita","url":"http://us.playstation.com/psvita/","description":"A portable gaming console.","categories":[]}],"software":[{"name":"OSX","url":"mac-os-x"},{"name":"NetNewsWire","url":""},{"name":"iTunes","url":""},{"name":"Textmate","url":""},{"name":"Office","url":""},{"name":"iWork","url":""},{"name":"Adium","url":""},{"name":"Twitter","url":""},{"name":"Mailplane","url":""},{"name":"MarsEdit","url":""},{"name":"MacVim","url":""},{"name":"Scrivener","url":""},{"name":"Lightroom","url":""},{"name":"Launchbar","url":""},{"name":"Quicksilver","url":""},{"name":"Superduper","url":""},{"name":"Bowtie","url":""},{"name":"Stay","url":""},{"name":"Dropbox","url":""},{"name":"Skitch","url":""},{"name":"Fantastical","url":""},{"name":"Things","url":""},{"name":"macports","url":""},{"name":"homebrew","url":""},{"name":"git","url":""},{"name":"github","url":""},{"name":"grep","url":""},{"name":"awk","url":""},{"name":"xargs","url":""},{"name":"curl","url":""},{"name":"wget","url":""},{"name":"less","url":""},{"name":"Ruby","url":""}]}
{"layout":"post","title":"An interview with Boone Speed","slug":"boone.speed","person":"Boone Speed","summary":"Photographer, climber","categories":["mac","photographer"],"date":"2011-08-08","hardware":[{"name":"5d2","url":"eos-5d-mark-ii","categories":[]},{"name":"7d","url":"eos-7d","categories":[]},{"name":"60d","url":"eos-60d","categories":[]},{"name":"24-70 2.8L","url":"ef-24-70mm-f2.8l-usm","categories":[]},{"name":"16-35 2.8 L II","url":"ef-16-35mm-f2.8l-ii-usm","categories":[]},{"name":"14mm 2.8","url":"ef-14mm-f2.8l-ii-usm","categories":[]},{"name":"24mm 1.4L II","url":"ef-24mm-f1.4l-ii-usm","categories":[]},{"name":"90mm 2.8 Tilt/Shift","url":"ts-e-90mm","categories":[]},{"name":"50mm 1.2L","url":"ef-50mm-f1.2l-usm","categories":[]},{"name":"17mm f4 Tilt Shift","url":"ts-e-17mm","categories":[]},{"name":"70-200 2.8L II","url":"ef-70-200mm-f2.8l-is-usm","categories":[]},{"name":"Lowepro CompuPrimus AW pack","url":"compuprimus-aw","categories":[]},{"name":"Profoto D1 500 Air","url":"d1-air-500","categories":[]},{"name":"Ikan 500 LED","url":"id-500","categories":[]},{"name":"Vagabond Mini batteries","url":"vagabond-mini","categories":[]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"Apple MBP 17\" i7","url":"macbook-pro","categories":[]},{"name":"Lacie eSATA drives","url":"little-big-disk","categories":[]},{"name":"cinema display","url":"http://www.apple.com/displays/cinema/","description":"The LCD display line.","categories":[]},{"name":"Drobo","url":"http://drobo.com/Products/drobo.html","description":"A nice hardware-based backup system.","categories":[]}],"software":[{"name":"Adobe Lightroom 3","url":"lightroom"},{"name":"Adobe CS5 suite","url":"creative-suite"},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"iCal","url":""},{"name":"Contacts","url":"address-book"},{"name":"Twitter","url":""},{"name":"Instagram","url":"instagram-ios"}]}
{"layout":"post","title":"An interview with Meg Pickard","slug":"meg.pickard","person":"Meg Pickard","summary":"Creative geek (The Guardian)","categories":["mac","writer"],"date":"2011-08-10","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Open Office","url":"openoffice","categories":[]},{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"magic trackpad","url":"http://www.apple.com/magictrackpad/","description":"A trackpad for desktop machines.","categories":[]},{"name":"DropBox","url":"","categories":[]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"Zoom H2 recorder","url":"h2-handy-recorder","categories":[]},{"name":"Nikon D70","url":"http://imaging.nikon.com/products/imaging/technology/archives/digitalcamera/slr/2004/d70/","description":"A 6.1 megapixel digital SLR camera.","categories":[]},{"name":"Vivitar Ultra Wide and Slim","url":"ultra-wide-and-slim","categories":[]},{"name":"Blackberry 8100","url":"pearl-8100","categories":[]}],"software":[{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Firefox","url":""},{"name":"iPhoto","url":""},{"name":"Lightroom","url":""},{"name":"Picasa","url":""},{"name":"Keynote","url":""},{"name":"Powerpoint","url":""},{"name":"Pages","url":""},{"name":"Cyberduck","url":""},{"name":"LittleSnitch","url":"little-snitch"},{"name":"EtreTask","url":""},{"name":"Twhirl","url":""}]}
{"layout":"post","title":"An interview with Amanda Wixted","slug":"amanda.wixted","person":"Amanda Wixted","summary":"iPhone game developer (FarmVille, PAC-MAN)","categories":["mac","developer","game"],"date":"2011-08-12","hardware":[{"name":"Macbook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Apple Cinema Display","url":"cinema-display","categories":[]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"Xcode","url":"","categories":[]},{"name":"Kindle app","url":"kindle-ios","categories":[]},{"name":"Words With Friends","url":"words-with-friends-ios","categories":[]},{"name":"MX 518","url":"http://www.logitech.com/en-gb/mice-pointers/mice/devices/4259","description":"An optical gaming mouse.","categories":[]},{"name":"keyboard","url":"http://www.apple.com/keyboard/","description":"The slim keyboard for Macs.","categories":[]},{"name":"Time Capsule","url":"http://www.apple.com/timecapsule/","description":"A WiFi access point and backup system.","categories":[]},{"name":"Boxee","url":"","categories":[]}],"software":[{"name":"Terminal","url":""},{"name":"TextWrangler","url":""},{"name":"vim","url":""},{"name":"Objective-C","url":"objective-c"},{"name":"git","url":""},{"name":"GitHub for Mac","url":"github-for-mac"},{"name":"Cocos2d","url":""},{"name":"python","url":""},{"name":"Harbor Master","url":"harbor-master-ios"},{"name":"Orbital","url":"orbital-ios"},{"name":"FarmVille","url":"farmville-ios"},{"name":"Strategery","url":"strategery-ios"},{"name":"Minecraft","url":""}]}
{"layout":"post","title":"An interview with Rich Siegel","slug":"rich.siegel","person":"Rich Siegel","summary":"Developer and co-founder, Bare Bones Software","categories":["mac","developer","software"],"date":"2011-08-15","hardware":[{"name":"Mac Pro","url":"http://www.apple.com/macpro/","description":"The Intel-based Mac tower computer.","categories":["mac","system","desktop"]},{"name":"VelociRaptors","url":"velociraptor","categories":[]},{"name":"2big Quadra","url":"http://www.lacie.com/us/products/product.htm?pid=11140","description":"A 2-bay RAID system.","categories":[]},{"name":"MacBook Air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Apple Cinema Display","url":"cinema-display","categories":[]},{"name":"DVI KVM","url":"2x1-dvikvm-dl","categories":[]},{"name":"Customizer 104","url":"http://pckeyboards.stores.yahoo.net/customizer.html","description":"A keyboard in the style of the old Model M keyboards.","categories":[]},{"name":"Razer Mamba","url":"mamba","categories":[]},{"name":"World of Warcraft","url":"wow","categories":[]},{"name":"Promise SmartStor DS4600","url":"smartstor-ds4600","categories":[]},{"name":"Time Machine","url":"time-machine","categories":[]},{"name":"Jura Capresso F9","url":"impressa-f9","categories":[]},{"name":"Coffee Exchange","url":"http://sustainablecoffee.com/ \"The Coffee Exchange's website.\"","categories":[]}],"software":[{"name":"C","url":""},{"name":"C++","url":"c-plusplus"},{"name":"Objective-C","url":"objective-c"},{"name":"Markdown","url":""},{"name":"Textile","url":""},{"name":"Google Chrome","url":"chrome"},{"name":"Yojimbo","url":""},{"name":"iPhoto","url":""},{"name":"NetNewsWire","url":""},{"name":"Twitterrific","url":""},{"name":"Take Five","url":"take-five"},{"name":"xScope","url":""},{"name":"Mailsmith","url":""},{"name":"SpamSieve","url":""},{"name":"iWork","url":""},{"name":"Microsoft Office","url":"office"},{"name":"SuperDuper!","url":"superduper"},{"name":"LaunchBar","url":""}]}
{"layout":"post","title":"An interview with Ruthie BenDor","slug":"ruthie.bendor","person":"Ruthie BenDor","summary":"Web designer/developer","categories":["mac","designer","developer","web","biker"],"date":"2011-08-17","hardware":[{"name":"MacBook Air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"SFBags Macbook Air Wallet","url":"macbook-air-wallet","categories":["mac","system","laptop"]},{"name":"Sierra Wireless 598U USB Modem","url":"598u","categories":[]},{"name":"Unlimited bandwidth, too","url":"http://www.millenicom.com/ \"Millenicom offers mobile broadband.\"","categories":[]},{"name":"iPhone 3GS","url":"http://www.apple.com/iphone/iphone-3gs/","description":"The iPhone with a 3 megapixel camera and video recording.","categories":["mac","mobile","phone"]},{"name":"Suntactics PC5","url":"scharger-5","categories":[]},{"name":"Koss KSC75","url":"ksc75","categories":[]},{"name":"Transcend StoreJet 320GB","url":"storejet-25","categories":[]},{"name":"Panasonic Lumix GF-2","url":"lumix-gf2","categories":[]},{"name":"Sony ECM-DS70P","url":"ecm-ds70p","categories":[]},{"name":"Olympus ME-52W","url":"me-52w","categories":[]},{"name":"Audio-Technica ATR-3350","url":"atr-3350","categories":[]},{"name":"this adapter","url":"km-iphone-mic2-ecm","categories":[]},{"name":"Square reader","url":"square","categories":[]},{"name":"Surly Cross-Check","url":"cross-check-complete","categories":[]},{"name":"Surly Long Haul Trucker","url":"long-haul-trucker-complete","categories":[]},{"name":"Schwalbe Marathon Supreme 28mm tires","url":"marathon-supreme-700x28","categories":[]},{"name":"Selle An-Atomica Titanico LD saddle","url":"titanico","categories":[]},{"name":"Shimano A530 SPD dual-platform pedals","url":"pd-a530","categories":[]},{"name":"Tubus Vega","url":"vega","categories":[]},{"name":"Ortlieb Back-Roller Pluses","url":"back-roller-plus","categories":[]},{"name":"Tubus Tara","url":"tara","categories":[]},{"name":"Ortlieb Front-Roller Pluses","url":"front-roller-plus","categories":[]},{"name":"Ortlieb Ultimate5 Plus","url":"ultimate5-plus","categories":[]},{"name":"VDO MC1.0","url":"mc1.0","categories":[]},{"name":"TiGr bike lock","url":"tigr","categories":[]}],"software":[{"name":"OSX 10.6","url":"mac-os-x"},{"name":"VirtualBox","url":""},{"name":"Windows XP","url":"windows-xp"},{"name":"Windows 7","url":"windows-7"},{"name":"MAMP Pro","url":"mamp-pro"},{"name":"Coda","url":""},{"name":"Transmit","url":""},{"name":"iTerm 2","url":"iterm2"},{"name":"Kaleidoscope","url":""},{"name":"Git","url":""},{"name":"Integrity","url":""},{"name":"ExpressionEngine","url":""},{"name":"Fireworks","url":""},{"name":"Illustrator","url":""},{"name":"Photoshop","url":""},{"name":"ImageOptim","url":""},{"name":"Notational Velocity","url":"notational-velocity"},{"name":"Word","url":""},{"name":"Excel","url":""},{"name":"Keynote","url":""},{"name":"Echofon","url":""},{"name":"Colloquy","url":""},{"name":"Skype","url":""},{"name":"iChat","url":""},{"name":"Dropbox","url":""},{"name":"Aperture","url":""},{"name":"VLC","url":""},{"name":"iMovie","url":""},{"name":"Levelator","url":"the-levelator"},{"name":"SoundBooth","url":""},{"name":"Audacity","url":""},{"name":"1Password","url":""}]}
{"layout":"post","title":"An interview with Crystal Beasley","slug":"crystal.beasley","person":"Crystal Beasley","summary":"User experience designer (Mozilla)","categories":["mac","designer","interface"],"date":"2011-08-19","hardware":[{"name":"MacBook Air","url":"http://www.apple.com/macbookair/","description":"The super-thin Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Apple keyboard","url":"keyboard","categories":[]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"exotic wood back","url":"http://cl.ly/2j3m0x2s1d190e1h0X2H \"A photo of Crystal's iPhone backing.\"","categories":[]},{"name":"Micron pens","url":"pigma-micron","categories":[]},{"name":"Copic markers","url":"sketch-marker","categories":[]},{"name":"fuzzy kitty","url":"http://cheezburger.com/ichc.crystal/lolz/View/3975193344 \"Crystal's own actual LOLCat.\"","categories":[]}],"software":[{"name":"Adium","url":""},{"name":"Colloquy","url":""},{"name":"CSSEdit","url":""},{"name":"Espresso","url":""},{"name":"Adobe Photoshop","url":"photoshop"},{"name":"Illustrator","url":""},{"name":"InDesign","url":""},{"name":"Cloud","url":"cloudapp"},{"name":"Firefox","url":""}]}
{"layout":"post","title":"An interview with Julieanne Smolinski","slug":"julieanne.smolinski","person":"Julieanne Smolinski","summary":"Freelance writer, editor","categories":["mac","windows","writer","editor"],"date":"2011-08-22","hardware":[{"name":"Mac Pro","url":"http://www.apple.com/macpro/","description":"The Intel-based Mac tower computer.","categories":["mac","system","desktop"]},{"name":"Blue Snowball mic","url":"snowball","categories":[]}],"software":[{"name":"Notepad","url":""},{"name":"Gmail","url":""},{"name":"CS5","url":"creative-suite"},{"name":"MSPaint","url":"paint"},{"name":"Twitter","url":""}]}
{"layout":"post","title":"An interview with Meghan Newell","slug":"meghan.newell","person":"Meghan Newell","summary":"Designer, animator, illustrator","categories":["mac","artist","designer"],"date":"2011-08-24","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Mac Pro","url":"http://www.apple.com/macpro/","description":"The Intel-based Mac tower computer.","categories":["mac","system","desktop"]},{"name":"WD Scorpio Blue","url":"scorpio-blue","categories":[]},{"name":"Drobo","url":"http://drobo.com/Products/drobo.html","description":"A nice hardware-based backup system.","categories":[]},{"name":"Scorpio Black","url":"http://www.wdc.com/en/products/products.aspx?id=130","description":"Hard drives for notebooks.","categories":[]},{"name":"Cinema Display","url":"http://www.apple.com/displays/cinema/","description":"The LCD display line.","categories":[]},{"name":"Intuos","url":"http://www.wacom.com/intuos/","description":"A pen tablet.","categories":[]},{"name":"Bamboo Touch/Pen","url":"bamboo","categories":[]},{"name":"CanoScan LiDe 9000","url":"canoscan-9000f","categories":[]},{"name":"Epson Stylus Photo R2000","url":"stylus-photo-r2000","categories":[]},{"name":"20D","url":"eos-20d","categories":[]},{"name":"24-70 mm","url":"ef-24-70mm-f2.8l-usm","categories":[]},{"name":"Panasonic GF1","url":"lumix-gf1","categories":[]},{"name":"TomBow ABT","url":"dual-brush-pen-abt","categories":[]},{"name":"Staedtler Mars Lumograph","url":"mars-lumograph","categories":[]},{"name":"Graphics 360","url":"http://www.amazon.com/Bienfang-316142-Graphics--17-Inch-Translucent/dp/B001KZH1R4/","description":"Translucent marker paper.","categories":[]},{"name":"Mission Cultural Center","url":"http://www.missionculturalcenter.org \"A cultural arts center in San Francisco.\"","categories":[]},{"name":"San Francisco Center for the Book","url":"http://sfcb.org/ \"A bookmaking art center in San Francisco.\"","categories":[]},{"name":"Kindle","url":"http://www.amazon.com/kindle/","description":"A digital book reader.","categories":[]}],"software":[{"name":"Photoshop","url":""},{"name":"Illustrator","url":""},{"name":"Cinema4d","url":"cinema-4d"},{"name":"After Effects","url":"after-effects"},{"name":"Flash","url":""},{"name":"Coda","url":""},{"name":"Chrome","url":""},{"name":"Firebug","url":""},{"name":"Transmit","url":""},{"name":"Adium","url":""},{"name":"Mail","url":""},{"name":"iCal","url":""},{"name":"Processing","url":""},{"name":"Python","url":""},{"name":"Suitcase Fusion 3","url":"suitcase-fusion"},{"name":"Linotype Font Explorer","url":"fontexplorer-x"}]}
{"layout":"post","title":"An interview with Fabian Pross","slug":"fabian.pross","person":"Fabian Pross","summary":"Technical director (Polynoid)","categories":["mac","windows","artist","film"],"date":"2011-08-26","hardware":[{"name":"Wacom Intous 4","url":"intuos","categories":[]},{"name":"Apple Cinema Display","url":"cinema-display","categories":[]},{"name":"Dell U 2410","url":"u2410","categories":["pc","system"]},{"name":"Canon EOS 500d","url":"eos-500d","categories":[]},{"name":"Goliath KackelDackel","url":"kackel-dackel","categories":[]},{"name":"IKEA Verner","url":"verner","categories":[]},{"name":"Burton Shooter Case","url":"shooter-case","categories":[]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]},{"name":"Palm Pixie Plus","url":"pixie-plus","categories":[]},{"name":"Macbook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Polynoid Vimeo","url":"http://vimeo.com/polynoid \"The Polynoid page on Vimeo.\"","categories":[]}],"software":[{"name":"Autodesk Softimage","url":"softimage"},{"name":"Royal Render","url":"royal-render"},{"name":"Eyeon Fusion","url":"fusion"},{"name":"Photoshop","url":""},{"name":"After Effects","url":"after-effects"},{"name":"Chrome","url":""},{"name":"Firefox","url":""},{"name":"Google Docs","url":"google-docs"},{"name":"Mac OS","url":"mac-os-x"},{"name":"Windows 7","url":"windows-7"},{"name":"Ubuntu 64","url":"ubuntu-server"}]}
{"layout":"post","title":"An interview with Nozlee Samadzadeh","slug":"nozlee.samadzadeh","person":"Nozlee Samadzadeh","summary":"Writer, editor, IA (Flat, The Morning News)","categories":["mac","windows","writer","editor"],"date":"2011-08-29","hardware":[{"name":"Alpine","url":"","categories":[]},{"name":"HP DV2419","url":"pavilion-dv2419us","categories":[]},{"name":"Antec USB-powered cooling pad","url":"notebook-cooler","categories":[]},{"name":"iPhone","url":"http://www.apple.com/iphone/","description":"C'mon, you know what this is.","categories":["mac","mobile","phone"]},{"name":"Power Mac G5","url":"http://en.wikipedia.org/wiki/Power_Mac_G5","description":"A desktop Mac with an IBM PowerPC G5 CPU.","categories":[]},{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"Toshiba Satellite","url":"satellite-l645d-s4100","categories":[]},{"name":"Dell Dimension 2400","url":"dimension-2400","categories":["pc","system"]},{"name":"iPads","url":"ipad","categories":["mac","mobile","tablet"]},{"name":"Netflix","url":"","categories":[]},{"name":"MUDDUS","url":"http://www.ikea.com/us/en/catalog/products/10160074","description":"A table with a folding drop-leaf.","categories":[]},{"name":"Saarinen Tulip chair","url":"tulip-chair","categories":[]},{"name":"Pilot","url":"precise-v5","categories":[]},{"name":"Bialetti Moka pots","url":"moka-express","categories":[]}],"software":[{"name":"Firefox","url":""},{"name":"Chrome","url":""},{"name":"Gmail/Gchat","url":"gmail"},{"name":"Twitter","url":"http://twitter.com/nzle \"Nozlee on Twitter.\""},{"name":"Stellar","url":""},{"name":"Rdio","url":""},{"name":"Google Docs","url":"google-docs"},{"name":"Artlog","url":""},{"name":"Notepad","url":""},{"name":"TextEdit","url":""},{"name":"Open Office","url":"openoffice"},{"name":"Kinja","url":""},{"name":"Google Reader","url":"google-reader"},{"name":"Greymatter","url":""},{"name":"Pitas","url":""},{"name":"Xanga","url":""},{"name":"Wordpress","url":""},{"name":"Tumblr","url":""},{"name":"ShakeItPhoto","url":"shakeitphoto-ios"},{"name":"Twitter for iPhone","url":"twitter-ios"},{"name":"How to Cook Everything","url":"how-to-cook-everything-ios"},{"name":"Words with Friends","url":"words-with-friends-ios"},{"name":"Kindle for iPhone","url":"kindle-ios"},{"name":"Exit Strategy NYC","url":"exit-strategy-nyc-ios"},{"name":"Rdio for iPhone","url":"rdio-ios"},{"name":"Recorder for iPhone","url":"recorder-ios"},{"name":"FMC","url":"free-menstrual-calendar-ios"},{"name":"Gourmet Live","url":"gourmet-live-ios"},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Adobe CS5","url":"creative-suite"},{"name":"Microsoft Excel","url":"excel"},{"name":"Basecamp","url":""},{"name":"Unfuddle","url":""},{"name":"Internet Explorer","url":"internet-explorer"},{"name":"BBEdit","url":""},{"name":"Terminal","url":""}]}
{"layout":"post","title":"An interview with Sirron Norris","slug":"sirron.norris","person":"Sirron Norris","summary":"Artist, animator","categories":["mac","artist"],"date":"2011-08-31","hardware":[{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"Wacom Cintiq","url":"cintiq","categories":[]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"SketchBook Pro","url":"sketchbook-pro-ios","categories":[]},{"name":"Apple TV","url":"http://www.apple.com/appletv/","description":"The media station device.","categories":[]}],"software":[{"name":"Photoshop CS4","url":"photoshop"},{"name":"Illustrator","url":""},{"name":"Pagemaker","url":""},{"name":"Cinema 4D","url":"cinema-4d"},{"name":"Unity 3D","url":"unity"},{"name":"Toon Boom","url":"toon-boom-studio"},{"name":"iMovie","url":""},{"name":"Word","url":""},{"name":"Excel","url":""},{"name":"Powerpoint","url":""}]}
{"layout":"post","title":"An interview with Misha Glouberman","slug":"misha.glouberman","person":"Misha Glouberman","summary":"Teacher, improviser","categories":["windows","teacher"],"credits":{"name":"Lee Towndrow"},"date":"2011-09-02","hardware":[{"name":"XP","url":"windows-xp","categories":[]},{"name":"Windows 7","url":"windows-7","categories":[]}],"software":[{"name":"FolderShare","url":""},{"name":"DropBox","url":""},{"name":"Thunderbird","url":""},{"name":"Autohotkey","url":""},{"name":"Gmail","url":""},{"name":"SpamAssassin","url":""},{"name":"fastmail.fm","url":"fastmail"},{"name":"ColdFusion","url":""},{"name":"MailChimp","url":""}]}
{"layout":"post","title":"An interview with Robin Hunicke","slug":"robin.hunicke","person":"Robin Hunicke","summary":"Game designer, producer, gardener (thatgamecompany)","categories":["windows","designer","game"],"date":"2011-09-05","hardware":[{"name":"2408 WFP","url":"2408wfp","categories":[]},{"name":"Journey","url":"","categories":[]},{"name":"Contour Roller Mouse Pro","url":"rollermouse-pro","categories":[]},{"name":"CA-2022R speakers","url":"ca-2022r","categories":[]},{"name":"Bose \"On-Ear\" headphones","url":"on-ear","categories":[]},{"name":"MDR-CD180's","url":"mdr-cd180","categories":[]},{"name":"Skype","url":"","categories":[]},{"name":"PS3","url":"ps3","categories":[]},{"name":"KDL-V40XBR1","url":"http://store.sony.com/webapp/wcs/stores/servlet/ProductDisplay?catalogId=10551&storeId=10151&langId=-1&partNumber=KDLV40XBR1","description":"A 40 inch LCD screen.","categories":[]},{"name":"SIXAXIS","url":"http://en.wikipedia.org/wiki/Sixaxis","description":"The original controller for the PS3.","categories":[]},{"name":"F-series Sony Vaio","url":"vaio-f-series","categories":[]},{"name":"Wii","url":"http://www.wii.com/","description":"A unique gaming console.","categories":[]},{"name":"PS2","url":"","categories":[]},{"name":"360 Elite","url":"xbox-360","categories":[]},{"name":"Specialized Roubaix Elite","url":"roubaix-elite","categories":[]},{"name":"Nikon D-700","url":"d700","categories":[]},{"name":"16-35mm f/4 VR","url":"af-s-nikkor-16-35mm-f4g-ed-vr","categories":[]},{"name":"50mm f/1.4","url":"af-nikkor-50mm-f1.4d","categories":[]},{"name":"TENORI-ON","url":"http://www.global.yamaha.com/tenori-on/index.html","description":"An awesome Japanese digital instrument.","categories":[]}],"software":[{"name":"Gmail","url":""},{"name":"Google Calendar","url":"google-calendar"},{"name":"Google Docs","url":"google-docs"},{"name":"Word","url":""},{"name":"Excel","url":""},{"name":"Perforce","url":""},{"name":"ProDG","url":""},{"name":"Notepad++","url":"notepad-plusplus"},{"name":"Maya","url":""},{"name":"rdio","url":""},{"name":"Wordpress","url":""},{"name":"Twitter","url":""},{"name":"Facebook","url":""},{"name":"Photoshop CS4","url":"photoshop"},{"name":"Instagram","url":"instagram-ios"},{"name":"Lightroom","url":""},{"name":"Epicurious","url":""}]}
{"layout":"post","title":"An interview with Kris Piotrowski","slug":"kris.piotrowski","person":"Kris Piotrowski","summary":"Creative director and co-founder (CAPY)","categories":["mac","windows","designer","game"],"date":"2011-09-07","hardware":[{"name":"13\" MacBook","url":"macbook","categories":["mac","system","laptop"]},{"name":"PS3","url":"","categories":[]},{"name":"Xbox 360","url":"http://www.xbox.com/en-US/hardware/","description":"A popular gaming console.","categories":[]},{"name":"Vita kits","url":"vita","categories":[]},{"name":"these little guys","url":"usb-retrobit-snes-pc-controller","categories":[]},{"name":"Grado SR80","url":"sr80i","categories":[]},{"name":"point this piece of hardware","url":"http://www.moretoyguns.com/mm5/merchant.mvc?Session_ID=fccb7a37f357f0de93c7d5165085ee6f&Screen=PROD&Store_Code=4T&Product_Code=23256-IM&Category_Code=cap101 \"A toy gun.\"","categories":[]}],"software":[{"name":"Google Docs","url":"google-docs"},{"name":"Photoshop","url":""},{"name":"Boot Camp","url":"boot-camp"},{"name":"Windows XP","url":"windows-xp"},{"name":"X-COM","url":"ufo-enemy-unknown"},{"name":"Wunderlist","url":""},{"name":"Tweetie","url":"twitter-mac"},{"name":"fart-based jokes","url":"http://twitter.com/#!/krispiotrowski/status/85371628472635394 \"Kris' tweet about his cat.\""},{"name":"Twitter","url":""},{"name":"Korg Monotron","url":"monotron"},{"name":"transform normal sounds into badass synths","url":"http://www.flickr.com/photos/51277380@N08/5278986148/ \"A photo of Kris making the audios.\""},{"name":"DOSBOX","url":""},{"name":"iTunes","url":""}]}
{"layout":"post","title":"An interview with Yusuke Endoh","slug":"yusuke.endoh","person":"Yusuke Endoh","summary":"Quine fan and software developer (Ruby)","categories":["linux","windows","developer","software"],"date":"2011-09-09","hardware":[{"name":"Thinkpad X60","url":"http://www.thinkwiki.org/wiki/Category:X60s","description":"A 12.1 inch PC laptop.","categories":["pc","system","laptop"]},{"name":"X200","url":"thinkpad-x200","categories":[]},{"name":"X24","url":"thinkpad-x24","categories":[]},{"name":"Kubuntu","url":"","categories":[]},{"name":"Debian","url":"","categories":[]},{"name":"OS X,","url":"mac-os-x","categories":[]}],"software":[{"name":"Ruby","url":""},{"name":"Kubuntu","url":""},{"name":"Debian","url":""},{"name":"vim","url":""},{"name":"kate","url":""},{"name":"git","url":""},{"name":"mlterm","url":""},{"name":"bash","url":""},{"name":"Google Chrome","url":"chrome"},{"name":"Gmail","url":""},{"name":"Github","url":""},{"name":"Project Euler","url":"http://projecteuler.net/ \"A series of mathematical and programming challenges.\""},{"name":"C","url":""},{"name":"Ocaml","url":""},{"name":"Haskell","url":""},{"name":"Scala","url":""},{"name":"emacs","url":""}]}
{"layout":"post","title":"An interview with Kevin Meredith","slug":"kevin.meredith","person":"Kevin 'Lomokev' Meredith","summary":"Photographer, teacher","categories":["mac","photographer"],"date":"2011-09-12","hardware":[{"name":"LC-A+s","url":"lc-a-plus","categories":[]},{"name":"Lomo LC-W","url":"lc-wide","categories":[]},{"name":"my slightly biased review","url":"http://lomokev.com/blog/lomo-lcw-review/ \"Kevin's review of the LC-Wide.\"","categories":[]},{"name":"Contax T2","url":"http://en.wikipedia.org/wiki/Contax#Contax_T-series_compact_cameras","description":"A compact film camera.","categories":[]},{"name":"Olympus Mju ii","url":"mju-ii","categories":[]},{"name":"Canon 5D","url":"eos-5d","categories":[]},{"name":"28mm - 70mm 2.8 L lens","url":"ef-28-70mm-f2.8l-usm","categories":[]},{"name":"50mm 1.4","url":"ef-50mm-f1.4-usm","categories":[]},{"name":"Mac Pro","url":"http://www.apple.com/macpro/","description":"The Intel-based Mac tower computer.","categories":["mac","system","desktop"]},{"name":"Caviar Black","url":"http://www.wdc.com/en/products/products.aspx?id=100","description":"An internal hard disk for desktop machines.","categories":[]},{"name":"Time Machine","url":"time-machine","categories":[]},{"name":"Drobo","url":"http://drobo.com/Products/drobo.html","description":"A nice hardware-based backup system.","categories":[]},{"name":"Crashplan","url":"","categories":[]},{"name":"Mozy","url":"","categories":[]},{"name":"Apple monitor","url":"cinema-display","categories":[]},{"name":"Magic Mouse","url":"http://www.apple.com/magicmouse","description":"A multi-touch mouse.","categories":[]},{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"Mac Mini","url":"http://www.apple.com/macmini/","description":"The lil' Intel-based Mac.","categories":["mac","system","desktop"]}],"software":[{"name":"Instagram","url":"instagram-ios"},{"name":"Everyday","url":"everyday-ios"},{"name":"Hipstamatic","url":"hipstamatic-ios"},{"name":"Evernote","url":"evernote-ios"},{"name":"DropBox","url":"dropbox-ios"},{"name":"Lightroom 3","url":"lightroom"},{"name":"Photoshop CS5","url":"photoshop"},{"name":"After Effects CS5","url":"after-effects"},{"name":"Keynote","url":""},{"name":"Pages","url":""},{"name":"Google Docs","url":"google-docs"},{"name":"Numbers","url":""},{"name":"Typinator","url":""},{"name":"JumpCut","url":""},{"name":"Skitch","url":""},{"name":"twitter.com","url":"twitter"},{"name":"mail.google.com","url":"gmail"},{"name":"delicious","url":""},{"name":"Firefox's","url":"firefox"},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Wordpress","url":""}]}
{"layout":"post","title":"An interview with Ed Hunsinger","slug":"ed.hunsinger","person":"Ed Hunsinger","summary":"Developer, blogger, fire artist","categories":["mac","developer","web","artist"],"date":"2011-09-14","hardware":[{"name":"Macbook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Sidekick","url":"http://www.sidekick.com/","description":"A popular line of smartphones.","categories":[]},{"name":"iPhone 4G","url":"iphone-4","categories":["mac","mobile","phone"]},{"name":"iPad 3G","url":"http://www.apple.com/ipad/","description":"Apple's tablet device (with 3G).","categories":["mac","mobile","tablet"]},{"name":"Canon S90","url":"powershot-s90","categories":[]},{"name":"Vmoda Vibe Duo","url":"vibe-duo","categories":[]},{"name":"Powermat","url":"http://www.powermat.com/","description":"Charging mats for electronic devices.","categories":[]},{"name":"Kensington Battery pack","url":"travel-battery-pack","categories":[]},{"name":"Pentax K10D","url":"k10d","categories":[]},{"name":"DA\\*16-50mm lens","url":"smc-da-16-50mm","categories":[]},{"name":"Garmin eTrex Vista HCx","url":"etrex-vista-hcx","categories":[]},{"name":"Skeletool","url":"http://www.leatherman.com/product/Skeletool","description":"A stainless steel multi-tool.","categories":[]},{"name":"Leatherman Charge","url":"charge-tti","categories":[]},{"name":"Viewsonic VX2239","url":"vx2233wm","categories":[]},{"name":"keyboard","url":"http://www.apple.com/keyboard/","description":"The slim keyboard for Macs.","categories":[]},{"name":"Logitech MX518 mouse","url":"mx-518","categories":[]},{"name":"Mac Mini","url":"http://www.apple.com/macmini/","description":"The lil' Intel-based Mac.","categories":["mac","system","desktop"]},{"name":"Airport Express","url":"http://www.apple.com/airportexpress/","description":"A small wireless access point.","categories":[]},{"name":"Griffin Evolve Wireless","url":"evolve","categories":[]},{"name":"Xbox 360","url":"http://www.xbox.com/en-US/hardware/","description":"A popular gaming console.","categories":[]},{"name":"Netgear N300","url":"n300","categories":[]}],"software":[{"name":"Firefox","url":""},{"name":"inbox","url":"gmail"},{"name":"Google Docs","url":"google-docs"},{"name":"TextMate","url":""},{"name":"1Password","url":""},{"name":"Lightroom","url":""},{"name":"my Flickr","url":"http://www.flickr.com/photos/edrabbit \"Ed's Flickr account.\""},{"name":"awesome Lightroom plugins","url":"http://regex.info/blog/lightroom-goodies \"A collection of plugins for Lightroom.\""},{"name":"Plex","url":""},{"name":"iTunes","url":""},{"name":"Remote App","url":"remote-ios"},{"name":"Syncopation","url":""},{"name":"Crashplan","url":""},{"name":"Wordpress","url":""}]}
{"layout":"post","title":"An interview with Rob Malda","slug":"rob.malda","person":"Rob Malda","summary":"Founder, Slashdot","categories":["mac","developer","web"],"date":"2011-09-16","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Drobo","url":"http://drobo.com/Products/drobo.html","description":"A nice hardware-based backup system.","categories":[]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"PS3","url":"","categories":[]},{"name":"XBox 360","url":"http://www.xbox.com/en-US/hardware/","description":"A popular gaming console.","categories":[]},{"name":"Xoom","url":"http://www.motorola.com/Consumers/US-EN/Consumer-Product-and-Services/Tablets/MOTOROLA-XOOM-with-WiFi-US-EN","description":"An Android-based tablet.","categories":[]},{"name":"Canon 5D Mark II","url":"eos-5d-mark-ii","categories":[]},{"name":"Apple screen","url":"cinema-display","categories":[]},{"name":"keyboard","url":"http://www.apple.com/keyboard/","description":"The slim keyboard for Macs.","categories":[]},{"name":"PodPro","url":"pod-pro","categories":[]},{"name":"Gibson SG","url":"sg-standard","categories":[]}],"software":[{"name":"Chrome","url":""},{"name":"Fluid","url":""},{"name":"Mail","url":"gmail"},{"name":"Google Reader","url":"google-reader"},{"name":"Google Docs","url":"google-docs"},{"name":"Jira","url":""},{"name":"Warcraft","url":"wow"},{"name":"Aperture","url":""},{"name":"Apple TV","url":"http://www.apple.com/appletv/","description":"The media station device."}]}
{"layout":"post","title":"An interview with Amy Jean Porter","slug":"amy.jean.porter","person":"Amy Jean Porter","summary":"Artist, friend to animals","categories":["mac","artist"],"date":"2011-09-19","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"The Awl","url":"http://www.theawl.com/tag/amy-jean-porter \"Amy's drawings on The Awl.\"","categories":[]},{"name":"20x200","url":"http://www.20x200.com/artists/amy-jean-porter.html \"Amy's profile on 20x200.\"","categories":[]}],"software":[{"name":"Photoshop","url":""},{"name":"GoLive","url":""},{"name":"InDesign","url":""},{"name":"Illustrator","url":""},{"name":"Gluekit","url":"http://www.gluekit.com/ \"Kathleen and Christopher make illustrations.\""},{"name":"Radiolab","url":"http://www.radiolab.org/ \"A radio show.\""}]}
{"layout":"post","title":"An interview with Matt Hammill","slug":"matt.hammill","person":"Matt Hammill","summary":"Artist, animator, game designer","categories":["windows","artist","designer","game"],"date":"2011-09-20","hardware":[{"name":"Dell Studio XPS laptop","url":"studio-xps-1647","categories":["pc","system"]},{"name":"I-Inc monitor","url":"if-281dpb","categories":[]},{"name":"Mustek A3 scanner","url":"scanexpress-a3-usb-1200-pro","categories":[]},{"name":"Intuos3","url":"intuos","categories":[]},{"name":"Alesis MultiMix 8 USB mixer","url":"multimix-8","categories":[]},{"name":"iPod Touches","url":"ipod-touch","categories":["mac","music"]},{"name":"iPad 1","url":"ipad","categories":["mac","mobile","tablet"]}],"software":[{"name":"Windows 7","url":"windows-7"},{"name":"Adobe CS2","url":"creative-suite"},{"name":"Photoshop","url":""},{"name":"After Effects","url":"after-effects"},{"name":"Toon Boom Studio 4.5","url":"toon-boom-studio"},{"name":"Adventure Game Studio","url":"adventure-game-studio"},{"name":"Windows XP","url":"windows-xp"},{"name":"Cubase LE","url":"cubase-le"},{"name":"Chrome","url":""},{"name":"Open Office","url":"openoffice"},{"name":"Google Docs","url":"google-docs"},{"name":"Twhirl","url":""}]}
{"layout":"post","title":"An interview with Chris Slowe","slug":"chris.slowe","person":"Chris Slowe","summary":"Chief scientist (Hipmunk)","categories":["mac","scientist","software"],"date":"2011-09-23","hardware":[{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"Macbook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Mac Mini","url":"http://www.apple.com/macmini/","description":"The lil' Intel-based Mac.","categories":["mac","system","desktop"]},{"name":"EC2","url":"","categories":[]},{"name":"Ubuntu","url":"","categories":[]}],"software":[{"name":"Python","url":""},{"name":"Tornado","url":""},{"name":"HAProxy","url":""},{"name":"MongoDB","url":""},{"name":"Mako","url":""},{"name":"CoffeeScript","url":""},{"name":"Sass","url":""},{"name":"Emacs","url":""},{"name":"Terminal","url":""},{"name":"Chrome","url":""},{"name":"Steam","url":""},{"name":"VMware","url":"vmware-fusion"},{"name":"Firefox","url":""}]}
{"layout":"post","title":"An interview with Seb Chan","slug":"seb.chan","person":"Seb Chan","summary":"Head of Digital, Powerhouse Museum","categories":["mac","technologist","musician"],"credits":{"name":"Halans","url":"http://www.flickr.com/photos/halans/4628165196/"},"date":"2011-09-25","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Spinny Bar Historical Society","url":"http://www.spinnybarhistoricalsociety.org/ \"The society protecting the world's spinny bars.\"","categories":[]},{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"AiAiAi pipes","url":"pipe-earphones","categories":[]},{"name":"Audio Technica ATH-NC7b","url":"ath-anc7b","categories":[]},{"name":"Celestion SL6 speakers","url":"sl6","categories":[]},{"name":"Denon PMA1315R amplifier","url":"pma-1315r","categories":[]},{"name":"Logitech Squeezebox","url":"squeezebox","categories":[]},{"name":"Technics SL1200","url":"sl-1200","categories":[]},{"name":"M-Audio Firewire Audiophile","url":"firewire-audiophile","categories":[]},{"name":"X-Session Pro","url":"http://www.m-audio.com/products/en_us/XSessionPro.html","description":"A USB MIDI conrtoller.","categories":[]}],"software":[{"name":"Lion","url":"mac-os-x"},{"name":"Textmate","url":""},{"name":"Scrivener","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Chrome","url":""},{"name":"Firefox","url":""},{"name":"Wordpress","url":""},{"name":"Twitter","url":""},{"name":"Bit.ly","url":"bitly"},{"name":"Google Analytics","url":"google-analytics"},{"name":"Flurry","url":""},{"name":"Reinvigorate","url":""},{"name":"Mail.app","url":"mail"},{"name":"Keynote","url":""},{"name":"Little Snapper","url":"littlesnapper"},{"name":"Handbrake","url":""},{"name":"VLC","url":""},{"name":"Instapaper","url":""},{"name":"Tweetdeck","url":"tweetdeck-ios"},{"name":"Instagram","url":"instagram-ios"},{"name":"Traktor Pro 2","url":"traktor-pro"},{"name":"iTunes","url":""},{"name":"Jungle Disk","url":"jungle-disk"},{"name":"Steam","url":""},{"name":"Power64","url":""},{"name":"Vice","url":""}]}
{"layout":"post","title":"An interview with Geof Morris","slug":"geof.morris","person":"Geof Morris","summary":"Aerospace and systems engineer","categories":["mac","engineer","space"],"date":"2011-09-28","hardware":[{"name":"iMac","url":"http://www.apple.com/imac/","description":"The all-in-one Mac.","categories":["mac","system","desktop"]},{"name":"OS X Lion","url":"mac-os-x","categories":[]},{"name":"keyboard","url":"http://www.apple.com/keyboard/","description":"The slim keyboard for Macs.","categories":[]},{"name":"trackpad","url":"magic-trackpad","categories":[]},{"name":"Kensington Expert Mouse","url":"expert-mouse","categories":[]},{"name":"Mac mini","url":"http://www.apple.com/macmini/","description":"The lil' Intel-based Mac.","categories":["mac","system","desktop"]},{"name":"Drobo","url":"http://drobo.com/Products/drobo.html","description":"A nice hardware-based backup system.","categories":[]},{"name":"iPad","url":"http://www.apple.com/ipad/","description":"Apple's tablet device.","categories":["mac","mobile","tablet"]},{"name":"iPhone 4","url":"http://www.apple.com/iphone/","description":"A popular, shiny smartphone.","categories":["mac","mobile","phone"]},{"name":"Canon EOS-5D Mk II","url":"eos-5d-mark-ii","categories":[]},{"name":"EOS-10D","url":"eos-10d","categories":[]},{"name":"to be sure","url":"http://www.flickr.com/photos/gfmorris/ \"Geof's Flickr account.\"","categories":[]},{"name":"f/2.8 28mm","url":"ef-28mm-f2.8","categories":[]},{"name":"f/1.4 50mm USM","url":"ef-50mm-f1.4-usm","categories":[]},{"name":"f/1.8 85mm","url":"ef-85mm-f1.8-usm","categories":[]},{"name":"f/2.8 100mm USM","url":"ef-100mm-f2.8l-is-usm","categories":[]},{"name":"f/2.8 135mm","url":"ef-135mm-f2.8-softfocus","categories":[]},{"name":"what I was rocking back in early 2010","url":"http://geofstop.com/2010/03/my-recording-rig-early-2010/ \"Geof's post on what he used for recording in 2010.\"","categories":[]},{"name":"how we got into this mess in the first place","url":"https://twitter.com/#!/gfmorris/status/98514896668459008 \"The tweet that sparked this interview.\"","categories":[]}],"software":[{"name":"SuperDuper!","url":"superduper"},{"name":"Time Machine","url":"time-machine"},{"name":"CrashPlan's","url":"crashplan"},{"name":"Mail","url":""},{"name":"Safari","url":"http://www.lamy.com/eng/b2c/safari/017","description":"A fountain pen."},{"name":"Twitterrific","url":""},{"name":"OmniFocus","url":""},{"name":"OmniOutliner","url":""},{"name":"Aperture","url":""},{"name":"Acorn","url":""},{"name":"Yojimbo","url":""},{"name":"iCal","url":""},{"name":"iTunes","url":""},{"name":"radio-style setup here at home","url":"http://gfmorris.com/2011/01/06/my-itunes-smart-playlists-c-2011/ \"Geof's Smart Playlist tricks.\""}]}
{"layout":"post","title":"An interview with Drew Conway","slug":"drew.conway","person":"Drew Conway","summary":"PhD researcher (terrorism, maths, stats, machine learning)","categories":["mac","linux","scientist","data","politics"],"date":"2011-09-30","hardware":[{"name":"MacBook Pro","url":"http://www.apple.com/macbookpro/","description":"The popular Intel-based Mac laptop.","categories":["mac","system","laptop"]},{"name":"Ubuntu","url":"","categories":[]}],"software":[{"name":"Sparrow","url":""},{"name":"Chrome","url":""},{"name":"Echofon","url":""},{"name":"TextMate","url":""},{"name":"Emacs","url":""},{"name":"MarsEdit","url":""},{"name":"Python","url":""},{"name":"R","url":""},{"name":"ipython","url":""},{"name":"RStudio","url":""},{"name":"LaTeX","url":""},{"name":"OpenOffice","url":""}]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment