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
<?php | |
/* | |
Cloudflare's purge directly depends on what your url looks like, in my case it's an example: https://s1.domain.com/Akd3X.jpg | |
That is, with the name of the encoded image. | |
Within my script I had to place a function to encode the image because the deleted image table does not have its code encoded. | |
I quickly made this script a while ago, it doesn't follow any good programming practices. |
network: | |
version: 2 | |
ethernets: | |
eth0: | |
dhcp4: no | |
dhcp6: no | |
addresses: | |
- 45.61.1xx.xxx/24 #WAN IP | |
- 2605:6400:40:xxxx::/48 #IPv6 WAN | |
nameservers: |
Bug Hyper-V Slow internet speed | |
netsh int tcp set global autotuninglevel=disabled | |
Then type: | |
netsh int tcp set global autotuninglevel=normal |
;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 |
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 |
;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 |
import requests | |
url = "https://imagem.app/api/1/upload" | |
payload = {'key': 'YOUR_KEY','format': 'json'} | |
files = [ | |
('source', open('imagem.png','rb')) | |
] |
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"], |
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 |