Wednesday, September 4, 2013

All the New Stuff in OS X 10.9 "Mavericks"

Today Apple announced OS X 10.9 with long-awaited features like Finder tabs and tags, along with a few new ones. Come check out all the cool new stuff in the next version of the Mac operating system.

All the New Stuff in OS X 10.9 "Mavericks"SFinder Tabs
A long-time feature in alternate file browser Path Finder and plug-in TotalFinder, OS X 10.9 brings tabbed browsing to the OS X Finder. Since OS X 10.5, rumor sites and news outlets have speculated that Apple would added tabs. Now, they finally have.

Tags
Apple decide to add another feature we've seen in everything from web to desktop apps for years. Now you can add tags to documents, folders, and more in the Finder to easily find what you're looking for without the need to keep all relevant files in a specific folder. Instead, you can just browse by tag.

All the New Stuff in OS X 10.9 "Mavericks"SMultiple Display Enhancements
Using multiple monitors with OS X became problematic with the introduction of version 10.7. Now taking an app full screen doesn't force other displays to have a useless gray background. You can put multiple full screen apps on multiple screens. While this feels more like a fix than a feature, OS X 10.9 allows you to use your Apple TV as another display. Not a bad deal if you've got a TV but no extra monitor for work.

Battery Life Improvements
We've only seen incremental improvements in battery technology, so Apple decided to make reduce CPU utilization in OS X 10.9 to drain less power. One technology called App Nap improves battery life by suspending CPU tasks that you don't need. For example, if you have a CPU-intensive web site running in Safari and you cover it with another window, OS X will suspend that task so it doesn't drain your battery when not needed. When you uncover the window, it'll resume. Apple added several other technologies behind the scenes that'll help developers save battery life through their apps.

Safari
OS X 10.9 adds a few new features and technologies to Safari. You'll get your bookmarks in a sidebar for easier access, better JavaScript performance, lower memory usage, and other speed improvements like smooth and fast scrolling.

All the New Stuff in OS X 10.9 "Mavericks"SiCloud Keychain
Popular solutions like LastPass and Dashlane save your passwords and sync them amongst your many computers. Apple decided to get in on the fun with iCloud Keychain. It'll remember passwords for sites and other things (e.g. Wi-Fi), credit card numbers, and more. Everything syncs with iCloud, and Apple encrypts all the data to keep it safe.

Actionable and Synchronized Notifications
Now you can get notifications in OS X and actually do something with them. Instead of just clicking them to get to the app, you can reply to a message or answer a video call directly from the notification. You can also now update your apps in the background via the Software Update notification as well. iOS notifications will sync with OS X so you don't have to go between devices to see everything.

All the New Stuff in OS X 10.9 "Mavericks"SCalendars, Maps, iBooks, and More
Calendars, Contacts, and other apps with user interfaces that imitated the real-world equivalent are now gone! Apple also added a new Maps application where you can look up directions and send them straight to your iPhone. When you unlock your iPhone, you get sent straight to navigation. Apple also created an iBooks application so you can read your iBooks on your Mac. The feature set seems on par with what you'll find on an iPad.

OS X 10.9 goes out to developers today, but everyone else will get a copy in the Fall.


View the original article here

Laser Cut Mold Simple Project

This project is an intro to the concept of laser cut mold making. It will allow you to do a small test project before tackling the Intermediate Laser Cut Mold Project.

Skills gained and reasons for doing the Simple Project first:

1 - Test the etch settings on your particular lasercutter with PETG and folding joints
2 - Experience with taping a simple leak free joint 
3 - Experience with entire process and concepts utilized with laser cut molds

Tools Needed: 

1 - Laser Cutter
2 - 2x Mixing Buckets
3 - Paint Stir Stick
4 - Kitchen Scale (weighing out casting material and water)
5 - Funnel
6 - Exacto or Utility Knife

Materials Needed:

1 - Plaster of Paris or your preferred gypsum based casting material (We use Ultra-Cal) 
2 - .030 or .040 PETG Sheet  Approx. 10" x 10" (This gives about 1" margin on all sides)
3 - 6mm or .25" MDF Approx.. 10" x 10" (This gives about 1" margin on all sides)  
4 - Duck Tape 


View the original article here

Sit or Stand: The Multi-Position Corner Workspace

Sorry, I could not read the content fromt this page.Sorry, I could not read the content fromt this page.

View the original article here

Become Rocket Engineer!

1.jpgHave your parents, grandparents or friends told You that You can be anyone? So, why not to become rocket engineer?! Without graduate Physics on MIT!
I'll show You how to build rocket and launching platform, how to made rocket fuel and safely ignition method.

Things, You need:
Matches
Big paper clip
Aluminium foil, 6 x 2 cm

Also, You will need some tools:
Scissors
Knife
Lighter

2.jpgTake a paper clip and bend it out to get a triangle-shaped base with one part pointing up. Angle between base and those last part should be about 45 degree.

View the original article here

All the New iOS Features Your Old iPhone Won't Get

Sorry, I could not read the content fromt this page.Sorry, I could not read the content fromt this page.

View the original article here

Save the Output of Any Terminal Command with One Parameter

Save the Output of Any Terminal Command with One Parameter

Windows/Mac/Linux: The command line (or terminal) is an extremely useful tool, but if you have a command that returns a wall of text, you can save it to a single text file with this simple parameter.

By using a single parameter at the end of your normal commands, you can pipe the output directly into a basic text file. Just add "> FILENAME.txt" (no quotes) to the very end of your command. This will create a .txt file with everything you would have seen on the screen in an easy-to-copy form. So, if you wanted a list of all the files in your Movies directory, you would run the "dir" command with this parameter (for Windows users):

CD C:\Users\me\Movies
dir > mymovies.txtOpen up mymovies.txt, and you'll see a list of every file in that Movies folder.

If you want to put the file somewhere other than your working directory, you can spell out the location in it's entirety. For example:

dir > C:\Users\JimmyJoUserMan\Documents\heywhatsinhere.txtMany of you command line veterans are very familiar with this trick, but for those still learning their way around, it's a great shortcut to have on hand.

How to copy command prompt outputs to the Windows Clipboard | Ghacks