Skip to content

Instantly share code, notes, and snippets.

View rbenaley's full-sized avatar

Richard Ben Aleya rbenaley

  • Scalable Solutions
  • Belgium
View GitHub Profile
@AstralJohn
AstralJohn / Reset Udemy Progress.md
Last active March 19, 2025 15:23
Reset Udemy Progress

Reset Udemy Progress

Last Updated: 06/18/2024

Step 1. Go to the Udemy course in your browser

Go to the course and have any video up. The following code relies on the right sidebar to be visible to uncheck all your progress.

Step 2. Open browser console

You can do this with ctrl+shift+j and making sure the console tab is selected for chrome/brave

@hajowieland
hajowieland / download_models.sh
Last active February 23, 2024 19:35
download_models.sh
#!/bin/bash
cd /models || exit
# Define available models
declare -a available_models=("codellama-34b-instruct.Q4_0.gguf" "llama-2-13b-chat.ggmlv3.q4_0.bin" "llama-2-13b-chat.Q4_0.gguf" "llama-2-70b-chat.ggmlv3.q4_0.bin" "llama-2-70b-chat.Q4_0.gguf")
# Display available models to user
echo "Available LLM models:"
for model in "${available_models[@]}"; do