Read more of this story at Slashdot.
Read more of this story at Slashdot.
This is not your father's fusion reactor! Forget everything you know about conventional thinking on nuclear fusion: high-temperature plasmas, steam turbines, neutron radiation and even nuclear waste are a thing of the past. Goodbye thermonuclear fusion; hello inertial electrostatic confinement fusion (IEC), an old idea that's been made new. While the international community debates the fate of the politically-turmoiled $12 billion ITER (an experimental thermonuclear reactor), simple IEC reactors are being built as high-school science fair projects.LinkDr. Robert Bussard, former Asst. Director of the Atomic Energy Commission and founder of Energy Matter Conversion Corporation (EMC2), has spent 17 years perfecting IEC, a fusion process that converts hydrogen and boron directly into electricity producing helium as the only waste product. Most of this work was funded by the Department of Defense, the details of which have been under seal... until now.
Dr. Bussard will discuss his recent results and details of this potentially world-altering technology, whose conception dates back as far as 1924, and even includes a reactor design by Philo T. Farnsworth (inventor of the scanning television).
Can a 100 MW fusion reactor be built for less than Google's annual electricity bill? Come see what's possible when you think outside the thermonuclear box and ignore the herd.
Read more of this story at Slashdot.
Read more of this story at Slashdot.
Recently on Boing Boing Gadgets we took a look at Fright Catalog (dot com's) wondrous animatronic monsters, HP's entry into the UMPC/Eee subnotebook space, a belt-fed NERF cannon, upcoming multitouch interfaces from Apple, a kitchen device that works more or less as a steak toaster, a weightlessness-simulating treadmill, the thought that goes into designing a low-end camcorder, a gee-whiz linear propulsion toy, a documentary about circuit bending, a concept emergency shelter in a 50-gallon drum (and some ideas I have about blogging from the forest this spring), the hopefully impending death of The Sharper Image, a game that plays with the idea of a 2D character in a 3D world, a headset that reads your thoughts to control games, and a tortuous puzzle box in which to stow gifts. And deals and retro links.
Read more of this story at Slashdot.
Read more of this story at Slashdot.
Link“Carl was an avid stamp collector as a boy, and we treasure the albums he made then, (said Sagan's wife Ann Druyan.) "They’re filled with his handwritten notes in the margins — perhaps the earliest evidence of his passion for the diversity of Earth’s cultures. So this particular tribute to Carl would have held special significance for him, as it does for me.”
Read more of this story at Slashdot.
Read more of this story at Slashdot.
I love that OS X automatically fires up iPhoto when I plug in my digital camera. It’s one of the Mac’s many little touches that make it such a pleasure to use.
But ever since I got an iPhone, I’ve been frustrated that plugging it in opens up iPhoto, too. The combination of iPhoto and iTunes opening and syncing slows my computer to a crawl. And it’s particularly painful when most of the time I just want to sync my address book or music.
Fortunately it’s pretty easy to work around this annoyance. Keep reading to see how you can teach your Mac to open iPhoto when you plug in your camera but not your phone.
I recently stumbled across an option in Image Capture’s preferences that lets you select any application to open when a camera is connected. That gave me an idea: what if I could tell it to open a special application that would check to see which camera I’d plugged in? Then that application could in turn open iPhoto only if I’d plugged in my Digital Rebel.
It turns out you can do all of this using the command line and a little bit of AppleScript. Here’s how:
Open Script Editor (in the AppleScript folder inside your Applications folder). Copy and paste this script into the editor window:
on device_is_connected(device_name)
set check_for_device to "ioreg -rn " & quoted form of device_name
return (length of (do shell script check_for_device) is not equal to 0)
end device_is_connected
on run
if device_is_connected("") then
tell application "iPhoto" to activate
end if
end run
Keep Script Editor running, and open Terminal (in the Utilities folder inside your Applications folder). Copy and paste this command into the terminal window:
ioreg -Src IOUSBDevice | grep '^\+' > /tmp/ioreg
This command lists all the USB devices connected to your computer and stores the list in a temporary file.
Plug in your digital camera and turn it on. Then copy and paste another command into the terminal window:
ioreg -Src IOUSBDevice | grep '^\+' | diff /tmp/ioreg - | tail -1 | sed 's/^> \+-o \(.*\)@.*/\1/' | pbcopy && pbpaste
This command again lists all the USB devices connected to your computer and compares it with the previous list you saved to a temporary file. Then it extracts the name of the camera you just plugged in. You should see this name displayed in the terminal (for example, when I plug in my Digital Rebel XT, I see Canon Digital Camera). It’ll be copied to your clipboard, too.
Quit Terminal and switch back to Script Editor. Find the line that reads:
if device_is_connected("") then
Place the cursor between the two quotes and choose Paste from the Edit menu, so that you see your camera’s name in the quotes, like this:
if device_is_connected("Canon Digital Camera") then
Make sure there’s no line break between the camera name and the last quote mark.
You can also change “iPhoto” on the next line to “Aperture” or “Lightroom”, if you’d prefer to open one of those applications instead.
Choose “Save As…” from the File menu, pick “Application” in the “File Format:” dropdown, and save the script as “Camera Connected” in your Applications folder.
Quit Script Editor and open Image Capture (in your Applications folder). Choose “Preferences…” from the Image Capture menu and pick “Other…” in the “When a camera is connected, open: