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
{ | |
"alert": 4559, | |
"alter": 4559, | |
"later": 4559, | |
"arose": 4534, | |
"irate": 4511, | |
"stare": 4509, | |
"arise": 4451, | |
"raise": 4451, | |
"learn": 4405, |
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
aback | |
abase | |
abate | |
abbey | |
abbot | |
abhor | |
abide | |
abled | |
abode | |
abort |
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
class Node { | |
constructor(value) { | |
this.value = value | |
} | |
} | |
class Tree { | |
add(node) { | |
if (!this.root) { | |
this.root = node |
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
// Interview question: | |
// | |
// What is a linked list? Implement one in JavaScript without | |
// using an array. (I did this in about ten minutes) | |
// | |
// What is the time complexity of add()? How can you make it O(1)? | |
class Node { | |
constructor(value) { | |
this.value = value |
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
├── LICENSE | |
├── README.md | |
├── gatsby-config.js | |
├── gatsby-node.js | |
├── node_modules | |
├── package-lock.json | |
├── package.json | |
├── src | |
│ ├── layouts | |
│ ├── pages |
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
{"version":1,"resource":"file:///Users/zposten/dev/skyslope-react-document-viewer/lib/src/components/SinglePdfViewer/useSingleDocumentContext.ts","entries":[{"id":"GuIh.ts","source":"searchReplace.source","timestamp":1651686692925},{"id":"LFbj.ts","source":"moved.source","timestamp":1651686713107},{"id":"2EoS.ts","source":"searchReplace.source","timestamp":1651693436053},{"id":"nO9W.ts","source":"Renaming PdfViewerState","timestamp":1651694116007},{"id":"Yy21.ts","timestamp":1651761245035},{"id":"FIkm.ts","timestamp":1651761279580},{"id":"Balb.ts","timestamp":1651761324756},{"id":"mGuN.ts","timestamp":1651761375222},{"id":"prNY.ts","timestamp":1651761422121},{"id":"9Xks.ts","timestamp":1652114517503}]} |
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
# Some options that may or may not be applicable to you | |
[user] | |
name = Zach Olivare | |
email = [email protected] | |
[push] | |
default = upstream | |
[core] | |
autocrlf = input # Force replacing CRLF line endings with LF | |
ignorecase = false | |
# editor = code --wait |
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
#!/bin/bash | |
# FOR ANYONE READING THIS, simply use 'git branch -f`, it even has the same syntax as this script | |
# If there are 0 or 1 arguments | |
if [ $# -eq 0 ] || [ $# -eq 1 ] | |
then | |
echo "Usage: git move <BRANCH-NAME> <BRANCH-POINTER>" | |
exit 1 | |
fi |
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
#!/bin/bash | |
# Start the SSH Agent process | |
eval `ssh-agent -s` | |
# Add your ssh keys | |
ssh-add ~/.ssh/id_rs | |
# Set aliases | |
alias k='git' | |
# Auto-complete for 'k' as well |
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
Show hidden characters
{ | |
"added_words": | |
[ | |
"Posten", | |
"Ribbich" | |
], | |
"font_size": 11, | |
"spell_check": true, |
NewerOlder