1. RubyMotion もくもく会 in Osaka 活動報告 RubyMotion Kaigi 2014 September 17th, 2014 Sotaro OMURA @omoon
19. Slack a.k.a. モダンチャットサービス 外部サービスとの連携が簡単 ・主要サービスとの連携が標準で用意されている →Trello, NewRelic, GitHub, GoogleDrive, RSS ・WebHooksで簡単に連携でき、非公式の連携ツールも充実 →Wordpress, Capistrano, Webistrano →curlコマンドだけで簡単に通知が可能 20. Slack a.k.a. モダンチャットサービス curl -X POST --data-urlencode 'payload={"channel": "#general", "username": "webhookbot", "text": "This is posted to #general and comes from a bot named webhookbot.", "icon_em
5. 情報学基礎:エレクトロニクスをはじめよう ハードウェアスケッチ#1 littleBitsをはじめよう • littleBitsとは • littleBitsの基本 • littleBitsで遊んでみよう • littleBitsで小さなプロジェクトをつくってみよう • テーマ:自分たちの身近な人々をちょびっと愉快にしよう • 30分間の制限時間内にアイデアを具現化する • 最後に各チーム1分間で発表 7. 情報学基礎:エレクトロニクスをはじめよう ハードウェアスケッチ#1 littleBitsをはじめよう • littleBitsとは • littleBitsの基本 • littleBitsで遊んでみよう • littleBitsで小さなプロジェクトをつくってみよう • テーマ:自分たちの身近な人々をちょびっと愉快にしよう • 30分間の制限時間内にアイデアを具現化する • 最後に各
5. スマートフォンの役割 スマートフォンがコア(ハブ)になる • ユーザーインターフェイス(操作、表示) • 計算処理、データベース • 3Gを含めたネットワーク → クラウドのサービスと連携 アプセサリー スマートフォン Bluetooth Smart キャリヤ& プロバイダー 3G回線 インターネット SNSでのデータ共有 アドバイス通知 ポイント付加 AndroidではADK、Arduinoなどのフィジカルコンピューティングからの流れ 6. アプセサリーをめぐる環境 • Bluetooth 4.0(BLE) → Apple iPhone4S以降で採用 (Androidは4.3から) *NFCはAndroid系のみ • 通信チップの低価格化 • スマートフォン、タブレットの浸透 • ハードウェアのオープンソース化 → Makersの流行 Startup系クラウドファンディング→ 資金
11月24・25日 デザイン思考マスター・クラス http://kashinotakanori.com/bootleg/index.php?master 「慶應義塾大学SFCデザイン思考研究会」によるこの資料は、Creative Commons 表示 – 非営利 - 継承 2.1 日本 License.によってライセンスされています。本資料はhttps://dschool.stanford.edu/groups/k12/にある作品に基づき作成されました。 1)クレジット明記(慶應義塾大学SFCデザイン思考研究会) 2)ライセンス継承(以下参照) の2つを満たす場合、利用許可等の通知をすることなく資料を自由にご利用できます。詳しくはサイトをご覧下さい。http://creativecommons.org/licenses/by-sa/2.1/jp/ ※上記2点をお守り頂けない利用ケースを発見
13. 開始処理 1. ブラウザがHTMLからDOMを作る 2. AngularJSがDOMを読み込む 3. ng-appで指定されたタグ以下を スコープにセットする 4. コンパイル 5. 動的にDOMを生成する 6. イベント監視して即時でDOMを更新 http://docs.angularjs.org/guide/concepts 詳しくはここ(英語) AngularJS 16. http://angularjs.org/公式サイト: Todoアプリ HTML 1.<div ng-controller="TodoCtrl"> 2. <ul> 3. <li ng-repeat="todo in todos"> 4. <input type="checkbox" ng-model="todo.done"> 5. <span class="done-{{todo.done}}">{{tod
5. 比較(ネットワーク) EC2-VPC EC2-Classic ¡ プライベートクラウド ¡ パブリッククラウド ¡ 仮想ネットワークを定義 ¡ VPN を使用した閉域網での利用 ¡ セキュリティグループ ¡ Inbound のみのフィルタ設定 ¡ サブネットを使った管理 ¡ 稼働中のインスタンスとの組み合わ ¡ 自由なネットワーク設計 せを変更できない ¡ ネットワーク ACL でサブネット間のア クセス制限 ¡ セキュリティグループ ¡ Inbound, Outbound のフィルタ設定 ¡ 稼働中もインスタンスとの組み合わせ を変更可能 6. 比較(インスタンス) EC2-VPC EC2-Classic ¡ ENI (Elastic Network Interface) ¡ Public DNS ¡ 仮想 NIC で
1. RESTful Web アプリの 設計レビューの話 和田 卓人 (a.k.a id:t-wada or @t_wada) July 23, 2012 @ sendagaya.rb 3. 自己紹介 名前: 和田 卓人 (わだ たくと) ブログ: http://d.hatena.ne.jp/t-wada メール: takuto.wada@gmail.com Twitter: http://twitter.com/t_wada タワーズ・クエスト株式会社 取締役社長 4. 私と REST (input) • WEB+DB PRESS vol.32「REST アーキテクチャスタイル入門」 • はてぶ設計議論 • DHH の RubyKaigi 2006 Keynote • WEB+DB PRESS vol.38∼「REST レシピ」 • 『RESTful Web Service』
86. #!/bin/bash PREFIX="/usr/bin/" install_oil() { sudo sh -c "curl --silent http://get.fuelphp.com/ installer.sh > ${PREFIX}oil" sudo chmod +x ${PREFIX}oil } # # Handle execution # main() { # Start installation install_oil exit 0 } main 88. #!/bin/bash if [ -f "./oil" ]; then php oil "$@" else if [ "$1" == "create" ]; then if [ ! `which git` ]; then echo "For this installer to work you'll need to
Hacker culture at an internet company. 文明塾, 2014/04/23
The document defines a fib function that recursively calculates Fibonacci numbers and prints the 10th Fibonacci number. It then defines some unit tests for a Calculator class that test the add method by asserting the expected result. Finally, it defines some unit tests for a User class that test validating a user object.Read less
This document introduces the author as a software engineer who works with Redmine, TestLink, and open source projects. It provides an overview of the author's background, interests which include Hadoop and database technologies, and links to the author's blog and social media profiles. The author signs off by noting they are available for any questions.Read less
The document discusses continuous integration and delivery practices for software development. It recommends committing code changes to version control daily, configuring an automated build and test process every time code is committed, and deploying successfully built code to testing or production environments. This allows developers to identify issues early, prevent broken code from being deploy
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く