Skip to content

Instantly share code, notes, and snippets.

@CodeBrauer
CodeBrauer / lieferbär.de.user.js
Last active July 24, 2023 07:33
Lieferbär Userscript - Sort by Price, add 30% discount
// ==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
@CodeBrauer
CodeBrauer / bookmarklets-for-delivery-status-pages-lieferando-amazon.md
Last active March 3, 2023 15:14
Bookmarklets for delivery status pages (Lieferando/Amazon)

Bookmarklets for delivery status pages (Lieferando/Amazon)

Amazon 📦

(function() {
    'use strict';
    function loadData(){
        document.title = document.querySelector(".mapTracker-da-bubble").textContent + ' - Amazon';
 }
@CodeBrauer
CodeBrauer / README.md
Last active March 1, 2025 11:54
A collection of awesome tools for bahn.de / DB / Deutsche Bahn
@CodeBrauer
CodeBrauer / .zshrc
Created June 8, 2022 12:09
Show Timestamp in each line for ZSH. Use only one which suits the best for you
#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="[%*]"
@CodeBrauer
CodeBrauer / install_IM6.sh
Created March 11, 2022 16:31
Install latest ImageMagick6
#!/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..."
@CodeBrauer
CodeBrauer / check_domain_dns.php
Created February 17, 2022 13:47
Quick and Dirty DNS checker - shows A, MX, TXT & NS Entries with ipinfo.io details
<?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);
}
@CodeBrauer
CodeBrauer / better_touch_tools.json
Created January 17, 2022 14:50
quick and dirty soultion for me to toggle between mac speakers, bluetooth headphones and wired headphones with one keystroke.
{
"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",
<?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