• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 09:52
CEST 15:52
KST 22:52
  • 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
Maestros of the Game: Week 1/Play-in Preview10[ASL20] Ro24 Preview Pt2: Take-Off7[ASL20] Ro24 Preview Pt1: Runway132v2 & SC: Evo Complete: Weekend Double Feature4Team Liquid Map Contest #21 - Presented by Monster Energy13
Community News
LiuLi Cup - September 2025 Tournaments2Weekly Cups (August 25-31): Clem's Last Straw?39Weekly Cups (Aug 18-24): herO dethrones MaxPax6Maestros of The Game—$20k event w/ live finals in Paris48Weekly Cups (Aug 11-17): MaxPax triples again!15
StarCraft 2
General
Maestros of the Game: Week 1/Play-in Preview Team Liquid Map Contest #21 - Presented by Monster Energy Weekly Cups (August 25-31): Clem's Last Straw? Heaven's Balance Suggestions (roast me) Geoff 'iNcontroL' Robinson has passed away
Tourneys
RSL: Revival, a new crowdfunded tournament series Maestros of The Game—$20k event w/ live finals in Paris LiuLi Cup - September 2025 Tournaments Sea Duckling Open (Global, Bronze-Diamond) Sparkling Tuna Cup - Weekly Open Tournament
Strategy
Custom Maps
External Content
Mutation # 489 Bannable Offense Mutation # 488 What Goes Around Mutation # 487 Think Fast Mutation # 486 Watch the Skies
Brood War
General
BW General Discussion ASL20 General Discussion BGH Auto Balance -> http://bghmmr.eu/ Buy Oxycontin, Xanax, Adderall, Rivotril, Adipex, Pros React To: herO's Baffling Game
Tourneys
Is there English video for group selection for ASL [Megathread] Daily Proleagues Small VOD Thread 2.0 [ASL20] Ro24 Group F
Strategy
Simple Questions, Simple Answers Muta micro map competition Fighting Spirit mining rates [G] Mineral Boosting
Other Games
General Games
General RTS Discussion Thread Stormgate/Frost Giant Megathread Nintendo Switch Thread Path of Exile Warcraft III: The Frozen Throne
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
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread Canadian Politics Mega-thread YouTube Thread
Fan Clubs
The Happy Fan Club!
Media & Entertainment
Anime Discussion Thread Movie Discussion! [Manga] One Piece [\m/] Heavy Metal Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread High temperatures on bridge(s)
TL Community
The Automated Ban List TeamLiquid Team Shirt On Sale
Blogs
Collective Intelligence: Tea…
TrAiDoS
A very expensive lesson on ma…
Garnet
hello world
radishsoup
Lemme tell you a thing o…
JoinTheRain
RTS Design in Hypercoven
a11
Evil Gacha Games and the…
ffswowsucks
INDEPENDIENTE LA CTM
XenOsky
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1505 users

The Big Programming Thread - Page 226

Forum Index > General Forum
Post a Reply
Prev 1 224 225 226 227 228 1031 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.
Frigo
Profile Joined August 2009
Hungary1023 Posts
January 06 2013 10:27 GMT
#4501
On January 06 2013 03:39 netherh wrote:
Show nested quote +
On January 06 2013 03:09 heishe wrote:

Sorry, but if you need a review of something that basic, you should fail those interview questions. I hope you didn't say that you have experience working with C++, or knowledge of C++, or something like that in your application, because that would be a lie.



That's pretty harsh - he's looking for a review of something that shouldn't really be used in modern C++ because of how icky it is.

Show nested quote +


char *chararray = "hello"; //this is just a short way of writing the following code:
//char *chararray = new char[6];
chararray[3] = 's'; //the entire string is now "helso"



For example, I think this is actually wrong.

IIRC "hello" is a string literal - a const char* stored statically, not in memory allocated with new. This means that trying to change a character like that is actually undefined behaviour...


Ye, it's a const char*, you need a const_cast<char*> at least, and that's definitely undefined behaviour.
http://www.fimfiction.net/user/Treasure_Chest
icystorage
Profile Blog Joined November 2008
Jollibee19350 Posts
January 06 2013 10:38 GMT
#4502
LOL at the bike post. wtf.
LiquidDota StaffAre you ready for a Miracle-? We are! The International 2017 Champions!
waxypants
Profile Blog Joined September 2009
United States479 Posts
Last Edited: 2013-01-06 19:46:44
January 06 2013 16:12 GMT
#4503
On January 06 2013 09:01 heishe wrote:
Show nested quote +
On January 06 2013 03:39 netherh wrote:
On January 06 2013 03:09 heishe wrote:

Sorry, but if you need a review of something that basic, you should fail those interview questions. I hope you didn't say that you have experience working with C++, or knowledge of C++, or something like that in your application, because that would be a lie.



That's pretty harsh - he's looking for a review of something that shouldn't really be used in modern C++ because of how icky it is.



char *chararray = "hello"; //this is just a short way of writing the following code:
//char *chararray = new char[6];
chararray[3] = 's'; //the entire string is now "helso"



For example, I think this is actually wrong.

IIRC "hello" is a string literal - a const char* stored statically, not in memory allocated with new. This means that trying to change a character like that is actually undefined behaviour...


Well, it compiles like that. I'm not even sure if the standard says that changing the value of a constant (e.g. via const_cast) is undefined behavior. Either way, on all machines that you can get this code to compile on, it will run without problems or unexpected behavior, because statically stored things don't get stored any differently than stuff that is created on the heap. It's still just some address in memory space.

Of course if you were to create the array using new, the locations of the two arrays would be different: One would be "above the stack" where static stuff like that is usually allocated, and the other would be somewhere in heap memory. I just wanted to illustrate what "hello" does in terms of functionality.


It's compiler dependent I'm sure, but in MSVC the string literal is stored in a global read-only data section. When you run that code, you get an access violation. I guess part of the reason it's read-only is that MSVC will reuse global string literals if possible. For example in this code:


char * ptr1 = "Lol";
char * ptr2 = "Lol";


ptr1 and ptr2 will point to the same memory address.

Another interesting case you didn't mention is something like this:


char ptr1[4] = "Lol"; //same as char ptr1[4] = { 'L', 'o', 'l', '\0' }; which is also the same as char ptr1[4] = { 'L', 'o', 'l' };
char * ptr2 = ptr1;
char * ptr3 = &ptr1;


In this case, the string is stored on the stack. So with your 2 examples, the string can be stored on the stack, heap, or some static location. Another interesting thing to note is that the type is not actually a pointer, the type is "char[4]". Whenever you use the variable though, it generally will automatically decay into a pointer. A fun case where it doesn't decay automatically is the 3rd line. It does on the 2nd line though, so ptr2 and ptr3 are actually the same.

EDIT:

Just for fun I ran this code:

int main()
{
char * str1 = "Lol";
char * str2 = "Lol";
DWORD old_protect;

VirtualProtect(str1, strlen(str1) + 1, PAGE_READWRITE, &old_protect);

printf("%s\n%s\n", str1, str2);

str1[1] = 'a';

printf("%s\n%s\n", str1, str2);

return 0;
}

and got:

Lol
Lol
Lal
Lal

as expected.

I also tried it with str1 and str2 set like this:

char * str1 = "Lol";
char * str2 = "LolLol";

I was hoping that MSVC would optimize and set str1 to point into the middle of str2, but no such luck.
WindWolf
Profile Blog Joined July 2012
Sweden11767 Posts
January 07 2013 15:28 GMT
#4504
How did I miss that TL had this kind of thread?

I love programming. In high-school, I read Java for two years and I'm currently in university studying game design and programming, where we are reading C++ and SDL at the moment. I also got one book on Perl and one on Android as Christmas present.

---
I'm wondering one thing about Visual Studio 2010 on 64-bit Windows 7. Have anyone experienced that it might freeze when you run a C++ program in debug-mode and you legitimately end it? Had happened for me two days in a row now.

(I'm using VC2010 because my current programming teacher told us to)
EZ4ENCE
waxypants
Profile Blog Joined September 2009
United States479 Posts
January 07 2013 16:08 GMT
#4505
On January 08 2013 00:28 WindWolf wrote:
How did I miss that TL had this kind of thread?

I love programming. In high-school, I read Java for two years and I'm currently in university studying game design and programming, where we are reading C++ and SDL at the moment. I also got one book on Perl and one on Android as Christmas present.

---
I'm wondering one thing about Visual Studio 2010 on 64-bit Windows 7. Have anyone experienced that it might freeze when you run a C++ program in debug-mode and you legitimately end it? Had happened for me two days in a row now.

(I'm using VC2010 because my current programming teacher told us to)


What do you mean legitimately end it? It tends to freeze up for a bit if you close it by hitting the "X". If you hit the stop button (or hit Shift+F5), it will exit more quickly.
WindWolf
Profile Blog Joined July 2012
Sweden11767 Posts
January 07 2013 16:16 GMT
#4506
On January 08 2013 01:08 waxypants wrote:
Show nested quote +
On January 08 2013 00:28 WindWolf wrote:
How did I miss that TL had this kind of thread?

I love programming. In high-school, I read Java for two years and I'm currently in university studying game design and programming, where we are reading C++ and SDL at the moment. I also got one book on Perl and one on Android as Christmas present.

---
I'm wondering one thing about Visual Studio 2010 on 64-bit Windows 7. Have anyone experienced that it might freeze when you run a C++ program in debug-mode and you legitimately end it? Had happened for me two days in a row now.

(I'm using VC2010 because my current programming teacher told us to)


What do you mean legitimately end it? It tends to freeze up for a bit if you close it by hitting the "X". If you hit the stop button (or hit Shift+F5), it will exit more quickly.

Sorry, wasn't clear enough
In short, I have been writing a simple SDL-game where the game automatically ends if the player's character collides with a certain kind of enemy. Then it exits the main game loop, clear up all resources and if you beat the high-score, it asks you to fill in your name which it writes to a txt-file

And by freezing, I meant that the entire VC becomes unresponsive
EZ4ENCE
stichtom
Profile Joined March 2011
Italy695 Posts
January 08 2013 00:20 GMT
#4507
Hi everyone, i have a question for you ( it's just a curiosity ):
Do your teachers still teach Pascal in high-school? Because in italy they do and i don't know if it is a bad or a good thing. I know Pascal is a very good/easy languge at the beginning but nowadays there are a lot of better languages (Like phyton) that aren't that hard even for beginners
Favourite player: IM.MVP ~ Favorite league: IPL
Craton
Profile Blog Joined December 2009
United States17250 Posts
Last Edited: 2013-01-08 00:22:51
January 08 2013 00:22 GMT
#4508
My high school did BASIC when I was there and then migrated to VB.NET.
twitch.tv/cratonz
yeastiality
Profile Joined April 2011
Canada374 Posts
Last Edited: 2013-01-08 00:59:50
January 08 2013 00:44 GMT
#4509
On January 08 2013 09:20 stichtom wrote:
Hi everyone, i have a question for you ( it's just a curiosity ):
Do your teachers still teach Pascal in high-school? Because in italy they do and i don't know if it is a bad or a good thing. I know Pascal is a very good/easy languge at the beginning but nowadays there are a lot of better languages (Like phyton) that aren't that hard even for beginners


Don't sweat the small stuff. Everybody learned something they didn't like when they started. If you go far enough, you'll realize how important learning Pascal was (in some way or another).

Work on some Python stuff outside school if you think you might enjoy it. Then think about the differences between Python and Pascal.

On January 06 2013 03:39 netherh wrote:
Show nested quote +
On January 06 2013 03:09 heishe wrote:

Sorry, but if you need a review of something that basic, you should fail those interview questions. I hope you didn't say that you have experience working with C++, or knowledge of C++, or something like that in your application, because that would be a lie.



That's pretty harsh - he's looking for a review of something that shouldn't really be used in modern C++ because of how icky it is.


Pointers aren't "icky" just because C++ and similar languages manage them for you. You should understand them because they're fundamental to everything that every programming language (and every computer) does. If you need to review them and don't have your own resources lined up, you probably didn't understand them in the first place. Which is exactly what things like "modern C++" get you. I wouldn't want to hire someone who only learned about pointers so they could slip through my interview process unnoticed, because they're going to eventually make a big mess and cost me more money than they're worth.
Zeke50100
Profile Blog Joined February 2010
United States2220 Posts
January 08 2013 01:16 GMT
#4510
On January 08 2013 09:44 yeastiality wrote:
Show nested quote +
On January 06 2013 03:39 netherh wrote:
On January 06 2013 03:09 heishe wrote:

Sorry, but if you need a review of something that basic, you should fail those interview questions. I hope you didn't say that you have experience working with C++, or knowledge of C++, or something like that in your application, because that would be a lie.



That's pretty harsh - he's looking for a review of something that shouldn't really be used in modern C++ because of how icky it is.


Pointers aren't "icky" just because C++ and similar languages manage them for you. You should understand them because they're fundamental to everything that every programming language (and every computer) does. If you need to review them and don't have your own resources lined up, you probably didn't understand them in the first place. Which is exactly what things like "modern C++" get you. I wouldn't want to hire someone who only learned about pointers so they could slip through my interview process unnoticed, because they're going to eventually make a big mess and cost me more money than they're worth.


Remember that the context here is "const char*", not just "pointers" as a subject. Unless you're working with legacy code or a code base that requires compatibility with C, you probably shouldn't be using such ugly things. There's a good chance he is, but if people are starting new projects that don't need special attention due to hardware constraints/whatever, I think it's best to avoid them.
icystorage
Profile Blog Joined November 2008
Jollibee19350 Posts
Last Edited: 2013-01-08 08:57:49
January 08 2013 08:56 GMT
#4511
is there a way in jquery where it counts the number of td's in a table and creates a new row if it exceeds a certain number?
my submenu items always 'spills' when it exceeds 4 items. I want jquery to move it to another row if it exceeds 4.


from
+ Show Spoiler +


<table class="mainTable">
<tr> <td>ITEM</td><td>ITEM</td><td>ITEM</td><td>ITEM</td><td>ITEM</td>
</tr>
</table>

to
+ Show Spoiler +


<table class="mainTable">
<tr> <td>ITEM</td><td>ITEM</td><td>ITEM</td><td>ITEM</td>
</tr>
<tr> <td>ITEM</td>
</tr>
</table>


so far I have created a jquery function that alerts me the number of td's in a table (as a counter)

+ Show Spoiler +

<script>
function getBody(element) {
var originalTable = element.clone();
var tds = $(originalTable).children('tbody').children('tr').children('td').length;
alert(tds);
}

getBody($('table.mainTable'));
</script>



EDIT: YEY GHOST!
LiquidDota StaffAre you ready for a Miracle-? We are! The International 2017 Champions!
heishe
Profile Blog Joined June 2009
Germany2284 Posts
Last Edited: 2013-01-08 09:07:20
January 08 2013 09:05 GMT
#4512
On January 08 2013 10:16 Zeke50100 wrote:
Show nested quote +
On January 08 2013 09:44 yeastiality wrote:
On January 06 2013 03:39 netherh wrote:
On January 06 2013 03:09 heishe wrote:

Sorry, but if you need a review of something that basic, you should fail those interview questions. I hope you didn't say that you have experience working with C++, or knowledge of C++, or something like that in your application, because that would be a lie.



That's pretty harsh - he's looking for a review of something that shouldn't really be used in modern C++ because of how icky it is.


Pointers aren't "icky" just because C++ and similar languages manage them for you. You should understand them because they're fundamental to everything that every programming language (and every computer) does. If you need to review them and don't have your own resources lined up, you probably didn't understand them in the first place. Which is exactly what things like "modern C++" get you. I wouldn't want to hire someone who only learned about pointers so they could slip through my interview process unnoticed, because they're going to eventually make a big mess and cost me more money than they're worth.


Remember that the context here is "const char*", not just "pointers" as a subject. Unless you're working with legacy code or a code base that requires compatibility with C, you probably shouldn't be using such ugly things. There's a good chance he is, but if people are starting new projects that don't need special attention due to hardware constraints/whatever, I think it's best to avoid them.


My point when I said that he should fail those questions is that he shouldn't succeed at those questions because if he doesn't understand something as trivial as "char pointers" now, he probably never did (even though he said that he used to do C++ but usage of TorqueScript has "deteriorated" his C++ knowledge, which is BS. There was a period of time when I didn't so much as touch C++ for almost two years, but something as fundamental as anything that has to do with pointers doesn't "deteriorate"), which means that he has little to no actual C/C++ experience. That's exactly what the interviewer would want to know with such questions, not if the candidate was smart enough to look something up in Google in order to answer interview questions.

If it sounded harsh, well - I don't think there's a nicer way to put it. This kind of "learning for interview questions" that everyone employs kind of annoys me. You're trying to fool your employer that you have experience where you really have none.
If you value your soul, never look into the eye of a horse. Your soul will forever be lost in the void of the horse.
AmericanUmlaut
Profile Blog Joined November 2010
Germany2577 Posts
January 08 2013 09:22 GMT
#4513
On January 08 2013 17:56 icystorage wrote:
is there a way in jquery where it counts the number of td's in a table and creates a new row if it exceeds a certain number?
my submenu items always 'spills' when it exceeds 4 items. I want jquery to move it to another row if it exceeds 4.


from
+ Show Spoiler +


<table class="mainTable">
<tr> <td>ITEM</td><td>ITEM</td><td>ITEM</td><td>ITEM</td><td>ITEM</td>
</tr>
</table>

to
+ Show Spoiler +


<table class="mainTable">
<tr> <td>ITEM</td><td>ITEM</td><td>ITEM</td><td>ITEM</td>
</tr>
<tr> <td>ITEM</td>
</tr>
</table>


so far I have created a jquery function that alerts me the number of td's in a table (as a counter)

+ Show Spoiler +

<script>
function getBody(element) {
var originalTable = element.clone();
var tds = $(originalTable).children('tbody').children('tr').children('td').length;
alert(tds);
}

getBody($('table.mainTable'));
</script>



EDIT: YEY GHOST!

There's not a native jQuery function that does what you're describing, but it's fairly simple to write one. Try this fiddle for an example: http://jsfiddle.net/rvM4d/1/

Is it clear to you how that works?
The frumious Bandersnatch
icystorage
Profile Blog Joined November 2008
Jollibee19350 Posts
January 08 2013 09:33 GMT
#4514
OMG! THANK YOU SO MUCH! i just started learning jquery. I didn't know it would be that simple. I have to familiarize jquery more.
LiquidDota StaffAre you ready for a Miracle-? We are! The International 2017 Champions!
AmericanUmlaut
Profile Blog Joined November 2010
Germany2577 Posts
January 08 2013 09:39 GMT
#4515
On January 08 2013 18:33 icystorage wrote:
OMG! THANK YOU SO MUCH! i just started learning jquery. I didn't know it would be that simple. I have to familiarize jquery more.

http://docs.jquery.com/Main_Page

Learn it. Love it. Live it.

I've been programming with jQuery as a significant portion of my job for three years, and I still spend time almost every day reading the jQuery docs. It's essentially another programming language that you use embedded in Javascript. I especially recommend the "selectors" and "manipulation" sections linked at the left under "API" - I still read through them start to finish every once in a while, and I almost always discover something I hadn't realized before that makes my life easier.
The frumious Bandersnatch
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
January 08 2013 09:41 GMT
#4516
On January 08 2013 18:33 icystorage wrote:
OMG! THANK YOU SO MUCH! i just started learning jquery. I didn't know it would be that simple. I have to familiarize jquery more.


Why don't you just use something like:


<div style="width: ...">
<div style="float: left; width: ...px;">Item 1</div>
<div style="float: left; width: ...px;">Item 2</div>
<div style="float: left; width: ...px;">Item 3</div>
<div style="float: left; width: ...px;">Item 4</div>
<div style="float: left; width: ...px;">Item 5</div>
...
</div>


The inner divs automatically break into the next row when they don't fit anymore. No javascript needed.
icystorage
Profile Blog Joined November 2008
Jollibee19350 Posts
Last Edited: 2013-01-08 10:03:30
January 08 2013 09:50 GMT
#4517
Does it apply to tables?

EDIT: okay i tried it

i set my table width to 100%
then the table td width to 25%, float left.
apparently it only fits 3 cells in the row. if i dont float it left it fits 4 cells.
LiquidDota StaffAre you ready for a Miracle-? We are! The International 2017 Champions!
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
January 08 2013 09:52 GMT
#4518
On January 08 2013 18:50 icystorage wrote:
Does it apply to tables?


You can put tables in there as float left but it doesn't work with tr/td.
Do you NEED to have it as a table considering that tables purely for layout are quite outdated?
icystorage
Profile Blog Joined November 2008
Jollibee19350 Posts
January 08 2013 10:04 GMT
#4519

i set my table width to 100%
then the table td width to 25%, float left.
apparently it only fits 3 cells in the row. if i dont float it left it fits 4 cells.



Yes I probably need to since I invested a lot of time using tables for a layout
LiquidDota StaffAre you ready for a Miracle-? We are! The International 2017 Champions!
AmericanUmlaut
Profile Blog Joined November 2010
Germany2577 Posts
January 08 2013 10:26 GMT
#4520
On January 08 2013 19:04 icystorage wrote:

i set my table width to 100%
then the table td width to 25%, float left.
apparently it only fits 3 cells in the row. if i dont float it left it fits 4 cells.



Yes I probably need to since I invested a lot of time using tables for a layout

Seriously, you should invest some more time in learning how to not use tables for layout. I didn't really give it any thought before because I was just trying to help you understand how to use jQuery, but using tables to do anything but display tabulated data is major bad mojo. There is almost nothing that you can achieve with a table that isn't possible with nested divs, and my experience has been that working with tables is a maintenance nightmare.
The frumious Bandersnatch
Prev 1 224 225 226 227 228 1031 Next
Please log in or register to reply.
Live Events Refresh
Next event in 3h 8m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
BRAT_OK 52
Creator 5
StarCraft: Brood War
Britney 42166
PianO 6896
Rain 3961
Sea 2906
Jaedong 1595
Bisu 1465
GuemChi 1399
Shuttle 633
Larva 591
Mini 440
[ Show more ]
Light 335
actioN 302
Hyuk 277
EffOrt 248
Soulkey 205
Snow 204
Mong 203
ggaemo 200
Hyun 164
Barracks 140
Mind 103
ZerO 79
JYJ61
Sea.KH 46
TY 43
ToSsGirL 39
Sharp 39
Pusan 36
Movie 29
sSak 28
Nal_rA 27
Noble 17
yabsab 17
Free 17
Sacsri 16
Bale 15
ajuk12(nOOB) 13
HiyA 13
scan(afreeca) 13
Terrorterran 13
SilentControl 10
Shine 8
IntoTheRainbow 5
Dota 2
The International42861
Gorgc9969
qojqva673
Fuzer 230
XaKoH 222
XcaliburYe97
febbydoto7
League of Legends
JimRising 263
Counter-Strike
zeus990
Stewie2K340
oskar199
edward97
Heroes of the Storm
Khaldor72
Other Games
singsing1486
hiko797
crisheroes495
B2W.Neo455
Happy361
DeMusliM316
Hui .199
Liquid`VortiX97
ArmadaUGS72
QueenE64
KnowMe51
ZerO(Twitch)14
Organizations
StarCraft: Brood War
UltimateBattle 2427
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 12 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Nemesis3624
• Jankos1486
Upcoming Events
Maestros of the Game
3h 8m
Serral vs Ryung
ByuN vs Zoun
BSL Team Wars
5h 8m
Team Bonyth vs Team Dewalt
CranKy Ducklings
20h 8m
RSL Revival
20h 8m
GuMiho vs Cham
ByuN vs TriGGeR
Cosmonarchy
1d
TriGGeR vs YoungYakov
YoungYakov vs HonMonO
HonMonO vs TriGGeR
Maestros of the Game
1d 3h
Solar vs Bunny
Clem vs Rogue
[BSL 2025] Weekly
1d 4h
RSL Revival
1d 20h
Cure vs Bunny
Creator vs Zoun
Maestros of the Game
2 days
Maru vs Lambo
herO vs ShoWTimE
BSL Team Wars
2 days
Team Hawk vs Team Sziky
[ Show More ]
Sparkling Tuna Cup
2 days
Monday Night Weeklies
3 days
The PondCast
5 days
Online Event
6 days
Liquipedia Results

Completed

Proleague 2025-09-02
SEL Season 2 Championship
HCC Europe

Ongoing

Copa Latinoamericana 4
BSL 20 Team Wars
KCM Race Survival 2025 Season 3
BSL 21 Qualifiers
ASL Season 20
CSL 2025 AUTUMN (S18)
LASL Season 20
RSL Revival: Season 2
Maestros of the Game
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1

Upcoming

2025 Chongqing Offline CUP
BSL Polish World Championship 2025: Warsaw LAN
BSL Season 21
BSL 21 Team A
Chzzk MurlocKing SC1 vs SC2 Cup #2
EC S1
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
MESA Nomadic Masters Fall
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
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.