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:
| # Generate a new pgp key: (better to use gpg2 instead of gpg in all below commands) | |
| gpg --gen-key | |
| # maybe you need some random work in your OS to generate a key. so run this command: `find ./* /home/username -type d | xargs grep some_random_string > /dev/null` | |
| # check current keys: | |
| gpg --list-secret-keys --keyid-format LONG | |
| # See your gpg public key: | |
| gpg --armor --export YOUR_KEY_ID | |
| # YOUR_KEY_ID is the hash in front of `sec` in previous command. (for example sec 4096R/234FAA343232333 => key id is: 234FAA343232333) |
| adapter: | |
| #ss代理, 在国内购买一台云服务器,安装好ShadowSocks代理服务器,iPhone版安装Wingy APP (SMART LIMITED的深蓝紫色免费版)。使用的本文的自定义配置YAML | |
| - id: proxyAdapter | |
| type: ss | |
| #修改ss_host为服务器地址 | |
| host: ss_host | |
| #修改ss_port为端口号 | |
| port: ss_port | |
| #修改ss_password为密码 | |
| password: ss_password |
| #!/usr/bin/ruby | |
| # | |
| # This tool is only used to "decrypt" the github enterprise source code. | |
| # | |
| # Run in the /data directory of the instance. | |
| require "zlib" | |
| require "byebug" | |
| KEY = "This obfuscation is intended to discourage GitHub Enterprise customers "+ |
| [ | |
| "https://gq3brsw46hyrns0w4hjiqhtab8e9q24h93g8estrbgwt4h5h0triosgb80wt.wordpress.com/2016/10/26/%e9%95%bf%e5%b9%b3-%e4%bb%8e%e4%b8%a5%e6%b2%bb%e5%85%9a-%e5%94%af%e6%9c%89%e4%b8%89%e6%9d%83%e5%88%86%e7%ab%8b%e5%be%b7%e5%9b%bd%e4%b9%8b%e5%a3%b0%e4%b8%ad%e6%96%87%e7%bd%91/?from=groupmessage&isappinstalled=0", | |
| "https://www.evernote.com/shard/s596/sh/b273afd0-4564-40f2-b81f-57ac23c3b61b/4e2b83c48886db7c1b2c5537d2483a99", | |
| "https://won528.wordpress.com", | |
| "http://url.cn/28ucN6a", | |
| "https://win358.wordpress.com", | |
| "https://red6451.wordpress.com", | |
| "https://get510.wordpress.com", | |
| "https://sit222.wordpress.com", | |
| " http://alturl.com/9w4aq", |
| [ | |
| "https://gq3brsw46hyrns0w4hjiqhtab8e9q24h93g8estrbgwt4h5h0triosgb80wt.wordpress.com/2016/10/26/%e9%95%bf%e5%b9%b3-%e4%bb%8e%e4%b8%a5%e6%b2%bb%e5%85%9a-%e5%94%af%e6%9c%89%e4%b8%89%e6%9d%83%e5%88%86%e7%ab%8b%e5%be%b7%e5%9b%bd%e4%b9%8b%e5%a3%b0%e4%b8%ad%e6%96%87%e7%bd%91/?from=groupmessage&isappinstalled=0", | |
| "https://www.evernote.com/shard/s596/sh/b273afd0-4564-40f2-b81f-57ac23c3b61b/4e2b83c48886db7c1b2c5537d2483a99", | |
| "https://won528.wordpress.com", | |
| "http://url.cn/28ucN6a", | |
| "https://win358.wordpress.com", | |
| "https://red6451.wordpress.com", | |
| "https://get510.wordpress.com", | |
| "https://sit222.wordpress.com", | |
| " http://alturl.com/9w4aq", |
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:
Mosh (mobile shell) is a gift from the Gods(tm). Anyone with spotty internet or wireless connection has suffered the pain of a lost SSH session. Sure, one can fire up screen (or tmux as the kids are using these days), but that's an extra step and you are still using the SSH protocol.
I'm not here to tout the benefits of Mosh, you came here to open it up in your firewall.
/etc/firewalld/services/mosh.xmlfirewall-cmd --add-service=mosh --permanentfirewall-cmd --reloadIf you tend to have a lot of sessions (not recommended), you can increase the ports, but the default should be fine for most applications.
| // ==UserScript== | |
| // @name Nekonazo Party Wacom Support Fix | |
| // @namespace https://kirisetsz.github.io/ | |
| // @version 0.1 | |
| // @description Load Wacom Tablet support to Nekonazo Party (for WacomWebPlugin) | |
| // @match http://oekaki.so/partyex/* | |
| // @copyright 2012+, kirisetsz | |
| // ==/UserScript== | |
| window.addEventListener('load', function () |
This should help you get Sendmail installed with basic configuration on Ubuntu.
sudo apt-get install sendmail/etc/hosts file: nano /etc/hosts127.0.0.1 localhost yourhostnamesudo sendmailconfigsudo service apache2 restart