Introducing the Hipster PDA | 43 Folders

Introducing the Hipster PDA | 43 Folders
The Hipster PDA Parietal Disgorgement Aid is a fully extensible system for coordinating incoming and outgoing data for any aspect of your life and work. It scales brilliantly, degrades gracefully, supports optional categories and “beaming,” and is configurable to an unlimited number of options. Best of all, the Hipster PDA fits into your hip pocket and costs practically nothing to purchase and maintain. Let’s make one together.

Macworld: First Look: First Look: ModBook

Macworld: First Look: First Look: ModBook
Third-party modifications turn MacBook into a tablet computer – By Jonathan Seff

Ever since the Newton came—and went—in the 1990s, a small but vocal group of Mac users have clamored for a tablet Mac. At least to this point, Apple has shown no interest in getting into the tablet business. So it’s up to third parties to come up with a product that may finally determine the level of demand for a Mac tablet computer.

Installing the W3C HTML Validator on Mac OS X

Installing the W3C HTML Validator on Mac OS X
Building a website is a complicated process, and testing your finished product
on every possible browser can be even more daunting. However, because modern
browsers such as Safari, Mozilla, and Internet Explorer 6 are compliant with the
World Wide Web Consortiums W3C standards, testing your pages with the W3C
Validation Tool is a great way to ensure that your pages work with modern
browsers. The W3C Validator provides a line-by-line level of feedback, such as
error information with references to the standards, on any URL you submit or
HTML file you upload.

Illustrator CS2 crashes on Intel Mac 10.4.8

Adobe Illustrator CS2 crashes on an Intel Mac Pro running Mac OS 10.4.8 when a designer tries to use a tool on the pathfinder palette. This only happens when a circular path is involved. For example you want to Unite a round/circular path and a square path. Yo highlight both paths and select Unite from the Pathfinder palette. The program will crash.

The solution was buried in the comments of this post on Real World Illustrator.

  1. Launch Illustrator CS2
  2. Close the Appearance Palette
  3. Quit Illustrator
  4. Restart Illustrator

You can then reopen the Appearance palette and use the pathfinder tool without trouble.

Using Sun Java Studio Creator 2 on Mac OS X

Using Sun Java Studio Creator 2 on Mac OS X

Java Studio Creator is an easy-to-use visual tool for developing Web applications with Java. Designed for the corporate developer who needs to be productive and doesnt have the time to learn the details of Java technologies, the product combines the Java integrated development environment IDE with a rapid visual designer, a smart code editor, synchronized editing, and easy deployment resulting in rapid iterative development of Web applications and Portlets.

Java Studio Creator on the Mac is an excellent on-ramp to Java for any developer and an easy way to build Web applications in Java. Built on the solid foundation of NetBeans developer platform plus proven Java standard technologies like JavaServer Faces and JDBC Rowsets, Java Studio Creator provides visual access to databases and Web services, creating a complete Java development and deployment solution for portable applications, portable source code, and portable developer skill sets.

MacNN | Google releases MacFUSE

MacNN | Google releases MacFUSE
Google today released MacFUSE, an open-source port of the FUSE “Filesystem in Userspace” mechanism previously only available on Linux and FreeBSD systems. MacFUSE offers Mac OS X developers the ability to organize nearly any data into a file system, offering support for most existing Linux-based FUSE file systems on the Mac platform.

How to – disk recovery with ddrescue on Mac 10.4

I had a dead, clicking hard drive. It would not mount so most repair utilities and Apple Disk Utility couldn’t see the drive to repair it. Data Rescue II and DiskWarrior (even advanced recovery mode) would run for a while but eventually error out. dd_rescue (read third comment) is a linux utility that is very powerful and persistent but wouldn’t compile for me in Mac OS 10.4. I finally had success with a similar linux tool ddrescue and this article.

What you will need:

  • Dedicated Mac w/OS 10.4 – some recoveries can take up to a week to complete. Make sure you have 2x the damaged drive’s disk space available
  • Install Xcode 2.4 and developer tools
  • Replacement hard drive – Same size as the damaged drive. You may be able to use a partitioned drive but It didn’t work for me.
  • USB 2.0 drive enclosure for 2.5″ hard drive – assuming you are recovering a laptop HD. Get Firewire if you can find one. This enclosure from Compusa was only $20… I got two.
  • Extra USB cable (mini to standard in my case)
  • DiskWarrior

What I did: You can get a majority of the steps from this article.
- Download, configure, and install ddrescue. Notice where the ddrescue binary is installed and move it to /usr/sbin or anywhere in your $PATH you wish. This way you can just run the ddrescue command from anywhere in the command line.
- Open the Terminal program and run these commands
% df
% ls -la /dev/ | grep disk

We’ll use these to determine the disk’s volume number (don’t close the window)
- Install the damaged drive into the drive enclosure and connect to the computer. My enclosure came with a USB power cord so I used another USB cord to make the USB serial connection. I don’t think the power connection was necessary though YRMV.
- Run this command and check the differences with the above results to determine the disk volume number
%ls -la /dev/ | grep disk
You should see a new set of disk numbers (disk1, disk1s1, disk1s2). If not check that the drive is connected and that the light shows disk activity. It may take a minute or two for the drive to register. Even unmounted drives will appear in this list.
% cd ~/Desktop
% sudo ddrescue -v /dev/diskXsX MyVolImage.dmg MyVolRescue.log

Where diskXsX is the damaged drive’s volume number
- Open another terminal window and enter
% tail -f ~/Desktop/MyVolRescue.log
This will show all changes to the Rescue log so you know things are happening.
- Open another terminal window and enter
% sudo fs_usage | grep ddrescue
This monitors all system disk activity and is a bit more active than the Rescue log.

Now you wait… and wait… you can watch the logs with the tail and the stats from the ddrescue command. It’s very interesting to watch but just come back every day and check the progress. You can stop the program and start again without losing anything, thanks to the log, but be careful. I stopped the program and unplugged the drive and had to start the process all over again (three days recovery lost).

When the process is finally complete you will have a .dmg and log file on your desktop. Back these up or risk having to repeat the process again.
- Next put the new replacement disk in the enclosure.
- Determine the disk volume number in the same fashion as before.
- Now we will use ddrescue to copy the recovered image to the new undamaged disk.
% sudo ddrescue -v MyVolImage.dmg /dev/diskXsX MyVolRestore.log
This should run more quickly but may still take about a day, maybe two.
- Once completed I still couldn’t mount the disk but was able to run DiskWarrior completely and repair the disk. Then I could copy the files I needed.

It’s a very long and dedious process but it is a great feeling to recover someone’s lost wedding pictures. I even got an extra christmas present this year.

Carry a PC Repair System on a USB Drive

The Daily Cup of Tech computer help site put together a USB-drive based collection of software that’ll help you resuscitate any ailing PC. All wrapped up into one convenient, 14.2MB zip file, the USB PC Repair System contains 37 fix-it utilities (via Lifehacker)

read more | digg story

Web developers: No more IE hacks!

Microsoft has yet again failed with IE7 to extend a helping hand towards web developers. They have yet again failed to improve IEs standard compliance. Web developers are living in html/css/javascript hell where we have to introduce extra hacks just to make a standards compliant site run on IE. Browsers should support standard compliant websites!

read more | digg story

HOWTO Create Your Personal All-In-One USB Knoppix 5.1.0

You can take your desktop wherever you go, on USB stick, and newest working Debian 4.0 ‘Etch’ to boot! The well-known flavor of Debian, engineered in Germany by Klaus Knopper, empowers you to step over all them troubles with freaky Windows. MS-Windows stuff is so much last century… totally uncool bloatware. USB Knoppix might be the right answer!

read more | digg story

Follow

Get every new post delivered to your Inbox.