Skip to content

Instantly share code, notes, and snippets.

View 1110101's full-sized avatar

Oliwer 1110101

  • Walldorf
  • 07:05 (UTC +02:00)
View GitHub Profile
@1110101
1110101 / Reddit_highlight_new_comments.user.js
Created October 5, 2025 10:01
Reddit highlight new comments with new manual buttons "5min 30min 1h ½ age ¼ age"
// ==UserScript==
// @name Reddit highlight new comments
// @namespace https://github.com/Farow/userscripts
// @description Highlights new comments since your last visit
// @include /https?:\/\/[a-z]+\.reddit\.com\/r\/[\w:+-]+\/comments\/[\da-z]/
// @version 3.0.1
// @require https://raw.githubusercontent.com/bgrins/TinyColor/master/tinycolor.js
// @grant GM_getValue
// @grant GM_setValue
// @grant GM_addStyle
@1110101
1110101 / mydealz-helper.user.js
Last active October 5, 2025 17:56
Userscript für MyDealz: Keyword ignore und Artikel als gelesen markieren.
// ==UserScript==
// @name MyDealz Ignore Helper
// @namespace 1110101
// @version 4.3
// @description Ignore articles by keyword or manually, track read articles with visual markers
// @author 1110101
// @match https://www.mydealz.de/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=mydealz.de
// @grant GM_addStyle
// @grant GM_getValue
@1110101
1110101 / joyn.user.js
Created July 12, 2019 20:57
Tampermonkey userscript for JOYN. Removes gradient background
// ==UserScript==
// @name JOYN remove gradient background
// @description Entfernt diesen absolut nervigen Hintergrund
// @version 0.1
// @author 1110101
// @match https://*.joyn.de/live-tv*
// @match http://*.joyn.de/live-tv*
// @match https://joyn.de/live-tv*
// @match http://joyn.de/live-tv*
// @grant GM_addStyle
export default function () { 'use strict';
var globals = function(defs) {
defs('EPSG:4326', "+title=WGS 84 (long/lat) +proj=longlat +ellps=WGS84 +datum=WGS84 +units=degrees");
defs('EPSG:4269', "+title=NAD83 (long/lat) +proj=longlat +a=6378137.0 +b=6356752.31414036 +ellps=GRS80 +datum=NAD83 +units=degrees");
defs('EPSG:3857', "+title=WGS 84 / Pseudo-Mercator +proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +no_defs");
defs.WGS84 = defs['EPSG:4326'];
defs['EPSG:3785'] = defs['EPSG:3857']; // maintain backward compat, official code is 3857
defs.GOOGLE = defs['EPSG:3857'];