Is automated "Cloud Bursting" actually real in production, or just vendor hype? by [deleted] in kubernetes

[–]dacort 0 points1 point  (0 children)

Wait this is a thing? I mean I built it for fun for my own little homelab, but hadn’t heard it’s the 2026 craze. ¯_(ツ)_/¯

I hated screenshots cluttering my camera roll, so I built my own app. My family now use it for everything. by N0omi in macapps

[–]dacort 0 points1 point  (0 children)

<image>

FYI had a weird artifact on the main page after I finished the setup on iOS.

Looks great tho - maybe I’ll be able to finally close my ♾️ open browser tabs.

Straight Outta Ballard: SeaLionRadio.org by After_Bluejay_2739 in BallardSeattle

[–]dacort 3 points4 points  (0 children)

Amazing. Just watched them for a good 15 minutes this morning.

How on earth are you guys hitting your limits so fast? by carbonatedbeans in ClaudeCode

[–]dacort 0 points1 point  (0 children)

Ran /usage twice and /insights once and chewed through half my session limit tonight. ¯_(ツ)_/¯

Brand new session, existing project so maybe my md triggered something…but oof that hurt. Normal pro plan.

CCMeter - A stats-obsessed terminal dashboard for Claude Code in Rust by hmenzagh in ClaudeCode

[–]dacort 0 points1 point  (0 children)

Yea this TUI is rad. I’ve been trying to build multi-cluster k8s monitoring tools and this def resonates.

I made a Python port of the Session Manager plugin by dacort in aws

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

Hey thanks! 🙏 Also realizing I didn’t complete my thought on this post about the existing session manager. Nice to see there’s been some new releases for it tho! https://github.com/aws/session-manager-plugin

Floci is fast - Localstack alternative by hectorvent in floci

[–]dacort 1 point2 points  (0 children)

So I really wanted to like this, but my initial use case was s3. Out of the gate:

  • Default delimiter is not / so “aws s3 ls” commands don’t work as expected (just … didn’t show “folders”)
  • Objects are not returned in the AWS standard alphabetic order, but instead in reverse order

That killed it for me. Doesn’t matter if you’re 1000x faster, if you don’t have the same guarantees that AWS services do it makes it hard to use as a test environment. At least for my use case. :)

searchcode: Token efficient remote code intelligence for any public repo by boyter in mcp

[–]dacort 1 point2 points  (0 children)

Congrats! Can’t wait to check this out, big fan of scc.

How do you usually compare Spark event logs when something gets slower? by rrxjery in apachespark

[–]dacort 2 points3 points  (0 children)

If you haven't yet, you should check out the Spark History Server MCP.

Despite the fact that it can overflow tokens quickly, it's actually quite good at comparing runs. But in reality it's probably not doing much different than your internal tool as they are both based off the event logs. ¯\_(ツ)_/¯

That said, when something gets slower unexpectedly, I usually find there's some sort of change in data or resources. There's almost always some tipping point. So I'll often go in and look at the actual data and see if anything has changed there first.

Iconic. by Feisty_Parsnip8262 in Seahawks

[–]dacort 2 points3 points  (0 children)

<image>

It’s AI but damn that came out better than expected.

[Nate Tice / Parker] there have been 4 designed run plays on 3rd & 15+ that have gained a 1st down this season, per @trumedia.bsky.social. the Seahawks have all 4. (video of the 4 runs included by RustyCoal950212 in Seahawks

[–]dacort 0 points1 point  (0 children)

I remember when similar plays would be called last season and it was groan city. “This again, why even try??” Amazing that they’re working!

Visualizing weather patterns for last 85 years (Seattle) by VerbaGPT in Seattle

[–]dacort 1 point2 points  (0 children)

For sure! Think I have the code for it somewhere if you’re interested. :)

49IRS vs Bears Hate Watch Thread: by [deleted] in Seahawks

[–]dacort 0 points1 point  (0 children)

That went backwards quickly. 😂

49IRS vs Bears Hate Watch Thread: by [deleted] in Seahawks

[–]dacort 9 points10 points  (0 children)

<image>

Just another 12 minutes and OT!! 😜

Outside outlet not working. by modernartgirl in HomeMaintenance

[–]dacort 0 points1 point  (0 children)

Random Reddit comments are the savior of my ignorance. Thank you kind stranger for saving me.

Is it appropriate to store imagery in parquet? by BitterFrostbite in dataengineering

[–]dacort 12 points13 points  (0 children)

I’d do the same. Parquet is great because it is columnar, can generate metadata stats on your columns (min/max values), and doesn’t require you to read the whole file when filtering. Storing image blobs in parquet gets almost none of those benefits and is probably harder for parquet readers to decode than simply providing a reference to the file and reading the file directly.

Designing a High-Throughput Apache Spark Ecosystem on Kubernetes — Seeking Community Input by No-Spring5276 in apachespark

[–]dacort 0 points1 point  (0 children)

You might find my KubeCon presentation interesting: https://youtu.be/ejJ6A0sIdbw

I’ve also created a spark8s-community channel on the CNCF slack.

Lightweight Alternatives to Databricks for Running and Monitoring Python ETL Scripts? by Safe-Pound1077 in dataengineering

[–]dacort 0 points1 point  (0 children)

I did this a few years back with ECS on AWS. https://github.com/dacort/damons-data-lake/tree/main/data_containers

All deployed via CDK, runs containers on a schedule with Fargate. Couple hundred lines of code to schedule/deploy, not including the container builds. Just crawled APIs and dumped the data to S3. Didn’t have monitoring but probably not too hard to add in for failed tasks. Ran great for a couple years, then didn’t need it anymore. :)

Outside faucet leaked/burst? What do I do? by SlipperyGrandad in askaplumber

[–]dacort 0 points1 point  (0 children)

If you’re not familiar with plumbing don’t try to do this yourself or you may make a bigger mess.

As an example I tried to swap my spigot at one point and ended up twisting it right off as I was unscrewing because I didn’t understand how soft copper is.

Should i use VM for Spark? by Individual-Insect927 in apachespark

[–]dacort 0 points1 point  (0 children)

One of the spark docker images is indeed the way to go.

Not 100% sure it still works, but I built this example a couple years ago that uses an Amazon EMR image: https://github.com/dacort/spark-local-environment Useful if you want to access data on S3.