Skip to content

Instantly share code, notes, and snippets.

View cognitom's full-sized avatar

Tsutomu Kawamura cognitom

View GitHub Profile
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
@koyhoge
koyhoge / gist:25e7b318d64d6fb1ae7e
Last active August 31, 2017 08:44
エンジニアのための法律勉強会 #5『OSSのライセンスと、コンテンツやソースコードの著作権』参加メモ
@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)的な共通リポジトリ

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

2015/05/29 Masayoshi Takahashi (@takahashim)

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

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

目的

@mbreese
mbreese / docker-heredoc-snippet
Last active June 12, 2023 21:28
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
@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
});
});
@peterbraden
peterbraden / index.js
Created September 25, 2014 08:50
Retina.js with browserify
var retina = require('retina.js')
retina.Retina.init(window); // <-- Necessary to initialise with window.
@LeCoupa
LeCoupa / nodejs-cheatsheet.js
Last active June 30, 2024 04:14
Complete Node.js CheatSheet --> UPDATED VERSION --> https://github.com/LeCoupa/awesome-cheatsheets
/* *******************************************************************************************
* THE UPDATED VERSION IS AVAILABLE AT
* https://github.com/LeCoupa/awesome-cheatsheets
* ******************************************************************************************* */
// 0. Synopsis.
// http://nodejs.org/api/synopsis.html