This file contains 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-5.3.8/Zend/zend_language_scanner.l Mon Jan 03 23:39:48 2011 | |
+++ php-5.4.0RC2/Zend/zend_language_scanner.l Tue Sep 13 22:29:35 2011 | |
@@ -21,7 +21,7 @@ | |
+----------------------------------------------------------------------+ | |
*/ | |
-/* $Id: zend_language_scanner.l 307028 2011-01-03 14:39:48Z iliaa $ */ | |
+/* $Id: zend_language_scanner.l 316627 2011-09-13 13:29:35Z dmitry $ */ | |
#if 0 |
This file contains 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-5.3.8/Zend/zend_language_parser.y Sun Jun 12 10:43:10 2011 | |
+++ php-5.4.0RC2/Zend/zend_language_parser.y Tue Nov 29 23:15:18 2011 | |
@@ -18,7 +18,7 @@ | |
+----------------------------------------------------------------------+ | |
*/ | |
-/* $Id: zend_language_parser.y 312076 2011-06-12 01:43:10Z felipe $ */ | |
+/* $Id: zend_language_parser.y 318823 2011-11-06 13:25:45Z felipe $ */ | |
/* |
This file contains 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 Version 5 | | |
+----------------------------------------------------------------------+ | |
| Copyright (c) 1997-2011 The PHP Group | | |
+----------------------------------------------------------------------+ | |
| This source file is subject to version 3.01 of the PHP license, | | |
| that is bundled with this package in the file LICENSE, and is | | |
| available through the world-wide-web at the following url: | | |
| http://www.php.net/license/3_01.txt | |
This file contains 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 | |
if (isset($argv[1]) && file_exists($argv[1])) { | |
$code = file_get_contents($argv[1]); | |
} else { | |
fputs(STDERR, "no source (follow output is fizzbuzz demo)\n\n"); | |
$code = file_get_contents(__FILE__, 0, null, __COMPILER_HALT_OFFSET__); | |
} | |
$buffer = array_pad(array(), 30, 0); |
This file contains 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
local logger = require 'fluent.logger' | |
logger.connect() | |
logger.post('test.test', {message='data'}) |
This file contains 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 | |
$cards = range(1,99); | |
$get_cards = array(); | |
$count = 0; | |
while(++$count) { | |
$get_cards[$cards[array_rand($cards, 1)]] = 1; | |
if (!array_diff($cards, array_keys($get_cards))) { | |
break; |
This file contains 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
#!/bin/bash | |
# | |
# chkconfig: 345 99 10 | |
# description: Skype service | |
# | |
# pidfile: /var/run/skype.pid | |
if [ -f /etc/init.d/functions ] ; then | |
. /etc/init.d/functions | |
elif [ -f /etc/rc.d/init.d/functions ] ; then |
This file contains 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
#!/bin/sh | |
export HOME=/home/redmine | |
SHELL="$HOME/.rvm/bin/rvm-shell 1.9.3" | |
PID_FILE=$HOME/redmine.pid | |
LISTEN='127.0.0.1:3001' | |
APP_DIR=$HOME/redmine-2.0 | |
start() { | |
cd $APP_DIR && $SHELL -c "unicorn --listen $LISTEN --pid=$PID_FILE --env=production --daemonize" |
This file contains 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
--- phantomjs.spec.original 2012-12-21 08:51:10.000000000 +0900 | |
+++ phantomjs.spec 2012-12-24 07:34:04.000000000 +0900 | |
@@ -1,5 +1,5 @@ | |
%define name phantomjs | |
-%define version 1.7 | |
+%define version 1.8.0 | |
%define release 1 | |
%define prefix /usr | |
@@ -122,6 +122,18 @@ |
This file contains 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>日本語csv sample</title> | |
</head> | |
<body> | |
<a id="js-download" href="dummy">download</a> | |
<script> | |
// (1) BOM の用意 |
OlderNewer