A comparison of mechanical keyboards that utilize 2x AAA batteries (non-rechargeable for months-long runtime) and support hotswappable switches. All models prioritize extreme battery efficiency by minimizing or eliminating per-key RGB.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| iptables -F | |
| iptables -X | |
| iptables -A INPUT -p tcp --dport 22 -m state --state NEW,ESTABLISHED -j ACCEPT | |
| iptables -A OUTPUT -p tcp --dport 22 -m state --state NEW,ESTABLISHED -j ACCEPT | |
| iptables -A OUTPUT -p tcp --sport 22 -m state --state ESTABLISHED -j ACCEPT | |
| iptables -A INPUT -p tcp --sport 22 -m state --state ESTABLISHED -j ACCEPT |
