I’m live streaming my Fullstack Web Dev learning journey via @YouTube https://t.co/387G2u6yI1
Working through this 0 to Production video by @theo
Happy coding and learning!!
As the figure illustrates: as the input (n) gets really big, any algorithm that is in the red zone: O(n!), O(2^n), O(n^2), will take way longer than any algorithm in the dark yellow: O(n * log n). The same for the others: yellow: O(n) takes longer than light green: O(log n), O(1)
#technicalinterview#ComputationalComplexity:
- Time complexity
- Space complexity
Something that was not obvious to me when I first learned about time complexity was that the worst case time determines the time complexity, not the average time.
@austinbelcak Since I am getting value from your work, I wanted to share some feedback that hopefully will improve the UX to your readers and future clients!
Hey @austinbelcak, I'm getting value from your website: https://t.co/7y0vNYmOHB. Here are some #UI things I noticed that if changed, would improve the #UX.
A screen capture of the jarring reading experience.
Here is another UI issue I noticed with the z-index of the carousel. The z-index is too high on the buttons. Just make them less than the z-index for the dropdown mobile menu.
Struggling with #CORS and @vercel. No problem making the POST request on #local, but I haven't figured out configuring my @nextjs api endpoint to receive POST requests in #prod.
Learning about data fetching in @nextjs.
The question I have is when does it make sense to do the fetching or posting within a component vs within a module like a utility.
https://t.co/cLzbFI8y0C
Succeeded in adding storage upload and preview of photo.
Also added user collection to @Firebase Firestore on successful sign up of user with Firebase Auth using email and password.