Skip to content

Instantly share code, notes, and snippets.

View inoh's full-sized avatar
🏠
Working from home

hiroyuki inoue inoh

🏠
Working from home
View GitHub Profile
@inoh
inoh / Dart List
Last active December 19, 2015 15:20
Dart
import 'dart:html';
InputElement testInput;
UListElement testList;
ButtonElement testDelete;
void main() {
testInput = query("#test-input");
@inoh
inoh / index.html
Created September 3, 2013 14:22
Backbone.jsサンプル
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>Backbone.js</title>
<style>
.completed {
text-decoration: line-through;
color: gray;
}
<script id="normal_template" type="text/template">
<section id="{{ id }}" class="slide"><div>
<h2>{{ title }}</h2>
<p>{{ body }}</p>
</div></section>
</script>
<script id="shout_template" type="text/template">
<section id="{{ id }}" class="slide shout"><div>
<h2>{{ title }}</h2>
@inoh
inoh / first-createjs.js
Last active August 29, 2015 13:59
初めてのCreateJS
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CreateJS test</title>
<script>
createjs = window;
var app = {
initialize: function () {
var stage = new Stage("sampleCanvas");
@inoh
inoh / webrick_sample.rb
Last active August 29, 2015 14:00
webrick sample
# coding: utf-8
require 'webrick'
include WEBrick
WEBrick::HTTPUtils.load_mime_types('/etc/mime.types')
s = HTTPServer.new(
:Port => 80,
:DocumentRoot => '/Users/inoue/GoogleDrive/workspace/webrick/workspace'
)
@inoh
inoh / command.sh
Last active August 29, 2015 14:00
gruntの初期設定コマンド
sudo npm install -g grunt
npm install grunt-contrib-concat
npm install grunt-contrib-watch
Gruntfile.jsを作成する
npm init
@inoh
inoh / gist:c1d38733cfc308cca68c
Last active August 29, 2015 14:01
ワイヤーフレームツール
@inoh
inoh / gist:450b73733b2a00d401d1
Created May 17, 2014 23:02
AndroidSDKインストール手順

AndroidSDKインストール

  • SDKダウンロード
  • toolsフォルダにPATHを通す
  • platform-toolsフォルダにPATHを通す
  • androidコマンドでAPIのインストール
  • android list targetsコマンドでIDを確認
  • android create avd -n api19 -t 3
  • android list avds
@inoh
inoh / gist:78a733a5ee186690dbf9
Last active August 29, 2015 14:02
chromeアプリを作る