Skip to content

Instantly share code, notes, and snippets.

View christ-off's full-sized avatar

christ-off christ-off

View GitHub Profile
@DiegoRBaquero
DiegoRBaquero / readme.md
Last active June 25, 2026 18:59
Running Claude Code with a local LLM
@gmotzespina
gmotzespina / claude-launcher.sh
Last active June 1, 2026 12:19
Claude Launcher for Offline Usage
#!/bin/bash
# claude-launcher.sh
# Smart launcher for Claude Code — switch between local (LM Studio) and cloud (Anthropic) modes.
#
# Usage:
# ./claude-launcher.sh Interactive menu
# ./claude-launcher.sh local Launch with LM Studio
# ./claude-launcher.sh cloud Launch with Anthropic account
# ./claude-launcher.sh status Show current config & LM Studio status
@fcamblor
fcamblor / UpdateMACJDK.md
Last active November 9, 2020 13:49
[MAC users] Updating Oracle JDK to OpenJDK

Starting from February 2019, Oracle JDK updates will require Commercial license if you make any business using Java (eg, you're a Java Developper not spending only your spare time developping with Java).

It includes Java not only on your server, but on your laptop as well.

Source | Source

What's nasty is Java versions will remains free to download since if you use it as an individual/personal use, you won't be concerned by the commercial aspects of the license.

@alvarow
alvarow / openssl-cheat.sh
Last active August 5, 2025 18:23
OpenSSL and Keytool cheat sheet
# Generate a new key
openssl genrsa -out server.key 2048
# Generate a new CSR
openssl req -sha256 -new -key server.key -out server.csr
# Check certificate against CA
openssl verify -verbose -CApath ./CA/ -CAfile ./CA/cacert.pem cert.pem
# Self Signed