• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 12:47
CEST 18:47
KST 01:47
  • 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
[ASL21] Ro24 Preview Pt2: News Flash8[ASL21] Ro24 Preview Pt1: New Chaos0Team Liquid Map Contest #22 - Presented by Monster Energy12ByuL: The Forgotten Master of ZvT30Behind the Blue - Team Liquid History Book20
Community News
Weekly Cups (March 23-29): herO takes triple5Aligulac acquired by REPLAYMAN.com/Stego Research3Weekly Cups (March 16-22): herO doubles, Cure surprises3Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool49Weekly Cups (March 9-15): herO, Clem, ByuN win4
StarCraft 2
General
What mix of new & old maps do you want in the next ladder pool? (SC2) herO wins SC2 All-Star Invitational Weekly Cups (March 23-29): herO takes triple Team Liquid Map Contest #22 - Presented by Monster Energy Aligulac acquired by REPLAYMAN.com/Stego Research
Tourneys
Sparkling Tuna Cup - Weekly Open Tournament RSL Season 4 announced for March-April StarCraft Evolution League (SC Evo Biweekly) WardiTV Mondays World University TeamLeague (500$+) | Signups Open
Strategy
Custom Maps
[M] (2) Frigid Storage Publishing has been re-enabled! [Feb 24th 2026]
External Content
Mutation # 519 Inner Power The PondCast: SC2 News & Results Mutation # 518 Radiation Zone Mutation # 517 Distant Threat
Brood War
General
[ASL21] Ro24 Preview Pt2: News Flash BGH Auto Balance -> http://bghmmr.eu/ Pros React To: SoulKey vs Ample ASL21 General Discussion RepMastered™: replay sharing and analyzer site
Tourneys
[ASL21] Ro24 Group E [Megathread] Daily Proleagues [ASL21] Ro24 Group D [ASL21] Ro24 Group C
Strategy
What's the deal with APM & what's its true value Fighting Spirit mining rates Simple Questions, Simple Answers
Other Games
General Games
Starcraft Tabletop Miniature Game Stormgate/Frost Giant Megathread Nintendo Switch Thread General RTS Discussion Thread Darkest Dungeon
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
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 The Games Industry And ATVI European Politico-economics QA Mega-thread Canadian Politics Mega-thread
Fan Clubs
The IdrA Fan Club
Media & Entertainment
[Manga] One Piece [Req][Books] Good Fantasy/SciFi books Movie Discussion!
Sports
2024 - 2026 Football Thread Formula 1 Discussion Cricket [SPORT] Tokyo Olympics 2021 Thread General nutrition recommendations
World Cup 2022
Tech Support
[G] How to Block Livestream Ads
TL Community
The Automated Ban List
Blogs
Funny Nicknames
LUCKY_NOOB
Money Laundering In Video Ga…
TrAiDoS
Iranian anarchists: organize…
XenOsky
FS++
Kraekkling
Shocked by a laser…
Spydermine0240
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1831 users

The Big Programming Thread - Page 226

Forum Index > General Forum
Post a Reply
Prev 1 224 225 226 227 228 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.
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 States17281 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
Germany2594 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
Germany2594 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
Germany2594 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 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 7h 13m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
ProTech143
StarCraft: Brood War
Bisu 3195
EffOrt 1707
Mini 695
Larva 636
Stork 506
actioN 378
firebathero 308
Snow 289
Hyuk 148
hero 142
[ Show more ]
Aegong 73
Barracks 71
Backho 56
sorry 35
Shine 33
JulyZerg 25
IntoTheRainbow 24
Terrorterran 23
Bale 20
ggaemo 14
SilentControl 8
Dota 2
qojqva3105
Counter-Strike
fl0m1551
byalli482
Other Games
FrodaN1923
Liquid`RaSZi1576
Grubby1171
B2W.Neo955
DeMusliM311
Beastyqt253
Hui .160
RotterdaM86
QueenE86
Mew2King68
Trikslyr60
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 17 non-featured ]
StarCraft 2
• LUISG 35
• Reevou 10
• Kozan
• sooper7s
• AfreecaTV YouTube
• intothetv
• Migwel
• IndyKCrew
• LaughNgamezSOOP
StarCraft: Brood War
• HerbMon 33
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• WagamamaTV922
League of Legends
• Nemesis3148
• TFBlade1268
Other Games
• Shiphtur226
Upcoming Events
PiGosaur Cup
7h 13m
Replay Cast
16h 13m
Afreeca Starleague
17h 13m
BeSt vs Leta
Queen vs Jaedong
Kung Fu Cup
18h 13m
Replay Cast
1d 7h
The PondCast
1d 17h
OSC
2 days
RSL Revival
2 days
TriGGeR vs Cure
ByuN vs Rogue
Replay Cast
3 days
RSL Revival
3 days
Maru vs MaxPax
[ Show More ]
BSL
4 days
RSL Revival
4 days
uThermal 2v2 Circuit
4 days
BSL
5 days
Replay Cast
6 days
Sparkling Tuna Cup
6 days
Liquipedia Results

Completed

Acropolis #4 - TS6
WardiTV Winter 2026
NationLESS Cup

Ongoing

BSL Season 22
CSL Elite League 2026
CSL Season 20: Qualifier 1
ASL Season 21
RSL Revival: Season 4
Nations Cup 2026
BLAST Open Spring 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual

Upcoming

CSL Season 20: Qualifier 2
Escore Tournament S2: W1
CSL 2026 SPRING (S20)
Acropolis #4
IPSL Spring 2026
BSL 22 Non-Korean Championship
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
StarCraft2 Community Team League 2026 Spring
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
CCT Season 3 Global Finals
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
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.