- タイトル日本語訳: インターネットの原理: 時間と距離の圧政からの解放
- 講演者: Tom Preston-Werner (GitHub Inc. CEO)
(一部メモが間に合わなかったところを ツイッターの #rubyworld から引用させて頂きました)
Tom Preston-Wernerは世界中のプログラマー同士のコラボレーションサービスGitHub(ギットハブ)の共同創業者のうちの一人。
# | |
# Copyright (c) 1998, 1999, 2000, 2001, 2002, 2003 | |
# Tama Communications Corporation | |
# | |
# This file is part of GNU GLOBAL. | |
# | |
# This file is free software; as a special exception the author gives | |
# unlimited permission to copy and/or distribute it, with or without | |
# modifications, as long as this notice is preserved. | |
# |
-module(redis_test). | |
-define(KEY, <<"sample">>). | |
-export([push_to_list/1, parallel_push_to_list/2, get_from_list/2, delete/0]). | |
%%-------------------------------------------------------------------- | |
%% @doc Count件数のデータをリストに追加し、最終的な件数と経過時間を表示する. | |
%%-------------------------------------------------------------------- | |
push_to_list(Count) -> |
#import "GN_ViewController.h" | |
#import "GN_CustomCell.h" | |
@interface GN_ViewController (Local) | |
- (void)helloTable; | |
@end | |
#import <UIKit/UIKit.h> | |
@interface GN_ViewController : UIViewController<UITableViewDelegate, UITableViewDataSource> { | |
} | |
@property (nonatomic, strong) NSArray *namesArray; | |
@property (nonatomic, strong) NSArray *imagesArray; | |
@end |
{sys, [ | |
{lib_dirs, ["../deps"]}, %% depsを追加 | |
{erts, [{mod_cond, derived}, {app_file, strip}]}, | |
{app_file, strip}, | |
{rel, "hogeapplication", "0.1", | |
[ | |
%% 標準で使うライブラリも全て追加 | |
kernel, | |
stdlib, | |
sasl, |
# control led on beagleboard. | |
class BeagleBoardXmLed | |
LED_FILE_FORMAT = | |
"/sys/devices/platform/leds-gpio/leds/beagleboard::@name@/brightness" | |
# led: ledname (usr0 : usr1 : pmu_stat) | |
def on(led) | |
control(led, 1) | |
end |
FirmataはPC - マイコン間でやり取りするためのプロトコルです。汎用入出力の値の取得・書き込みその他の操作をPC側からArduinoのようなマイコンに対して行う為に使用されます。
ArduinoでFirmataプロトコルを使用してホストコンピュータとやり取りする場合は、ArduinoIDEを立ち上げて、ファイル
-> スケッチの例
-> Firmata
-> Standard Firmata
を選択、開きそのままArduinoに書き込めば良いです。
##プロトコルフォーマット
conf.gembox 'full-core' |
conf.gem :github => 'mattn/mruby-onig-regexp' |