Skip to content

Instantly share code, notes, and snippets.

@tomo3141592653
tomo3141592653 / eveeveeve.html
Created May 17, 2012 03:12
今日がクリスマスの何なのか分かるページ
<p id="chiristmas" style="font-size: xx-large;">&nbsp;</p>
<script type="text/javascript">// <![CDATA[
var now =new Date();
var new_year = new Date("Dec 25, 2012 0:0:0");
var num_of_yoi = 1+( new_year.getTime() - now.getTime())/ 86400000;
field= document.getElementById('chiristmas');
var yois = "";
@tomo3141592653
tomo3141592653 / now_address.html
Created May 17, 2012 03:10
今いる住所が分かるアプリ
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script type="text/javascript">// <![CDATA[
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
//s = position.coords.latitude+","+position.coords.longitude;
//document.getElementById('latlng').innerHTML = s;
var geocoder;