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
#!/usr/bin/env sh | |
# cliv - Execute commands using a specific .env and directory | |
set -eu | |
_err () { printf "%s\n" "$0: Error: $*" ; exit 1 ; } | |
HOME="${HOME:-$(getent passwd $(id -u) | cut -d : -f 6)}" | |
[ -d "$HOME/.cliv" ] || mkdir -p "$HOME/.cliv" | |
if [ $# -lt 1 ] || [ "$1" = "-h" ] ; then |
We can make this file beautiful and searchable if this error is corrected: It looks like row 8 should actually have 13 columns, instead of 1 in line 7.
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
,Linode,DigitalOcean,UpCloud,OVHCloud,Vultr,IBMCloud,Wasabi,Backblaze,AWS S3,Azure,GoogleCloud,Rackspace | |
Prices,https://www.linode.com/products/object-storage/,https://www.digitalocean.com/pricing/#spaces-object-storage,,https://www.ovhcloud.com/asia/public-cloud/prices/#439,https://www.vultr.com/products/object-storage/#pricing,https://cloud.ibm.com/objectstorage/create#pricing,https://wasabi.com/cloud-storage-pricing/pricing-faqs/,https://www.backblaze.com/b2/cloud-storage-pricing.html,,,,https://www.rackspace.com/openstack/public/pricing | |
,,,,,,,,,,,, | |
TrafficIncoming,included,included,,included,included,,included,,,,, | |
TrafficOutgoing,1TB + 0.01 per GB,1TB + 0.01 per GB,,$11 per 1 TB,1 TB + 0.01 per GB,$90 per 1 TB,included if not exceeding storage amount,$10 per 1 TB,$90 per 1 TB,$87 per 1 TB,$120 per 1 TB,$120 per 1 TB | |
StoragePricePerMonth,$20 per 1 TB,$20 per 1 TB,,$10 per 1 TB,$20 per 1 TB,$22.7 per 1 TB,$6 per 1 TB,$5 per 1 TB,$21 per 1 TB,$18 per 1 TB,$20 per 1 TB,$100 per 1 TB | |
,,,,,,,,,,,, | |
ArchiveTraf |
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
[user] | |
; NOTE: Replace your name, email, and signing ssh public key here. | |
name = My Git User Name Here | |
email = [email protected] | |
signingkey = MYLONGSSHPUBKEYHERE | |
; NOTE: Uncomment this if you want to set a default credential store for Git. | |
; On Linux, "secretservice" is the libsecret (aka keyring) method. | |
;[credential] | |
; credentialStore = secretservice |
/var/log/kube-apiserver.log
- API Server, responsible for serving the API/var/log/kube-scheduler.log
- Scheduler, responsible for making scheduling decisions/var/log/kube-controller-manager.log
- a component that runs most Kubernetes built-in controllers, with the notable exception of scheduling (the kube-scheduler handles scheduling).
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
#!/usr/bin/env sh | |
# control-touchscreen.sh - script to control touchscreen device in Linux | |
# Copyright (C) 2024 Peter Willis | |
# | |
# This script is designed to try to detect a Touchscreen device in Linux. | |
# If it detects one, it allows you to bind or unbind it to the HID Generic | |
# driver, which should enable or disable the touchscreen. | |
# Works on Wayland, should work on X11 as well (but untested). | |
# | |
# SOFTWARE LICENSE: |
I finally settled on a new personal Linux laptop, and it's the Lenovo ThinkPad T14s Gen 4 w/AMD processor, 32GB RAM, and Low-power 500 nits display.
I had mine shipped with Ubuntu, it comes with (I think) Ubuntu 22.04.01 LTS. It's nice because they set up the BIOS to come with Secure Boot enabled for Ubuntu. Everything works out of the box.
OlderNewer