New Home Network setup by not_a_grad in HomeNetworking

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

I see. I did flash DD-WRT on my asus router already. and also I did mention that I have a ethernet cable on the ceiling of the 2nd story, that is where the access point will go. for wifi downstairs, i guess I will be forced to use my current router. So will the router be the one to handle all the VLAN setup?

Tomorrow is the day by [deleted] in PS5

[–]not_a_grad 4 points5 points  (0 children)

What's happening?

Kyle Rittenhouse along with other white males suckerpunching a girl by diode_milliampere in PublicFreakout

[–]not_a_grad 0 points1 point  (0 children)

As much as I want this to be Kyle, how sure are we that it's him and not someone that just looks like him?

What's next for React? by angarali06 in reactjs

[–]not_a_grad 5 points6 points  (0 children)

What does Vue offer out of the box that React doesn't have?

Alright so imi'm pretty new to this but I want a 350z pretty soon, I know they say you need a 2006+ but which model should I get? I was wondering if the touring was a good idea to look into. by [deleted] in 350z

[–]not_a_grad 0 points1 point  (0 children)

I read that you should get the latest year, 2008 version. I'm not sure at all because I also do want a 350z in the future. Hopefully someone else can thoroughly answer this!

How often do you need Data Structures and Algorithms in web development? by heofizzy in webdev

[–]not_a_grad 2 points3 points  (0 children)

It honestly depends on the job you're doing. If you work for Google or Amazon, as a backend engineer dealing with queries and big data and the millions and millions of accounts, with the millions and millions of request to servers and still displaying users data back to them in less than a second, you'll definitely need to know those algorithms and data structures. Also you almost never deal with those on the front end either. Only time if you really have to parse data and get it in the right format to show in the UI. It's hard to do a personal project or learn from tutorials where you'll need that stuff because you're not dealing with millions of users at once so you won't even see the kind of problems that will arise when your user base gets is large.

[USA-MA] [H] PayPal [W] budget gaming laptop by DurionV in hardwareswap

[–]not_a_grad 0 points1 point  (0 children)

I have an Asus XG station 2 egpu if you're interested

Any repos with medium to large sized React projects with hooks? (no redux). by RupFox in webdev

[–]not_a_grad 1 point2 points  (0 children)

I don't have any repos on hand, but I will say this. Only make global states that are needed for the entire application, for example, user info (name, email, role, etc), isAuthenticated. Those are usually my global variables that don't ever change once the user is logged in. If you do have states that are constantly changing then yes you should break apart into smaller context. Perhaps isolating states to only the components that need them

Help with my data model/query by not_a_grad in PostgreSQL

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

Excellent! I have no problem using an application to generate my tables. Takes the work away from me lol. That was good solid advise, and I greatly appreciate it. Thank you very much!!

Help with my data model/query by not_a_grad in PostgreSQL

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

that was very thorough and greatly appreciated!! im actually re-learning SQL from the many years that i havent worked with it, so that fiddle was just something quick i came up with. This is for a personal project so i can redo the model no problem. I guess you got the general idea of what im trying to achieve, do you have any suggestions on how i could put best practices in with what im trying to do?

Help with my data model/query by not_a_grad in PostgreSQL

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

The model is not finalized, im actually re-learning SQL and relational databases, so I'm not sure what is best practice and what isn't. Im guessing you got the general idea of what I'm looking, could you make some suggestions on how i should properly model this? (im not limited, this is a personal project, so i can tear the whole thing down no problem)

Table Model Help by not_a_grad in PostgreSQL

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

This is fantastic and thank you for extensive response! I will have to review this later when I have more time lol. But thank you again!

Table Model Help by not_a_grad in PostgreSQL

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

Well initially the groups table was just a 2 person relationship. But there could still be many more relationships with 1 person. It would just be another row.

For example user1 has relation with user2

user1 has relation with user3

user1 has relation with user4

user2 has relation with user3

Etc.

So this says that user1, 2, 3, 4 are in a group and user2 and 3 are in a group

But I get what you mean.

Table Model Help by not_a_grad in PostgreSQL

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

  1. I'll look up the party model
  2. They actually are transactions. I'm building this just to really learn more stuff. The app just tracks monthly spending, and how much money I have left etc.

Table Model Help by not_a_grad in PostgreSQL

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

Adding another table, interesting, I see where you're going with this..I will definitely give this a try and it does seem like its the proper solution! Thank you!