Skip to content

Instantly share code, notes, and snippets.

View bibstha's full-sized avatar
💭
🇳🇵🇨🇦

Bibek Shrestha bibstha

💭
🇳🇵🇨🇦
  • Vancouver, Canada
  • 11:43 (UTC -07:00)
View GitHub Profile
@bibstha
bibstha / work.py
Created June 30, 2020 20:09
Convert a csv with one column (latency / other time metric)
# must do `pip install hdrhistogram`
# uses package https://github.com/HdrHistogram/HdrHistogram_py
# This file can be used to convert a csv with one column (latency / other time metric)
# into hgrm file format which can then be plotted with http://hdrhistogram.github.io/HdrHistogram/plotFiles.html
#
# Useful to download data from Splunk an generate Percentile distribution
from hdrh.histogram import HdrHistogram
import csv
import sys
@bibstha
bibstha / gist:6c36870990ca86f94c19ba6b40a63b04
Created January 14, 2020 04:40
Set tslime panes to newly opened tmux window
# Run this in vim
:let g:tslime={'window':1,'pane':1,'session':0}
@bibstha
bibstha / ctags.rb
Created April 7, 2019 22:00
Multiprocess threaded ctags generation with ripper-tags
#!/usr/bin/env ruby
require 'etc'
require 'shell'
def ruby_files
@ruby_files ||= %x{git ls-files | grep 'rb$'}.lines.map!(&:chomp)
end
dir = %x{git rev-parse --git-dir}.chomp
@bibstha
bibstha / gist:934990fd24705210f570770aef6bb036
Created February 25, 2019 02:10 — forked from xdite/gist:1641818
RR-020 RR Object Oriented Programming in Rails with Jim Weirich http://asciirogues.com/

Jim: What I really like is that there are so many Ruby podcasts out there that are newsy. This one dives into technical issues, and I really enjoy that.

Charles: Hey everybody, and welcome back to the Ruby Rhodes podcast. This is your host Charles Max Wood, and this week on our panel we have a special guest rogue. I met him at the Rocky Mountain Ruby Conference in Boulder. He actually suggested this week's topic, so we're going to welcome Jim Weirich to the podcast.

Jim: Thanks for having me. Glad to be here.

Charles: Do you want to introduce yourself really quickly Jim for those one or two people that don't know who you are?

Jim: Sure, absolutely. Jim Weirich. I'm from Cincinnati, Ohio. I've been doing Ruby for over ten years now. I work for EdgeCase. I'm the chief scientist, and I've probably written software that you are using, such as Rake and various mocking frame works and some XML builder stuff, too. You're probably using some of my code somewhere.

require "bundler/inline"
gemfile(true) do
source 'https://rubygems.org'
gem 'concurrent-ruby-edge', require: 'concurrent-edge'
gem 'concurrent-ruby-ext'
end
require 'concurrent/channel'
require "bundler/inline"
gemfile(true) do
source 'https://rubygems.org'
gem 'concurrent-ruby-edge', require: 'concurrent-edge'
gem 'concurrent-ruby-ext'
end
require 'concurrent/channel'
@bibstha
bibstha / recipe.rb
Created May 18, 2016 12:42
recipe.rb
# step 1
git "/path/to/folder" do
repository "myrepo"
action :sync
end
# step 2
rubyversion = library_get_ruby_version_from_git_folder("/path/to/folder")
# step 3
@bibstha
bibstha / deploy.rb
Created September 16, 2013 09:54
Integrate whenever with capistrano. Add the following lines to automatically update crontab after cap deploy
set :whenever_command, "bundle exec whenever"
set :whenever_identifier, defer { "#{:myappname}_#{:production}" }
require "whenever/capistrano"
after "deploy:restart", "whenever:update_crontab"
module Quackable
def self.included(base)
base.extend ClassMethods
end
module ClassMethods
def has_voice(word)
@words ||= []
@words << word
end

Some intermediate tips for VIM enthusiasts

In the beginning, there was the basics:

Command Mode
i - Insert Mode
a - Insert after the character
I - Insert at the beginning of the line
A - Insert at the end of the line