CARVIEW |
Archive: Lifehacker
July 22, 2008
PocketMod and Mapufacture: the anti-iPhone
Here's a clever way to fold an 8.5x11 sheet of paper into a small book. The way it's folded, all of the book's 8 outward-facing pages are from the same side of the sheet of paper. This allows you to easily construct a handy little daily planner by printing a single sheet of paper. When you're done folding, the first and third leaf will have a little pouch that you can shove a business card or two inside.
The PocketMod website has a flash application that lets you quickly build a layout for your planner. You can drag calendars, todo-lists, grids, conversion tables, and even RSS feed articles to the page and print it directly from your browser.
I love it. It's the iPhone for the mobile Luddite.
You're probably thinking: this pocketmod thing is awesome and all, but what about maps? Well, PocketMod does maps too. Or rather, a cool Web2.0 mapping service does PocketMods.
At mapufacture.com, you can create and manage custom maps and import data layers from news sources, geo blogging services, and Google My Maps. In addition to all the normal embedding and sharing tools that you'd expect, they also have a PocketMod export, allowing you to convert your map into a handy format that you can put in your back pocket.
You can't make phone calls on your PocketMod and it doesn't hold any songs you can't sing or whistle yourself. On the other hand, it's crazy slim, 3rd party application writing is a cinch, the data plan is affordable, and you won't believe the battery life.
PocketMod
Mapufacture - create custom multilayer maps (with pocketmod output support)
Posted by Jason Striegel |
Jul 22, 2008 10:24 PM
Google Maps, Life, Lifehacker, Mapping, Productivity |
Permalink
| Comments (1)
| TrackBack
| Digg It
| Tag w/del.icio.us
July 1, 2008
Swurl - scrapbook your digital life
Ryan Sit sent in a link to Swurl, a Web 2.0 application/startup he's been working on that attempts to collect all of the artifacts of your digital life and assemble them into a sensible whole. You could call it an aggregation tool—which, deep down, it is—but it does a little more than other things I've seen. Namely, it does a really nice job of taking in a wide range of relationship oriented services and turning the their inherent lock-in inside-out.
You just do your normal stuff online, Digg stuff, Delicious stuff, favorite Youtube videos, Twitter, rent videos on Netflix, bookmark songs on Last.fm, post photos on Flickr, etc. And Swurl brings it all together in a really deep way. We also enhance data, adding trailers to movies you rent and Lyrics to songs you bookmark.
All of these services get pulled together into a blog format and discussion and commenting can take place around any item. I think the idea is to help centralize the conversation instead of having it scattered about your different networks. Depending how busy your various online activities are, this may help you or it may just add yet another place to track comments.
What I like most, and the real hack from a Web 2.0 startup perspective, is that they programmed this to encourage you to maintain friends and use features across a number of social networks and easily traverse the relationships and data in all of them from a single location. Flikr is good for storing photos. Del.icio.us is great for bookmarking. Facebook is awesome for tracking friends. Swurl aggregates the relationships from all of the networks you inform it about and it recognizes when those users are also Swurl members. This encourages network growth, but isn't so greedy that it forces you to work only inside the Swurl fence.
Posted by Jason Striegel |
Jul 1, 2008 08:46 PM
Life, Lifehacker, Web |
Permalink
| Comments (1)
| TrackBack
| Digg It
| Tag w/del.icio.us
June 6, 2008
Electronic embroidery
I'm told that one of the most popular projects at the CRAFT table at Maker Faire is our friend Becky Stern's electronic embroidery. If you're into crafting, all it takes is a little conductive thread and you can make your own fabric gadgets.
Becky posted an introduction to electronic embroidery on the CRAFT blog today and I think I just learned how to backstitch. Her introduction shows how to wire up a couple of LEDs and a switch, but there are a lot of directions to take this. Of particular interest is the LilyPad, a tiny sewable Arduino board that's about the size of a half dollar. There are also various sensors designed around this platform, including sew-friendly accelerometers. There must be a good running jacket idea in there somewhere.
Electronic Embroidery - CRAFT Video Podcast
Conductive Thread and LilyPad Components at SparkFun
Posted by Jason Striegel |
Jun 6, 2008 08:34 PM
Electronics, Life, Lifehacker |
Permalink
| Comments (0)
| TrackBack
| Digg It
| Tag w/del.icio.us
April 21, 2008
Post your Earth Day hacks
In celebration of my favorite planet, I'd like to open the comments up to any and all Earth Day hacks, links and activities. Think of it as an opportunity to quickly catalog a list of ideas and tools that can be used for the other 364 days of the year.
Here are a few simple things that you can do tomorrow. I figure it's as good a day as any to start forming a few practical habits, so for my list, I just chose a number of things that you can easily make a regular part of your day.
- Bike to work. If you need to find a route, citybikemap.com is a good user contributed resource
- Compost the garbage. If you don't have a composter, here are some construction ideas from Instructables: Sinmple Pentagon Composter; Mini Wooden Portable Compost Bin; Trench Composter
- Avoid the purchase of anything with excess packaging
- Turn lights off when not in use. Convert remaining incandescent bulbs to CFL
- Check faucets and toilets for leaky valves. For your toilets, shut off the water while you are at work and see if the water level goes down in the tank. It's a common problem that's easy to fix.
- Print no emails.
- Bring a mug to work and use it instead of styrofoam or paper cups.
- Reconnect with nature: start a garden; go for a hike; take the kids out and identify some plants and birds.
- Reclaim some of the yard for native plants and grasses.
- Encourage others to do the same, and share your own Earth-friendly tips and hacks.
You may be more or less ambitious, but I think this represents something that's feasible for much of the year. It'd be cool to get a read on what the hacker community is doing to make a positive impact on the globe, so make sure to post your own Earth Day hacks and resolutions in the comments.
Posted by Jason Striegel |
Apr 21, 2008 11:38 PM
Energy, Life, Lifehacker, Science, Transportation, World |
Permalink
| Comments (3)
| TrackBack
| Digg It
| Tag w/del.icio.us
March 28, 2008
CSS ad blocking for Firefox and Safari
Using Firefox's CSS-based chrome feature or Safari's advanced stylesheet preferences and a little clever CSS coding, you can disable most banner ads, making them invisible in your browser. This technique is considerably easier and more flexible than setting up a private DNS server or proxy to filter out images from ad-serving domains.
The trick is setting up a number of CSS rules that use "*=" substring selection on an element's properties. For instance, matching an IFRAME tag with the SRC parameter containing doubleclick would look like IFRAME[SRC*="doubleclick"]
and matching an anchor tag with an HREF containing a url with "ads." in it would look like A:link[HREF*="ads."]
. Giving the style "display: none ! important" to all of the possible combinations and adding the stylesheet to your browser's chrome effectively turns off the ad-serving web. The site below has a comprehensive CSS file that's been tailored to assassinate ads from most networks.
To be honest, I didn't realize that you could do this type of parameter matching and subselection in CSS, so it's worth looking at the CSS source for that alone. If you don't use it for this purpose, perhaps the technique will come in handy for something else you are working on.
Better Ad Blocking for Firefox, Mozilla, Camino, and Safari
Ad Blocking userContent.css
Posted by Jason Striegel |
Mar 28, 2008 09:20 PM
Firefox, Life, Lifehacker, Mac, Web |
Permalink
| Comments (0)
| TrackBack
| Digg It
| Tag w/del.icio.us
February 7, 2008
FART: easy grep-like utility for Windows
The Find And Replace Text utility is a handy little command-line tool to have if you're a Windows user. It can function as a simple grep-like utility for quickly searching through whole directories of files, and you can also use it to perform mass search and replace operations on a file or group of files.
The command format is fart <options> filename search <replace>
. Basic options are -r (recursive), -c (print filename and match count), -i (ignore case), -n (print matched line numbers), --c-style (interpret backslashes as c-style characters).
For example, let's say a Linux buddy of yours sent you a bunch of html files and they have unix line endings that are barfing in notepad. One simple command fixes the problem, replacing all the newlines with a full PC carriage return, line feed combo:
fart --c-style *.html \n \r\n
Or perhaps you need to quickly track down some work that is left to be done throughout a big project directory. You can use fart to recursively search a directory and spit out all the file names and line numbers containing the text "TODO":
fart -nr * TODO
It's easy to see how you could shoot yourself in the foot with this one. Make sure to fart with caution and back up your files before doing a big search and replace.
FART @ SourceForge - Link
Posted by Jason Striegel |
Feb 7, 2008 09:55 PM
Lifehacker, Windows |
Permalink
| Comments (5)
| TrackBack
| Digg It
| Tag w/del.icio.us
February 1, 2008
Meta-model: tools for clarifying communication
Hackszine reader nathaN writes:
i have mind performance hacks here on my lap, and i found hack 56. you included transformational grammar, surface/deep structure, you have to be aware of this other book on my desk, next to my lap. The book describes a method of using transformational grammar to analyze statements and gather incredible amounts of information, the technique is called the Meta Model, i had to write this post after i found #56 in your book. it's out of print, i think, but it's not too hard to find used if you make a few calls. it cost ME $35, but its probably online as well, torrents or whatever =(its the single most useful "hack" i've ever found, ive been using it for about an year and it gives me more options than i know how to take advantage of.
The Structure of Magic I, by Richard Bandler and John Grinder
Introduction by Virginia Satir and Gregory Bateson.
Science and Behavior Books, Inc
copyright 1975
Unfortunately, the Google Books entry for The Structure of Magic I wasn't a full scanned version. There is, however, a wealth of information about the Meta-model and other Neuro Linguistic Programming (NLP) tools on Wikipedia:
The meta-model in neuro-linguistic programming (or meta-model of therapy) is a heuristic set of questions designed to specify information, challenge and expand the limits to a person's model of the world. It responds to the distortions, generalizations, and deletions in the speaker's language.
In the process of communicating, the mind is forced to translate a person's experiences and their internal understanding of the world into words, making language a highly optimized and compressed representation of a complex internal mental state. This translation occurs a second time, as the listener parses language and interprets that communication based on their own mental world model and past experiences.
The meta-model provides tools for quickly parsing the structure of a communication, determining implied meaning, and locating potential points of misunderstanding. When you can recognize the linguistic translation artifacts that are common patterns in the communication process, you can respond to them. On the receiving end, this helps you better understand the experiences that underlie the speaker's language. On the sending end, it helps you to better communicate without misunderstanding. Internally, it helps you to analyze and debug your own model of the world.
Meta-model (Neuro-linguistic Programming) - Link
Mind Performance Hacks @ the Maker Store - Link
Posted by Jason Striegel |
Feb 1, 2008 09:42 PM
Language, Life, Lifehacker, Mind, Mind Performance |
Permalink
| Comments (1)
| TrackBack
| Digg It
| Tag w/del.icio.us
January 29, 2008
Remove shake and motion blur from photos
It's a real drag when you think you've taken a great picture, only to load it up in photoshop and discover that your hands weren't as steady as you thought they were. Depending on the magnitude of your error, chances are you can correct most small camera bumps or pans using a deconvolution filter. The particular technique used depends on which package you use, but they are all built around manipulating the image in the frequency domain to reduce the photo's linear blurring.
Nathan Willis dissected three applications for removing the effects of camera movement from your photos. Two of them, Refocus and Iterative Refocus, are open source Gimp plugins. The third, Unshake, is a closed source Java application that is capable of producing high-quality results with little user effort (though your CPU will be hurting for a minute or two).
If you watch the movies, you have probably seen the impossibly accurate "computer enhancement" hand-waving that turns a blurry mess into a crystal clear mug shot or license plate for the hero to chase. Real-world image enhancement is not that good, but you may still be surprised at the level of quality a good Fast Fourier Transform and deconvolution can produce.All three of these applications produce admirable results. Refocus is the fastest, and subjectively Unshake produces the cleanest results. It is unfortunate that among the three alternatives, one is not free software and the other two lack active maintainership. But since the math is well understood, maybe someone will pick up where the other programmers left off, and bring even better refocusing technology to the image editors of tomorrow.
The above photo is from the Unshake site. It seems to work well for predominately straight-line blurs over the range of 8 pixels or less. I haven't tried the two Gimp plugins, but I have a feeling the Iterative Refocus package could produce the best results given enough tweaking of the setting.
It's all Fast Fourier Transforms and way over my head, but it works (and frankly, if it was good enough for the Hubble, it's good enough for me).
Unshaking and refocusing your photos - Link
Unshake - Link
Refocus - Link
Iterative Refocus - Link
Posted by Jason Striegel |
Jan 29, 2008 08:51 PM
Lifehacker, Photography |
Permalink
| Comments (1)
| TrackBack
| Digg It
| Tag w/del.icio.us
January 3, 2008
GrabFS: the screenshot file system
GrabFS is a clever MacFUSE-based file system created by Amit Singh that creates a live screenshot file system for all of your running applications.
When you run GrabFS, a new drive volume will appear. Inside, you'll find a folder for each running application, and inside each application directory, you'll find a tiff file for each of the application's windows. When you drag, copy or open one of these files, you get a snapshot of the application window at that point in time.
GrabFS requires Leopard and the Leopard build of MacFUSE. I think it's time for me to upgrade.
GrabFS: The Screenshot File System - Link
MacFUSE - Link
Posted by Jason Striegel |
Jan 3, 2008 12:02 AM
Life, Lifehacker, Mac |
Permalink
| Comments (0)
| TrackBack
| Digg It
| Tag w/del.icio.us
December 25, 2007
Lecturefox: free university lectures
I think MIT coined the term Open Courseware, but there are several other universities that are releasing lecture videos for free online. Now, tracking down a particular subject matter is made quite a bit easier because of a project titled Lecturefox. From the about page:
What is Lecturefox?It's all about the joy of learning.
Lecturefox is a free service. You can find high-quality classes from universities all over the world. We collect without exception lectures from official universities, and we have a special interest in lectures from the faculties physics, chemistry, computer science and mathematics. In the category "faculty mix" you can find miscellaneous lectures from other departments like electrical engineering, biology, psychology, economics, history and philosophy.
I really like what they've done in collating these resources into a single index. Tracking the companion blog's RSS feed, you can get updates about new material that's become available. Video, audio and text courseware are included in the index and it appears to be actively maintained and comprehensive, especially for computer science and other math/science related courses.
Forget your other new years resolutions. You couldn't do much better than treating yourself to a free lecture every weekend.
Lecturefox: Free University Lecture Index - Link
Lecturefox Blog - Link
Previously: Bootstrap Education - Link
Posted by Jason Striegel |
Dec 25, 2007 07:14 PM
Education, Life, Lifehacker, Software Engineering |
Permalink
| Comments (3)
| TrackBack
| Digg It
| Tag w/del.icio.us
December 21, 2007
Essential hacker stocking stuffers
Like most of us, you've probably got some last-minute shopping to take care of. Or maybe there's a special someone in your life who keeps asking you for gift ideas and you need to start dropping hints to avoid another button down and a neck tie. Whatever the reason, here's a quick and dirty hacker gift guide with a variety of gift ideas that should put a smile on someone's face.
Make sure to add your own favorites to the list in the comments area and pass it along. I'm focusing primarily on smaller items that are available in local stores, but feel free to toss in whatever you think is important and shouldn't be missed.
Reading Material:
- Make: The Best Of - a killer collection of the best 75 projects from our favorite magazine.
- The Dangerous Book For Boys - this is a great book for sharing with your kids. Chock-full of essential information like how to tie knots, play poker, use a compass, build a tree house, and relate to girls.
- Knoppix Hacks, 2nd Edition - the swiss army knife for your computer.
- Illustrated Guide To Astronomical Wonders - ideal for anyone who's interested in knowing their way around the universe.
- Also check out other books from the O'Reilly Hacks Series - Link
Gadgets:
- Asus Eee PC - this ultra-tiny Linux laptop is just starting to appear in stores - Hacks
- Linksys WRT54GL Router - the L in the GL stands for Linux. It's a $60 router that can be customized to do more than it's thousand dollar big-brothers - Hacks
- Western Digital MyBook World Edition External Hard Drive - any extra storage is really nice to have, but this network-available drive contains mirrored RAID storage and a mini Linux computer that can run a web and database server - Hacks
- iPhone or iPod Touch - did I really put that here? - Hacks
- Broadband Mobile Card from Verizon or Sprint - they are getting super
popular, and heck, they are cheaper than an iPhone. - Nokia N95-3 - the winner of our most hackable mobile phone survey - Hacks
Toys:
- Air Hogs Havoc Heli Laser Battle - remember the Picco-Zs and their clones from last year? Here's two of them in a single package, enhanced with a trigger that let's you zap your friend's heli down.
- E-Sky Lama V4 Helicopter- Yeah, I'm crazy for helicopters right now. The counter-rotating models like this one are about $100, ready (and easy) to fly, and very hackable.
- WowWee RoboSapien V2 - fun for the kids. More fun with a soldering iron - Hacks
Gear:
- 2GB or larger micro SD card, plus various SD and USB adapters - perfect for scooting files around, the size of a finger nail, and you can put a full Linux distro, anti virus software, or a Puppy Linux virtual machine on it - Hacks
- Mini Multimeter - always handy.
- Bike Multitool - a good one will pack allen and hex wrenches, screw drivers, and a knife into a pretty small package. Perfect for voiding warrantees in a pinch. Oh, and there's a chain tool, too - Link, Link
- Soldering Tools - whether it's a new Weller or just a pair of helping hands, it'll be welcome in any stocking - Link, Link
What have we missed here? Add your wishes to the comments. Then find a completely non-tacky way to get this list into the hands of someone who wants you to be a happy hacker.
Posted by Jason Striegel |
Dec 21, 2007 08:03 PM
Electronics, Flying Things, Hacks Series, Hardware, Life, Lifehacker, Linux, Mobile Phones, Ubuntu |
Permalink
| Comments (5)
| TrackBack
| Digg It
| Tag w/del.icio.us
December 17, 2007
Read/write access to Linux partitions from Windows
I read today on Lifehacker about a freeware tool called Linux Reader. It provides you with read access to ext2/ext3 partitions within Windows and has an explorer-like interface that allows you to drag and drop files from a standard Linux partition.
What about full read/write access? With a little googling, I found another freeware utility called Ext2 IFS that provides full write access. It's is essentially a kernel ext2/ext3 filesystem driver for Windows, which allows the operating system to access your Linux partitions in a more native manner.
After installing, you can mount your Linux partition under a drive letter, just like you would an NTFS partition. The drive will be available in Explorer and within any file browser dialog in your favorite Windows applications.
As far as I can tell, both packages pretty much ignore the permission settings on files, so you'll have full access to files across the entire partition. One caveat is that LVM volumes are not supported by the Ext2 IFS driver (and I'm assuming the same is true for Linux Reader). ReiserFS, XFS and other filesystems are also not supported. For your plain Jane dual-boot system with an ext3 partition, however, you should have no problem accessing your Linux files from within Windows.
Ext2 Installable File System For Windows - Link
Linux Reader - [via] Link
Posted by Jason Striegel |
Dec 17, 2007 07:50 PM
Lifehacker, Linux, Windows |
Permalink
| Comments (3)
| TrackBack
| Digg It
| Tag w/del.icio.us
December 2, 2007
Annotate the web with ShiftSpace
ShiftSpace is an open source platform that uses Greasemonkey to place an API layer over the web. When you have the plugin installed, ShiftSpace connects back to a central server to locate "shifts" that other users have left behind for the URL you are viewing.
By pressing shift+space on your keyboard, you get a list of these "shifts", which are essentially a layer of user-contributed annotations that are layered on top of the web page you are viewing. The current tools allow you to leave post-it notes, swap images, highlight text and even reformat the html of the underlying page. To add a shift to any web page, you just hold the shift key down and a little menu appears.
Right now, the shifts you see appear to be global. In the near future, it's supposed to have the ability to filter shifts based on friend groups, friends of friends, or just you own shifts. This could make it a convenient way to take notes on pages that you view, alone or collaboratively.
The bigger deal is that the underlying API is open source, and the tools provided are just examples of what you might be able to build. The server-side is written in PHP using the SQLLite library, so it should run on just about any web server environment. If you want to hack a meta-web application of your own, you can just download the source and start coding. Just make sure to tell us about it when you've got something to show.
ShiftSpace: An Open Source layer above any webpage - Link
ShiftSpace documentation - Link
Posted by Jason Striegel |
Dec 2, 2007 07:50 PM
Greasemonkey, Lifehacker, Web |
Permalink
| Comments (0)
| TrackBack
| Digg It
| Tag w/del.icio.us
December 1, 2007
The hackers in your neighborhood
Google recently added a collaboration feature to the "My Maps" area of Google Maps. Similar to the collaborative document editing in Google Docs, when you've made a map you can click the "Collaborate" link and share your map with specific people or the entire world. What's cool is that when you do the latter, you've effectively created a map wiki that anyone can edit, expand upon, and help maintain.
After messing around with the new collaboration feature for a bit, it occurred to me that we should make a map where we hackers can add our own markers and share interests and projects with each other. It might be a good way to network with people around you, and it's also just cool to see what projects people are working on around the world.
So I went ahead and created the hackers in your neighborhood, an open-access collaborative map that we can use to map the hacker world. Some of my favorite hackers at Make and Craft have added themselves to the map already, but I'd love to see how far we can push this... maybe it'll become too many data points for gmaps to handle.
Just connect to the map, log in to your Google account, and you'll find an "Edit" button on the left. Clicking this will put the map in edit mode, where you can drag a new marker onto the map for yourself. Toss your name into the title and put your interests and project websites in the description field.
If you have a programming or robotics club, toss that in there too and give it a red marker or something.
I should mention something else about the collaborative feature. As you can see above, it looks like PT from Makezine has tagged my digital hood with some mapfiti.
The one downside of the collaboration feature is that someone might end up vandalizing your work. In reality, though, most of these open-collaborative projects end up working really well just on good faith and community policing. It's why large open source projects work. It's why Wikipedia works. Frankly, I think Phil's Make: tag looks pretty sweet over Minneapolis anyway.
The Hackers in Your Neighborhood - Link
Posted by Jason Striegel |
Dec 1, 2007 05:39 PM
Google Maps, Lifehacker, Mapping |
Permalink
| Comments (4)
| TrackBack
| Digg It
| Tag w/del.icio.us
November 25, 2007
Recovering a dead external hard drive
What do you do when good hard drives go bad? Tell me if this sounds familiar. You spend a year or two filling up an enormous external hard drive, and just as you start thinking it might be a good idea to buy another enormous drive to back up your data, you boot your computer and hear a heart-stopping sound from your disk: thuck... thuck... thuck... thuck... @#$%!!!!
I had a huge amount of data go dark on me two weeks ago. I suppose I reached the end of the grieving process this weekend, because my mind started to clear up and it occurred to me that maybe all was not lost. After all, there are a lot of electronics in those external hard drives, separate from the drive itself. Inside your typical external hard drive is just a normal 3.5 inch internal hard drive plus the electronics necessary to power everything, control the drive, and provide USB or Firewire connectivity to the host computer.
So, voiding the warrantee, I pulled the enclosure apart and replaced the suspect drive with a working EIDE drive I had lying about. Sure enough, when I turned things on, the drive I knew to be good started clacking away. At this point, I was pretty sure my data was still safe and sound, but being that I didn't have a machine handy that could mount an XFS formatted disk, I couldn't verify things for sure until I could get the disk connected back to my iMac.
Most computer stores sell really cheap (approx. $30) hard disk enclosures which you can just slap an EIDE disk into to create an external Firewire or USB drive. I ran to my local store, picked one up, and I'm happy to say that I just recovered 320GB of data that I had just about given up on.
If you own an external drive that's failed on you, make sure to test the drive and enclosure before you throw it out. It's quite possible that your data is still intact and you can save yourself a couple hundred bucks and a lot of trauma by just replacing the enclosure.
At the very least, you might have a bad disk but a working enclosure that you can use to make a new external disk.
On a side note, until today I only owned a single external drive. Being that there's only one data point, I can't say a whole lot for sure, but I keep thinking that I'm just a random person with a 100% enclosure failure rate. Until I hear otherwise, I remain suspicious that this might be a fairly common failure point.
Posted by Jason Striegel |
Nov 25, 2007 10:24 PM
Hardware, Life, Lifehacker |
Permalink
| Comments (8)
| TrackBack
| Digg It
| Tag w/del.icio.us
Bloggers
Welcome to the Hacks Blog!
Categories
- Ajax
- Amazon
- AppleTV
- Astronomy
- BlackBerry
- Blogging
- Body
- Cars
- Cryptography
- Data
- Design
- Education
- Electronics
- Energy
- Events
- Excel
- Excerpts
- Firefox
- Flash
- Flickr
- Flying Things
- Food
- Gaming
- Gmail
- Google Earth
- Google Maps
- Government
- Greasemonkey
- Hacks Series
- Hackszine Podcast
- Halo
- Hardware
- Home
- Home Theater
- iPhone
- iPod
- IRC
- iTunes
- Java
- Kindle
- Knoppix
- Language
- LEGO
- Life
- Lifehacker
- Linux
- Linux Desktop
- Linux Multimedia
- Linux Server
- Mac
- Mapping
- Math
- Microsoft Office
- Mind
- Mind Performance
- Mobile Phones
- Music
- MySpace
- MySQL
- NetFlix
- Network Security
- olpc
- OpenOffice
- Outdoor
- Parenting
- PCs
- PDAs
- Perl
- Philosophy
- Photography
- PHP
- Pleo
- Podcast
- Podcasting
- Productivity
- PSP
- Retro Computing
- Retro Gaming
- Science
- Screencasts
- Shopping
- Skype
- Smart Home
- Software Engineering
- Sports
- SQL
- Statistics
- Survival
- TiVo
- Transportation
- Travel
- Ubuntu
- Video
- Virtualization
- Visual Studio
- VoIP
- Web
- Web Site Measurement
- Windows
- Windows Server
- Wireless
- Word
- World
- Xbox
- Yahoo!
- YouTube
Archives
Recent Posts
- iPhone SDK tutorial - simple RSS reader
- Shield your files with Reed-Solomon codes
- Photos of the Large Hadron Collider
- Magnetic stripe card spoofer
- Film canister flash diffuser
- Decoding magstrip cards with Arduino
- Buzz Kill - stopping iPhone GSM speaker noise
- Asterisk File Transfer Protocol
- DJBDNS, DNS exploits, Bernstein, Schneier, and security by design
- Web application hotkeys with Javascript
www.flickr.com
|
Most read entries (last 30 days)
- Star Wars music played by a floppy drive
- HOWTO: Reset a lost OS X password
- HOWTO - Read/Write to NTFS drives in OS X
- Tupper's Self-Referential Formula
- Unbrick or downgrade any PSP
- HOWTO - Install Ubuntu on the Asus Eee PC
- Make a cheap Xbox 360 Wireless Adapter with DD-WRT
- Using Google as a Proxy (or HOW TO: View MySpace at School)
- T-Zones and iPhone: the $5.99 data plan
- Play MS-DOS Games on Vista
- Cruel Super Mario World hack
- Pocket PC iPhone conversion
- LED security camera disruptor
- Howto: Download Youtube and Google Videos
- Vixy.net: Online FLV-to-MP4 Converter
© 2008 O'Reilly Media, Inc.
All trademarks and registered trademarks appearing on makezine.com are the property of their respective owners.
Recent comments