Slaying Unicorns: How Europe Sabotages Its Own Economic Future Community Center by Johannes C. **With the decline of industry and post-colonial exploitation, Europe should aim to become a global leader in the tech and service industry. But as the EU increasingly complicates the process for startups to thrive, the economic outlook appears bleak.** If you've missed recent AI news, **[Claude Opus now outperforms GPT-4 in most areas](https://… Re: 88 Business-Growing Strategies Digital Media Digital Marketing by henrymorgan9522 A growth strategy is an organization's plan for overcoming current and future challenges to realize its goals for expansion. Examples of growth strategy goals include increasing market share and revenue, acquiring assets, and improving the organization's products or services. Devin Might Be Fake, Yet AI's Threat to Jobs Is Real. Community Center by Johannes C. **The creators of an automated software engineer tout their AI's capability to independently tackle complete coding projects, including actual tasks from Upwork. While skepticism is warranted regarding Devin's authenticity, the risk of AI displacing professionals across numerous fields is undeniable.** ![will-code-for-food.jpg](https://static.… Online subission forms not sending emails of submitted info Programming Web Development by david.tigner About a year ago, I had a similar issue except then system would crash after pressing Submit. The issue was caused because of PHP 8 incompatibility problems. However, got the coding to fix all of that and things worked good again and with PHP 8. But now something new is happening. Now, when Submit is pressed, system doesn't crash and goes to the … Claude 3 Opus Vs. Google Gemini Vs. GPT-4 for Zero-Shot Text Classification Programming Computer Science by usmanmalik57 On March 4, 2024, [Anthropic](https://www.anthropic.com/) launched the [Claude 3 family of large language models](https://www.anthropic.com/news/claude-3-family). Anthropic claimed that its Claude 3 Opus model outperforms GPT-4 on various benchmarks. Intrigued by Anthropic's claim, I performed a simple test to compare the performances of Claude … Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner I do not have access to the PHP error log nor do I know how to check to see if mail() is returning false. The coding I'm using has worked (e.g. sent email with submitted info) for 13 years and now stopped working. My URL/PHP provider, Ionos, claims it won't send because all recipient email addresses need to be authenticated and a new STMP PHPmailer… Re: A reliable way of detecting AI content? Hardware and Software Cloud-based Apps by jkon There are some apps that claim to detect AI Generated content and have paid APIs (e.g. GPTZero , Originality) , I haven't use them except of testing , I didn't had any good reason and furthermore the landscape is changing so fast that all the statistical patterns they might detect need better and better adjustment to work decently. We still can… 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. Re: What's up with XOAuth? Programming Web Development by pritaeas Correct, you can also use the MS Graph API to use SMTP, if you cannot get that lib of yours to work. E.g. https://github.com/microsoftgraph/msgraph-sdk-php Re: Improve HAVING BY performance Programming Databases by Reverend Jim I have a friend who spent the better part of a career doing SQL. I wrote up your question and sent it off to him. Just for sh!ts and giggles, he decided to feed it to ChatGPT first. He said that what he got back was what he would have written if he spent a lot of time researching. Here is what ChatGPT said... >Yes, you're correct that … Re: Improve HAVING BY performance Programming Databases by Dani I'll give you another example. I've been going to the doctor a lot lately. After each appointment, there is a long form summary of everything that was said, test results, interpretation of the test results, and next steps, all generally typed up by a medical student or resident. At the bottom it has my doctor's signature saying something along … Re: What's up with XOAuth? Programming Web Development by Dani For my particular use case, I use a PHP library called [Bounce Mail Handler](https://github.com/voku/PHPMailer-BMH) (formerly PHPMailer-BMH) that was last updated in 2019. It connects to the email server via SMTP using a username and password. I am trying to do the least amount of work possible to modify this library to connect via SMTP using … Re: ASUS Laptops - my experience Hardware and Software by toneewa Some information left out is the actual name/ model of laptop, hard drive, and whether or not it was visible in the BIOS. Some features may have a power saving mode or power plan, even software controls. Create a new power plan, go to high performance mode. Update drivers and BIOS. Inspecting the controller's connection to the motherboard and port,… Re: DomContentLoaded vs jQuery Ready fn Programming Web Development by jkon Of course I agree with toneewa and pritaeas but because it is an intresting topic I thought to share some thoughts to it. Given the fact that I load jQuery (in one minified file that contains also every JavaScript that this part of the app requires) I load it dynamically after DOMContentLoaded or onLoad in older browsers. e.g.: var … Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani The first thing I will say is never output `$_POST[]` content directly into the HTML without escaping it first. You are leaving yourself wide open to an HTML injection attack. Not only that, but you're also leaving yourself open to invalid HTML. All it takes is to wrap your user-sent variables with htmlspecialchars to make sure they're HTML-escaped… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim In your code where you write `mail($to,$subject,$message,$headers);` if you want to get error messages or "do something if it fails" you need to alter it a bit to something like: if(mail($to,$subject,$message,$headers)){ //if successful do something }else{ //if error do something else } //or… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner Re: Biiim's post, the coding you suggest to get error messages looks like something good to try and the PHP Mailer stuff looks the same as the generic code I got from Ionos. It sounds like all these methods are appearing favorable for solving the problem. This kind of troubleshooting can be very frustrating so thanks for your help. Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani I wonder if the problem is that your php mail() function is configured to use SMTP in your php.ini file. A lot of SMTP servers switched over the past year or so to using XOAuth2 for authentication. A username + password in your config settings will no longer suffice to establish a connection. You can see me complaining about it [here](https://www.… Use of the Word ‘Tapestry’ in Web News More Than Doubled Last Year Community Center by Johannes C. **Tracing AI-generated content in online news articles with corpus linguistics** ![tapestry-header.JPG](https://static.daniweb.com/attachments/4/c8a5b32abaf78b39bdcb75f328580e4a.JPG) *A query in the 'News on the Web' Corpus reveals that the use of the word 'tapestry' in online articles has more than doubled last year – from 3,085 instances in … Track Faces from Videos with Margins Using Deep Learning in Python Programming Computer Science by usmanmalik57 In this article, you will learn how to track faces within a video using the Python DeepFace library. Additionally, you'll discover how to include portions of the video background in face tracking by implementing custom methods that utilize the DeepFace library's `extract_faces()` method for face extraction. I explained how to extract faces from … Converting PDF Image to CSV Using Multimodal Google Gemini Pro Programming Computer Science by usmanmalik57 In this article, you will learn to use [Google Gemini Pro](https://blog.google/technology/ai/google-gemini-ai/), a state-of-the-art multimodal generative model, to extract information from PDF and convert it to CSV files. You will use a simple text prompt to tell Google Gemini Pro about the information you want to extract. This is a valuable skill … Extract Tabular Data from PDF Images using Hugging Face Table Transformer Programming Computer Science by usmanmalik57 In a previous article, I explained [how to extract tabular data from PDF image documents using Multimodal Google Gemini Pro](https://www.daniweb.com/programming/computer-science/tutorials/541449/pdf-image-table-extractor-web-app-with-google-gemini-pro-and-streamlit#post2296083). However, there are a couple of disadvantages with Google Gemini Pro. … How do you use LLM AI tools in your daily programming workflow ? Community Center by jkon I am curious how other programmers that I have no interaction with in this subject , are using LLM AI tools in their daily programming workflow. Although I use them I have an issue recommending them to others in my company because I believe you have to have a certain amount of experience to understand the B..S.. parts from the real useful ones.… Re: How Much Does It Cost To Hire A Blockchain Developer? Programming Web Development by vexanshop Experience Level: Junior Developers: $50,000 to $80,000 per year Mid-Level Developers: $80,000 to $120,000 per year Senior Developers: $120,000 to $200,000+ per year Hourly Rates: Junior Developers: $25 to $50 per hour Mid-Level Developers: $50 to $100 per hour Senior Developers: $100 to $200+ per hour Freelance Rates: Freelance rates may … Re: I need help with Twitter API v1.1 Programming Web Development by Dani OK, so I have some more time right now to explain in greater detail. When you post a tweet, you're app is basically acting on behalf of an end-user. Twitter, or X, or whatever they call themselves now, needs your end-user to go through the process of authenticating and then authorizing your app to tweet on their behalf ... kinda like Sign In with … Re: How to increase website traffic organically? Digital Media Digital Marketing Search Engine Strategies by Dani Organically means that the traffic came from Google's search results organically, as opposed to paid or sponsored with Google Ads, Facebook Ads, etc. With paid ads, you're pretty much on a hamster wheel constantly having to fund the beast to keep up your website's traffic levels. On the other hand, building traffic organically means figuring out… Re: JTABLE HEADER GROUP Programming Software Development by Jan_315 Hi, I have the same problem. Do you already know the solution? Thanks Re: JTABLE HEADER GROUP Programming Software Development by Jan_315 I have found it. These lines are necessary: private JTable table = new JTable( dm ) { protected JTableHeader createDefaultTableHeader() { return new EtsGroupableTableHeader(columnModel); } }; Re: Track Faces from Videos with Margins Using Deep Learning in Python Programming Computer Science by EdwardMatthew It's fantastic, I have read this article and it is super amazing. thankyou for the knowledge. Re: Fine-Tuning OpenAI Whisper Model for Audio Classification in PyTorch Programming Computer Science by habi_2 how to use the best_model.pt