sw.it.aoyama.ac.jp
Design Considerations for Internationalization in Ruby 2.2 - IUC 38
http://www.sw.it.aoyama.ac.jp/2014/pub/RubyI18N
Internationalization in Ruby 2.2. Http:/ www.sw.it.aoyama.ac.jp/2014/pub/RubyI18N/. Santa Clara, CA, U.S.A., 4 November 2014. Martin J. DÜRST. Duerst@it.aoyama.ac.jp. 2014 Martin J. Dürst. Since Ruby 1.9, Ruby has a pervasive if somewhat unique framework for character encoding, allowing different applications to choose different internationalization models. In practice, Ruby is most often used with UTF-8. This presentation is intended for users and potential users of the programming language Ruby, and pe...
secretchronicles.de
The Secret Chronicles of Dr. M.
http://www.secretchronicles.de/fi
The Secret Chronicles of Dr. M. On kaksiuloitteinen sivullevierivä tasohyppely perustuen OpenGL. Tekniikkaan. Pelissä on runsas valikoima tasoja sekä kehittynyt tasoeditori jolla voit itse tehdä omia tasoja. Sen mukana on tehokas skriptausmoottori joka käyttää mruby. Ä, joka on minimaalinen versio Ruby ohjelmointikielestä. On uusi kehityshaara SMC. Mistä sen voi ladata? Tulokset toisesta yleisestä keskustelusta. Yhteenveto toisesta TSC yleisestä keskustelusta. Toinen TSC yleinen keskustelu ilmoitus.
ruby-lang.org
Sobre o Ruby
http://www.ruby-lang.org/pt/sobre-o-ruby
O melhor amigo do programador. Já pensou porque é que o Ruby é tão popular? Os fãs dizem que é uma linguagem elegante, repleta de arte. E no entanto, dizem que é prática e conveniente. Afinal qual é o resultado? Os Ideais do Criador do Ruby. O Ruby é uma linguagem com um cuidadoso equilíbrio. O seu criador, Yukihiro Matz Matsumoto. Ele disse com frequência que está tentando tornar o Ruby natural, não simples , de uma forma que reflita a vida. Elaborando sobre isto, acrescenta:. Sobre o Crescimento do Ruby.
christianfkoch.net
Christian Koch
http://www.christianfkoch.net/index.html
Hey everyone, it’s Christian. I’m a musician, hacker, BSD enthusiast (NetBSD and DragonFly), multimedia scientist and webcomic addict. I live and work in the San Francisco Bay Area. Feel free to look around! Writing a book about mruby. Last updated: Sat August 09, 2014 at 06:44 PM.
dailytechvideo.com
Tools Archives - Daily Tech Video
http://dailytechvideo.com/category/tools
Video 448] George Hotz: Timeless Debugging. February 21, 2016. In theory, programmers spend lots of time developing new software. But in practice, developers spend a great deal of time debugging, trying to figure out why their code doesn’t do what they expect. The problem is that most debuggers. Introduces the idea of “timeless debugging” in which the debugger knows how to unwind history, letting you backward as well as forward. Video 397] Thomas Ballinger: Terminal Whispering. December 29, 2015. Describ...
old.blog.phusion.nl
Ruby Archives - Phusion Blog
http://old.blog.phusion.nl/category/ruby
Traveling Ruby 20150210: smaller, supports Ruby 2.2, Windows. By Hongli Lai on. February 9th, 2015. Allows you to create self-contained, “portable” Ruby binaries which can run on any Windows machine, any Linux distribution and any OS X machine. This allows Ruby app developers to distribute a single package to end users, without needing end users to first install Ruby or gems. There’s a little bit of a backstory behind this release. Last week I went to Amsterdam.rb’s MRI Implementors Panel. Although some ...
regentechlog.com
Micro Python その1 pyboard購入編 | Regen Techlog
http://www.regentechlog.com/2015/02/28/micropython-1
Micro Python その1 pyboard購入編. Micro Python その3 ペリフェラル編. Micro Python その2 インタラクティブシェル編. 接続 MicroUSBでPCと接続すると、ストレージと仮想シリアルポートが認識さ …. Jetpack Markdown highlight.jsで簡単シンタックスハイライト. Micro Python その2 インタラクティブシェル編. 家に眠っていたプリンタ スキャナのMP640を引っ張りだしてみたら、スキャナのガ …. Unable to find vcvarsall.bat の対処法. Micro Python その1 pyboard購入編.
note.huangz.me
字符串对象 RString — huangz/note
http://note.huangz.me/language/mruby-code-analysis/string.html
结构是 MRuby 的字符串实现, 它的定义位于. 刚创建字符串对象时 capa 和 len 相同,. RSTRING EMBED LEN MAX. Define MRB OBJECT HEADER. Enum mrb vtype tt:8;. Uint32 t color:3;. Uint32 t flags:21;. Struct RClass *c;. Define MRB STR SHARED 1. Define MRB STR NOFREE 2. Define MRB STR EMBED 4. Define MRB STR EMBED LEN MASK 0xf8. Define MRB STR EMBED LEN SHIFT 3. RSTRING EMBED LEN MAX. 以 64 位机器为例, 8 bytes * 3 - 1 byte = 23 bytes。 以 32 位机器为例, 4 bytes * 3 - 1 byte = 11 bytes。 Define RSTRING EMBED LEN MAX ( mrb int)(sizeof(void*) * 3 - 1).