apt-get purge thunderbird*
apt-get purge firefox* xul-*
apt-get purge gnumeric*
apt-get purge abiword*
apt-get purge pidgin* libpurple*
apt-get purge gmusicbrowser
apt-get purge transmission*
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 __DIR__.'/vendor/autoload.php'; | |
$loop = React\EventLoop\Factory::create(); | |
$socket = new React\Socket\Server($loop); | |
// Create a blob of data for testing | |
$data = ''; | |
for ($i = 1; $i <= 8; $i++) $data .= $i.str_repeat("\0", 1022)."\n"; |
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
$ phing -f test.xml | |
Buildfile: test.xml | |
[PHP Error] Argument 1 passed to Mapper::__construct() must be an instance of Project, none given, called in vendor/phing/phing/classes/phing/Project.php on line 767 and defined [line 52 of vendor/phing/phing/classes/phing/types/Mapper.php] | |
test > test: | |
[copy] Copying 1 file to /tmp | |
BUILD FINISHED |
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 | |
function getEnvironment() { | |
if ($_ENV) { | |
return $_ENV; | |
} | |
$keys = array_keys($_SERVER); | |
return $_ENV = array_filter( |
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
(function(tag, domain) { | |
domain = domain || 'github.com'; | |
// No tag supplied. | |
if (!tag) return; | |
// Bail out if not the correct domain. | |
if (domain !== window.location.hostname) return; | |
// String.trimLeft() method is required. |
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
(function($, id) { | |
var $label = $('label[for=' + id + ']'); | |
var $input = $('#' + id); | |
if ($('#sudo_username').length > 0) { | |
return; | |
} | |
$label.clone().attr('for', 'sudo_username').text('Username').insertBefore($label); | |
$input.clone().attr({ |
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
(function(location, domain) { | |
var search, regexp; | |
domain = domain || 'github.com'; | |
search = location.search; | |
regexp = /[\?&]w=1/; | |
if (domain !== location.hostname) return; | |
if (regexp.test(search)) { |
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
$('[data-hotkey]').map(function() { | |
var $this = $(this); | |
return '\'' | |
+ ($this.text().trim() || $this.attr('href') || $this.attr('placeholder')) | |
+ '\': ' | |
+ $this.data('hotkey').replace(/, */, ' or '); | |
}).toArray().join("\n") |
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
PHPUnit 3.7.28 by Sebastian Bergmann. | |
Configuration read from /home/chris/src/symfony/vendor/egulias/email-validator/phpunit.xml.dist | |
.............................F...........FF.FF.F......F.....F.. 63 / 328 ( 19%) | |
....F..FF..F.F.F.F.......................................FF.... 126 / 328 ( 38%) | |
........FF.....FFFFF....FFFFF....F............................. 189 / 328 ( 57%) | |
............................................................... 252 / 328 ( 76%) | |
................................F.............F......FFFFF....F 315 / 328 ( 96%) | |
FFFF......... |
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 | |
use Composer\Autoloader\ClassLoader; | |
class loader | |
{ | |
private $loader; | |
private $overlays = array(); | |
public function __construct(ClassLoader $loader, array $overlays) |