Skip to content

Instantly share code, notes, and snippets.

View yanana's full-sized avatar
🦄
✨🦐✨

5hun Yanaura yanana

🦄
✨🦐✨
View GitHub Profile
@yanana
yanana / skill_sets.md
Last active August 29, 2015 14:03
My Skill Sets

Skill Sets

OSes

UNIX(-like)es(FreeBSD, Linux, Solaris, AIX), Mac OS X

Programming Languages/Libraries

  • Scala
@yanana
yanana / private.xml
Created July 9, 2014 05:47
ITerm2.app/Terminal.appで,Esc/C-[/C-cを押下すると英数入力にして入力モードにするやつ(c.f. http://r7kamura.hatenablog.com/entry/20110217/1297910068
<?xml version="1.0"?>
<root>
<list>
<item>
<name>LeaveInsMode with EISUU(Terminal)</name>
<identifier>private.app_terminal_esc_with_eisuu</identifier>
<only>TERMINAL</only>
<autogen>__KeyToKey__ KeyCode::ESCAPE, KeyCode::ESCAPE, KeyCode::JIS_EISUU</autogen>
<autogen>__KeyToKey__ KeyCode::BRACKET_LEFT, ModifierFlag::CONTROL_L, KeyCode::ESCAPE, KeyCode::JIS_EISUU</autogen>
<autogen>__KeyToKey__ KeyCode::C, ModifierFlag::CONTROL_L, KeyCode::ESCAPE, KeyCode::JIS_EISUU</autogen>
@yanana
yanana / laravel4_add_db_connection_dynamically.php
Created December 8, 2013 19:32
Laravel 4で動的にDBのコネクションを追加する
use Illuminate\Database\Capsule\Manager as Capsule;
$capsule = new Capsule;
// DB毎の情報
$capsule->addConnection(array(
'driver' => '',
'host' => '',
'database' => '',
'username' => '',
'password' => '',