(function() {
'use strict';
function loadData(){
document.title = document.querySelector(".mapTracker-da-bubble").textContent + ' - Amazon';
}
This file contains 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 Sort by Price, add 30% discount | |
// @namespace http://tampermonkey.net/ | |
// @version 0.3 | |
// @description Unleash laughter and savings with Lieferbär! Discover coupon savings and sort by price for a magical food delivery experience that will leave you delighted and your wallet happy. | |
// @author You | |
// @match https://lieferbaer.de/productListing/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=lieferbaer.de | |
// @source https://gist.github.com/CodeBrauer/0b5056cd28e27d9f614d5328234d3ebe | |
// @run-at document-idle |
DBF ist ein inoffizieller Abfahrtsmonitor für Nah-, Regional- und Fernverkehr in Deutschland
This file contains 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
#left side with date | |
PROMPT='%{$fg[yellow]%}[%D %*] '$PROMPT | |
#left side without date | |
PROMPT='%{$fg[yellow]%}[%*] '$PROMPT | |
#right side with date | |
RPROMPT="[%D %*]" | |
#right side without date | |
RPROMPT="[%*]" |
This file contains 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
#!/bin/bash | |
# Author CodeBrauer 2022 | |
export TMP=~./tmp/ | |
# thanks to: https://stackoverflow.com/a/67404585/1990745 | |
LATEST_IM_VERSION=$(curl "https://api.github.com/repos/ImageMagick/ImageMagick6/tags" | jq -r '.[0].name') | |
echo ">>> Found latest IM6 version: $LATEST_IM_VERSION"; | |
echo ">>> Start Download..." |
This file contains 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
<?php | |
function get_dig($addr, $ns, $type) | |
{ | |
$addr = escapeshellarg($addr); | |
$ns = escapeshellarg($ns); | |
$type = escapeshellarg($type); | |
$cmd = "dig +short {$addr} {$type} @{$ns}"; | |
return shell_exec($cmd); | |
} |
This file contains 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
{ | |
"BTTTriggerClass" : "BTTTriggerTypeKeyboardShortcut", | |
"BTTPredefinedActionType" : 172, | |
"BTTPredefinedActionName" : "Run Apple Script (blocking)", | |
"BTTInlineAppleScript" : "do shell script \"\/php \/Users\/USERNAME\/dev\/togglaudio.php\"", | |
"BTTAdditionalConfiguration" : "8519680", | |
"BTTEnabled2" : 1, | |
"BTTKeyboardShortcutKeyboardType" : 3253, | |
"BTTRepeatDelay" : 0, | |
"BTTUUID" : "E86A6EE6-0B34-4607-8D94-9AE303AF29CB", |
This file contains 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
<?php | |
/** | |
* @param string $url The URL to fetch | |
* @param boolean $json if true, returns decoded json array | |
* @param boolean $show_error if true, prints curl error to screen | |
* @author CodeBrauer <https://github.com/CodeBrauer> | |
* @return string result of fetched url, false on failure | |
*/ | |
function curl_get_contents($url, $json = false, $show_error = false) { | |
if (!function_exists('curl_init')) { return file_get_contents($url); } // fallback |