Wu Tingfeng
Wu Tingfeng
Earthly
### Brand Name Earthly ### Website https://github.com/earthly/earthly ### Popularity Metric GitHub stars is **7.7k**, see https://github.com/earthly/earthly ### Official Resources for Icon and Color svg: https://github.com/vscode-icons/vscode-icons/blob/8d7f62ff18141e8c41eb2cef1a4379fbed19b14a/icons/file_type_earthly.svg, from https://github.com/earthly/earthly/issues/1735#issuecomment-1064717620 color: `#EAFFF4`, from...
**IPv4** https://malsilo.gitlab.io/feeds/dumps/ip_list.txt **URLs** https://malsilo.gitlab.io/feeds/dumps/url_list.txt **Domains (domains listed are not the same as URLs above)** https://malsilo.gitlab.io/feeds/dumps/domain_list.txt **Rules** https://malsilo.gitlab.io/feeds/dumps/malsilo-dns.rules https://malsilo.gitlab.io/feeds/dumps/malsilo-ip.rules https://malsilo.gitlab.io/feeds/dumps/malsilo-url.rules **Sources** https://docs.fortinet.com/document/fortisoar/2.0.1/malsilo/340/malsilo-v2-0-1 https://malsilo.gitlab.io/feeds/
The following lists: https://raw.githubusercontent.com/huzunluartemis/TurkishAdblockList/main/src/BadIpList.txt https://raw.githubusercontent.com/huzunluartemis/TurkishAdblockList/main/src/ElementalList.txt https://raw.githubusercontent.com/huzunluartemis/TurkishAdblockList/main/src/HostsList.txt have moved from [GitHub](https://github.com/huzunluartemis/TurkishAdblockList) to [GitLab](https://gitlab.com/huzunluartemis/TurkishAdblockList) at https://gitlab.com/huzunluartemis/TurkishAdblockList/-/raw/main/src/BadIpList.txt https://gitlab.com/huzunluartemis/TurkishAdblockList/-/raw/main/src/ElementalList.txt https://gitlab.com/huzunluartemis/TurkishAdblockList/-/raw/main/src/HostsList.txt
Addresses #9. The first pull request #11 did not add a license.
I ran `gofmt -s -w .` to get the **golangci-lint / lint** workflow to pass.
Add MIT license file (as mentioned in README) so that this repository will show up in GitHub search results as MIT-licensed.
Update tweener module import path for GNOME 3.38 while preserving backwards compatibility for existing supported GNOME versions. Addresses issue #13
According to the GNU GPL FAQs [page](https://www.gnu.org/licenses/gpl-faq.html#NoMilitary) (which also applies to the AGPL), a license that limits who can use a program, or for what, is [not a free software...
```go func hasSpecialChars(s string) bool { if strings.IndexByte(s, '"') >= 0 || strings.IndexByte(s, '\\') >= 0 { return true } for i := 0; i < len(s); i++ { if...
Proposing use of `ASCIISet` instead of `map[byte]struct{}`. `ASCIISet` is a zero-dependency library for sets of ASCII characters with [28 times faster lookup speed](https://github.com/elliotwutingfeng/asciiset#results) than `map[byte]struct{}`.