Hi, In this post, we will see how to enable Google sheet APis in Google Cloud project. Go to Google Cloud Console: Visit: https://console.cloud.google.com/ Make sure you're in your project Navigate to APIs & Services: Go to "APIs & Services" > "Library" (or use the search) Enable Google Sheets API: Search for "Google Sheets API" Click on it Click "Enable" Wait a few minutes: After enabling, wait 1–2 minutes for the change to propagate. Thank you.
Finding Your Redis Credentials: Host, Port, and Password Here is how to hunt down your Redis credentials in seconds. 1. The Host: Where is Redis living? In 90% of local development scenarios (including WSL), Redis lives right on your machine. Standard Local Host: 127.0.0.1 or localhost Remote Server: If you're connecting to a staging or production server, you will need that server's specific IP address or domain name (e.g., redis.example.com ). 2. The Port: Which door is open? The default port for Redis is 6379 . However, if you're running multiple instances, it might be different. To confirm exactly which port your instance is listening on, run: redis-cli CONFIG GET port Alternatively, you can ask your system which process is "squatting" on the network: sudo ss -tlnp | grep redis If you see 0.0.0.0:6379 , you're using the default. 3. The Password: Is the gate locked? By default, a fresh Redis installation has no password . In a local environment, this is ...
Ollama + Gemma 4 Local AI Setup Guide Install and run a local LLM on an external drive — step by step Overview This guide walks you through installing Ollama and the Gemma 4 language model entirely on an external drive, so your main system drive stays clean. You will also learn how to expose the model via an API for use in tools like Postman or your own applications. Topic Details Tool Ollama — a lightweight local LLM runner Model Gemma 4 by Google (~9 GB RAM required) Storage External drive (e.g. D:\ or F:\ OS Windows (PowerShell) API Port localhost:11434 Part 1 — Download Ollama Visit the official Ollama website to download the Windows installer. • Go to: https://ollama.com/download • Download the OllamaSetup.exe file ?...
Comments
Post a Comment