in OS X 10.4 to macOS sierra 10.12 and maybe higher!
Copy this entire code block and paste it into your terminal and push Return to create this file for you with correct permissions. It will (probably) ask for your password:
in OS X 10.4 to macOS sierra 10.12 and maybe higher!
Copy this entire code block and paste it into your terminal and push Return to create this file for you with correct permissions. It will (probably) ask for your password:
| const R = require('ramda'); | |
| const permutations = (tokens, subperms = [[]]) => | |
| R.isEmpty(tokens) ? | |
| subperms : | |
| R.addIndex(R.chain)((token, idx) => permutations( | |
| R.remove(idx, 1, tokens), | |
| R.map(R.append(token), subperms) | |
| ), tokens); |
| [ | |
| { | |
| "class": "sidebar_label", | |
| "color": [0, 0, 0], | |
| "font.bold": false, | |
| "font.size": 13 | |
| }, | |
| { | |
| "class": "tab_label", | |
| "font.size": 12, |
| //usr/bin/env go run $0 "$@"; exit | |
| package main | |
| import ( | |
| "fmt" | |
| "os" | |
| ) | |
| func main() { | |
| fmt.Println("Hello world!") |
| /* Load plugins */ | |
| var gulp = require('gulp'), | |
| sass = require('gulp-ruby-sass'), | |
| watch = require('gulp-watch'), | |
| jshint = require('gulp-jshint'), | |
| notify = require('gulp-notify'), | |
| uncss = require('gulp-uncss'), | |
| zopfli = require("gulp-zopfli"), | |
| connect = require('gulp-connect'), | |
| minifyhtml = require('gulp-minify-html'), |
http://stackoverflow.com/questions/24380159/corebluetooth-and-wifi-interference
http://lists.apple.com/archives/bluetooth-dev/2013/Aug/msg00023.html
This is a well known issue, and it has a solution that is confirmed to work for the Mac side.
sudo defaults write /Library/Preferences/com.apple.airport.bt.plist bluetoothCoexMgmt Hybrid
After you run this script, the issue will go away and BT connections will remain stable.
These rules are adopted from the AngularJS commit conventions.
These instructions will guide you through the process of setting up local, trusted websites on your own computer.
These instructions are intended to be used on macOS Sierra, but they have been known to work in El Capitan, Yosemite, Mavericks, and Mountain Lion.
NOTE: You may substitute the edit command for nano, vim, or whatever the editor of your choice is. Personally, I forward the edit command to Sublime Text:
alias edit="/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl"(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
Previous versions used homebrew to install the various versions. As suggested in the comments, it's better to use pyenv instead. If you are looking for the previous version of this document, see the revision history.
$ brew update
$ brew install pyenv
$ pyenv install 3.5.0
$ pyenv install 3.4.3
$ pyenv install 3.3.6
$ pyenv install 3.2.6
$ pyenv install 2.7.10
$ pyenv install 2.6.9