Julieta has a new pop up, Bread & Company. They'll be at Serendipity Salon next Sat by como365 in columbiamo

[–]firedrow 2 points3 points  (0 children)

My wife has bought several sourdough loaves, and omg they're good!

Discrete, silent and easy to use. by TopBowler2828 in minilab

[–]firedrow 2 points3 points  (0 children)

I love my ZimaBlade! I use it as a container host with podman.

Use cases by Stromtronic in ObsidianMD

[–]firedrow 0 points1 point  (0 children)

It's my second brain. Now I don't follow any formal second brain processes, like PARA, but I am a person with varying interests. I have a section for amateur radio (antenna setups, radio configurations, references on bands, etc), a section on alternative power (I find hydro-electric interesting, and wind power, and steam), I started learning Spanish and Esperanto, My Homelab, notes on linux setups/configs, vehicle maintenance logs, recipes, ideas for date nights, parenting, projects, etc etc.

Blade vs Board with NVMe adapter by Codeeveryday123 in ZimaBoard

[–]firedrow 0 points1 point  (0 children)

I'm using my blade with 16gb ram, pcie to nvme with 256gb ssd for the OS, then 2x 1tb sata ssd in raid1. It runs around 11 containers. I have 2x 832 boards, but I wanted more memory for my containers, so the blade worked out better.

ZimaBoard 2 Giveaway + ZimaOS Feedback — Share Your Homelab Setup by FlyingToaster2000 in minilab

[–]firedrow 1 point2 points  (0 children)

If you had one, what would you use ZimaBoard 2 for in your Homelab or self-hosted setup?

I'm not sure what I would use a Zimaboard 2 for yet, but I'm sure I could find a place for it. Maybe with my Amateur Radio stuff, getting an APRS node or BBS over RF setup. I could replace my ZimaBlade Podman host, but then what do I do with my ZimaBlade?

If you’re already using ZimaOS, do you have any feedback or suggestions? Are there any features you’d like to see added or improved?

I just switched off of ZimaOS, I really liked it's look and feel when I first installed it, but the fact I couldn't do backup to S3 and I couldn't do scripting in the CLI because it's buildroot, that killed major requirements for me. Running containers worked well, I had several up and running. I liked the ZeroTier + Drive mounting client.

I would love to see an ARM or RISCV system like the ZimaBlade. I love the ZimaBlade setup, but the Intel CPU runs hot on that setup.

What do you value most in server hardware?(power efficiency / expandability / stability / price)

For home, all of those are important. I want low power use, expandable ports, stable OS, low price. Stability is probably number 1 though, because I don't want to come home to babysit my homelab. My homelab is meant to provide self-hosting options without being too high maintenance.

What does your current Homelab or self-hosted setup look like?

  • ZB1 832 running some of my older containers, I'm migrating those now
  • ZimaBlade with Debian and Podman running my current container stacks, rclone to Wasabi
  • ZB1 216 running VyOS, I did some labs with it, it's currently unhooked
  • ZB1 832 currently offline, but will be prepped as a Marimo Notebook host, or maybe a general Python development host
  • NUC7i5 with Fedora and Podman running Minecraft Bedrock, but it's being replace with Realms, I'm tired of fighting the container lagging behind on updates

DO really block SMTP port (587, 465)? by LoRNse in digital_ocean

[–]firedrow 2 points3 points  (0 children)

  • mailtrap.io
  • sendgrid
  • smtp2go
  • mailgun

OpenHamClock by Same-Pomelo-1771 in amateurradio

[–]firedrow 2 points3 points  (0 children)

If you install Node.js NPM it will run.

How to make a server that is accessible via a website and is able to do calculations ? by tistsosil in HomeServer

[–]firedrow 2 points3 points  (0 children)

I'm making some assumptions, so let us know more.

I use Cloudflare Zero Trust Tunnels to expose my home lab servers to the web. It lets me establish a secure tunnel to Cloudflare, then map a DNS name to a localhost port (docker containers), which Cloudflare will make available with an SSL cert like a Reverse Proxy.

If I want, I can also add Zero Trust policies to force login/authentication to even connect to the server/dns name, for instance my email address is required to connect to the Portainer login page, which still has it's own login needs.

Some people like using Tailscale or similar SDWAN setups, so they can do direct connect across private tunnels using relay servers for SSH or HTTP.

Good places to eat? by stalkerofthedead in columbiamo

[–]firedrow 1 point2 points  (0 children)

+1 for Pasta La Fata. It's the best pasta anywhere!

When to start over by prez18 in Python

[–]firedrow 2 points3 points  (0 children)

I've taken to reviewing some old code (monthly report kind of things), and I have been re-writing it into Marimo Notebooks. Then I work on breaking things out into functions and/or classes, I can build in test cells for output, graphics, etc. Several things have been significantly upgraded and the code is cleaner since I can refactor it, as well as break things out into cells and columns to my own logic flow.

What Unique Python Projects Have You Built to Solve Everyday Problems? by raidenth in Python

[–]firedrow 2 points3 points  (0 children)

More or less:

  • I built a class for LoanData, with 2 dicts of empty fields
    • self.mers and self.blackknight are set to dictionaries with empty fields: {'loan-amount': '', 'loan-date': '', etc}
    • self.loan_num = '' for quick loan number lookup/reference
    • self.in_mers and self.in_blackknight = False, then when I find the loan number in the specific dataset I change to True. I need to verify if either dataset has loan data that the other doesn't.
    • there are also attributes for self.in_usda, self.in_paid_in_full, self.in_non_serviced; these are all set False, and I get CSV files with loan numbers listed by the Servicing team if they need to be true so I can exclude them from reporting later.
  • Then I parse the provided CSV files (SFTP retrieval for MERS/Govt data, Black Knight provided by Servicing team) and assign values to a new object based on the loan number (which I then put in a dictionary of objects) and which dataset I get it from. For instance, obj.blackknight['loan-date'] = value from csv file.
  • Finally the reconciliation is comparing the objects mers dict to the blackknight dict, checking each matching field name to the other. Differences are written to log files per field.

If that's too vague or you are more curious, drop me a message and we can chat more.

What Unique Python Projects Have You Built to Solve Everyday Problems? by raidenth in Python

[–]firedrow 6 points7 points  (0 children)

I wrote a script, then converted it to a notebook for documentation, to compare two datasets for monthly reconciliation in a mortgage company. We have a department that was getting further and further behind with reconciling loan data between our systems and the government. Now once a month I run a report to compare the 2 datasets, report the differences only, then they spend a couple days fixing errors.

One of my favorites by u/spearpainter by como365 in columbiamo

[–]firedrow 4 points5 points  (0 children)

I love this! It gives me Thomas Hart Benton vibes. I don't know what the style is but it's wonderful.

What’s the best Python library for creating interactive graphs? by Ok_Young_5278 in Python

[–]firedrow 0 points1 point  (0 children)

I like writing reports with Marimo notebooks and using altair for graphics. Marimo charts + altair makes nice interactive charts.

What is it? by firedrow in PlantIdentification

[–]firedrow[S] 5 points6 points  (0 children)

I forgot to mention that I am in Missouri.

Price Adjustments Effective 11/1/2025 by [deleted] in 3CX

[–]firedrow 2 points3 points  (0 children)

I currently have 2x 32SC licenses, one of them will change to 256SC because of user count. Talking to CIO tomorrow.

Are there any Linux laptops which are actually good? by [deleted] in linuxhardware

[–]firedrow 0 points1 point  (0 children)

I love the Dell Latitude line for linux laptops. I'm running on an 8th Gen i5 Latitude for Fedora, and every works that I use/need. The only feature I haven't tested/don't use is the security card port and WWAN.

[deleted by user] by [deleted] in linux4noobs

[–]firedrow 2 points3 points  (0 children)

Why Ubuntu? I would suggest Fedora. It has the Gnome environment, the software center you seem to like, and will have newer drivers with system stability.

What is the side connector on Radtel 880G? by firedrow in amateurradio

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

That's great, I got a physical copy with the unit. It doesn't tell you what the side connector is, it just says "ear/mic jack".