If you already have Homebrew, just open a terminal and type
$ brew install clozure-cl
wget -c --no-cookies --no-check-certificate --header "Cookie: oraclelicense=accept-securebackup-cookie" https://download.oracle.com/otn-pub/java/jdk/12.0.2+10/e482c34c86bd4bf8b56c0b35558996b9/jdk-12.0.2_linux-x64_bin.tar.gz |
If you already have Homebrew, just open a terminal and type
$ brew install clozure-cl
Part of collection: Hyper-converged Homelab with Proxmox
After struggling for some days, and since I really needed this to work (ignoring the it can't be done vibe everywhere), I managed to get Docker to work reliable in privileged Debian 12 LXC Containers on Proxmox 8
(Unfortunately, I couldn't get anything to work in unprivileged LXC Containers)
There are NO modifications required on the Proxmox host or the /etc/pve/lxc/xxx.conf
file; everything is done on the Docker Swarm host. So the only obvious candidate who could break this setup, are future Docker Engine updates!
(function () { | |
// Define the keyboard shortcut | |
const shortcut = { | |
key: "N", | |
modifiers: ["ctrlKey", "shiftKey"], | |
}; | |
// Function to create a new block, open it in the sidebar, and set focus | |
async function createBlockAndFocus() { | |
const todayDate = new Date(); |
Compiled and written by Matti "ccr" Hamalainen of TNSP 2000-2001
Contact ccr/TNSP at:
Following are the extensions required for neovim:
I use lazy.nvim
so, just add the following to your plugins table, or create a new file in lua/plugins/lsp.lua
return {
{
// | |
// ContentView.swift | |
// Airdrop Demo | |
// | |
// Created by Daniel Kuntz on 7/30/23. | |
// | |
import SwiftUI | |
struct ContentView: View { |
// | |
// CDView.swift | |
// CD | |
// | |
// Created by Daniel Kuntz on 7/3/23. | |
// | |
import SwiftUI | |
struct ShapeWithHole: Shape { |
Say I've written a script in Python and want to ship the whole thing in a single directory/tarball
to a machine without having to polute the system by running pip
or yum
. This is a way to do that.
# Install deps into a directory called vendor
pip install -r requirements.txt --prefix vendor