Feed aggregator
Those Facebook photos you deleted are still online - three years later
New Charms bar and Metro wallpaper pattern revealed in leaked Windows 8 shots
Nicira debuts with its SDN baby
Cloudyn monitors and optimizes AWS usage
Microsoft experiments ahead of Windows 8's public beta, is the Start button going the way of the dodo?
AT&T Samsung Galaxy Note is now available for pre-order
German federal agency recommends Google Chrome
Patriots' Tom Brady viewed illegal streamed sports video
Blackberry Playbook prices being cut again
Weekend tech reading: Micron CEO dies in plane crash
EMC launches 'Project Lightning' PCIe cards
Micron appoints COO Durcan as CEO after Appleton's death
Microsoft wants your Windows Phone marketing ideas
Microsoft trademark 'People Powered Stories'
Microsoft denies Kelihos botnet is back in operation
Check SHA1 Checksum in Mac OS X
SHA hashing is frequently used with distribution control systems to determine revisions and to check data integrity by detecting file corruption or tampering. For common usage, a SHA checksum provides a string that can be used to verify a file been transferred as intended. If SHA checksums match, the files integrity has been maintained.
Checking SHA1 Hash in Mac OS XLaunch the Terminal, found within the Applications and Utilities folder, and use the following syntax:
shasum /path/to/file
To verify a file named “DownloadedFile.dmg” on the desktop, it would be:
shasum ~/Desktop/DownloadedFile.dmg
This will output something like this:
$ shasum ~/Desktop/CheckMe.zip
ddfdb3a7fc6fc7ca714c9e2930fa685136e90448 CheckMe.zip
That long hexadecimal string is the SHA1 hash.
An easy way to check SHA1 files buried deep in the file system without typing out the full path, is to type the first part of the command then drag and drop the file into the Terminal window. This automatically types the path for you:
shasum (drag and drop file here)
Remember to put a space after “shasum” for this to work properly.
The default for the shasum command is to use SHA1, the most common hash type, but this can be changed with the -a flag if necessary to 224, 256, 384, or 512. Also, though SHA1 is becoming more common than MD5, you can still easily check md5 hash in Mac OS X as well with the md5 command.
Examples of Using SHA1 to Verify FilesA practical use that Mac users may encounter is when downloading software updates directly from Apple, who lists the SHA1 hash of each file offered through their servers at the end of each downloads page. You can see such a string highlighted in the screenshot below. This string allows users to easily verify the integrity of their downloads either from Apple or when the file has been hosted on a third party mirror site.
This is also how it was discovered that OS X 10.7.3 had been quietly updated, and several questions about this spawned this post.
Using SHA1 hash strings are also an easy way to verify file transfers from peer to peer networks and to make sure a download has finished, or that a file was not tampered with somewhere along the line. By knowing the origin SHA1 checksum, you can verify your version of the file(s) in question matches, and determine if the file is indeed valid and has arrived as intended.
US government closes 307 pro football themed web sites
Microsoft Stores offer free Zune Pass for Windows Phone buyers
iPad Split Keyboard Has 6 Hidden Keys to Make Typing Even Easier
Did you know the split iPad keyboard in iOS 5 includes six hidden ‘phantom’ keys that make typing even easier?
The hidden keys are Y, H, B, T, G, and V, and technically they’re just duplicates of the keys directly across from each other while the touch keyboard is split in two. This makes some of our quirkier and habitual typing gestures still work despite the fact that the user is technically typing onto nothing. Try it out yourself.
I had no idea this existed, but this great find from Finer Things has made the rounds on the web and does a great job of emphasizing how Apple pays attention to even the littlest things in their quest to protect the user from their own error and frustration.
How to Delete Safari, Mail, FaceTime, Photo Booth, and Other Default Mac OS X Apps
If you have tried to delete Safari, Mail, FaceTime, Chess, Photo Booth, Stickies, QuickTime, or any of the other default Mac OS X apps before, you’ll know the Finder prevents you from doing so. Try to move one of these apps to the trash to uninstall it and you’ll get a message saying: ‘”Safari.app” can’t be modified or deleted because it’s required by Mac OS X.’
That message is more to dissuade you than anything else, because there is a way to delete any of these default apps that are required by Mac OS X, it’s just generally not recommended to do so. For apps like Safari and QuickTime Player, this is particularly true, as other apps may use Safari or it’s elements to function properly (including other web browsers), but for apps like Stickies, Chess, FaceTime, and Photo Booth, you can safely delete them without any mal effects.
How to Delete Safari, Mail, FaceTime, Photo Booth, & Other Default AppsWarning: There is no undoing the app deletion without reinstalling the individual application or Mac OS X. This will result in permanent removal of the specified applications and could result in abnormal system behavior or improper functionality. If you don’t know exactly what you’re doing and why, this is not recommended. Perform a backup beforehand, and proceed at your own risk.
- Launch the Terminal, located in /Applications/Utilities/
- Type the following at the command line to change to the Applications directory:
cd /Applications/
Now that you are in the Applications folder, you can start deleting apps. You will not get a confirmation of the removal, the app will simply be deleted completely. The following commands will only work when used in the /Applications/ directory.
Delete Safari
sudo rm -rf Safari.app/
Delete Mail
sudo rm -rf Mail.app/
Delete FaceTime
sudo rm -rf FaceTime.app/
Delete QuickTime Player
sudo rm -rf QuickTime\ Player.app/
Delete Stickies
sudo rm -rf Stickies.app/
Delete Chess
sudo rm -rf Chess.app/
Delete Photo Booth
sudo rm -rf Photo\ Booth.app
If you’re comfortable enough with the command line, you could supply the full application path with /Applications/Appname.app but considering the potential for catastrophic error with sudo rm -rf we used the safer method.
