| 更新: | 2024-05-20 |
|---|---|
| 作者: | @voluntas |
| バージョン: | 2024.1 |
| URL: | https://voluntas.github.io/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pid = Process.fork() { | |
| p "hoge" | |
| sleep 1 | |
| } | |
| p "parent" | |
| Process.waitpid pid | |
| #p "bye for now." | |
| def mymethod | |
| p "Hello, this is mymethod." |
- Node.js v0.10.28
- express v3.8.1
- socket.io v0.9.17
今回はntwitterを使用。 https://github.com/AvianFlu/ntwitter ntwitterの中身については別途確認します
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (ql:quickload :optima) | |
| (use-package :optima) | |
| (defun list-slots (obj slots conc-name) | |
| (loop :for slot :in slots :collect | |
| (funcall (intern (format nil "~a~a" conc-name slot)) obj))) | |
| (defun make-print-object (name gensyms) | |
| `(lambda (obj stream) | |
| (format stream "(~a ~{~a~^ ~})" ',name |
PHP Markdown Extra 仕様の全訳(意訳) http://michelf.ca/projects/php-markdown/extra/
Markdown拡張仕様であるExtraモードの上記仕様ページを日本語訳したものです。
PHP Markdown Extraは、通常のオリジナルMarkdown記法では利用できない、いくつかの特徴を加えて移植されたPHP Markdown記法の特別なバージョンです。PHP Markdown Extra は、PHP Markdown home pageからダウンロードできます。
このドキュメントでは、PHP Markdown Extraで採用し、Markdown記法に追加した機能や変更を説明しています。このドキュメントを読む前に、オリジナルのMarkdown記法のドキュメントの方に目を通しておくべきでしょう。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 少し凝った zshrc | |
| # License : MIT | |
| # http://mollifier.mit-license.org/ | |
| ######################################## | |
| # 環境変数 | |
| export LANG=ja_JP.UTF-8 | |
| # 色を使用出来るようにする |
これは2013/02/16に開催された 俺聞け4 の発表資料です。
- 名前
- 三宅
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # シンプルな zshrc | |
| # License : MIT | |
| # http://mollifier.mit-license.org/ | |
| # 環境変数 | |
| export LANG=ja_JP.UTF-8 | |
| # 補完機能を有効にする | |
| autoload -Uz compinit | |
| compinit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| source :rubygems | |
| gem 'nokogiri' | |
| # gem 'pry' | |
| group :build do | |
| gem 'maliq' | |
| gem 'liquid' | |
| end |
野心的な新機能案や、互換性等の理由でおよそ採用されないであろう夢を書き連ねています。
Fixnum と Bignum を削除して、Integer クラスに統合する。両者は Flonum のように内部的に切り替えられる。
Integer#/ の結果を Rational で返すようにする。 https://bugs.ruby-lang.org/issues/5512#change-37021
NewerOlder