I hereby claim:
- I am Vratislav on github.
- I am vratislav (https://keybase.io/vratislav) on keybase.
- I have a public key whose fingerprint is 4F7C 00F6 1E91 06DD 9040 F0CC 6E73 7C60 D9C9 16C2
To claim this, I am signing this object:
| curl --header "Content-Type: application/json" \ | |
| --request POST \ | |
| --data '{ | |
| "date":"2017-09-11T18:19:15+02:00", | |
| "candidateID":12345, | |
| "offerID":1234, | |
| "name":"Pan Žralok", | |
| "position":"Vývojář webhooků", | |
| "why":"Chci se stát vývojářem webhooků na StartupJobs.cz, protože mě to baví!", | |
| "phone":"+420 725 875 752", |
| { | |
| "text": "Nový uchazeč o práci!\n*{{name}}* chce být *{{position}}*\n\n\n:phone: {{phone}} \n:email: {{email}}\n", | |
| "attachments": [ | |
| { | |
| "fallback": "{{why}}", | |
| "color": "#6B97CA", | |
| "title": "Proč já:question:", | |
| "text": "{{why}}" | |
| }, | |
| { |
| const int START_LEVEL = 3; | |
| const int NUMBER_OF_BUTTONS = 4; | |
| const int MAX_SEQUENCE_LENGTH = 256; | |
| //INPUT PINS | |
| const int btnBluePin = 2; | |
| const int btnGreenPin = 3; | |
| const int btnRedPin = 4; |
| class Player | |
| def enemey_ahead?(warrior) | |
| spaces = warrior.look | |
| return true if spaces[0].enemy? | |
| return false if !spaces[0].empty? | |
| return true if spaces[1].enemy? | |
| return false if !spaces[1].empty? | |
| return true if spaces[2].enemy? |
I hereby claim:
To claim this, I am signing this object:
| using System; | |
| using Applifting; | |
| using Android.Content; | |
| using Xamarin.Forms.Labs.Services; | |
| namespace Applifting.Droid | |
| { | |
| public interface IDroidContextProvider{ | |
| Context Context {get;} | |
| } |
| class Player | |
| #some dark reflection magic to allow our warrior to work in earlier levels | |
| #where he does not have all the abilities | |
| class DummySpace | |
| def method_missing(name, *arguments) | |
| if(name == :empty?) | |
| return true | |
| else | |
| return false |