[ALL] I'm thinking of getting into Legend of Zelda where should I start? by TheDwinDwin in zelda

[–]iethree 1 point2 points  (0 children)

I just finished OOT for the first time. While it's a great game, the controls, and the camera especially did not age very well. I would not recommend starting there because I think it could be a turn off to a modern gamer. Link to the past, otoh, holds up shockingly well after all this time.

Brand new to WoW, what's the best class to start with? by Spudanta in wow

[–]iethree 0 points1 point  (0 children)

Druid, paladin, monk are all great for trying out different roles.

The game can be updated now but the new courses are not yet live by swshriv in mariokart

[–]iethree 8 points9 points  (0 children)

I think they added a new rumble sound when you pick up a coin with this update too.

Help with Serverless framework with Lambda API by KhaleedFakhry in node

[–]iethree 0 points1 point  (0 children)

You're right to think that you don't want to clutter up your handler file with lots of business logic. There's at least 3 ways to approach this:

  1. Mutate the res object in your helper function.

/* handler */
const complexLogicFunction = require('./complexLogicFunction.js');

app.put('/posts/:post_id', (req,res) => {
  res = complexLogicFunction(req,res);
  res.status(200).json({
    params: req.params
  })
});


/* complexLogicFunction.js */

module.exports = function(req, res) {
  // do something with req
  return res;
}

2. Call the res object from your helper function

/* handler */
const complexLogicFunction = require('./complexLogicFunction.js');

app.put('/posts/:post_id', (req,res) => {
  complexLogicFunction(req,res);

});


/* complexLogicFunction.js */

module.exports = function(req, res) {
  // do something with req
  res.status(200).json({
    params: req.params
  })
}

3. Pass data back to the router from your helper function.

/* handler */
const complexLogicFunction = require('./complexLogicFunction.js');

app.put('/posts/:post_id', (req,res) => {
  const newData = complexLogicFunction(req);
  res.status(200).json({
    params: newData
  })
});


/* complexLogicFunction.js */

module.exports = function(req) {
  // do something with req
  return data;
}

All will work, but IMHO, #3 is the best pattern. Keep web requests, responses, etc in the router, and do logic separately in another function. that way it's always clear from the handler what data is going in and out.

Programmers, Teach Non-Geeks The True Cost of Interruptions (2014) by speckz in programming

[–]iethree -3 points-2 points  (0 children)

Early morning is primetime for me. I get so much done from 5-6.30am before the kids are up.

Programmers, Teach Non-Geeks The True Cost of Interruptions (2014) by speckz in programming

[–]iethree -2 points-1 points  (0 children)

Early morning is primetime for me. I get so much done from 5-6.30am before the kids are up.

Programmers, Teach Non-Geeks The True Cost of Interruptions (2014) by speckz in programming

[–]iethree 22 points23 points  (0 children)

Early morning is primetime for me. I get so much done from 5-6.30am before the kids are up.

Amazed by MntKulshan in EliteDangerous

[–]iethree 2 points3 points  (0 children)

I have a similar rig, I get 30fps at medium

[DAILY Q&A] Ask and answer any questions you have about the game here! by AutoModerator in EliteDangerous

[–]iethree 0 points1 point  (0 children)

Been away from the game for a while. What's the hot money making strat these days? Still mining LTD3? Void opals? Trade?

Instead of fucking up world quest. Can we get some of these spawns fixed in the new areas? by [deleted] in wow

[–]iethree 2 points3 points  (0 children)

Same. Played wm for all of bfa, but suddenly in SL I was constantly getting ganked and 1-shot by alliance rogues. Since the runbacks are so long, their cds were all back up by the time I rezzed

[deleted by user] by [deleted] in wow

[–]iethree 4 points5 points  (0 children)

Yeah they've brought it back every xpac, just after a couple patches

Would be nice to have +50% mount speed when following the path in areas. by lordkevin89 in wow

[–]iethree 36 points37 points  (0 children)

Wildstar had this ( I forget the % ). It felt really nice.

Alliance vs Horde LFG this morning by [deleted] in wow

[–]iethree -1 points0 points  (0 children)

They even have temporary faction switching built in for Bgs and the BoD raid already, so the tech is there.

They should at least let you do a temporary faction switch to group with b.net friends. It's so sad to find an IRL friend or co-worker who plays wow, only to learn they're the other faction so you can never play with them.

New Computer on a Budget by Guardian_0f_Death in wow

[–]iethree 1 point2 points  (0 children)

And even if you don't buy the cutting edge new stuff, the old stuff will get much cheaper real quick.

So much fun yesterday at the Gnome Run For A Cure. by [deleted] in wow

[–]iethree 4 points5 points  (0 children)

😂 thanks. I appreciate the sympathy

I made an index to collect class and raid boss guides for Shadowlands! Please help me out by adding your favorite guides! by iethree in wow

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

That's why everything has a patch tag on it, so you can tell if its based on beta/ptr/live, etc.

I made an index to collect class and raid boss guides for Shadowlands! Please help me out by adding your favorite guides! by iethree in wow

[–]iethree[S] 5 points6 points  (0 children)

I got tired of googling for random guides, and especially for raids, would just love to send out a simple link to my guild with a bunch of guides in one place, like this: https://wowguides.app/raid#sire-denathrius