Facebookの利用言語を日本語にしてアクセスしてください。
This file contains 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
const int TESTPIN = 11; | |
String label = "Tick"; | |
char buffer[33]; | |
void setup() { | |
// put your setup code here, to run once: | |
pinMode(TESTPIN, OUTPUT); | |
Serial.begin(9600); | |
} |
This file contains 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
#include <YMZ294.h> | |
#include <Wire.h> | |
#define ADDR_FREQ_A CH_A | |
#define ADDR_FREQ_B CH_B | |
#define ADDR_FREQ_C CH_C | |
// Output Pins | |
const byte WRCS_PIN = 8; | |
const byte A0_PIN = 9; |
This file contains 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
Title | Speaker | Date | Time | Duration | Language | Type | Track | Description | |
---|---|---|---|---|---|---|---|---|---|
PHPer女子が語る2015!こんなコードを書くヒトはモテない〜コラボ編〜 | 深澤 ひかり | 2015/10/3 | 9:40 | 5 | ja | Talk | 1 | ||
ランダムデータをPHPで作る | 岸田 健一郎 | 2015/10/3 | 9:45 | 5 | ja | Talk | 1 | ||
PHPでRubyのゲームを攻略する PHPWarrior | マスクドPHP | 2015/10/3 | 9:50 | 5 | ja | Talk | 1 | ||
良心的にまじめに開発するための心構え | 村上 俊介 | 2015/10/3 | 9:55 | 5 | ja | Talk | 1 | ||
PHPでDIをする | 大橋 勇希 | 2015/10/3 | 10:00 | 5 | ja | Talk | 1 | ||
サンタクロースを支えるIT技術 チャリティーサンタ | 石川将行 | 2015/10/3 | 10:05 | 5 | ja | Talk | 1 | ||
phpと夫婦生活 | 竹澤 有貴 | 2015/10/3 | 10:10 | 5 | ja | Talk | 1 | ||
(あなたにもできるかもしれない)ローカルPHPカンファレンスの作り方 | 赤瀬 剛 | 2015/10/3 | 10:15 | 5 | ja | Talk | 1 | ||
THE NEW PERFECT PHP WILL BE COMING SOON | 小川 雄大 | 2015/10/3 | 10:20 | 5 | ja | Talk | 1 |
This file contains 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
Title | Description | Speaker | Date | Time | Duration | Language | Type | Track | |
---|---|---|---|---|---|---|---|---|---|
PHPの今とこれから 2015 | 廣川 類 | 2015-10-03 | 10:10 | 30 | ja | Keynote | 1 | ||
基調講演 | Rasmus Lerdorf | 2015-10-03 | 13:00 | 60 | us | Keynote | 1 | ||
今どきのSQLインジェクションの話題総まとめ | 徳丸 浩 | 2015-10-03 | 10:50 | 60 | ja | Talk | 1 | ||
いまどきのPHP開発現場 -2015年秋- | 新原 雅司 | 2015-10-03 | 14:20 | 30 | ja | Talk | 1 | ||
Hack言語に賭けたチームの話 | 大谷 祐司 | 2015-10-03 | 13:00 | 30 | ja | Talk | 3 | ||
フリマアプリ「メルカリ」の急成長を支えるエンジニアリング | 久保達彦 | 2015-10-03 | 13:40 | 30 | ja | Talk | 3 | ||
PHP初心者セッション | 柏岡秀男 | 2015-10-03 | 10:50 | 30 | ja | Talk | 5 | ||
MySQL 5.7にやられないために知っておいてほしいこと | yoku0825 | 2015-10-03 | 13:00 | 30 | ja | Talk | 2 | ||
営業・運用を支える 気付ける 管理画面 | 前田 雅央 | 2015-10-03 | 14:20 | 30 | ja | Talk | 4 |
This file contains 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
プログラミングに挑戦してみませんか? CoderDojoは小中学生を対象にした無料の「プログラミング道場」です。 | |
スタート回ではまだプログラミングをしたことがないこども、道場に初めて参加する子どもにプログラミングの始め方と道場の流れを案内しています。 | |
●学習する教材が動くノートパソコンを持参してください。(iPadは不可) | |
●code.orgの動作確認とユーザー登録を自宅で済ませておいてください。 | |
●参加登録はFacebookのイベントの「参加する」ボタンです。 | |
●キャンセルも同じボタンから、都合が悪くなった際は他の希望者に席を譲ってください。 | |
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ |
This file contains 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
<?php | |
class Player { | |
public function play_turn($warrior) { | |
switch (true) { | |
case $warrior->feel()->is_enemy(): | |
$warrior->attack(); | |
break; | |
default: | |
$warrior->walk(); | |
} |
This file contains 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
<iframe src="//itch.io/embed/14880?dark=true&linkback=true" width="552" height="167" frameborder="0"></iframe> |
This file contains 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
var original:Vector3; | |
function Start () { | |
this.original = transform.position; | |
} | |
function OnCollisionEnter(other:Collision){ | |
if (other.gameObject.CompareTag('Player')) { | |
this.transform.position = this.original; |
This file contains 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
eix app-emulation/docker | |
sudo emerge -av app-portage/layman | |
sudo emerge layman | |
sudo layman -f | |
sudo layman docker | |
http://wiki.gentoo.org/wiki/Overlay | |
https://github.com/tianon/docker-overlay |
NewerOlder