This is how I setup my home router to share a 4G/LTE connection at day and switch to a DSL connection overnight.
It also falls back to DSL connection whenever the 4G/LTE connection dies.
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\Drive\shell] | |
@="open" | |
[HKEY_CLASSES_ROOT\Drive\shell\open] | |
[HKEY_CLASSES_ROOT\Drive\shell\open\command] | |
@="C:\\Program Files\\Double Commander\\doublecmd.exe -C \"%1\"" |
using UnityEngine; | |
public class Unity3DObjectDragHandler : MonoBehaviour | |
{ | |
public Camera camera; | |
public void Start() | |
{ | |
} |
#!/bin/bash | |
git_files=$(git ls-files) | |
for git_file in $git_files; do | |
encoding=$(file --mime-encoding "$git_file") | |
type=$(echo "$encoding" | awk -F ': ' '{ print $2 }') | |
if [ "$type" == "binary" ]; then | |
echo $git_file | |
fi |
const fs = require("fs"); | |
const EventEmitter = require("events").EventEmitter; | |
const read = (fileHandle, bufferSize, position, emitter) => { | |
const buffer = Buffer.alloc(bufferSize); | |
fs.read( | |
fileHandle, | |
buffer, | |
0, |
minikube ssh
)GatewayPorts
option is set to yes
in /etc/ssh/sshd_config
(and restart the SSH server if necessary)ssh -i
tar xf photon-*.ova
Tips for running a single-node Kubernetes cluster on WSL2 with Podman
Edit /etc/containers/containers.conf
:
cgroup_manager
to cgroupfs
events_logger
to file