What are some underrated React JS best practices? Programming Software Development by James_228 …, tools, or even code snippets. Let’s build a solid thread of modern React wisdom! Re: Is linux your daily driver? Hardware and Software Linux and Unix by Dani I started this thread thinking about James, DaniWeb's sysadmin, who I was surprised to hear uses Windows as his daily driver, despite his proficiency in Linux. I believe he quoted things like Linux not being ideal for gaming. I'm macOS only these days. Re: Are we being played by AI? Let's Discuss! Community Center Meta DaniWeb by Reverend Jim …. The post I was referring to was >In this thread, let's dive into the exciting advancements in the world… Re: Are we being played by AI? Let's Discuss! Community Center Meta DaniWeb by Reverend Jim 1. I thought we didn't have "forums" anymore. 2. Perhaps the OP posted in the wrong place. 3. Regardless, it was clearly a discussion and not a question. It's moot since the thread has been deleted. Re: Are we being played by AI? Let's Discuss! Community Center Meta DaniWeb by Dani …. I don’t mean to drop the ball on this thread. What is the last website that you visited? Community Center Geeks' Lounge by Dani For me, it's a forum for forum owners called Forum Promotion, which gave me the idea to start this thread. Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani … and 30 days. (Some longer, some shorter) If a forum thread is 10 years old, and has not received a new… 9 years 10 months, we can feel comfortable caching that thread for non logged in users for a longer time, for… example, than a thread that is only a few days old. But yes, if… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani …;never mind" or something like that, making the entire thread useless for future visitors and disrespectful to the people who… discussing SXG seemed to be significantly off-topic for this thread. I am all for letting discussions flow and evolve naturally… of buried on the 2nd page of a lazy loading thread. Oh well. :-/ Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by jkon … loads many images at once on page entry, the main thread is busy, which delays above-the-fold content. Those delays… more time for the ATF content to stabilize (busy main thread) or even affect the total "Speed Index." We… Re: Show computer name on a label Programming Software Development by Dani … introduced in my code? Can you please start a new thread in the Meta DaniWeb forum explaining exactly what you were… operating system. I don’t really want to conflate this thread with debugging DaniWeb. Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Reverend Jim … to give kudos instead of reviving a multi-year old thread by adding a new post. Using the comment tool not…, it also gives points the the person who posted the thread you are commenting on. Re: How would we poison AI web crawls? Hardware and Software Information Security by Dani … the **** that was spewed in the first post of this thread is not any more sophisticated than those chain messages circulating… Re: How old is your computer? Hardware and Software by Reverend Jim I should also mention (as I detailed in another thread), my previous ASUS had to be returned for refund because … Re: Selling the house that I grew up Community Center Geeks' Lounge by Dani Why did you tag this thread 'gaming' and 'virtual-reality'? I changed the tag to finance, … Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by jkon … first user interaction (click or mouse move) when the main thread is not busy. Re: Odd but True Facts Community Center Geeks' Lounge by Dani I don't have an odd, yet true, fact, but I felt the need to post here because I felt bad that this thread has not seen any replies. Re: Browsers, - auto-fill passwords Hardware and Software Networking by Dani This is a very old thread, but I feel the need to clarify that it is definitely not plain text. Re: How does Lazy Loading differ from traditional loading techniques? Programming Web Development by Salem How about engaging with the responders on your other thread with basically the same topic? https://www.daniweb.com/programming/web-development/threads/543080/how-to-implement-lazy-loading-for-faster-web-portals Re: Show computer name on a label Programming Software Development by Mr.M [Here is my code](Post in thread 'get computer name' https://www.tek-tips.com/threads/get-computer-name.1229373/post-4473307) Re: Hello Everyone, I'm Ray Brad Programming Software Development by Dani …').) Sorry, I just saw this now. Please [start a new thread](https://www.daniweb.com/community/contribute/2/javascript) if this… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by jkon … discussing SXG seemed to be significantly off-topic for this thread. Additionally, the fact that Lighthouse audit results are an efficient… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by jkon …;never mind" or something like that, making the entire thread useless for future visitors and disrespectful to the people who… Re: What is the last website that you visited? Community Center Geeks' Lounge by rproffitt Because of events at The White House I had to update some contacts so I was at https://www.house.gov/representatives/find-your-representative Re: What is the last website that you visited? Community Center Geeks' Lounge by MasoodDidThat The last website? Probably a "[how to be productive](https://www.atlassian.com/blog/productivity/simple-ways-to-be-productive-at-work)" guide—ironically left unread. Re: What is the last website that you visited? Community Center Geeks' Lounge by Reverend Jim Selected comics at [gocomics](https://www.gocomics.com/). These days I need to start my day with a smile. Re: What is the last website that you visited? Community Center Geeks' Lounge by Heatman The last website I visited was Admin-junkies.com. It's another website that's simple and similar to Forum Promotion. I'm also a staff on the forum too. It's a good place to be in. Re: What is the last website that you visited? Community Center Geeks' Lounge by cpvr Administrata was the last website that I visited. It’s an online community for forum owners and webmasters. Re: Thread synchronization. Programming Computer Science by Yerbantherack Thread A prints and sends a message to thread B. Thread B prints and then sends a message to thread A. Any thread before printing checks for the message from other thread and prints only if they have received the message. Re: thread Programming Software Development by Narue … void exit(DWORD exitCode) { ExitThread(exitCode); } public: thread(HANDLE thread, DWORD timeout): _thread(thread), _timeout(timeout) {} ~thread() { CloseHandle(_thread); } DWORD exit_code() const { DWORD exitCode… thread Programming Software Development by SDH1 …lt;iostream> #include <windows.h> class Thread { public: Thread(); static void * EntryPoint(void*); int Start(); int Run(int… a){Arg_ = a;} private: int Arg_; }; Thread::Thread() {} void * Thread::EntryPoint(void * pthis) { Thread * pt = (Thread*)pthis; pt->Run( pt->Arg() );…