Category Archives: Computers

Planned One Laptop Per Child Tablet

I’ve mentioned the One Laptop Per Child (OLPC) project before. It’s very interesting to me. Originally the project set out to create a $100 laptop (that may have even been the original name of the project?). They did manage to … Continue reading

Posted in All, Computers | Leave a comment

Meebo Announces XAuth

On Monday Meebo announced something called XAuth (not to be confused with the X Windows authorization program). What is it? It’s a small JavaScript library intended to be used by website developers to tailor a web page to a specific … Continue reading

Posted in All, Computers | Leave a comment

AOL, AIM and Openness

When I started working on Pidgin eight years ago (eight years‽ holy crap!) my main focus was the code used to connect to AIM and ICQ. The protocol is called ‘OSCAR,’ and it is a proprietary protocol created by AOL. … Continue reading

Posted in All, Computers, Pidgin | 7 Comments

Google and China

(This is probably old news for anyone who stays abreast of tech news, but for everyone else…) A while ago I complained about China’s draconian censorship laws. In 2006 Google launched google.cn, a China-based google.cn search page with censored results. … Continue reading

Posted in All, Computers | Leave a comment

Checklist for Keeping User’s Passwords Safe

I recently wrote a series of blog posts about how we handle users’ passwords at Meebo: post 1, post 2 and post 3. Here’s a collection of that same information, distilled into a set of do’s and dont’s written specifically … Continue reading

Posted in All, Computers | Leave a comment

Open Source Shout Out to WordPress

I moved my personal web log from LiveJournal to a self-hosted WordPress. I don’t have any major problems with LiveJournal, they have served me well over the years. My reasons for switching: Could not have multiple saved drafts Did not … Continue reading

Posted in All, Computers | 2 Comments

Google Summer of Code Mentor Summit 2009

Last weekend Google hosted their 3rd annual mentor summit, following the end of their 4th annual summer of code. The mentor summit is when a few hundred mentors gather together and participate in an unconference style conference. I went for … Continue reading

Posted in All, Computers, Pidgin | Tagged | Leave a comment

Yahoo’s IM formatting

I’ve been working on instant messaging software for seven years, so I’ve been exposed to a lot of IM protocols. The “protocol” is the structure of bytes that gets sent back and forth between your computer and the IM service. … Continue reading

Posted in All, Computers | Tagged | Leave a comment

Why I work on open source

I haven’t written about this before, have I? I think the world is better off with free software. I don’t have anything against closed source or non-free software, I just think typical development processes for free software produce better products … Continue reading

Posted in All, Computers, Pidgin | Tagged | Leave a comment

Scrobble Scrobble

Last.fm’s audio scrobbler has an option that “scrobbles” a track after to listening to anywhere between 50% to 100% of the song. So the song is considered listened to if you only listen to 4:30 of a 5 minute song. … Continue reading

Posted in All, Computers | Tagged | 4 Comments

Best Practice: Rembember Application State

From Firefox I learned that applications should always save their state. When you close and restart an application is should restore its state to what it was previously. Open windows, open documents, which text was highlighted, how far down you’ve … Continue reading

Posted in All, Computers | Tagged | 5 Comments

Changes in Gmail

Google recently made a few changes to the buttons in Gmail. Here’s a before and after comparison: But they got two things wrong: The mouse cursor doesn’t change when hovering over the new buttons. With the old buttons the cursor … Continue reading

Posted in All, Computers | Tagged | 5 Comments

Web browser SSL warnings

These are the warnings that Firefox 3.0.5 is capable of showing: I once heard someone lament that as soon as a user does a web search and the browser asks “you’re submitting information that’s not encrypted, do you want us … Continue reading

Posted in All, Computers | Tagged | 1 Comment

The Startup Ambience

This whole “computer startup company” thing really is different than what I was used to on the east coast. I mean, I had heard about Google and Yahoo! and PayPal and eBay and Amazon and Netscape, but it’s hard to … Continue reading

Posted in All, Computers | Tagged | 2 Comments

Asynchronous MySQL client library

Our de facto method for asynchronous programming at Meebo is to use a single thread with non-blocking sockets and some sort of socket watching/readiness notification (poll, select, epoll, libevent, glib’s mainloop, etc). This is what Pidgin does, too. It is … Continue reading

Posted in All, Computers | Tagged | 6 Comments

readdir(), strtol(), errno and you!

Usually when you call a function you can determine if there was an error based solely on the return code. But the functions readdir() strtol() and strtoll() are different. For these functions, if you want to know if there was … Continue reading

Posted in All, Computers | Tagged | Leave a comment

Google Apps Mail

I’ve been using a web-based email program called Open WebMail for the past 7 or 8 years (from back when it used to be called NeoMail). But my spam flagging attempts have become increasingly less effective, and Open WebMail isn’t … Continue reading

Posted in All, Computers | Tagged | 2 Comments

Poor Planning

Why do ssh, scp and sftp all have different ways of specifying the port number? I run ssh on my home computer on a non-standard port, and it’s a pain in the calf to remember which one to use when. … Continue reading

Posted in All, Computers | Tagged | 7 Comments

Error Handling

“The general rule of thumb is that it takes $10 to fix the bug during development; $100 to fix the bug in QA; a $1,000 to fix the bug during beta testing; and $10,000 or more to fix the bug … Continue reading

Posted in All, Computers | Tagged | Leave a comment

Differences between Android and iPhone

I’m not very familiar with the iPhone or iPhone development, but here’s a comparison between the two: Android iPhone Programming Language Java. I believe it gets compiled to Java bytecode then run through an optimizer called Dalvik which makes the … Continue reading

Posted in All, Computers | Tagged | 2 Comments