• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 18:33
CEST 00:33
KST 07:33
  • 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
[ASL22] Ro24 Preview: Siren's Call8[ASL22] Ro24 Preview: Summer's End9Serral wins HomeStory Cup 2915Serral wins Maestros of the Game 244ByuL, and the Limitations of Standard Play3
Community News
Official StarCraft website teases new content ahead of BlizzCon?61Stellar Fest TWO the Moon (Dec 16-20)8Weekly Cups (August 24-30): Patches' balance mod takes over3New 3v3 BGH Ladder (and more) on ShieldBattery!40Weekly Cups (August 17-23): Zerg dominate the week6
StarCraft 2
General
SC4ALL: II Winner Will Earn a Spot at HSC 30! Nexon wins bid to develop StarCraft IP content, distribute Overwatch mobile game Weekly Cups (August 24-30): Patches' balance mod takes over Balance hotfix patch 5.0.16b (July 16) September World Ranking: herO leads, Serral climbs
Tourneys
IntoTheTV X SOOP SC2 League : Weekly & Monthly SC2 INu's Battles#20 [BO.9] 2026 GSTL Announcement Stellar Fest TWO the Moon (Dec 16-20) PIG STY FESTIVAL 8.0! (13 - 23 August)
Strategy
[G] Having the right mentality to improve
Custom Maps
Nexus Wars 2021 GUIDE [M] (2) Industrial Park
External Content
Mutation # 541 Binary Choice The PondCast: SC2 News & Results Mutation # 540 Dodge This Mutation # 539 Thunder Dome
Brood War
General
Official StarCraft website teases new content ahead of BlizzCon? BW General Discussion ASL22 General Discussion [Personal Project Share] Terran Defense v0.60 BGH Auto Balance -> http://bghmmr.eu/
Tourneys
KCM Race Survival 2026 Season 3 Brood War in Budapest ! WORTEX 2026 BW Finals [Megathread] Daily Proleagues BSL LAN Party - Kraków 29-30 August - OPEN SIGNUPS
Strategy
Replay Review Process - What do you do? Game Theory for Starcraft Odyssey Mineral Stack Saturation Fighting Spirit mining rates
Other Games
General Games
Nintendo Switch Thread Diablo IV EVE Corporation [Maplestory Hardcore] Let's Play~!! General RTS Discussion Thread
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
[TL LoL EUW IHs] Teemo shall perish TSM pausing esports and CLG Dead
Heroes of the Storm
Heroes of the Storm 2.0
Hearthstone
Deck construction bug
TL Mafia
TL Mafia Power Rank TL Mafia Community Thread NeO.D_StephenKing vs This Guy From 1 Million Dance
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Canadian Politics Mega-thread Artificial Intelligence Thread UK Politics Mega-thread
Fan Clubs
MarineLorD Fan Club The Creator Fan Club The ShoWTimE Fan Club
Media & Entertainment
Movie Discussion! Anime Discussion Thread
Sports
Football (Soccer) Thread TeamLiquid Health and Fitness Initiative For 2023 MLB/Baseball 2023 NBA General Discussion
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Northern Ireland Global Starcraft
Blogs
Dreaming of BW patches (mod…
c3rberUs
Regacy Esports: The Bh…
regacyesports
Violent Games and Crime Rate…
TrAiDoS
LOCKPICKING NOOB
LUCKY_NOOB
Cathedral Of CS And NY pizza a…
FuDDx
Customize Sidebar...

Website Feedback

Closed Threads



Active: 5699 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
Poland17838 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
Poland17838 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
Poland17838 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
Next event in 2m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
JuggernautJason83
ProTech57
StarCraft: Brood War
Britney 12753
Shuttle 563
White-Ra 142
Hyuk 69
ajuk12(nOOB) 8
Dota 2
capcasts98
League of Legends
Doublelift3976
Other Games
summit1g3967
Grubby2133
shahzam643
hungrybox455
XaKoH 207
C9.Mang0174
KnowMe124
Mew2King97
ArmadaUGS77
ViBE53
Trikslyr42
minikerr11
Organizations
Other Games
gamesdonequick1548
angryscii14
[ Show 12 non-featured ]
StarCraft 2
• musti20045 26
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• Migwel
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• masondota21078
Other Games
• imaqtpie879
• Shiphtur178
Upcoming Events
The PiG Daily
2m
BASILISK vs Onsyde Gaming
Replay Cast
1h 27m
Rogue vs Cure
Replay Cast
2h 27m
Big Brain Bouts
11h 27m
Garitos vs ArT
Lambo vs Percival
TriGGeR vs ByuN
Sparkling Tuna Cup
1d 11h
OSC
1d 13h
Shopify Rebellion Sundays
1d 16h
Mixu vs TBD
Spirit vs TBD
Clem vs TBD
Patches Events
1d 17h
OSC
2 days
Afreeca Starleague
2 days
Soma vs Shuttle
BeSt vs Rush
[ Show More ]
WardiTV Weekly
2 days
Afreeca Starleague
3 days
Leta vs ggaemo
Jaedong vs Queen
GSL
3 days
PiGosaur Cup
4 days
Kung Fu Cup
4 days
Replay Cast
5 days
The PondCast
5 days
KCM Race Survival
5 days
Escore
6 days
IntoTheTV X SOOP
6 days
Liquipedia Results

Completed

Proleague 2026-09-02
PiG Sty Festival 8.0
Light Tournament 2026

Ongoing

KCM Race Survival 2026 Season 3
K-JUNGMAN
ASL Season 22
Super Anchor Qualifying S3
CSL 2026 AUTUMN (S22)
RSL Revival: Season 6
Calamity Invitational
Big Dog Cup 2026 Div 1
BLAST Open Fall 2026
Esports World Cup 2026
Esports World Cup 2026: LCQ
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
Stake Ranked Episode 3
XSE Pro League 2026

Upcoming

Acropolis #5
Acropolis #5 - TRS
Escore Tournament S3: King of Kings
Blizzard Classic Cup 2026
Acropolis #5 - GSA
Acropolis #5 - GSB
Acropolis #5 - GSC
HSC XXX
Stellar Fest 2: Lunar Cup
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
RSL Offline Finals
BLAST Rivals Fall 2026
IEM Beijing 2026
Stake Ranked Episode 5
PGL Masters Bucharest 2026
1win Private Club #2
Thunderpick World Champ. '26
ESL Pro League Season 24
Stake Ranked Episode 4
1win Private Club #1
Logitech G Play Connect 2026
SL StarSeries Fall 2026
FISSURE Playground #3
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.