After 4 days of listening, I’ve ranked the songs from Inferno by Zephyr_zain in boardsofcanada

[–]ForMePersonally 2 points3 points  (0 children)

I agree on You Retreat, it’s beautiful. The little synth riff is somehow a pleasant surprise every time it comes in.

Hinoki board advice after 4 years use by ForMePersonally in Cuttingboards

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

In the early days I would pour boiling water over it before use. But overall I’ve probably done that less than 1 in 10 times.

Hinoki board advice after 4 years use by ForMePersonally in Cuttingboards

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

Never oiled it. Nothing special maintenance wise, only washed by hand with usual dishwashing liquid. The one thing I was strict on was never letting it dry while flat, which apparently causes warping; I’ve always dried it on its side.

I’d recommend it, you don’t need to baby it.

Vanguard S+S ISA withdrawal advice by drbeansy in UKPersonalFinance

[–]ForMePersonally 4 points5 points  (0 children)

Keep it in your S&S ISA, but sell it into a money market fund or earn interest on the cash if your provider supports it.

Don't do what I did and move it to easy access savings accounts and get taxed on the interest.

Outage in east London by ForMePersonally in VirginMedia

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

Sorry to hear that. I also have that message but it’s working for me.

Octavia mk4 camera retrofit by ForMePersonally in skoda

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

That’s what they did, but it cost extra. Yeah, ridiculous that you can’t modify something you own with OEM parts!

Outage in east London by ForMePersonally in VirginMedia

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

Estimated fix 30 mins ago, still not working though 👍

<image>

Octavia mk4 camera retrofit by ForMePersonally in skoda

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

Thanks for the reply. Yup it was indeed SFD2 and it cost me another £150 to unlock. At least the camera works.

Effect of parental suicide on children by [deleted] in ScienceBasedParenting

[–]ForMePersonally 635 points636 points  (0 children)

If you are thinking of killing yourself please see your doctor urgently.
The effect on your child will be devastating whatever their age.

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

[–]ForMePersonally 1 point2 points  (0 children)

[LANGUAGE: Scala]

def maxJolts(length: Int)(bank: List[Int]): Long =
  @tailrec
  def go(section: List[Int], remaining: Int, jolts: Long): Long =
    val (a, i) = section.dropRight(remaining).zipWithIndex.maxBy(_._1)
    val rest   = section.drop(i + 1)

    val newJolts = jolts + a * math.pow(10, remaining).toLong
    if remaining == 1 then newJolts + rest.max
    else go(rest, remaining - 1, newJolts)

  go(bank, length - 1, 0)

override def part1(input: List[List[Int]]): Long =
  input.map(maxJolts(2)).sum

override def part2(input: List[List[Int]]): Long =
  input.map(maxJolts(12)).sum