If the experiencer has no bias, no agenda, no desires to be, then that is equivalent to the God experience of that point in space.
Truth, of a point in space, has to be singular
Hence ultimate consciousness, is singular.
What we experience, is the shell of (our) conditioning that we call I, funneling the true consciousness colored by our I.
Truth is bigger than what the mind the brain can endure or perceive
There are fundamental limits to our existence, and our exploration
But no limits to what actually exists
"Ma philosophie est : ce que les gens disent de moi ne me regarde pas.
Je suis qui je suis et je fais ce que je fais.
Je n'attends rien et j'accepte tout.
Et cela rend la vie plus facile.
Nous vivons dans un monde oรน les funรฉrailles sont plus importantes que les dรฉfunts, le mariage est plus important que l'amour, l'apparence est plus importante que l'รขme.
Nous vivons dans une culture de l'emballage qui mรฉprise le contenu."
Anthony Hopkins
Commercial VPNs route your traffic through shared IP addresses. thousands of users on the same IP. those IPs are public, known, and listed. The government can block them the same way Netflix blocks them, one IP list. done.
A self-hosted VPN is different.
Your server. your IP. nobody else's traffic on it. there is no list to add it to. the government would have to identify and block your specific home address or VPS individually. that is not scalable. that is not what mass VPN bans do.
here's how to build one in under 10 minutes.
you need:
โ a $5/month VPS (DigitalOcean, Hetzner, Vultr โ any will work)
โ Docker installed
โ 10 minutes
step 1: get a VPS. pick any provider. Ubuntu 22.04. the cheapest plan works.
step 2: install Docker on it.
curl -fsSL https://get[.]docker[.]com | sh
step 3: run WG-Easy. one command:
docker run -d \
--name wg-easy \
-e WG_HOST=YOUR_SERVER_IP \
-e PASSWORD=your_password \
-p 51820:51820/udp \
-p 51821:51821/tcp \
--cap-add=NET_ADMIN \
--cap-add=SYS_MODULE \
--sysctl="net.ipv4.ip_forward=1" \
--restart unless-stopped \
ghcr[.]io/wg-easy/wg-easy
step 4: open your browser. go to YOUR_SERVER_IP:51821. log in. click "new client." download the config. import it into the WireGuard app on your phone or laptop.
that's it. you now have a private VPN that:
โ nobody else uses
โ isn't on any blocklist
โ costs $5 a month
โ logs nothing unless you tell it to
โ uses modern cryptography the NSA currently cannot break
WireGuard is built into the Linux kernel. 4,000 lines of code. fully audited. faster than OpenVPN. no configuration mistakes that accidentally weaken your encryption.
They cannot ban your server.