- Go to "Keychain Access"
- Double click the Private Key under the certificate use to code sign your App
- Add "Xcode" to "Always allows these applications:" under the "Access Control" section list.
View xcode-keychain.md
View find-elements-two-arrays.js
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
var arr1 = [ | |
{ | |
"prop1": "value1", | |
"prop2": "value2", | |
}, | |
{ | |
"prop1": "value3", | |
"prop2": "value4", | |
}, | |
{ |
View macos-restart-coreaudio.sh
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
sudo pkill coreaudiod |
View vaccination-stats.js
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
// Version 1.4.3 | |
// 30.05.2022 | |
// | |
// Mit Caching und Fallback | |
// Neue API mit TSV-Parsing | |
// Dark-Mode Unterstützung | |
const resetCache = false; | |
const cacheMinutes = 60; | |
const today = new Date(); |
View incidens_and_newcases.js
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
// COVID-19 iOS-Widget for Incidence and Newcases in Germany and current geo-location | |
// Modified: https://gist.github.com/oliverandrich/0f34c8d4e6de4b6ff32937c584009a65 | |
// Inspired by: https://gist.github.com/kevinkub/46caebfebc7e26be63403a7f0587f664 | |
// Added Data Source: https://api.corona-zahlen.org/docs/ | |
const GEO = { | |
latitude: 49.87, | |
longitude: 8.65 | |
} |
View ios-xcode.env
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
# To use nvm with brew, uncomment the line below | |
. "$(brew --prefix nvm)/nvm.sh" --no-use | |
export NODE_BINARY=$(command -v node) |
View error-rsa-key.txt
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
# add to ~/.ssh/config | |
Host gitlab.com | |
UpdateHostKeys no |
View ubuntu-hostname.sh
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
sudo nano /etc/hostname | |
sudo nano /etc/hosts | |
sudo reboot |
View delete-subdirs.sh
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
find . -type d -exec rm -rf {} \; |
View python-ternary-operator.py
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
x = a if condition else b |
NewerOlder