Skip to content

Instantly share code, notes, and snippets.

@britishtea
britishtea / jump.fish
Last active April 5, 2016 01:03
Bookmarking directories in the fish shell. Copy the file to $fish_function_path (~/.config/fish/functions by default) as jump.fish to install.
function jump -d "Jumps to a marked directory"
# If $JUMP_PATH isn't set, use a default (~/.config/jump).
if set -q $JUMP_PATH
set JUMP_PATH $HOME/.config/jump
end
# If the $JUMP_PATH directory doesn't exist, create it.
if not test -d $JUMP_PATH
mkdir -p $JUMP_PATH
end
@britishtea
britishtea / fish_right_prompt.fish
Last active February 17, 2024 22:20
My right prompt for the fish shell.
function fish_right_prompt -d "Write out the right prompt"
set -l exit_code $status
set -l is_git_repository (git rev-parse --is-inside-work-tree 2> /dev/null)
set -l max_shlvl 1; and test "$TERM" = "screen"; and set -l max_shlvl 2
# Print a fork symbol when in a subshell
if test $SHLVL -gt $max_shlvl
set_color yellow
echo -n "⑂ "
set_color normal
@britishtea
britishtea / benchmark.rb
Created February 20, 2015 20:56
Is _ as an argument name optimized or just a convention?
def does_care(*a)
"hi"
end
def cares_a_little(*_a)
"hi"
end
def does_not_care(*_)
"hi"
@britishtea
britishtea / _instructions.txt
Last active July 13, 2016 08:49
Run terco on login on Mac OS X
This are instructions to run terco on login on Mac OS X.
1. Install terco using the system ruby (sudo gem install terco).
2. Copy the script below to ~/Library/LaunchAgents/com.soveran.terco.plist. You may have to replace `/usr/local/bin/terco`, if terco has been installed to a different directory (use `which terco` to find out).
3. Load the script using the command
sudo launchctl load ~/Library/LaunchAgents/com.soveran.terco.plist
To make a domain resolve to localhost follow these instructions:
- hosts: servers
roles:
- role: server
some_variable:
{{ port }}:
internal: "{{ groups['clients'] }}"
external:
- 1.2.3.4
class RingBuffer
attr_reader :capacity, :size
def initialize(capacity)
@array = Array.new(capacity)
@capacity = capacity
@read_index = 0
@size = 0
end
require "simplecov"
SimpleCov.command_name "unit:#{Process.pid}"
SimpleCov.at_exit do
orig, $stdout = $stdout, File.open("/dev/null", "w")
SimpleCov.result.format!
$stdout, orig = orig, nil
end
SimpleCov.start
class Foo
def self.bar(&block)
instance_exec(&block)
end
attr_accessor :x
end
Foo.bar do
x = 5