Re: The Application of Greedy Algorithm in Computer Monitoring Software Hardware and Software by Dani > Maybe the tag system changed but in the past I could create a new tag if there wasn't one. Only non-newbie members can do that. Please visit our [tagging guidelines](https://www.daniweb.com/welcome/tagging). This is me venting Community Center Meta DaniWeb by Dani … DaniWeb long term. There have been many times over the past twenty years that I've looked back, and hindsight is…, on average, 700-1000 code check-ins annually for the past ten years. *Of course* I'm doing what I think… Re: This is me venting Community Center Meta DaniWeb by Dani …, interviews, etc.) complement the user-generated forum discussions. In the past, well over 50% of our gross revenue from advertising went… '30% of Activities Performed by Humans Could Be Automated with AI' Community Center by Johannes C. … previously unattainable when bogged down in administrative tasks. Just as past innovations like factories or computers inspired new human-centered progress… Re: Improve HAVING BY performance Programming Databases by toneewa …, I want to share my experience learning MySQL in the past day. I setup a server, a database, and wrote a… Re: How we can Choose an Awesome Mobile App Development Company? Programming Mobile Development by Mikekelvin …? Here's how to choose wisely: 1. Portfolio: Review their past projects for quality and diversity. 2. Client Testimonials: Check reviews… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … fake, perhaps @domain.fake) would fail to send. In the past, any email address (real or fake) could be submitted and… Re: How we can Choose an Awesome Mobile App Development Company? Programming Mobile Development by elite_mcommerce … requirements. 2. Next, explore portfolios and reviews to gauge their past work. 3. Assess their technical skills and teamwork. 4. Understand… Re: This is me venting Community Center Meta DaniWeb by Reverend Jim It's hard for me to imagine that all of the pleasure I've gotten out of Daniweb, the challenges, the insights, the friendships since I joined in 2010, are all dependent on the largesse of just one very talented person. I, for one, appreciate all you have done, particularly considering your current health issues. If you feel unappreciated then … Re: This is me venting Community Center Meta DaniWeb by Reverend Jim Also, in non-computing over the years I have heard comments like "if only I hadn't stopped for coffee I would have missed that accident, or several other variations. The thing is you never know what would have happened if you had made different decisions. Certainly making a different decision may have resulted in things being better. Or they … Re: This is me venting Community Center Meta DaniWeb by jkon Dani , yes I also believe that you are responsible for the decline of DaniWeb .... BUUUT that was many years ago. We all foreseen the decline of "forums" back in early 2010's , there were many alternatives of what to do , and I strongly believe that you choose the wrong one. I will not repeat what you did or what you could be done … Re: Slaying Unicorns: How Europe Sabotages Its Own Economic Future Community Center by Dani I'm happy to live in Silicon Valley :) Paris Olympics Ticket Information Chatbot with Memory Using LangChain Programming Computer Science by usmanmalik57 … the chatbot can respond to queries considering the past conversation. So, let's begin without further ado… will instantiate an empty list to store our past conversations. Next, we define the `generate_response_with_memory()` function… Conclusion A conversational chatbot keeps track of the past conversation. In this article, you saw how to… Slaying Unicorns: How Europe Sabotages Its Own Economic Future Community Center by Johannes C. … innovation in the last decade? Nokia’s heyday is long past, and Europe has since lost its innovative edge. Once the… and makes it extremely difficult for new companies to grow past a certain point. While I believe that [the social contract… How many users return to your site? Digital Media Digital Marketing by FarrisFahad …? Have you noticed stuff like this now or in the past? And what is the normal retention rate for a memes… Re: How many users return to your site? Digital Media Digital Marketing by Dani … your site. Mailing lists are a great way to keep past users engaged and coming back. Re: DomContentLoaded vs jQuery Ready fn Programming Web Development by toneewa … or stylesheets finish loading. Most browsers support this. In the past, ready() introduced a small delay. jQuery keeps consistent behavior across… Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani ….ini file. A lot of SMTP servers switched over the past year or so to using XOAuth2 for authentication. A username… Re: Which is the best SEO tool used to track exact ranking? Digital Media by WilliamOG In the past I used keyword.com Re: Where do you find the best friends? Community Center Geeks' Lounge by Dani I just came across this thread and thought I'd comment. I have had a really hard time making friends since moving to California. I work from home so I don't have coworkers, and my husband and I don't have children yet, so I'm not meeting other parents. Being super sick the past year really hasn't helped matters either. Re: Do you participate in any other communities? Community Center Geeks' Lounge by Dani … that he spent maybe 5 minutes on it over the past 5 years, so he lost interest, and it wasn't… Re: ASUS Laptops - my experience Hardware and Software by toneewa … in my PC rescue bag. I've seen in the past failures due to having more than 1 drive installed. Disconnect… Re: How many users return to your site? Digital Media Digital Marketing by Raajokiaa_Rtiu Bummer about the traffic drop. It happens, and yeah, TikTok's popularity might play a role. For memes, retention rates vary but aim for 20-40%. Check your analytics for insights. Re: How many users return to your site? Digital Media Digital Marketing by atrudeau Have you checked latest March core updated? G will have now a strong anti spam policy. Past Exam Question : Strings Programming Software Development by John Linux Past paper question from 2007: Source University of Cape Town - CSC2001F - … Past employee search Community Center Geeks' Lounge by 12obb I am looking for past employees of a particular company. I do not know their names but I do know the company EIN number. Is there any other way to find this information?:cheesy: Re: Past employee search Community Center Geeks' Lounge by 12obb … proof I cannot go to the police. I need a past employee to corroborate my story.[/COLOR] [COLOR=#000000] [/COLOR… Re: Past employee search Community Center Geeks' Lounge by Narue … proof I cannot go to the police. I need a past >employee to corroborate my story. Been watching too much… Re: Past Exam Question : Strings Programming Software Development by Ketsuekiame Not true. In the second if statement you are effectively performing a comparison of the pointer, not the content. The string comparison will, on the other hand, give you a comparison of the content. You could use [icode]std::lexicographical_compare[/icode] to compare a char array though. Re: Past Exam Question : Strings Programming Software Development by John Linux okay so if you're performing a comparison of the pointer then why does [code=C++] char *a = "Hello"; char *b = "Hello"; if(a == b) { cout << "EQUAL"; } [/code] and the output prints [CODE]EQUAL[/CODE] also writing: [CODE]cout << a[/CODE] prints out [CODE]Hello[/CODE]