See https://github.com/hermanbanken/funda-image-downloader
This file contains 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
module github.com/hermanbanken/datastore-pagination-bugreport | |
go 1.19 | |
replace cloud.google.com/go/datastore => github.com/hermanbanken/google-cloud-go/datastore v1.5.1-0.20230705143622-a2a6954dde9a | |
require ( | |
cloud.google.com/go/datastore v1.12.0 | |
github.com/smartystreets/assertions v1.13.1 | |
google.golang.org/api v0.126.0 |
This file contains 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
module github.com/hermanbanken/datastore-pagination-bugreport | |
go 1.19 | |
require ( | |
cloud.google.com/go/datastore v1.12.0 | |
github.com/smartystreets/assertions v1.13.1 | |
google.golang.org/api v0.126.0 | |
) |
This file contains 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
module github.com/q42philips/trace-export | |
go 1.19 | |
require cloud.google.com/go/trace v1.8.0 | |
require ( | |
cloud.google.com/go/compute v1.14.0 // indirect | |
cloud.google.com/go/compute/metadata v0.2.3 // indirect | |
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect |
This file contains 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 React, {useCallback, useRef, useState} from 'react'; | |
import { | |
Pressable, | |
RefreshControl, | |
SafeAreaView, | |
ScrollView, | |
StyleSheet, | |
Text, | |
View, | |
} from 'react-native'; |
This file contains 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
slides.html | |
slides.pdf |
This file contains 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 * as functions from "firebase-functions" // The Cloud Functions for Firebase SDK to create Cloud Functions and set up triggers. | |
import { Firestore } from "@google-cloud/firestore"; // Cloud Firestore: Node.js Client | |
import * as admin from "firebase-admin"; // The Firebase Admin SDK to access Firestore. | |
admin.initializeApp(); | |
const db = admin.firestore(); | |
const adminUSA = new Firestore({projectId:"firestoreusa"}); // Firebase USA access account | |
const collections = ["bridges", "users", "tokens"]; |
This file contains 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
FROM node:alpine | |
COPY server.js /srv/www/ | |
COPY server.js.map /srv/www/ | |
ENV API_URL=http://example.com NODE_OPTIONS=--enable-source-maps | |
ENTRYPOINT [ "node", "/srv/www/server.js" ] |
This file contains 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
# yaml-language-server: $schema=https://github.com/jcchavezs/envoy-config-schema/releases/download/v1.21.0/v3_Bootstrap.json | |
node: | |
id: "something" | |
cluster: "some-cluster" | |
metadata: | |
any: {} | |
key: can | |
be: used-here | |
locality: | |
zone: "europe-west4-a" |
Sadly we can't have nice things in TypeScript (see https://www.ackee.agency/blog/typescript). Specifically middleware that:
- Notifies when the chain is broken
pipe(
() => 21,
(n: number) => n * 2,
(n: string) => n.repeat(5), // Error: number is not assignable to string
NewerOlder