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
WITH | |
raw_person AS ( | |
SELECT | |
1 AS id, | |
'Joshua' AS first_name, | |
'Trusty' AS last_name, | |
'red' AS favorite_color, | |
'09-14-2023' AS date | |
UNION ALL | |
SELECT |
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
from sys import argv | |
from typing import TypeAlias, Literal, Union, get_args | |
singular_word: TypeAlias = Literal["pie", "pastry"] | |
plural_word: TypeAlias = Literal["pies", "pastries"] | |
def pluralize(word: singular_word, quantity: int) -> str: | |
plural_map: dict = dict(zip(get_args(singular_word), get_args(plural_word))) |
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
'use strict'; | |
var http = require('http'); | |
var fs = require('fs'); | |
//var JavaScript1 = require('./prep4Firebase') //require('./JavaScript1'); | |
//var d = require('./Script1'); | |
var url = require('url'); | |
var port = process.env.PORT || 1337; | |
//const vision = require('@google-cloud/vision'); | |
// Imports the Google Cloud client library |
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
e |