Skip to content

Instantly share code, notes, and snippets.

View cptpiepmatz's full-sized avatar

Piepmatz cptpiepmatz

View GitHub Profile
@cptpiepmatz
cptpiepmatz / dark-overleaf.css
Created May 9, 2020 22:26
Makes Overleaf a lot darker (CSS in Mozilla Format)
@-moz-document url-prefix("https://www.overleaf.com/") {
.pdf {
background-color: #151515;
}
.pdfjs-viewer {
filter: invert(0.89);
}
.pdf-viewer .pdfjs-viewer canvas {
box-shadow: 0 0 10px rgba(255,255,255,.5);
}
@cptpiepmatz
cptpiepmatz / ElearningNotificationHider.js
Last active July 31, 2024 09:13
Hide the notification bell on the elearning platform
// ==UserScript==
// @name Elearning Notification Hider
// @namespace Piepmatz
// @version 1.0.1
// @description Hide the notification bell on the elearning platform
// @author Tim 'Piepmatz' Hesse
// @grant none
// @include https://elearning.uni-oldenburg.de/*
// @run-at document-end
// @downloadURL https://gist.github.com/derPiepmatz/7fd138358c215cb57c657bbad3273bc5/raw
@cptpiepmatz
cptpiepmatz / GetSnapmaticPictures.bat
Last active April 7, 2023 16:42
A little tool to extract the GTAV Snapmatic pictures into your pictures folder in your user folder.
@echo off
rem Version 1.1.1
set picturePath="%UserProfile%\Pictures\GTA Snapmatic"
set convertScript="%UserProfile%\Pictures\GTA Snapmatic\ConvertSnapmaticToJpg.ps1"
md %picturePath%
echo Copying Snapmatic Pictures to Pictures Folder
echo ---------------------------------------------