Skip to content

Instantly share code, notes, and snippets.

curl $(cat url) | pup 'a[href^="magnet:"] attr{href}' | aria2c -i -
@yachi
yachi / INSTALL.md
Last active August 29, 2015 13:56 — forked from sztupy/INSTALL.md

rage-quit plugin for oh-my-zsh

based on rage-quit support for bash

HOW TO INSTALL

Put the files below inside ~/.oh-my-zsh/custom/plugins/fuck

Also chmod a+x the flip command.

@yachi
yachi / test.rb
Last active December 21, 2015 08:49 — forked from anonymous/test.rb
def runner(v1, &block)
puts v1
yield(v1) if block_given?
end
runner "jithub"
runner "OHAI" do |v1|
puts "ARRAR"
puts v1