Skip to content

Instantly share code, notes, and snippets.

Avatar

Rafael M. rafaelmaeuer

View GitHub Profile
View xcode-keychain.md
  1. Go to "Keychain Access"
  2. Double click the Private Key under the certificate use to code sign your App
  3. Add "Xcode" to "Always allows these applications:" under the "Access Control" section list.
@rafaelmaeuer
rafaelmaeuer / vaccination-stats.js
Last active April 22, 2023 13:23 — forked from marco79cgn/vaccination-stats.js
A Scriptable widget that shows the amount of people who have received the corona vaccination in Germany
View vaccination-stats.js
// 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();
@rafaelmaeuer
rafaelmaeuer / incidens_and_newcases.js
Last active March 8, 2023 09:15
Kombination der Covid-19 Neuinfektionen und der Inzidenz-Zahl für die aktuelle Location. Inspiriert von https://gist.github.com/kevinkub/46caebfebc7e26be63403a7f0587f664
View incidens_and_newcases.js
// 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
# To use nvm with brew, uncomment the line below
. "$(brew --prefix nvm)/nvm.sh" --no-use
export NODE_BINARY=$(command -v node)