Re: Writing and speaking clearly Community Center Geeks' Lounge by Dani … on the English section of the GMAT exam. I'm super good with grammar. (See what I did there?) However, I… Re: This is me venting Community Center Meta DaniWeb by Naor … it more impressive. I think you need to be a super talented and smart person to operate in this space. daniweb… Re: ‘Advanced AI should be treated similar to Weapons of Mass Destruction’ Community Center by Reverend Jim Based on the proliferation of AI generated content, and the age-old rule of garbage in, garbage out, what will be the result of AI models being trained on ever increasing amounts of content generated by other AI platforms? Will we get into a negative feedback loop where the output will become so polluted with bad input that it will be effectively … Re: ‘Advanced AI should be treated similar to Weapons of Mass Destruction’ Community Center by jwenting Even worse: the junk being deliberately fed to AIs is already at the stage where the results are useless BUT those results are blindly believed by many people BECAUSE they're generated by AI and therefore supposedly automatically correct! Think Google's disastrous launch of their image generator which would under no condition generate Caucasian … Best extensions for boosting productivity on a school Chromebook Hardware and Software Hardware by jamesedision One of my favorite productivity apps for school Chromebooks is Google Keep. It's fantastic for taking quick notes, creating to-do lists, and setting reminders. You can easily categorize your notes with labels and colors, making it super organized. Plus, it syncs across all your devices, so you can access your notes anywhere. ‘Advanced AI should be treated similar to Weapons of Mass Destruction’ Community Center by Johannes C. … potential to cause harm in the wrong hands, but with super-intelligence we have the new problem that the wrong hands… Re: What is third-party cookie ?Why are they being phased out? Digital Media Digital Marketing by Dani I'm not super experienced in this, but this is my best understanding: third-… Re: How can we Implement Multiple Surveys/Feedbacks on Our Result page? Programming Web Development by Dani … to work on (technical SEO, etc.). If you want a super simple, and inexpensive, survey system, use the world famous [SurveyMonkey… Re: Unpopular Opinion: Bootstrap+jquery+CI is the best thing since sliced bread Programming Web Development by Dani …/462743/laravel-or-codeigniter) * [Me talking about how CI is super lightweight](https://www.daniweb.com/programming/web-development/threads/430574… Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by jprog1000 … void actionPerformed(ActionEvent e) { repaint(); } public void paintComponent( Graphics g ) { super.paintComponent( g ); g.setColor(Color.red); // move the balls for… How to Optimize RecyclerView performance by implementing the ViewHolder Programming Mobile Development by Mikekelvin … ViewHolder extends RecyclerView.ViewHolder { TextView textView; public ViewHolder(View itemView) { super(itemView); textView = itemView.findViewById(R.id.textView); } } @Override public ViewHolder… Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by toneewa … void actionPerformed(ActionEvent e) { repaint(); } public void paintComponent(Graphics g) { super.paintComponent(g); g.setColor(Color.red); // move the balls for… Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by toneewa … void actionPerformed(ActionEvent e) { repaint(); } public void paintComponent(Graphics g) { super.paintComponent(g); // Move the balls for (int i = 0; i… 'AI Is Expected to Transform the Role of Controllers & Analysts ' Community Center by Johannes C. …, including finance and accounting. In the finance and accounting domains, super-intelligent AI could potentially revolutionize insight generation in the financial… 'We'll Know We Have AGI When >50% of the GDP is Generated by AI' Community Center by Johannes C. … questions about Artificial Intelligence (AI), Artificial General Intelligence (AGI), Artificial Super Intelligence (ASI), and the impact these technologies could have on… Re: Do you participate in any other communities? Community Center Geeks' Lounge by Dani Super familiar with Sitepoint :) Their forums used to be a big competitor to DaniWeb back in the day. Why did you inject a random spammy link into the middle of your post? :( Re: Improve HAVING BY performance Programming Databases by Dani …/connect/users/view/1 because figuring out the matching is super resource intensive. > I currently am looking at storing all… haven't already, those things are insanely fast That's super duper crazy! Our database servers definitely use SSDs, but I… 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 … friend Jim Boykin, who owns Internet Marketing Ninjas. I was super excited when he bought them because I love having friends… Re: Which Crypto Services You Use ? Community Center Geeks' Lounge by Dani Just stumbled across this topic and remembered how much I regret not getting into bitcoins back in the day. I had a really super powerful workstation at the time that could have mined them for next to nothing. Re: How NOT to do business online Digital Media Digital Marketing by Dani … businesses should not invest in toll free numbers. They're super expensive (the business has to pay per minute) and pretty… Re: What's the most unexpected hobby or interest you have outside of coding? Community Center Geeks' Lounge by Reverend Jim … sci-fi authors. There were two series (what were called super-science) by E E "Doc" Smith. They were… Re: Chrome generates AI content Community Center by Dani … results. So, on one hand, you have Google making it super easy to churn out AI-generated content on the web… 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 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 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 aishamushtaq Hi, Its helpful for me. I got my answer.