Skip to content

Instantly share code, notes, and snippets.

View jj1bdx's full-sized avatar
🏠
Working from home

Kenji Rikitake jj1bdx

🏠
Working from home
View GitHub Profile

Today is my last day at Basho.

I've been staring at this buffer for twenty minutes now, trying to figure out how to capture the tumult of feelings I have on the topic. I've had the honor of working with some amazingly sharp people who have changed the way I look at teams, code and life. I leave Basho knowing that I'm a better, more complete person than when I joined and I'm deeply grateful for it. It's a bittersweet thing to turn and start a next adventure.

At the same time, I'm deeply excited to be joining the team at Singly and work to make the world a more connected place. I'm looking forward to getting back to my early-stage roots and all the uncertainty and promise these types of endeavours encompass.

So to my Basho coworkers, know that I leave with a grateful and humbled heart to have had the opportunity to work with you. I hope to work with many of you again in the future and believe you will go on to do great things in the world of distributed systems -- as you already have! Go

@kuenishi
kuenishi / gist:4007376
Created November 3, 2012 13:25
erlang-users.jp 新サイト コンテンツ案

このサイトでできるようになると嬉しいこと

  • Erlang/OTPユーザーを増やす (Increase Japanese Erlang/OTP users)
  • Erlang/OTPユーザーを幸福にする (Make Japanese Erlang/OTP users happier)
  • 日本語話者の初心者が最初に見るサイト - いくつも入門サイトはあるが決定版をつくりたい、情報が古かったりする
  • 日本語情報の集約
  • 各種情報のポータル (自動化を信用しない)
  • 日本のErlangコミュニティの歴史を記録する
@koyhoge
koyhoge / lawstudy9th.md
Created October 27, 2015 11:44
エンジニアのための法律勉強会 #9『労働関係で困らないための基礎知識と、困った時の対処法~トラブルの実例と就業規則など』 参加メモ

エンジニアのための法律勉強会 #9『労働関係で困らないための基礎知識と、困った時の対処法~トラブルの実例と就業規則など』 参加メモ

-module(mnesia_repl_and_frag).
-compile([export_all]).
-record(store, {key, value}).
%% Usage:
%% Start secondary node, at first. Not a typo :-)
%% Then start primary at another node.
@koyhoge
koyhoge / report.md
Last active December 8, 2015 05:47
「第26回 さくらの夕べ in 東京 ~さくらで作る大規模分散処理環境~」参加メモ

「第26回 さくらの夕べ in 東京 ~さくらで作る大規模分散処理環境~」参加メモ

さくら田中さんより経緯

  • 分散コンピューティングが一般にも普及している
    • Hadoop が代表
  • 原価計算を行うシステムを作った
@koyhoge
koyhoge / lawstudy10th.md
Last active December 9, 2015 23:26
あなたのコンテンツは大丈夫?クリエイターとエンジニアのための法律勉強会 #10 参加メモ
@kuenishi
kuenishi / Erlang_risk.md
Last active December 14, 2015 09:09 — forked from repeatedly/d_risk.md

ついに顕在化し始めてもいない「Erlang/OTPリスク」

英語圏ではかなり前からErlang/OTPを開発し続けることのリスクについて語られていたが,具体的な弊害が出て来たので,単なるメモ.日本では起こり得ない未来だと思う.

若手エンジニアの不足

COBOLのように需要が逼迫しているのに人材の供給が増えず需給ミスマッチが起っているわけでは無く,需要も供給も増えないという状況下でわずかながら需要が上回っている質の悪い状況がErlang/OTPに起きている.特に深刻なのは高価な若手エンジニアの採用が絶望的に難しいという現実だ.Haskellが台頭して数年経ちScalaがメインストリームの先頭を突っ走る2013年において全く別の関数型言語もどきを勉強しようとする若者はよほどの物好きしかいない.20~30歳のErlang/OTPエンジニアを雇うのはそれほど難しい上にコストがかかる.優秀な30代前半の若手エンジニアを雇いたいという企業の思いとは裏腹にErlang/OTP新たに学ぶ若者は絶滅寸前だ.

とても優秀な若手を雇用できるチャンスが巡って来た.採用担当者はこう尋ねる.「Erlang/OTPは習得していますか?」「もちろんRuby/Scalaはお手の物です.Haskellもある程度可能です」「もう一度伺いますがErlang/OTPまたはCは習得していますか?」「申し訳ございません 未習得です」

@umq
umq / devel_luaposix.shar
Last active December 16, 2015 02:49
FreeBSD ports patch to make lang/lua52 honor Mk/bsd.lua.mk
# This is a shell archive. Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file". Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
# devel/luaposix
# devel/luaposix/files
# devel/luaposix/files/patch-lposix.c
@maxlapshin
maxlapshin / mpegts_alloc.S
Created May 7, 2013 09:34
mpegts_alloc:new(1000000). returns preallocated binary with size 1000000 that can be filled with your data.
{module, mpegts_alloc}. %% version = 0
{exports, [{module_info,0},{module_info,1},{new,1}]}.
{attributes, []}.
{labels, 7}.
{function, new, 1, 2}.
export PATH="$HOME/erlang/current/bin:$PATH"
erlcur() {
DIR=`ls -lr $HOME/erlang | awk '/current/ { print $NF }'`
echo -n ${DIR##*/}
}
erlsw() {
TARGET=`find $HOME/erlang -depth 1 -type d -name "*$1*" | head -1`
if [ -z "$TARGET" ]; then