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
vim9script | |
# Basic Settings | |
set nocp # No compability | |
set number # Show line numbers | |
set tabstop=4 # Number of spaces for a tab | |
set shiftwidth=4 # Number of spaces for auto-indent | |
set expandtab # Use spaces instead of tabs | |
set ignorecase # Case-insensitive search | |
set smartcase # Case-sensitive if uppercase is used |
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 ( | |
"flag" | |
"github.com/elazarl/goproxy" | |
"log" | |
"net" | |
"net/http" | |
"regexp" | |
"strings" |
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 ( | |
"flag" | |
"io" | |
"log" | |
"net" | |
"net/http" | |
"strings" | |
) |