Full Stack Twitter Clone - Part 2 - Pagination and Infinite Scroll

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

looking forward to part 3 with search and other fun!! thanks for this vid CJ!!

kylin
Автор

thanks for describing junior/mid level dev at end. I have issues asking questions after one bad internship experience so thanks for reminding me that asking questions is totally okay even at work (I know it's the obvious but still)!

kylin
Автор

Hi, cj. Really liking the tone and direction of the videos. They've really helped me in understanding java script. Especially the code Katas. Is there a way you could build stand alone websites? For example a production level React app or even angular application. Maybe a series on these?

justusbuyu
Автор

for the scrolling function i just found this :
function moreLoad() {
const {
scrollTop,
scrollHeight,
clientHeight
} = document.documentElement
if (scrollTop + scrollHeight >= clientHeight - 5) {
skip += limit
tweets()
}

}

n_fan
Автор

Thank u for this awesome video and series, I am waiting for long time this series and I also waiting for next video of this series

AbhishekKumar-mqtt
Автор

Which of these has the highest demand for junior developers with no experience?
1)”Front end dev”
2) “Wordpress dev”
3) “React dev”

sushispicelatte
Автор

hahaha ;p you keep saying ziet, its zeit, like german for time. pronounces more like tz-ai-t ;p
Wondefull followup on the first stream! :D I've actually used this technique including monk for a project, its works really nice.

ethanhermsey
Автор

Your streams and videos are awesome, looking forward to more meower content. checked out the deployed app, and for some reason the auto load don't work in chrome for me, only in firefox. Is this something about the chrome settings or is it the app?

Andreas-xbnj
Автор

How do I check if process.env.MONGODB_URI is connecting correctly to corresponding databse in mongdb atlas? I have the URL and tried to copy the steps with Zeit now V1, but the data from the database will not load in get method. I get "internal server error", however the get methods run on new Zeit One link when I run it.

Origamiztec
Автор

I'm struggling to get my app to work on the mlab server. I've followed each step in the coding train's video with CJ and all I'm getting when i open the server link now gives me is the full index.js text rather than just { message: 'Meower!' } and going to /mews is giving me a 404 error. I've tried using CJ's repo on github but i'm getting the same error. Any help would be much appreciated :)!

NomadJRG
Автор

hoping for React version of frontend later :D

kylin