Tested with:
- Fedora 36
- Fedora 37
- Fedora 38
Unable to install due to hard requirement on kernel version 6.0.18-300, which isn't built for Fedora 38
- Fedora 41
#!/bin/bash | |
# | |
# Small script to create multiple listeners with 'nc' | |
# | |
# Execute script with 'nohup' into the background and forward | |
# output to /dev/null for minimal interference in console: | |
# nohup sudo ./create_listener.sh "4005 4006 4007 4008 4009" >/dev/null 2>&1 & | |
# | |
# Using quotes is only necessary for multiple listening ports! | |
# |
// ==UserScript== | |
// @name CLLV Download Finder | |
// @include http*://*cllv.in/music* | |
// @namespace https://github.com/usrme | |
// @description Grab embedded MixStep URL location from playback widget; won't work with multiple iFrames | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
var iframe_uri = document.getElementsByTagName('iframe')[0].src, |
#!/usr/bin/env bash | |
# Üllar Seerme | |
# | |
# The input file should consist of LDAP UIDs on every line in the | |
# form of firstname.lastname. This input produces an output like: | |
# "(|(uid=first.last)(uid=first.last))" to STDOUT | |
# | |
# The pipe in the beginning denotes a boolean OR-operator, which | |
# specifies that at least one specified filter must be true. This | |
# kind of output is useful for constructing an LDAP search query |
// ==UserScript== | |
// @name Remove AMP | |
// @namespace https://github.com/usrme | |
// @description Remove AMP from URI for native desktop design | |
// @include http*://*techcrunch.com/* | |
// @include http*://*theregister.co.uk/* | |
// @include http*://*theverge.com/* | |
// @include http*://*vox.com/* | |
// @include http*://*css-tricks.com/* | |
// @include http*://*howtogeek.com/* |
// ==UserScript== | |
// @name Force Wikipedia Mobile View | |
// @namespace https://github.com/usrme | |
// @description Forces mobile view on desktop for a better reading experience | |
// @include http*://*wikipedia.org* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
let uri = window.location.href; |