“My practice is rooted in minimalism. If someone’s really trying to get something across to someone else, it’s about simplification. Even more than simplification, it’s about rejecting anything nonessential. Edit ruthlessly.”– One on One: Andrew Zuckerman (via Instapaper)
Pinboard
Yahoo! are shutting down del.icio.us, ending their careless stewardship of a once-great service.
If you’re still using the bookmarking service, I recommend jumping ship to Pinboard. It will happily import all your del.icio.us bookmarks, and works very much like del.icio.us used to, minus the social aspects.
That’s exactly what I am going to do. I was never really happy with delicious, apart from the fact that I have my bookmarks with me wherever I have an internet connection. Pinboard looks promising and I have looked at it several times now, but never switched (probably due to lazyness and delicious somehow “doing the job”). I guess now’s the right time to finally do it.
Can you make Govt data creative? - Nightline - Video - 3 News
Mix and Mash winner entries. On TV. :-)
“Why Ruby?” - RubyConf X Keynote (by David Heinemeier Hansson)
Great talk. Good points and entertaining.
“–I believe:
”
- The user interface should drive design decisions because it’s the only thing that customers can see.
- New insights appear at any stage of a project, so the development process should optimize for change.
- UI is software, so designers should know how to program.
- Programmers and designers collaborate better when they work in parallel on a shared code base.
Ryan Singer - Software and User Interface Design
Spot-on!
Marco.org: My Default.png dilemma
More inspiring Instapaper development insights…
Instapaper Blog: Instapaper 2.3 for iPhone and iPad now available
Great update for one of my favorite iPad apps, including a new feature I have been waiting for (length & progress indicators). But what really strikes me with this update and blog post, is to see how much thought goes into Instapaper’s features and Marco’s attention to detail.
Just look at the section about the new automatic dark mode preference:
You can now have Instapaper automatically use dark mode at night and normal (light) mode during the day.
But how, exactly, do you define “night”? There’s no API access to the iPhone’s ambient light sensor, so I can’t just enable dark mode in dark rooms.
And I can’t just define hour boundaries, because 8 PM in December is much darker than 8 PM in June.
And I can’t just look at hours and the date, because 5 PM in December is much darker in Alaska than in Costa Rica.
So I used with the most reliable method I could think of: sunset times in your location. Yes, Instapaper is now location-aware, but only for this feature.
I love this.
For example, he could have presented that slot-machine-ish control to the user to set the time range when it’s dark. He didn’t and I think that’s awesome, because it makes it almost effortless for the user to use the feature. And it’s very clever.
5v3n's opinion on the GF2
Sven’s comment and question after giving his opinion to my GF2 quote post:
And: you need a comment system, Daniel ;-)! Reblogging seems a bit heavy for leaving comments to me.
Doesn’t toto with karakuri look tempting to you?
toto and karakuri do look interesting but not really tempting at the moment. It’s just gives me more stuff to fiddle around with. While I like that, it just prevents me from focusing on the actual purpose of a blog. Tumblr just feels right for me.
Concerning comments, I think this post (not mine) sums it up nicely:
The reblog function allows some sort of commentary but also puts a cost on the commenter. I can reblog somebody’s comment, but my response now goes on my tumblelog with all the other things I put there. If I have something valuable to add, I will add it. If all I have is something stupid ([…]) I won’t bother leaving a comment. It is sort of like a comment—but I have to have it on my tumbelog for everybody to read. By increasing the cost of leaving a comment, reblogging eliminates comments left by people who know they are stupid.
However, I agree that it sometimes is a bit heavy to reblog for a comment. But if you follow me on tumblr, you can leave a reply via the dashboard, which will then show up in the notes.
“My dream camera is something whittled down to the essence of an M9, but in a smaller package and at 1/10 of the price. The GF1 was the closest we’ve gotten thus far, and while the GF2 has simplified things, it’s not simplicity in the direction I was hoping for.”–
Initial thoughts on the GF2 announcement — Satellite — Craig Mod
That’s pretty much what I am after as well. I think a Leica M9 is an incredible sexy and capable camera (without ever having used one) and the only full-frame camera I’d be interested in. But financially it’s just so out of reach.
I pretty much agree with his first impressions of the recently announced GF2. I think I will still rather get a GF1 for a lower price instead. The new features of the GF2 are just not compelling enough. And getting the latest and greatest is just a waste of money anyway.
Divide Your Attention – Say No To Others, Say No To Yourself
The only way I can focus on my craft and my art is if I don’t constantly dilute it.
Lots to learn from in this excellent post from Randy Murray about the importance of saying “no”: This has been a hard lesson for me to learn (and I’m still learning). More often than not, it is the most compassionate answer one can give. Remembering this bit helps:
The key to saying no successfully is to understand that you are not saying no to everything, you are saying yes to those things you want.
So, so, good. Seriously, if you read nothing else today, read this.
I, agree. But I find the first part of this series even better. Here’s the key passage (at least for me):
If I try to multitask I find that I get absolutely nothing done. It’s only when I can select a specific project and turn off everything else and still the noise of other projects and demands that I can make progress. But the second part of what makes it work is this: I don’t have to focus on one thing exclusively all day long.
I’ve found that if I have specific, short deliverables or milestones I can move a project to a certain state, then take a break and shift to a different project and give it my focus. I am dividing my attention, but I’m dividing it into periods of hours, not minutes or seconds. From the perspective at the end of the day I’ve worked on many tasks and I’ve accomplished a great deal. From the perspective of the hour, I’m laser focused on just one thing. Those who attempt to shift their focus more quickly, from minute to minute, are fooling themselves. It is exhausting and counterproductive.
Dan Benjamin interviewed [Marco Arment] on The Pipeline
I’m honored to be a guest on one of my favorite podcasts, produced and hosted by the incredibly professional Dan Benjamin.
40 minutes of interesting, insightful talk. Highly recommended!
New Twitter has Gist Support!
This is just too awesome.
/via Yehuda Katz
Instapaper Blog: Article limit calculation fix
Prior to last week, the limit was improperly calculated: articles in folders weren’t being counted. I fixed the bug so that up to 250 articles were downloaded from the Read Later folder, and the other folders were downloaded in order, as long as there were any slots left, until it hit 250.
And then I got a deluge of email.
My email was one of them.
Great to see an explanation for this.
Ruby/ProgressBar: A Text Progress Bar Library for Ruby
This nice little Ruby library/gem/plugin is a great helper when you need to execute long running tasks from the terminal.
As the name suggests, it displays the progress of the task and even gives you an ETA for when it thinks it will be done.
Check their examples:
% irb --simple-prompt -r progressbar
>> pbar = ProgressBar.new("test", 100)
=> (ProgressBar: 0/100)
>> 100.times {sleep(0.1); pbar.inc}; pbar.finish
test: 100% |oooooooooooooooooooooooooooooooooooooooo| Time: 00:00:10
=> nil
>> pbar = ProgressBar.new("test", 100)
=> (ProgressBar: 0/100)
>> (1..100).each{|x| sleep(0.1); pbar.set(x)}; pbar.finish
test: 67% |oooooooooooooooooooooooooo | ETA: 00:00:03
I used it a lot for rake tasks that convert/import/export tons of data.
“[…] if you like to shoot RAW and you’re only interested in some casual video usage, and want DSLR image quality in a much more pocketable size, you’re going to love the GF1. The GF1 somehow is better than just the sum of its parts, using it is a blast, and especially with the 20mm f/1.7 attached, there’s little reason to not carry it with you everywhere. As such, for photographers (especially enthusiasts) looking for the best compact sized mirrorless camera, the GF1 isn’t just “Highly Recommended”, it’s “Essential”.”–
Panasonic Lumix DMC-GF1 In Depth Review | neutralday
Sounds great to me!
