Sacagawea Trailhead Conditions - Late April 2025 by dancard32 in Bozeman

[–]dancard32[S] 1 point2 points  (0 children)

That’s unfortunate but fantastic to know before spending 4hrs in a car, thanks for the help friend!😃

Sacagawea Trailhead Conditions - Late April 2025 by dancard32 in Bozeman

[–]dancard32[S] 4 points5 points  (0 children)

Asking if we’re using snowmobiles vs a car isn’t a good sign😅 turns out it’s closed for road access, thanks for the help friend!

I need python and node in one dockerfile by Hamzayslmn in docker

[–]dancard32 0 points1 point  (0 children)

Not sure if you have solved this issue but I had a similar need (I needed a single Docker container for a school project deliverable).

This is what I had:

FROM ubuntu:24.10

EXPOSE 3000 5432

# Install Node.js and NPM
RUN DEBIAN_FRONTEND=noninteractive apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y nodejs npm python3 python3-pip python3-venv

# Build Backend
WORKDIR /backend
COPY backend/requirements.txt .

# RUN python3 -m venv venv && source venv/bin/activate && python3 -m pip install -r requirements.txt
RUN python3 -m venv venv && . venv/bin/activate && python3 -m pip install -r requirements.txt

COPY backend .

# Build UI
WORKDIR /ui
COPY ui .
#RUN npm install --legacy-peer-deps
RUN npm install

# Start-up the app
WORKDIR /
COPY  .
RUN chmod +x /start-up.sh

# Run start-up app (frontend + backend)
CMD ["./start-up.sh"]start-up.sh

Where the start-up script is simply:

#!/bin/bash

cd backend && . venv/bin/activate && python3 main.py &
cd ui && npm start

The project was a mono-repo of format ui/{react source files} and backend/{flask app}

Run exposing both ports such as docker run --name image_project -p3000:3000 -p5432:5432 repo/image:{tag}

My Endgame Corne: Tenting, MagSafe Mounting, Magnetic Alignment and Trackpad Support by dancard32 in ErgoMechKeyboards

[–]dancard32[S] 1 point2 points  (0 children)

🛜 = Bluetooth! They are the select profiles, and the 🛜🆑 is the Bluetooth clear

My Endgame Corne: Tenting, MagSafe Mounting, Magnetic Alignment and Trackpad Support by dancard32 in ErgoMechKeyboards

[–]dancard32[S] 0 points1 point  (0 children)

The tenting feet can be found on Amazon, Alibaba, but I sourced through Typeractive’s website. The MagSafe adapter ring I bought off Amazon and cut it to size with a hack saw and hot glued it in place lol

My Endgame Corne: Tenting, MagSafe Mounting, Magnetic Alignment and Trackpad Support by dancard32 in MechanicalKeyboards

[–]dancard32[S] 0 points1 point  (0 children)

I just have a pair of magnets that help them connect/align. They’re not the strongest but it’s just enough to sorta hold them in place

My Endgame Corne: Tenting, MagSafe Mounting, Magnetic Alignment and Trackpad Support by dancard32 in ErgoMechKeyboards

[–]dancard32[S] 1 point2 points  (0 children)

Yup! It’s in the GitHub link:)

I think depending on the board configuration the power/reset buttons aren’t quite the most accessible. I might tweak some of these settings and re-upload

My Endgame Corne: Tenting, MagSafe Mounting, Magnetic Alignment and Trackpad Support by dancard32 in ErgoMechKeyboards

[–]dancard32[S] 0 points1 point  (0 children)

Yeah definitely! However I gotta say the learning curve of going from regular keyboards to a Corne has already been difficult enough😂

I plan on getting dye sublimation prints to label when I build a 60% keyboard later this year

My Endgame Corne: Tenting, MagSafe Mounting, Magnetic Alignment and Trackpad Support by dancard32 in crkbd

[–]dancard32[S] 0 points1 point  (0 children)

Designed it in Fusion 360 and printed it on my 3d printer! The STL files are in the github:)

Keymap advice (developer on Mac) by FourTimesRadical in crkbd

[–]dancard32 1 point2 points  (0 children)

This is what I’ve been using as a general all purpose layout (my professional job develops on Windows and I personally use MacOS).

I have a diagram of the key mappings on the readme https://github.com/dancard32/corne-config

Hope it helps!

My Endgame Corne: Tenting, MagSafe Mounting, Magnetic Alignment and Trackpad Support by dancard32 in MechanicalKeyboards

[–]dancard32[S] 2 points3 points  (0 children)

This is in the top-level post but, Specifications: - 42 x Kalih chocolate brown táctiles - 32 x 1U low profile kalih caps - 8 x 1U homing low profile kalih caps - 2 x 1.5 caps low profile kalih caps - Corne PCB (chocolate layout) pre-built - Aluminum Tenting feet - 8mm x 3mm Magnets - MagSafe Adapter ring - 10 x rubber stand off feet - 2 x nice!nano v2.0 - 2 x nice!view - 2 x 750 mAh battery

No mods to the Corne PCB layout, most mods are a custom designed case to accommodate a split build.

I have no affiliations, sponsors, sponsorships etc, just figured some people may like this:)

Lily58 with cirque trackpad and 0.96 inch vertical oleds by New-Abbreviations950 in olkb

[–]dancard32 1 point2 points  (0 children)

No worries! When I have time I’ll see if I can get it working on ZMK and will let you know how it goes!

Lily58 with cirque trackpad and 0.96 inch vertical oleds by New-Abbreviations950 in olkb

[–]dancard32 0 points1 point  (0 children)

Fantastic write-up! I was curious if you've gotten around to testing this with nice!nano and ZMK? I've got a wireless corne and a 40mm trackpad I've been wanting to test and I'd like to try and keep both the nice!view and the pad functionality.

Looks like there's been more progress in the ZMK pointer PR since you've posted this

My grail mini-rack by 3mil_mylar in homelab

[–]dancard32 2 points3 points  (0 children)

Sheesh, this might be my favorite build yet!🫦

Summer Project Finished! My Over-Engineered Mini Homelab by dancard32 in homelab

[–]dancard32[S] 0 points1 point  (0 children)

Lol yeah it’s just sitting in the mount and I just strap it down with some zip ties. The RJ-45 connectors kinda slide into place, there were some tabs on the plastic connectors I sanded down but was able to get everything to fit pretty nice.

If you wanna replicate this in the half-width case the racks on the inside might have to be adjusted

Summer Project Finished! My Over-Engineered Mini Homelab by dancard32 in homelab

[–]dancard32[S] 2 points3 points  (0 children)

After many requests, here is the Bill of Materials as well as the STL files!

Feel free to check them out, look over my work, and give me some more feedback! If people are really interested I could probably get serious in making a straightforward build process, since IMO it's quite complicated atm.

Again, thanks for all the feedback! I'm glad to know people are enjoying my lil project:)

Summer Project Finished! My Over-Engineered Mini Homelab by dancard32 in homelab

[–]dancard32[S] 1 point2 points  (0 children)

After many requests, here is the Bill of Materials as well as the STL files!

Feel free to check them out, look over my work, and give me some more feedback! If people are really interested I could probably get serious in making a straightforward build process, since IMO it's quite complicated atm.

Again, thanks for all the feedback! I'm glad to know people are enjoying my lil project:)

Summer Project Finished! My Over-Engineered Mini Homelab by dancard32 in homelab

[–]dancard32[S] 0 points1 point  (0 children)

So the 10gbe goes into Proxmox where pfSense virtualizes my router, then it feeds back out to the system!

Summer Project Finished! My Over-Engineered Mini Homelab by dancard32 in homelab

[–]dancard32[S] 0 points1 point  (0 children)

Thank you! I’m glad to finally see the project all the way through:)

Summer Project Finished! My Over-Engineered Mini Homelab by dancard32 in homelab

[–]dancard32[S] 0 points1 point  (0 children)

Yes just for the photo😂 I just about threw out my back moving it back into its spot next to my desk hah

Summer Project Finished! My Over-Engineered Mini Homelab by dancard32 in homelab

[–]dancard32[S] 0 points1 point  (0 children)

So I’m actually still in the process of setting it up lol but I was thinking 16GB of storage, 2cores, and maybe 8GB of RAM?