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
def get_default_gateway(): | |
try: | |
hip = None | |
with open("/proc/self/net/route") as routes: | |
for line in routes: | |
parts = line.split('\t') | |
if '00000000' == parts[1]: | |
hip = parts[2] | |
if hip is not None and len(hip) == 8: |
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
ffmpeg -i INPUT.mp4 -vf "drawtext=fontfile=/usr/share/fonts/TTF/Roboto-Medium.ttf:fontsize=22:fontcolor=yellow:box=1:boxcolor=black:x=(W-tw)/2:y=H-th-10:text='%{pts\:hms} %{frame_num}'" OUTPUT.mp4 | |
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
Vagrant.configure("2") do |config| | |
if Vagrant.has_plugin?("vagrant-proxyconf") | |
config.proxy.http = "http://192.168.0.110:3128/" | |
# config.proxy.https = "http://192.168.0.2:3128/" | |
# config.proxy.no_proxy = "localhost,127.0.0.1,.example.com" | |
end | |
# ... rest of the configurations | |
end |
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 | |
CACHE_DIR=/srv/squid/cache | |
echo "Starting squid container" | |
docker run --rm --net host -v ${CACHE_DIR}:/var/cache/squid3 -d jpetazzo/squid-in-a-can | |
echo "Setup iptables" | |
sudo iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to 3129 -w |
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
version: '3.4' | |
services: | |
app: | |
image: mitmproxy/mitmproxy | |
ports: | |
- 8080:8080 | |
- 8081:8081 | |
volumes: | |
- mitmproxy:/home/mitmproxy/.mitmproxy |
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
diff --git a/ios/CDVBackgroundGeolocation/CocoaLumberjack.h b/ios/CDVBackgroundGeolocation/CocoaLumberjack.h | |
index 32a4deb..c384e25 100644 | |
--- a/ios/CDVBackgroundGeolocation/CocoaLumberjack.h | |
+++ b/ios/CDVBackgroundGeolocation/CocoaLumberjack.h | |
@@ -739,7 +739,6 @@ NSString * DDExtractFileNameWithoutExtension(const char *filePath, BOOL copy); | |
* This protocol describes a dynamic logging component | |
*/ | |
@protocol DDRegisteredDynamicLogging | |
- | |
/** |
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 -e | |
NAS_MAC="00-11-32-44-A5-AF" | |
WAKE_IMG="ptisserand/wakeonlan" | |
docker run --rm --net=host -t ${WAKE_IMG} ${NAS_MAC} |
NewerOlder