Skip to content

Instantly share code, notes, and snippets.

View purazumakoi's full-sized avatar

purazumakoi purazumakoi

View GitHub Profile
@purazumakoi
purazumakoi / random_pw.html
Last active August 29, 2015 14:05
8、10、12、14、16桁のランダムパスワード生成(小文字英数字の組み合わせ)
<!DOCTYPE HTML>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>ランダムパスワード生成</title>
<style type="text/css">
body {
padding: 0 10px;
}
@purazumakoi
purazumakoi / indexhtml.bat
Last active August 29, 2015 14:06
実行すると、index.htmlのひな形をwindowsのデスクトップにつくるバッチ
rem 初期定義 -------------------
set place=%USERPROFILE%\Desktop\index.html
rem ファイルに書き出し ---------
echo ^<^!DOCTYPE HTML^> >> %place%
echo ^<head^> >> %place%
echo ^<html lang="ja"^> >> %place%
echo ^<head^> >> %place%
echo ^<meta charset="UTF-8"^> >> %place%
echo ^<title^>sample^</title^> >> %place%
@purazumakoi
purazumakoi / infophp.bat
Created September 9, 2014 02:53
実行するとphpinfo実行用ファイルをwindowsのデスクトップに作るバッチ
rem 初期定義 -------------------
set place=%USERPROFILE%\Desktop\info.php
rem ファイルに書き出し ---------
echo ^<^?php phpinfo(); ^?^> >> %place%
@purazumakoi
purazumakoi / gist:a1c1b9438f2298791a44
Created November 21, 2014 11:47
zend_API.h PHP5.2.17
/*
+----------------------------------------------------------------------+
| Zend Engine |
+----------------------------------------------------------------------+
| Copyright (c) 1998-2010 Zend Technologies Ltd. (http://www.zend.com) |
+----------------------------------------------------------------------+
| This source file is subject to version 2.00 of the Zend license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.zend.com/license/2_00.txt. |
@purazumakoi
purazumakoi / direction-root2
Last active August 29, 2015 14:16
ルート検索のドライブルートのポリライン(Polylines)を地図に複数個表示させる 複数グループ表示切り替え|Google Maps Directions API V3
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>ルート検索のドライブルートのポリライン(Polylines)を地図に複数個表示させる 複数グループ表示切り替え|Google Maps Directions API V3</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<style>
#map_canvas {
height: 600px;
@purazumakoi
purazumakoi / direction-root
Created February 24, 2015 11:40
ルート検索のドライブルートのポリライン(Polylines)を地図に複数個表示させる|Google Maps Directions API V3
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>ルート検索のドライブルートのポリライン(Polylines)を地図に複数個表示させる|Google Maps Directions API V3</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<style>
#map_canvas {
height: 500px;
@purazumakoi
purazumakoi / direction-root3
Created March 5, 2015 13:50
ルート検索のドライブルートのポリライン(Polylines)を地図に複数個表示させる 複数グループ表示切り替え - ロード時にのみGoogle map apiにリクエスト< |Google Maps Directions API V3
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>ルート検索のドライブルートのポリライン(Polylines)を地図に複数個表示させる 複数グループ表示切り替え|Google Maps Directions API V3</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<style>
#map_canvas {
height: 600px;