Are we being played by AI? Let's Discuss! Community Center Meta DaniWeb by Salem … are well written, but meaningless pith. It's such an odd way of closing out a post that it stinks of… Re: Are we being played by AI? Let's Discuss! Community Center Meta DaniWeb by Dani I agree that they *might* be AI generated, or at least have the help of AI. Sometimes it's hard to tell, and I always want to exercise extreme caution and not delete or infract a post unless I'm 100% confident. I have a bit of a migraine right now, so I have to put a little more thought into whether these 2 posts should be deleted when my head is a… Re: Are we being played by AI? Let's Discuss! Community Center Meta DaniWeb by Reverend Jim I have a problem with people who start posts about a topic with "let's discuss", but don't actually start the discussion. I have a friend (?) in Toronto who, especially during election season (which seems to be always these days), asking for my opinion on things without ever offering one of her own. I got tired of putting in the effort … Re: Are we being played by AI? Let's Discuss! Community Center Meta DaniWeb by Dani I disagree with that sentiment when it comes to a Q&A forum such as DaniWeb. The very premise of the site is that people ask questions. Quite often, uninformed questions. Sometimes those questions are just asking for your informed opinion as an expert in your field or as someone more informed than they are at the topic at hand. Other people … Re: Are we being played by AI? Let's Discuss! Community Center Meta DaniWeb by Reverend Jim And I disagree with that. The post I was referring to was >In this thread, let's dive into the exciting advancements in the world of audio technology. From spatial audio to AI-driven sound systems, the audio landscape is evolving rapidly. Share your thoughts on the latest innovations, your favorite audio gadgets, or how new tech is shaping … Re: Are we being played by AI? Let's Discuss! Community Center Meta DaniWeb by Dani >I fail to see the distinction between asking for an opinion versus a suggestion versus any other form of help or assistance. I understand that you see a distinction when the OP is trying to start a discussion versus asking for advice or help. However, I don’t understand why you make that distinction in a Q&A discussion forum. Re: Are we being played by AI? Let's Discuss! Community Center Meta DaniWeb by Reverend Jim 1. I thought we didn't have "forums" anymore. 2. Perhaps the OP posted in the wrong place. 3. Regardless, it was clearly a discussion and not a question. It's moot since the thread has been deleted. Re: Are we being played by AI? Let's Discuss! Community Center Meta DaniWeb by Dani > I have a bit of a migraine right now, so I have to put a little more thought into whether these 2 posts should be deleted when my head is a bit clearer. Unfortunately, I ended up in the ER from an unrelenting migraine that hasn’t let up for 6 days, and is not responding to any medication. I don’t mean to drop the ball on this thread. Re: Are we being played by AI? Let's Discuss! Community Center Meta DaniWeb by Dani Today is day one trillion of this still unrelenting headache. FINALLY, a diagnosis! I have shingles. Feeling hopeful to begin treatment and start feeling better. Re: Are we being played by AI? Let's Discuss! Community Center Meta DaniWeb by Reverend Jim I've had close relatives who had that but I don't recall headaches as a symptom. I hope I never get it (I can't get the vaccine because it's a live vaccine). Good luck with recovery now that you have a diagnosis. Re: Are we being played by AI? Let's Discuss! Community Center Meta DaniWeb by Dani Jim, My intense headache is because the shingles rash is all over my scalp, my eyebrow, and even all over my eyelid! The intense headache pain was radiating from the area of my scalp where the shingles rash eventually presented. Luckily, the shingles vaccine is no longer live, so you should definitely get it. (I just happened to have not … Re: Are we being played by AI? Let's Discuss! Community Center Meta DaniWeb by Reverend Jim I'll have to ask next time I am at the pharmacy. Thanks for the tip. Re: Are we being played by AI? Let's Discuss! Community Center Meta DaniWeb by Dani Having a very, very difficult time. My eye is swollen shut and I’m in danger of losing my vision as the shingles rash gets closer and closer to my cornea. Odd Mountain in lists Programming Software Development by Vish0203 … a list of odd numbers going up from 1 and then back to 1. … Re: Odd happenings Community Center Meta DaniWeb by Ancient Dragon Odd happenings just did it again, [URL="http://www.daniweb.com/forums/thread91211.html"]here[/URL] Odd And Even Programming Software Development by freesoft_2000 …to do is to only be able print even and odd pages. I am using currently the java printable interface… pageFormat, int pageIndex) { } I Know that printing even or odd pages does not involve the graphics or the pageformat objects…whether the pageindex is an even or odd number (including 0 which is an odd number) Can anyone show me any… Re: Odd And Even Programming Software Development by Narue [code] if ( pageIndex % 2 == 0 ) { // Even } else { // Odd } [/code] odd or ever Programming Software Development by vladdy19 I'm wondering how I would be able to tell if an integer is even or odd, I know that if the least significant bit is 1 then it is odd but I don't know how to tell if the integer has this bit as a 1 or a 0. Re: Odd Mountain in lists Programming Software Development by woooee … how to find the halfway point for an even or odd number for the size of the mountain (note the use…: middle += 1 list_of_odds = too_many_nums[:middle] ## length-middle because if an odd length, the back half ## has one less value than the… Re: Odd Mountain in lists Programming Software Development by Vish0203 … how to find the halfway point for an even or odd number for the size of the mountain (note the use…: middle += 1 list_of_odds = too_many_nums[:middle] ## length-middle because if an odd length, the back half ## has one less value than the… odd even count from FILE Programming Software Development by neveragn …, and how many were odd. Also the average of integer numbers that were odd. It should be done … and counts them properly , except it doesnt count the odd and even integars. [CODE]#include <stdio.h>….\n", w); } else printf ("There are %d odd numbern.\n", w); } status = fscanf (in, "… Re: Odd Integers Programming Software Development by JasonHippy … need to use %2 to test for odd/even. So what you need to do is…{ // if modulus returns 1, the number is odd if(posnum%2) cout << "…Number is an ODD number\n"; else // number is even … Odd numbers in C++? Programming Software Development by Jobe007 …to write a program that will cout all the odd numbers between 6 and a positive integer.It …Execution of the series if (a%2!=0); // calculating the odd numbers cout << a <<endl; cout …<<"This is the odd numbers between 6 and "<<i<&… odd even numbers Programming Software Development by bonnie1702 … user to input two integer values, then outputs all the odd numbers between these two integer values (and their squares), and…;< endl; a1 = a; b2 = b; //for odd numbers cout << "The odd numbers between " << a <… odd even synchronization help Programming Software Development by testing321 … a string entered by user according to the number being odd or even? so say user enters sentence: i like ice… cream. the even output : ilkiecem odd output: the rest of the letters (tht are at… odd positions) i will highly appreciate if anyone can provide me … ODD or EVEN using Loop Programming Software Development by benjo.s.lucas I have this code that if i enter a number for example : Enter a number: 1 2 3 output is Even:2 Odd:1 Odd:3 but i like it like this: Enter a number: 1 2 3 Even: 2 Odd : 1 3 Here is My code hope you could help me with this Re: odd even synchronization help Programming Software Development by darkagn … documentation. Hint 2: You can tell if a number is odd or even through the use of modulo arithmetic. For example…, 5 % 2 = 1, which means it is odd. 8 % 2 = 0 which means it is even. Hope this… Re: odd even synchronization help Programming Software Development by BestJewSinceJC … printing out every even position or odd position. You can print out even positions or odd positions by using modulus. What modulus… Re: Odd Integers Programming Software Development by JasonHippy …testNum=3; // Note: we only want to test numIn against ODD numbers // So we'll set it to 3 initially as… it is the first odd number of interest // (everything divides by 1, so no … limit...think about it! limit = numIn / testNum; // Check the next odd number testNum+=2; } // if we managed to get this far… Re: Odd Integers Programming Software Development by Gaiety …=3; // Note: we only want to test numIn against ODD numbers // So we'll set it to 3 initially as… it is the first odd number of interest // (everything divides by 1, so no…...think about it! limit = numIn / testNum; // Check the next odd number testNum+=2; } // if we managed to get this far…