• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 16:15
CEST 22:15
KST 05:15
  • 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
Team Liquid Map Contest #22 - The Finalists11[ASL21] Ro16 Preview Pt1: Fresh Flow9[ASL21] Ro24 Preview Pt2: News Flash10[ASL21] Ro24 Preview Pt1: New Chaos0Team Liquid Map Contest #22 - Presented by Monster Energy21
Community News
2026 GSL Season 1 Qualifiers9Maestros of the Game 2 announced32026 GSL Tour plans announced8Weekly Cups (April 6-12): herO doubles, "Villains" prevail0MaNa leaves Team Liquid19
StarCraft 2
General
My $23k In USDT Were Recovered By SurgeHack Recove Team Liquid Map Contest #22 - The Finalists Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool MaNa leaves Team Liquid 2026 GSL Tour plans announced
Tourneys
2026 GSL Season 1 Qualifiers Sparkling Tuna Cup - Weekly Open Tournament Master Swan Open (Global Bronze-Master 2) SEL Doubles (SC Evo Bimonthly) $5,000 WardiTV TLMC tournament - Presented by Monster Energy
Strategy
Custom Maps
[D]RTS in all its shapes and glory <3 [A] Nemrods 1/4 players [M] (2) Frigid Storage
External Content
Mutation # 521 Memorable Boss The PondCast: SC2 News & Results Mutation # 520 Moving Fees Mutation # 519 Inner Power
Brood War
General
Data needed BGH Auto Balance -> http://bghmmr.eu/ BW General Discussion ASL21 General Discussion A cwal.gg Extension - Easily keep track of anyone
Tourneys
[ASL21] Ro16 Group B [Megathread] Daily Proleagues [ASL21] Ro16 Group A [ASL21] Ro24 Group F
Strategy
What's the deal with APM & what's its true value Any training maps people recommend? Fighting Spirit mining rates Muta micro map competition
Other Games
General Games
General RTS Discussion Thread Battle Aces/David Kim RTS Megathread Nintendo Switch Thread Stormgate/Frost Giant Megathread Starcraft Tabletop Miniature Game
Dota 2
The Story of Wings Gaming Official 'what is Dota anymore' discussion
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 Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread Canadian Politics Mega-thread European Politico-economics QA Mega-thread
Fan Clubs
The IdrA Fan Club
Media & Entertainment
Anime Discussion Thread [Req][Books] Good Fantasy/SciFi books [Manga] One Piece Movie Discussion!
Sports
2024 - 2026 Football Thread McBoner: A hockey love story Formula 1 Discussion Cricket [SPORT] Tokyo Olympics 2021 Thread
World Cup 2022
Tech Support
[G] How to Block Livestream Ads
TL Community
The Automated Ban List
Blogs
Reappraising The Situation T…
TrAiDoS
lurker extra damage testi…
StaticNine
Broowar part 2
qwaykee
Funny Nicknames
LUCKY_NOOB
Iranian anarchists: organize…
XenOsky
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2014 users

The Big Programming Thread - Page 8

Forum Index > General Forum
Post a Reply
Prev 1 6 7 8 9 10 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.
Kentor *
Profile Blog Joined December 2007
United States5784 Posts
Last Edited: 2010-07-11 11:46:19
July 11 2010 11:22 GMT
#141
Been using Ruby on Rails to make a forum software for the past two months for fun and for a site. Inspired by TL of course. Helped me a lot in understanding OOP and Ruby in general. This also got me interested in jQuery, server performance and scaling. Used Ruby to make a simple bot that kicks people in IRC for saying the wrong things as well. Some useful links for Ruby and RoR.

Ruby:
http://ruby-doc.org/

Ruby on Rails:
http://railscasts.com/
http://railslab.newrelic.com/scaling-rails

Thought about learning C or C++ but decided not to after seeing some tutorials :p
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
July 11 2010 12:20 GMT
#142
On July 11 2010 19:55 haduken wrote:
\n is a character literal, for the sake of platform sanity.

use cout << YourString << endl; format

fixed..




pg 633: I say "Manipulators taking istream and ostream are presented in and < ostream> respectively, and also in < iostream>. The rest of the standard manipulators are presented in < iomanip>." However, the standard disagrees and provides no manipulators in < iostream>, thus making this usage non-conforming:
	#include < iostream>
int main()
{
std::cout << "Hello world" << std::endl;
return 0;
}

Personally, I prefer the simpler (and valid)
	#include < iostream>
int main()
{
std::cout << "Hello world\n";
}

but I expect that there are enough programs depending on endl for the committee to seriously consider changing the standard to match the implementations.


from Stroustrup: Open issues for The C++ Programming Language (3rd Edition)

I personally go with Stroustrup. The inventor of the language most likely isn't horribly wrong.
\n also doesn't flush the stream when you might not want to.

For halting the program, I usually use:
char c ;
cin >> c ;

It requires you to enter a character and then hit enter (at least on Windows), so it's not exactly perfect. But for hackish small applications it's fine.

I would recommend you not to use anything that begins with an underscore (like _getch()), it's most likely not defined by the standard or implementation dependent. The standard also reseves most names with a leading underscore for the implementation.
I haven't heard of this conio.h before, it's a C header that is not part of the C++ standard headers. For the sake of learning proper C++ I'd use C++ headers where possible.
If you have a good reason to disagree with the above, please tell me. Thank you.
LuckyLuke43
Profile Joined May 2010
Norway169 Posts
Last Edited: 2010-07-11 14:25:54
July 11 2010 12:40 GMT
#143
Thanks spine! I was just about to make a post about halting the program before closing ;P

+ Show Spoiler +
#include <iostream>
using namespace std;

int main()
{

cout << "Tell me a number, and I will tell you if it is positive or negative!" << endl;

int choice;
cin >> choice;

if (choice > 0)
{
cout << "The number you have chosen is positive." << endl;
}

else if (choice < 0)
{
cout << "The number you have chosen is negative." << endl;
}

else
{
cout << "The number you have chosen is zero." << endl;
}

system("PAUSE");

return 0;

}


Okay so atleast I completed my 2nd assignment, but I'm not satisfied with this whole system("PAUSE") ordeal, if system is bad practice..
This worked:
char c;
cin >> c;
However, it does not give any visual warning. (?)

(Just for me, personally): I would like it to actually be optional, if the user wants to exit or do it over again. I did a small app earlier where I asked "play again? (y/n)", and if y it would CLS and start over. If n it would quit. Anyone got this small piece of code in their head? I can't remember -_- sry

EDIT: WOOP WOOP 100th post ;D
Our deepest fear is not that we are inadequate. Our deepest fear is that we are powerful beyond measure.
tofucake
Profile Blog Joined October 2009
Hyrule19203 Posts
Last Edited: 2010-07-11 12:52:25
July 11 2010 12:49 GMT
#144
char c;
cout << "Waiting for input" << endl;
cin >> c;


To be even more accurate, endl is \r\n and a buffer flush. \n is new line, and \r is carriage return. Most programs today automatically assume \n implies \r as well (compilers :|).

Specifically:
\n is a vertical shift
\r is a horizontal reset

So, it should be possible to do
cout << "some text\rblah\n";
cout << "some text\nblah" << endl;

to get
blah text
some text
blah


As for coding style, I prefer the following:
if(condition)
{
/* do
some
stuff
*/
} elseif(other condition) {
/* do
some
other
stuff
*/
} else {
/* ASYASDIO:JSAD
more stuff
*/
}


Splitting up sections of if's can cause headaches in more confusing programs, and I've always hated the { being on the same line as whatever it's opening (conditional, loop, etc).

@Whoever said get Qt setup: that's all fine and dandy, but don't forget about GTK+ and GTK2.

@spinesheath: C casting is taught over C++ casting because C++ casting is slower, uses more memory, and is far uglier. The plus side is that casting objects is simpler.
Liquipediaasante sana squash banana
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
July 11 2010 13:13 GMT
#145
If you want a visual warning then just this in front:
cout << "hit any key to exit\n" ;

or whatever you want. If you want to ask something, then just do it like above and add this at the end:
if(c == 'y') { /*do smth*/ }
else { /*do smth else*/ }


@tofucake:
static_cast is resolved at compile time, so it is in no way slower than C style casting. Internally there is no difference to a C style cast.
const_cast is exactly the same.
reinterpret_cast should be compile time too, but I would have to check that...
dynamic_cast is slower, but C-style casting with class pointers/references is highly unportable and implementation dependent. It might fail at any time.

C++ casts are indeed uglier and that speaks FOR them. Safe casts are performed implicitly anyways. Unsafe casts should avoided and if necessary be treated very carefully and because of that an ugly syntax is much better for this.
If you have a good reason to disagree with the above, please tell me. Thank you.
tdsamardzhiev
Profile Joined January 2010
Bulgaria9 Posts
July 11 2010 13:14 GMT
#146
some nice java tutorials here, for the OP:
javalessons.com

Splitting up sections of if's can cause headaches in more confusing programs, and I've always hated the { being on the same line as whatever it's opening (conditional, loop, etc).

Putting the opening bracket after else on a new line can be confusing, and if you put it in the same line and then if's opening bracket on a new line, that's kinda strange to me. Still, I don't think it matters that much with modern code editors - you can set, say, Eclipse, to format the code in whatever style you like by only selecting the text and clicking ctrl+shift+f.
Quote:
LuckyLuke43
Profile Joined May 2010
Norway169 Posts
Last Edited: 2010-07-11 14:32:02
July 11 2010 14:25 GMT
#147

int choice;
cin >> choice;

if (choice 1); // error C2143: syntax error : missing ')' before 'constant' as well as syntax error: ')'
{
cout << "Ah, chicken. A fine choice. To accompany this dish I would suggest either boiled rice with oyster sauce or a salad" << endl;
}

else // error C2181: illegal else without matching if
{
cout << "Invalid request! Sorry, I cannot help you with that one.." << endl;
}


Apparently something is horribly wrong here, becuase I get like 3 syntax errors, which I commented into the code. Those 3 lines, get those 3 syntax errors. I've tried googling it now for 30 minutes, but it only comes up in like - in comparison to my skills - super highlvl code ;PPP

Anyone? Thanks<3


EDIT: I removed the parenthesis around if (choice 1); and that removed the missing ')', but I got a new one now -> identifier 'choice' heh.

EDIT2: Solved! thank you haduken.
Our deepest fear is not that we are inadequate. Our deepest fear is that we are powerful beyond measure.
haduken
Profile Blog Joined April 2003
Australia8267 Posts
July 11 2010 14:30 GMT
#148
if(choice == 1)

You are missing the comparison operator.
Rillanon.au
LuckyLuke43
Profile Joined May 2010
Norway169 Posts
Last Edited: 2010-07-11 14:38:35
July 11 2010 14:32 GMT
#149
On July 11 2010 23:30 haduken wrote:
if(choice == 1)

You are missing the comparison operator.


Lol yeah, that was all it was. Hmm. I need to read up on comparison operators I guess. sry ;/ and thank you sir!

Edit: Mohaha, assignment No.3 done! *proud*

+ Show Spoiler +


#include <iostream>
using namespace std;

int main()
{

cout << "!!THE BEST DINNER APP EVER MADE!! - by Aleksander Jensen____ .^.'" << endl;
cout << " " << endl;
cout << "Pick a dish, and I will tell you to serve with it!" << endl;
cout << " " << endl;
cout << "1.Oven baked chicken" << endl;
cout << "2.Grilled Spareribs" << endl;
cout << "3.Boiled Cod" << endl;
cout << "Your choice: " << endl;

int choice;
cin >> choice;

if (choice == 1)
{
cout << "Ah, chicken. A fine choice. To accompany this dish I would suggest either boiled rice with oyster sauce or a salad" << endl;
}

if (choice == 2)
{
cout << "Excellent choice! Along with this dish, I would recommend a good BBQ potato salad." << endl;
}

if (choice == 3)
{
cout << "Interesting choice.. I didn't take you for a fish person! A fine choice nontheless. To this dish I would recommend boiled potatoes and a nice cream sauce with onions" << endl;
}
else
{
cout << "Invalid request! Sorry, I cannot help you with that one.." << endl;
}

char c;
cout << "Press any key followed by enter to exit the program.." << endl;
cin >> c;

return 0;

}

Our deepest fear is not that we are inadequate. Our deepest fear is that we are powerful beyond measure.
tofucake
Profile Blog Joined October 2009
Hyrule19203 Posts
July 11 2010 14:40 GMT
#150
Putting a semicolon after the if condition will cause the block in the following braces to be executed regardless, and also causes the error about else missing if.
Liquipediaasante sana squash banana
Craton
Profile Blog Joined December 2009
United States17281 Posts
July 11 2010 15:05 GMT
#151
On July 11 2010 20:22 Kentor wrote:
Thought about learning C or C++ but decided not to after seeing some tutorials :p


C# would be easier for you to learn some of the basics with, rotnek. Start easy, since this is all hobbyish for you.
twitch.tv/cratonz
fabiano
Profile Blog Joined August 2009
Brazil4644 Posts
July 11 2010 15:46 GMT
#152
On July 11 2010 18:56 Adeny wrote:
Show nested quote +
On July 11 2010 09:19 tofucake wrote:
I've done plenty with sockets in just about every language I've worked with. Anyway, what's your aim? Writing a website that does fancy loading without reloading is totally different from writing, say, a Battle.net bot.


Well, let's say I want to be able to pull data from websites, to find the temperature for today, or something to that effect. Or mayhaps build a bot, that would probably be fun. I'm talking about interacting with the websites, not building fancy websites in php/java/etc.


Not sure if someone answered you yet, but what you are looking for are webservices. Afaik there are 2 types of them SOAP and REST.

I've not take a look at REST so far because I've been working on SOAP services, so all I know about SOAP is that you will need to know:

- how to parse XML. There are libs that support it (libxml for C and the class NSXMLParser for Objective-C - but the latter isnt available for the iPhone only god knows why)

- how namespaces work

Here is a silly example:

TL is now offering a service which allows you to pull data from the Power Rank section. So, there will be a specification somewhere that tells you what are the parameters needed to pull such information.

Think of it like a method in Java: String getPowerRank(String player_name). You have to send to the server teh player name so it can process and reply which rank does that player have in the Power Rank. You do it through SOAP messages.

The request message (highly simplified):

<envelope>
<header> ... </header>
<body>
<getPowerRank>
<player_name>Jaedong</player_name>
</getPowerRank>

</body>
<envelope>


The reply message from the server (highly simplified):

<envelope>
<header> ... <header>
<body>
<getPowerRankResponse>
<Rank>2</Rank>
</getPowerRankResponse>

</body>
</envelope>


Now you will need to parse the reply from the server to get the Jaedong's position in the power rank.

PS: I'm also very new to the subject, so if there is wrong stuff here, please correct me because I want to learn too :D
"When the geyser died, a probe came out" - SirJolt
dimfish
Profile Blog Joined February 2010
United States663 Posts
July 11 2010 16:11 GMT
#153
On July 11 2010 20:22 Kentor wrote:
Thought about learning C or C++ but decided not to after seeing some tutorials :p


Hold, man, hold! The best reason for learning C/C++ is that it is the most powerful balance between a high-level language (forms of abstraction) and having a direct correlation with what the underlying hardware will actually do. Compilers are really good these days and C is about as far from the machine language as you can get but still be writing code that is almost exactly what will end up in the executable binary.

It's good for even small projects that need performance.
Craton
Profile Blog Joined December 2009
United States17281 Posts
Last Edited: 2010-07-11 16:56:26
July 11 2010 16:54 GMT
#154
On July 12 2010 00:46 fabiano wrote:
Not sure if someone answered you yet, but what you are looking for are webservices. Afaik there are 2 types of them SOAP and REST.


I meant to, but I forgot. For the stuff he's talking about, web services could definitely accomplish the task. I'm not really familiar with socket programming.

Your XML SOAP looked pretty accurate to me. Looking back at some of my code for a final project last semester, there wasn't much involved with consuming a simple one like temperature. You pretty much just added the service or web reference and then instantiated it in your program. Every web service should have documentation on what kind of output it sends, which lets you know what how to handle what's coming in. For data where you're getting multiple fields and multiple rows (e.g. movie showtimes), you'll find structs are convenient to help simplify things.

+ Show Spoiler [Web Services] +

Theaters and movie showtimes (last I used it they had removed the showtime part, rendering it fairly useless):
http://www.ignyte.com/webservices/ignyte.whatsshowing.webservice/moviefunctions.asmx?op=GetTheatersAndMovies

More web services:
http://www.xmethods.net/ve2/index.po
twitch.tv/cratonz
Catch]22
Profile Blog Joined July 2009
Sweden2683 Posts
July 11 2010 17:01 GMT
#155
On July 12 2010 01:11 dimfish wrote:
Show nested quote +
On July 11 2010 20:22 Kentor wrote:
Thought about learning C or C++ but decided not to after seeing some tutorials :p


Hold, man, hold! The best reason for learning C/C++ is that it is the most powerful balance between a high-level language (forms of abstraction) and having a direct correlation with what the underlying hardware will actually do. Compilers are really good these days and C is about as far from the machine language as you can get but still be writing code that is almost exactly what will end up in the executable binary.

It's good for even small projects that need performance.


Except if you want to add GUIs, GUIs are a pain in both of them, in that case, go Java.
uNiGNoRe
Profile Blog Joined June 2007
Germany1115 Posts
July 11 2010 17:31 GMT
#156
On July 12 2010 02:01 Catch]22 wrote:
Show nested quote +
On July 12 2010 01:11 dimfish wrote:
On July 11 2010 20:22 Kentor wrote:
Thought about learning C or C++ but decided not to after seeing some tutorials :p


Hold, man, hold! The best reason for learning C/C++ is that it is the most powerful balance between a high-level language (forms of abstraction) and having a direct correlation with what the underlying hardware will actually do. Compilers are really good these days and C is about as far from the machine language as you can get but still be writing code that is almost exactly what will end up in the executable binary.

It's good for even small projects that need performance.


Except if you want to add GUIs, GUIs are a pain in both of them, in that case, go Java.

Not necessarily. I used wxWidgets once for a C++ GUI and it's basically like Swing in Java. Very easy, platform independent and the documentation is good.
xLethargicax
Profile Blog Joined April 2010
United States469 Posts
July 11 2010 21:02 GMT
#157
I've always wanted to learn a programming language. Whenever I seem to try from an internet source or a book, I just get so bored.

The prospect of programming excites me, but I feel like there is no way for me to learn except for a class. Do you programmers just crave the thought of learning a language? or is it more enjoying the product?

Will I ever be a programmer =[[[[[[[[[?
catamorphist
Profile Joined May 2010
United States297 Posts
Last Edited: 2010-07-11 21:33:12
July 11 2010 21:19 GMT
#158
In my experience (I actually ask this, more or less, to programmers I interview) a strong majority, perhaps 80%, of programmers enjoy programming primarily as an avenue to "making cool shit". That's the profile of the traditional "started hacking on things as a teenager" kind of programmer. A minority enjoy just learning about interesting ideas and solving interesting problems.

There are lots of good programmers in the first group. If you subscribe to that philosophy, it's fine. You just need to think of cool shit to make, and then dedicate yourself to figuring out how to make it. If you're of average intelligence and you know how to post on a message board, there's no hurdle along the way that you will find impassable, I promise.

If you can't motivate yourself either to make cool shit or to learn about interesting ideas, and the only way you can imagine yourself bothering to do any of it is if you have a class in it, then you might someday be a barely competent programmer, but I doubt you will ever be a very good one. You need a pretty sweepingly broad amount of knowledge and experience to be a good programmer, and very few CS or software engineering programs will give you enough of either on their own. However, you will still be ahead of the large amount of people who take the classes and don't even learn anything then.
http://us.battle.net/sc2/en/profile/281144/1/catamorphist/
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
July 11 2010 21:45 GMT
#159
On July 12 2010 06:02 xLethargicax wrote:
I've always wanted to learn a programming language. Whenever I seem to try from an internet source or a book, I just get so bored.

The prospect of programming excites me, but I feel like there is no way for me to learn except for a class. Do you programmers just crave the thought of learning a language? or is it more enjoying the product?

Will I ever be a programmer =[[[[[[[[[?

It's perfectly fine to just decide to code some_application and then read up on what you need. It's probably not the most efficient way to learn a programming language, but it works. In the beginning the major source of information will be tutorials just to get the code to compile etc., then slowly the sources will shift towards google and structured reference sites. All you need to know is the topic you need information on.

If you choose that path you should try to complete your target application in small steps; get this part to run, then add another part and so on. If you can see results it will help you go on. You can't expect to do it all at once. Also expect to throw away most of your code because you found a much better design. Several times. That's standard practice (though if you do proper OOP you try to create code that you can keep even if you discard or reshuffle the overall design). If it the application turns out to be too complex for your current level, find something else. You definitely learned something and the next try will be easier.

Programming always involves a lot of failing, so don't be discouraged. You will learn from your failures.
If you have a good reason to disagree with the above, please tell me. Thank you.
Epsilon8
Profile Blog Joined May 2010
Canada173 Posts
July 11 2010 21:49 GMT
#160
+ Show Spoiler +
On July 11 2010 21:20 spinesheath wrote:
Show nested quote +
On July 11 2010 19:55 haduken wrote:
\n is a character literal, for the sake of platform sanity.

use cout << YourString << endl; format

fixed..



Show nested quote +

pg 633: I say "Manipulators taking istream and ostream are presented in and < ostream> respectively, and also in < iostream>. The rest of the standard manipulators are presented in < iomanip>." However, the standard disagrees and provides no manipulators in < iostream>, thus making this usage non-conforming:
	#include < iostream>
int main()
{
std::cout << "Hello world" << std::endl;
return 0;
}

Personally, I prefer the simpler (and valid)
	#include < iostream>
int main()
{
std::cout << "Hello world\n";
}

but I expect that there are enough programs depending on endl for the committee to seriously consider changing the standard to match the implementations.


from Stroustrup: Open issues for The C++ Programming Language (3rd Edition)

I personally go with Stroustrup. The inventor of the language most likely isn't horribly wrong.
\n also doesn't flush the stream when you might not want to.

For halting the program, I usually use:
char c ;
cin >> c ;

It requires you to enter a character and then hit enter (at least on Windows), so it's not exactly perfect. But for hackish small applications it's fine.

I would recommend you not to use anything that begins with an underscore (like _getch()), it's most likely not defined by the standard or implementation dependent. The standard also reseves most names with a leading underscore for the implementation.
I haven't heard of this conio.h before, it's a C header that is not part of the C++ standard headers. For the sake of learning proper C++ I'd use C++ headers where possible.



conio.h is a legacy library used on Windows.net and Borland. Its the counter part to linux's curses.h for GNU. The new and 'improved' version of conio.h is windows.h.
If you wish to travel far and fast, travel light. Take off all your envies, jealousies, unforgiveness, selfishness, and fears.
Prev 1 6 7 8 9 10 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 3h 45m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
EmSc Tv 18
StarCraft: Brood War
Britney 20791
Soma 320
Rush 171
firebathero 145
Soulkey 128
ggaemo 74
Hyun 31
Free 28
Dota 2
canceldota49
LuMiX1
League of Legends
goblin57
Counter-Strike
fl0m7708
Heroes of the Storm
Liquid`Hasu363
Other Games
summit1g5857
Grubby2693
FrodaN800
Beastyqt609
B2W.Neo309
KnowMe192
C9.Mang0143
ArmadaUGS106
ZombieGrub54
Trikslyr49
QueenE42
Mew2King23
KawaiiRice1
Organizations
Counter-Strike
PGL77
StarCraft 2
angryscii 49
EmSc Tv 18
EmSc2Tv 18
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 23 non-featured ]
StarCraft 2
• StrangeGG 80
• davetesta33
• Shameless 32
• IndyKCrew
• sooper7s
• AfreecaTV YouTube
• Migwel
• intothetv
• LaughNgamezSOOP
• Kozan
StarCraft: Brood War
• blackmanpl 44
• HerbMon 22
• 80smullet 19
• FirePhoenix10
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota2320
League of Legends
• TFBlade1349
• Doublelift855
Other Games
• imaqtpie901
• Scarra523
• Shiphtur89
Upcoming Events
Replay Cast
3h 45m
The PondCast
13h 45m
WardiTV Map Contest Tou…
14h 45m
CranKy Ducklings
1d 3h
Escore
1d 13h
WardiTV Map Contest Tou…
1d 14h
OSC
1d 18h
Korean StarCraft League
2 days
CranKy Ducklings
2 days
WardiTV Map Contest Tou…
2 days
[ Show More ]
IPSL
2 days
WolFix vs nOmaD
dxtr13 vs Razz
BSL
2 days
Sparkling Tuna Cup
3 days
WardiTV Map Contest Tou…
3 days
Ladder Legends
3 days
BSL
3 days
IPSL
3 days
JDConan vs TBD
Aegong vs rasowy
Replay Cast
4 days
Replay Cast
4 days
Wardi Open
4 days
Afreeca Starleague
4 days
Bisu vs Ample
Jaedong vs Flash
Monday Night Weeklies
4 days
RSL Revival
5 days
Afreeca Starleague
5 days
Barracks vs Leta
Royal vs Light
WardiTV Map Contest Tou…
5 days
RSL Revival
6 days
Liquipedia Results

Completed

Proleague 2026-04-14
RSL Revival: Season 4
NationLESS Cup

Ongoing

BSL Season 22
ASL Season 21
CSL 2026 SPRING (S20)
IPSL Spring 2026
StarCraft2 Community Team League 2026 Spring
Nations Cup 2026
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
IEM Kraków 2026

Upcoming

KCM Race Survival 2026 Season 2
Escore Tournament S2: W3
Escore Tournament S2: W4
Acropolis #4
BSL 22 Non-Korean Championship
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
RSL Revival: Season 5
2026 GSL S1
WardiTV TLMC #16
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.