I hereby claim:
- I am frak on github.
- I am frak (https://keybase.io/frak) on keybase.
- I have a public key ASBZKTAz8fEvT9vmDNv1tUDCm-2ndGfcVk0SKGTjmSFsdwo
To claim this, I am signing this object:
#task to add 'parameters:' to an empty parameters file | |
task :fix_empty_parameters_yml | |
do | |
parameters_path = "app/config/parameters.yml" | |
run "LEN=$(cat #{shared_path}/#{parameters_path} | wc -c); if [ $LEN -eq 0 ] ; then echo \"parameters:\" > #{shared_path}/#{parameters_path} ; fi" | |
end | |
#run the parameters fix task before composer kicks off | |
before "symfony:composer:install", "fix_empty_parameters_yml" |
'use strict'; | |
var dbSession = require('./dbSession.js'); | |
var Percolator = require('percolator').Percolator; | |
var Server = function (port) { | |
var server = Percolator({'port': port, 'autoLink': false, 'staticDir': __dirname + '/../frontend'}); | |
server.route( | |
'/api/keywords', |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env php | |
<?php | |
if ($argc !== 2) { | |
die('Usage: cleanup_header_comments.php directory_to_fix'.PHP_EOL); | |
} | |
$workingDir = $argv[1]; | |
if (is_dir($workingDir) === false || is_writable($workingDir) === false) { | |
die($workingDir.' either does not exist or is not writable'); |
<?php | |
class Called | |
{ | |
public function doThis($callback) | |
{ | |
$callback('this is not a love song'); | |
} | |
} |
<?php | |
namespace AppBundle\Composer; | |
use Composer\Script\Event; | |
use Sensio\Bundle\DistributionBundle\Composer\ScriptHandler; | |
class MigrationHandler extends ScriptHandler | |
{ | |
/** |
When you're working on multiple coding projects, you might want a couple different version of Python and/or modules installed. That way you can keep each project in its own sandbox instead of trying to juggle multiple projects (each with different dependencies) on your system's version of Python. This intermediate guide covers one way to handle multiple Python versions and Python environments on your own (i.e., without a package manager like conda
). See the Using the workflow section to view the end result.
zend_extension=xdebug.so | |
xdebug.remote_enable=1 | |
xdebug.remote_autostart=1 | |
xdebug.remote_connect_back=0 | |
xdebug.remote_host=192.168.10.254 | |
xdebug.idekey=phpstorm |
/* From https://github.com/raspberrypi-ui/rc_gui/blob/master/src/rc_gui.c#L23-L70 */ | |
#define GET_CAN_EXPAND "sudo raspi-config nonint get_can_expand" | |
#define EXPAND_FS "sudo raspi-config nonint do_expand_rootfs" | |
#define GET_HOSTNAME "sudo raspi-config nonint get_hostname" | |
#define SET_HOSTNAME "sudo raspi-config nonint do_hostname %s" | |
#define GET_BOOT_CLI "sudo raspi-config nonint get_boot_cli" | |
#define GET_AUTOLOGIN "sudo raspi-config nonint get_autologin" | |
#define SET_BOOT_CLI "sudo raspi-config nonint do_boot_behaviour B1" | |
#define SET_BOOT_CLIA "sudo raspi-config nonint do_boot_behaviour B2" | |
#define SET_BOOT_GUI "sudo raspi-config nonint do_boot_behaviour B3" |