| Site | Size Limit | API | Clearnet Mirrors | Tor Mirrors |
|---|---|---|---|---|
| sql.gg | 10 GiB | N/A | anonfiles.cn, file.gy, gofile.in, ufile.it | Tor |
| GoFile.io | [no limit](ht |
Security Advisories / Bulletins / vendors Responses linked to Spring4Shell (CVE-2022-22965)
- If you want to add a link, comment or send it to me
- Feel free to report any mistake directly below in the comment or in DM on Twitter @SwitHak
A B C D E F G H [I](https://gist.github.com/SwitHak/0be6e857174d6ba2a6973f9ff9030c
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
| git fetch --all | |
| # 7 天内有多少 commit 改动了 package-lock | |
| git log --format=format:'%h' --no-merges --since="7 days ago" --all -- package-lock.json | wc -l | |
| # 7 天内所有 commit 共产生了多少完全无重复的 package-lock | |
| git log --format=format:'%h' --no-merges --since="7 days ago" --all -- package-lock.json | \ | |
| xargs -I{} git ls-tree {} package-lock.json | \ | |
| sort | uniq | wc -l |
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
| git log --name-status --diff-filter=D <file / dir> |
Useful Lua Patterns/Functions
NOTE: for JS patterns see my JS patterns-page
-- print( tpl("${name} is ${value}", {name = "foo", value = "bar"}) )
-- "foo is bar"
function tpl(s,tab)I Don't Need Port Forwarding and Don't Care About CGNAT
This was rewritten 2022-11-30
This article is for users that want all these features:
- To connect to home network from anywhere
- Can connect without any port forwarding; either by choice or internet provider can't or won't provide access
- No setup or configuration or installation on client machine
- No enrolment / registration required
- Format SAS drives to 4Kn using
sg3_utilsfrom http://sg.danny.cz/sg/sg3_utils.html
sg_format /dev/sdx --format --ffmt=1 --size=4096 --count=-1 --wait- Format SATA drives to 4Kn using
hdparmfrom https://sourceforge.net/projects/hdparm/
hdparm --set-sector-size 4096 --please-destroy-my-drive /dev/sdx
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/bash | |
| read LOWERPORT UPPERPORT < /proc/sys/net/ipv4/ip_local_port_range | |
| while : | |
| do | |
| PORT="`shuf -i $LOWERPORT-$UPPERPORT -n 1`" | |
| ss -lpn | grep -q ":$PORT " || break | |
| done | |
| echo $PORT |