Skip to content

Instantly share code, notes, and snippets.

@CodeBrauer
CodeBrauer / outlook-extract-emails-mac.md
Last active September 3, 2021 15:16
Outlook local saved mails back to IMAP

Outlook local saved mails back to IMAP

Somehow the "new version" of Outlook for macOS fucked up and all "Sent" Mails we're only saved locally. And turns out, moving them to an IMAP-Folder syncs nothing. Litterly useless. To sync the missing mail to your server, this is the only way I got the mails back in my IMAP/webmail/Apple Mail.

  1. Create a folder on your desktop like mails-outlook-export
  2. Go to the folder in "new" Outlook for Mac, which are not synced
  3. Mark all the mails with CMD+A
  4. Move all mails with drag & drop to your folder mails-outlook-export
  5. Rename the folder to mails-outlook-export.mbox (file extension)
@CodeBrauer
CodeBrauer / README.md
Last active February 17, 2022 13:49
Mask IBAN with PHP for privacy (GDPR/DSGVO)

Mask IBAN with PHP for privacy (GDPR/DSGVO)

Masks an IBAN so that the user still recognizes you, but no one else can do anything with it.

<?php
/**
 * Masks an IBAN so that the user still recognizes you, but no one else can do anything with it.
 * @param  string $iban           the iban to mask
 * @param string $mask_character character/symbol to replace
@CodeBrauer
CodeBrauer / code_letter_cases.md
Last active July 27, 2021 07:32
All code letter cases for programming

letter cases:

Identifier Name Example
ada Ada case The_Quick_Brown_Fox
camel Camel case theQuickBrownFox
cobol COBOL case THE-QUICK-BROWN-FOX
dot Dot notation the.quick.brown.fox
kebab Kebab case the-quick-brown-fox
lower Lower case the quick brown fox
@CodeBrauer
CodeBrauer / mysql-connect-command-to-array-values.php
Last active April 8, 2021 10:40
mysql connect command to php array with keys
<?php
function mysql_command_to_values($input) {
$result = [];
$key_assignment_short = [
'D' => 'database',
'u' => 'username',
'p' => 'password',
'h' => 'host',
'P' => 'port',
@CodeBrauer
CodeBrauer / difftools-mac-2021.md
Created February 23, 2021 13:55
quick mac os diff tool comparison for mac 10.15
@CodeBrauer
CodeBrauer / 1_begrussungen-grussformeln-und-sonstiges.txt
Created February 11, 2021 13:35
Floskelsammlung. Begrüßungen, Grußformeln und Sonstiges. Gesammelt aus dem Internet.
Okäse ( Okay )
Bis baldrian ( Bis bald )
Tschausen ( Tschau )
Auf Wiederhörnchen ( Auf Wiedersehen )
Tschüssikowski ( Tschüß )
Bis Dannimanski ( Bis dann )
Tschö mit ö ( Tschüß )
Auf Video sehen ( Auf Wiedersehen )
Ich verabscheue mich ( verabschiede )
sauf wieder een ( Auf Wiedersehen )
@CodeBrauer
CodeBrauer / reset_apple_mail.sh
Last active February 8, 2021 08:10
This will reset Apple Mail to factory settings.
killall Mail &> /dev/null
# optional, if you want to backup any not-synced data
mv ~/Library/Containers/com.apple.mail ~/Desktop/com.apple.mail.backup
# Attention, these commands will delete everything about Apple Mail except the app itself (factory reset)
rm -rf ~/Library/Caches/com.apple.mail
rm -rf ~/Library/Saved\ Application\ State/com.apple.mail.savedState
rm -rf ~/Library/Application\ Support/AddressBook/MailRecents-v4.abcdmr
rm -rf ~/Library/Preferences/com.apple.mail.plist
@CodeBrauer
CodeBrauer / README.md
Last active January 18, 2022 11:58
quick and dirty script to toggle audio device (switch between speaker and headphones) using switchaudio-osx and BetterTouchTool (for a keyboard shortcut)

README

  1. brew install switchaudio-osx
  2. Check your audio devices with switchaudiosource -a
  3. Replace Mac mini Lautsprecher and Externe Kopfhörer with your ouput channels
  4. Place the script somewhere your user can execute it (do a chmod +x audiotoggle.sh)
  5. Copy the json and paste it to BTT. Edit the script path and you're done.
@CodeBrauer
CodeBrauer / ajax.js
Last active September 4, 2020 07:16 — forked from jasonhinkle/ajax.js
jQuery AJAX Snippet
$.ajax({
url: 'api/url',
method: 'POST',
data: {var:'val'},
contentType: "application/json; charset=utf-8",
dataType: 'json'
}).done(function(data, textStatus, jqXHR) {
console.log('done');
}).fail(function(jqXHR, textStatus, errorThrown) {
if (jqXHR.responseJSON) {
#touch body #navbar {
height: 2.5rem;
}
#touch body #printer #state .progress {
top: 3.125rem;
}
#touch body #printer #state {
padding-top: calc(3.125rem + 30px);