time.google.com
time1.google.com
time2.google.com
time3.google.com
This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
FROM fluent/fluentd:v1.3-1 | |
# Use root account to use apk | |
USER root | |
# below RUN includes plugin as examples elasticsearch is not required | |
# you may customize including plugins as you wish | |
RUN apk add --no-cache --update --virtual .build-deps \ | |
build-base ruby-dev \ | |
&& gem install \ |
package main | |
import ( | |
"crypto/rand" | |
"crypto/rsa" | |
"crypto/x509" | |
"crypto/x509/pkix" | |
"encoding/pem" | |
"fmt" | |
"math/big" |
package main | |
import ( | |
"bytes" | |
"encoding/base64" | |
"fmt" | |
"io/ioutil" | |
"mime/multipart" | |
"net/smtp" | |
"os" |
Install, build and debug a react native app in WSL2 (Windows Subsystem for Linux) and Ubuntu.
The Logitech Options program isn't available for Linux, but by a nice guy on GitHub (PixlOne) created an open source project that lets you obtain some of that functionality. It's called logiops. It works in conjunction with the Solaar project as well, which I find especially handy since that shows your available battery life in the system tray and lets you pair/unpair devices with the Logitech Unifying Receiver.
Here are some additional pages with info that I used to generate this documentation:
iperf3
serverwg-quick down wg0
/etc/wireguard/wg0.conf
filedevices: ( | |
{ | |
name: "MX Master 3S"; | |
smartshift: | |
{ | |
on: true; | |
threshold: 30; | |
}; | |
hiresscroll: | |
{ |
{ | |
"name": "Multiple PNPM projects", | |
// recommend using microsoft default image | |
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-20-bullseye", | |
// !!!! MAGIC STARTS HERE!!! | |
"mounts": [ | |
"source=global-pnpm-store,target=${containerWorkspaceFolder}/.pnpm-store,type=volume" |