• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 06:47
CEST 12:47
KST 19: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] Ro16 Preview Pt2: All Star10Team Liquid Map Contest #22 - The Finalists14[ASL21] Ro16 Preview Pt1: Fresh Flow9[ASL21] Ro24 Preview Pt2: News Flash10[ASL21] Ro24 Preview Pt1: New Chaos0
Community News
2026 GSL Season 1 Qualifiers12Maestros of the Game 2 announced52026 GSL Tour plans announced14Weekly Cups (April 6-12): herO doubles, "Villains" prevail1MaNa leaves Team Liquid23
StarCraft 2
General
MaNa leaves Team Liquid Maestros of the Game 2 announced 2026 GSL Tour plans announced Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool Team Liquid Map Contest #22 - The Finalists
Tourneys
2026 GSL Season 1 Qualifiers GSL CK: More events planned pending crowdfunding RSL Revival: Season 5 - Qualifiers and Main Event Sparkling Tuna Cup - Weekly Open Tournament Master Swan Open (Global Bronze-Master 2)
Strategy
Custom Maps
[D]RTS in all its shapes and glory <3 [A] Nemrods 1/4 players [M] (2) Frigid Storage
External Content
Mutation # 522 Flip My Base The PondCast: SC2 News & Results Mutation # 521 Memorable Boss Mutation # 520 Moving Fees
Brood War
General
[ASL21] Ro16 Preview Pt2: All Star Data needed ASL21 Strategy, Pimpest Plays Discussions BGH Auto Balance -> http://bghmmr.eu/ RepMastered™: replay sharing and analyzer site
Tourneys
[ASL21] Ro16 Group D [ASL21] Ro16 Group C [ASL21] Ro16 Group B [Megathread] Daily Proleagues
Strategy
Simple Questions, Simple Answers What's the deal with APM & what's its true value Any training maps people recommend? Fighting Spirit mining rates
Other Games
General Games
Dawn of War IV Starcraft Tabletop Miniature Game Nintendo Switch Thread General RTS Discussion Thread Battle Aces/David Kim RTS Megathread
Dota 2
The Story of Wings Gaming
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 YouTube Thread Canadian Politics Mega-thread
Fan Clubs
The IdrA Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece [Req][Books] Good Fantasy/SciFi books Movie Discussion!
Sports
Formula 1 Discussion 2024 - 2026 Football Thread McBoner: A hockey love story Cricket [SPORT]
World Cup 2022
Tech Support
[G] How to Block Livestream Ads
TL Community
The Automated Ban List
Blogs
Sexual Health Of Gamers
TrAiDoS
lurker extra damage testi…
StaticNine
Broowar part 2
qwaykee
Funny Nicknames
LUCKY_NOOB
Iranian anarchists: organize…
XenOsky
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2325 users

The Big Programming Thread - Page 626

Forum Index > General Forum
Post a Reply
Prev 1 624 625 626 627 628 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.
Artesimo
Profile Joined February 2015
Germany571 Posts
April 30 2015 17:18 GMT
#12501
again, thanks for all the help, I was able properly finish my program. I do however have some questions regarding lists/linked lists.
If i understand lists correctly, you take an object/structure/template that stores some stuff. You then organize them by having each object/structure/template having a pointer that leads you to the next element of the list(next). If the object/structure/template also has an pointer that leads you to the previous element(head), it is a linked list.
In contrast to other datastructures/containers you cant access random elements of the list, without following the chain untill you find the one you want. If you insert/delete an object/structure/template from the list, you have to make sure that head/next get changed accordingly, otherwise the chain would be broken and parts of the list inaccessible. They work faster, a s long as you dont have to access random elements.

In contrast to that, stuff like <vector> (simplified spoken) takes care of the head/next part for you so you dont have to worry about it and grants methods to access random elements in a faster fashion.

So it seems, that lists/linked lists are the predecessor/more specialized version of stuff like vector. If I had a big database of adresses, to which I regularly send some newsletters, I would have organized them in a list/linked list since I usually just have to go through the whole thing/maybe have pointer to where the names with A/B/C etc. start.
If I have an database like bankaccoutn data, where sometimes certain parts get requested, without asking for the ata of just everyone in the database, I would use something else then linked lists.
So both ways of storing stuff are equally viable in their own scenario, even though we now have incredible computingpower at our disposal?

And on the behalf of my former problem, linked list wouldnt be the thing I want to use, since I want to randomly access parts of the database.
Millitron
Profile Blog Joined August 2010
United States2611 Posts
April 30 2015 17:34 GMT
#12502
On May 01 2015 02:18 Artesimo wrote:
again, thanks for all the help, I was able properly finish my program. I do however have some questions regarding lists/linked lists.
If i understand lists correctly, you take an object/structure/template that stores some stuff. You then organize them by having each object/structure/template having a pointer that leads you to the next element of the list(next). If the object/structure/template also has an pointer that leads you to the previous element(head), it is a linked list.
In contrast to other datastructures/containers you cant access random elements of the list, without following the chain untill you find the one you want. If you insert/delete an object/structure/template from the list, you have to make sure that head/next get changed accordingly, otherwise the chain would be broken and parts of the list inaccessible. They work faster, a s long as you dont have to access random elements.

In contrast to that, stuff like <vector> (simplified spoken) takes care of the head/next part for you so you dont have to worry about it and grants methods to access random elements in a faster fashion.

So it seems, that lists/linked lists are the predecessor/more specialized version of stuff like vector. If I had a big database of adresses, to which I regularly send some newsletters, I would have organized them in a list/linked list since I usually just have to go through the whole thing/maybe have pointer to where the names with A/B/C etc. start.
If I have an database like bankaccoutn data, where sometimes certain parts get requested, without asking for the ata of just everyone in the database, I would use something else then linked lists.
So both ways of storing stuff are equally viable in their own scenario, even though we now have incredible computingpower at our disposal?

And on the behalf of my former problem, linked list wouldnt be the thing I want to use, since I want to randomly access parts of the database.

I don't know anything about vector, but everything else you've said is spot on.
Who called in the fleet?
Manit0u
Profile Blog Joined August 2004
Poland17730 Posts
Last Edited: 2015-04-30 18:02:09
April 30 2015 18:00 GMT
#12503
On April 30 2015 23:26 netherh wrote:
I'm not sure there's any "good" way to read in a file format like that. Can you persuade your friend to use xml or json or lua... some actual data description language? (It'll be easier for him in the long run too).


XML is crap. It has a ton of overhead for even the simplest of data structures. JSON is fine but kind of meh. If you want readability you should go with YAML, which works very well with most languages (even Haskell if you're that hardcore). You could also go a step further and create a simple SQLite database to store the data.

The big plus of YAML is that its first and foremost goal is to be human readable. It also supports more complex data structures than JSON (while being easier to read).
Time is precious. Waste it wisely.
Ropid
Profile Joined March 2009
Germany3557 Posts
April 30 2015 18:12 GMT
#12504
@Artesimo:

For the list, while you can only do things at the position you currently look at, at that spot you can insert and remove elements without having to change all of the list. You only need to change the pointers that are in the surrounding elements. It's just the one pointer in the previous element for a singly-linked list, or also a second one in the following element for a doubly-linked list. It's also straight forward to think about how you'd go about inserting a second list into the spot where you are in your first list.

With the vector, if you remove or insert, you will have to copy the rest of the list to move it around. If the block where your vector is positioned in memory can't resize because something is following it, you will have to get a new block of memory and copy the whole vector.

Now, for some reason, the vector data structure actually beats the list on a real machine. I don't know if that's just most of the time or always. It has to do with things like caches in the CPU and latency of that vs. main memory.

When you use those data structures to deal with some sort of objects, what's saved in them is really just pointers to those objects. The vector will then just be an array of those pointers to the objects. A list will instead be multiple times the size of that array.

When you approach something like it's Math, try to reason about your problem so that you'll have proof that your solution is correct, a list is nice if the problem can be split into rules for (a) empty list, (b) single element, (c) rest of the list. You can then afterwards still hide the details of what the machine is actually doing in C++, make it so using a vector looks exactly like using a list. You can use those "iterators". So you can still use lists if it helps while thinking about your problem, but then the machine actually does something else.
"My goal is to replace my soul with coffee and become immortal."
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2015-04-30 18:29:19
April 30 2015 18:25 GMT
#12505
On May 01 2015 02:18 Artesimo wrote:
again, thanks for all the help, I was able properly finish my program. I do however have some questions regarding lists/linked lists.
If i understand lists correctly, you take an object/structure/template that stores some stuff. You then organize them by having each object/structure/template having a pointer that leads you to the next element of the list(next). If the object/structure/template also has an pointer that leads you to the previous element(head), it is a linked list.
In contrast to other datastructures/containers you cant access random elements of the list, without following the chain untill you find the one you want. If you insert/delete an object/structure/template from the list, you have to make sure that head/next get changed accordingly, otherwise the chain would be broken and parts of the list inaccessible. They work faster, a s long as you dont have to access random elements.

In contrast to that, stuff like <vector> (simplified spoken) takes care of the head/next part for you so you dont have to worry about it and grants methods to access random elements in a faster fashion.

So it seems, that lists/linked lists are the predecessor/more specialized version of stuff like vector. If I had a big database of adresses, to which I regularly send some newsletters, I would have organized them in a list/linked list since I usually just have to go through the whole thing/maybe have pointer to where the names with A/B/C etc. start.
If I have an database like bankaccoutn data, where sometimes certain parts get requested, without asking for the ata of just everyone in the database, I would use something else then linked lists.
So both ways of storing stuff are equally viable in their own scenario, even though we now have incredible computingpower at our disposal?

And on the behalf of my former problem, linked list wouldnt be the thing I want to use, since I want to randomly access parts of the database.


Linked list doesn't have to point to the previous element. If so, it is singly linked list. Otherwise, doubly linked list.

If vector is like ArrayList in Java (and I think it's similar), then it uses array under the cover, so its implementation is completely different from list. Because it uses arrays, it can access them by index efficiently. That's why you have random access advantage with vectors. If you ask how a vector/ArrayList holds 'unlimited' data even though arrays are fixed, it is because they create a new array, its size is twice larger or something and they copy all previous elements if it needs more space.

I think databases don't use either. What they usually use is binary tree or tree of some sort as far as I remember.
Artesimo
Profile Joined February 2015
Germany571 Posts
April 30 2015 18:28 GMT
#12506
On May 01 2015 03:25 darkness wrote:

Linked list doesn't have to point to the previous element. If so, it is singly linked list. Otherwise, doubly linked list.

If vector is like ArrayList in Java (and I think it's similar), then it uses array under the cover, so its implementation is completely different from list. Because it uses arrays, it can access them by index efficiently. That's why you have random access advantage with vectors.

I think databases don't use either. What they usually use is binary tree or tree of some sort as far as I remember.


From what I read, binary trees mainly get implemented using linked lists. Could be wrong though.

@Ropid: thanks for the explanation
Blitzkrieg0
Profile Blog Joined August 2010
United States13132 Posts
April 30 2015 18:31 GMT
#12507
On May 01 2015 03:28 Artesimo wrote:
Show nested quote +
On May 01 2015 03:25 darkness wrote:

Linked list doesn't have to point to the previous element. If so, it is singly linked list. Otherwise, doubly linked list.

If vector is like ArrayList in Java (and I think it's similar), then it uses array under the cover, so its implementation is completely different from list. Because it uses arrays, it can access them by index efficiently. That's why you have random access advantage with vectors.

I think databases don't use either. What they usually use is binary tree or tree of some sort as far as I remember.


From what I read, binary trees mainly get implemented using linked lists. Could be wrong though.

@Ropid: thanks for the explanation


A binary tree is essentially a linked list that has two next pointers instead of only one so the comparison is pretty natural. It is possible to implement a binary tree as an array though.
I'll always be your shadow and veil your eyes from states of ain soph aur.
phar
Profile Joined August 2011
United States1080 Posts
May 01 2015 00:43 GMT
#12508
On April 30 2015 23:33 Artesimo wrote:
Show nested quote +
On April 30 2015 23:26 netherh wrote:
I'm not sure there's any "good" way to read in a file format like that. Can you persuade your friend to use xml or json or lua... some actual data description language? (It'll be easier for him in the long run too).


Unfortunately he only codes in java since its the only thing he knows. He also does it as a hobby since his work isnt related to IT in any form (even though he still is better than me at coding... for now ).


Have your friend consider protocol buffers. The java support for it is quite good (though it is an odd to get used to at first).
Who after all is today speaking about the destruction of the Armenians?
Artesimo
Profile Joined February 2015
Germany571 Posts
May 01 2015 11:29 GMT
#12509
On May 01 2015 09:43 phar wrote:
Have your friend consider protocol buffers. The java support for it is quite good (though it is an odd to get used to at first).


I will redirect this to him. I dont think he will really read it though, he just likes to fondle around with his java-skills without really expanding them as far as I can tell.
sabas123
Profile Blog Joined December 2010
Netherlands3122 Posts
Last Edited: 2015-05-01 20:45:20
May 01 2015 20:45 GMT
#12510
Anybody has some experiance with c# unit testing?

Im trying to test if if a function returns an object of type Grass (which is a subclass of type Tile), I used AreEqual and AreEqual<T> but keep getting errors like this


Result Message: Assert.AreEqual failed. Expected:<ConsiGame.Grass>. Actual:<ConsiGame.Grass>.

The harder it becomes, the more you should focus on the basics.
ZenithM
Profile Joined February 2011
France15952 Posts
Last Edited: 2015-05-01 21:00:20
May 01 2015 20:56 GMT
#12511
On May 02 2015 05:45 sabas123 wrote:
Anybody has some experiance with c# unit testing?

Im trying to test if if a function returns an object of type Grass (which is a subclass of type Tile), I used AreEqual and AreEqual<T> but keep getting errors like this


Result Message: Assert.AreEqual failed. Expected:<ConsiGame.Grass>. Actual:<ConsiGame.Grass>.


Are you checking for equality or equality of types? I don't know your exact code, but I would guess you're checking for the first (so, what you see printed is probably the default toString value, which you didn't override if I'm correct), while you want the second.
You should do this:
Assert.AreEqual(obj.GetType(), typeof(MyObject));

Is that what you do? Note that this passes if obj's exact type is MyObject, it fails if it is from a derived class I believe. Alternatively you could use
Assert.IsInstanceOfType(obj, typeof(MyObject));
, which does pass if obj is of a class derived from MyObject. I would probably use that in your case, so if you have subclasses of Grass, like GreenerGrass, it still passes your test
phar
Profile Joined August 2011
United States1080 Posts
May 02 2015 01:16 GMT
#12512
On May 01 2015 20:29 Artesimo wrote:
Show nested quote +
On May 01 2015 09:43 phar wrote:
Have your friend consider protocol buffers. The java support for it is quite good (though it is an odd to get used to at first).


I will redirect this to him. I dont think he will really read it though, he just likes to fondle around with his java-skills without really expanding them as far as I can tell.

Ah ha well, then props to you for trying to help, but maybe abandon all hope
Who after all is today speaking about the destruction of the Armenians?
dae
Profile Joined June 2010
Canada1600 Posts
Last Edited: 2015-05-02 02:40:06
May 02 2015 02:36 GMT
#12513
On May 01 2015 03:31 Blitzkrieg0 wrote:
Show nested quote +
On May 01 2015 03:28 Artesimo wrote:
On May 01 2015 03:25 darkness wrote:

Linked list doesn't have to point to the previous element. If so, it is singly linked list. Otherwise, doubly linked list.

If vector is like ArrayList in Java (and I think it's similar), then it uses array under the cover, so its implementation is completely different from list. Because it uses arrays, it can access them by index efficiently. That's why you have random access advantage with vectors.

I think databases don't use either. What they usually use is binary tree or tree of some sort as far as I remember.


From what I read, binary trees mainly get implemented using linked lists. Could be wrong though.

@Ropid: thanks for the explanation


A binary tree is essentially a linked list that has two next pointers instead of only one so the comparison is pretty natural. It is possible to implement a binary tree as an array though.


If you have a fairly balanced binary tree, it is really common to implement it as an array. Root node is at index 1 (or 0, but that makes the math a bit less nice). A node with index n's children are at indexes n*2 and n*2+1, and it's parent is at floor(n/2).

For example, the node at index 7 has children in positions 14 and 15, and parent at position 3.

Since n*2 and n/2 are just one bit shift operation, this is a rather fast way of implementing binary trees.

In addition, the binary representation of a number is directly correlated to it's position in the binary tree. (the series of 1's and 0's is the path to get to that node.)

sabas123
Profile Blog Joined December 2010
Netherlands3122 Posts
May 02 2015 11:37 GMT
#12514
On May 02 2015 05:56 ZenithM wrote:
Show nested quote +
On May 02 2015 05:45 sabas123 wrote:
Anybody has some experiance with c# unit testing?

Im trying to test if if a function returns an object of type Grass (which is a subclass of type Tile), I used AreEqual and AreEqual<T> but keep getting errors like this


Result Message: Assert.AreEqual failed. Expected:<ConsiGame.Grass>. Actual:<ConsiGame.Grass>.


Are you checking for equality or equality of types? I don't know your exact code, but I would guess you're checking for the first (so, what you see printed is probably the default toString value, which you didn't override if I'm correct), while you want the second.
You should do this:
Show nested quote +
Assert.AreEqual(obj.GetType(), typeof(MyObject));

Is that what you do? Note that this passes if obj's exact type is MyObject, it fails if it is from a derived class I believe. Alternatively you could use
Show nested quote +
Assert.IsInstanceOfType(obj, typeof(MyObject));
, which does pass if obj is of a class derived from MyObject. I would probably use that in your case, so if you have subclasses of Grass, like GreenerGrass, it still passes your test

Yes, that was exactly I was looking for.

thank you<3
The harder it becomes, the more you should focus on the basics.
Propelled
Profile Joined October 2010
Denmark184 Posts
May 02 2015 15:00 GMT
#12515
I have just started looking Javascript and I'm wondering if there's an OS agnostic constant for linebreaks, like phps PHP_EOL.

At the moment I'm doing something along these lines:
str.split("\r\n");
str.split("\n");

However I'm wondering if theres a way to do it in a single pass.
sabas123
Profile Blog Joined December 2010
Netherlands3122 Posts
Last Edited: 2015-05-02 17:55:58
May 02 2015 17:55 GMT
#12516
On May 03 2015 00:00 Propelled wrote:
I have just started looking Javascript and I'm wondering if there's an OS agnostic constant for linebreaks, like phps PHP_EOL.

At the moment I'm doing something along these lines:
str.split("\r\n");
str.split("\n");

However I'm wondering if theres a way to do it in a single pass.

Im not sure if the break line tag works entirely the same as EOL, but they both make a new line.


str.split("<br>");
The harder it becomes, the more you should focus on the basics.
Acrofales
Profile Joined August 2010
Spain18266 Posts
May 02 2015 18:28 GMT
#12517
On May 03 2015 02:55 sabas123 wrote:
Show nested quote +
On May 03 2015 00:00 Propelled wrote:
I have just started looking Javascript and I'm wondering if there's an OS agnostic constant for linebreaks, like phps PHP_EOL.

At the moment I'm doing something along these lines:
str.split("\r\n");
str.split("\n");

However I'm wondering if theres a way to do it in a single pass.

Im not sure if the break line tag works entirely the same as EOL, but they both make a new line.


str.split("<br>");

The html <br /> code is not the same thing at all. I don´t think there is an OS agnostic version (there's probably a library to do that, though, depending on your framework). Of course, if you just split on "\n" you will get all the ones with a carriage return in there as well, just remember to parse them out when you use your string.

Ame
Profile Joined October 2009
United States246 Posts
May 02 2015 20:22 GMT
#12518
Not sure if this is what you mean by 'single pass', but I think Javascript's str.split() accepts regex... so it might be doable with one call to str.split().

Then again regex might be introducing needless complexity, so eh D:
AKnopf
Profile Blog Joined March 2011
Germany259 Posts
Last Edited: 2015-05-02 20:59:34
May 02 2015 20:56 GMT
#12519
Well, a regex like /[\n\r]+/ is not too terribly complex. But you are right: It does not feel right, there should be a better solution to this.


"a\n\rb\nc\rd".split(/[ \n\r]+/) => Array [ "a", "b", "c", "d" ]
^
This space is not supposed to be there, but whithout, the backslash was not displayed in this post.
The world - its a funny place
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
Last Edited: 2015-05-02 21:03:39
May 02 2015 21:01 GMT
#12520
Now I don't know much JS, but that shouldn't matter here. A quick google search indicates that you probably should use a regex. There are 2 approaches: Use string.match with a regex that matches non-linebreak characters, or string.split with a regex that matches linebreaks. Don't know how accurate it really is, but this seems to be the best one:
string.split(\r\n|[ \n\v\f\r\x85\u2028\u2029])
See Alan Moore's comment a bit down the page.
(same deal as above, remove the space in front of the \n)

This should match \r\n, \r, \n and a number of other obscure newline variations. Shove it into a dedicated function, put a comment on it and never think about it again.
If you have a good reason to disagree with the above, please tell me. Thank you.
Prev 1 624 625 626 627 628 1032 Next
Please log in or register to reply.
Live Events Refresh
Afreeca Starleague
10:00
Ro16 Group D
Barracks vs Leta
Royal vs Light
Afreeca ASL 14430
StarCastTV_EN341
Liquipedia
GSL
08:00
2026 Season 1: Qualifiers
herO vs Rogue
Maru vs SHIN
Cure vs ClassicLIVE!
IntoTheiNu 395
CranKy Ducklings SOOP174
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
OGKoka 273
StarCraft: Brood War
Calm 11247
Jaedong 5914
Sea 4066
BeSt 1242
Horang2 936
Rush 726
Pusan 431
Mind 245
Zeus 237
Larva 235
[ Show more ]
JYJ 170
Sharp 119
ToSsGirL 110
ggaemo 95
Sexy 45
Shine 27
Bale 25
Killer 22
[sc1f]eonzerg 15
Noble 11
SilentControl 11
Sacsri 10
GoRush 10
JulyZerg 5
eros_byul 0
Dota 2
Gorgc2006
XaKoH 460
NeuroSwarm109
Counter-Strike
olofmeister2568
x6flipin275
allub269
edward222
Super Smash Bros
Mew2King136
Other Games
singsing1730
ceh9625
crisheroes209
Trikslyr116
QueenE38
Organizations
Dota 2
PGL Dota 2 - Main Stream8281
PGL Dota 2 - Secondary Stream4100
Other Games
gamesdonequick391
StarCraft: Brood War
UltimateBattle 255
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
• TFBlade1361
• Stunt608
Upcoming Events
WardiTV Map Contest Tou…
13m
herO vs Classic
SHIN vs Cure
Solar vs Percival
RSL Revival
23h 13m
Replay Cast
1d 13h
The PondCast
1d 23h
KCM Race Survival
1d 23h
WardiTV Map Contest Tou…
2 days
Gerald vs TBD
Clem vs TBD
ByuN vs TBD
Rogue vs MaxPax
ShoWTimE vs TBD
CranKy Ducklings
2 days
Escore
2 days
RSL Revival
3 days
WardiTV Map Contest Tou…
4 days
[ Show More ]
Universe Titan Cup
4 days
Rogue vs Percival
Ladder Legends
4 days
uThermal 2v2 Circuit
4 days
BSL
4 days
Sparkling Tuna Cup
4 days
WardiTV Map Contest Tou…
5 days
Ladder Legends
5 days
BSL
5 days
Replay Cast
5 days
Replay Cast
5 days
Wardi Open
5 days
Monday Night Weeklies
6 days
Replay Cast
6 days
Liquipedia Results

Completed

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

Ongoing

BSL Season 22
ASL Season 21
CSL 2026 SPRING (S20)
IPSL Spring 2026
KCM Race Survival 2026 Season 2
StarCraft2 Community Team League 2026 Spring
WardiTV TLMC #16
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

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
Maestros of the Game 2
2026 GSL S2
RSL Revival: Season 5
2026 GSL S1
XSE Pro League 2026
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
IEM Atlanta 2026
Asian Champions League 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.