- sudo apt-get install linux-lowlatency linux-headers-lowlatency
- choose best mirrors
- open driver manager
| #!/bin/bash | |
| # Step 1: Find the latest version of the .AppImage | |
| LATEST_APPIMAGE=$(ls -t $HOME/Applications/cursor-*.AppImage | head -n 1) | |
| echo "Latest AppImage: $LATEST_APPIMAGE" | |
| # Step 2: Update symlink to the latest version | |
| SYMLINK_PATH="$HOME/Applications/cursor.AppImage" | |
| ln -sf $LATEST_APPIMAGE $SYMLINK_PATH | |
| echo "Updated symlink to: $SYMLINK_PATH" |
| #!/bin/bash | |
| set -euo pipefail | |
| # Definition of colors for terminal output | |
| readonly RED_COLOR="\e[31m" | |
| readonly GREEN_COLOR="\e[32m" | |
| readonly YELLOW_COLOR="\e[33m" | |
| readonly BLUE_COLOR="\e[34m" | |
| readonly MAGENTA_COLOR="\e[35m" |
A Synthesis of Platonic Dialogues, Daoist Insights, Vedic Revelation, Biblical Teachings, Buddhist Doctrine, and Nietzschean Vision
Relax, I only have one Sunday to work on idea, literally my weekend project. So I tried Deepseek to see if it can help. Surprisingly, it works and it saves me another weekend...
Just chat.deepseek.com (cost = free) with prompts adapted from this gist.
Here's a simple way for Claude Code users to switch from the costly Claude models to the newly released SOTA open-source/weights coding model, Qwen3-Coder, via OpenRouter using LiteLLM on your local machine.
This process is quite universal and can be easily adapted to suit your needs. Feel free to explore other models (including local ones) as well as different providers and coding agents.
I'm sharing what works for me. This gu