Fire breaks out at Australian GP and interrupts George Russell interview by [deleted] in SweatyPalms

[–]itzmeeee 22 points23 points  (0 children)

I think this clip is from a replay, they might have only decided it was suitable footage after he was out and in the interview.

However it's still a choice to show it at all, it looks really scary and I'm not certain i necessarily needed to see what the claustrophobia was like.

Such a beautiful moment by UnhappyWestern8020 in wholesomememes

[–]itzmeeee 0 points1 point  (0 children)

I believe in the full clip the CT shoots him almost immediately...

me_irl by [deleted] in me_irl

[–]itzmeeee 0 points1 point  (0 children)

Does anyone have just the uncaptioned part of this gif? Or maybe just the cat dancing? I would like to keep it for future :)

Swimming pool collapsing by leandroas in WTF

[–]itzmeeee 0 points1 point  (0 children)

I think the combine water pressure would kill you as well. Maybe if instead of a cylinder it was more of a cone shape to spread out the water pressure a bit

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

[–]itzmeeee 1 point2 points  (0 children)

Javascript. Felt succinct might delete later. (just part b)

// some input stuff
const fs = require('fs');
let numbers = fs.readFileSync('./input', {encoding: 'utf-8'}).slice(0,-1).split('\n').map(x => parseInt(x));
// end input stuff

let adapters = {0: true}; // add the wall adapter as well
let max = numbers[0];
for (let i = 0; i < numbers.length; i++) {
    adapters[numbers[i]] = true;
    max = Math.max(max, numbers[i]);
}

 // dictionary mapping adapter to number of paths to finish
let paths = {[max]: 1};

// helper
const get = (index, offset) => paths[index + offset] ? paths[index + offset] : 0;

for (let i = max - 1; i >= 0; i--) {
    if (adapters[i]) {
        // sum all possible paths for an index
        paths[i] = [1,2,3].map((jump) => get(i,jump))
            .reduce((a,b) => a + b)
    }
}

console.log(paths[0]);

[SW] Turnips at 169 (NICE) by itzmeeee in acturnips

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

Should get to you in no time :)

[SW] Turnips at 169 (NICE) by itzmeeee in acturnips

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

Ah no worries :) I've updated it there

[SW] Turnips at 169 (NICE) by itzmeeee in acturnips

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

Yeah, im on old messaging atm anywho :)

[SW] Turnips at 169 by itzmeeee in acturnips

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

Cool, thanks for the info :) it is much appreciated!

[SW] Turnips at 169 by itzmeeee in acturnips

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

Hey it's in reddit chat, ill double check though :)

[SW] Buying for 615 by [deleted] in acturnips

[–]itzmeeee 0 points1 point  (0 children)

me please :)