Homebrew is a great little package manager for OS X. If you haven't already, installing it is pretty easy:
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"| Mute these words in your settings here: https://twitter.com/settings/muted_keywords | |
| ActivityTweet | |
| generic_activity_highlights | |
| generic_activity_momentsbreaking | |
| RankedOrganicTweet | |
| suggest_activity | |
| suggest_activity_feed | |
| suggest_activity_highlights | |
| suggest_activity_tweet |
| import Prelude hiding (lookup) | |
| class MapLike m where | |
| empty :: m k v | |
| lookup :: Ord k => k -> m k v -> Maybe v | |
| insert :: Ord k => k -> v -> m k v -> m k v | |
| delete :: Ord k => k -> m k v -> m k v | |
| fromList :: Ord k => [(k,v)] -> m k v | |
| newtype ArrowMap k v = ArrowMap { getArrowMap :: k -> Maybe v } |
| // Modified from: http://www.labnol.org/internet/gmail-auto-purge/27605/ | |
| // Labels to support | |
| // Delete after 15 days | |
| // Delete after 30 days | |
| // Delete after 90 days | |
| var days = [15,30,90]; | |
| function Intialize() { | |
| return; |
| --- | |
| admin: | |
| access_log_path: "/tmp/admin_access.log" | |
| address: | |
| socket_address: | |
| address: "127.0.0.1" | |
| port_value: 9901 | |
| stats_sinks: | |
| - | |
| name: "envoy.statsd" |
| Linux / OS X: | |
| export npm_config_strict-ssl=false | |
| npm install npm -g --ca=null | |
| npm --version | |
| unset npm_config_strict-ssl | |
| Windows: |
| { | |
| // http://eslint.org/docs/rules/ | |
| "ecmaFeatures": { | |
| "binaryLiterals": false, // enable binary literals | |
| "blockBindings": false, // enable let and const (aka block bindings) | |
| "defaultParams": false, // enable default function parameters | |
| "forOf": false, // enable for-of loops | |
| "generators": false, // enable generators | |
| "objectLiteralComputedProperties": false, // enable computed object literal property names |
| /* Useful celery config. | |
| app = Celery('tasks', | |
| broker='redis://localhost:6379', | |
| backend='redis://localhost:6379') | |
| app.conf.update( | |
| CELERY_TASK_RESULT_EXPIRES=3600, | |
| CELERY_QUEUES=( | |
| Queue('default', routing_key='tasks.#'), |
| // create file: | |
| sudo vim /usr/share/applications/intellij.desktop | |
| // add the following | |
| [Desktop Entry] | |
| Version=13.0 | |
| Type=Application | |
| Terminal=false | |
| Icon[en_US]=/home/rob/.intellij-13/bin/idea.png | |
| Name[en_US]=IntelliJ |
Work in progress, I'll write this up properly when I'm done.
Almost all credit goes to @maxogden for putting me on to this and pointing me in the right direction for each of these items.
Prerequisites: