• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 10:21
CEST 16:21
KST 23:21
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
Code S Season 1 - RO12 Group A: Rogue, Percival, Solar, Zoun3[ASL21] Ro8 Preview Pt1: Inheritors16[ASL21] Ro16 Preview Pt2: All Star10Team Liquid Map Contest #22 - The Finalists19[ASL21] Ro16 Preview Pt1: Fresh Flow9
Community News
2026 GSL Season 1 Qualifiers24Maestros of the Game 2 announced92026 GSL Tour plans announced15Weekly Cups (April 6-12): herO doubles, "Villains" prevail1MaNa leaves Team Liquid25
StarCraft 2
General
Code S Season 1 - RO12 Group A: Rogue, Percival, Solar, Zoun Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool Team Liquid Map Contest #22 - The Finalists MaNa leaves Team Liquid Maestros of the Game 2 announced
Tourneys
2026 GSL Season 1 Qualifiers Sparkling Tuna Cup - Weekly Open Tournament INu's Battles#14 <BO.9 2Matches> GSL CK: More events planned pending crowdfunding RSL Revival: Season 5 - Qualifiers and Main Event
Strategy
Custom Maps
[D]RTS in all its shapes and glory <3 [A] Nemrods 1/4 players [M] (2) Frigid Storage
External Content
The PondCast: SC2 News & Results Mutation # 523 Firewall Mutation # 522 Flip My Base Mutation # 521 Memorable Boss
Brood War
General
[ASL21] Ro8 Preview Pt1: Inheritors ASL21 General Discussion BW General Discussion Leta's ASL S21 Ro.16 review BGH Auto Balance -> http://bghmmr.eu/
Tourneys
[ASL21] Ro8 Day 2 [ASL21] Ro8 Day 1 [Megathread] Daily Proleagues [ASL21] Ro16 Group D
Strategy
Fighting Spirit mining rates Simple Questions, Simple Answers What's the deal with APM & what's its true value Any training maps people recommend?
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread Dawn of War IV Diablo IV Total Annihilation Server - TAForever
Dota 2
The Story of Wings Gaming
League of Legends
G2 just beat GenG in First stand
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Vanilla Mini Mafia Mafia Game Mode Feedback/Ideas TL Mafia Community Thread Five o'clock TL Mafia
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread 3D technology/software discussion European Politico-economics QA Mega-thread Canadian Politics Mega-thread
Fan Clubs
The IdrA Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece [Req][Books] Good Fantasy/SciFi books Movie Discussion!
Sports
2024 - 2026 Football Thread Formula 1 Discussion McBoner: A hockey love story
World Cup 2022
Tech Support
streaming software Strange computer issues (software) [G] How to Block Livestream Ads
TL Community
The Automated Ban List
Blogs
Sexual Health Of Gamers
TrAiDoS
lurker extra damage testi…
StaticNine
Broowar part 2
qwaykee
Funny Nicknames
LUCKY_NOOB
Iranian anarchists: organize…
XenOsky
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2072 users

The Big Programming Thread - Page 422

Forum Index > General Forum
Post a Reply
Prev 1 420 421 422 423 424 1032 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
dae
Profile Joined June 2010
Canada1600 Posts
Last Edited: 2014-01-07 18:29:01
January 07 2014 18:27 GMT
#8421
On January 08 2014 03:17 Arnstein wrote:
I was bored, so I just did some random shit in C, but why doesn't it print the sum?
+ Show Spoiler +

#include <stdio.h>
#include <time.h>

int main()
{
int sum = 0;
while ( 1)
{
srand(time(NULL));
sum += rand() % 6 + 1;
printf( "Summen er: \n", sum );
}
}


It shows "Summen er" when I run it, but not the int!


Missing the %d to indicate where in the string to print sum actually should go.

+ Show Spoiler +
printf( "Summen er: %d\n", sum );
Arnstein
Profile Blog Joined May 2010
Norway3381 Posts
January 07 2014 18:43 GMT
#8422
Thanks!
rsol in response to the dragoon voice being heard in SCII: dragoon ai reaches new lows: wanders into wrong game
Manit0u
Profile Blog Joined August 2004
Poland17737 Posts
Last Edited: 2014-01-07 19:27:04
January 07 2014 19:24 GMT
#8423
Why an endless loop? Put some brakes on it with return or break...
Time is precious. Waste it wisely.
Arnstein
Profile Blog Joined May 2010
Norway3381 Posts
January 07 2014 19:36 GMT
#8424
CTRL+C does the trick I just wanted to look at how/if the number would go to 3.5 if I would take the average of X dice rolls, and then I could just CTRL+C when I wanted to stop.
rsol in response to the dragoon voice being heard in SCII: dragoon ai reaches new lows: wanders into wrong game
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
January 07 2014 19:47 GMT
#8425
You may want to switch that to a for loop to avoid perma-while looping your program.
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2014-01-07 23:11:16
January 07 2014 22:55 GMT
#8426
On January 08 2014 04:36 Arnstein wrote:
CTRL+C does the trick I just wanted to look at how/if the number would go to 3.5 if I would take the average of X dice rolls, and then I could just CTRL+C when I wanted to stop.


Then
while (true)
may be better to write instead. It's more readable than
while (1)


Or even better:


bool loopShouldContinue = true;
while (loopShouldContinue) {
// do your work
// when you're finished
loopShouldContinue = false;
// or you could write
break;
// but then that may make the point of the boolean variable irrelevant
// it just depends on what you want to do exactly
}


Don't forget to import

#include <stdbool.h>

if you use the boolean approach.

#############################

I've got a question. When you don't need a class instance to do something (e.g. to get an unsorted array and return a sorted one), is it advisable to make that method static in general?
RoyGBiv_13
Profile Blog Joined August 2010
United States1275 Posts
Last Edited: 2014-01-07 23:25:19
January 07 2014 23:14 GMT
#8427
On January 08 2014 07:55 darkness wrote:
Show nested quote +
On January 08 2014 04:36 Arnstein wrote:
CTRL+C does the trick I just wanted to look at how/if the number would go to 3.5 if I would take the average of X dice rolls, and then I could just CTRL+C when I wanted to stop.


Then
while (true)
may be better to write instead. It's more readable than
while (1)


Or even better:


bool loopShouldContinue = true;
while (loopShouldContinue) {
// do your work
// when you're finished
loopShouldContinue = false;
// or you could write
break;
// but then that may make the point of the boolean variable irrelevant
// it just depends on what you want to do exactly
}


Don't forget to import

#include <stdbool.h>

if you use the boolean approach.



There's nothing wrong with a while(1) if you don't care or don't want your program to terminate.

However, it is bad juju to "break;" out of an infinite loop, as it may hide the condition to branch from the compiler, and can prevent some of the loop optimizations. I'm not saying never use "break;", just letting ya'll know the ramifications.


I've got a question. When you don't need a class instance to do something (e.g. to get an unsorted array and return a sorted one), is it advisable to make that method static in general?


It's definately the way I would do it, but I'm not sure I would advise that way if you're trying to do everything the Java (tm) way.

If you're copying Smalltalk's idea that every noun is an object, then try thinking of the data, both unsorted and sorted, as an object. Create a class that wraps that data array, and a method that mutates the wrapped data.

Java also pulls from the C/C++ land of OOP. Alternatively, if the data array is supposed to be a static element, then make a wrapper object, with a static method to sort the object passed as a parameter. By just passing in the data array without making a wrapper object, you're putting in a shortcut.

Or, a more savvy approach would be to just use the Arrays.sort method, and make sure your data array is Sortable.

It's been a while since I've done any real projects using Java. The promised land is Plain Old Data and speed.

Any sufficiently advanced technology is indistinguishable from magic
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2014-01-07 23:22:10
January 07 2014 23:18 GMT
#8428
1 looks like a typical case of a magic number to me. It's just sloppy/lazy coding imho. 'true' should be more readable for most people. The guy seems to be a beginner, so he shouldn't pick up bad habits like magic numbers.
RoyGBiv_13
Profile Blog Joined August 2010
United States1275 Posts
Last Edited: 2014-01-07 23:31:31
January 07 2014 23:28 GMT
#8429
On January 08 2014 08:18 darkness wrote:
1 looks like a typical case of a magic number to me. It's just sloppy/lazy coding imho. 'true' should be more readable for most people. The guy seems to be a beginner, so he shouldn't pick up bad habits like magic numbers.


If you see a while(1) loop, you can instantly recognize what it is doing the same as while(true).

"Magic" numbers are magic because there is no way to tell what it is they represent, and in this case, he's programming using C, where any non-zero number represents a true value.


http://en.wikipedia.org/wiki/Magic_number_(programming)#Accepted_limited_use_of_magic_numbers

"The constants 1 and 0 are sometimes used to represent the boolean values True and False in programming languages without a boolean type such as older versions of C."
Any sufficiently advanced technology is indistinguishable from magic
Scorpion77
Profile Blog Joined January 2013
98 Posts
January 07 2014 23:50 GMT
#8430
don't really wanna make a new thread for this simple question but:
as someone new to programming and wanting to try it to see if it is for me, what website/resources should I try?
I've used codecademy/code.org a bit but they seem far too simple? surely this is not what programming is really like? Also I am not really sure if programming is something I want to pursue as a career/at university.
Anyone got any general advice from their own experience?
Cyx.
Profile Joined November 2010
Canada806 Posts
January 08 2014 00:09 GMT
#8431
On January 08 2014 08:50 Scorpion77 wrote:
don't really wanna make a new thread for this simple question but:
as someone new to programming and wanting to try it to see if it is for me, what website/resources should I try?
I've used codecademy/code.org a bit but they seem far too simple? surely this is not what programming is really like? Also I am not really sure if programming is something I want to pursue as a career/at university.
Anyone got any general advice from their own experience?


Both me and my girlfriend learned to program from the Non-Programmer's Guide to Python which I found incredibly good in grade eleven, it presents everything really readably and simply... just nice to use in general. I plug that guide a lot whenever anyone asks me how to learn programming.
Manit0u
Profile Blog Joined August 2004
Poland17737 Posts
Last Edited: 2014-01-08 00:31:58
January 08 2014 00:31 GMT
#8432
On January 08 2014 08:50 Scorpion77 wrote:
don't really wanna make a new thread for this simple question but:
as someone new to programming and wanting to try it to see if it is for me, what website/resources should I try?
I've used codecademy/code.org a bit but they seem far too simple? surely this is not what programming is really like? Also I am not really sure if programming is something I want to pursue as a career/at university.
Anyone got any general advice from their own experience?


It depends what you want out of it. If you just want to check stuff out without anything really advanced then coding in ANSI C or C++ for console input/output only is the way to go in my opinion. This is relatively easy for simple stuff and gives you a very solid background if you'd like to move to something more complex or even entirely different (OOP, GUIs etc.).

Another way to approach this would be to grab something that doesn't require a lot of setup (assuming you're using Windows as your OS) and won't require manual compilation, debugging and all that crap. For that you could simply install Eclipse for Java as you get everything you need there and can run your programs any time you want to see how they work.

Other people will most likely suggest other things, but that's what worked for me in the beginning. I wouldn't get into PHP early on for example since it requires a ton of setup most of the time (PHP itself, virtual servers etc. etc.), at least on Windows I remember I used to get some headaches from that.
Time is precious. Waste it wisely.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
January 08 2014 00:50 GMT
#8433
On January 08 2014 07:55 darkness wrote:
Show nested quote +
On January 08 2014 04:36 Arnstein wrote:
CTRL+C does the trick I just wanted to look at how/if the number would go to 3.5 if I would take the average of X dice rolls, and then I could just CTRL+C when I wanted to stop.


Then
while (true)
may be better to write instead. It's more readable than
while (1)


Or even better:


bool loopShouldContinue = true;
while (loopShouldContinue) {
// do your work
// when you're finished
loopShouldContinue = false;
// or you could write
break;
// but then that may make the point of the boolean variable irrelevant
// it just depends on what you want to do exactly
}


Don't forget to import

#include <stdbool.h>

if you use the boolean approach.

#############################

I've got a question. When you don't need a class instance to do something (e.g. to get an unsorted array and return a sorted one), is it advisable to make that method static in general?


loopShouldContinue clearly does express the intention of the programmer precisely enough, it's even less expressive than while(1)!

try:
while(sinceThisProgramIsJustForMyOwnExperimentationThisLoopWillJustRunUntilITerminatedAtMyDiscretinonWithCtrlC)
conspired against by a confederacy of dunces.
klo8
Profile Joined August 2010
Austria1960 Posts
January 08 2014 01:09 GMT
#8434
On January 08 2014 09:31 Manit0u wrote:
Show nested quote +
On January 08 2014 08:50 Scorpion77 wrote:
don't really wanna make a new thread for this simple question but:
as someone new to programming and wanting to try it to see if it is for me, what website/resources should I try?
I've used codecademy/code.org a bit but they seem far too simple? surely this is not what programming is really like? Also I am not really sure if programming is something I want to pursue as a career/at university.
Anyone got any general advice from their own experience?


It depends what you want out of it. If you just want to check stuff out without anything really advanced then coding in ANSI C or C++ for console input/output only is the way to go in my opinion. This is relatively easy for simple stuff and gives you a very solid background if you'd like to move to something more complex or even entirely different (OOP, GUIs etc.).

Another way to approach this would be to grab something that doesn't require a lot of setup (assuming you're using Windows as your OS) and won't require manual compilation, debugging and all that crap. For that you could simply install Eclipse for Java as you get everything you need there and can run your programs any time you want to see how they work.

Other people will most likely suggest other things, but that's what worked for me in the beginning. I wouldn't get into PHP early on for example since it requires a ton of setup most of the time (PHP itself, virtual servers etc. etc.), at least on Windows I remember I used to get some headaches from that.

I mean, if you really want to not have fun when you start coding, C/C++ seems like a viable option. C++11 is a lot better in that regard (at least for me), but I don't think the changes from C++11 make the language easier to learn. Python is one of the best languages for beginners, I think. The syntax is so simple and lacks the cruft that C-style languages have (semicolons, curly braces and so on, basically just things that make life easier for the compiler) which makes learning a lot less frustrating. The most important part of learning programming is actually doing programming and trying stuff out and you won't do that if it's not fun. Programming in Python is fun for a beginner. Programming in C/C++, not so much.

By the way, don't take this the wrong way, C/C++ are both very important languages, but they serve a fairly specialized purpose nowadays. (systems programming or performance critical software like OS, games, computer graphics, realtime stuff and so on)
This post is clearly not a hurr, as you can see from the graph, the durr never intersects with the derp.
Manit0u
Profile Blog Joined August 2004
Poland17737 Posts
January 08 2014 02:30 GMT
#8435
Why do you hate curly braces so much? They are awesome, especially in the beginning, when they make it so much easier to identify blocks of code. That is, of course, if someone doing the programming actually uses some consistent formatting. It's a great way of learning that at start to put curly braces where they belong (not just around functions but all if statements, loops etc.)

Personally, I think that for someone just starting out this:

int main(void)
{
for (int i = 0; i < 5; i += 1)
{
if (condition)
{
do_stuff();
}
}

return 0;
}


might be more readable and easier to break into parts than this:


int main()
for (int i = 0; i < 5; i += 1)
if (condition)
do_stuff();
return 0;


The above examples are incredibly simple, but as your programs grow and acquire more methods it might be a bit hard to follow for the beginner. When I was starting out I even put /* comments */ after the closing bracket for a method with its name in it, made moving around much easier.
Time is precious. Waste it wisely.
teamamerica
Profile Blog Joined July 2010
United States958 Posts
January 08 2014 09:21 GMT
#8436
Hey all - I'm trying to get an idea of how an XMLHttpRequest is implemented in browsers. I mean I know what they are, I'm just trying to view the source that implements them. This doesn't serve any practical purpose, I was just curious.

From what I understand, I should look at the source code for v8 or Spidermonkey? I pulled the v8 source code with git from
https://code.google.com/p/v8/wiki/UsingGit
and did a
$ grep -rin "XMLHttpRequest" in v8/, but I can't seem to see where it's implemented. I guess I'm looking in the wrong place?

Any ideas?
RIP GOMTV. RIP PROLEAGUE.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
January 08 2014 11:05 GMT
#8437
On January 08 2014 09:50 nunez wrote:
Show nested quote +
On January 08 2014 07:55 darkness wrote:
On January 08 2014 04:36 Arnstein wrote:
CTRL+C does the trick I just wanted to look at how/if the number would go to 3.5 if I would take the average of X dice rolls, and then I could just CTRL+C when I wanted to stop.


Then
while (true)
may be better to write instead. It's more readable than
while (1)


Or even better:


bool loopShouldContinue = true;
while (loopShouldContinue) {
// do your work
// when you're finished
loopShouldContinue = false;
// or you could write
break;
// but then that may make the point of the boolean variable irrelevant
// it just depends on what you want to do exactly
}


Don't forget to import

#include <stdbool.h>

if you use the boolean approach.

#############################

I've got a question. When you don't need a class instance to do something (e.g. to get an unsorted array and return a sorted one), is it advisable to make that method static in general?


loopShouldContinue clearly does express the intention of the programmer precisely enough, it's even less expressive than while(1)!

try:
while(sinceThisProgramIsJustForMyOwnExperimentationThisLoopWillJustRunUntilITerminatedAtMyDiscretinonWithCtrlC)


Don't be so grumpy. The name of the boolean variable can be easily renamed, and it was just an example. You're just acting like an ass at the moment with your sarcasm.
Tobberoth
Profile Joined August 2010
Sweden6375 Posts
January 08 2014 11:11 GMT
#8438
On January 08 2014 07:55 darkness wrote:
Then
while (true)
may be better to write instead. It's more readable than
while (1)


Maybe if you've only worked with more modern programming languages. I think any person who knows enough C to know what while(1) means will read it just as well as while(true).

While I personally would have used true over 1 if it was part of the standard syntax, I feel it's overkill to a big degree to include a header or write macros etc yourself just to make something so simple as while(1) clearer. Especially when I don't intend for anyone else to work with my code.
klo8
Profile Joined August 2010
Austria1960 Posts
January 08 2014 11:41 GMT
#8439
On January 08 2014 11:30 Manit0u wrote:
Why do you hate curly braces so much? They are awesome, especially in the beginning, when they make it so much easier to identify blocks of code. That is, of course, if someone doing the programming actually uses some consistent formatting. It's a great way of learning that at start to put curly braces where they belong (not just around functions but all if statements, loops etc.)

Personally, I think that for someone just starting out this:

int main(void)
{
for (int i = 0; i < 5; i += 1)
{
if (condition)
{
do_stuff();
}
}

return 0;
}


might be more readable and easier to break into parts than this:


int main()
for (int i = 0; i < 5; i += 1)
if (condition)
do_stuff();
return 0;


The above examples are incredibly simple, but as your programs grow and acquire more methods it might be a bit hard to follow for the beginner. When I was starting out I even put /* comments */ after the closing bracket for a method with its name in it, made moving around much easier.

I don't hate curly braces, I actually code most of my stuff in languages that have them (Scala, Java, C#), but I don't think they make code easier to read, especially for beginners. Python's syntax is essentially pseudocode as sourcecode. Your example would look something like this:
def main():
for i in range(0, 5):
if condition:
do_stuff()

The thing is also that C and C++ are rather verbose languages. A lot of higher-level things like file IO, networking, parsing XML or whatever else you want to do are pretty complicated or require libraries. Python has all of the above (and more) built in and it's very easy to use as well.
This post is clearly not a hurr, as you can see from the graph, the durr never intersects with the derp.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
January 08 2014 12:51 GMT
#8440
On January 08 2014 20:05 darkness wrote:
Show nested quote +
On January 08 2014 09:50 nunez wrote:
On January 08 2014 07:55 darkness wrote:
On January 08 2014 04:36 Arnstein wrote:
CTRL+C does the trick I just wanted to look at how/if the number would go to 3.5 if I would take the average of X dice rolls, and then I could just CTRL+C when I wanted to stop.


Then
while (true)
may be better to write instead. It's more readable than
while (1)


Or even better:


bool loopShouldContinue = true;
while (loopShouldContinue) {
// do your work
// when you're finished
loopShouldContinue = false;
// or you could write
break;
// but then that may make the point of the boolean variable irrelevant
// it just depends on what you want to do exactly
}


Don't forget to import

#include <stdbool.h>

if you use the boolean approach.

#############################

I've got a question. When you don't need a class instance to do something (e.g. to get an unsorted array and return a sorted one), is it advisable to make that method static in general?


loopShouldContinue clearly does express the intention of the programmer precisely enough, it's even less expressive than while(1)!

try:
while(sinceThisProgramIsJustForMyOwnExperimentationThisLoopWillJustRunUntilITerminatedAtMyDiscretinonWithCtrlC)


Don't be so grumpy. The name of the boolean variable can be easily renamed, and it was just an example. You're just acting like an ass at the moment with your sarcasm.

your post was well-intentioned, but misguided and misplaced nitpicking, borderline overbearing... it persists!
conspired against by a confederacy of dunces.
Prev 1 420 421 422 423 424 1032 Next
Please log in or register to reply.
Live Events Refresh
Kung Fu Cup
11:00
#6
IntoTheiNu 1032
WardiTV877
RotterdaM408
Ryung 319
TKL 254
Rex146
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RotterdaM 408
Ryung 317
TKL 254
Rex 138
Vindicta 19
StarCraft: Brood War
Jaedong 2556
Horang2 1699
Mini 1157
EffOrt 858
Soma 687
firebathero 590
Stork 472
Larva 458
Light 434
Snow 412
[ Show more ]
ggaemo 393
Killer 382
actioN 323
Hyuk 321
ZerO 224
Soulkey 156
Zeus 140
Rush 133
Hyun 97
Sea.KH 67
ToSsGirL 65
PianO 59
Barracks 36
Sexy 35
[sc1f]eonzerg 35
Free 31
sSak 30
HiyA 29
sorry 19
JulyZerg 18
Movie 17
Rock 16
Terrorterran 16
GoRush 14
Sacsri 13
scan(afreeca) 12
Shine 12
yabsab 11
ajuk12(nOOB) 9
SilentControl 9
Icarus 8
Britney 0
Dota 2
Gorgc3904
qojqva1691
BananaSlamJamma106
ODPixel103
Counter-Strike
Fnx 1559
allub432
byalli65
kRYSTAL_34
Other Games
B2W.Neo989
hiko816
Lowko343
crisheroes289
QueenE79
ArmadaUGS23
ZerO(Twitch)10
Organizations
Dota 2
PGL Dota 2 - Main Stream177
StarCraft: Brood War
Kim Chul Min (afreeca) 4
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 15 non-featured ]
StarCraft 2
• StrangeGG 24
• intothetv
• AfreecaTV YouTube
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• blackmanpl 20
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• WagamamaTV359
League of Legends
• Nemesis3763
• TFBlade1599
Upcoming Events
PiGosaur Cup
9h 39m
GSL
19h 9m
Rogue vs Percival
Zoun vs Solar
Replay Cast
1d 9h
GSL
1d 19h
Cure vs TriGGeR
ByuN vs Bunny
KCM Race Survival
1d 19h
Replay Cast
2 days
Replay Cast
2 days
Escore
2 days
OSC
2 days
Replay Cast
3 days
[ Show More ]
Replay Cast
3 days
IPSL
4 days
Ret vs Art_Of_Turtle
Radley vs TBD
BSL
4 days
Replay Cast
4 days
uThermal 2v2 Circuit
4 days
BSL
5 days
IPSL
5 days
eOnzErG vs TBD
G5 vs Nesh
Replay Cast
5 days
Wardi Open
5 days
Afreeca Starleague
5 days
Jaedong vs Light
Monday Night Weeklies
6 days
Replay Cast
6 days
Sparkling Tuna Cup
6 days
Afreeca Starleague
6 days
Snow vs Flash
Liquipedia Results

Completed

Escore Tournament S2: W4
WardiTV TLMC #16
Nations Cup 2026

Ongoing

BSL Season 22
ASL Season 21
CSL 2026 SPRING (S20)
IPSL Spring 2026
KCM Race Survival 2026 Season 2
StarCraft2 Community Team League 2026 Spring
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026

Upcoming

Escore Tournament S2: W5
KK 2v2 League Season 1
Acropolis #4
BSL 22 Non-Korean Championship
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
Maestros of the Game 2
2026 GSL S2
RSL Revival: Season 5
2026 GSL S1
XSE Pro League 2026
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2026 TLnet. All Rights Reserved.