• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 04:58
CET 10:58
KST 18:58
  • 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
RSL Season 3 - Playoffs Preview0RSL Season 3 - RO16 Groups C & D Preview0RSL Season 3 - RO16 Groups A & B Preview2TL.net Map Contest #21: Winners12Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10
Community News
Weekly Cups (Nov 24-30): MaxPax, Clem, herO win2BGE Stara Zagora 2026 announced15[BSL21] Ro.16 Group Stage (C->B->A->D)4Weekly Cups (Nov 17-23): Solar, MaxPax, Clem win3RSL Season 3: RO16 results & RO8 bracket13
StarCraft 2
General
Maestros of the Game: Live Finals Preview (RO4) BGE Stara Zagora 2026 announced Weekly Cups (Nov 24-30): MaxPax, Clem, herO win SC2 Proleague Discontinued; SKT, KT, SGK, CJ disband Information Request Regarding Chinese Ladder
Tourneys
$5,000+ WardiTV 2025 Championship Constellation Cup - Main Event - Stellar Fest RSL Revival: Season 3 Tenacious Turtle Tussle [Alpha Pro Series] Nice vs Cure
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 502 Negative Reinforcement Mutation # 501 Price of Progress Mutation # 500 Fright night Mutation # 499 Chilling Adaptation
Brood War
General
Data analysis on 70 million replays Which season is the best in ASL? [ASL20] Ask the mapmakers — Drop your questions BW General Discussion FlaSh's Valkyrie Copium
Tourneys
[Megathread] Daily Proleagues [BSL21] RO16 Group B - Sunday 21:00 CET [BSL21] RO16 Group C - Saturday 21:00 CET Small VOD Thread 2.0
Strategy
Game Theory for Starcraft How to stay on top of macro? Current Meta PvZ map balance
Other Games
General Games
Stormgate/Frost Giant Megathread The Perfect Game Path of Exile Nintendo Switch Thread Should offensive tower rushing be viable in RTS games?
Dota 2
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 Heroes of StarCraft mini-set
TL Mafia
Mafia Game Mode Feedback/Ideas TL Mafia Community Thread
Community
General
Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine US Politics Mega-thread The Big Programming Thread Artificial Intelligence Thread
Fan Clubs
White-Ra Fan Club
Media & Entertainment
[Manga] One Piece Movie Discussion! Anime Discussion Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
Where to ask questions and add stream? The Automated Ban List
Blogs
James Bond movies ranking - pa…
Topin
Esports Earnings: Bigger Pri…
TrAiDoS
Thanks for the RSL
Hildegard
Saturation point
Uldridge
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1115 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
Poland17491 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
Poland17491 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
Poland17491 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 2h 2m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
SortOf 218
ProTech121
StarCraft: Brood War
Shuttle 1164
Horang2 1094
actioN 646
Larva 414
Mini 342
Hyun 213
Sharp 135
Killer 125
Pusan 117
Zeus 115
[ Show more ]
ZerO 103
Rush 100
Light 97
PianO 82
Dewaltoss 71
sorry 56
ToSsGirL 28
soO 26
NotJumperer 21
ajuk12(nOOB) 7
Hm[arnc] 6
Dota 2
XaKoH 432
XcaliburYe161
League of Legends
JimRising 406
C9.Mang0233
Counter-Strike
olofmeister1188
shoxiejesuss570
Super Smash Bros
Westballz18
Other Games
summit1g11825
Fuzer 79
ZerO(Twitch)5
Organizations
Other Games
gamesdonequick678
StarCraft: Brood War
UltimateBattle 69
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• Berry_CruncH251
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• lizZardDota253
League of Legends
• Jankos1358
• Stunt543
Upcoming Events
Wardi Open
2h 2m
StarCraft2.fi
7h 2m
Replay Cast
14h 2m
The PondCast
1d
OSC
1d 6h
Demi vs Mixu
Nicoract vs TBD
Babymarine vs MindelVK
ForJumy vs TBD
Shameless vs Percival
Replay Cast
1d 14h
Korean StarCraft League
2 days
CranKy Ducklings
3 days
SC Evo League
3 days
BSL 21
3 days
Sziky vs OyAji
Gypsy vs eOnzErG
[ Show More ]
OSC
3 days
Solar vs Creator
ByuN vs Gerald
Percival vs Babymarine
Moja vs Krystianer
EnDerr vs ForJumy
sebesdes vs Nicoract
Sparkling Tuna Cup
4 days
OSC
4 days
BSL 21
4 days
Bonyth vs StRyKeR
Tarson vs Dandy
Replay Cast
4 days
Wardi Open
5 days
StarCraft2.fi
5 days
Replay Cast
5 days
StarCraft2.fi
6 days
PiGosaur Monday
6 days
Liquipedia Results

Completed

Proleague 2025-11-30
RSL Revival: Season 3
Light HT

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
YSL S2
BSL Season 21
CSCL: Masked Kings S3
Slon Tour Season 2
Acropolis #4 - TS3
META Madness #9
SL Budapest Major 2025
ESL Impact League Season 8
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2

Upcoming

BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
Bellum Gens Elite Stara Zagora 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
Kuram Kup
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual
eXTREMESLAND 2025
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 © 2025 TLnet. All Rights Reserved.