https://github.com/jundot/omlx/releases
Go to model downloader
Multiple options, depending on your RAM
https://github.com/jundot/omlx/releases
Go to model downloader
Multiple options, depending on your RAM
| #!/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 |
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.
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.
| # 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 |