#
blocking
Here are 75 public repositories matching this topic...
Custom regex filter list for use with Pi-hole.
-
Updated
May 14, 2020 - Python
Skynet - Advanced IP Blocking For ASUS Routers Using IPSet.
-
Updated
Apr 26, 2020 - Shell
fallenreaper
commented
Feb 4, 2020
Big fan of the product. I was writing some tests though, and i am failing my tests.
I thought the easy way to do is to make a mock provider for the classes for testing, but it seems that is not the right way. I was curious what is the right way.
class MockBlockUIService extends BlockUIService {}
class MockBlockUIInstanceService extends BlockUIInstanceService {}
...
beforeEach
To block the malware domains of coin-hive systemwide.
-
Updated
Dec 27, 2019 - C
A simple Hud with DGActivityIndicatorView
-
Updated
Mar 15, 2019 - Objective-C
An open source, high scalability toolkit in Java for Entity Resolution.
-
Updated
May 14, 2020 - Java
Filters for blocking pop-ups and anti-adblock bypass.
blocking
popup
adblock
ublock-origin
adblock-plus
anti-adblock
ublock
bypass
adguard
popunder
fuckadblock
blockadblock
antiadblock
fuckfuckadblock
antiadblockbypass
bogachenkoffa
fuck-ad-blocker
-
Updated
May 21, 2020
Blocks unwanted cryptominers in your browser (plug-in)
-
Updated
Jul 9, 2018 - JavaScript
Block and track access to your SilverStripe application based on IP, referer, or host
-
Updated
Feb 2, 2017 - PHP
Minoan ER is an Entity Resolution (ER) framework, built by researchers in Crete (the land of the ancient Minoan civilization). Entity resolution aims to identify descriptions that refer to the same entity within or across knowledge bases.
-
Updated
Apr 25, 2019 - Java
Not responding process killer. Kill process on port you wanna use (if you accept terminal inquirer question) 🙈 🙉 🙊
nodejs
javascript
node
typescript
blocking
process
javascript-library
port
typescript-library
utility-library
killer
kill
inquirer
nodejs-library
kill-process
-
Updated
Feb 19, 2020 - CSS
Performs unique entity estimation corresponding to Chen, Shrivastava, Steorts (2018).
-
Updated
Feb 21, 2019 - Python
Stata module for random assignment, including blocking, balance checking, and automated rerandomization.
-
Updated
Jul 10, 2017 - Stata
Current CIDR-formatted list of unwanted bots caught on my systems, updated hourly.
-
Updated
May 21, 2020
My Spy Android
android
security
statistics
monitoring
blocking
child-protection
application-monitoring
location-tracker
-
Updated
Sep 1, 2019 - Java
a time slot generator with ability to filter out blocked times
-
Updated
Sep 4, 2018 - JavaScript
Just blocking some internet with regex return empty response instead
-
Updated
Sep 13, 2019 - Go
Parallel Meta-blocking in MapReduce
-
Updated
Sep 16, 2019 - Java
Improve this page
Add a description, image, and links to the blocking topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the blocking topic, visit your repo's landing page and select "manage topics."
the script coulnd get all the ip addresses of the server interfaces when running xen dom0.
ifconfig does not show aliases for the bridge interface xenbr0 so server blocks his own ip-s.
i changed the line
SERVER_IP_LIST=
ifconfig | grep "inet " | awk '{print $2}' | sed "s/addr://g" | xargs | sed -e 's/ /|/g'to
SERVER_IP_LIST=`( hostname -I ; echo 127.0.0.1 ) | cat | sed ':a;N;$!ba;s/\n/ /g'