Skip to content

Instantly share code, notes, and snippets.

View farOverNinethousand's full-sized avatar
💭
Always working on making existing software even better ;)

farOverNinethousand

💭
Always working on making existing software even better ;)
View GitHub Profile
@SkyyySi
SkyyySi / youtube-vanced-alternatives.md
Last active July 18, 2024 02:57
A list of alternatives after the shutdown of Vanced

NONE OF THESE CLIENTS ARE VERIFIED BY ME FOR SECURITY OR ANYTHING ELSE! USE AT YOUR OWN RISK!

These are the current alternatives (with links when possible):

@gersilex
gersilex / README.md
Last active July 5, 2021 17:22
Filter for body content in Fiddler using Fiddlerscript
  1. Open the Fiddlerscript tab in Fiddler
  2. Fiddlerscript is already pre-filled and contains all the logic you selected. Don't erase the script that is in there. Instead, use the 'Go to' dropdown and go to the 'onBeforeResponse' function.
  3. Replace the content with the following and edit to your liking:
static function OnBeforeResponse(oSession: Session) {
  oSession.utilDecodeResponse();
  var body = oSession.GetResponseBodyAsString();
  if (!body.Contains("Dog concerto")) {
 oSession["ui-hide"] = "true";
@NabilNoN
NabilNoN / nhash.js
Created June 10, 2020 10:10
nHash Encoder Decoder For Strings in Javascript
/*
* Copyright (c) 2020. FacceApps
*/
let nHash = {
_level: 1,
type: "#",
_key: 1,
_withHex: false,
_enc: null,
_dec: null,
@J05HI
J05HI / eBay_Kleinanzeigen_Anzeige_duplizieren.js
Last active May 28, 2024 20:20
Add "reinstate" functionality, refactoring
// ==UserScript==
// @name eBay Kleinanzeigen - Anzeige duplizieren / neu einstellen
// @namespace https://github.com/J05HI
// @description Bietet eine "Anzeige duplizieren / neu einstellen" Funktion beim Bearbeiten einer vorhandenen Anzeige in eBay Kleinanzeigen.
// @icon http://www.google.com/s2/favicons?domain=www.kleinanzeigen.de
// @copyright 2024, J05HI (https://github.com/J05HI)
// @license MIT
// @version 1.4.0
// @match https://www.kleinanzeigen.de/p-anzeige-bearbeiten.html*
// @grant none
@farOverNinethousand
farOverNinethousand / Readme.md
Last active May 4, 2022 09:50
Erklärung zur Telekom Telefonkarte Confort, Einsatzmöglichkeiten und Sparmöglichkeiten

Telekom Comfort Telefonkarten FAQ

Achtung: Dieses FAQ wird seit dem 24.12.2021 nicht mehr bzw. nur noch selten durch den Ersteller aktualisiert --> Bitte forkt es oder schreibt mich an, falls Anpassungen notwendig sind.

Was ist das? Worum geht es hier?
Man kann Telekom Confort Telefonkarten zum Begleichen der Rechnungen von Telekom Festnetz/Internetverträgen(DSL) verwenden, aber auch Mobilfunk (siehe weiter unten). Manchmal gibt es Rabatte auf besagte Karten. Dieses FAQ beschäftigt sich hauptsächlich mit dem Erwerb- und Einsatz dieser Karten für Festnetzverträge (Mobilfunk auch ein wenig, weiter unten).
Das FAQ ist aufgeteilt in die beiden Bereiche Festnetz/DSL und Prepaid.
Zudem gibt es noch allgemeine Infos zu Comfort Telefonkarten.

@Romern
Romern / Ablauf.md
Last active February 9, 2020 18:55
Netzclub App Ablauf

Anfordern des Verifikationscodes via SMS

https://netzclub.postr.co.nz/SendVerify?mobile=[MOBILE NUMBER]&timestamp=[TIMESTAMP]&version=21&sdk_version=28  

[MOBILE NUMBER]: bspw. 01590123456
[TIMESPAMP]: bspw. 2019-02-02T13%3A00%3A20%2B0100

Returns:

{
@oliveratgithub
oliveratgithub / emojis.json
Last active July 25, 2024 07:18
Emoji-list with emojis, names, shortcodes, unicode and html entities [massive list]
{
"emojis": [
{"emoji": "👩‍👩‍👧‍👧", "name": "family: woman, woman, girl, girl", "shortname": ":woman_woman_girl_girl:", "unicode": "1F469 200D 1F469 200D 1F467 200D 1F467", "html": "👩‍👩‍👧‍👧", "category": "People & Body (family)", "order": ""},
{"emoji": "👩‍👩‍👧‍👦", "name": "family: woman, woman, girl, boy", "shortname": ":woman_woman_girl_boy:", "unicode": "1F469 200D 1F469 200D 1F467 200D 1F466", "html": "👩‍👩‍👧‍👦", "category": "People & Body (family)", "order": ""},
{"emoji": "👩‍👩‍👦‍👦", "name": "family: woman, woman, boy, boy", "shortname": ":woman_woman_boy_boy:", "unicode": "1F469 200D 1F469 200D 1F466 200D 1F466", "html": "👩‍👩‍👦‍👦", "category": "People & Body (family)", "order": ""},
{"emoji": "👨‍👩‍👧‍👧", "name": "family: man, woman, girl, girl", "shortname": ":man_woman_girl_girl:", "unicode": "1F468 200D 1F469 200D 1F467 200D 1F467", "html": "👨‍👩&z
@alirobe
alirobe / reclaimWindows10.ps1
Last active July 3, 2024 09:36
This Windows 10 Setup Script turns off a bunch of unnecessary Windows 10 telemetery, bloatware, & privacy things. Not guaranteed to catch everything. Review and tweak before running. Reboot after running. Scripts for reversing are included and commented. Fork of https://github.com/Disassembler0/Win10-Initial-Setup-Script (different defaults). N.…
###
###
### UPDATE: For Win 11, I recommend using this tool in place of this script:
### https://christitus.com/windows-tool/
### https://github.com/ChrisTitusTech/winutil
### https://www.youtube.com/watch?v=6UQZ5oQg8XA
### iwr -useb https://christitus.com/win | iex
###
###
@marians
marians / CouchDB_Python.md
Last active May 21, 2024 20:53
The missing Python couchdb tutorial

This is an unofficial manual for the couchdb Python module I wish I had had.

Installation

pip install couchdb

Importing the module