Do you think I could just leave this part blank and it'd be okay? We're just going to replace the whole thing with a header image anyway, right?
You are not logged in.
Nothing wrong with Thread.Sleep as long as it's properly threaded. Usually.
I myself am a fan of Microsoft's async stuff (e.g. await Task.Delay)
Offline
I myself am a fan of Microsoft's async stuff (e.g. await Task.Delay)
YESSS
YESSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS
shh i have returned
Offline
OMG, until the program crashes, do what's easiest ~ i.e. the one liners. If it's not crashing, there's absolutely no point changing the code.
People who wanna invoke and delegate and use background workers can do that and keep it to themselves, and not try to force it on others.
Leave off claiming that you need complex code to write a simple bot, just because it "might" crash and "might" be harmful in some incredibly improbable scenarios.
One bot to rule them all, one bot to find them. One bot to bring them all... and with this cliché blind them.
Offline
"Do what's easiest" okay so when a professional company wants you to code something for them are you going to take shortcuts? Programming isn't supposed to be "easy" it's supposed to be a challenge.
Programming is supposed to dare you to try something new and push you to make the best, most responsive program you can.
Sure, if you're just making a simple program for yourself, so whatever. But personally I like to thinking of programming as a fun, dynamic puzzle with code that can always be improved.
Offline
"Do what's easiest" okay so when a professional company wants you to code something for them are you going to take shortcuts? Programming isn't supposed to be "easy" it's supposed to be a challenge.
Programming is supposed to dare you to try something new and push you to make the best, most responsive program you can.
Sure, if you're just making a simple program for yourself, so whatever. But personally I like to thinking of programming as a fun, dynamic puzzle with code that can always be improved.
If you want to code everything the hardest way, you are in serious troubles my friend.
Offline
BuzzerBee wrote:"Do what's easiest" okay so when a professional company wants you to code something for them are you going to take shortcuts? Programming isn't supposed to be "easy" it's supposed to be a challenge.
Programming is supposed to dare you to try something new and push you to make the best, most responsive program you can.
Sure, if you're just making a simple program for yourself, so whatever. But personally I like to thinking of programming as a fun, dynamic puzzle with code that can always be improved.
If you want to code everything the hardest way, you are in serious troubles my friend.
No, that's called learning how to do stuff differently instead of having to google everything.
thanks zoey aaaaaaaaaaaand thanks latif for the avatar
Offline
I don't want to program the hard way. And I don't.
Invoking is easy.
I just want to program something that won't spontaneously crash.
I just want to program without taking dangerous shortcuts.
Offline
When writing software, you should always try to be clean and efficient. You should also anticipate potential faults and correct for them. It's not about making it difficult, it's about making it sane.
Offline
The way you take in coding your apps defines your level of experience in programming.
Though they might work the same way, there is a difference between a professional's code and a rookie's.
Offline
"Do what's easiest" okay so when a professional company wants you to code something for them are you going to take shortcuts? Programming isn't supposed to be "easy" it's supposed to be a challenge.
Programming is supposed to dare you to try something new and push you to make the best, most responsive program you can.
Sure, if you're just making a simple program for yourself, so whatever. But personally I like to thinking of programming as a fun, dynamic puzzle with code that can always be improved.
When in a company it's about the balance between quantity and how long you work on it (how much you cost).
Right now you don't really have to worry about it, but when working you don't have to fix every single bug. Just the ones that the customer might experience.
Offline
BuzzerBee wrote:"Do what's easiest" okay so when a professional company wants you to code something for them are you going to take shortcuts? Programming isn't supposed to be "easy" it's supposed to be a challenge.
Programming is supposed to dare you to try something new and push you to make the best, most responsive program you can.
Sure, if you're just making a simple program for yourself, so whatever. But personally I like to thinking of programming as a fun, dynamic puzzle with code that can always be improved.
When in a company it's about the balance between quantity and how long you work on it (how much you cost).
Right now you don't really have to worry about it, but when working you don't have to fix every single bug. Just the ones that the customer might experience.
Btw there are many ppl who work in a company, so the person who does checkForIllegalCrossThreadCalls = false; does not have to care. There will be another team to fix these bugs.
Offline
▼someqoutesBtw there are many ppl who work in a company, so the person who does checkForIllegalCrossThreadCalls = false; does not have to care. There will be another team to fix these bugs.
And that's where you'll get fired.
YOU make the program, YOU fix the bugs, YOU are the ones that will be looked at when there is a bug found, YOU will be put to blame and YOU ARE TO BLAME.
Offline
Shh.
Quiet.
Use whatever pleases you.
Was it checkforillegalcrossthreadcalls or invoking.
Kthxbai.
Offline
Shh.
Quiet.
Use whatever pleases you.
Was it checkforillegalcrossthreadcalls or invoking.
Kthxbai.
No
Offline
DarkDragon4900 wrote:Shh.
Quiet.
Use whatever pleases you.
Was it checkforillegalcrossthreadcalls or invoking.
Kthxbai.No
stop forcing newbies to use invoke, seriously...
PLUS, don't force ppl like I or DarkDragon that already know how to code good to use your methods, everyone does what they WANT and know.
Offline
He is not forcing anybody to do anything, he is saying it is a good idea. You do not have to do anything anybody tells you to do, so just do whatever you want.
thanks zoey aaaaaaaaaaaand thanks latif for the avatar
Offline
BuzzerBee wrote:DarkDragon4900 wrote:Shh.
Quiet.
Use whatever pleases you.
Was it checkforillegalcrossthreadcalls or invoking.
Kthxbai.No
stop forcing newbies to use invoke, seriously...
PLUS, don't force ppl like I or DarkDragon that already know how to code good to use your methods, everyone does what they WANT and know.
Your way is more of a lazy workaround than actually trying to understand why it's a problem and correcting it.
Offline
Let's just /thread, and let zubberzee code his bot like it's the next Windows OS. Nobody gives a damn; if it works, it works.
Stawp. Pls.
One bot to rule them all, one bot to find them. One bot to bring them all... and with this cliché blind them.
Offline
Let's just /thread, and let zubberzee code his bot like it's the next Windows OS. Nobody gives a damn; if it works, it works.
Stawp. Pls.
That's like saying this is a good way to convert a string to an integer just because it works.
public static int? ToInt(string value)
{
for (int i = 0; i < int.MaxValue; i++)
{
if (value == i.ToString())
{
return i;
}
}
return null;
}
Offline
Lets end this thread on this quote from my dead relative cousin:
I never died playing Russian roulette, why should I stop now? Kthxbai plzgo. Yolo swag.
Rest in peace. I'm sad, but deep inside I know it's better for humanity.
Offline
Tomahawk wrote:Let's just /thread, and let zubberzee code his bot like it's the next Windows OS. Nobody gives a damn; if it works, it works.
Stawp. Pls.
That's like saying this is a good way to convert a string to an integer just because it works.
public static int? ToInt(string value) { for (int i = 0; i < int.MaxValue; i++) { if (value == i.ToString()) { return i; } } return null; }
You're arguing on the wrong website. Find Stack Overflow or a Youtube comment war.
One bot to rule them all, one bot to find them. One bot to bring them all... and with this cliché blind them.
Offline
Offline
It's not something arguable... The Boolean for illegal cross-thread calls was only kept in later versions of .NET Framework for backwards compatibility...
The only thing you are arguing is your right to take dangerous shortcuts, which is a right you do possess. So keep doing you and let me know when your app crashes
Offline
It's not something arguable... The Boolean for illegal cross-thread calls was only kept in later versions of .NET Framework for backwards compatibility...
The only thing you are arguing is your right to take dangerous shortcuts, which is a right you do possess. So keep doing you and let me know when your app crashes
/thread
for (int i=0;i<99999999*9999999;i++)
{
/thread
System.Threading.Thread.Sleep(1)
}
Offline
It's not something arguable... The Boolean for illegal cross-thread calls was only kept in later versions of .NET Framework for backwards compatibility...
The only thing you are arguing is your right to take dangerous shortcuts, which is a right you do possess. So keep doing you and let me know when your app crashes
I'll let you know then when it never crashes. Dangerous shortcut my ****.
One bot to rule them all, one bot to find them. One bot to bring them all... and with this cliché blind them.
Offline
[ Started around 1732477878.6977 - Generated in 0.099 seconds, 12 queries executed - Memory usage: 1.86 MiB (Peak: 2.16 MiB) ]