Skip to content

Instantly share code, notes, and snippets.

View un4ckn0wl3z's full-sized avatar
❤️
C++

🅄🄽🄰🄲🄺🄽🄾🅆🄻🄴🄳🄶🄴🄳 un4ckn0wl3z

❤️
C++
View GitHub Profile
@un4ckn0wl3z
un4ckn0wl3z / client.conf
Created August 31, 2023 17:09 — forked from steos/client.conf
openvpn config with lan gaming support
client
# specify server ip address here
remote <SERVER-IP>
dev tap
# name of the windows network connection
dev-node openVPN
@un4ckn0wl3z
un4ckn0wl3z / tor2web-list.md
Created September 8, 2023 07:59 — forked from adulau/tor2web-list.md
Tor2web and tor proxies public list

Tor2web and tor proxies public list

List of services which are giving access to Tor network and especially Tor hidden services via web interface. We keep track of potential injection or abuse from such service (the column Scam).

List

Url Status Domain Log Techno Scam
https://onion.re/ UP onion.re full custom no
@un4ckn0wl3z
un4ckn0wl3z / how-to-run.md
Created October 11, 2023 09:04 — forked from bluenex/how-to-run.md
Guide to run script on terminal in the background with log.

Running in the background

This command can be applied to anything run on cli, for example bash script and python script.

Two ways to do

There are two ways to run process in the background, nohup and & (ampersand).

Steps

@un4ckn0wl3z
un4ckn0wl3z / dark-style.css
Created November 13, 2023 05:01 — forked from Advik-B/dark-style.css
Modern Qt StyleSheet for dark theme lovers
/*-----QWidget-----*/
QWidget
{
background-color: #121212;
color: #ffffff;
border-color: #051a39;
}
@un4ckn0wl3z
un4ckn0wl3z / docker-compose.mongo.yml
Created August 19, 2024 02:23 — forked from gterdem/docker-compose.mongo.yml
Docker compose for mongodb and mongo express
version: "3.8"
services:
mongodb:
image: mongo
container_name: mongodb
environment:
- MONGO_INITDB_ROOT_USERNAME=root
- MONGO_INITDB_ROOT_PASSWORD=pass12345
volumes:
- mongodb_data:/data/db