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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Space invaders</title> | |
</head> | |
<body> |
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
💻 Pushed 133 commits in the last week | |
🆒 Opened PR #██ in ██████████ | |
❌ Closed PR #██ in ██████ | |
❌ Closed PR #██ in ██████████ | |
❌ Closed PR #███ in ████████ | |
🌟 Starred repo: current_user/repo | |
ᛘ Forked repo: ██████████ | |
🗣 Commented on #██ in ███████████ | |
🌟 Starred repo: really_cool/repo |
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
💻 Pushed 3 commits in the last week | |
🌟 Starred repo: scottbez1/smartknob | |
⑂ Created branch v1 in repo: codersforcauses/voting | |
⑂ Created branch fix-attempt in repo: codersforcauses/voting | |
🎉 Merged PR #37 in codersforcauses/workshops | |
🆒 Opened PR #37 in codersforcauses/workshops | |
⑂ Created branch typescript-2024-summer in repo: codersforca... | |
🌟 Starred repo: codecrafters-io/build-your-own-x |
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
{ | |
"workbench.colorTheme": "Material Theme Darker", | |
"terminal.external.osxExec": "iTerm.app", | |
"terminal.integrated.shell.osx": "/bin/zsh", | |
"editor.suggestSelection": "first", | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"java.errors.incompleteClasspath.severity": "ignore", | |
"explorer.confirmDragAndDrop": false, | |
"workbench.startupEditor": "newUntitledFile", |
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
alias enter='enter.csh' | |
alias ccc='cc -std=c99 -Wall -Werror -pedantic' | |
alias python='python3' | |
alias clear='rm $HISTFILE; clear' | |
export PATH=/opt/apache-maven-3.6.0/bin:$PATH | |
export PATH=$HOME/bin:/usr/local/bin:$PATH | |
export JAVA_HOME=$(/usr/libexec/java_home) | |
export ZSH=$HOME/.oh-my-zsh |
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
// Drew's Minimal hyper config | |
module.exports = { | |
config: { | |
// choose either `'stable'` for receiving highly polished, | |
// or `'canary'` for less polished but more frequent updates | |
updateChannel: 'stable', | |
// default font size in pixels for all tabs | |
fontSize: 12, |