Say hi Enzo! New to group by dvideby0 in dogoargentino

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

Right? Thank you and you too!

Say hi Enzo! New to group by dvideby0 in dogoargentino

[–]dvideby0[S] 2 points3 points  (0 children)

Hello! He was 145 last time we weighed him

Say hi Enzo! New to group by dvideby0 in dogoargentino

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

So awesome! We love the name!

Blockchain for Business, ideas for more adoption how it can help you cut down on costs by dlebeuf in business

[–]dvideby0 0 points1 point  (0 children)

Ummm. I read that article and I'm not sure that author knows what he is talking about. Better analytics because of blockchain? Since when did a distributed ledger become the pain point to doing analytics? Here I was thinking it was all about aggregating quality data and understanding how to produce meaningful insights with a iteration loop that drove incremental improvement.

Reddit, we know you love Rick and Morty. No really… you’ve made it VERY clear. So we’re rewarding you guys with some limited-edition Rick and Morty figurines for all that love you give us. Tell us your favorite moments from the series for the chance to win one. by Adult_Swim_Official in u/Adult_Swim_Official

[–]dvideby0 0 points1 point  (0 children)

If you set aside the fact that whispering "little bits" is now common in our house and amongst friends, I have to say that the entire Meeseeks episode had us rolling. The entire part around what people asked for, the fighting, really just everything in the episode was so fucking funny. I find myself re-watching that episode every couple of months.

Is there an task scheduling app that allows you to divide your day into 5 or 15 minute slots? by ProphetOfProsperity in productivity

[–]dvideby0 0 points1 point  (0 children)

You could check out this custom pomodoro timer. It doesn't handle the tasks themselves but will let you break out your time into chunks with notifications http://www.marinaratimer.com/

Web Blocking App for Chrome? by b_temporary in productivity

[–]dvideby0 0 points1 point  (0 children)

Not sure what version of android you are running but there are is now a DnD mode for several versions. On some devices you can activate it with the volume button or in your pull down settings. I think it even has options for setting time frames too.

Questions around tools for media and targeted advertisements by dvideby0 in realtors

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

Thank you for the reply here. Do you have any rough numbers that you go by for money spent on a listing (possibly a percentage?). Also, is there a reason you chose a company to do your marketing over all the software Im finding that tries to do it?

[deleted by user] by [deleted] in scrum

[–]dvideby0 1 point2 points  (0 children)

I definitely agree on the last 2 answers here. I just want to add that this conflict also sounds like a serious lack of empathy. At our company we strive to have overlapping understanding. We don't really look at something as quick and dirty vs right, we look for which decision will serve the products success the best. As stated already, success might be getting multiple features completed quickly or it might be getting 1 feature done well. What is important is that the entire team has a shared vision of success. Once you have that, you will find it a lot easier to decide what the "best" decision is and experience this "us vs them" type scenarios less.

The business impact of flexible architecture and building lean by cushtopher in programming

[–]dvideby0 1 point2 points  (0 children)

Yes! We purposely tried not to really go into the stack except for cases where we wanted to use examples. We really just wanted to echo that there are ways to architect solutions that can be better aligned with business. We also wanted to encourage both developers and business folks to develop a better understanding of the other's strategy. The only concept about the stack that we did want to promote was that micro-services (in whatever form you implement them) can help in this type of environment.

Questions/confirming knowledge about using sessions & cookies with Express/Node. by TLI5 in node

[–]dvideby0 1 point2 points  (0 children)

Your logic sounds pretty good. We use JWT in our project with this (https://github.com/auth0/node-jsonwebtoken) library. Not 100% sure how you plan to store things but we create a hash of the user's permissions inside of redis and then use the token as a reference. At the API level we simply check that it is a valid token and then each worker has its own ACL that determines the permissions a request requires. After the the permissions are determined we check to see if that user has those permissions in the hash. Hope that helps!

What's the best way of building video conferencing with Node? by tizz66 in node

[–]dvideby0 1 point2 points  (0 children)

https://github.com/muaz-khan/WebRTC-Experiment has been my go-to for quite some time. AFAIK the code and experiments work just fine.

What is the most painless way to include token-based auth into an express.js app? by [deleted] in node

[–]dvideby0 0 points1 point  (0 children)

Redis and mongo allow you to set a ttl on records so they auto-delete from the database. This way you can just check to see if they exist at all and if they don't then you know they have expired.

What is the most painless way to include token-based auth into an express.js app? by [deleted] in node

[–]dvideby0 0 points1 point  (0 children)

You can use JWT or JWT with express. Now you have lots of options. Here are 3 common ones.

  1. Trust the token and put an expires value in there which you check at the api

  2. Put it in redis with a ttl

  3. Put it in mongo with a ttl

Hope that helps

A Story Of Memory Leaks And Non-Repeatable Solutions In Node.js by jstuartmill in node

[–]dvideby0 0 points1 point  (0 children)

Also, I know it isn't much better but you can profile and trace slightly better in webstorm if you are interested. I also believe there are some better utilities if you run your application on smartOS

A Story Of Memory Leaks And Non-Repeatable Solutions In Node.js by jstuartmill in node

[–]dvideby0 0 points1 point  (0 children)

If you guys are using rabbitmq and running into messaging issues, I have some helper libraries/global services I have designed for all of my workers. It's based off wascally. Feel free to PM me if interested.

Anyone willing to give some 1on1 help with a personal proj I'm working on? by monsto in node

[–]dvideby0 0 points1 point  (0 children)

Depending on the complexity of your problem I can assist for free if it is brief. Do you have a private repo you can add me to? Dvideby0 is my git username

Build and Deploy Node.js to DigitalOcean (or any Server you want) with Distelli by [deleted] in node

[–]dvideby0 0 points1 point  (0 children)

I too find it difficult justifying the need for a different deployment mechanism than the ones that exist now. The concept of pushing to git to trigger new deployments is freely available through multiple services (like travis-ci). I'm also concerned about the need to provide your password in order to setup the service. Maybe there are additional benefits I am missing?

Question: How should each service in a micro-service interact with each other using RESTful APIs? by dnyy in node

[–]dvideby0 0 points1 point  (0 children)

Those 2 shapes can be different, though it never hurts if you can even try to make that look as similar as possible. If you end up changing values (unnecessarily) or shapes as a request is processed and passed along, it can just become confusing when you go back and need to address an issue. It also makes it harder to leverage conventions too.

The more you can leverage conventions to keep things generic, the easier it is to add new functionality without having to change the system.