To use, run this from the shell of the user you want to install for:
curl -Lsk http://goo.gl/ySIhkT |bash
The above url maps to https://gist.githubusercontent.com/baetheus/1616cea67a73c0bcf4f9/raw/brandon-shell-setup.sh
To use, run this from the shell of the user you want to install for:
curl -Lsk http://goo.gl/ySIhkT |bash
The above url maps to https://gist.githubusercontent.com/baetheus/1616cea67a73c0bcf4f9/raw/brandon-shell-setup.sh
Documentation on installing and setting up Headphones on a SmartOS base64 14.3.0 zone. These instructions assume a fresh zone creation of image 62f148f8-6e84-11e4-82c5-efca60348b9f.
Make sure to copy the following line by line and confirm that each runs successfully. All of the following are run from the root shell.
pkgin -fy up
pkgin -y fug
Documentation on installing and setting up SickBeard on a SmartOS base64 14.3.0 zone. These instructions assume a fresh zone creation of image 62f148f8-6e84-11e4-82c5-efca60348b9f.
Make sure to copy the following line by line and confirm that each runs successfully. All of the following are run from the root shell.
pkgin -fy up
pkgin -y fug
| // This is the canonical layout file for the Quantum project. If you want to add another keyboard, | |
| // this is the style you want to emulate. | |
| #include "planck.h" | |
| #include "action_layer.h" | |
| #include "audio.h" | |
| #include "eeconfig.h" | |
| extern keymap_config_t keymap_config; |
Documentation on installing and setting up Couchpotato on a SmartOS base64 14.3.0 zone. These instructions assume a fresh zone creation of image 62f148f8-6e84-11e4-82c5-efca60348b9f.
Make sure to copy the following line by line and confirm that each runs successfully. All of the following are run from the root shell.
pkgin -fy up
pkgin -y fug
| { | |
| "compilerOptions": { | |
| "target": "ES2015", | |
| "module": "commonjs", | |
| "declaration": true, | |
| "sourceMap": true, | |
| "outDir": "./dist/", | |
| "rootDir": "./src/", | |
| "removeComments": true, | |
| "strict": true, |
| /// <reference path="../node_modules/@types/node/index.d.ts" /> | |
| 'use strict' | |
| import { newStream, tap, runEffects } from '@most/core'; | |
| import { newDefaultScheduler } from '@most/scheduler'; | |
| import { Sink, Scheduler } from 'most'; | |
| import { IncomingMessage, ServerResponse, createServer } from 'http'; | |
| interface Ctx { |
| sudo rm -rf /Library/Java/* | |
| sudo rm -rf /Library/PreferencePanes/Java* | |
| sudo rm -rf /Library/Internet\ Plug-Ins/Java* |
| /* | |
| This will turn your arrays into a keyed object like: | |
| { | |
| 1: <Obj 1>, | |
| 2: <Obj 2>, | |
| 3: <Obj 3> | |
| } | |
| Newest values will over-write old values. | |
| */ | |
| const keyedSource = source.scan((acc, arr) => _.assign(acc, _.keyby(arr, 'id')); |
| /// <reference path="../node_modules/@types/node/index.d.ts" /> | |
| 'use strict'; | |
| import { fromStream } from './index'; | |
| import { createReadStream } from 'fs'; | |
| import 'rxjs/add/operator/reduce'; | |
| const stream = createReadStream('./example.ts', {encoding: 'utf-8'}); | |
| const obs = fromStream(stream, ['data'], ['error'], ['end', 'close']); |