Skip to content

Instantly share code, notes, and snippets.

@hashrock
hashrock / diag.md
Last active February 26, 2024 05:51
作図系ツール・ライブラリまとめ

シーケンス図とかフローチャートをしごとで描画することになった場合、 テキストから生成できたら楽なので、それ系のツールまとめ

GraphViz

http://www.graphviz.org/

  • C製
  • Doxygen, Moinmoinなどと連携可能
  • ブロック図、クラス図、ネットワーク図など
require 'celluloid/io'
require 'ircp'
require 'thread'
require 'sinatra/base'
require 'json'
$q = Queue.new
class Client
include Celluloid::IO
@pjvds
pjvds / install-mono-on-docker-container.sh
Created October 27, 2013 17:54
Script that installs Mono 3.2.3 on ubuntu docker container.
apt-get install -y wget build-essential gettext autoconf automake libtool
wget http://download.mono-project.com/sources/mono/mono-3.2.3.tar.bz2
bunzip2 -df mono-3.2.3.tar.bz2
tar -xf mono-3.2.3.tar
cd mono-3.2.3
./configure --prefix=/usr/local; make; make install
rm -rf /tmp/*
apt-get remove --purge wget build-essential gettext autoconf automake libtool
@Gab-km
Gab-km / github-flow.ja.md
Last active April 25, 2024 04:01 — forked from juno/github-flow.ja.md
GitHub Flow (Japanese translation)
#!/usr/bin/env ruby
# -*- coding: utf-8 -*-
require 'eventmachine'
class UpdateEvent
include EM::Deferrable
def fire(msg)
p "update: #{msg}"