This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Youtube Storyboard | |
// @namespace hbb_works | |
// @description mouse-over video thumbnail to preview video by cycling through the storyboard | |
// @version 1.3.1r1605101704 | |
// @include http://*youtube.com* | |
// @include https://*youtube.com* | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Univis Prüfungskalender | |
// @namespace hbb_works | |
// @include https://univis.univie.ac.at/* | |
// @description Fügt dem Menü im Univis einen Prüfungskalender-Eintrag hinzu, der einen Kalender öffnet, in welchem Prüfungstermine angezeigt werden. | |
// @grant GM_getValue | |
// @grant GM_setValue | |
// @version 1.0r131101 | |
// @require http://code.jquery.com/jquery-2.0.3.min.js | |
// @require http://arshaw.com/js/fullcalendar-1.6.2/fullcalendar/fullcalendar.min.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# mitmproxy addon to serve modified content | |
# how to use: | |
# 1. create replace.txt file in your current working directory | |
# 2. add urls you want to replace to that file, one line per url; urls can be regular expresions; lines starting with # are ignored | |
# 3. start mitmproxy with parameter -s mitmproxy_replace.py to load this addon | |
# 4. configure your OS or browser to use your running mitmproxy instance (default port 8080) | |
# 5. install mitmproxy certificate to allow proxying https by navigating to http://mitm.it/ | |
# 5. navigate to the url you want to replace; a dump of the response content is created in the replace folder in your current working directory | |
# 6. modify the content dump and reload the page |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; | |
; Home | |
; | |
; Win-Left = Home = start of line | |
#Left::Send {Home} | |
; Ctrl-Win-Left = Ctrl-Home = start of document | |
^#Left::Send {LCtrl down}{Home}{LCtrl up} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<key name="Software"> | |
<key name="ConEmu"> | |
<key name=".Vanilla" modified="2019-08-22 12:40:39" build="180626"> | |
<value name="Language" type="string" data="en"/> | |
<value name="StartType" type="hex" data="02"/> | |
<value name="CmdLine" type="string" data=""/> | |
<value name="StartTasksFile" type="string" data=""/> | |
<value name="StartTasksName" type="string" data="{bash::bash}"/> | |
<value name="StartFarFolders" type="hex" data="00"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class StringUtils { | |
public static String join(String... parts) { | |
return Arrays.stream(parts).map(s -> | |
s.replaceAll( | |
"\\\\", // regex, replace \ | |
"\\\\\\\\" // with \\ | |
).replaceAll( | |
"\\|", // regex, replace | | |
"\\\\|" // with \| |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#SingleInstance Force | |
*<#j::Send {Blind}{LWin up}{Left}{LWin down}{LCtrl} | |
*<#k::Send {Blind}{LWin up}{Down}{LWin down}{LCtrl} | |
*<#l::Send {Blind}{LWin up}{Right}{LWin down}{LCtrl} | |
*<#i::Send {Blind}{LWin up}{Up}{LWin down}{LCtrl} | |
*<#u::Send {Blind}{LWin up}{Home}{LWin down}{LCtrl} | |
*<#o::Send {Blind}{LWin up}{End}{LWin down}{LCtrl} | |
*<#p::Send {Blind}{LWin up}{PgUp}{LWin down}{LCtrl} | |
*<#ö::Send {Blind}{LWin up}{PgDn}{LWin down}{LCtrl} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#SingleInstance Force | |
#InstallKeybdHook | |
TAPPING_TERM := 200 | |
keyboard := ["SC029","SC002","SC003","SC004","SC005","SC006","SC007","SC008","SC009","SC00A","SC00B","SC00C","SC00D","SC00E" | |
,"SC00F","SC010","SC011","SC012","SC013","SC014","SC015","SC016","SC017","SC018","SC019","SC01A","SC01B","SC01C" | |
,"SC03A","SC01E","SC01F","SC020","SC021","SC022","SC023","SC024","SC025","SC026","SC027","SC028","SC02B" | |
,"SC02A","SC02C","SC02D","SC02E","SC02F","SC030","SC031","SC032","SC033","SC034","SC035","SC056","SC136" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Template String Tag Funktion, druckt die eingesetzten Werte im Template und den vorangestellten Verbindungsstrings nur aus, wenn der Wert nicht leer ist. | |
* | |
* z.B. | |
* format`${strasse} ${hausnummer} ${stockTuernummer} / ${abgabestelle} / ${anschriftzusatz}` | |
* | |
* => Bambuslichtung 15 / Scheunentor | |
* | |
* wenn nur strasse, hausnummer und abgabestelle angegeben sind |
OlderNewer