I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!
\
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 fs from "fs"; | |
import path from "path"; | |
const SESSION_LIST_URL = | |
"https://www.abstractsonline.com/oe3/Program/20273/Search/10/Results?page=1&pagesize=50&total_pages=3&total_entries=122&sort=1&order=asc"; | |
const HEADERS_1 = { | |
Accept: "application/json", | |
"Content-Type": "application/json", | |
"User-Agent": |
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
一 yī;one | |
一天 yī tiān;one day | |
七 qī;seven | |
万 wàn;ten thousand | |
三 sān;three | |
上 shàng;up/last/on | |
上个 shàng ge;last | |
上个月 shàng ge yuè;last month | |
上午 shàng wǔ;morning | |
上学 shàng xué;go to school |
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 notice = (e) => new Notice(e, 5e3); | |
const log = (e) => console.log(e); | |
const logError = (e) => console.error(e); | |
const GOOGLE_BOOKS_API_URL = "https://www.googleapis.com/books/v1/volumes"; | |
const GOOGLE_BOOKS_TITLE_TERM = "intitle:"; | |
function replaceIllegalFileNameCharactersInString(e) { | |
return e.replace(/[\\,#%&\{\}\/*<>?$\'\":@]*/g, ""); | |
} |
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
[ | |
{ | |
"SiteNumber": "50009.*A", | |
"Type": "AIRPORT", | |
"LocationID": "'ADK", | |
"EffectiveDate": "3/2/17", | |
"Region": "AAL", | |
"State": "AK", | |
"StateName": "ALASKA", | |
"County": "ALEUTIANS WEST", |
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
# Node for LinkedList | |
class Node: | |
def __init__(self, value): | |
self.value = value | |
self.next = null | |
# A data structure that is a series of nodes, | |
# and each node points to the next node of the list | |
# Linked lists use the “last-in-first-out” method (similar to a stack)where nodes are added to and deleted from the same end. |
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 dateFormat = "YYYY-MM-DD"; | |
const dateBasisStr = await tp.system.prompt("When is the meeting?"); | |
if (dateBasisStr) { | |
function createMessage(daysBefore, dateFormat, dateBasisStr) { | |
let parseResult; | |
let newDate; | |
let parseResultLink; | |
let nlDatesPlugin = app.plugins.getPlugin('nldates-obsidian'); |
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
https://crontab.guru/ |
NewerOlder