Last updated: 2023-06-19
Category: Security, Presence Detection
- Auto lock computer (mac/linux) when
- Apple Watch is not near computer (BLE), or
- YubiKey is not plugged into computer
/* Copyright 2022 splitkb.com <[email protected]> | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 2 of the License, or | |
* (at your option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of | |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
@import 'https://cdnjs.cloudflare.com/ajax/libs/IBM-type/0.5.4/css/ibm-type.min.css'; | |
* { | |
font-family: 'IBM Plex Sans', sans-serif; | |
} | |
body { | |
background-color: #f7f9fb; | |
margin: auto; | |
padding-bottom: 1em; |
This is a non-exhaustive list of JavaScript frameworks for building web apps and components. It is based on countless hours of figuring out which framework to use for a personal project.
These are around for a long time.
#!/usr/bin/env python3 | |
''' | |
This script | |
1. creates a DigitalOcean cloud firewall with incoming connection from Cloudflare allowed. (80/tcp, 443/tcp, 3012/tcp) | |
2. requires urllib3. | |
3. is non-interactive. You must edit this file for the variables. | |
4. is not production ready. (I honestly don't know.) | |
License: MIT |