Get it from the App Store.
In XCode's Preferences > Downloads you can install command line tools.
| <select> | |
| <option value="AL">Alabama</option> | |
| <option value="AK">Alaska</option> | |
| <option value="AZ">Arizona</option> | |
| <option value="AR">Arkansas</option> | |
| <option value="CA">California</option> | |
| <option value="CO">Colorado</option> | |
| <option value="CT">Connecticut</option> | |
| <option value="DE">Delaware</option> | |
| <option value="FL">Florida</option> |
| do ($ = jQuery) -> | |
| # call your plugins here, man | |
| return |
| /*! | |
| * jQuery namespaced 'Starter' plugin boilerplate | |
| * Author: @dougneiner | |
| * Further changes: @addyosmani | |
| * Licensed under the MIT license | |
| */ | |
| ;(function($) { | |
| // Create the Caesars namespace if it doesn't exist |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>name</key> | |
| <string>Solarized (dark)</string> | |
| <key>settings</key> | |
| <array> | |
| <dict> | |
| <key>settings</key> |
| /* ============================================================================= | |
| @title Organizing JavaScript with Namespaces and Function Prototypes | |
| @author by Jimmy Cuadra | |
| @source http://jimmycuadra.com/posts/organizing-javascript-with-namespaces-and-function-prototypes | |
| */ | |
| // file : main.js | |
| if (typeof MTNT == 'undefined'){ | |
| MTNT = {}; | |
| } |
| # Keep track of how many times the event as been triggered versus how many times | |
| # the timer has been fired. | |
| resizeFiredTotal = 0 | |
| reizeFiredCounter = 0 | |
| # Bind a resize event to the window | |
| $(window).on 'resize', (e) -> | |
| # Increment the resize fired event by 1 | |
| resizeFiredTotal += 1 |
Wear sunscreen.
If I could offer you only one tip for the future, sunscreen would be it. The long-term benefits of sunscreen have been proved by scientists, whereas the rest of my advice has no basis more reliable than my own meandering experience. I will dispense this advice now.
Enjoy the power and beauty of your youth. Oh, never mind. You will not understand the power and beauty of your youth until they've faded. But trust me, in 20 years, you'll look back at photos of yourself and recall in a way you can't grasp now how much possibility lay before you and how fabulous you really looked. You are not as fat as you imagine.
Don't worry about the future. Or worry, but know that worrying is as effective as trying to solve an algebra equation by chewing bubble gum. The real troubles in your life are apt to be things that never crossed your worried mind, the kind that blindside you at 4 p.m. on some idle Tuesday.
Do one thing every day that scares you.
| # Infinite Carousel Plugin | |
| do ($ = jQuery, window = window) -> | |
| pluginName = 'infiniteCarousel' | |
| document = window.document | |
| defaults = | |
| onInit: -> | |
| onNext: -> | |
| onPrev: -> |
| window.dimensions = {} | |
| window.getDimensions = -> | |
| window.dimensions.winX = $(window).width() | |
| window.dimensions.winY = $(window).height() | |
| window.dimensions.docX = $(document).width() | |
| window.dimensions.docY = $(document).height() | |
| return | |
| window.resizeDelay = do -> |