The Transmission torrent client has an option to set a Blocklist, which helps protect you from getting caught and having the DMCA send a letter/email.
It's as simple as downloading and installing the latest client:
| /** | |
| * A LessCSS version of the 960 Grid System | |
| * | |
| * http://lesscss.org/ | |
| * http://960.gs/ | |
| */ | |
| /********************************************************************* | |
| * Settings * | |
| *********************************************************************/ |
| import logging | |
| l = logging.getLogger('django.db.backends') | |
| l.setLevel(logging.DEBUG) | |
| l.addHandler(logging.StreamHandler()) |
| LOGGING = { | |
| ... | |
| 'handlers': { | |
| 'console': { | |
| 'level': 'DEBUG', | |
| 'class': 'logging.StreamHandler', | |
| }, | |
| ... | |
| }, | |
| 'loggers': { |
The Transmission torrent client has an option to set a Blocklist, which helps protect you from getting caught and having the DMCA send a letter/email.
It's as simple as downloading and installing the latest client:
Tutorial and tips for GitHub Actions workflows
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>WiFi Login</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <!-- https://news.ycombinator.com/item?id=26923316 --> | |
| <link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🔐</text></svg>"> | |
| <style> | |
| body, textarea { | |
| font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; |