Install emacs
http://robert-adesam.blogspot.ca/2011/01/emacsclient-setup-on-windows-7-starter.html
Add directory bin to path.
Use this code for a desktop/task-bar shortcut:
::::::::::::::::::::::::::::::::::::::::::::::::::
:::
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
Install emacs
http://robert-adesam.blogspot.ca/2011/01/emacsclient-setup-on-windows-7-starter.html
Add directory bin to path.
Use this code for a desktop/task-bar shortcut:
::::::::::::::::::::::::::::::::::::::::::::::::::
:::
sudo su - groove
cd groovebasin
tmux
taskset -c 0 npm start
#How do I export prores videos from Adobe Premiere?
C:\ffmpeg\ffmpeg-20140608-git-d4be3a8-win64-shared\bin\ffmpeg -i AloneTogether.avs -r 23.976 -vcodec prores -profile 3 AloneTogether.1280x540.prores422.mov# Prores workflow
Importing prores into Adobe Premiere works fine.
git clone https://github.com/jystic/network-info.git | |
curl https://gist.githubusercontent.com/fire/5a5236653f4ad5099321/raw/db7518eef55a37ed57811716811c553fec701ac9/network-info.patch > network-info.patch | |
patch network-info/cbits/network-unix.c network-info.patch | |
mkdir test | |
cd test/ | |
cabal sandbox init | |
cabal sandbox add-source ../network-info | |
cabal install git-annex --bindir=$HOME/bin -f"-assistant -webapp -webdav -pairing -xmpp -dns" |
These instructions are for Ubuntu. The procedure for Debian, Mint, or other distributions in the DEB family is similar but not identical.
Computers that have less than 2GB of memory run ZFS slowly. 4GB of memory is recommended for normal performance in basic workloads. 16GB of memory is the recommended minimum for deduplication. Enabling deduplication is a permanent change that cannot be easily reverted.
zpool create -f -o ashift=12 -O atime=off -O canmount=off -O compression=lz4 -O mountpoint=/ -R /mnt -O normalization=formD rpool mirror /dev/sda /dev/sdb | |
zpool export rpool | |
## 4 HDDs | |
# for disk in a b c d; do parted -s /dev/sd$disk mkpart GRUB2 48s 2047s; parted -s /dev/sd$disk set 2 bios_grub on; done | |
# 2 HDDs | |
for disk in a b; do parted -s /dev/sd$disk mkpart GRUB2 48s 2047s; parted -s /dev/sd$disk set 2 bios_grub on; done | |
zpool import -d /dev/disk/by-id -R /mnt rpool |
#!upstart | |
# using upstart http://upstart.ubuntu.com/getting-started.html and node forever https://github.com/nodejitsu/forever/ | |
# to run server | |
# redhat has additional sudo restrictions, you must comment out 'Default requiretty' from /etc/sudoers | |
#startup monitoring script derived from http://stackoverflow.com/questions/11084279/node-js-setup-for-easy-deployment-and-updating | |
description "node.js groovebasin server" | |
author "fire" | |
env PROGRAM_NAME="nodejs" | |
env FULL_PATH="/home/groove/groovebasin/" |
Sat, 28 Jun 2014 20:42:02 -0700 | |
<iFire> How do you adjust the quality of the stream and the output format? | |
<andrewrk> iFire, it's hard coded at the moment | |
<iFire> I want to change the hard code | |
<andrewrk> lib/player.js line 290 | |
<andrewrk> this.grooveEncoder.bitRate = 256 * 1000; | |
<andrewrk> do you want to make it something other than mp3? | |
<iFire> yeah | |
<andrewrk> which? | |
<iFire> andrewrk: I want to see if I can output alac |