If you are using this already, consider changes soon due the discussion around current ESX proposal.
Feel free to keep an eye on udomsay as that will be the implementation reference for consumers.
// This Zellij config offers a more modal experience than the default. There are | |
// very few keybindings in the mode that you spend most of your time in, and we | |
// need to hit `C-space` to go into a mode where we navigate. | |
// The only keybindings in the normal mode are: | |
// - `C-space` to go into the tmux mode | |
// - `C-n` for a new pane | |
// - `C-t` for a new tab | |
// - `A-[` & `A-]` to go to the previous/next tab | |
// - `S-arrow` to navigate between panes |
If you are using this already, consider changes soon due the discussion around current ESX proposal.
Feel free to keep an eye on udomsay as that will be the implementation reference for consumers.
NVIDIA Driver Version: 522.25 CUDA Version: 11.8 | |
Credit: blazer | |
For benchmarking the card and allowing me to release the benchmarks here | |
The hashcat installation used includes a change to the tuning ALIAS.hctune file to include the RTX 4090 as "ALIAS_nv_sm50_or_higher". | |
The "Kernel exec timeout" warning is cosmetic and does not affect the speed of any of the benchmarked modes. | |
Benchmark was run at stock clocks on an Asus Strix 4090. | |
-- vim9script | |
-- # cfilter.vim: Plugin to filter entries from a quickfix/location list | |
-- # Last Change: Jun 30, 2022 | |
-- # Maintainer: Yegappan Lakshmanan (yegappan AT yahoo DOT com) | |
-- # Version: 2.0 | |
-- # | |
-- # Commands to filter the quickfix list: | |
-- # :Cfilter[!] /{pat}/ | |
-- # Create a new quickfix list from entries matching {pat} in the current | |
-- # quickfix list. Both the file name and the text of the entries are |
from jinja2 import Environment, FileSystemLoader, select_autoescape | |
from pathlib import Path | |
import shutil | |
import tempfile | |
import subprocess | |
import os | |
if "tailwindcss" not in os.listdir(): |
This isn't a guide about locking down homebrew so that it can't touch the rest of your system security-wise.
This guide doesn't fix the inherent security issues of a package management system that will literally yell at you if you try to do something about "huh, maybe it's not great my executables are writeable by my account without requiring authorization first".
But it absolutely is a guide about shoving it into its own little corner so that you can take it or leave it as you see fit, instead of just letting the project do what it likes like completely taking over permissions and ownership of a directory that might be in use by other software on your Mac and stomping all over their contents.
By following this guide you will:
sudo
to forcefully change permissions of some directory to be owned by your accountapiVersion: internal | |
kind: GitCommitLabel | |
metadata: | |
name: whatever | |
annotations: | |
config.kubernetes.io/function: | | |
exec: | |
path: git_commit_label.sh |
I always gripe about Python not having useful (i.e. performant and with adoption) built-in array type and Numpy doesn't distinguish "vector of vector" from "matrix", but this still surprised me.
It seems that Numpy uses intersect
logic to check a in b
: