aws configure --profile profile-name
Move forward and backward on your code.
- Forward:
⌘[
- Backward:
⌘]
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
tell application "Firefox" | |
set bounds of front window to {300, 30, 2220, 1110} | |
end tell | |
tell application "iTerm" | |
set bounds of front window to {300, 30, 2220, 1110} | |
end tell | |
tell application "System Events" to tell process "Code" | |
tell window 1 |
- Download the latest version from Maven's website:
curl -O https://dlcdn.apache.org/maven/maven-3/3.8.5/binaries/apache-maven-3.8.5-bin.tar.gz
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
function evenWord(word) { | |
const odds = new Set(); | |
for(const letter of word) { | |
odds.has(letter) ? odds.delete(letter) : odds.add(letter); | |
} | |
return odds.size; | |
} |
git config user.name "Your Name"
git config user.email "[email protected]"
xcode-select --install
Or download it from https://developer.apple.com/download/