I hereby claim:
- I am withinboredom on github.
- I am withinboredom (https://keybase.io/withinboredom) on keybase.
- I have a public key ASA7Hof5cICohsBwRsp8WQINhYJlRoRWFoK_Ua6tIdO73Qo
To claim this, I am signing this object:
| // ==UserScript== | |
| // @name Purchaser | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://www.mediamarkt.nl/* | |
| // @match https://www.computop-paygate.com/* | |
| // @icon https://www.google.com/s2/favicons?domain=mediamarkt.nl | |
| // @grant GM_setValue |
| The only google result with this string: | |
| ccccccjttbrdcdvunrkcrceggkdeengbkcguguggluek |
I hereby claim:
To claim this, I am signing this object:
| // ==UserScript== | |
| // @name A better phabricator | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description shows how to use babel compiler | |
| // @author You | |
| // @require https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.18.2/babel.js | |
| // @require https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/6.16.0/polyfill.js | |
| // @require https://code.jquery.com/jquery-3.3.1.min.js | |
| // @match https://code.a8c.com/* |
| <?php | |
| for($a = 0; $a < 5; $a = $a + 1) { | |
| echo $a; | |
| } | |
| { | |
| $a = 0; | |
| while($a < 5) { | |
| { | |
| echo $a; |
| class User extends LiveActor { | |
| constructor( id, injectionContainer ) { | |
| super( id, injectionContainer ); | |
| // set initial state for all users | |
| this._state[ 'logged_in' ] = false; | |
| } | |
| /** | |
| * Login a user |
| { | |
| "output": [ | |
| "Step 1/11 : FROM withinboredom/scalable-wordpress:4.7.3-apache\n", | |
| null, | |
| null, | |
| "***SNIP***", | |
| " :: Layer already exists", | |
| " :: Layer already exists", |
| { | |
| "username": "withinboredom", | |
| "password": "***", | |
| "email": "***", | |
| "repo": "withinboredom/wordpress", | |
| "plugins": [ | |
| { | |
| "type": "wporg", | |
| "slug": "jetpack", | |
| "version": "latest" |
| using WordPress.Includes; | |
| namespace Example { | |
| class ExampleClass { | |
| public ExampleClass( WpHookManager hooks ) { | |
| hooks.AddAction( "example", Callback, priority: 10, acceptedArgs: 0 ); | |
| } | |
| private async Task<object> Callback(IEnumerable<object> args) { | |
| return true; |
| #!/bin/bash | |
| # Slack API token | |
| token="YOUR_TOKEN_HERE" | |
| postMessageUrl="https://slack.com/api/chat.postMessage" | |
| defaultChannel="#SOME_DEFAULT_CHANNEL" | |
| # Was last time "Yesterday"? | |
| echo "Yesterday? Or some other day? (Empty for yesterday)" | |
| read lastTime |