- iTerm2 - If you want to customise your terminal
- BetterTouchTool - Actually makes your touchbar useful
- Rambox - Puts all your chat apps and emails into one convenient place
- IntelliJ - IDE of choice
- VSCode - If you don't want an IDE but still want to get shit done
- Sublime Text - Better than Notes
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 "+jumpthrow" "+jump;-attack" | |
alias "-jumpthrow" "-jump" | |
bind "alt" "+jumpthrow" | |
cl_radar_always_centered "0" | |
cl_radar_scale "0.4" | |
cl_hud_radar_scale "1.15" | |
cl_radar_icon_scale_min "1" | |
cl_radar_rotate "1" | |
cl_radar_square_with_scoreboard "1" |
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
concurrent = 10 | |
check_interval = 0 | |
[[runners]] | |
name = "gitlab-aws-autoscaler" | |
url = "https://gitlab.com/" | |
token = "<INSERT GITLAB_AUTH_TOKEN HERE>" | |
executor = "docker+machine" | |
limit = 20 | |
environment = ["DOCKER_TLS_CERTDIR="] |
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
package main | |
import ( | |
"context" | |
"go.mongodb.org/mongo-driver/bson" | |
"go.mongodb.org/mongo-driver/mongo" | |
"go.mongodb.org/mongo-driver/mongo/options" | |
"go.mongodb.org/mongo-driver/x/bsonx/bsoncore" | |
"log" | |
"strings" |