Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts of models in prod eagerly sought.
| #!/bin/sh | |
| brew install rbenv/tap/openssl@1.0 | |
| brew install bison@2.7 | |
| OPENSSL_1_0_DIR=$(brew --prefix rbenv/tap/openssl@1.0) | |
| alias bison="/usr/local/opt/bison@2.7/bin/bison" | |
| export CPPFLAGS=-I${OPENSSL_1_0_DIR}/include | |
| export LDFLAGS=-L${OPENSSL_1_0_DIR}/lib |
| 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 |
| ''' | |
| You'll need to pip install some dependencies: | |
| * python-dateutil | |
| * requests | |
| Also, populate your EMAIL and PASSWORD below. | |
| ''' | |
| from xml.etree import ElementTree |
A collection of information about accessing raw MultiTouch events on MacOS.
Compiled while building mtif (a MultiTouch interface for common lisp).
| // Install the latest Xcode, with the Command Line Tools. | |
| // Install Homebrew | |
| // Install aircrack-ng: | |
| brew install aircrack-ng | |
| // Create the following symlink: | |
| sudo ln -s /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport /usr/local/sbin/airport | |
| // Figure out which channel you need to sniff: | |
| sudo airport -s |
FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.
| # see https://www.topbug.net/blog/2013/04/14/install-and-use-gnu-command-line-tools-in-mac-os-x/ | |
| # core | |
| brew install coreutils | |
| # key commands | |
| brew install binutils | |
| brew install diffutils | |
| brew install ed --default-names | |
| brew install findutils --with-default-names |