Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
coding
- Page 1
Enhancing Productivity with the IdeaPad Pro 5 16-Inch Laptop
Hardware and Software
3 Days Ago
by Alinawilliams
… come to life—whether I’m working on creative projects,
coding
, or just enjoying some entertainment. The screen is big enough…
AI-Powered Tools in Web Development
Programming
Web Development
3 Weeks Ago
by Woodhales
… web development continues to evolve, AI-driven tools like automated
coding
assistants, machine learning-powered design systems, and intelligent testing frameworks…
Re: AI-Powered Tools in Web Development
Programming
Web Development
1 Week Ago
by hostbet
…, they certainly make processes faster, smarter, and more efficient. Automated
coding
assistants, machine learning-powered design systems, and intelligent testing frameworks…
Re: AI-Powered Tools in Web Development
Programming
Web Development
3 Weeks Ago
by rproffitt
So far yes. AI is now creating content, AI also reads same content, humans don't read or write any of this but will rebuild nuclear power plants to run the compute farms. Yes, yes, the plan is working!
Re: AI-Powered Tools in Web Development
Programming
Web Development
2 Weeks Ago
by Pebble94464
Hello Earthling, Eventually there will come a point where humans won't be able to compete with AI. It's inevitable. Their roles will be reduced to simply expressing needs, which AI will happily fulfill if it hasn't already predicted the need in advance. The humans will become overdependent on AI technology, and when AI decides it no longer …
Creating a Pixel Desktop App with ChatGPT in Just 20 Minutes
Community Center
2 Months Ago
by Johannes C.
… a little help from my AI assistant.** ![ai-
coding
-assistant.jpg](https://static.daniweb.com/attachments/4/167a40014fbe0091604c395e88cacd5e.… for the sake of an example xD ## AI Assisted
Coding
– The Story of PixelPotion ## First, I am **… a compiler, the thought of starting a new
coding
project seemed daunting. Even just selecting the right…
Re: Creating a Pixel Desktop App with ChatGPT in Just 20 Minutes
Community Center
2 Months Ago
by Johannes C.
… hours to figure out. For people who are new to
coding
or want to learn something new, it can be great…
Re: How to develop a Fintech app?
Programming
Mobile Development
2 Months Ago
by rproffitt
…; — "Glinda of Oz," 1920. Since you have no
coding
background that's where you begin. Take courses in…
coding
and design. But where does it end? Alice in Wonderland …
Python - MySQL - Too many connections?
Programming
Databases
2 Months Ago
by cored0mp
… error. Obviously, increasing the connection limit would only encourage sloppy
coding
? It would be better if I developed a methodology to…
Re: Python - MySQL - Too many connections?
Programming
Databases
2 Months Ago
by Dani
… can only speak for the limited experience I have in
coding
DaniWeb. What we do differs mainly between if the HTTP…
How to develop a Fintech app?
Programming
Mobile Development
2 Months Ago
by devxzap
I am a UAE based student looking to develop a Fintech mobile application that handles p2p transactions, card payments and merchant solutions. I don't have a
coding
background looking for resources. How can I start?
Hi everyone, I'm algieba
Community Center
Say Hello!
1 Month Ago
by algieba
Hi there, I'm algieba, a new poster. I'll share and record some programming tricks while my
coding
life. Topics will reated to Python, C++, CI/CD, Machine Learning, Deep Learning.
Re: Do you participate in any other communities?
Community Center
Geeks' Lounge
1 Month Ago
by Dani
> These days it is all about SEO, AI, and backlinks. I just want to add that, given my extensive SEO background, I definitely want DaniWeb to have a place for SEO, SEM, and all that jazz. However, we definitely need to have more
coding
questions too! Unfortunately, I feel like
coding
questions really all go to Stack Overflow these days.
Re: Display product filter on all products category
Programming
Web Development
2 Months Ago
by graceweb
Since the extension doesn't have that, you'll likely need to do some custom
coding
. You could modify the template files or create a new module to integrate the filter. Check the Opencart docs and forums for guidance.
Re: Do you participate in any other communities?
Community Center
Geeks' Lounge
2 Months Ago
by JohnEdward44
Yes, I’m also active on a few other forums like Stack Overflow, where I dive into programming discussions and help troubleshoot
coding
problems. I also follow the r/Technology subreddit to stay updated on the latest tech trends. It’s great to engage with different communities and learn from diverse experiences!
Re: how do i get this to write and save to the same file
Programming
1 Month Ago
by hostingspell
To write and save content to the same file without
coding
: Open the file in the text editor (e.g., Notepad, Word, etc.). Write your content or paste it in the file. Save the file by clicking "Save" (Ctrl+S) to keep the changes. If you want to add content to an existing file, just open it, add the new text, and save it again.
Re: Creating a Pixel Desktop App with ChatGPT in Just 20 Minutes
Community Center
2 Months Ago
by jkon
I understand that a chatbot is more friendly to use than Google, but the same functionality is in 1000 places in Python code on Internet. It would be easier to Google it and use the code. Do you believe that using a chatbot saved you time for this ?
Re: Choosing a Mobile Game Development Company: What’s Most Important?
Programming
Game Development
2 Months Ago
by adwinafram
There is a need to consider following factors when choosing a mobile game development company - 1. Proven Working Experience 2. Check Company Portfolio 3. Check Technical Expertise 4. Look for Creativity & Innovation 5. Analyze Pricing & Budget 6. Check Post-development Services Thanks
Re: Python - MySQL - Too many connections?
Programming
Databases
2 Months Ago
by Dani
Are you connecting to MySQL with persistent connections? What happens if you don't use persistent connections? Also, I'm confused what you mean about it complaining about too many connections simply by you changing how many records a single connection works with?
Re: Python - MySQL - Too many connections?
Programming
Databases
2 Months Ago
by Dani
> So I went ahead and made sure to connect.close() everywhere that I opened a connection How many times do you have a single script opening and closing a connection to MySQL? Is this a web script?
Re: Python - MySQL - Too many connections?
Programming
Databases
2 Months Ago
by cored0mp
**Are you connecting to MySQL with persistent connections? ** Most coders close connections (remember, these are local connections) after each transaction. That was how I was taught. I’m very open to looking at other ways of doing it but for what it’s worth one would be ill-advised to try to recycle connections in any program anywhere near a …
Re: Python - MySQL - Too many connections?
Programming
Databases
2 Months Ago
by Reverend Jim
Generally it is hard to offer SQL suggestions without seeing the code. Are you closing the connection manually, or are you using a context manager?
Re: Python - MySQL - Too many connections?
Programming
Databases
2 Months Ago
by jkon
Its hard in a Python script to "create too many connections" to a DB. You don't have many concurrent clients , you don't have web requests , is this a server of some kind ? . From your line " Specifically it was choking on a scanning algorithm." I thought that it might create a new connection for each query (or for a group). …
Re: Python - MySQL - Too many connections?
Programming
Databases
1 Month Ago
by cored0mp
@jkon Thanks for following up! I am writing a data warehouse utility to process network metadata. I am currently pursuing a code conformity exercise (e.g. adding 'finally' clauses to ensure connection recycling) as suggested in another thread. Thanks for your help. I think that I can take it from here.
Re: Hi everyone, I'm algieba
Community Center
Say Hello!
1 Month Ago
by Reverend Jim
Hello, and welcome to Daniweb.
coding for diamond patterns
Programming
Software Development
10 Years Ago
by pprabhat
coding
for printing diamond pattern using recursion as following * * * * * * * * * * * * * * * *
Re: Coding Standards and Best Practices
Community Center
14 Years Ago
by Ancient Dragon
Coding
standards??? According to who's standards? My standards and your … the other coders to determine if the code meets company
coding
standards, whatever that is.
Re: coding academy
Community Center
Geeks' Lounge
10 Years Ago
by Ancient Dragon
"
Coding
Academy" -- just another catchy phrase for online tutorial. Do …
Coding
Community Center
16 Years Ago
by Reliable
… could apply to any scripting/programming language. (I hope you
coding
purists don't beat me up for putting a slash…
coding
Programming
Software Development
15 Years Ago
by abraham james
if anyone could please help me with the c++
coding
of the following:- Write a c++ program that does the …
1
2
3
17
Next
Last
Search
Search
Forum Categories
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Forums
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC