Skip to content

Instantly share code, notes, and snippets.

View tatsuro-ueda's full-sized avatar

Tatsuro Ueda tatsuro-ueda

View GitHub Profile
@tatsuro-ueda
tatsuro-ueda / PrivacyPolicyOfHoloMagnet3.md
Last active April 18, 2019 03:41
HoloMagnet3 Privacy Policy

HoloMagnet3 Privacy Policy

Feel Physics built the HoloMagnet3 app as a Free app. This SERVICE is provided by Feel Physics at no cost and is intended for use as is.

This page is used to inform visitors regarding our policies with the collection, use, and disclosure of Personal Information if anyone decided to use our Service.

If you choose to use our Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that we collect is used for providing and improving the Service. We will not use or share your information with anyone except as described in this Privacy Policy.

The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at HoloMagnet3 unless otherwise defined in this Privacy Policy.

タイトル

国内外のフォトブック制作サービス10個の比較 大小・費用等

▽概要1

- ▽小さいフォトブックの画像
- ▽大きいフォトブックの画像
- それぞれのサービスには、安価/高価、ブックサイズが小/大、編集時の自動レイアウト可/否などの特徴があります。

ジャンヌ・ダルク(1999年)

サービス名 視聴
Amazon
Hulu ×
Netflix
U-NEXT ×

アメイジング・グレイス(2006年)

@tatsuro-ueda
tatsuro-ueda / ToggleSwitch.cpp
Last active August 29, 2015 14:16
ArduinoでLEDを点灯させるトグルスイッチのコード
int lightIsOn = LOW;
int switchIsWaiting = HIGH;
void setup() {
pinMode(13, OUTPUT);
}
void loop() {
if(digitalRead(12) == HIGH){ // スイッチが押されているなら
if(switchIsWaiting){
#
# 別のボックスを使う
#
# config.vm.box = "base"
config.vm.box = "sinatra-enabled-ubuntu"
#
# 環境を使い分ける
#
if IS_VIA_PROXY == true then
# encoding: utf-8
require 'spec_helper'
describe Post, "#title が設定されていない場合:" do
# pending "add some examples to (or delete) #{__FILE__}"
before(:each) do
@post = Post.new
end
it "バリデーションに失敗すること" do
<script src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 4,
interval: 6000,
width: 'auto',
height: 300,
theme: {
@tatsuro-ueda
tatsuro-ueda / 1-application.rb
Last active December 12, 2015 03:08
Railsのアセットパイプラインを無効にするには
#config/application.rb
# Enable the asset pipeline
#config.assets.enabled = true
config.assets.enabled = false
@tatsuro-ueda
tatsuro-ueda / file0.txt
Created December 12, 2012 01:58
Sublime Text 2 / WindowsでCapsキーをMacのCtrキーのように使う ref: http://qiita.com/items/4fbe7ba34e03e0caf168
んー、なんだ?
何が足りないんだ?
あれれ、コードを補完したあとカーソルを行末に移動したいのだけど動かないぞ。
おかしいな、Macではできたのに。
@tatsuro-ueda
tatsuro-ueda / jQueryCodeTestWithJasmineInCoffeescript.coffee
Created December 11, 2012 01:41
jQuery code test with Jasmine in CoffeeScript
# 「JS開発におけるTDDと自動テストツール利用の勘所 」より引用。
# http://www.slideshare.net/KojiNakamura/jstdd
# 元コード
$ ->
$("div li .button")
.on 'click', ->
$("div .contents").html("<span>"+$(this).data("mydata")+"</span>")