Patch v1.0.0 (for Isso v0.13.0+)
See isso-comments/isso#976 for context.
# QEMU / Oracle VirtualBox / Slirp4netns | |
## <https://www.qemu.org/docs/master/system/devices/net.html#using-the-user-mode-network-stack> | |
## <https://docs.oracle.com/en/virtualization/virtualbox/7.1/user/networkingdetails.html#network_nat> | |
## <https://github.com/containers/common/blob/1d04efa071b124b40f0e56284e0840b4d9f0690a/docs/containers.conf.5.md#engine-table> | |
10.0.2.0/24 | |
# Rancher cluster | |
## <https://www.rancher.com/docs/rancher/v1.6/en/rancher-services/networking/> | |
10.42.0.0/16 | |
10.43.0.0/16 |
Patch v1.0.0 (for Isso v0.13.0+)
See isso-comments/isso#976 for context.
/* ==UserStyle== | |
@name gensdeconfiance.com - Dec 2023 | |
@namespace github.com/openstyles/stylus | |
@version 1.0.0 | |
@description Hide ads on "Gens de Confiance" | |
@author HorlogeSkynet | |
==/UserStyle== */ | |
@-moz-document domain("gensdeconfiance.com") { | |
div[class *= "SearchMarketing"] { | |
width: 0; |
/* ==UserStyle== | |
@name qwant.com - 09/12/2023, 13:42:04 AM | |
@namespace github.com/openstyles/stylus | |
@version 1.0.1 | |
@description Hide ads on Qwant | |
@author HorlogeSkynet | |
==/UserStyle== */ | |
@-moz-document domain("www.qwant.com") { | |
.result--ext, .result__ext { | |
display: none; |
#!/usr/bin/env python3 | |
""" | |
A Python script to programmatically shutdown a Buffalo TeraStation 3210DN NAS. | |
Written by Samuel FORESTIER for Stefano PICA. | |
Inspired from : <https://gist.github.com/HorlogeSkynet/703c1546ae2e70fc6cf6f04b8eb5a9d1>. | |
=== |
[Unit] | |
Description=Gitea (Git with a cup of tea) | |
After=syslog.target | |
After=network.target | |
Wants=redis-server.service | |
Requires=redis-server.service | |
[Service] | |
User=git | |
WorkingDirectory=/var/lib/gitea/ |
[Unit] | |
Description=Lightweight Disqus alternative | |
After=network-online.target | |
Wants=network-online.target | |
[Service] | |
User=isso | |
ExecStart=/opt/isso/venv/bin/isso -c isso.cfg run | |
Restart=on-failure |
%YAML 1.2 | |
--- | |
# From <https://torrents.io/tracker-list/>. | |
tcp: | |
- 80 | |
- 443 | |
- 1337 | |
- 2095 |
#!/usr/bin/env python3 | |
import calendar | |
import datetime | |
for year in range(1900, 2100): | |
if not calendar.isleap(year): | |
continue |