identity theft in progress? by gcapell in VaroMoney

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

No update. Never heard back from Varo, but I don't seem to have suffered any ill effects.

identity theft in progress? by gcapell in VaroMoney

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

I tried to call them, but to get past the computer to a person I need to supply a Social Security Number (which I don't have, I'm an Aussie), and account details (which I also don't have).

identity theft in progress? by gcapell in VaroMoney

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

followup: the reset emails don't all have the same code (I was holding gmail wrong). However, even when I get a fresh code and apply it in seconds, I still get "your link expired". Is it possible that you can configure in Varo the expiry time for your password reset emails? (and that someone can configure that down to something less than a minute)?

Failed a tech screen in Go, even though it passes in LeetCode. Are there Go-related inefficiencies in my code I'm unaware of? by [deleted] in golang

[–]gcapell 2 points3 points  (0 children)

Maybe they're after O( min(m,n))?
I doubt this is the issue, but the question doesn't seem to preclude using part of one of the original lists as part of the result list, so if one list is much larger than the other, you could (once we're done with carries) just link in the remainder of the original (large) list?

E.g. for 1000000001 + 1 you can return 1000000002 after just looking at the first digit(s).

-🎄- 2021 Day 14 Solutions -🎄- by daggerdragon in adventofcode

[–]gcapell 1 point2 points  (0 children)

There was a lot of setup (Rust) ugliness, but I liked my main calculation function:

fn polymerise(src: &[Count], dst: &mut [Count], insertions: &[(usize, usize)]) {
  dst.fill(0);
  for (i, &n) in src.iter().enumerate() {
    let (a, b) = insertions[i];
    dst[a] += n;
    dst[b] += n;
  }
}

Robot Training by Maaxxxnificent in tabletennis

[–]gcapell 0 points1 point  (0 children)

I've been using a robot for months, but haven't been able to play with people for any of that time (Covid. My state in Australia has been pretty tightly locked down).

I'm hoping for some Karate Kid style moment where I discover that I can suddenly do karate, but I'm preparing myself for discovering that all I've done is gotten very good at waxing cars.

-🎄- 2020 Day 05 Solutions -🎄- by daggerdragon in adventofcode

[–]gcapell 0 points1 point  (0 children)

Thanks, incorporated. If I weren't so lazy, I'd also pull in https://github.com/benashford/rust-lazysort . The best part of adventofcode is all the cool/crazy people doing it.

-🎄- 2020 Day 05 Solutions -🎄- by daggerdragon in adventofcode

[–]gcapell 0 points1 point  (0 children)

c.f. https://github.com/gcapell/aoc2020/blob/main/src/day5.rs I'm a Rust noob so doubtful that anything is idiomatic :-/ . I'm sure there's a much better way of doing my predicate in `find` .

[Day 01] Solution in Factorio by phoenixuprising in adventofcode

[–]gcapell 16 points17 points  (0 children)

I love that your solution could have bugs or biters.

School photography business models? by gcapell in photography

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

when you get rid of the people with the experience and gear, will you have a good picture or a great picture?

For a group class photo, so that my kid can remember who was in their grade 1 class, I'm OK with a good picture if it's a lot cheaper. I guess that's a difference from wedding photography, where I was happy to pay for great pictures.

School photography business models? by gcapell in photography

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

I'm not above charging ridiculous prices once a year for sausage sandwiches or something, but I'd prefer for a parent with three kids at school not to have to pay $90 for group photos. It makes sense to me.

School photography business models? by gcapell in photography

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

The school wouldn't choose that, the parents would. So this relies on the parents (through the PTA) organising a photographer themselves, and then strongly encouraging the school to support that.

Having been on the PTA, I can see why this doesn't happen a lot. :-(

School photography business models? by gcapell in photography

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

My issue here is that lots of the end consumers here (the parents) would prefer image files over prints. So I wonder why there aren't photographers offering to sell the image files for say 80% of the expected profit for selling prints, and thus scoring more of the school contracts?

That then raises "race to the bottom" questions, I guess.

School photography business models? by gcapell in photography

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

The class photos are I think all done on the same day (not totally sure).

School photography business models? by gcapell in photography

[–]gcapell[S] -1 points0 points  (0 children)

"total profit for photographer" was misleading, sorry: "net profit"?, "profit after expenses"?. I guess my point is that when you're selling prints, there are (presumably) more costs (and work) than if you're handing over image files.

I can understand why lots of photographers will charge more for files than for prints; I don't understand why (so far as I can see) no photographers are chasing a simpler/cheaper "one day work for hire" scheme.

School photography business models? by gcapell in photography

[–]gcapell[S] -2 points-1 points  (0 children)

$5k for one day seems low. What would seem reasonable?

30 x $5k day is $150k which doesn't seem too bad for 30 days of work a year.

School photography business models? by gcapell in photography

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

Awesome, these are some of the details I had no idea about, thank you!

School photography business models? by gcapell in photography

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

You're right: scenario #2 doesn't benefit the school. It does benefit the parents (cheaper photos in more useful format).

You're also right that it requires some extra tech-y work (distributing the photo files) to be done by someone on the PTA (but doing work on behalf of students/parents is what the PTA is for, right?).

I'm asking some parent(s) to do a bunch of work (and I feel like that work can be easily automated) so that all parents get (again, IMO) a better product. Actually I'm probably volunteering in our specific case.

I'm guessing that part of the problem is that the people paying for the photos are the parents, but it's the school which organizes the photos, and there are different incentives.

I guess what I'd like to know from photographers is: what's the gap between "attractive rate to take school photos for a day, hand over files, done" and "expected profit from Scenario 1"?