Fun With Video
Think Photoshopping people out of pictures is pretty high-tech? This video-processing technology is amazing… (from Centripetal Notion)
Andrew Flanagan on August 20th 2008 in Geekiness
Think Photoshopping people out of pictures is pretty high-tech? This video-processing technology is amazing… (from Centripetal Notion)
Andrew Flanagan on August 20th 2008 in Geekiness
… at least in some cases.
It’s easy to store information on your cell phone by typing some text in. It’s more advanced to be able to send text messages. But what about providing a “universal” interface (meaning a web services interface) that can receive text and makes text available?
This is what Twitter does. I wasn’t very impressed when I first heard about it a while back because it seemed so… simplistic. Anyone can write a simple database with users and allow them to post text messages. But I was missing the point.
I can now use my cell phone to send a message to Twitter (there’s a program called MobileTwitter that I just downloaded and installed. This text messages pretty much instantly wings its way to the Twitter servers. From there, people can subscribe to my “stream” of messages using desktop-based clients (I use Spaz on my MacBook and my Windows PC). However, I’m not stuck using one companies application — all I need to do is poll the web service. A simple curl call will easily retrieve my latest Twitter message
curl -u andrewflanagan:mypassword http://twitter.com/statuses/user_timeline /andrewflanagan.xml?count=1 -s -o /var/twitter/andrewflanagan.xml
and a few lines of PHP will make it displayable on my web page:
$xml = new SimpleXMLElement('/var/twitter/andrewflanagan.xml', 0, true); $status = $xml->status->text;
Alternatively I could have the PHP script directly call Twitter but I ran into some problems since it takes longer to load the pages each time someone visits and Twitter unfortunately limits requests to 70/hr which results in ugliness when I get too many hits on my site. So instead I set up a cron job that runs every 5 minutes (using the curl call above) and updates the locally-stored XML file.
But anyway, the point of this is that you can easily define new interfaces for entering, receiving, and displaying text. It’s simplistic, yes. But it means that on my way back from work (in the car) I can update the front page of my blog with a message using my cellphone. I can also be pulled over by a state trooper. They have no appreciation for the depth and usefulness of this technology!
Andrew Flanagan on April 11th 2008 in Geekiness
Well, the high-def video format war is over. Blu-ray is the winner. With Toshiba and now Microsoft pulling out from supporting HD-DVD, we can finally feel at ease buying a video player. Interestingly, the DAY of the announcement from Toshiba (February 19) I got an email offering me a $89 HD-DVD player with 7 free titles! Someone’s triyng to clear some stock… I’m glad to see the format resolved and looking forward to my Blu-ray purchase (coming soon!).
Anyone out there reading this purchased a Blu-ray player yet? If so, any details — recommendations? I’m considering getting a Playstation 3 and using the built-in Blu-ray player on that. We’ll see though. Currently the electronic focus at our house is on my wife’s brand new, high-tech, sewing/embroidery machine. It’s pretty spiffy and can create some high-def embroidery patterns with ease!
Andrew Flanagan on February 25th 2008 in Actual Events, Geekiness
I’ve been looking for a multi-function (print, scan, copy, fax) printer for the last few months. I’ve been really disappointed with what I’ve found.
What I want to be able to do is the following:
I know that there are problems with some of these — specifically Scanning and Faxing. I see multiple issues with these:
I see a solution but I’ve not found a sub $1000 printer that accomplishes it. Some of the high-end “counter-top”-sized systems (that run $10,000 and above) have something similar but are usually way overblown.
So why isn’t it out there?
Andrew Flanagan on February 10th 2008 in Geekiness, Ranting & Ravings
Vertical Farming is a neat, futuristic approach to producing food within urban environments. I’m not terrified of running out land and of populations booming too much nor am I running scared of global warming or cooling or whichever it is but I still think that the idea is very neat.
I think it could actually be made a cost saver in large cities. The idea is sort of similar to terracing unusable land to make it usable but instead of making land flat, you stack it. I really do think that the answer to a lot of “society’s woes” is that these things will at some point become cheaper than doing them the “old” way. I just see this one as becoming worthwhile sooner than some of the other wacky ideas. So I guess I view this as more of an investment in new technology than just philanthropy to support these projects.
The reality is that shipping and transportation is becoming more and more difficult and massively increases the price of products. I’ve not seen it mentioned, but why not have the first floor be the “fresh produce” grocery store?
Andrew Flanagan on October 5th 2007 in Actual Events, Somewhat Random