#Hospedagem Heroku https://www.heroku.com/
Amazon https://aws.amazon.com/pt/?nc2=h_lg
DigitalOcean https://www.digitalocean.com/
#Hospedagem Heroku https://www.heroku.com/
Amazon https://aws.amazon.com/pt/?nc2=h_lg
DigitalOcean https://www.digitalocean.com/
| /* | |
| * Geminid III. TCP/UDP/ICMP Packet flooder | |
| * | |
| * | |
| * Usage: geminid [-T -U -I -N -s -h -d -p -q -l -t] | |
| * | |
| * -T TCP attack [0:ACK, 1:FIN, 2:RST, 3:SYN] (no default ) | |
| * -U UDP attack (no options ) | |
| * -I ICMP attack (no options ) | |
| * -N Bogus No flag attack (no options ) |
| # -*- encoding: utf-8 -*- | |
| # Save it as minimap_setting.py in the User directory (in Preferences -> Browse Packages). | |
| # Then, you just add "show_minimap": false in your settings and you're good to go! | |
| import sublime | |
| import sublime_plugin | |
| class MinimapSetting(sublime_plugin.EventListener): |
If you are running ArchLinux, run the following command instead (see here for why):
echo fs.inotify.max_user_watches=524288 | sudo tee /etc/sysctl.d/40-max-user-watches.conf && sudo sysctl --system
Then paste it in your terminal and press on enter to run it.
| // This is example of using crypto.createCipheriv(), because | |
| // crypto.createCipher() is deprecated since Node.js v10 | |
| const crypto = require('crypto') | |
| const encrypto = { | |
| encrypt(text, password) { | |
| const key = password.repeat(32).substr(0, 32) | |
| const iv = password.repeat(16).substr(0, 16) |