Skip to content

Instantly share code, notes, and snippets.

View kusyka911's full-sized avatar
:octocat:
≧◉ᴥ◉≦

Vladislav kusyka911

:octocat:
≧◉ᴥ◉≦
View GitHub Profile
@fworks
fworks / install-zsh-windows-git-bash.md
Last active April 9, 2025 09:11
Zsh / Oh-my-zsh on Windows Git Bash
@chrisswanda
chrisswanda / WireGuard_Setup.txt
Last active April 26, 2025 17:58
Stupid simple setting up WireGuard - Server and multiple peers
Install WireGuard via whatever package manager you use. For me, I use apt.
$ sudo add-apt-repository ppa:wireguard/wireguard
$ sudo apt-get update
$ sudo apt-get install wireguard
MacOS
$ brew install wireguard-tools
Generate key your key pairs. The key pairs are just that, key pairs. They can be
@onjin
onjin / docker-compose.yml
Created September 5, 2016 09:17
example docker compose for postgresql with db init script
postgres:
image: postgres:9.4
volumes:
- ./init.sql:/docker-entrypoint-initdb.d/init.sql