!$
- Last argument of previous command
CMD-shift-H
- Paste historyCMD-;
- Start typing word, will use history and show top 20 choices
#!/bin/bash | |
# -------------------------------------------------------------------------------------------- | |
# Installs Ruby 2.6.8 using rbenv/ruby-build on the Raspberry Pi OS | |
# | |
# Run from the web: | |
# bash <(curl -sL https://gist.githubusercontent.com/bmatheny/f7cef71291d1ea3175b6d9d1bf312a3e/raw/install_ruby_rpi.sh) | |
# -------------------------------------------------------------------------------------------- | |
# Welcome message |
{ | |
"anytime" : [ | |
"I'm lucky to be your mirror!", | |
"The Force is strong with you", | |
"If I could high five you... I would!", | |
"On a scale from 1 to 10, you're an 15!", | |
"Being awesome is hard, but you'll manage", | |
"I could just hang here all day!", | |
"Looking good!", | |
"May the Force be with you", |
-- previous track | |
on is_running(appName) | |
tell application "System Events" to (name of processes) contains appName | |
end is_running | |
if is_running("Spotify") then | |
tell application "Spotify" | |
previous track | |
end tell |
package com.tumblr.fibr.service.filter | |
import com.tumblr.fibr.config.FilterConfig | |
import com.tumblr.fibr.tsdb.{TsdbRequest, TsdbResponse} | |
import com.google.common.cache.{Cache, CacheBuilder} | |
import com.twitter.finagle.Service | |
import com.twitter.util.Future | |
import java.util.concurrent.{Callable, TimeUnit} | |
/** |
% pry | |
[1] pry(main)> puts "Hello, world!" | |
Hello, world! | |
=> nil | |
[2] pry(main)> name = "Cecilia" | |
=> "Cecilia" | |
[3] pry(main)> puts "Hello, #{names}" | |
NameError: undefined local variable or method `names' for main:Object | |
from (pry):3:in `__pry__' | |
[4] pry(main)> wtf? |
# Run this script to install ruby 1.9.2-p290 under rbenv | |
VERSION=1.9.2-p290 | |
brew update | |
brew install rbenv ruby-build rbenv-vars readline | |
if [ -n "${ZSH_VERSION:-}" ]; then | |
echo 'eval "$(rbenv init - --no-rehash)"' >> ~/.zshrc | |
else | |
echo 'eval "$(rbenv init - --no-rehash)"' >> ~/.bash_profile | |
fi |
include "validations.conf" | |
collins_conf_dir = "/Users/bmatheny/Downloads/collins/conf" | |
# Secret key | |
# ~~~~~ | |
# The secret key is used to secure cryptographics functions. | |
# If you deploy your application to several instances be sure to use the same | |
# key! | |
application.secret="AbFgHx0eJx8lalkja812389uasdlkajsdlka98012398uasdlkasdklajsd81298" |
require 'formula' | |
class Vim < Formula | |
homepage 'http://www.vim.org/' | |
version '7.3.666' | |
url 'https://vim.googlecode.com/hg/', :revision => '1e22adc6176e' | |
head 'https://vim.googlecode.com/hg/' | |
def ruby_bin |
#!/bin/sh | |
# | |
# foo init.d script. | |
# | |
# All java services require the same directory structure: | |
# /usr/local/$APP_NAME | |
# /var/log/$APP_NAME | |
# /var/run/$APP_NAME | |
APP_NAME="foo" |