I hereby claim:
- I am q42jaap on github.
- I am jaap (https://keybase.io/jaap) on keybase.
- I have a public key ASDt6FKWFIyeyDcloxOQIq3i2Sd3deVe_4szSeeGX8T96wo
To claim this, I am signing this object:
<html> | |
<body> | |
<div id="app"> | |
<expander v-slot="{isExpanded, toggle}" :initial-expanded="false"> | |
<dl> | |
<dt class="toggler" :class="{expanded: isExpanded}" v-on:click="toggle">Name</dt> | |
<dd v-if="isExpanded"> | |
Description | |
</dd> | |
</dl> |
using System; | |
public class CdnConfiguration | |
{ | |
/// <summary> | |
/// Base url for the CDN, e.g. https://my-cdn.azureedge.net | |
/// </summary> | |
public string BaseUrl { get; set; } | |
/// <summary> |
import Layer from 'express/lib/router/layer'; | |
const Promise = global.Promise; | |
/** | |
* "fixt" express mbt promises. Als een stukje middleware een promise returnt dan moeten errors eigenlijk aan next worden gegeven. | |
* | |
* We hadden ook de suffix `Async` kunnen gebruiken om naast de bestaande functies nieuwe te maken. Dat heeft een flink nadeel | |
* omdat de api op verschillende manieren te benaderen is. | |
*/ |
I hereby claim:
To claim this, I am signing this object:
'use strict'; | |
var i = 0; | |
console.log('starting app'); | |
setInterval(function() { | |
i++; | |
console.log('simulate activity'); | |
if (i > 5) { | |
doesNotExist = 0; // this will throw ReferenceError: doesNotExist is not defined | |
} |
package util | |
import play.api.libs.json.Format | |
import util.macroimpl.MacrosImpl | |
import language.experimental.macros | |
object JsonMacros { | |
// We did not reuse \/ from scalaz, to avoid a dependency on scalaz in the macros module | |
trait \/[A, B] |
#!/bin/sh | |
# assume the index products doesn't exist | |
# otherwise uncomment the following line | |
# curl -XDELETE localhost:9200/products | |
curl -XPUT localhost:9200/products/product/1 -d'{ | |
"property1": "value1" | |
}' |
#!/bin/sh | |
# assume the index products doesn't exist | |
# otherwise uncomment the following line | |
# curl -XDELETE localhost:9200/products | |
curl -XPUT localhost:9200/products/product/1 -d'{ | |
"property1": "value1" | |
}' |
PsExec.exe -i -u "NT AUTHORITY\NETWORK SERVICE" cmd.exe |
DBCC SHRINKDATABASE (UserDB, 10); | |
GO |