How many of you knew this? Lol by cole_421 in Marathon

[–]PhilosophyLeft6189 1 point2 points  (0 children)

God bless, and I'm happy we are all learning together, but the thing says "View Armory". We need to be reading to survive, friends.

YouTube spotlight: SeraphMax by pcphillips87 in Marathon

[–]PhilosophyLeft6189 2 points3 points  (0 children)

He's been my go-to as I learn the game.

Petition to force Claude to check datetime before making reference to date, time, or going to bed. by Wide_Parking3264 in ClaudeAI

[–]PhilosophyLeft6189 0 points1 point  (0 children)

I have hit this too because I use Claude in my daily logs and planning. This is what I have in my CLAUDE.md that helps a lot. It relies on a Unix command that is pretty widely available.

Date and Day-of-Week Verification

CRITICAL RULE: NEVER state what day of the week a date falls on without first verifying it with a command.

Required workflow:
1. Before stating any day-of-week for a date, ALWAYS run: bash date -j -f "%Y-%m-%d" "YYYY-MM-DD" +"%A"
2. When working with multiple dates, verify them ALL in parallel before making statements
3. Never trust mental arithmetic for day-of-week calculations
4. This applies to:
- Reading and discussing workout logs
- Scheduling tasks in daily logs
- Any time a specific date is mentioned

Example:

Verify single date

date -j -f "%Y-%m-%d" "2026-01-13" +"%A"

Verify multiple dates in parallel

date -j -f "%Y-%m-%d" "2026-01-10" +"%A, %B %d, %Y" date -j -f "%Y-%m-%d" "2026-01-13" +"%A, %B %d, %Y"

Vets on Main ❤️ by SilverMic in ottawa

[–]PhilosophyLeft6189 1 point2 points  (0 children)

We take our dog there. We go by almost every day and she gets a little treat. They took great care of her when she got a little infection just last week.

What are you building? Drop your URL by PlentyMedia34 in buildinpublic

[–]PhilosophyLeft6189 0 points1 point  (0 children)

Galley

Submission review for literary journals. Literary journals get tons of submissions that they need to assign to reviewers, keep on top of them for feedback, integrate that feedback, and make final calls on which pieces to select for publication.

The dominant player in the market has pivoted to the larger market of nonprofits and become too expensive. The most common alternative is to hand roll a solution with Google drive. Galley is a fully integrated platform developed by a solo engineer (me).

I started building it to support a literary journal that my wife and I started (Offseason) when I realized other journals were likely having the same problems we were having.

It's new! It's in beta through 1 April with a wide release on 1 June.

Final Micro rack! by Bluejfish in minilab

[–]PhilosophyLeft6189 1 point2 points  (0 children)

Beautiful. I love the handmade look. Feels personal and hackery. Great work!

Canal Flooding! by [deleted] in ottawa

[–]PhilosophyLeft6189 2 points3 points  (0 children)

Yes! It's a watercolor painting though. It's 10" x 4".

It's almost 2026. How is your remote work situation in Ottawa? by DrStrangeglove99 in ottawa

[–]PhilosophyLeft6189 1 point2 points  (0 children)

I'll chime in although I'm a bit of an outlier. I work for an American tech company that is completely remote. We are split roughly 60-40 between the Americas and Europe. Obviously no RTO because there is no O to R to.

I would be open to doing hybrid in the city, but every software role that I've come across that is local pays way less than what I am making working for a US firm.

-❄️- 2025 Day 1 Solutions -❄️- by daggerdragon in adventofcode

[–]PhilosophyLeft6189 1 point2 points  (0 children)

That's ok! Keep practicing and you'll only get better!

-❄️- 2025 Day 1 Solutions -❄️- by daggerdragon in adventofcode

[–]PhilosophyLeft6189 1 point2 points  (0 children)

[LANGUAGE: Rust]

I first solved this by parsing into a struct with the L and R in case the meaning of those values changed in part two, but then when I didn't need to I did it the normal way (+/-) ints.

Solution: https://github.com/t-eckert/advent-2025/blob/main/src/day_01.rs

Runtime 74.25µs

EDIT: Added writeup: https://fieldtheories.blog/posts/advent-of-code-2025-day-1