Skip to content

Instantly share code, notes, and snippets.

@akira1908jp
akira1908jp / delegate_sample.html
Created September 28, 2013 06:32
jqueryのdelegateサンプル
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>delegate demo</title>
<style>
p {
background: yellow;
font-weight: bold;
cursor: pointer;
@akira1908jp
akira1908jp / datepicker_option.js
Created June 26, 2013 09:09
min_year, min_month, min_day,max_year, max_month, max_dayは与える引数
var pickerOption = (function(){
var _format = 'yy-mm-dd'
,_min = (function () {
return getDate(min_year, min_month, min_day);
})(),
_max = (function () {
return getDate(max_year, max_month, max_day);
})();
function getDate(year, month, day) {
@akira1908jp
akira1908jp / web_service.ddl
Last active December 17, 2015 04:09
パスワード管理テーブル
create table web_service (
service_url varchar(255),
singin_id varchar(255),
password varchar(125),
primary key(service_url)
)
;
@akira1908jp
akira1908jp / gist:5114034
Created March 8, 2013 03:34
symfony 1.4 use sessionstorage memcached
symfony memcachedを使用したセッションストレージ設定
[project]/apps/[appName]/config/factories.yml
storage:
class: sfCacheSessionStorage
param:
@akira1908jp
akira1908jp / gist:5088821
Last active December 14, 2015 12:49
scala+playでの掲示板ウェブアプリケーション
ウェブアプリケーション
scala2.10
play2.0
サーバ
heloku
symfony対応
http://codezine.jp/article/detail/837
@akira1908jp
akira1908jp / sample.conf
Created February 27, 2013 01:23
SSL mod_proxy config memo
<VirtualHost *:80>
# DocumentRoot ...
# ServerName ..
# DirectoryIndex ...
AllowCONNECT 443
SSLProxyEngine On
ProxyRequests Off
ProxyPass /hoge/ https://exmple.com/
@akira1908jp
akira1908jp / gist:5035624
Created February 26, 2013 03:27
mysqldumpしつつ圧縮
mysqldump -udb_user -pdb_pass -h db_host db_name | gzip > db_name.dump.sql.gz
@akira1908jp
akira1908jp / sendLogAPI.php
Created February 12, 2013 08:01
sample php
<?php
require_once 'HTTP/Request.php';
$format =
// 'json'
// 'xml'
'';
$url = "http://157.109.211.138:8180/apolloLog.php/add?format=$format&title_id=999&action_type=ADMINCMD_USE&action_date=2012-04-26%2001:22:45.65432&user_id=%27123%27&World_name=%27101_soc01%27&value1%27PIKO%27&value2=%27test@yahoo.co.jp%27&value3=%27123.45.67.89%27&value4=%22s%20addcp%2099999%22";
@akira1908jp
akira1908jp / gist:4633200
Last active December 11, 2015 17:18 — forked from anonymous/gist:4633193
futabaGap 対応
macgap i18n 日本語追加
画像別ウィンドウ表示
カタログ表示対応
@akira1908jp
akira1908jp / gist:4603286
Created January 23, 2013 08:51
phantomjs環境構築
http://phantomjs.org/index.htmlからダウンロード
インストール→パス追加
phantomjsで対話形式実行