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
| local wezterm = require("wezterm") | |
| local mux = wezterm.mux | |
| local config = wezterm.config_builder() | |
| -- ========================= | |
| -- AYU COLORS | |
| -- ========================= | |
| local thm_bg = "#0f1419" | |
| local thm_fg = "#e6e1cf" |
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
| package main | |
| import ( | |
| "bufio" | |
| "fmt" | |
| "os" | |
| ) | |
| func main() { | |
| fileName := "example.txt" |
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
| package internal | |
| import ( | |
| "fmt" | |
| "os" | |
| "reflect" | |
| "strings" | |
| "text/tabwriter" | |
| ) |
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
| #!/usr/bin/env bash | |
| # -------------- USER CONFIGURATION -------------- # | |
| # SLACK WEBHOOK URL | |
| SLACK_URL="" | |
| #SLACK_URL="" | |
| # SERVER NAME | |
| NAME="SERVER" |
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 | |
| apt install curl wget git | |
| sudo apt update && sudo apt upgrade | |
| # install nvm | |
| curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash | |
| # install batcat | |
| sudo apt install bat | |
| # build tools | |
| sudo apt install build-essential | |
| # install neovim |