• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 21:32
CEST 03:32
KST 10:32
  • 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
Serral wins HomeStory Cup 2914Serral wins Maestros of the Game 243ByuL, and the Limitations of Standard Play3Team Liquid Map Contest #22: Results and Winners7Code S Season 2 (2026): RO4 and Finals Preview12
Community News
Balance hotfix patch 5.0.16b (July 16)36Reynor: GSL Loss Wasn't About Preparation Format16[IPSL] Spring 2026 Grand Finals - This Weekend!5Weekly Cups (July 6 - 12): Protoss strike back12BSL Season 22 Full Overview & Conclusion8
StarCraft 2
General
Balance hotfix patch 5.0.16b (July 16) [D] Wireframe Casting Removed Clem: "I don't have that much hope in Blizzard" Reynor: GSL Loss Wasn't About Preparation Format Is the larve respawn broken?
Tourneys
Master Swan Open (Global Bronze-Master 2) WardiTV Summer Cup 2026 GSL CK #5 Race War RSL Revival: Season 6 - Qualifiers and Main Event HomeStory Cup 29
Strategy
[G] Having the right mentality to improve
Custom Maps
New Map Maker - Looking for Advice - Love or Hate Work In Progress Melee Maps [D]RTS in all its shapes and glory <3
External Content
The PondCast: SC2 News & Results Mutation # 534 Burning Evacuation Mutation # 533 Die Together Mutation # 532 Nuclear Family
Brood War
General
Etiquete rules in Asl? BW General Discussion Recent recommended BW games Recommended FPV games (post-KeSPA) Pros Debate: Zerg Unfairly Nerfed? (ASL S22 map)
Tourneys
Escore Tournament - Season 3 Small VOD Thread 2.0 [IPSL] Spring 2026 Grand Finals - This Weekend! [Megathread] Daily Proleagues
Strategy
Fighting Spirit mining rates Simple Questions, Simple Answers Creating a full chart of Zerg builds Relatively freeroll strategies
Other Games
General Games
General RTS Discussion Thread Path of Exile Nintendo Switch Thread Beyond All Reason Stormgate/Frost Giant Megathread
Dota 2
Looking for a Dota Mentor Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug
TL Mafia
TL Mafia Power Rank NeO.D_StephenKing vs This Guy From 1 Million Dance TL Mafia Community Thread Vanilla Mini Mafia
Community
General
US Politics Mega-thread The Games Industry And ATVI Russo-Ukrainian War Thread UK Politics Mega-thread YouTube Thread
Fan Clubs
The IdrA Fan Club The HerO Fan Club!
Media & Entertainment
Movie Discussion! Anime Discussion Thread [Req][Books] Good Fantasy/SciFi books Series you have seen recently...
Sports
2024 - 2026 Football Thread MLB/Baseball 2023 McBoner: A hockey love story Tennis[sport] Formula 1 Discussion
World Cup 2022
Tech Support
Simple Questions Simple Answers FPS when play League Of Legend on laptop How to clean a TTe Thermaltake keyboard?
TL Community
Northern Ireland Global Starcraft The Automated Ban List
Blogs
Poker (part 2)
Nebuchad
The Experiences We Want and …
TrAiDoS
An Exploration of th…
waywardstrategy
ramps on octagon
StaticNine
Funny Nicknames
LUCKY_NOOB
Evil Gacha Games and the…
ffswowsucks
StarCraft improvement
iopq
Customize Sidebar...

Website Feedback

Closed Threads



Active: 7067 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
Poland17794 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
Poland17794 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
Poland17794 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
Replay Cast
00:00
Crank Gathers S4: Group Stage
CranKy Ducklings69
LiquipediaDiscussion
PSISTORM Gaming Misc
23:00
FSL playoffsTeamLeague STvsASH
Liquipedia
The PiG Daily
22:00
Best Games of SC
ByuN vs Clem
MaxPax vs TBD
Serral vs ByuN
GgMaChine vs Bunny
PiGStarcraft583
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
PiGStarcraft583
ViBE252
RuFF_SC2 60
FoxeR 34
StarCraft: Brood War
Leta 1279
Mong 122
NaDa 34
Dota 2
NeuroSwarm160
Counter-Strike
summit1g8144
taco 190
Super Smash Bros
Mew2King337
Heroes of the Storm
Trikslyr67
Other Games
gofns10805
tarik_tv3683
shahzam902
XaKoH 118
ToD113
PPMD25
Organizations
Other Games
gamesdonequick1763
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 15 non-featured ]
StarCraft 2
• Hupsaiya 65
• davetesta28
• RyuSc2 25
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• Pr0nogo 2
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Other Games
• Shiphtur648
Upcoming Events
RSL Revival
7h 28m
Clem vs Lambo
Scarlett vs Cure
CranKy Ducklings
8h 28m
Epic.LAN
11h 28m
IPSL
14h 28m
Dragon vs Hawk
RSL Revival
1d 7h
Classic vs Trap
herO vs SHIN
Sparkling Tuna Cup
1d 8h
OSC
1d 11h
IPSL
1d 14h
Bonyth vs Ret
WardiTV Weekly
2 days
Monday Night Weeklies
2 days
[ Show More ]
PiGosaur Cup
3 days
The PondCast
4 days
Replay Cast
5 days
CrankTV Team League
5 days
Replay Cast
5 days
CrankTV Team League
6 days
Liquipedia Results

Completed

Escore Tournament S3: W3
HSC XXIX
Eternal Conflict S2 E2

Ongoing

IPSL Spring 2026
Acropolis #4
YSL S3
CSL 2026 Summer (S21)
KCM Race Survival 2026 Season 3
ASL S22 SEASON OPEN Day 1
RSL Revival: Season 6
CranK Gathers Season 4: BW vs SC2 Team League
SCTL 2026 Spring
Stake Ranked Episode 3
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

Upcoming

Escore Tournament S3: W4
ASL S22 SEASON OPEN Day 2
Escore Tournament S3: W5
CSLAN 4
Blizzard Classic Cup 2026
HSC XXX
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
Light Tournament 2026
Eternal Conflict S2 Finale
Eternal Conflict S2 E3
Logitech G Connect 2026
StarSeries Fall 2026
FISSURE Playground #5
BLAST Open Fall 2026
Esports World Cup 2026
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
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.