Skip to content

Instantly share code, notes, and snippets.

View cognitom's full-sized avatar

Tsutomu Kawamura cognitom

View GitHub Profile
@barnaby
barnaby / gulpfile.js
Last active April 17, 2022 12:45
Takana and gulp.js playing nice
var gulp = require('gulp'),
takana = require('takana');
gulp.task('takana', function() {
takana.run({
path: __dirname,
includePaths: [] // Optional
});
});
@mbreese
mbreese / docker-heredoc-snippet
Last active July 9, 2025 05:06
Running docker with a HEREDOC to script the commands to run inside the container.
docker run -v /Users/mbreese/tmp:/tmp1 -w /tmp1 -i centos:7 /bin/bash -s <<EOF
date > foo
echo 'foo' >> foo
cat /etc/redhat-release >> foo
whoami >> foo
EOF

青空文庫の技術(者)コミュニティ設計私案

2015/05/29 Masayoshi Takahashi (@takahashim)

参考情報: 「青空文庫の予備知識」http://togetter.com/li/827552

※ 技術(者)コミュニティには名前・呼称がないとめんどくさいので、何か名前をつけるべき→とりあえずgithubではaozorahackという名前になった。日本語名称は考えたほうがいいかも。

目的

@key-amb
key-amb / gist:f39233a81c85e250d4e5
Created June 11, 2015 01:12
#aozorahack kosakuin kaigi 2015/6/10

kosakuin 実現イメージ・方針すり合わせ

6/10 @下北沢OSS Cafe
参加者: @cognitom @ksato9700 @key-amb

方針

  1. WebUI付き校正システム
  2. npm (or rubygems, CPAN)的な共通リポジトリ
@koyhoge
koyhoge / gist:25e7b318d64d6fb1ae7e
Last active August 31, 2017 08:44
エンジニアのための法律勉強会 #5『OSSのライセンスと、コンテンツやソースコードの著作権』参加メモ
sudo apt install -y autoconf automake build-essential python-dev libtool libssl-dev pkg-config
cd /tmp
git clone https://github.com/facebook/watchman.git -b v4.9.0 --depth 1
cd watchman/
./autogen.sh
./configure --enable-lenient
make
sudo make install