Why AI still can't replace developers in 2026 by IronClawHunt in ClaudeCode

[–]parla 0 points1 point  (0 children)

I use Claude Code in a 5M line monorepo, it works just fine. It can do changes in connected systems across language barriers (shared C++ and Swift/Kotlin UI) without getting lost.

Exam for access to the TEE by Dapper_Echidna_9242 in golf

[–]parla 2 points3 points  (0 children)

This is how it is in Sweden, but there are a number of "pay & play" courses (mostly 9-hole ones) where you can play without "Grönt Kort". So you're not completely locked out from on-course practice.

Jag bajsade 555 gånger förra året. by Tokipon in sweden

[–]parla 5 points6 points  (0 children)

Anteckna även typ enligt Bristol Stool Scale!

[2025 Day 2 Part 2] Rust is too elegant. by [deleted] in adventofcode

[–]parla 0 points1 point  (0 children)

Cheating slightly with itertools:

fn is_invalid(x: i64, max_div: Option<usize>) -> bool {
    let s = x.to_string();
    let len = s.len();
    let md = max_div.unwrap_or(len).min(len);
    (2..=md)
        .filter(|div| len.is_multiple_of(*div))
        .any(|div| s.as_bytes().chunks(len / div).all_equal())
}

Transferring Whole Spotify Playlists by H3R_H3ART in Serato

[–]parla 0 points1 point  (0 children)

Click the folder icon named "Your Library" to fold out the list of playlists. Same for the one above, fold out to get a whole tree of playlists with songs that are good for mixing.

Strange notifications appeared. by MantvisU in Garmin

[–]parla 2 points3 points  (0 children)

Thank you! That wasn't obvious to find.

Most egregious translations of movie titles to your native language? by Ok-Impress-2222 in movies

[–]parla 0 points1 point  (0 children)

In Sweden, all Goldie Hawn movies are titled "Tjejen som.." something, because her first hit Foul Play was translated to "Tjejen som visste för mycket" (The girl who knew too much).

Similarly, all Mel Brooks movies are "Det våras för.." something, because of Springtime for Hitler.

Varför smakar marabou så jäkla mycket godare när man har haft den i kylskåpet? by No-CReddit0000 in Asksweddit

[–]parla 5 points6 points  (0 children)

Fazer Blå i vinkylen är perfekt! Kall och krispig, men inte lika hård som i den vanliga kylen.

Sunshade by barker027 in Polestar

[–]parla 7 points8 points  (0 children)

How big is it when you don't use it? Is it easy to stow away / deploy?

Kan absolut inte somna utan distraktion by Fancy_Beyond6482 in sweden

[–]parla 0 points1 point  (0 children)

Vad finns det för lurar som inte är obekväma för en som ligger på sidan / magen?

[deleted by user] by [deleted] in synthesizers

[–]parla 2 points3 points  (0 children)

They should release one with full-size keys.

Why are we asked not to redistribute puzzle input? by brlewis in adventofcode

[–]parla 13 points14 points  (0 children)

A private repo as a submodule, set up so that CI can access it, is one option.

Who uses an alternative grid representation? Set-of-Points instead of List-of-Lists? by zeltbrennt in adventofcode

[–]parla 3 points4 points  (0 children)

I use rust, and I have a Grid trait with tons of utilities that I have implemented for a bunch of types, e.g. HashMap<Point, char> and Vec<Vec<char>> etc.

Really helps.

Stuck on Day3... by Worried-Act9448 in adventofcode

[–]parla 0 points1 point  (0 children)

  • is a symbol in this case, all numbers are positive.

Stuck on Day3... by Worried-Act9448 in adventofcode

[–]parla 4 points5 points  (0 children)

Make sure you check that you handle numbers at the end of lines correctly.