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
2020-09-16T20:45:36.498+0000 checking options | |
2020-09-16T20:45:36.498+0000 dumping with object check disabled | |
2020-09-16T20:45:36.498+0000 will listen for SIGTERM, SIGINT, and SIGKILL | |
2020-09-16T20:45:36.500+0000 connected to node type: standalone | |
2020-09-16T20:45:36.500+0000 standalone server: setting write concern w to 1 | |
2020-09-16T20:45:36.500+0000 using write concern: w='1', j=false, fsync=false, wtimeout=0 | |
2020-09-16T20:45:36.538+0000 archive prelude source-db.collection1 | |
2020-09-16T20:45:36.538+0000 archive prelude source-db.collection2 | |
2020-09-16T20:45:36.538+0000 archive prelude source-db.collection3 | |
2020-09-16T20:45:36.538+0000 archive prelude source-db.collection4 |
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
# for yarn berry | |
FROM --platform=linux/amd64 node:14.21-bullseye | |
# install node_module packages needed to build | |
WORKDIR /app | |
COPY .yarnrc.yml . | |
COPY .yarn/releases/yarn-3.4.1.cjs .yarn/releases/yarn-3.4.1.cjs | |
COPY package.json . | |
COPY yarn.lock . |
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
require("lspconfig").tsserver.setup { | |
cmd = {"typescript-language-server", "--stdio", "--log-level", "4"}, | |
init_options = { | |
hostInfo = "neovim", | |
maxTsServerMemory = 4096, | |
tsserver = { | |
logDirectory = <path>, | |
logVerbosity = "verbose" | |
} | |
}, |
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
Consider the following story: | |
Jack was an enforcer in an organized crime unit in Moscow lead by a man called Yuri. Arriving seemingly out of nowhere, Jack quickly gained a reputation as someone who could get things done. He tracked down people, and squeezed money out of them in seemingly impossible circumstances, where everyone else failed. Due to his success, he was invited to come along on an assignment to Prague. Yuri informed Jack that they were getting into some serious business now, and assigned him to be a body guard to a Russian diplomat who was going to be making some business arrangements. But Jack and the diplomat vanished. Shortly after, Yuri and the rest of the crew were seized at the border by a CIA agent who bared an uncanny resemblance to Jack. | |
Please answer the following questions about the story: | |
* Why did Jack come to Moscow? | |
* What likely happened to Jack and the diplomat? | |
* Was Jack good or evil? | |
* Who was the CIA agent at the end of the story? | |
* How did Yuri likely feel when meeting t |
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
// Types to make the code more readable and type-safe | |
type StudentResponse = number[][] | |
type AnswerKey = number[][] | |
type CardPair = [number, number] | |
type PairCount = { pair: CardPair; count: number } | |
/** | |
* Finds incorrectly grouped card pairs across all student responses, | |
* sorted by frequency (most frequent first) | |
*/ |
OlderNewer