I hereby claim:
- I am noisebleed on github.
- I am noiselabs (https://keybase.io/noiselabs) on keybase.
- I have a public key ASBKwekwhwRMvNONRMd2CQ50n58V2BzpoJt1EMCStORI7Ao
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
<?xml version="1.0" encoding="UTF-8"?> | |
<phpunit | |
colors = "true" | |
convertErrorsToExceptions = "true" | |
convertNoticesToExceptions = "true" | |
convertWarningsToExceptions = "true" | |
processIsolation = "false" | |
stopOnFailure = "true" | |
syntaxCheck = "true" | |
bootstrap = "vendor/autoload.php"> |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# | |
# Copyright (C) 2014 Vítor Brandão <[email protected]> | |
import subprocess | |
from contextlib import closing | |
import glob | |
import os | |
import requests |
#!/usr/lib/python-exec/python-exec2-c | |
# vim:fileencoding=utf-8:ft=python | |
# (c) 2012 Michał Górny | |
# Released under the terms of the 2-clause BSD license. | |
# | |
# This is not the script you are looking for. This is just a wrapper. | |
# The actual scripts of this application were installed with -python*, | |
# -pypy* or -jython* suffixes. You are most likely looking for one | |
# of those. |
#!/usr/bin/python2.7 | |
# EASY-INSTALL-ENTRY-SCRIPT: 'Sphinx==1.1.3','console_scripts','sphinx-autogen' | |
__requires__ = 'Sphinx==1.1.3' | |
import sys | |
from pkg_resources import load_entry_point | |
if __name__ == '__main__': | |
sys.exit( | |
load_entry_point('Sphinx==1.1.3', 'console_scripts', 'sphinx-autogen')() | |
) |
#!/usr/bin/python2.7 | |
# EASY-INSTALL-ENTRY-SCRIPT: 'Sphinx==1.1.3','console_scripts','sphinx-autogen' | |
__requires__ = 'Sphinx==1.1.3' | |
import sys | |
from pkg_resources import load_entry_point | |
if __name__ == '__main__': | |
sys.exit( | |
load_entry_point('Sphinx==1.1.3', 'console_scripts', 'sphinx-autogen')() | |
) |
I hereby claim:
To claim this, I am signing this object:
<?php | |
namespace Vendorx; | |
class GlobalVariablesContainer | |
{ | |
protected $vars; | |
public function __construct($three = 3) | |
{ |
$ ./app/console | |
PPI version 2.1.0-DEV - development/debug | |
Usage: | |
[options] command [arguments] | |
Options: | |
--help -h Display this help message. | |
--quiet -q Do not output any message. | |
--verbose -v Increase verbosity of messages. |
import portage | |
from gentoolkit.package import Package | |
def get_all_packages(overlay_path): | |
"""Returns all packages from a given overlay path. | |
""" | |
packages = {} | |
porttree = portage.db[portage.root]['porttree'] | |
vartree = portage.db[portage.root]['vartree'] |