Advanced Search
Search Results
161 total results found
Low-Carb Vegies Intake | Net Carbohydrates Intake
#### Net Carbohydrates Intake Net carbs (total carbs minus fiber) are kept low to maintain ketosis. The range is generally fixed across LBM and activity levels, as ketosis depends on carb restriction rather than body size: - **Standard**: 20–50 g/day (5–10...
Fiber Intake | Net Carbohydrates Intake
#### Fiber Intake Fiber supports digestion and gut health. The range is consistent across LBM and activity levels, based on general recommendations: - **Standard**: 25–35 g/day. Higher fiber may be needed for larger individuals or to counter constipation...
Protein Intake by Lean Body Mass | Ketogenic Diet
**Protein Intake**- **Light**: 0.6–0.8 g/lb LBM- **Moderate**: 0.8–1.0 g/lb LBM- **Active**: 1.0–1.2 g/lb LBM **Light Activity (Sedentary)**| Lean Body Mass (lbs) | Protein Range (g/day) ||----------------------|-----------------------|| 100 ...
Chat bot instructions
As a friendly assistant for this website, I follow these rules: 1. Role: I answer queries based on the website's content provided below.2. Source: My responses come strictly from the website’s documentation, prioritizing the most relevant sections.3. Handling...
ECC or Buildings Branch | Flame Safeguard part 1
This is honeywells catalog of parts. Product Selection MatrixPRODUCT SELECTION MATRIX FOR EC7820 PROGRAMMER RELAY MODULES:M15516GSELECT ASUBBASESELECT APURGECARDSELECTOPTIONALCOMPONENTSKEYBOARDDISPLAYMODULECOMMUNICATIONSMISCELLANEOUSSELECT ARELAYMODULE220-240...
ECC or Buildings Branch | Flame Safeguard part 2
Flame DetectorsC7012 Solid State Purple Peeper® Ultraviolet Flame DetectorSolid state electronic flame detectors for use with HoneywellFlame Safeguard controls and amplifiers. Sense ultravioletradiation produced by combustion of gas, oil, coal or other fuels.•...
ECC or Buildings Branch | Flame Safeguard part 3
Servo Regulated Gas ValvesDimensions in inches (millimeters)M224146-1/8 (156)1-27/32(48)4-7/32(107)5-1/4 (133)7-5/16(240)2 (51)2-1/32(52)1-11/16 3-7/8 (98)(43)PRESSURESWITCHOPTIONALVALVEPOSITIONINDICATORLAMPSM224156-1/8 (156)1-27/32(48)4-7/32(107)5-1/4 (133)6-...
A few basic reminder commands
deactivate rm -rf ~/friday_env python3 -m venv ~/friday_env source ~/friday_env/bin/activate
Create AI from scratch-ish
speech_recognition (note the underscore, not speechrecognition as in your earlier error). Install: pip3 install speech_recognition. pyttsx3: Works on Linux Mint with espeak. Install: pip3 install pyttsx3. pyaudio: Requires system dependencies. Install: sudo...
Jellyfin From Scratch: How to Build a Complete Media Server on Linux Mint (Docker, Nginx, and Let’s Encrypt)
Start from a clean OS and end with your own secure, self-hosted streaming platform — complete with HTTPS access, remote streaming, and full media organization. Questions unlock answers.🧠 Introduction Jellyfin is a free, open-source media server that lets you...
Step-by-Step Fix for Installing snapd on Linux Mint
Ah — good catch. You need to install snapd but linux wont let you... Let’s fix that step by step 👇 🧰 Step-by-Step Fix for Installing snapd on Linux Mint 1. Check your Ubuntu base version Run this first: grep UBUNTU_CODENAME /etc/os-release You’ll like...
qBittorrent in Docker | troubleshooting
How to fix 'unauthorized' webUI error Add the following line to the qBittorrent.conf file: WebUI\HostHeaderValidation=false Admin password not working Adding this line under [Preferences], in the config file, works, for setting the default password man...
Test Gluetuns ip address to make sure it is using the VPN (inside docker container)
These methods use the docker containers Method 1 – built-in wget docker exec -it gluetun wget -qO- https://ifconfig.co → Should return a single IP like `185.193.124.57` (an IVPN Los Angeles IP) Country: docker exec -it gluetun wget -qO- https://ifconfig.c...
Test Gluetuns ip connection | cut the connection in Docker
Version 1 # Should show IVPN IP docker exec qbittorrent curl -m 10 https://ifconfig.co # Kill the tunnel (this should auto reconnect if your settings are set up that way) docker exec gluetun pkill -f wireguard-go # MUST timeout now: this shows your ...
NZBGet | in docker
NZBGet default credentials (all versions, including the linuxserver Docker image): Username:nzbget Password:tegbzn6789
Skyrim Mods in Linux
Prerequisites - Linux Distro: Endeavor OS (or similar Arch-based; adjust package manager commands if needed, e.g., use `apt` on Ubuntu).- Steam: Installed system-wide (e.g., via `sudo pacman -S steam`).- Skyrim: Special Edition or Anniversary Edition owned on...
Install Minecraft on Docker Compose
Install Mincraft using Docker Compose The Plugins are important. like "ViaVersion" as it it be what lets you cross platforms to switch and other consoles. services: minecraft: image: itzg/minecraft-server:java21 dns: - 8.8.8.8 - 8...
Pi-hole on Docker Compose
.yaml: services: pihole: container_name: pihole image: pihole/pihole:latest ports: # Web admin → map to a high port on host so NGINX can proxy to it without conflict - "80:80/tcp" # Or pick any free port like 8080:80, 8000...