NEW: For a prettier blog interface, see the Wordpress version!
Headlines for Thursday:
- From elsewhere: Linux: a social experiment 00:14
- Secret Santa exchanges the Web way 00:42
- Squidoo now on public beta 00:58
- To write well, one must have leisure 01:47
- Two years ago 01:55
- Ruby: Turn bash.org quotes into a fortune file 18:27
Tasks
| A | X | Study chapter 7: memory and training (mie1407f) |
| A | X | Study chapter 8 (mie1407f) |
| A | C | Compare tagging and faceted hierarchies (research) |
Notes
1. From elsewhere: Linux: a social experiment
Would be tempted to do something similar if I also had a stack of Ubuntu CDs.
Or--evil thought!--sneak into Microsoft dev event with button that reads "Ask me about what I geek out about" and a bag full of Ubuntu CDs... ;)
(Convert the world one geek at a time! ;) )
On Technorati: linux, open source, advocacy
2. Secret Santa exchanges the Web way
Incidentally, the organizer can rig it. I didn't, though. ;) It would be fun to have it randomized. Of course, nothing's stopping us from writing letters for _everyone_, if we feel particularly diligent... =)
Check out Elfster and set up your Secret Santa gift exchange soon!
On Technorati: christmas, barkada, friendship
3. Squidoo now on public beta
I'm personally a little underwhelmed, although I can see how something like this might be useful for all the niche site probloggers who don't have their own server/space or who want to take advantage of extra visibility through squidoo, although I'm not sure how much better that would be compared to, say, making a new website that's indexed by Google.
On Technorati: web2.0, web 2.0, squidoo, social, social computing
4. To write well, one must have leisure
One of the reasons I want to figure out how to retire early or enjoy great work-life balance. =)
Discovered via a comment left by purpleslurpee on charlesatan's essay on writer's block.
5. Two years ago
For the record, I'm _soooooooooooooooooooooooooooooooo_ glad that I got into Linux. =)
6. Ruby: Turn bash.org quotes into a fortune file
bash-org-to-fortune.rb:
require 'rss/1.0'
require 'cgi'
require 'net/http'
host = Net::HTTP.new('bash.org', 80)
if ARGV[0] then
resp, data = host.get('http://bash.org/xml/?top&below=' + ARGV[0], nil)
else
resp, data = host.get('http://bash.org/xml/?top', nil)
end
parsed = RSS::Parser.parse(data, false)
parsed.items.each { |x| puts CGI::unescapeHTML(x.description.gsub('<br />', "\n")); puts "%\n" }
Call like this:
ruby bash-org-to-fortune.rb > bash; strfile bash; fortune bash # or to get the top quotes with score < 1000 ruby bash-org-to-fortune.rb 1000 > bash; strfile bash; fortune bash
On Technorati: ruby, code, programming
I'd love to hear about any questions, comments, suggestions or links that you might have. Your comments will not be posted on this website immediately, but will be e-mailed to me first. You can use this form to get in touch with me, or e-mail me at sacha@sachachua.com .