There is a lot of hidden treasure lying within university pages scattered across the internet. This list is an attempt to bring to light those awesome courses which make their high-quality material i.e. assignments, lectures, notes, readings & examinations available online for free.
This file contains hidden or 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
| # Realm DB - find and open for active iOS simulator | |
| # Usage: Add to ~/.zshrc, then run: source ~/.zshrc && realm-open | |
| realm-open() { | |
| local booted=$(xcrun simctl list devices booted -j | python3 -c " | |
| import sys,json | |
| d=json.load(sys.stdin) | |
| sims=[(u['name'],u['udid']) for devs in d['devices'].values() for u in devs if u.get('state')=='Booted'] | |
| for name,udid in sims: print(f'{name}|{udid}') | |
| ") |