Isn't StackOverflow open source?
Show HN: Open-source StackOverflow-like service
11–20 of 51 posts
Re: Show HN: Open-source StackOverflow-like service
#12Isn't StackOverflow open source?
Re: Show HN: Open-source StackOverflow-like service
#13Kudos for effort, but for the life of me I cannot understand why the hell is "load empty shell of a page and then asynchronously fetch bits and pieces of content, ruining the UI along the way" is so prevalent these days.
A common optimization would be to preload the served javascript with the initial AJAX results. This still means rendering the content on the client side, but the content isn't fetched asynchronously. Another optimization is to actually render all the DOM elements in advance on the server, and only use client side rendering for updates.
Re: Show HN: Open-source StackOverflow-like service
#14Re: Show HN: Open-source StackOverflow-like service
#15Isn't StackOverflow open source?
Re: Show HN: Open-source StackOverflow-like service
#16Kudos for effort, but for the life of me I cannot understand why the hell is "load empty shell of a page and then asynchronously fetch bits and pieces of content, ruining the UI along the way" is so prevalent these days.
Re: Show HN: Open-source StackOverflow-like service
#17Re: Show HN: Open-source StackOverflow-like service
#18Kudos for effort, but for the life of me I cannot understand why the hell is "load empty shell of a page and then asynchronously fetch bits and pieces of content, ruining the UI along the way" is so prevalent these days.
That's how a basic angular.js app with client side templating works if it has to fetch the the data from the server using AJAX calls. A common optimization would be to preload the served javascript with the initial AJAX results. This still means rendering the content on the client side, but the content isn't fetched asynchronously. Another optimization is to actually render all the DOM elements in advance on the serv…
Re: Show HN: Open-source StackOverflow-like service
#19Kudos for effort, but for the life of me I cannot understand why the hell is "load empty shell of a page and then asynchronously fetch bits and pieces of content, ruining the UI along the way" is so prevalent these days.