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
#!/usr/bin/sh | |
rm -rf "$HOME/Library/Preferences/WebIde40" | |
rm -rf "$HOME/Library/Caches/WebIde40" | |
rm -rf "$HOME/Library/Application Support/WebIde40" | |
rm -rf "$HOME/Library/Logs/WebIde40" |
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
define('FHP_BANK_URL', 'https://hbci.postbank.de/banking/hbci.do'); # HBCI / FinTS Url can be found here: https://www.hbci-zka.de/institute/institut_auswahl.htm (use the PIN/TAN URL) | |
define('FHP_BANK_PORT', 3000); # HBCI / FinTS Port can be found here: https://www.hbci-zka.de/institute/institut_auswahl.htm | |
define('FHP_BANK_CODE', 'BLZ'); # Your bank code / Bankleitzahl | |
define('FHP_ONLINE_BANKING_USERNAME', 'POSTBANK KONTO NUMMER'); # Your online banking username / alias | |
define('FHP_ONLINE_BANKING_PIN', 'PIN ZUM EINLOGEN INS ONLINEBANKING'); # Your online banking PIN (NOT! the pin of your bank card!) | |
$fints = new FinTs( | |
FHP_BANK_URL, | |
FHP_BANK_PORT, |