Lecture 1: Introduction to Research — [📝Lecture Notebooks] [
Lecture 2: Introduction to Python — [📝Lecture Notebooks] [
Lecture 3: Introduction to NumPy — [📝Lecture Notebooks] [
Lecture 4: Introduction to pandas — [📝Lecture Notebooks] [
Lecture 5: Plotting Data — [📝Lecture Notebooks] [[
Discover gists
| #! /usr/bin/env python | |
| """ | |
| Pandoc filter to convert svg files to pdf as suggested at: | |
| https://github.com/jgm/pandoc/issues/265#issuecomment-27317316 | |
| """ | |
| __author__ = "Jerome Robert" | |
| import mimetypes | |
| import subprocess |
featCommits, that adds or remove a new featurefixCommits, that fixes a bugrefactorCommits, that rewrite/restructure your code, however does not change any API behaviourperfCommits are specialrefactorcommits, that improve performancestyleCommits, that do not affect the meaning (white-space, formatting, missing semi-colons, etc)testCommits, that add missing tests or correcting existing testsdocsCommits, that affect documentation onlybuildCommits, that affect build components like build tool, ci pipeline, dependencies, project version, ...opsCommits, that affect operational components like infrastructure, deployment, backup, recovery, ...
| import json | |
| import os | |
| import time | |
| import webbrowser | |
| import sys | |
| import re | |
| def handleWindows(extra_seconds): | |
| print("OS : Windows") |
Shortlink: http://bit.ly/siricmds
- [Wallet Siri Commands][page_wallet_siri_commands]
- [Web and YouTube Search Siri Commands][page_web_and_youtube_search_siri_commands]
- [More Phone and Notifications Siri Commands][page_more_phone_and_notifications_siri_commands]
- [Contacts Siri Commands][page_contacts_siri_commands]
- [Affective (Fun) Siri Commands][page_affective__fun__siri_commands]
- [Notes Siri Commands][page_notes_siri_commands]
| #! /usr/bin/env -S cargo +nightly -Zscript | |
| --- | |
| [package] | |
| edition = "2024" | |
| [dependencies] | |
| --- | |
| #![recursion_limit = "1024"] | |
| use std::marker::PhantomData; |
Based on https://davecoyle.com/tech-notes/ssh-keys-on-a-yubikey-mac/
-
Install the YubiKey Manager CLI (ykman); alternative installation options can be found here:
brew install ykman -
Install GPG >= 2.1. Version 2.1 simplified the running of gpg-agent. The version isn’t a hard requirement, but it might make your life easier.
It turns out that MacOS Tahoe can generate and use secure-enclave backed SSH keys! This replaces projects like https://github.com/maxgoedjen/secretive
There is a shared library /usr/lib/ssh-keychain.dylib that traditionally has been used to add smartcard support
to ssh by implementing PKCS11Provider interface. However since recently it also implements SecurityKeyProivder
which supports loading keys directly from the secure enclave! SecurityKeyProvider is what is normally used to talk to FIDO2 devices (e.g. libfido2 can be used to talk to your Yubikey). However you can now use it to talk to your Secure Enclave instead!
Last updated: 20251123
- SMB performance on Apple Silicon Macs (M1/M2/M3/M4) is often dramatically slower compared to Intel-based Macs or Linux/Windows PCs.
- This is an extremely common issue with other users employing Synology, TrueNAS, or Linux Samba.