- Common destructing patterns/idioms
- Tagged template literals
- Iterators, Iterables, For of loops
- New collection types (Map, Set, WeakMap, WeakSet, TypedArrays)
- Generators and Yield
- Modules
- Symbols
{
# Enable spell check
"spell_check": true,
"dictionary": "Packages/Language - English/en_US.dic",
# 80 char width column width and wrap enabled
"word_wrap": true,
"wrap_width": 80,
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
#!/bin/bash | |
# Change to directory at first argument or use the current folder | |
if [ ! -z "$1" ]; then | |
cd "$1" | |
fi | |
mkdir -p jpeg | |
for file in *.NEF; do | |
filename="${file%.NEF}.jpg" | |
echo "Converting $file to $filename" |
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
enum CharType { | |
NUMBER, | |
LOWERCASE_CHARACTER, | |
UPPERCASE_CHARACTER, | |
WHITESPACE, | |
OTHER, | |
} | |
type TRange = { | |
length: number; |