Protable AI in Your Device: The Ollama Project the Ollama project! With Ollama Getting Started Prepare Your Device: Ensure you have a device with ample RAM and storage space. Install necessary packages: pkg i build-essential cmake golang git apt update pkg i gcc-8 If needed, install GCC from the Pointless repository. Clone the Repo: git clone https://github.com/ollama/ollama.git Build and Install Dependencies: cd ollama go generate ./... go build . Start the Server: ./ollama serve Models Installing Pull the desired models from the repository: ./ollama pull gemma ./ollama pull openchat Running Models Chat Session: ./ollama run gemma One Shot: ./ollama run gemma "Summarize for me: $(cat README.md)" For More Details Check out the README.md for additional commands and API usage. Have fun bringing AI fe...
Installing Cloudflared in Termux for Android (ngrok Alternative) – 2026 Updated Repository Link https://github.com/rajbhx/cloudflared-termux What Is Cloudflare? Cloudflare, Inc. is an American content delivery network (CDN) and DDoS protection company founded in 2010. It works as a reverse proxy between visitors and the hosting provider, improving security, performance, and reliability. Basic Usage Once installed, Cloudflared can expose a local service to the internet. cloudflared -url localhost:PORT Example: cloudflared -url localhost:8000 Alternative command: cloudflared tunnel localhost:PORT Installation Make sure your Termux app is fully updated before proceeding. Installation Commands Follow the steps below to install Cloudflared using the rajbhx/cloudflared-termux script. 1. Update Termux and install Git pkg update && pkg upgrade pkg install git 2. Clone the Cloudflared Termux repository git ...