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
<?xml version='1.0' encoding="UTF-8"?> | |
<!-- Copyright (C) 2009 Brian "Beej Jorgensen" Hall <[email protected]> --> | |
<!-- TODO ========================================================== | |
fix header tables in FO, fop 0.95 giving tons of warnings | |
will images embed as SVGs properly with fop 0.95? | |
IPv6 chapter for IPv6-specifics |
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 | |
/* | |
CakePHP 1.3.5 と 1.2.8 以下に存在する PHP コード実行の脆弱性を使って攻撃する PHP スクリプト | |
# 解説は http://co3k.org/diary/12 | |
Report: http://malloc.im/CakePHP-unserialize.txt | |
Original POC: http://malloc.im/burnedcake.pwy |
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 | |
header('Content-Type: text/plain'); | |
$dir = new DirectoryIterator(ini_get('session.save_path')); | |
foreach ($dir as $file) | |
{ | |
if ($file->isDot()) | |
{ |
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 | |
require_once 'Calendar/Month.php'; | |
require_once 'Date/Holidays.php'; | |
if (isset($argv[1])) { | |
$month = $argv[1]; | |
} else { | |
$month = date('Ym'); | |
} |
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 any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by w3m configure 0.5.2, which was | |
generated by GNU Autoconf 2.61. Invocation command line was | |
$ ./configure --disable-debug --disable-dependency-tracking --prefix=/usr/local/Cellar/w3m/0.5.2 --disable-image | |
## --------- ## | |
## Platform. ## |
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
$ brew doctor | |
Unbrewed dylibs were found in /usr/local/lib. | |
If you didn't put them there on purpose they could cause problems when | |
building Homebrew formulae, and may need to be deleted. | |
Unexpected dylibs: | |
/usr/local/lib/libpng15.15.dylib | |
Unbrewed static libraries were found in /usr/local/lib. |
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
from ScriptingBridge import * | |
iTunes = SBApplication.applicationWithBundleIdentifier_("com.apple.iTunes") | |
heavy_playlist = None | |
for playlist in iTunes.sources()[0].playlists().get(): | |
if "HEAVY" == playlist.name(): | |
playlist.delete() | |
break |
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 | |
class opInteractiveTaskTestHandler | |
{ | |
public $cli, $t, $lastStatus, $resource = null; | |
public $pipes = array(); | |
public $output = ''; | |
public function __construct($t) |
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 | |
$url = 'http://redmine.openpne.jp/versions/show/165'; | |
function getCommitHashList($path) | |
{ | |
$url = 'http://redmine.openpne.jp'.$path; | |
$text = file_get_contents($url); |
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 | |
// this script is public domain | |
$list_34 = array( | |
36, 40, 39, 43, 62, 73, 89, | |
86, 97, 106, 124, 125, 126, | |
127, 164, 169, 182, 196, | |
183, 119, | |
); |