Skip to content

Instantly share code, notes, and snippets.

View valerio-bozzolan's full-sized avatar
🕯️
Currently praying the parser/compiler

Valerio Bozzolan valerio-bozzolan

🕯️
Currently praying the parser/compiler
View GitHub Profile
@rsporteman
rsporteman / Install Docker On Debian 9 Stretch (for x86_64 - amd64).md
Last active December 30, 2022 22:22
Install Docker On Debian 9 Stretch (for x86_64 - amd64)
@smoser
smoser / README.md
Last active March 8, 2022 20:07
bzr convert to git things (bzr2git)

converting bzr 2 git things

Bug 1606973 was my original file, and then changes to bzr export.

The patch was improved by some others, and I'm storing my version of it here.

Features

The benefit of the patch is that you get:

@joepie91
joepie91 / vpn.md
Last active November 14, 2024 23:11
Don't use VPN services.

Don't use VPN services.

No, seriously, don't. You're probably reading this because you've asked what VPN service to use, and this is the answer.

Note: The content in this post does not apply to using VPN for their intended purpose; that is, as a virtual private (internal) network. It only applies to using it as a glorified proxy, which is what every third-party "VPN provider" does.

  • A Russian translation of this article can be found here, contributed by Timur Demin.
  • A Turkish translation can be found here, contributed by agyild.
  • There's also this article about VPN services, which is honestly better written (and has more cat pictures!) than my article.
@wienczny
wienczny / phabricator-aphlict.service
Created November 17, 2015 15:18
Phabricator Systemd Units
[Unit]
Description=Phabricator Aphlict
After=syslog.target network.target mysql.service
[Service]
Type=forking
User=phabricator
Group=phabricator
ExecStart=/srv/http/phabricator/bin/aphlict start
ExecStop=/srv/http/phabricator/bin/aphlict stop
@thomasfr
thomasfr / autossh.service
Last active October 11, 2024 06:32
Systemd service for autossh
[Unit]
Description=Keeps a tunnel to 'remote.example.com' open
After=network.target
[Service]
User=autossh
# -p [PORT]
# -l [user]
# -M 0 --> no monitoring
# -N Just open the connection and do nothing (not interactive)