This file contains 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
javascript:(function x(d,r,s='ensen met e'+r,i=document.createNodeIterator(d,5),n,e){while(n=i.nextNode()){n.nodeType>1?e?.tagName!='STYLE'&&(n.nodeValue=n.nodeValue.replace(/woke(r?s)?/ig,(m,l)=>l?(m>'Wp'?'m':'M')+s:(m>'Wp'?'e':'E')+r)):(n=(e=n).shadowRoot)&&x(n,r,s)}})(document,'en beetje empathie'); |
This file contains 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 | |
# This tool repeatedly sends 100 packets to an internet server (standard: 1.1.1.1 - Cloudflare can take it) | |
# in the shortest interval ping allows (0.2s) and reports graphically how many packets were lost. | |
# | |
# Requirements: bash, ping, (g)awk | |
TARGET=1.1.1.1 | |
SCRIPTNAME="loss_test" |
This file contains 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
# This is a script that takes Audobe Audition CSV file output from a project and combines them with a Souncloud URL to generate a list of clickable topic - timestamp entries | |
# Jeroen Baert - jeroen [at] nerdland [dot] | |
from datetime import datetime, timedelta | |
import csv | |
import sys | |
# Import CSV file as a list-of-lists | |
def import_csv(filename): | |
with open(filename) as csv_file: |
This file contains 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 | |
# This is a script to convert one or more videos with EAC3 audio to AC3 audio. EAC3 audio triggers audio conversion, | |
# which leads to this Plex bug: https://forums.plex.tv/t/subtitles-disappear-too-fast-or-line-not-showing-when-transcoding-audio/727924/3 | |
# Requirements: ffmpeg, ffprobe and some space in your /tmp folder, which will be used to store converted files. | |
# | |
# This script will only convert files if they contain "eac3" in their ffprobe audio stream output. | |
# Your original files will be REPLACED if the conversion takes place. | |
# | |
# Usage: toAC3.sh /path/to/file1 /path/tofile2 (etc.) |
This file contains 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
Place | Activity | Lat | Long | |
---|---|---|---|---|
Antwerpen Rubenslei | 51.213160 | 4.413070 | ||
Aarlen | 49.675160 | 5.824240 | ||
Bergen | 50.453330 | 3.948740 | ||
Brussel Troonplein | 50.840870 | 4.364400 | ||
Brussel Koningstuin | 50.821673 | 4.371278 | ||
Ekeren | 51.277136 | 4.418265 | ||
Gent | 51.0447935 | 3.73233438 | ||
Genval | 50.721161 | 4.493880 | ||
Halle | 50.733190 | 4.237188 |
This file contains 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
import os | |
import argparse | |
import socket | |
import requests | |
# Get IP and Country from a URL using freegeoip online service | |
def get_ip_country_freegeoip(url): | |
print("FreeGeoIP: " + url + ": ", end='') | |
r = requests.get("http://freegeoip.net/json/"+url) | |
if not r.status_code // 100 == 2: |
This file contains 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 | |
#Usage: ./stripmetadata.sh filename.mp4 (or whatever video format ffmpeg takes) | |
# Fancy colors | |
RED='\033[1;31m' | |
GREEN='\033[1;32m' | |
NC='\033[0m' | |
# Grab variables |
This file contains 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
echo "Downloading latest argo tunnel / cloudflared" | |
wget https://bin.equinox.io/c/VdrWdbjqyF/cloudflared-stable-linux-arm.tgz | |
tar -xvzf cloudflared-stable-linux-arm.tgz | |
sudo service cloudflared stop | |
sudo cp ./cloudflared /usr/local/bin | |
sudo chmod +x /usr/local/bin/cloudflared | |
sudo service cloudflared start | |
echo "Updated cloudflared to" | |
cloudflared -v | |
echo "Removing downloaded files" |
This file contains 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
# MICROSOFT ENDPOINTS from https://docs.microsoft.com/en-us/windows/privacy/manage-windows-1809-endpoints | |
# ADDITIONAL ENDPOINTS from network logs | |
store-images.s-microsoft.com | |
ctldl.windowsupdate.com | |
login.live.com | |
dmd.metaservices.microsoft.com.akadns.net | |
dmd.metaservices.microsoft.com | |
cy2.vortex.data.microsoft.com.akadns.net | |
v10.vortex-win.data.microsoft.com | |
v20.vortex-win.data.microsoft.com |
This file contains 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
net start "OVRService" | |
if %errorlevel% == 2 net stop "OVRService" |
NewerOlder