Skip to content

Instantly share code, notes, and snippets.

View matsumana's full-sized avatar

Manabu Matsuzaki matsumana

View GitHub Profile
@voluntas
voluntas / erlang_package.rst
Last active August 29, 2015 14:01
Erlang/OTP パッケージングコトハジメ

Erlang/OTP パッケージングコトハジメ

更新

2014-05-29

バージョン

0.2.0

作者

@voluntas

URL

http://voluntas.github.io/

rebar generate と node_package についてまとめました。

@voluntas
voluntas / erlang.rst
Last active March 15, 2024 13:15
実践 Erlang/OTP コトハジメ 2014.11

実践 Erlang/OTP コトハジメ 2014.11

更新

2014-11-20

バージョン

0.0.5

作者

@voluntas

URL

http://voluntas.github.io/

概要

@rkmathi
rkmathi / GB37301.md
Last active March 7, 2020 06:41
情報システム特別講義D #GB37301

情報システム特別講義D

  • 1時限目 イントロ - 川島先生(筑波大学)

  • 2時限目 Inside PostgreSQL Kernel - 永安 悟史さん(アップタイム・テクノロジーズ)

  • 3時限目 データストレージの諸々 - 星野 喬さん(サイボウズ・ラボ)

  • 4時限目 並列データベースシステムの概念と原理 - 油井 誠さん(産総研)

@Kuniwak
Kuniwak / 2013_11_15_githubjp_note.markdown
Last active October 30, 2018 07:06
「GitHub トレーニングチームから学ぶ Git の内部構造」のノートです。 曖昧なところもあるので、間違いがあったら教えてください! http://connpass.com/event/3808/

GitHub トレーニングチームから学ぶ Git の内部構造

Graphs, Hashes, and Compression, Oh My!

Hash について

従来の CVCS (集中バージョン管理システム)のリビジョン番号は連番。 SVN はサーバーにデプロイした時点でリビジョン番号1と設定される。

@voluntas
voluntas / shiguredo_tech.rst
Last active March 19, 2024 04:42
時雨堂を支える技術

時雨堂を支える技術

日時

2024-03-17

時雨堂

バージョン

2024.3

URL

https://shiguredo.jp/

時雨堂クラウドサービスを支える技術

@voluntas
voluntas / dev_torufurukawa.rst
Last active August 29, 2023 20:48
継続開発のススメ (@torufurukawa)

継続開発のススメ (@torufurukawa)

更新

2013-02-06

バージョン

1.0.1

作者

@voluntas

URL

http://voluntas.github.com/

変更履歴

@voluntas
voluntas / erlang_app.rst
Created December 9, 2012 07:34
Erlang アプリケーション コトハジメ

Erlang アプリケーション コトハジメ

更新

2012-09-15

作者

@voluntas

バージョン

0.1.0

Gist で書いてみたシリーズ

@matope
matope / Introducing Gizzard a framework for creating distributed datastores.markdown
Created November 15, 2012 16:45
分散データベースを作るためのフレームワーク Gizzardのご紹介[和訳]
@SpringMT
SpringMT / gist:3998300
Created November 2, 2012 02:21
isucon2最初にやること

backup作成

  • appのbackup
    mysqldump

iptables切る

/etc/init.d/iptables stop
chkconfig iptables off

SELinux切る

vim /etc/sysconfig/selinux

@oza
oza / impala_be_node.md
Created October 28, 2012 23:36
Impala BE Note

Impala BE メモ

本文章は,Impala のメモ の TODO のうち,BackEnd の特にクエリの実行部を読み,文章化したものである.

概要

BackEnd(BE) は単体のデーモンとして動作し,FE 側でパースした結果(Job ID/Plan)に基づいて処理を実行する.FE と BE のやりとりには Thrift が用いられている.

|FE| - パース結果(Job ID/実行Planなど) thrift -> |BE|