Skip to content

Instantly share code, notes, and snippets.

View MugeSo's full-sized avatar

TANAKA Koichi MugeSo

View GitHub Profile
<?php
if ($argc < 3 || $argc > 4) {
printf('Usage: %s [<変動率>] <個数> <目標値>' . PHP_EOL, $argv[0]);
exit;
}
$average = array_pop($argv);
$count = array_pop($argv);
$variability = $argc === 4 ? array_pop($argv) : 0.3;
<?php
$obj = new stdClass();
$obj->a = new stdClass();
$obj->a->child = new stdClass();
$obj->b = new stdClass();
$obj->b->child = $obj->a->child;
$serialized = serialize($obj);
@MugeSo
MugeSo / leak-test.php
Last active August 29, 2015 13:55
Memory leak test of BEAR.Package
<?php
$context = 'prod';
$app = require dirname(__DIR__) . '/bootstrap/instance.php';
$count = $argv[1];
echo "Request page://self/ {$count} times.", PHP_EOL;
for ($i = 0; $i < $count; $i++) {
@MugeSo
MugeSo / AuraRouterMapProvider.php
Last active August 29, 2015 13:56
This class generates routing map for BEAR(http://bearsunday.github.io/) application.
<?php
namespace Webnium\BEAR\Extension\Router;
use Aura\Router\Map;
use Aura\Router\DefinitionFactory;
use Aura\Router\RouteFactory;
use Ray\Di\ProviderInterface;
use Ray\Di\Exception\NotInstantiable;
use BEAR\Sunday\Inject\ResourceInject;
module LRUMemoryCache {
export class Cache {
private leastRecentlyUsed: Node;
private mostRecentlyUsed: Node;
private map: Map<string, Node>;
private usage: number = 0;
constructor(public size: number) {
if (size <= 0) {
throw new Error('Cache size should be larger than 0');
@MugeSo
MugeSo / file0.txt
Last active August 29, 2015 14:15
Chrome拡張のEventPageでchrome.contextMenusを正しく動かす ref: http://qiita.com/MugeSo/items/e5307bda346c0bb8e22e
{
...
"background": {
"scripts": ["background.js"],
"persistent": false
}
...
}
@MugeSo
MugeSo / file0.txt
Last active March 25, 2016 14:27
WebStormでtypingsを使ってTypeScriptの定義ファイル管理 ref: http://qiita.com/MugeSo/items/c9a9c35a6d172d9a1c54
$ cd /path/to/project
$ rm -rf typings
$ typings init --upgrade
$ typings install