• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 14:00
CEST 20:00
KST 03:00
  • 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
TL.net Map Contest #22 - Voting & Ladder Map Selection2Code S Season 2 (2026) - RO8 Preview5[ASL21] Finals Preview: Two Legacies21Code S Season 2 (2026) - RO12 Preview2herO wins GSL Code S Season 1 (2026)7
Community News
StarCraft II 5.0.16 PTR Patch Notes may 26th116Weekly Cups (May 18-25): MaxPax wins doubles0Crank Gathers Season 4: BW vs SC2 Team League5Weekly Cups (May 11-17): Classic wins double1Code S Season 1 (2026) - RO8 Results2
StarCraft 2
General
TL.net Map Contest #22 - Voting & Ladder Map Selection StarCraft II 5.0.16 PTR Patch Notes may 26th The death of cheese, from a professional cheeser. Code S Season 2 (2026) - RO8 Preview TL Poll: How do you feel about the 5.0.16 PTR balance changes?
Tourneys
Maestros of The Game 2 announcement and schedule ! RSL Revival: Season 5 - Qualifiers and Main Event Crank Gathers Season 4: BW vs SC2 Team League GSL Code S Season 2 (2026) Sparkling Tuna Cup - Weekly Open Tournament
Strategy
[G] Having the right mentality to improve
Custom Maps
[D]RTS in all its shapes and glory <3 [A] Nemrods 1/4 players
External Content
The PondCast: SC2 News & Results Mutation # 528 Infection Detected Welcome to the External Content forum Mutation # 527 Hell Train
Brood War
General
Data needed BGH Auto Balance -> http://bghmmr.eu/ Quality of life changes in BW that you will like ? Soma's ASL Finals Review FlaShFTW vs A.Alm Grudge Match Event
Tourneys
[ASL21] Grand Finals [Megathread] Daily Proleagues Escore Tournament StarCraft Season 2 [BSL22] WB Final & LB Semis - Saturday 21:00 CEST
Strategy
Any training maps people recommend? Muta micro map competition [G] Hydra ZvZ: An Introduction Fighting Spirit mining rates
Other Games
General Games
Stormgate/Frost Giant Megathread Warcraft III: The Frozen Throne Nintendo Switch Thread ZeroSpace Megathread Path of Exile
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
Vanilla Mini Mafia Mafia Game Mode Feedback/Ideas TL Mafia Community Thread Five o'clock TL Mafia
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Trading/Investing Thread Things Aren’t Peaceful in Palestine Dating: How's your luck?
Fan Clubs
The herO Fan Club!
Media & Entertainment
[Manga] One Piece Anime Discussion Thread [Req][Books] Good Fantasy/SciFi books
Sports
McBoner: A hockey love story 2024 - 2026 Football Thread TeamLiquid Health and Fitness Initiative For 2023 Formula 1 Discussion
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread Facing Challenges in Mobile App Development
TL Community
The Automated Ban List
Blogs
Esportsmanship: How to NOT B…
TrAiDoS
Why RTS gamers make better f…
gosubay
ramps on octagon
StaticNine
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 3884 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
Hyrule19215 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
Hyrule19215 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 States17284 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 States17284 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
Monday Night Weeklies
16:00
#54
RotterdaM1271
TKL 471
TaKeTV 406
IndyStarCraft 195
BRAT_OK 125
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
ProTech1898
RotterdaM 1271
TKL 471
mouzHeroMarine 329
IndyStarCraft 195
BRAT_OK 125
UpATreeSC 86
EmSc Tv 15
StarCraft: Brood War
Dewaltoss 163
Free 149
Backho 89
firebathero 73
Zeus 59
sSak 23
IntoTheRainbow 17
sorry 14
soO 9
ajuk12(nOOB) 9
[ Show more ]
Sacsri 6
Dota 2
qojqva2581
Counter-Strike
fl0m2381
byalli934
x6flipin553
adren_tv72
Other Games
Grubby3691
singsing2732
Liquid`RaSZi1863
ceh9529
KnowMe177
B2W.Neo169
Liquid`VortiX97
XaKoH 91
Mew2King56
Trikslyr44
MindelVK10
Organizations
Other Games
BasetradeTV242
StarCraft 2
EmSc Tv 15
EmSc2Tv 15
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 15 non-featured ]
StarCraft 2
• Reevou 7
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• blackmanpl 13
• Michael_bg 5
• 80smullet 0
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• WagamamaTV398
Upcoming Events
Replay Cast
6h 1m
Sparkling Tuna Cup
16h 1m
WardiTV Spring Champion…
17h 1m
Maestros of the Game
21h 31m
The PondCast
1d 16h
Kung Fu Cup
1d 17h
uThermal 2v2 Circuit
1d 21h
Maestros of the Game
1d 21h
Replay Cast
2 days
Replay Cast
2 days
[ Show More ]
WardiTV Spring Champion…
2 days
Maestros of the Game
2 days
Replay Cast
3 days
uThermal 2v2 Circuit
3 days
Maestros of the Game
3 days
Replay Cast
4 days
Solar vs Classic
uThermal 2v2 Circuit
4 days
GSL
5 days
herO vs Rogue
Maru vs Cure
uThermal 2v2 Circuit
5 days
BSL
6 days
Replay Cast
6 days
Monday Night Weeklies
6 days
Liquipedia Results

Completed

KK 2v2 League Season 1
RSL Revival: Season 5
Heroes Pulsing #1

Ongoing

BSL Season 22
IPSL Spring 2026
KCM Race Survival 2026 Season 2
Acropolis #4
CSCL: Masked Kings S4
YSL S3
SCTL 2026 Spring
WardiTV Spring 2026
Maestros of the Game 2
2026 GSL S2
Murky Cup 2026
Stake Ranked Episode 2
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026

Upcoming

BSL 22 Non-Korean Championship
CSLAN 4
Blizzard Classic Cup 2026
Kung Fu Cup 2026 Grand Finals
CranK Gathers Season 4: BW vs SC2 Team League
HSC XXIX
uThermal 2v2 2026 Main Event
Heroes Pulsing #3
Heroes Pulsing #2
Esports World Cup 2026
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
Stake Ranked Episode 3
XSE Pro League 2026
IEM Cologne Major 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.