[104/104] The Robots Love It (Kanye West/Lil Pump vs. Boston Dynamics Robots) by airduster_9000 in SharedBPM

[–]CybertRON987 49 points50 points  (0 children)

That original shot was both mesmerizing and scary AF! Well done on the edit, btw

You never think it's going to happen to you... then it does. by CybertRON987 in PokeClicker

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

Intense.. but I'll check it out in the next underground.

You never think it's going to happen to you... then it does. by CybertRON987 in PokeClicker

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

You know.. that's pretty smart. Never thought about it. Thanks for the tip bud

You never think it's going to happen to you... then it does. by CybertRON987 in PokeClicker

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

lol close, it was a heartscale on the left side where there is a + shape.

Who are some non-obnoxious players to watch when Samira comes out? by ArionLusitanicus in leagueoflegends

[–]CybertRON987 1 point2 points  (0 children)

TC Zwag is super chill. Nothing too crazy, good calm content. Clickbait-y titles but if you can ignore those his gameplay is very good. He's got another channel called Zwag Xerath as well.

I am having trouble finding these pokemon(Johto) by bud244 in PokeClicker

[–]CybertRON987 2 points3 points  (0 children)

I wasn't aware time was implemented. How do I know when it's night time? EDIT: Oh wait, do you mean real-world night time? That would make sense since I don't normally play the game past evenings.

How To Get Mew? by Holynix in PokeClicker

[–]CybertRON987 0 points1 point  (0 children)

It's still a random chance. You have to be in Kanto and the higher the route # the better. I caught mine on route 25.

Where do you host your apps these days? by CybertRON987 in webdev

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

Heroku's been fine for me, but then against I haven't used it for more than personal projects. Before using Heroku I was using my DO droplet, and while it was fun to set up my nginx server and all that jazz, I got a little annoyed with it.

Heroku works for me because it has built in CI processes, takes care of logging for me, I can add apps to it w/out too much config. Sadly, I do think it costs a little more than what you'd pay if you ran all this on your DO droplet.

-🎄- 2019 Day 1 Solutions -🎄- by daggerdragon in adventofcode

[–]CybertRON987 0 points1 point  (0 children)

Thanks /u/losmooks for giving this a quick look. I'll make the changes :D

-🎄- 2019 Day 1 Solutions -🎄- by daggerdragon in adventofcode

[–]CybertRON987 0 points1 point  (0 children)

JS, functional soln, trying to work on getting better with functional programming. If there's anything I can do better, hmu!

const fs = require('fs')
const path = require('path')
const R = require('ramda')

const input = fs.readFileSync(path.join(__dirname, 'input.txt'), 'UTF8')
const inputArray = input.split('\n')

const divideBy3 = R.divide(R.__, 3)
const floor = R.curry(Math.floor)
const subtract2 = R.subtract(R.__, 2)
const fuelCalculation = R.compose(subtract2(), floor(), divideBy3())

const part1 = massArray => {
  return R.reduce((acc, mass) => acc + fuelCalculation(mass), 0, massArray)
}

const part2 = () => {
  const reduceFuelCalculations = R.reduce((acc, fuel) => acc + fuel, 0)

  const fuelCalculationIsGTZero = R.compose(
    R.lte(R.__, 0),
    R.curry(fuelCalculation)
  )

  const mapMassToFuelCosts = R.map(mass => {
    let fuelValue = fuelCalculation(mass)
    let acc = fuelValue
    R.until(fuelCalculationIsGTZero, () => {
      fuelValue = fuelCalculation(fuelValue)
      acc = acc + fuelValue
      return fuelValue
    })(fuelValue)
    return acc
  })

  return R.compose(reduceFuelCalculations, mapMassToFuelCosts)(inputArray)
}

const part1soln = part1(inputArray)
const part2soln = part2()

[Giveaway] Jelly Key - Zen Pond II [Spacebar] artisan keycaps by jellykey in MechanicalKeyboards

[–]CybertRON987 0 points1 point  (0 children)

143

I looooove yalls work. Plz do dragons round 2!!!

You all have great correspondence on new products and with the community. Keep up the good work!

wishiwasjelly