Skip to content

Instantly share code, notes, and snippets.

Here's a markdown table comparing some popular radios in the GMRS category:

Radio Model Brand Frequency Power Output Range Battery Life Weight Price
Rocky Talkie Rocky Talkie GMRS 2W up to 25 miles up to 3 days 6.3 oz $99
BCA Link Mini Radio BCA GMRS 1W up to 20 miles up to 2 days 2.6 oz $129
Motorola T800 Motorola GMRS 2W up to 35 miles up to 24 hours 6.9 oz $149
Midland GXT1000 Midland GMRS 5W up to 36 miles up to 10 hours 12.3 oz $69
DeWalt DXFRS800 DeWalt GMRS 2W up to 25 miles up to 18 hours 9.9 oz $99
@Duke-LeTran
Duke-LeTran / Cooking_oils.md
Created September 13, 2024 03:58
Cooking oils as ranked for health by Claude
Rank Oil Category Omega-3 (%) Omega-6 (%) Monounsaturated Fat (%) Smoke Point Notes
1 Extra Virgin Olive Oil Fruit Oil 0.7 9.8 73 375Β°F (191Β°C) Rich in antioxidants, well-studied health benefits
2 Avocado Oil Fruit Oil 0.1 12.5 70 520Β°F (271Β°C) High smoke point, rich in vitamin E
3 Flaxseed Oil Seed Oil 53 12.7 19 225Β°F (107Β°C) Best source of plant-based omega-3, but not for cooking
4 Walnut Oil Nut Oil 10 52 23 320Β°F (160Β°C) Good balance of omega-3 and omega-6
5 Macadamia Nut Oil Nut Oil 0.2 2.8 81 410Β°F (210Β°C) One of the highest in monounsaturated fats
6 Canola Oil Seed Oil 9 18 62 400Β°F (204Β°C) Decent omega-3 to omega-6 ratio for a seed oil
7 Coconut Oil Tropical Oil 0 1.8 6 350Β°F (177Β°C) High in saturated fat (82%), contains MCTs
8 Grapeseed Oil Seed Oil
@Duke-LeTran
Duke-LeTran / install_firacode_nerdfont.sh
Created September 3, 2024 17:54
Install Firacode Nerdfont for use with Startship.rs
#!/bin/bash
set -e
# Function to check if a command exists
command_exists() {
command -v "$1" >/dev/null 2>&1
}
# Check for required commands
@Duke-LeTran
Duke-LeTran / anki_add_on.md
Last active February 6, 2024 21:22
Anki Add-Ons
@Duke-LeTran
Duke-LeTran / emoji.md
Last active August 4, 2023 20:03 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: πŸ˜„ :smile: πŸ˜† :laughing:
😊 :blush: πŸ˜ƒ :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
πŸ˜† :satisfied: 😁 :grin: πŸ˜‰ :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: πŸ˜€ :grinning:
πŸ˜— :kissing: πŸ˜™ :kissing_smiling_eyes: πŸ˜› :stuck_out_tongue:
@Duke-LeTran
Duke-LeTran / conda_duke.sh
Last active August 18, 2023 20:08
Sometimes you just need some conda install commands rather than the yaml files...
# I. conda create
## A.BOT
conda create -n bot
conda activate bot
conda install openpyxl pandas numpy seaborn pandoc sqlalchemy pyodbc pymysql cx_oracle requests html5lib beautifulsoup
conda install -c conda-forge hvac python-dotenv pynacl nbstripout jupyterlab
## Broken, worked on 3.7, forgot which jupyter version
# conda install -c anaconda jupyter
# conda install -c conda-forge jupyter_contrib_nbextensions
pip install pipenv selenium
@Duke-LeTran
Duke-LeTran / python.gitignore
Last active March 6, 2023 23:23
python.gitignore
__pycache__*
*/.ipynb_checkpoints/*
.ipynb_checkpoints/*
.venv/*
data/*
*.ini
*.log
*.env
*.pyc
*.csv
@Duke-LeTran
Duke-LeTran / .vimrc
Last active January 3, 2023 20:20
Duke's .vimrc file
" Duke .vimrc file
" Last Edit : 2022-03-23
" Description : some simple but useful settings
"
" source : https://github.com/nvie/vimrc/blob/main/nvim/init.vim
set nocompatible
" syntax on
" filetype plugin indent on