I hereby claim:
- I am creativeguy2013 on github.
- I am lucacasonato (https://keybase.io/lucacasonato) on keybase.
- I have a public key whose fingerprint is 9E56 9ED0 0724 4503 D97B 05D8 6A72 DF60 FBAE 5977
To claim this, I am signing this object:
| def localProperties = new Properties() | |
| def localPropertiesFile = rootProject.file('local.properties') | |
| if (localPropertiesFile.exists()) { | |
| localPropertiesFile.withReader('UTF-8') { reader -> | |
| localProperties.load(reader) | |
| } | |
| } | |
| def flutterRoot = localProperties.getProperty('flutter.sdk') | |
| if (flutterRoot == null) { |
| const functions = require('firebase-functions'); | |
| const admin = require('firebase-admin'); | |
| admin.initializeApp(functions.config().firebase); | |
| // On sign up. | |
| exports.processSignUp = functions.auth.user().onCreate(event => { | |
| const user = event.data; // The Firebase user. | |
| // Check if user meets role criteria. | |
| if (user.email && |
| { | |
| "comments": [{ | |
| "id": "5c4081ab2d2ab7110393de93", | |
| "user": "203a36cf38c863d5a9a9a9f0", | |
| "video": "8dYZDar1Xs", | |
| "text": "Good video!", | |
| "replying": null, | |
| "postDate": "2019-01-26T22:39:06.413Z", | |
| "editDate": "2019-01-26T22:39:06.413Z", | |
| "replies": [], |
I hereby claim:
To claim this, I am signing this object:
| lucacasonato | |
| luca-rand |
| Compile file:///home/lucacasonato/Downloads/test.ts | |
| error TS2345: Argument of type '1' is not assignable to parameter of type 'string'. | |
| ► file:///home/lucacasonato/Downloads/test2.ts:5:7 | |
| 5 hello(1); |
| import * as voca from "voca"; | |
| console.log(voca); |
| const proc = Deno.run({ | |
| cmd: ["deno", "doc", "lib.deno.d.ts", "--json", "--reload"], | |
| stdout: "piped", | |
| stderr: "piped" | |
| }); | |
| const status = await proc.status(); | |
| await Deno.copy(Deno.stdout, proc.stdout) |
| // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. | |
| /// <reference no-default-lib="true" /> | |
| /// <reference lib="esnext" /> | |
| export namespace Deno { | |
| /** The current process id of the runtime. */ | |
| export let pid: number; | |
| /** Reflects the NO_COLOR environment variable. |