Skip to content

Instantly share code, notes, and snippets.

View drmuey's full-sized avatar
👾
Compiling …

drmuey

👾
Compiling …
View GitHub Profile
@drmuey
drmuey / TL;DR.md
Created December 31, 2023 01:23
TL;DR

What does it stand for?

Too Long; Didn’t Read

Its when there is a lot of detail that people may tend to ignore or not completely grok due to the sheer volume.

How are you using it?

I typically use it in electronic communication to indicate a conscise summary for them to get the main take aways while also roviding details later for any one interested in them.

@drmuey
drmuey / Schedulers.md
Last active November 28, 2023 18:55
Schedulers

Workflow

  1. Open NW Scheduler
  2. Check for software updates and update
  3. Pull in updates from publishers
  4. Do what you need to
  5. view, create a schedule, update data, etc
  6. When done send updates to the publishers (if any)
@drmuey
drmuey / macOS VM runner.md
Last active December 19, 2023 22:21
macOS VM runner

Here is my findings/opinion as of Oct 2023:

  1. ❌ Boot Camp - I want to run OSs in a window, not reboot into it
  2. ❌ Parallels Desktop - too expensive for my purposes
  3. VirtualBox is great but, unfortunately, Virtual Box currently (Sept 2023) does not work on modern macs so its a non-strater ATM. Plus the licesning is not currently compatible with my work.
  4. ⚠️ QEMU is extremely capable but it requires quite a technical ability to simply spin up a VM
  5. UTM is a QEMU based GUI that is simple and just works.

UTM, like Virtual Box, runs the OS in a window in macOS (as opposed to rebooting into the OS like bootcamp). Personally, I find the window approach far more convenient than rebooting.

@drmuey
drmuey / Alexa not announcing calendar events.md
Last active November 23, 2022 21:06
Alexa not announcing calendar events

Goal

Have my echo automatically tell me about a given calendar’s events when its time comes (and any remind-me-X-before reminders that they have attached to them if possible).

Example: Say I have a Big Important Meeting at 1pm with a remind-me-notification 5 minutes before set.

  1. At 12:55 I want to hear something like “Dan, Big Important Meeting is in five minutes”
  2. At 1.00I want to hear something like “Dan, Big Important Meeting started”

Problem

@drmuey
drmuey / Bulleit with Butterfly Wings.md
Last active March 25, 2022 02:36
Drink Recipe: Bulleit with Butterfly Wings

I've been working on this idea off and on for a while and tonight Rhiannon had a suggestion that just fell into place. The end result:

  • 1 shot (or 2 if you like) Bulleit Bourbon
  • 1 shot tart cherry juice
    • original was RW Knudsen family organic just tart cherry
  • 6 oz peach sparking water
    • original was Waterloo
  • ice to preference
  • rinse and repeat as needed
@drmuey
drmuey / No Pipe Burst No Cry.md
Last active February 4, 2022 15:42
How I Avoid Burst Pipes During a Freeze

Houston homes are not built for freezing weather. Winter Storm Uri in Feb 2021 proved that and I never want to go through that again!

So instead of the trickling outlets approach (which did not prevent our pipe burst) we will be shutting off water during the freeze.

Here is how I do it:

Before it freezes (in the evening probably):

  1. Fill up bathtub, buckets, etc with water for flushing toilets
  2. Open every tap inside and out
@drmuey
drmuey / cPanel 12 (make that 42).md
Last active January 28, 2022 01:55
Diagram of containers
flowchart LR
    A[fa:fa-users WHM]
    A --> B["fa:fa-user cPanel (user 1 - “classic” setup)"]
    A --> C["fa:fa-user cPanel (user 2 - major web needs; DNS/mail handled via registrar)"]
    A --> D["fa:fa-user cPanel (user 3 — complex needs)"]
    B --> E["Web"]
    B --> F["Email"]
    B --> G["MySQL"]
 B --> H["DNS"]
@drmuey
drmuey / ha-ea4-1.md
Last active January 17, 2022 20:12
flowchart TD
    A[fa:fa-users Client] -->|HTTP Request|B{"fa:fa-shield-alt Vanguard (Frontend)"}
    B -->|Proxy HTTP Request - SSL self signed|C
    C((fa:fa-pastafarianism Web Drone Army))
    B -->|Service Subdomain Request|F
    F -->|"Website Info (sans SSL certs)"|C
    C -->|Log Info|F
    F -->|"Web Drone Army Info (w/ SSL certs)"|B
 F("fa:fa-space-shuttle Mothership (Single Source of Truth Backend)")
@drmuey
drmuey / Oculus Quest 2 Blurry.md
Last active February 7, 2022 11:47
Oculus Quest 2 Blurry
  • Find your best zone
    • Make sure the lenses are clean and wipe them with a microfiber cloth
    • Take your time to find the best IPD setting
    • Learn to adjust the headset and straps properly
    • Do some testing if you wear glasses
      • clean your glasses!
    • make sure your eyes are not dry as that affects vision (i.e. hydration/blink more/eye drops)
    • Increase texture size
  • cut down on “god rays”: Settings ➜ Device ➜ Night Display
@drmuey
drmuey / git ours and theirs behavior.md
Last active March 25, 2021 21:36
git ours and theirs behavior with merge and rebase

With my-awesome-work branch checked out:

What you want to do git merge master git rebase master
Keep changes from master -Xtheirs -Xours
Keep changes from my-awesome-work -Xours -Xtheirs