The contents and history of this file has been moved to the ATVG GitLab Server.
You can find the Repository with all public versions of Osmium 64 right here.
/ip firewall address-list remove [find list=ProviderBlocklist] | |
/ip firewall address-list | |
add address=103.230.147.0/24 comment="AS55720: DCNL HK" list=ProviderBlocklist | |
add address=31.56.123.0/24 comment="AS152672: Aiyun HK" list=ProviderBlocklist | |
add address=174.127.128.0/17 comment="Direct: Wave Broadband US" list=ProviderBlocklist | |
add address=103.138.72.0/22 comment="AS138997: Eons HK" list=ProviderBlocklist | |
add address=188.244.98.0/24 comment="AS50069: Misaka US" list=ProviderBlocklist | |
add address=205.198.64.0/19 comment="Direct: Eons HK" list=ProviderBlocklist | |
add address=203.168.240.0/22 comment="AS17497: HK Cable HK" list=ProviderBlocklist | |
add address=103.119.174.0/24 comment="AS151045: Yae HK" list=ProviderBlocklist |
#!/bin/bash | |
## Name: Monster Adlist | |
## Description: This script downloads different Domain lists for DNS based Adblocking. | |
## Files that need it, are modified from hosts format to a pure domain list. | |
## Additionally the dist files resulting include source references (for copyright/licensing) | |
## I have made this utility for usage in a MikroTik Router's "/ip/dns/adlist". | |
## Resulting "dist/*.patch" files are additive diffs against the previous script execution. | |
## These files are then simply uploaded and ADDED to the "/ip/dns/adlist" list. | |
## Installation: This only applies to MikroTik routers! |
Administrator: | |
# winget source remove msstore | |
// Essentials | |
$ winget install Microsoft.WindowsTerminal | |
$ winget install Yubico.Authenticator | |
$ winget install LibreWolf.LibreWolf | |
// Development Tools | |
$ winget install Git.Git // or Microsoft.Git |
// Utility type to transform a type with Promise values to its resolved values | |
type AwaitedObject<T> = { | |
[K in keyof T]: Awaited<T[K]>; | |
}; | |
type RunTypes<T> = { | |
Promises: { | |
[K in keyof T]: PromiseLike<T[K]> | undefined | |
}, | |
Result: AwaitedObject<RunTypes<T>['Promises']> |
The contents and history of this file has been moved to the ATVG GitLab Server.
You can find the Repository with all public versions of Osmium 64 right here.