ChatGPT ‘Lobotomized’? Performance Crash Sees Users Leaving in Droves Community Center by Johannes C. …/4/7421f2d25c68fdee20e906d1ae1bfec9.jpg) Yes, complaints about ChatGPT being lazy have been around for as long as the LLM …community-center/op-ed/541218/yes-chatgpt-got-dumb-lazy-but-4-5-could-be-a-gamechanger). But what… said that GPT-4 “**[should now be much less lazy now](https://twitter.com/sama/status/1754172149378810118)**” (sic). … Re: Extracting values from capturing groups in regex Programming Software Development by Reverend Jim …] will return only ['236', 'Roy', 'Allyson'] The expression `.+?` does a lazy match (returns the shortest possible string that matches the pattern. Re: Extracting values from a regex match Programming Software Development by Reverend Jim The trick is to use lazy matching which matches the shortest possible string. html = '<tr … Re: Lazy Loading with a responsive script Programming Web Development by rproffitt I see line 28 calls out lazy so are you reporting it doesn't work? I won't breach into a discussion about what is lazy loading here but maybe you forget to tell the browser when to load the image. If so, read https://css-tricks.com/the-complete-guide-to-lazy-loading-images/ Lazy-ass multi-lingual spamming attacks Hardware and Software Information Security by newsguy … sabbatical. Unfortunately the spammers have gone multi-lingual in a lazy-ass automated kind of a way with great effect. Spam… reckon they know why, and it comes down to those lazy-ass spammers using automated translation services and templates to enable… Lazy Loading with a responsive script Programming Web Development by feehoy … too long and loading is slow.I need to implement lazy loading after the third image. How do I implement this…;author"]; $_SESSION['author'] = $author; echo "<img loading='lazy' src='{$row['file_source']}' alt'...' width='100%' />\n";?>… Lazy Susan Programming Software Development by greenman626 … how to write code for a right circular shift aka lazy susan. Its an array with 10 elements let me show… Re: Lazy Susan Programming Software Development by greenman626 … can be used as the basis for implementing a "lazy susan" type of application, such as cycling forwards or… Lazy script kid hackers responsible for automated web attacks Hardware and Software Information Security by happygeek New research shows that hackers are becoming increasingly lazy in their search for online exploits, with 98% of Remote … Re: Lazy Loading GAM Digital Media Digital Marketing by adtagmacros …defaults. googletag.pubads().enableLazyLoad(); // B) Enable without lazy fetching. Additional calls override previous // ones. googletag….pubads().enableLazyLoad({fetchMarginPercent: -1}); // C) Enable lazy loading with... googletag.pubads().enableLazyLoad({ // Fetch slots … Re: lazy form repainting Programming Software Development by zydaru i can't find what could be the problem...i downloaded the zip extracted it all on desktop clicked "Klculeste" and it works ( with the same lazy form repainting but it works). i don't know if it matters or not but my os is vista home premium and i created my project in visual studio 2008 professional edition .net framework 3.5 sp1 Re: Lazy FileDrop to Windows Explorer Programming Software Development by dougy83 … like it deals with exactly what I'm after for lazy load. I haven't got a chance to try it… Re: Lazy Questions Community Center Meta DaniWeb by ddanbe @decepticon @Reverend Jim Thanks guys! :o) Try to do my best. I consider this as a form of politeness towards others. Trying to be civilized in eh hmm civilized world. The "lazy" people out there (their, they're .. he, he) should also give it a try. Re: Lazy Loading GAM Digital Media Digital Marketing by Dani I want to add that, per the above setup, lazy load is working as expected. Re: Lazy Loading GAM Digital Media Digital Marketing by Dani Ah, thanks so much for the catch! I copied the code from the sample code at https://developers.google.com/doubleclick-gpt/samples/lazy-loading and didn't realize that they were repeating it multiple times for clarity and not for production. I'll fix it right now. Thanks! Re: Lazy Loading GAM Digital Media Digital Marketing by djibnet … it much easier to highlight code changes before/after ads lazy loading https://chrome.google.com/webstore/detail/view-rendered-source… Help me with Implementing Lazy Loading using Google Publisher Tag Digital Media Digital Marketing by usaidr20 …Enable with defaults. googletag.pubads().enableLazyLoad(); // B) Enable without lazy fetching. Additional calls override previous // ones. googletag.pubads().enableLazyLoad({fetchMarginPercent… mobileScaling: 2.0 }); // Register event handlers to observe lazy loading behavior. googletag.pubads().addEventListener('slotRequested', function(event) { … Every Website Needs a Resident Lazy-FAQ Community Center by sitefx …generation of search facilities a "lazy-faq". The users can be lazy because they can type a simple …trawling through the site, and the search bot is lazy because it doesn't fetch any data until the …to quickly find information without disrupting their navigation. "Lazy-faq" technology is well overdue in the current climate… Re: Help me with Implementing Lazy Loading using Google Publisher Tag Digital Media Digital Marketing by Dani I'm so sorry for not seeing this post until now. Unfortunately, I'm 3 months too late. Were you able to get this question answered? I struggled with the same thing last year and you can see my code at https://www.daniweb.com/digital-media/digital-marketing/threads/522735/lazy-loading-gam Shared Web Worker with Dedicated Web Worker as failover - Lazy Load Example Programming Web Development by jkon …an example of this for something common and useful , lazy loading images . It needs to be modified if you…jpg that is going to be the image to lazy load and a transparent1x1.png that is a …JavaScript Shared Web Worker with Dedicated Web Worker as failover - Lazy Loading Images example </title> <style> … Yes, ChatGPT Got Dumb & Lazy, but 4.5 Could Be a Gamechanger Community Center by Johannes C. …and lead us to the edge of AGI?** ![chatgpt-lazy.jpg](https://static.daniweb.com/attachments/4/b8e14034d1a6168c59a69dc79552f349.jpg) Last… the holidays… Whatever the exact reasons for ChatGPT's lazy responses and plain refusals are, with a shift in …Be the Year of AGI ## Yes, ChatGPT can be lazy these days, but that is no reason not to be… Re: Shared Web Worker with Dedicated Web Worker as failover - Lazy Load Example Programming Web Development by jkon … that solve the issue altogether. In my previous implementation of lazy loading I used data-src in the img tag and… Google indexed the final src after the lazy loading , but I am not sure that this is the… Object Factories with Lazy Loading in C# Programming Software Development by cyberjoe I'm looking for a lazy loading solution in c#. The idea is, to have a … be filled with their data from outside, and therefore many lazy loading solutions won't work here. Maybe anyone of you… Help the lazy Lad!!! Programming Software Development by goodmuyis Hello can anybody recommend a book for a lazy reader like me, I've try "Thinking in C++, Volume 1, 2nd Edition Bruce Eckel, President, MindView, Inc" but i find it difficut to understand the basic there. So can anybody recommend any simple book for lazy lad Re: Help the lazy Lad!!! Programming Software Development by Salem How lazy would that be? [URL="http://www.daniweb.com/forums/… times did you follow this link?[/URL] @ddanbe He's lazy, why recommend a book which has more pages that TIC… Re: Lazy Susan Programming Software Development by jon.kiparsky You want to print out and leave the original array unchanged? Use the modulus operator. for (i=0; i<10; i++) { print(array[i+offset] mod 10;} Sorry, that's a left shift. Modify appropriately for right shift - should be easy enough to do. Re: Lazy Susan Programming Software Development by NormR1 Can you explain the problem a bit more. Is it: You have an array of x items and want to move the items left or right n slots, wrapping around from the end back to the start of the array. Have you tried working out the logic for how to do this yet? Take a piece of paper and a pencil, draw the array and figure out how to move items and not lose any… Re: Lazy Susan Programming Software Development by NormR1 Is that the full text of your assignment? How is your design for the program coming? Re: Lazy Susan Programming Software Development by greenman626 [QUOTE=NormR1;1282007]Is that the full text of your assignment? How is your design for the program coming?[/QUOTE] That is the full text just missing a couple of more examples. Also the program is not coming good can you help me with it some how? Re: Lazy Susan Programming Software Development by greenman626 Array contents: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 Shift how many positions? 5 Array contents: 11 12 13 14 15 1 2 3 4 5 6 7 8 9 10 Shift how many positions? 2 Array contents: 9 10 11 12 13 14 15 1 2 3 4 5 6 7 8 Shift how many positions? 0 Array contents: 9 10 11 12 13 14 15 1 2 3 4 5 6 7 8 Shift…