I hereby claim:
- I am smadbe on github.
- I am dleroy (https://keybase.io/dleroy) on keybase.
- I have a public key ASC26tMAf3NXnkddJtPM6TBkBR6VSk33TuxA0Oz9zlOPoAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| [ | |
| { | |
| "timestamp": "20131201170211", | |
| "gametime": "15", | |
| "type": "action", | |
| "body": { | |
| "label": "Missed 3 pointer", | |
| "player": { | |
| "number": 15, |
| { | |
| "type": "object", | |
| "properties": { | |
| "home_team": { | |
| "type": "boolean", | |
| "required": true, | |
| } | |
| } | |
| } |
| { | |
| "type": "object", | |
| "properties": { | |
| "home_team": { | |
| "type": "boolean", | |
| "required": true, | |
| "description": "the team which do the substitution" | |
| }, | |
| "player_out": { | |
| "type": "object", |
| { | |
| "type": "object", | |
| "properties": { | |
| "label": { | |
| "type": "string", | |
| "required" : true, | |
| "description”: ”a short text label in english describing the action" | |
| }, | |
| "player": { | |
| "type": "object", |
| { | |
| "type": "object", | |
| "properties": { | |
| "timestamp": { | |
| "type": "number", | |
| "required" : true, | |
| "description": "UTC timestamp - the moment on the universal timeline when the event took place" | |
| }, | |
| "id": { | |
| "type": "number", |
| import java.lang.SecurityManager; | |
| public class NoThreadSecurityManager extends SecurityManager { | |
| public void checkAccess(Thread t) | |
| { | |
| super.checkAccess(t); | |
| throw new SecurityException("New thread not allowed"); | |
| } |
| public class Main extends Thread { | |
| public static void main(String[] args) { | |
| System.setSecurityManager(new NoThreadSecurityManager()); | |
| TaskT.main(args); | |
| } | |
| } |