Skip to content

Instantly share code, notes, and snippets.

View hustlyt's full-sized avatar
🎯
Focusing

hustlyt

🎯
Focusing
View GitHub Profile
@hustlyt
hustlyt / librechat.example.yaml
Last active December 22, 2024 07:05
librechat.example.yaml
# For more information, see the Configuration Guide:
# https://www.librechat.ai/docs/configuration/librechat_yaml
# Configuration version (required)
version: 1.1.5
# Cache settings: Set to true to enable caching
cache: true
# Custom interface configuration
@hustlyt
hustlyt / sdkman_oracle_jdk.sh
Created January 13, 2025 14:16 — forked from smola/sdkman_oracle_jdk.sh
Install Oracle JDK 8 for use with SDKMAN
#!/bin/bash
#
# Install Oracle JDK 8 for use with SDKMAN
#
set -eu
# This URL can be discovered using https://sites.google.com/view/java-se-download-url-converter
DOWNLOAD_URL="https://javadl.oracle.com/webapps/download/GetFile/1.8.0_331-b09/165374ff4ea84ef0bbd821706e29b123/linux-i586/jdk-8u331-linux-x64.tar.gz"
TARBALL="jdk-8u331-linux-x64.tar.gz"
#!/bin/bash
#
# Install JDK with url for use with SDKMAN
#
set -eu
# This URL can be discovered using https://d.injdk.cn/download
DOWNLOAD_URL=$1
TARBALL=$(basename "$DOWNLOAD_URL")