I hereby claim:
- I am leedavis81 on github.
- I am key (https://keybase.io/key) on keybase.
- I have a public key whose fingerprint is FBD6 9681 782B 4A5A CFD8 709C 7C11 2018 89BA 094A
To claim this, I am signing this object:
<?php | |
$x = array("@rgbdesignsuk", "@scanrif", "@SkyRak3r", "@MarcTowler", "@aran384", "@_daverandom", "@billieathompson", "@leeboynton", "@elinor_gilbert", "@uresu", "@simonscarfe", "@dshafik", "@MultiAxisMatt", "@craigwillis85", "@ukmadlz", "@iamkahdija", "@AidanThreadgold", "@bopp", "@beausimensen");shuffle($x);echo "\nAnd the winner is: " . array_pop($x) . "\n\n"; |
<?php | |
var_dump( | |
$bucketName, | |
$this->getS3Client()->doesBucketExist($bucketName), | |
$this->getS3Client()->listBuckets() | |
); | |
/** | |
string 'ldr.kpi.dev' (length=11) |
I hereby claim:
To claim this, I am signing this object:
SOFTWARE DEVELOPMENT AGREEMENT | |
THIS AGREEMENT (“Agreement”) is entered into on %date%, between %name% (“Developer”), with its principal place of business located at %developer address% and %client company name% (“Client”), with its principal place of business located at %client address% and shall be effective as of %date% (the “Effective Date”). | |
WHEREAS, Developer is engaged in the business of software development, | |
WHEREAS, Client wishes to utilize the services of Developer in connection with the development of certain software identified as projectx (the “Software”). | |
NOW, THEREFORE, Developer and Client agree as follows: | |
1. Scope of Services | |
Developer will perform the services described in Exhibit A (the “Work”), in order to develop and implement the Software according to specifications and completion time set forth therein. Client will cooperate with Developer’s reasonable requests for information and data necessary for the completion of the Work. | |
2. Term and Termination | |
Unless terminated as provided herei |
#! /bin/sh | |
### BEGIN INIT INFO | |
# Provides: supervisord | |
# Required-Start: $local_fs $remote_fs $networking | |
# Required-Stop: $local_fs $remote_fs $networking | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Starts supervisord - see http://supervisord.org | |
# Description: Starts and stops supervisord as needed - see http://supervisord.org | |
### END INIT INFO |
<?php | |
/** | |
* Shutdown process handler, allows you to unregister a process (not supported natively in PHP) | |
* Usage: | |
* $sd = new System_ShutdownProcess($callable); | |
* $sd->register() /// $sd->unregister() | |
* or via factory | |
* $sd = System_ShutdownProcess::factory($callable)->register() | |
*/ |
#!/bin/bash | |
# reloads a Solr core | |
if [ "$1" = "" ]; then | |
echo -n "Name of core to reload: " | |
read name | |
else | |
name=$1 | |
fi |
#!/bin/bash | |
# creates a new Solr core | |
if [ "$1" = "" ]; then | |
echo -n "Name of core to create: " | |
read name | |
else | |
name=$1 | |
fi |
#!/bin/bash | |
clear | |
echo "*************************************************************************" | |
echo "*************************************************************************" | |
echo | |
echo " You are about to *permanently* delete a core!" | |
echo " There is no going back" | |
echo | |
echo "*************************************************************************" |
@ECHO OFF | |
php "%~dp0composer.phar" %* |