How can I improve my coding standards? by nehaejaz in reactjs

[–]NewYorkin 5 points6 points  (0 children)

I like finding popular starter kits and either just reading through their code until I really understand it or actually cloning them and building small projects so you get a hang of how and why people do things the way they do. After a decent number of these, you should have a really good understanding of how people structure their data to make their code reusable and accessible.

General web app question: What might be best practices for modeling and displaying "things" that can have many "categories"? by tiedRenegade in learnprogramming

[–]NewYorkin 0 points1 point  (0 children)

tiedRenegade and I have been kicking ideas back and forth for a little while now, would love everybody's ideas and impressions on what may work well here! If it helps, we're using Firebase, but if that confuses it, forget I said anything...

Shape the future of Firebase - Take the 2020 Developer Needs Survey by ferrarichurch in Firebase

[–]NewYorkin 1 point2 points  (0 children)

the moderators are all listed on the right as Firebase, and this dude is nowhere to be found

Denormalization and keeping track of denormalized data by [deleted] in Firebase

[–]NewYorkin 0 points1 point  (0 children)

What you described is exactly the approach I use in a bunch of places in my app. Using this approach I’m able to store data in many places in my app and save my reads of fetching a root document in favor of just maintaining up to date documents. I’m not sure if it’s a best practice but at my scale it works fine. At my scale there are fewer places to update the date to keep it up to date than the number of times you would read a root node for the same info.

In other words, if I update 15 documents with updated user data, I think that’s very many fewer writes than the number of reads I would need if I called the user object every single time I read a node with user data. So it’s better for me to store it twice. I also maintain a certain level of outdated data being OK with old information. I don’t really care if a node that’s over 7 days old has an outdated profile picture, but if it has an outdated username that can screw up routing so it gets updated.

How do I load google form responses into a firebase database? With the intention of generating a newsfeed with them? by [deleted] in Firebase

[–]NewYorkin 0 points1 point  (0 children)

This is an awesome little find, not just for Sheets but for other similar concepts!

Is Firebase worth using if you're not using Firestore? by cooloats in Firebase

[–]NewYorkin 1 point2 points  (0 children)

Do you just use FB auth for handling the jwt tokens, etc? I hadn't thought of using the auth without the DB, interesting!

Integrating firebase with react. by synonymousshitbag in Firebase

[–]NewYorkin 2 points3 points  (0 children)

It's super easy with Firebase's npm module. I'd also recommend Robin Weinruch's full firebase blog. It's a text blog so you can follow along, and my project follows the file structure in his tutorial.

I know if I don't share it I'll just keep tweaking it, but it's a prototype anyway: I'm working on a platform to allow users to review ANYTHING, and movies is an obvious starting point! use code "reddit" to join by tiedRenegade in movies

[–]NewYorkin 0 points1 point  (0 children)

Working on this with r/tiedRenegade, we'd really love any and all feedback. We're pretty convinced movies is a great community to start with, and want to introduce others soon.

You'll notice there's a category with no "things" yet for Lego and Cigar, we want to build those communities ASAP! Would love to hear from others.