Total posts: 193
Posted in:
I just ate 2600 calories worth of salami, because it was about to go bad. . . three days ago. Better late than never I suppose!
Created:
The middle east won't be pushed around like that. mark my words because in 204X, Iran will be the one calling the shots.
Right now Israel is getting the bad end of this, but it's coming to the rest of the west.
Look at the competitor countries in the International Olympiad in Informatics, and you will see that Iran has as many golds as Germany has silvers. But Germany joined all the way back in 1989! So shouldn't they be ahead?
Pretty much every year, Iran has won gold.
Basically, you take a nation of budding young hackers, and combine that with a ruler bent on nuclear proliferation, and what do you get?
Created:
Posted in:
-->
@Barney
Also, could you explain the credit system to me. . . How do I use credits, and how do I get more of them?
Created:
Posted in:
https://www.debateart.com/debates/6009-christianity-has-had-more-positive-impact-than-any-other-religion if you're fine with religious debates. . .
Created:
Wylted, standing strong like Galileo against the inquisition that is racial inclusivity.
Oh brave Wylted, in a world filled with conniving minorities who twist the narrative for their own selfish gains, bless us with your wisdom, so that we may see clearly again.
Oh Wylted, he who has developed far too many star classification systems to count.
Oh Wylted, he who has mastered Fortran, COBOL, and 32-bit assembly.
Oh Wylted. . .
Sing the song of science and reason, because for too long we have been deafened by lies, but now you let us hear again.
Created:
You say "The black invention rabbit hole is not one I want to jump into right now", but that implies that the rabbit-hole is big, and that there are many black inventions to ?disprove? I am honestly confused by this Wyant ( Wylted + rant ). Are you arguing that Black Women have made many contributions to science, and also that each contribution is not impressive as the media makes it seem? Please clarify.
Wylted, it's a smart idea keeping this Lpinion ( loser + opinion ) on DebateArt
Created:
Posted in:
If you hear a bump in the night, don't be scared. It probably doesn't have very good night vision.
Google tells me: Good for you.
When you hold a prism up to a ray of white light, why do higher frequency wavelengths bend more, I meat, make semse.
Google tells me: High-frequency light interacts more strongly with the atoms in the prism's material, causing it to slow down and refract more than lower-frequency light.
What/who determines what type of electromagnetic waves get goalied by the atmosphere.
Google tells me: It's complicated!
Created:
Their primary concern is with social hierarchy and they actually mimic true learn by memorization of facts. Because being able to pass tests is more valuable to them than knowledge. Unfortunately geniuses have to attend the same schools as them but geniuses should honestly be forced to go to school but be in charge of solving their own problems.
Here's the thing. . . Every week, I hold conversation with approximately two dozen different people while not online, and all of them are undoubtedly "midwits". Where is this mysterious genius class that you talk of, and where can I find them? I mean, I can reason that they exist, because otherwise we wouldn't have atomic warheads or algebraic topology, but I still cannot find them.
By the way, this is a response to Wylted's post. For some reason, I cannot mention him up top because I get the error message "Wylted is not active"
Created:
-->
@TheGreatSunGod
Debating is necessary to reach the truth on moral issues which are crucial for making society function.
Debating is necessary to reach moral truth, however moral truth is not necessary for success. The relationship actually goes the other way. Genghis Khan took a sixth the globe using mass imprisonment and psychological warfare.
Art is also necessary, at least some forms of it, because people cannot just work all day. They need to rest, relax and enjoy as well.
People do not need art to relax or entertain themselves. For proof of this, just turn your brain off, and turn on Netflix. I would generously estimate that four percent of the shows on Netflix are art by any metric.
Created:
Why are people smart? More specifically, why are some people driven to be smart? Well, humans are social creatures, people want to be intelligent because others admire intelligence.
Looking to nature, we can ask a similar question. Why do peacocks spread their feathers? They do it to attract mates. But that begs the bigger question. Why do other peacocks admire a peacock that can make a big feathery display?
Tying this back to humanity, why do other humans admire a human who can always win at scrabble, or make a witty joke?
There is one thing that connects the tail of a peacock, and a game of chess, and that thing is waste. Male peacocks attract females by showing them that they are genetically successful enough to waste resources on bright plumage and elaborate dances. Humans do this too!
Humans waste money on expensive fashion to show other humans their success. In a similar way, many humans waste extreme mental effort on fruitless labors like art and debate to convince other humans that they are cultured.
The average human brain hogs up about twenty percent of the body’s daily energy. You may say that intelligence is practical, but Humans actually show more brain activity when socializing than when solving problems.
Basically, humans primarily use their brains to woo other humans. With this in mind, could it be possible that problem solving is a secondary function of the human brain? Tell me what you think.
Created:
Posted in:
-->
@Dr.Franklin
Stop with this C propaganda
There are two hidden premises here. . .
Hidden Premise 1 : My post is C propaganda.
UNTRUE - - - > Yes, my post contains code written in C, but does that really mean that my post is C propaganda?
Hidden Premise 2 : All propaganda must be stopped.
UNTRUE - - - > What if I had a propaganda poster encouraging kids to eat nutritious diets?
Now, If I made a debate titled "C is the best programming language", would you accept?
Created:
Posted in:
-->
@Barney
First, I wouldn't call myself king...
I apologize for being un-progressive.
The crown in your profile picture must mean that you are the queen of debate.
Created:
Posted in:
For those of you that don't/won't include basic math libraries in your programs, you probably do something like this for your root functions:
double sqrt( double whole ) {double accumulator = 1.0;double difference = whole - 1.0;for( int i = 0; i < 54; ++i ) {difference /= 2.0;if( whole < SQUARE( accumulator ) == whole < SQUARE( accumulator + difference ) ) {accumulator += difference;}}return accumulator;}
Yucky. Objects are cool, so join the crowd. Here is an example program, which shows how you can just shove all the computation up front.
#define ROOTSET 2 #include <stdlib.h>double power( double base, long exponent ) { double scraper = 1.0; while( exponent != 1 ) { if( exponent % 2 == 1 ) { scraper *= base; } base *= base; exponent /= 2; } return base * scraper;}typedef struct { double spacing; long tablesize; double * table;} RootTable;RootTable roottable_init( long mode, double spacing, long tablesize ) { RootTable retval; retval . spacing = power( spacing, mode ); retval . tablesize = tablesize; retval . table = malloc( sizeof( double ) * tablesize ); long index = 0; for( long i = 0; ; ++i ) { for( long u = 0; u < power( i + 1, mode ) - power( i, mode ); ++u ) { retval . table[ index ] = spacing * ( ( double )( i ) + ( double )( u ) / ( double )( power( i + 1, mode ) - power( i, mode ) ) ); if( ++index >= tablesize ) { return retval; } } }}#define ISPOS( X ) ( X + X > X )double roottable_get( RootTable self, double searchval ) { if( ISPOS( searchval ) && ( long )( searchval / self . spacing ) < self . tablesize ) { return self . table[ ( long )( searchval / self . spacing ) ]; } else { return 0.0; }}void roottable_free( RootTable self ) { free( self . table );}#include <stdio.h>int main() { double spacing; long tablesize; scanf( "%lf %ld", & spacing, & tablesize ); RootTable subject = roottable_init( ROOTSET, spacing, tablesize ); while( 1 ) { double searchval; if( scanf( "%lf", & searchval ) == 1 ) { printf( "%lf\n", roottable_get( subject, searchval ) ); } else { roottable_free( subject ); printf( "End Program\n" ); return 0; } }}
Only braindead apes use functional programming in the big 25. Look at how smart I am, using objects in my C code.
Created:
Posted in:
-->
@Barney
@TheGreatSunGod
Oh great Sun, you are pretty bad at debating, and yet your scum tactics can still defeat many new players. This is because, usually, new players do not know how to dissect opposing arguments properly. Tutorial debates would start new players off by helping them ask the right questions, so that eventually, they might have the tools to not lose 100% of the time.
Barney, I would like to have your input here, as you are kind-of the king of Debate. Do you think this is a good idea?
Created:
Posted in:
Actually, this is a terrible idea. Upon rereading, I have realized how much my new argument resembles a wall of text. Concise arguments have value, and I just completely disregarded that.
Created:
Posted in:
Many new members of DebateArt follow the pattern of making an account, joining a debate, and then leaving forever. I would think that many of these new debaters simply don't know what to do in their first debate, and so run away. ( either that, or the Captchas are too hard for them to log back on )
To solve this, tutorial debates could be used. Here is an excerpt adapted from my "Dragonite is a B tier Pokemon" debate linked.
Semantics:For those unfamiliar with the tier system, it ranks things on a 6 point scale, with the “S tier” being absolutely supreme, and with the “F tier” being absolutely dogwater. Right in the middle, there is the “B tier”, meaning “good”.- - - > Is this an accurate representation of the tier system?This means that if I prove that Dragonite is good, then I win the debate. However, if OPP proves that Dragonite is either better or worse than good, then OPP wins the debate.To measure “good”, I will be using the metrics of gameplay and marketability.- - - > Are these fair indicators of how "good" a Pokemon is, and is there anything missing?The gameplay experience of dragonite is good, but not great:In the games, Dragonite fills the role of a highly offensive physical attacker. Due to “dragon dance”, Dragonite can buff itself to sweep the opponent’s entire team. In generation one, Dragonite was one of the most competitive pokemon. But as the games kept evolving, power creep slowly pushed Dragonite out of the competitive spotlight. This all changed back in the eighth pokemon generation released in 2019, and now Dragonite is powerful once again.- - - > Is this information accurate, and is there anything missing?This brings me to my first problem with Dragonite. Across generations, Dragonite has been inconsistent. Is Dragonite defensive, offensive, or even good? Does Dragonite have many high accuracy attacks? Can Dragonite use dragon dance? The answers to all of these questions have changed across generations.- - - > Does Dragonite encompass all versions of Dragonite from each generation, or does Dragonite only mean ninth generation Dragonite? If the former is true, could Dragonite's inconsistency actually be a strength rather than a weakness? If the latter is true, how does this impact the validity of what I just said?The marketability of Dragonite is good, but not great:Dragonite was the first dragon type pokemon, and so Gamefreak took extra time on its design. The design of dragonite was originally simplistic, with light oranges and round lines. This design emphasized that Dragonite was the good-guy dragon, in contrast to scarier dragons such as Rayquaza. Fans loved Dragonite, and throughout the Pokemon anime, Dragonite’s personality was fleshed out into a Dragonite of loyalty, friendship, selflessness, and honor.- - - > Is this information accurate, and is there anything missing?However, Dragonite is poised in the awkward limbo between a scary dragon powerhouse, and a Snorlax-esque cuddly pokemon. People who like big scary pokemon don’t choose Dragonite, they choose Gyrados. And people who like cuddly pokemon don’t choose Dragonite, they choose Snorlax or Pikachu. Ultimately, Dragonite proved to be not much more than a template for more unique later pokemon.- - - > Is Dragonite really as unpopular as I make it seem?
I do worry that some new players will be off-put by us "going-easy" on them, however I do think that DebatArt will retain more members with the use of tutorial debates.
Created:
Posted in:
For anybody who knows anything about Pokemon, https://www.debateart.com/debates/6021-dragonite-is-a-b-teir-pokemon
Created:
-->
@Shila
No American lives were lost in the coup.
Are you implying that other lives were lost in the coup? If so, link to some sources, or simply provide reasoning for your claim.
Created:
-->
@zedvictor4
The queen of Hawaii was overthrown, but nobody actually died in the coup itself. Some rich guys just came in with guns and told everybody in power to get out. The same thing happened when the US grabbed Hawaii sixty years later. I am pretty sure that no bombings ever occurred in those two events.
Created:
-->
@TheGreatSunGod
For somebody who spends so much time on this forum, I don't quite get how you could worship the sun. . . Like, how often do you really go outside?
Created:
-->
@TheGreatSunGod
You still have human sacrifice through endless wars, horrible lifestyle and all the other ways people kill and hurt each other, as well as much more suicides. But now you also have mass imprisonment and rape.
You make a good point. War is human sacrifice, not to a deity, but rather to a nation, or possibly to the ideals of that nation.
As for human sacrifices in ancient societies, many of those were voluntary. Some people simply agreed to die to please Gods and so that resources could be saved.
Just because human sacrifice is voluntary, does not make it okay. Although I can't say much about other ancient societies, the people who consented to sacrifice by the Aztecs ( a minority to say the least ) were brainwashed from birth into thinking that the world would end without the appeasement of their gods.
Created:
-->
@TheGreatSunGod
How many others share this belief? Is this a strange new twenty-first century religion that you are a part of?
Created:
-->
@TheGreatSunGod
What happens when our sun runs out of hydrogen, burns out, and becomes a white dwarf?
Created:
-->
@Lemming
On your mini-bio, I read that you were a part of the navy for 5 years. Did you ever get to visit Hawaii in the navy?
I think war and force to be immoral, generally speaking.
I agree, and I think that advanced, expansionist countries should leverage economic, diplomatic, and cultural force rather than military force except in extreme circumstances.
'Even if current living conditions end up better, doesn't mean people wish to accept such.
I think that this is due to internalized argumentum ad antiquitatem ( appeal to tradition ), however some people may argue that tradition holds moral value in and of itself.
Created:
-->
@FLRW
Yes, I am sorry that my original post lacked nuance. The distinction between the overthrow of the Hawaiian queen, and the addition of Hawaii into the union is important, because the two events were separated by more than half a century. Furthermore, the two events were carried out by different actors, with different motivations.
Still, while not carried out by the government directly, the 1893 coup had US interests in mind. If it didn't, Grover Cleveland would have done more than simply giving a condescending statement to Hawaii's new rulers.
Created:
Hawaii is a US state, and a legitimate one at that. To justify this claim, I will be using master morality, originally proposed by Nietzsche.
For the past ten centuries, humanity has been in a continual state of glow-up, with scientific, mathematical, and moral progress being made at increasing rates. However, due to different social structures, some societies have made greater advancements in these fields, giving those societies greater influence over their peers. Historically, this influence was exercised through trade and conquest.
For example, the British Empire used superior shipbuilding and firearm technology to build the first truly global trade network, and to spread civilization to native peoples. While conquest and colonialism are seen as distasteful practices to our morally advanced society of today, people must realize that for global advancement to happen, advanced societies must be allowed to influence less advanced societies.
On the dawn of colonialism in the fifteen hundreds, many native Americans embraced Christianity as an alternative to the oligarchic religious structures of their own culture. European imperialists were by no means morally righteous, but for every disease they brought to the Americas, they brought twice as many advancements, and each of those advancements had a lasting effect. If lesser empires (such as that of the Aztecs) were left to their own devices, we would still have human sacrifice in the twenty-first century.
Connecting this to the annexation of Hawaii, while the overthrow of the queen was bad, Hawaii is now much better off as part of the Union. As of twenty-twenty-four, Hawaii has a gross domestic product of one-hundred and fifteen billion dollars. Additionally, due to the tourism industry, Hawaii is the happiest state of the Union. This would not be the case if Hawaii was still a monarchy.
Created:
Posted in:
RationalMadman, I won't be able to cheat effectively with only 2 alt accounts.
You have no reason to worry.
Created:
Posted in:
-->
@WyIted
Whatever you can find will be fine.
I would like to debate a pop-star, even if they are lesser known.
Pop music is trash in my opinion.
Created:
Posted in:
-->
@WyIted
My best debate isn't that good.
Created:
Posted in:
I am in.
I don't care what famous person I get, I will win.
Created:
Posted in:
It would be nice to have a debate with Justin Bieber.
Created:
Posted in:
-->
@zedvictor4
How is modern medicine bad in any way?
Give me 1 good reason.
Created:
Posted in:
-->
@ADreamOfLiberty
Humanity isn't going to die unless the entire biosphere dies.
This is not true.
A global famine would wipe out humanity, but it would not wipe all life from the face of the Earth.
Created:
Posted in:
The year is 3500.
Humanity is dead.
Eventually, aliens find our planet. . .
What could they learn about our species?
What will remain of it?
Created:
Posted in:
-->
@JoeBob
Trolling is immoral.
It is insulting that you would think of me as a troll.
Created: