Skip to content

Instantly share code, notes, and snippets.

View thomaswitt's full-sized avatar
🚀 Entrepreneur @ http://Vendis.ai •🪽Angel Investor @ http://Expedite.Ventures

Thomas Witt thomaswitt

🚀 Entrepreneur @ http://Vendis.ai •🪽Angel Investor @ http://Expedite.Ventures
View GitHub Profile
@cannikin
cannikin / disable_falcon_console_logging.rb
Last active October 13, 2025 20:32
Initializer to attempt to revert development logging using Falcon + Rails back to Rails default
# frozen_string_literal: true
# Disable console-adapter-rails and restore standard Rails logging
# The falcon-rails gem automatically includes console-adapter-rails which
# overrides Rails' default logging format. This initializer restores the
# standard Rails logging behavior including request logging.
if Rails.env.development?
Rails.application.configure do
# Set up standard Rails logging before Falcon takes over
@arianvp
arianvp / SSH_MACOS_SECURE_ENCLAVES.md
Last active May 20, 2026 11:12
Native Secure Enclaved backed ssh keys on MacOS

Native Secure Enclave backed ssh keys on MacOS

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!