This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: tools/fs/watch.ts | |
IDEA additional info: | |
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP | |
<+>UTF-8 | |
=================================================================== | |
--- tools/fs/watch.ts (revision 9343ce2a3e6cfe88d591b827f826ee3241f66b3b) | |
+++ tools/fs/watch.ts (date 1589406620439) | |
@@ -117,6 +117,8 @@ | |
return; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const amqp = require('amqplib'); | |
const login = '<login>'; | |
const pass = '<password>'; | |
const queue = 'queue'; | |
async function main() { | |
const conn = await amqp.connect( | |
`amqp://${login}:${pass}@amqp.minter-service.online:5672`, | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { jsonMember, jsonObject, TypedJSON } from 'typedjson'; | |
import { JsonObjectMetadata } from 'typedjson/js/typedjson/metadata'; | |
import { IJsonObjectOptions } from 'typedjson/js/typedjson/json-object'; | |
import { ParameterlessConstructor } from 'typedjson/js/typedjson/types'; | |
import { Serializer } from 'typedjson/js/typedjson/serializer'; | |
const META_FIELD = '__typedJsonJsonObjectMetadataInformation__'; | |
function findRootMetaInfo(proto): JsonObjectMetadata { | |
const protoProto = Object.getPrototypeOf(proto); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am krizka on github. | |
* I am kriz (https://keybase.io/kriz) on keybase. | |
* I have a public key ASDzl-hddOESPqrv6rZHLGpkhTFwyqx2Ql99dxo6UBNgsgo | |
To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by kriz on 13/05/16. | |
*/ | |
import React from 'react'; | |
import FormsyText from 'formsy-material-ui/lib/FormsyText'; | |
function debounceFunc(fn, delay) { | |
var timer = null; | |
return function () { |