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
;; 2012-06-12 hoge fuga hago | |
;; 2012-06-11 aaa bbb | |
;; 2012-06-10 12345 67890 00000 01 | |
;; ↓ | |
;; 2012-06-12 hoge | |
;; 2012-06-12 fuga | |
;; 2012-06-12 hago | |
;; 2012-06-11 aaa | |
;; 2012-06-11 bbb | |
;; 2012-06-10 12345 |
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
/* <system section="theme" selected="report"> */ | |
@import "/css/theme/report/report.css"; | |
/* </system> */ | |
/* <system section="background" selected="bg11"> */ | |
body{ background-color:#fff; background-image:url('/images/theme/backgrounds/theme11.png'); background-repeat:repeat; background-attachment:scroll; } | |
/* </system> */ | |
div#container { |
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
(:name anything-rdefs | |
:description "anything-rdefs" | |
:type git | |
:url "git://github.com/wakaran/anything-rdefs.git" | |
:depends anything | |
:after (lambda () | |
(let ((name (concat (el-get-package-directory "anything-rdefs") | |
"/rdefs.rb"))) | |
(unless (file-exists-p name) | |
(with-current-buffer |
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
<?php | |
abstract class GongoBaseTest extends PHPUnit_Extensions_SeleniumTestCase | |
{ | |
protected $captureScreenshotOnFailure = TRUE; | |
protected $screenshotPath = '/tmp/screenshots'; | |
protected $screenshotUrl = 'http://localhost/screenshots'; // これは適当でもいい | |
protected function takeScreenshot() | |
{ |
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
;;; twipass.el -- Twitter パスワードかもしれないものが大量流出!そこであなたの見たものは・・!? | |
;; MAHALO License (based on MIT License) | |
;; | |
;; Copyright (c) 2012 Wataru MIYAGUNI (gonngo _at_ gmail.com) | |
;; | |
;; Permission is hereby granted, free of charge, to any person obtaining a copy | |
;; of this software and associated documentation files (the "Software"), to deal | |
;; in the Software without restriction, including without limitation the rights | |
;; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
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
;;; fake-full-name.el -- SKK の人名辞書ファイルから架空の氏名を生成する | |
;; MAHALO License (based on MIT License) | |
;; | |
;; Copyright (c) 2012 Wataru MIYAGUNI (gonngo _at_ gmail.com) | |
;; | |
;; Permission is hereby granted, free of charge, to any person obtaining a copy | |
;; of this software and associated documentation files (the "Software"), to deal | |
;; in the Software without restriction, including without limitation the rights | |
;; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
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
#!/usr/bin/env php | |
<?php | |
// 定義済み定数 | |
foreach (get_defined_constants() as $key => $value) { | |
echo $key . "\n"; | |
} | |
// 定義済み関数 | |
foreach (get_defined_functions() as $place => $list) { | |
foreach ($list as $name) { |
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
;;; dnso.el -- Do not show off! | |
;; MAHALO License (based on MIT License) | |
;; | |
;; Copyright (c) 2012 Wataru MIYAGUNI (gonngo _at_ gmail.com) | |
;; | |
;; Permission is hereby granted, free of charge, to any person obtaining a copy | |
;; of this software and associated documentation files (the "Software"), to deal | |
;; in the Software without restriction, including without limitation the rights | |
;; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
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
;;; json-reformat --- Reformat tool for JSON | |
;; Author: Wataru MIYAGUNI <[email protected]> | |
;; Keywords: json | |
;; Copyright (c) 2012 Wataru MIYAGUNI | |
;; | |
;; MIT License | |
;; | |
;; Permission is hereby granted, free of charge, to any person obtaining |
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
--- install.sh.orig 2011-07-19 21:58:49.000000000 +0900 | |
+++ install.sh 2011-10-22 15:47:46.000000000 +0900 | |
@@ -14,19 +14,7 @@ | |
Shows this help screen. | |
" | |
-OS_NAME=`uname -s` | |
- | |
-case $OS_NAME in | |
-Darwin) |