Re: A reliable way of detecting AI content? Hardware and Software Cloud-based Apps by lucytaylor01 Copyleaks and AI Text Classifier are the popular tools for identifying your AI content. Re: Do backlinks to disallowed URLs help the domain overall? Digital Media Digital Marketing Search Engine Strategies by jkon Dani I have never seen in in that way , just two clarification questions if you would like. As I … Re: APIs and SDKs in a PHP project Programming Web Development by pritaeas > I am also using PHP procedural programming and I noticed that these SDKs use OOP. > Can someone help me make my first API call using an SDK? Do you understand OOP and can you write code using it? If so, continue to the next step. I'd advise against the other way around. Re: 'AI Is Expected to Transform the Role of Controllers & Analysts ' Community Center by Dani I think it’s much more authentic and useful to have direct quotes. Paraphrasing loses a lot in translation IMHO. Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by jprog1000 … froze. Can you tell me why? What is the proper way to handle creating a new ball upon collision and make… Re: ASUS Laptops - my experience Hardware and Software by Reverend Jim … that account in the cloud. At least that's the way it is supposed to work. Imagine buying house insurance and… Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by jprog1000 Hello, Thank you again so much! All your additions are clear, but it seems like whenever two balls collide, more than one ball is added to the arraylist and painted. Any way to have just one ball added to the panel for every collision? Have some kind of a toggle flag in paintcomponent? Regards '30% of Activities Performed by Humans Could Be Automated with AI' Community Center by Johannes C. … is your preferred definition of AGI? ## *Alexander De Ridder:* The way you need to look at AGI is simple. **Imagine tomorrow… 'AI Is Expected to Transform the Role of Controllers & Analysts ' Community Center by Johannes C. … the evolution of financial technologies, mentoring emerging professionals along the way. ![sandeep.jpg](https://static.daniweb.com/attachments/4/ae7576d693b18b05aec174cc44d18528.jpg… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner The way I see it is that the email address in question … but simply one with the correct @site.com ending. That way should slip "under the radar" and submitted info…'s email address would still display in the body. That way should be able to "have cake and eat it… Re: How to query database using variable and get all results not just one row Programming Web Development by Biiim …;'some_value'",$sql));var_dump($records);`? run the sql on whichever way you use to access your DB directly I don't…'m not too familiar on how it returns results, either way you will know which part is faulty after you do… Re: Improve HAVING BY performance Programming Databases by toneewa … execution time: 0.0010317 seconds Benchmarking your queries is the way to go. Re: Improve HAVING BY performance Programming Databases by Dani … point. If you’re fetching different data, there’s no way of saying whether where or having is faster. You would… Re: Do you participate in any other communities? Community Center Geeks' Lounge by Salem Yeah, there are sub-reddits for most languages and programming in general. I'm spending way too much time in https://www.reddit.com/r/C_Programming/ for example. There's the usual collection of helpful people, pedants, trolls and idiots - but that's true anywhere. The mods seem to be keeping it ticking over nicely. Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani … you're telling PHP to look. Do you have any way of accessing the error log? Without access to the server… Re: Determine if email address is used by scammer Digital Media Digital Marketing Search Engine Strategies by Dani There is no way of determining the owner of an email address, especially from … Re: This is me venting Community Center Meta DaniWeb by Dani … turned into a fulltime promotion and there was just no way I was able to compete with what they were paying… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … sending as during some testing I discovered there was a way for the submitted info to be sent. Here it is… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … me, this scenario seems ridiculous and obviously there is a way for online submission pages to send submitted info without the… Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani … Reply-To: email address, that can be any email. This way, when someone clicks on the Reply button from their email… Re: What's the most unexpected hobby or interest you have outside of coding? Community Center Geeks' Lounge by Dani …. But I've just personally found that that the only way to drive that type of communication has been to have… Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by toneewa Some minor syntax fixes. Some things to consider are the collision and distance of drawing the next ball. A ball inside a ball's radius will cause numerous collisions. Even the starting ball locations can be already causing collisions. I added a collision counter display. Increased the maximum balls to make to 50. The timer delay can also impact … Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by jprog1000 Thank you so much for your reply and additions! It is certainly working as I wanted. I will read through the code you have added and ask you any questions I might have. I hope you don't mind. Regards Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by Dani I’ll mark this question solved :) Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by Dani … oh, sorry, missed the bit about you still needing clarifications. Feel feee to ask :) I’ll now unmark this topic as solved. /facepalm Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by toneewa I cleaned up the code some more. Removed some things that were not being used. I ran into a couple problems which caused the freeze you mentioned. It was memory heap space and array allocating. E.g., if x or y becomes negative, and also infinite recursion. I added a x/y coordinate display for a ball, and tinkered with the placement of the … Re: ASUS Laptops - my experience Hardware and Software by toneewa Sounds like you got it all squared away. One reason I don't want to ever do a Windows reinstall is the compilers, libraries, and other software configurations. I've done 1 since 2015 for myself, with Windows 10. I also expect since, NAND flash SSDs wear out, it'll happen sooner or later. Only 37% life of drive remaining. Best of luck! Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by toneewa Yes, this is true. Overlapping ball spawns can do that causing a chain reaction. Something like that could be done. How you handle the spawning of the new ball is what I played with a bit before. You will see better collision detection changing to: g.fillOval(ball.getX(), ball.getY(), 1 * ball.getRadius(), 1 * ball.getRadius()); Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by jprog1000 Got it. Thank you so much! Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by vortex_1 In my opinion, implementing a feature in a bouncing balls simulation where a new ball is created when two balls collide can add an interesting and dynamic element to the simulation. This feature can introduce a sense of complexity and unpredictability, making the simulation more engaging and challenging for users. It could also provide an …