I hereby claim:
- I am alkemann on github.
- I am lake (https://keybase.io/lake) on keybase.
- I have a public key whose fingerprint is 4B50 4829 9001 5CA2 78D7 1B1F C21D FEFB 21E2 5F15
To claim this, I am signing this object:
| <?php | |
| /** | |
| * Place this file in the webroot of your project, | |
| * access it through http://project.dev/tests.php or http://localhost/project/webroot/tests.php | |
| * | |
| * Assuming you have defined a BASEPATH to the root of your project and | |
| */ | |
| define('BASEPATH', __DIR__.'/..'); // root of project, this one assumes /project/webroot/tests.php | |
| define('LOCATION', BASEPATH .'/app'); // in a SF2 project, this is where the phpunit.xml file is |
| function _oneValidPhoneNumber($in) { | |
| $stripped = preg_replace("/^[^0-9+]*[+]*46/", "+46", $in); | |
| $stripped = preg_replace("/^[^0-9+]*[+]*47/", "+47", $in); | |
| $stripped = preg_replace("/[^0-9+]/", "", $stripped); | |
| $stripped = preg_replace("/^0046/", "+46", $stripped); | |
| $stripped = preg_replace("/^0047/", "+47", $stripped); | |
| if (!$stripped) return false; | |
| if ($stripped[0] == '0') { | |
| $stripped = substr($stripped, 1); |
| [color] | |
| ui = auto | |
| diff = always | |
| status = always | |
| branch = always | |
| interactive = always | |
| [color "branch"] | |
| current = 220 | |
| local = 222 | |
| remote = 106 |
I hereby claim:
To claim this, I am signing this object:
| [color] | |
| ui = auto | |
| diff = auto | |
| status = always | |
| branch = always | |
| interactive = always | |
| [color "branch"] | |
| current = 220 | |
| local = 222 | |
| remote = 106 |
| [color] | |
| ui = auto | |
| diff = auto | |
| status = always | |
| branch = always | |
| interactive = always | |
| [color "branch"] | |
| current = 220 | |
| local = 222 | |
| remote = 106 |
| using UnityEngine; | |
| public class Job { | |
| public GameObject site; | |
| public float workload = 3f; | |
| public Job (GameObject site, float workload) { | |
| this.site = site; | |
| this.workload = workload; | |
| } | |
| } |
| const engine = Matter.Engine.create(), | |
| ground = new Ground(x = 200, y = 360, w = 600, h = 50, a = 0.2), | |
| shelf = new Ground(x = 250, y = 150, w = 200, h = 30, a = -0.2); | |
| var bodies = [], lastFrame, rad = 2; | |
| function setup() { | |
| createCanvas(400, 400); | |
| frameRate(60); | |
| stroke(200); | |
| fill(150); |
| echo '*/15 * * * * say `curl -s http://catfacts-api.appspot.com/api/facts |python -mjson.tool|grep facts -a1|tail -n1`' | crontab - |
| swagger: "2.0" | |
| info: | |
| version: "1.0.0" | |
| title: "Swagger Petstore" | |
| basePath: "/v2" | |
| schemes: | |
| - "http" | |
| paths: | |
| /pet: | |
| post: |