Skip to content

Instantly share code, notes, and snippets.

View indication's full-sized avatar
😭
Working at office

in dow indication

😭
Working at office
View GitHub Profile
sub setDBConfigure(){
$DBHost = "192.168.1.1";
$DBName = "httpd";
$DBEngine = "mysql";
$DBUser = "httpdlog";
$DBPass = "password";
}
1;
@indication
indication / Serializer.cs
Created March 11, 2011 08:09
Serialize object wothout file
using System.IO;
using System.Text;
using System.Xml;
using System.Xml.Serialization;
namespace Siri
{
static class Serializer
{
static public Encoding DefaultEncoding

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual C# Express 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TabStopDemo", "TabStopDemo\TabStopDemo.csproj", "{0CE7108A-66A8-4806-892C-6F4F408AE12A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x86 = Debug|x86
Release|x86 = Release|x86
EndGlobalSection
@indication
indication / .gitignore
Created October 19, 2011 17:26
TimSort C# version
/obj
/bin
*.suo
*.user
@indication
indication / zfs_snapshot.sh
Created September 28, 2012 17:32 — forked from f99aq8ove/zfs_snapshot.sh
zfs snapshot auto-rotation script
#!/bin/sh
#
# zfs snapshot auto-rotation
#
# usage: zfs_snapshot.sh <mountpoint> <snapshot name> <number of keeping snapshots> [recursive]
#
# recursive option: Recursively create snapshot (zfs snapshot -r)
#
# for crontab
#
@indication
indication / zfs_vfsshadow.sh
Created September 28, 2012 18:47
Supports shadow copy on zfs on linux
MOUNTPOINT=`sudo zfs get -o value mountpoint storage/share | tail -1`
SNAPPOINT=.zfs/snapshot/0weeks_later
SNAPDATE=`sudo zfs get -o value creation storage/share@0weeks_later | tail -1`
DEFAULT_TZ=`date +%Z`
CALCGMT=`date -d "$SNAPDATE $DEFAULT_TZ" -u "+%Y.%m.%d-%H.%M.%S"`
NAMEDATE=@GMT+$CALCGMT
echo $SNAPDATE
echo $NAMEDATE
ja:
mail_reminder_all_day1: "日"
mail_reminder_all_day2: "日"
mail_reminder_all_day5: "日"
mail_subject_reminder_all1: "%{count} チケットは %{days} %{day}後が期日です"
mail_body_reminder_auth1: "あなたの作成した %{count} チケットは %{days} %{day}後が期日です:"
mail_body_reminder_assigned1: "あなたが担当している %{count} チケットは %{days} %{day}後が期日です:"
mail_body_reminder_watched1: "あなたがウォッチしている %{count} チケットは %{days} %{day}後が期日です:"
mail_body_reminder_custom_user1: "あなたが関係している%{count} チケットは %{days} %{day}後が期日です:"
mail_subject_reminder_all2: "%{count} チケットは %{days} %{day}後が期日です"
@indication
indication / C006.pl
Last active August 29, 2015 13:56
pizaaaaaaaaaa
my %table = (
'1' =>'.@-_/:~1'
,'2' =>'abcABC2'
,'3' =>'defDEF3'
,'4' =>'ghiGHI4'
,'5' =>'jklJKL5'
,'6' =>'mnoMNO6'
,'7' =>'pqrsPQRS7'
,'8' =>'tuvTUV8'
,'9' =>'wxyzWXYZ9'

http://www.wtfpl.net/faq/ の翻訳(非公式)です。 以下の文章には何も保証がありません。

どのように WTFPLを使いますか?

ステップ1. WTFPLの全文をコピー&ペーストもしくはダウンロードし、あなたの成果物と共に配布します。一般的にライセンスファイルの名前は COPYING です。成果物が複数のライセンスを採用している場合は、COPYING.WTFPL というファイル名が一般的です。

ステップ2. あなたの著作権文章に次の文言を追加してください。

@indication
indication / .gitignore
Last active August 29, 2015 14:19
バイナリ読み書き
/*.suo
/bin
/obj