Skip to content

Instantly share code, notes, and snippets.

View pasela's full-sized avatar

Yuki pasela

  • Japan
View GitHub Profile
@pasela
pasela / README.md
Created August 22, 2012 06:18
mintty: A soft pastel color theme(xoria256) for mintty

A soft pastel color theme for mintty

This is ported version of color theme xoria256.

screenshot

Settings

Merge mintty-color-xoria256-rc into your .minttyrc

@pasela
pasela / svn2git.md
Created August 31, 2012 10:14
SubversionのリポジトリからGitのbareリポジトリへの移行

SubversionのリポジトリからGitのbareリポジトリへの移行

手順

git init --bare --shared=true foo.git
cd foo.git
git --bare svn init -s file:///path/to/svn/repo
git --bare svn fetch
@pasela
pasela / gist:3685515
Created September 9, 2012 16:37
CentOSでRubyをビルドするときに必要っぽいもの
sudo yum install \
zlib-devel \
openssl-devel \
readline-devel \
iconv-devel \
libffi-devel
@pasela
pasela / error_handling_example.sh
Created November 21, 2012 07:35
[bash]error handling and error report example
#!/bin/bash
#
# error handling and error report example
#
set -e
# logfile
LOGFILE=`mktemp`
@pasela
pasela / ext_logger.rb
Created November 26, 2012 03:00
[ruby] Logger: Use filepath if progname was omitted.
# encoding: utf-8
require 'pathname'
# Set filename if progname was omitted.
class Logger
alias_method :org_add, :add
def add(severity, message = nil, progname = nil, &block)
if message.nil? && !block_given?
message = progname
@pasela
pasela / accessing_current_class_constants.rb
Created December 5, 2012 08:35
[ruby] Accessing current class constants
class Foo
CONST = 'foo'
def put_const
puts [
self.class.name, # (1)
CONST, # (2)
self.class::CONST # (3)
].join(' ')
end
@pasela
pasela / ohai_bench.rb
Created January 25, 2013 09:58
[ruby] Ohai plugins benchmark script
#!/usr/bin/env ruby
# encoding: utf-8
# Ohai Plugin Benchmark
# =====================
#
# Usage: ohai_bench.rb [option] [loop_count]
#
# Options:
# -d PLUGIN_DIR Ohai plugin path
@pasela
pasela / rspec.vim
Created May 27, 2013 05:34
[vim] RSpec filter for ctrlp-funky
" Language: Ruby (rspec)
" Author: pasela
" License: The MIT License
" ctrlp-funky-rspec provides filters for RSpec. It only provides 'describe'
" block by default. You can enable more blocks by options.
"
"
" g:ctrlp_funky_rspec_examples (default: 0)
"
@pasela
pasela / gist:6051206
Last active May 18, 2022 20:34
[alfred] Open ssh in iTerm (Alfred Workflow)
tell application "iTerm"
activate
tell the first terminal
set ssh_session to (make new session at end of sessions)
tell ssh_session
exec command "ssh {query}"
end tell
end tell
end tell
@pasela
pasela / padat.vim
Last active December 21, 2015 09:19
[vim] A dark color theme for vim-airline
" vim-airline theme
"
" padat
" A dark color theme for vim-airline.
"
" Author: Yuki <paselan at Gmail.com>
" Last Change: Wed, 21 Aug 2013 09:53:56 +0900
"
" License: MIT License {{{
" Permission is hereby granted, free of charge, to any person obtaining