• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 20:39
CET 02:39
KST 10:39
  • 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
RSL Revival - 2025 Season Finals Preview8RSL Season 3 - Playoffs Preview0RSL Season 3 - RO16 Groups C & D Preview0RSL Season 3 - RO16 Groups A & B Preview2TL.net Map Contest #21: Winners12
Community News
Weekly Cups (Dec 15-21): Classic wins big, MaxPax & Clem take weeklies3ComeBackTV's documentary on Byun's Career !11Weekly Cups (Dec 8-14): MaxPax, Clem, Cure win4Weekly Cups (Dec 1-7): Clem doubles, Solar gets over the hump1Weekly Cups (Nov 24-30): MaxPax, Clem, herO win2
StarCraft 2
General
ComeBackTV's documentary on Byun's Career ! Team TLMC #5: Winners Announced! What's the best tug of war? The Grack before Christmas Weekly Cups (Dec 15-21): Classic wins big, MaxPax & Clem take weeklies
Tourneys
OSC Season 13 World Championship $5,000+ WardiTV 2025 Championship $100 Prize Pool - Winter Warp Gate Masters Showdow Sparkling Tuna Cup - Weekly Open Tournament Winter Warp Gate Amateur Showdown #1
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 506 Warp Zone Mutation # 505 Rise From Ashes Mutation # 504 Retribution Mutation # 503 Fowl Play
Brood War
General
What are former legends up to these days? BW General Discussion How soO Began His ProGaming Dreams Klaucher discontinued / in-game color settings BGH Auto Balance -> http://bghmmr.eu/
Tourneys
[Megathread] Daily Proleagues [BSL21] LB SemiFinals - Saturday 21:00 CET [BSL21] WB & LB Finals - Sunday 21:00 CET Small VOD Thread 2.0
Strategy
Simple Questions, Simple Answers Game Theory for Starcraft Current Meta Fighting Spirit mining rates
Other Games
General Games
Nintendo Switch Thread Mechabellum Stormgate/Frost Giant Megathread Beyond All Reason Path of Exile
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Mafia Game Mode Feedback/Ideas Survivor II: The Amazon Sengoku Mafia TL Mafia Community Thread
Community
General
Russo-Ukrainian War Thread US Politics Mega-thread 12 Days of Starcraft The Games Industry And ATVI Things Aren’t Peaceful in Palestine
Fan Clubs
White-Ra Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece
Sports
2024 - 2026 Football Thread Formula 1 Discussion
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List TL+ Announced Where to ask questions and add stream?
Blogs
National Diversity: A Challe…
TrAiDoS
I decided to write a webnov…
DjKniteX
James Bond movies ranking - pa…
Topin
Thanks for the RSL
Hildegard
Saturation point
Uldridge
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1557 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
Germany564 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
Poland17548 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
Germany564 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
Germany564 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
Spain18159 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 7h 21m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
JuggernautJason123
StarCraft: Brood War
Britney 14669
Artosis 830
Dewaltoss 97
Shuttle 88
Bale 34
Dota 2
syndereN775
NeuroSwarm131
League of Legends
C9.Mang0261
Other Games
tarik_tv6097
fl0m811
JimRising 434
Maynarde141
Mew2King76
minikerr56
Organizations
Other Games
gamesdonequick1533
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
Other Games
• imaqtpie3391
• Scarra1583
Upcoming Events
Replay Cast
7h 21m
Wardi Open
10h 21m
OSC
1d 10h
Solar vs MaxPax
ByuN vs Krystianer
Spirit vs TBD
OSC
4 days
Korean StarCraft League
5 days
OSC
5 days
OSC
5 days
OSC
6 days
uThermal 2v2 Circuit
6 days
Liquipedia Results

Completed

CSL Season 19: Qualifier 2
WardiTV 2025
META Madness #9

Ongoing

C-Race Season 1
IPSL Winter 2025-26
BSL Season 21
eXTREMESLAND 2025
SL Budapest Major 2025
ESL Impact League Season 8
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025

Upcoming

CSL 2025 WINTER (S19)
Escore Tournament S1: W2
Escore Tournament S1: W3
BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
Bellum Gens Elite Stara Zagora 2026
HSC XXVIII
Big Gabe Cup #3
OSC Championship Season 13
Nations Cup 2026
ESL Pro League Season 23
ESL Pro League Season 23
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual
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.