I hereby claim:
- I am robknight on github.
- I am rjknight (https://keybase.io/rjknight) on keybase.
- I have a public key ASCKQInQucNRK7niQ1gdMfEb46mubVWuq6G1-P7QqJ_miwo
To claim this, I am signing this object:
| [ | |
| { | |
| "pcdType": "eddsa-ticket-pcd", | |
| "publicKey": [ | |
| "044e711fd3a1792a825aa896104da5276bbe710fd9b59dddea1aaf8d84535aaf", | |
| "2b259329f0adf98c9b6cf2a11db7225fdcaa4f8796c61864e86154477da10663" | |
| ], | |
| "eventId": "1f36ddce-e538-4c7a-9f31-6a4b2221ecac", | |
| "eventName": "Devconnect ARG — Ethereum World's Fair", | |
| "productId": "13d06437-ff44-46c3-a76d-e7f9a4e00707", |
| player1_turn(move_pod) = AND( | |
| Equal(old_game_pod["next_turn"], SELF["player1"]) | |
| Equal(move_pod["_signer"], SELF["player1"]) | |
| DictContains(SELF["board"], move_pod["place"], SELF["player_1_token"]) | |
| Equal(SELF["next_turn"], SELF["player2"]) | |
| ) | |
| player2_turn(move_pod) = AND( | |
| Equal(old_game_pod["next_turn"], SELF["player2"]) | |
| Equal(move_pod["_signer"], SELF["player2"]) |
| [ | |
| { | |
| "signerPublicKey": "YwahfUdUYehkGMaWh0+q3F8itx2h8mybjPmt8CmTJSs", | |
| "eventId": "5074edf5-f079-4099-b036-22223c0c6995", | |
| "productId": "220f81f4-ca7b-4e47-bfb7-14bf1aa94a89" | |
| // "General Admission" | |
| }, | |
| { | |
| "signerPublicKey": "YwahfUdUYehkGMaWh0+q3F8itx2h8mybjPmt8CmTJSs", | |
| "eventId": "5074edf5-f079-4099-b036-22223c0c6995", |
| Hey, I'm robknight-20022 and I have contributed to the Semaphore V4 Ceremony. | |
| The following are my contribution signatures: | |
| Circuit # 1 (semaphorev4-1) | |
| Contributor # 204 | |
| Contribution Hash: 317e952e 5d1c21e7 4817751d d99e1ff9 | |
| d3c7100c 1304db8d d59da0b0 d4cb1d4a | |
| 1b218297 e4d73222 9d783377 9e473c14 | |
| 1b84c89b 47b3826e 19fb62f2 c9b25ce8 |
I hereby claim:
To claim this, I am signing this object:
| swagger: "2.0" | |
| info: | |
| version: 1.0.0 | |
| title: Content Availability | |
| host: web-test.store.bbc.com | |
| basePath: '/store-api/v1' | |
| schemes: | |
| - https | |
| consumes: | |
| - application/json |
| [8] #default> class MyClass { function say($words, $times) { for ($i = 0; $i < $times; $i++) { echo $words . "\n"; } } } | |
| [9] #default> $x = new MyClass; | |
| // object(MyClass)( | |
| // | |
| // ) | |
| [10] #default> $y = array($x, 'say'); | |
| // array( | |
| // 0 => object(MyClass)( | |
| // | |
| // ), |
| drupal git:8.x ❯ ohcount ✭ | |
| Examining 12716 file(s) | |
| Ohloh Line Count Summary | |
| Language Files Code Comment Comment % Blank Total | |
| ---------------- ----- --------- --------- --------- --------- --------- | |
| php 6941 461918 315268 40.6% 111138 888324 | |
| javascript 460 58479 14818 20.2% 9902 83199 | |
| css 132 13830 1873 11.9% 1163 16866 |
| composer::project {'drush': | |
| project_name => 'drush/drush', | |
| target_dir => '/opt/drush', | |
| version => 'dev-master' | |
| } | |
| file {'/usr/bin/drush': | |
| ensure => 'link', | |
| target => '/opt/drush/drush' | |
| } |
| (ns parser.testing | |
| (:require [instaparse.core :as insta])) | |
| (def textparse | |
| (insta/parser | |
| "S = (Content)* | |
| Content = (ContentLine)* | |
| ContentLine = (Word | Whitespace)+ LineEnd? | |
| <Word> = #'\\S+' | |
| <Whitespace> = #'\\s*' |