- redstickmetal.com
- BR/NO/LA metal scene
- Bands
- Events
- Blog?
- BR/NO/LA metal scene
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
wget http://pyyaml.org/download/libyaml/yaml-0.1.4.tar.gz | |
tar xzvf yaml-0.1.4.tar.gz | |
cd yaml-0.1.4 | |
./configure --prefix=/usr/local | |
make | |
make install | |
cd | |
wget http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p392.tar.gz | |
tar xzvf ruby-1.9.3-p392.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
git clone git://github.com/sstephenson/rbenv.git ~/.rbenv | |
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile | |
echo 'eval "$(rbenv init -)"' >> ~/.bash_profile | |
exec $SHELL -l | |
git clone git://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build | |
exec $SHELL -l | |
rbenv install 1.9.3-p374 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install some deps with yum | |
yum install -y gcc openssl-devel libyaml-devel libffi-devel readline-devel zlib-devel gdbm-devel ncurses-devel libcurl-devel | |
# Install ngx_pagespeed | |
cd /usr/local/src | |
NPS_VERSION=1.9.32.2 | |
wget https://github.com/pagespeed/ngx_pagespeed/archive/release-${NPS_VERSION}-beta.zip | |
unzip release-${NPS_VERSION}-beta.zip | |
cd ngx_pagespeed-release-${NPS_VERSION}-beta/ | |
wget https://dl.google.com/dl/page-speed/psol/${NPS_VERSION}.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function scanRemove(cursor, prefix, count) { | |
return redis | |
.scan(cursor, 'MATCH', `${prefix}*`, 'COUNT', count) | |
.then(([cur, keys]) => redis.del(keys).then(() => Promise.resolve(cur))) | |
.then(cur => (cur !== 0 && cur !== '0') ? scanRemove(cur, prefix, count) : Promise.resolve()); | |
} | |
function removeAllMatching(prefix, count=10) { | |
return scanRemove(0, prefix, count) | |
.catch(err => {throw new Error(`Scan-remove failed: ${err.message}`);}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# add `export COREOS_DOCKER_HOST_IP=some-ip-address` to your .bashrc or .zshrc | |
function echo_usage_and_exit() | |
{ | |
echo "Usage: coreos-sync local_path_to_sync remote_dir_to_sync_into [options]" | |
echo "Options:" | |
echo "\t-w\t\t(watches/resyncs on changes)" | |
echo "\t-v\t\t(enable verbose mode)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Usage: | |
# file-event-watch command-to-run path1 [path2, ...] | |
# TODO: Add fswatch event option to enable/disable different event types | |
cmd=$1 | |
shift | |
files=$@ | |
$cmd && fswatch -0 -x -r $files | { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Desk < Formula | |
desc "Lightweight workspace manager for the shell" | |
homepage "https://github.com/jamesob/desk" | |
url "https://github.com/jamesob/desk/archive/v0.3.1.tar.gz" | |
sha256 "b687e2cfa742f763d689391f67a5b5225324e282a0fed100487b1570988d7758" | |
def install | |
bin.install "desk" | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>homebrew.mxcl.nginx</string> | |
<key>RunAtLoad</key> | |
<true/> | |
<key>KeepAlive</key> | |
<true/> |
⋊> ~ func-description func-description
Gets the description of a function
⋊> ~
OlderNewer