Skip to content

Instantly share code, notes, and snippets.

const test = 'test'
console.log(test)
<html>
<body>
<div style="text-align: center; border: 1px solid #bbb;border-radius: 3px;padding:5px;margin:5px;"><div id="AmazonPayButton"></div></div><button type="button" name="button" id="Logout">Logout</button>
<div style="color:red;" id="errorMessage">配送先を選択してください</div>
<div id="billingAddressWidgetDiv" style="height:250px"></div>
<div id="shippingAddressBookWidgetDiv" style="height:250px"></div>
<div id="walletWidgetDiv" style="height:250px"></div>
<input type="button" value="next page" id="nextPage">
@itoshige
itoshige / decider.hta
Created April 1, 2016 01:51
幹事決定スロット
<html>
<head>
<title>幹事決定スロット</title>
<HTA:APPLICATION
ID="thisHTA"
SCROLL="no"
MAXIMIZEBUTTON="no"
MINIMIZEBUTTON="no"
SINGLEINSTANCE="yes"
SCROLLFLAT="yes"
@itoshige
itoshige / Eyeverify
Last active May 17, 2018 07:41
FinovateEurope2016
◆概要
スマートフォンのカメラで眼球を読み取り本人確認できるソリューションを提供。
自分の眼球の中の血管の流れを撮影し認証するため、写真は不可。
20cm程度近づける必要あり。3秒程度で認証可能。(アプリ利用結果)
◆強み
・99.99%の精度
・外付け器具なしで簡単にサービスへ組み込み可能
・暗号化してローカルに保存するため、消えたり、盗まれたりすることはない。
・動く目でも認証可能。
@itoshige
itoshige / ListSeparator
Created March 20, 2015 07:38
Java ListをPairに分割する
public interface Target<T> {
boolean apply(T o);
}
/**
* ListをPredicateで指定した条件で分割する
*
* @param collection
* @param predicate
* @return