If you need to open up ports 80 and 443, on file /etc/iptables/rules.v4 just add
-A INPUT -p tcp -m state --state NEW -m multiport --dports 80,443 -j ACCEPT
directly below
| #!/bin/bash | |
| while [ 1 ] | |
| do | |
| sshpass -p "PASSWORD" rsync --ignore-existing -r USER@HOST:/path/from/host /path/to/local -v --progress --stats | |
| if [ "$?" = "0" ] ; then | |
| echo "RSYNC FINISH" | |
| exit | |
| else | |
| echo "RSYNC FAIL. WAIT, RECONNECTING..." |
| #!/bin/bash | |
| #755 folders | |
| #644 files | |
| rsync -a --chmod=Du=rwx,Dgo=rx,Fu=rw,Fog=r --files-from=/path/rsync-files.txt --ignore-existing -r /path/from user@host:/path/to -v --progress --stats |
| $Playlist = ((Invoke-WebRequest "https://www.youtube.com/watch?v=XXXXXXX&list=XXXXXXXXXXXXXXXXXX&index=1").Links | Where {$_.class -match "playlist-video"}).href | |
| ForEach ($Video in $Playlist) { | |
| Write-Output ("https://www.youtube.com" + $Video) | |
| } |
| iptables -A INPUT -p TCP --dport (port) -s A,B -j ACCEPT | |
| iptables -A INPUT -p TCP --dport (port) -j DROP | |
| After any days....... I add IP C | |
| iptables -I INPUT -p tcp --dport (port) -s C -j ACCEPT | |
| Or add in line 1 | |
| iptables -I 1 INPUT -p tcp --dport (port) -s C -j ACCEPT | |
| CentOS | |
| service iptables save |
| if ($("input#mobileNumber").length) { | |
| var input = document.querySelector("input#mobileNumber"); | |
| window.intlTelInput(input, { | |
| //initialCountry: "br", | |
| autoPlaceHolder: "agressive", | |
| utilsScript: "/vendors/js/tel-input/js/utils.js", | |
| initialCountry: "auto", | |
| preferredCountries: ["br", "pt", "us"], |
| import requests | |
| url = "https://imagem.app/api/1/upload" | |
| payload = {'key': 'YOUR_KEY','format': 'json'} | |
| files = [ | |
| ('source', open('imagem.png','rb')) | |
| ] |
| ;Alternador de Janelas - Script para alternar janelas utilizando AutoHotKey | |
| ;Switch windows using AutoHotKey | |
| GroupAdd, AllWindows | |
| GroupActivate, Allwindows, R | |
| ;Arquivo Config.ini de exemplo: | |
| ;[Config] | |
| ;MostrarAvisoSegundos=5 | |
| ;Segundos=30 |
| sem merge | |
| youtube-dl.exe -f best <url> | |
| merge com ffmpeg | |
| youtube-dl -f bestvideo+bestaudio <url> | |
| youtube-dl -f 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/bestvideo+bestaudio' --merge-output-format mp4 <url> | |
| youtube-dl.exe -f bestvideo+bestaudio --merge-output-format mp4 -a list.txt |
| ;Auto Click - Script para clicar em uma coordenada X,Y utilizando AutoHotKey | |
| ;Arquivo Config.ini de exemplo: | |
| ;[Params] | |
| ;SleepTime=250 | |
| ;QtdLoop=1 | |
| ;[XY] | |
| ;XY1=1631, 486 | |
| ;XY2=1631, 568 | |
| ;XY3=1631, 650 |