gem install tmuxinator
# File: ~/.tmuxinator/project-name.yml
name: project-name
| SPC s c remove highlight | |
| **** Files manipulations key bindings | |
| Files manipulation commands (start with ~f~): | |
| | Key Binding | Description | | |
| |-------------+----------------------------------------------------------------| | |
| | ~SPC f c~ | copy current file to a different location | | |
| | ~SPC f C d~ | convert file from unix to dos encoding | | |
| | ~SPC f C u~ | convert file from dos to unix encoding | |
| stats = Sidekiq::Stats.new | |
| stats.queues | |
| stats.enqueued | |
| stats.processed | |
| stats.failed |
| # in /etc/systemd/system | |
| [Unit] | |
| Description=Bluetooth Agent | |
| [Service] | |
| ExecStart=/usr/bin/bt-agent -c NoInputNoOutput | |
| Type=simple | |
| [Install] | |
| WantedBy=multi-user.target |
| source :rubygems | |
| gem "puma" | |
| gem "sinatra" |
| *.gem | |
| *.rbc | |
| /.config | |
| /coverage/ | |
| /InstalledFiles | |
| /pkg/ | |
| /spec/reports/ | |
| /spec/examples.txt | |
| /test/tmp/ | |
| /test/version_tmp/ |
| require 'thread' | |
| class AsyncConsole | |
| # | |
| # Creates a new Asynchronous Console, within the given context. | |
| # | |
| # @param [Module] context | |
| # The context to evaluate code within. | |
| # |
| # A simple plugin for Jekyll that allows you to use {% url "alt text" %} to add images to your posts. | |
| # It will automatically check those images for width and height. | |
| # | |
| # Requires http://imagesize.rubyforge.org/ | |
| require 'image_size' | |
| require 'open-uri' | |
| module Jekyll |