Skip to content

Instantly share code, notes, and snippets.

View sidneys's full-sized avatar

sidneys sidneys

  • Germany
View GitHub Profile
@sidneys
sidneys / bitchute.add-to-playlist-button-for-all-videos.js
Last active June 14, 2022 07:16
BitChute | 'Add to Playlist' Button Everywhere
// ==UserScript==
// @name BitChute: Add-to-Playlist-Button for all Videos
// @namespace org.sidneys.userscripts
// @homepage https://gist.githubusercontent.com/sidneys/23018bf607466ebeb5b11c7889774665/raw/
// @version 0.9.7
// @description Adds the BitChute playlist button to every video thumbnail, right next to the 'Watch Later' button.
// @author sidneys
// @icon https://i.imgur.com/4GUWzW5.png
// @noframes
// @match *://*.bitchute.com/*
@sidneys
sidneys / gfycat.show-all-download-links.js
Last active September 21, 2022 05:45
UserScript | GFYCAT | Show all Download Links (GIF, MP4, WEBP, WEBM)
@sidneys
sidneys / geo.ps1
Created December 14, 2019 16:41
PowerShell Geolocation
Add-Type -AssemblyName System.Device; $GeoWatcher = New-Object System.Device.Location.GeoCoordinateWatcher; $GeoWatcher.Start(); Start-Sleep -Milliseconds 5000; $GeoWatcher.Position | Out-File $env:userprofile\Downloads\error.log
@sidneys
sidneys / iosgods.direct-app-store-ipa-download.js
Last active January 23, 2024 21:12
UserScript | iOSGods App Store | Direct .IPA File Download
// ==UserScript==
// @name iOSGods: Direct App Store .IPA Download
// @namespace de.sidneys.userscripts
// @homepage https://gist.githubusercontent.com/sidneys/
// @version 1.0.0
// @description Download .IPA files directly from the iOSGods App Store (app.iosgods.com) without a "ViP" subscription.
// @author sidneys
// @icon https://app.iosgods.com/apple-touch-icon.png
// @include http*://app.iosgods.com/store/*
// @require https://greasyfork.org/scripts/38888-greasemonkey-color-log/code/Greasemonkey%20%7C%20Color%20Log.js
@sidneys
sidneys / giphy.direct-gif-image-download-button.js
Last active February 11, 2023 17:37
UserScript | GIPHY | Direct GIF Image Download Button
// ==UserScript==
// @name GIPHY | Direct GIF Image Download Button
// @namespace de.sidneys.userscripts
// @homepage https://gist.githubusercontent.com/sidneys/13433a0c726895597fb4571405c7ca15/raw/
// @version 0.9.1
// @description Adds a button for directly downloding the original GIF images to the side menu. Uses the given GIF title as the local filename.
// @author sidneys
// @icon https://giphy.com/static/img/favicon.png
// @include http*://giphy.com/gifs/*
// @require https://greasyfork.org/scripts/38888-greasemonkey-color-log/code/Greasemonkey%20%7C%20Color%20Log.js
@sidneys
sidneys / shairport-sync.conf
Created September 13, 2019 09:50
shairport-sync configuration for pulseaudio on macos
// /usr/local/etc/shairport-sync-pulseaudio/shairport-sync.conf
// shairport-sync configuration for pulseaudio on macos
// v16.0.1
// General Settings.
general =
{
name = "%h | shairport-sync";
output_backend = "pa";
@sidneys
sidneys / emulating-a-raspberry-pie-on-macos.md
Last active September 14, 2019 02:24
Emulating a Raspberry Pie on macOS Mojave 10.14+ (2019-09-11)

Emulating a Raspberry Pie on macOS Mojave 10.14+ (2019-09-11)

This guide explains how to emulate a Raspberry Pi and its ARM-based hardware stack under macOS Mojave – running the recent Raspbian Buster [^1].

The light QEMU open-source Quick Emulator framework, will be used.

Homebrew as well as some basic level shell-fu is required.


@sidneys
sidneys / .gitignore
Last active August 26, 2019 01:30
Homebrew Test C Program
*.o
.temp
.tmp
cache/
@sidneys
sidneys / opensubtitles.download-enabler-2019.js
Last active August 16, 2019 13:08
UserScript | OpenSubtitles | Download Enabler (2019)
// ==UserScript==
// @name OpenSubtitles | Download Enabler (2019)
// @namespace de.sidneys.userscripts
// @homepage https://gist.githubusercontent.com/sidneys/b654b054a02b4389aa91f293d08c5108/raw/
// @version 0.9.9
// @description Reenable Subtitle downloading on OpenSubtitles.com and OpenSubtitles.org, without using the official 'OpenSubtitles PRO' extension. A requirement as of early 2019.
// @author sidneys
// @icon https://static.opensubtitles.org/favicon.ico
// @include *://www.opensubtitles.com/*
// @include *://www.opensubtitles.org/*
@sidneys
sidneys / library.query-selector-interval.js
Last active June 14, 2022 06:54
UserScript | Library | querySelectorInterval
// ==UserScript==
// @name Library: querySelectorInterval
// @namespace org.sidneys.userscripts
// @homepage https://gist.githubusercontent.com/sidneys/c6b91437cb89346281bb2f739c1d6ae2/raw/
// @version 0.7.4
// @description Use document.querySelector() to continuously look for an Element. Call a function when found. Powered by requestAnimationFrame.
// @author sidneys
// @icon https://i.imgur.com/nmbtzlX.png
// @match *://*/*
// ==/UserScript==