※git では本当の意味での空ディレクトリは作成できない。
git 上で空ディレクトリを管理する運用としては、以下のパターンがある。
- こんなフォルダ構成でやってきたいけど、まだ中身は空だよ。
Auth and copy token at https://irc.gitter.im/.
Ignore the /PASS thing, it doesn't work in weechat.
/server add gitter irc.gitter.im -ssl -ssl_verify -ssl_dhkey_size=1024 -password=<REPLACE_WITH_YOUR_TOKEN>
/connect gitter
node.js でパスを取得する方法についてのメモ
$ node ~/hoge/Foo.js/a.jsを実行したときに、
process.argv[1] から、node コマンドに指定された a.js のパス( ~/hoge/Foo.js/a.js )を取得できます| #!/bin/bash | |
| # | |
| # rotate_desktop.sh | |
| # | |
| # Rotates modern Linux desktop screen and input devices to match. Handy for | |
| # convertible notebooks. Call this script from panel launchers, keyboard | |
| # shortcuts, or touch gesture bindings (xSwipe, touchegg, etc.). | |
| # | |
| # Using transformation matrix bits taken from: | |
| # https://wiki.ubuntu.com/X/InputCoordinateTransformation |
| あせ (・_・;) 顔文字 | |
| あせ (・∀・;) 顔文字 | |
| あせ (^ω^;;) 顔文字 | |
| あせ (゚∀゚ ;) 顔文字 | |
| あせ (゚∀゚ ;)タラー 顔文字 | |
| あたふた ヽ(´・ω・`ヽ) 顔文字 | |
| あつい (。>﹏<) 顔文字 | |
| あつい (。>﹏<)あㄘ”ゅい 顔文字 | |
| あつい (>﹏<。Ξ。>﹏<) 顔文字 | |
| あつい ι(´Д`υ) 顔文字 |
その他の設定 for Arch Linux
スタートアップ企業 Silk が、Haskellを採用した理由。
http://engineering.silk.co/post/31920990633/why-we-use-haskell
As a newly started company, we have a lot of technical decisions to make. One of the important ones is the choice of a programming language. Since we’re building a web application, this goes for both the client (i.e. the web browser) and the server.
新しく始めた会社として、我々はたくさんの技術的決定を行わなければなりません。中でも重要なのは、プログラミング言語の選択です。我々はウェブアプリケーションを作っていたので、この選択がクライアント(Webブラウザなど)とサーバの両方で必要になります。
On the client, there wasn’t much discussion. Javascript is the only viable choice, unless you want to use Flash or similar plugin-based models. But on the server, we had more freedom. Popular choices for web applications are dynamically typed languages like Ruby, Python and PHP, and statically typed languages like Java and C#.