- Shall i implement it?
- No ...
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!
| Shader "Unlit/PolyRhythmVisualizer" { | |
| Properties { | |
| _TimeCode ("Input Time", Float) = 0 | |
| _OuterRingFreq ("Outer Ring Frequency", Float) = 1 | |
| _InnerRingFreq ("Inner Ring Frequency", Float) = 0.922 | |
| _RingCount ("Ring Count", Int) = 35 | |
| _VibrantFreq ("Vibrant Frequency", Float) = 2 | |
| _Vibrant ("Vibrant", Range(0, 1)) = 0.5 | |
| _Decay ("Decay", Range(0, 10)) = 2 | |
| [Header(Cosine Gradiant)] |
This guide explains how to install the FreeBSD on Hetzner Cloud VPS. This might also work for other VPS providers with the proper rescue system in place.
Table of contents:
See the new site: https://postgresisenough.dev
Tutorial: https://www.youtube.com/watch?v=hIqMrPTeGTc
Paste the below code in your browser console (F12 > Console):
/**
* YouTube "Not Interested" Automation Script
*
* This script marks all videos in the YouTube feed as "Not interested".
*
* Usage:An important part of "routing" is handling redirects. Redirects usually happen when you want to preserve an old link and send all the traffic bound for that destination to some new URL so you don't end up with broken links.
The way we recommend handling redirects has changed in React Router v6. This document explains why.
In React Router v4/5 (they have the same API, you can read about why we had to bump the major version here) we had a <Redirect> component that you could use to tell the router when to automatically redirect to another URL. You might have used it like this:
-
Install a working (and compiled) version of virt-viewer. You may view the homebrew package's upstream source on GitHub.
brew tap jeffreywildman/homebrew-virt-manager brew install virt-viewer
-
Once that's installed should be able make a call
remote-viewerwith a pve-spice.vv file downloaded from proxmox web interface
| - name: Disable and stoping service if exists | |
| systemd: | |
| service: "{ service name }" | |
| enabled: no | |
| state: stopped | |
| register: result_systemd_stop | |
| failed_when: "result_systemd_stop is failed and 'Could not find the requested service' not in result_systemd_stop.msg" |