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
Verifying that +digitalkaoz is my blockchain ID. https://onename.com/digitalkaoz |
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
In file included from /tmp/php-zmq-master/ext_zmq.cpp:18:0: | |
/tmp/php-zmq-master/ext_zmq-private.h: In constructor 'HPHP::zmq::ZMQSocketData::ZMQSocketData(HPHP::zmq::ZMQContextData*, int64_t, bool)': | |
/tmp/php-zmq-master/ext_zmq-private.h:113:7: warning: 'HPHP::zmq::ZMQSocketData::pid' will be initialized after [-Wreorder] | |
int pid; | |
^ | |
/tmp/php-zmq-master/ext_zmq-private.h:111:8: warning: 'bool HPHP::zmq::ZMQSocketData::is_persistent' [-Wreorder] | |
bool is_persistent; | |
^ | |
/tmp/php-zmq-master/ext_zmq.cpp:279:1: warning: when initialized here [-Wreorder] | |
ZMQSocketData::ZMQSocketData(ZMQContextData* ctx, int64_t type, bool isPersistent) |
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 | |
$routes = new RouteCollection(); | |
$controller = function(Request $request) { | |
return new Response('foo'); | |
}; | |
$route = new Route('/foo', ['_controller' => $controller]); |
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
import angular = require('angular'); | |
import ModuleA from './components/moduleA/index'; | |
class App { | |
name = 'myapp'; | |
selector = '[ng-app]'; | |
private mod: angular.IModule; |
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
var gulp = require('gulp'); | |
var shell = require('gulp-shell'); | |
var plumber = require('gulp-plumber'); | |
gulp.task('run', function() { | |
gulp.src('') | |
.pipe(plumber()) | |
.pipe(shell('vendor/bin/phpspec run -fdot -v --stop-on-failure --ansi')) | |
; | |
}); |
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
#ifndef incl_HHVM_VERSION_H | |
#define incl_HHVM_VERSION_H | |
#include <boost/preprocessor/stringize.hpp> | |
#define HHVM_VERSION_MAJOR 3 | |
#define HHVM_VERSION_MINOR 4 | |
#define HHVM_VERSION_PATCH 0 | |
#define HHVM_VERSION_SUFFIX "" | |
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 EdmaParser implements Parser | |
{ | |
const TYPE = 'EDMA attribute'; | |
public function parse($source, array &$joins, array &$wheres, &$nos) | |
{ | |
$attr = (int) $source['attribute'][$i]; | |
$value = $source['valuei'][$i]; |
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
#backends should be injected here | |
director d1 round-robin { | |
} |
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 | |
// My/Ns/File | |
namespace My\Ns; | |
class File | |
{ | |
} |
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
#fetches a git branch from a repository | |
ps1_git_extra() { | |
branch=$(git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/') | |
if [ -z "$branch" ] ; then return ; fi | |
local timeout=1 | |
echo "[$branch$statmark]" | |
} | |
git_dirty() { | |
# check if we're in a git repo |