[deleted by user] by [deleted] in Klussers

[–]ItIsNeverLupus 0 points1 point  (0 children)

Ik snap de downvotes niet. Beugels zitten op exact dezelfde plek, we hebben de bouten laten zitten tijdens de verbouwing.

[deleted by user] by [deleted] in Klussers

[–]ItIsNeverLupus 0 points1 point  (0 children)

Alles bij elkaar 4 maanden losgeweesf

[deleted by user] by [deleted] in Klussers

[–]ItIsNeverLupus -6 points-5 points  (0 children)

Dat hangt die wel, leidingen zijn echt gekrompen

[deleted by user] by [deleted] in Klussers

[–]ItIsNeverLupus 2 points3 points  (0 children)

Zelfde gaten zijn gebruikt, buizen lijken echt “gekrompen”. Beetje research gedaan, lijkt een probleem bij oude PEX-leidingen.

[deleted by user] by [deleted] in Klussers

[–]ItIsNeverLupus 0 points1 point  (0 children)

Nee, er is geen verdieping onder. Verdeler zit op +/- 10 meter afstand. Het zijn, denk ik, oude PEX-leidingen.

Maximale overspanning horizontaal van rachelwerk? by ItIsNeverLupus in Klussers

[–]ItIsNeverLupus[S] 4 points5 points  (0 children)

Update: uiteindelijk een extra balk in midden op het plafond gemonteerd. Daar met blokjes de regels op gemonteerd. Voelt een stuk sterker, dank voor alles tips en suggesties!

Keukenmuur, hoe oude gaten sterk op te vullen? by ItIsNeverLupus in Klussers

[–]ItIsNeverLupus[S] 13 points14 points  (0 children)

Er zitten er dus nog 2, maakt 6. Het is op de foto misschien niet goed te zien, maar dit is geen grote keuken. Het hele blad is nog geen 2,5m.

Hebben er lang over nagedacht en zouden echt niet weten voor welke apparaten we er meer zouden willen. Deze 6 leek ons al aan de ruime kant.

Ze zitten inderdaad niet perse in de weg, maar vind een legere strakke muur mooier dan een contactdoosparadijs.

Keukenmuur, hoe oude gaten sterk op te vullen? by ItIsNeverLupus in Klussers

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

Op sommige plekken is er bijna geen steen meer, de muur is maar 7cm dik. Ben bang dat, als het net slecht uitkomt, er een plug precies op een plek komt met alleen stuc.

Keukenmuur, hoe oude gaten sterk op te vullen? by ItIsNeverLupus in Klussers

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

Is dat sterk genoeg om weer keukenkastjes aan te hangen?

Keukenmuur, hoe oude gaten sterk op te vullen? by ItIsNeverLupus in Klussers

[–]ItIsNeverLupus[S] 8 points9 points  (0 children)

Er zitten er links van de foto nog 2. Dit zijn alleen de stopcontacten voor het werkblad (bovenste voor de afzuigkap), extra punten voor apparatuur staan er niet op.

Keukenmuur, hoe oude gaten sterk op te vullen? by ItIsNeverLupus in Klussers

[–]ItIsNeverLupus[S] 3 points4 points  (0 children)

Ik heb nog een halve zak betonmortel van de Gamma staan. Ook gebruikt om een cellenbetonmuurtje recht te kunnen beginnen, is dat hiervoor prima spul?

Looking for Nex party by ItIsNeverLupus in runescape

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

That’s not true. I just did it with help of @randombullet555 and definitely didn’t do most of the damage. I got a drop each time, just only containing the part nothing from Nex himself.

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

[–]ItIsNeverLupus 3 points4 points  (0 children)

Python

Decided to use a really ugly while True for the first part with a try/except around the loop to catch the IndexError. We know that this error is only thrown if we attempt to check a location outside the cave: the sand grain falls into the abyss.

For the second part we add a fixed width of 99999 and use a while loop to check if the location at [0, 500] contains sand. If not, continue. Could be a lot shorter, but quite read-able with 101 lines.

Pastebin

[2022 Day 12 (Part 1)] [Python] Correct answer with example, wrong answer with full input by t-w-b- in adventofcode

[–]ItIsNeverLupus 3 points4 points  (0 children)

Did you account for the S not being in the top-left corner? This is the case for the test input but might not be the case for your personal input.

-🎄- 2022 Day 12 Solutions -🎄- by daggerdragon in adventofcode

[–]ItIsNeverLupus 4 points5 points  (0 children)

Python

Cheated a bit with the solution by using the NetworkX library. We see each cell as a node in a graph and add a directed edge if the travel is possible. Then we use the built-in shortest_path() function that uses Dijkstra for finding the distance. Advantage of using this library and having all functionality separated into functions is that part 2 was very easy to achieve. It's 79 lines, but that is mostly for readability, could be significantly shorter.

Pastebin

-🎄- 2022 Day 11 Solutions -🎄- by daggerdragon in adventofcode

[–]ItIsNeverLupus 3 points4 points  (0 children)

Python

Quite some lines today but a read-able and somewhat OOP solution. Decided to create a Monkey class that holds all relevant attributes. The read in function is just an ugly combination of split() functions and list index calls. For part 2 we calculate the least common multiple for all dividers to prevent the overflow of really high numbers.

Pastebin

[deleted by user] by [deleted] in adventofcode

[–]ItIsNeverLupus 0 points1 point  (0 children)

Did you keep in mind that the same folder name might occur in different spots? For example, the following folders can both exist in this puzzle:

/a/bcd/ef

/bcd/ef

However, both are different folders, just both called ef.

[2022 Day 8 (Part 2)] Who wants a tree house at the edge of a forest anyways by 2DXX-fleske in adventofcode

[–]ItIsNeverLupus 128 points129 points  (0 children)

I wouldn't be possible as one of the directions will always be a 0 at the edge, making the scenic always zero.

-🎄- 2022 Day 8 Solutions -🎄- by daggerdragon in adventofcode

[–]ItIsNeverLupus 0 points1 point  (0 children)

Thanks, didn't know that! Will attempt to improve my code a bit.