This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The user name and group name Squid will operate as | |
cache_effective_user httpdusr | |
cache_effective_group everyone | |
# | |
# Recommended minimum configuration: | |
# | |
# Auth Method | |
#auth_param basic program /share/MD0_DATA/.qpkg/Squid/opt/libexec/squid/ncsa_auth /etc/shadow | |
#auth_param basic children 5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-03/schema", | |
"id": "https://gist.github.com/TakashiSasaki/5420814/raw/schema.json", | |
"title": "root", | |
"title-authority": [ | |
"http://json-schema.org/latest/json-schema-validation.html#anchor97", | |
"http://json-schema.org/latest/json-schema-core.html#anchor7" | |
], | |
"title-description": "Title is a metadata keyword and will preferrably be short.", | |
"description": null, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="utf-8"/> | |
<title>minimul HTML document</title> | |
</head> | |
<body></body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { background-color: #DDDDDD; font: 12px sans-serif; } | |
td, th { | |
border-width: 1px; | |
border-color: #99a; | |
border-style: solid; | |
} | |
table { | |
margin: 4px 2px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
appcfg.py --secure --include_all --num_days=0 request_logs /path/to/my/gaeapp\ | |
--version=version_string version_string.log |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery 1.9からappendやafterの挙動が変わりました。 | |
http://myjquery.blog.fc2.com/blog-entry-14.html | |
http://jsdo.it/ogaoga/mlE0 は jQuery 1.6で書かれていましたので 1.9 で動くようにしました。 | |
結果として得られる画面は全く同じです。 | |
--- 以下の記述は元のREADMEの一部です --- | |
テキストエリアに JSON をコピペしてボタンを押すと、そのデータ構造をテーブル形式で可視化します。 | |
フルスクリーンにして Twitter API とかの JSON 出力を貼付けると面白いです。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;LifeTouch L (Consumer Model) | |
%SingleAdbInterface% = USB_Install, USB\VID_0409&PID_032F&REV_0216&MI_00 | |
%CompositeAdbInterface% = USB_Install, USB\VID_0409&PID_032F&MI_00 | |
; the following lines comes from http://www.nec.co.jp/solution/cloud/communicator/apdev/. Just FYI. | |
;LifeTouch L (Enterprise Model) | |
%SingleAdbInterface% = USB_Install, USB\VID_0409&PID_032F | |
%CompositeAdbInterface% = USB_Install, USB\VID_0409&PID_032F&MI_01 | |
%SingleAdbInterface% = USB_Install, USB\VID_0409&PID_032D |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LoadModule authz_ldap_module modules/mod_authz_ldap.so | |
LDAPVerifyServerCert Off | |
<IfModule mod_authz_ldap.c> | |
<Location /> | |
AuthzLDAPMethod ldap | |
AuthLDAPUrl ldaps://192.168.0.1/dc=ore,dc=no,dc=erudappu?uid | |
AuthzLDAPUserScope subtree | |
AuthzLDAPAllowPassword on |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */ | |
/* | |
* Copyright (c) 2009 The Boeing Company | |
* | |
* This program is free software; you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License version 2 as | |
* published by the Free Software Foundation; | |
* | |
* This program is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |