• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 23:30
CEST 05:30
KST 12:30
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
Team Liquid Map Contest #22: Results and Winners6Code S Season 2 (2026): RO4 and Finals Preview12TL.net Map Contest #22 - Voting & Ladder Map Selection7Code S Season 2 (2026) - RO8 Preview5[ASL21] Finals Preview: Two Legacies21
Community News
Douyu Cup 2026: $20,000 Legends Event (June 26-28)8[BSL22] Non-Korean Championship from 13 to 28 June4Weekly Cups (May 25-31): Clem doubles, 2v2 circuit heads toward finale0StarCraft II 5.0.16 PTR Patch Notes may 26th153Weekly Cups (May 18-24): MaxPax wins doubles0
StarCraft 2
General
High level ptr replays? where can I find them? StarCraft II 5.0.16 PTR Patch Notes may 26th Team Liquid Map Contest #22: Results and Winners TL Poll: How do you feel about the 5.0.16 PTR balance changes? TL.net Map Contest #22 - Voting & Ladder Map Selection
Tourneys
Douyu Cup 2026: $20,000 Legends Event (June 26-28) Maestros of The Game 2 announcement and schedule ! Sparkling Tuna Cup - Weekly Open Tournament Sea Duckling Open (Global, Bronze-Diamond) GSL Code S Season 2 (2026)
Strategy
[G] Having the right mentality to improve
Custom Maps
[D]RTS in all its shapes and glory <3
External Content
The PondCast: SC2 News & Results Mutation # 529 Opportunities Unleashed Mutation # 528 Infection Detected Welcome to the External Content forum
Brood War
General
Quality of life changes in BW that you will like ? [BSL22] Non-Korean Championship from 13 to 28 June BGH Auto Balance -> http://bghmmr.eu/ vespene.gg — BW replays in browser The Korean Terminology Thread
Tourneys
[Megathread] Daily Proleagues [ASL21] Grand Finals [BSL22] Grand Finals - Sunday 21:00 CEST Escore Tournament StarCraft Season 2
Strategy
Creating a full chart of Zerg builds Relatively freeroll strategies Why doesn't anyone use restoration? Any training maps people recommend?
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread PC Games Sales Thread ZeroSpace Megathread Summer Games Done Quick 2026!
Dota 2
Looking for a Dota Mentor 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
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Trading/Investing Thread Canadian Politics Mega-thread Things Aren’t Peaceful in Palestine
Fan Clubs
The herO Fan Club!
Media & Entertainment
Movie Discussion! [Req][Books] Good Fantasy/SciFi books [TV/BOOK] *SPOILERS* Game of Thrones Discussion [Manga] One Piece
Sports
2024 - 2026 Football Thread Cricket [SPORT] TeamLiquid Health and Fitness Initiative For 2023 NBA General Discussion McBoner: A hockey love story
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread Facing Challenges in Mobile App Development
TL Community
The Automated Ban List
Blogs
How Streaming Impacts Game P…
TrAiDoS
An Exploration of th…
waywardstrategy
I'm an arrogant trash talke…
FlaShFTW
Gauntlet SC2: A Retrospectiv…
Ctone23
Why RTS gamers make better f…
gosubay
ramps on octagon
StaticNine
Customize Sidebar...

Website Feedback

Closed Threads



Active: 7449 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
Germany573 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
Poland17765 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
Germany573 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
Germany573 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
Spain18309 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
Next event in 6h 30m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RuFF_SC2 184
StarCraft: Brood War
Aegong 66
NaDa 48
Sexy 33
Dewaltoss 28
Noble 27
Icarus 4
Dota 2
NeuroSwarm150
League of Legends
JimRising 741
Super Smash Bros
hungrybox560
Other Games
summit1g13993
PiGStarcraft1440
WinterStarcraft385
ViBE148
amsayoshi49
Organizations
Other Games
gamesdonequick652
BasetradeTV162
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 12 non-featured ]
StarCraft 2
• Adnapsc2 3
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Lourlo580
Upcoming Events
Sparkling Tuna Cup
6h 30m
uThermal 2v2 Circuit
11h 30m
BSL22 NKC (BSL vs China)
15h 30m
Jaystar vs Dewalt
eOnzErG vs TerrOr
XuanXuan vs Bonyth
Mihu vs Dewalt
Messiah vs Jaystar
eOnzErG vs Bonyth
TerrOr vs Dewalt
Wardi Open
1d 7h
OSC
1d 20h
Replay Cast
3 days
The PondCast
4 days
Replay Cast
4 days
OSC
4 days
CranKy Ducklings
5 days
[ Show More ]
BSL22 NKC (BSL vs China)
6 days
XuanXuan vs Jaystar
Mihu vs Messiah
eOnzErG vs Dewalt
Bonyth vs Jaystar
TerrOr vs Messiah
XuanXuan vs Mihu
eOnzErG vs Jaystar
Liquipedia Results

Completed

Acropolis #4 - GSB
2026 GSL S2
Heroes Pulsing #1

Ongoing

IPSL Spring 2026
KCM Race Survival 2026 Season 2
Acropolis #4
CSCL: Masked Kings S4
YSL S3
BSL 22 Non-Korean Championship
SCTL 2026 Spring
Maestros of the Game 2
WardiTV Spring 2026
uThermal 2v2 2026 Main Event
Murky Cup 2026
Heroes Pulsing #2
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
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1

Upcoming

CSLAN 4
Blizzard Classic Cup 2026
Kung Fu Cup 2026 Grand Finals
CranK Gathers Season 4: BW vs SC2 Team League
HSC XXIX
Douyu Cup 2026
Heroes Pulsing #3
BLAST Open Fall 2026
Esports World Cup 2026
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
Stake Ranked Episode 3
XSE Pro League 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.