• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 15:52
CET 20:52
KST 04:52
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
ByuL: The Forgotten Master of ZvT30Behind the Blue - Team Liquid History Book19Clem wins HomeStory Cup 289HomeStory Cup 28 - Info & Preview13Rongyi Cup S3 - Preview & Info8
Community News
BGE Stara Zagora 2026 cancelled7Blizzard Classic Cup - Tastosis announced as captains12Weekly Cups (March 2-8): ByuN overcomes PvT block4GSL CK - New online series18BSL Season 224
StarCraft 2
General
BGE Stara Zagora 2026 cancelled BGE Stara Zagora 2026 announced ByuL: The Forgotten Master of ZvT Terran AddOns placement Blizzard Classic Cup - Tastosis announced as captains
Tourneys
StarCraft Evolution League (SC Evo Biweekly) https://www.facebook.com/BubaSocks.Official/ [GSL CK] Team Maru vs. Team herO WardiTV Team League Season 10 Master Swan Open (Global Bronze-Master 2)
Strategy
Custom Maps
Publishing has been re-enabled! [Feb 24th 2026] Map Editor closed ?
External Content
The PondCast: SC2 News & Results Mutation # 516 Specter of Death Mutation # 515 Together Forever Mutation # 514 Ulnar New Year
Brood War
General
ASL21 General Discussion BGH Auto Balance -> http://bghmmr.eu/ BW General Discussion Gypsy to Korea Are you ready for ASL 21? Hype VIDEO
Tourneys
[Megathread] Daily Proleagues [BSL22] Open Qualifiers & Ladder Tours IPSL Spring 2026 is here! ASL Season 21 Qualifiers March 7-8
Strategy
Simple Questions, Simple Answers Soma's 9 hatch build from ASL Game 2 Fighting Spirit mining rates Zealot bombing is no longer popular?
Other Games
General Games
Stormgate/Frost Giant Megathread Path of Exile Nintendo Switch Thread PC Games Sales Thread No Man's Sky (PS4 and PC)
Dota 2
Official 'what is Dota anymore' discussion The Story of Wings Gaming
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
Five o'clock TL Mafia Mafia Game Mode Feedback/Ideas Vanilla Mini Mafia TL Mafia Community Thread
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread Mexico's Drug War NASA and the Private Sector
Fan Clubs
The IdrA Fan Club
Media & Entertainment
Movie Discussion! [Req][Books] Good Fantasy/SciFi books [Manga] One Piece
Sports
Formula 1 Discussion 2024 - 2026 Football Thread General nutrition recommendations Cricket [SPORT] TL MMA Pick'em Pool 2013
World Cup 2022
Tech Support
Laptop capable of using Photoshop Lightroom?
TL Community
The Automated Ban List
Blogs
Iranian anarchists: organize…
XenOsky
FS++
Kraekkling
Shocked by a laser…
Spydermine0240
Gaming-Related Deaths
TrAiDoS
Unintentional protectionism…
Uldridge
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2704 users

The Big Programming Thread - Page 929

Forum Index > General Forum
Post a Reply
Prev 1 927 928 929 930 931 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.
mahrgell
Profile Blog Joined December 2009
Germany3943 Posts
December 10 2017 13:43 GMT
#18561
On December 10 2017 21:39 Excludos wrote:
Show nested quote +
On December 10 2017 20:40 sc-darkness wrote:
On December 10 2017 19:53 Hanh wrote:
On December 09 2017 22:46 sc-darkness wrote:
Mutability isn't difficult in C++. You just pass objects by const reference. I don't know how C# would do it though.


Practically, const is more trouble than what it is worth especially when working with 3rd party libraries that do not use constness.


I think you're a minority here. Most C++ developers appreciate const correctness. Yes, sometimes you can't pass a const reference but there will always be such cases even with your own C++ classes.


I mean it's not that difficult to just clone a const variable before passing it if that's needed. That said I rarely use it myself. It's not that difficult to keep track of a variable and just not set it again if you need to. And if it can be defined before compile I just use #define instead (That said I don't really have an opinion on the subject. It's more preference than anything else).


I still like to have function heads declaring references as const whenever possible.

Especially when revisiting old code or other people code, it is useful to know if this is passed as reference only to accelerate the code or if it is passed as reference because the function intends to modify it.

And no "if you want the variable to be kept intact, just clone it" is not a viable solution.
Excludos
Profile Blog Joined April 2010
Norway8240 Posts
December 10 2017 15:00 GMT
#18562
On December 10 2017 22:43 mahrgell wrote:
Show nested quote +
On December 10 2017 21:39 Excludos wrote:
On December 10 2017 20:40 sc-darkness wrote:
On December 10 2017 19:53 Hanh wrote:
On December 09 2017 22:46 sc-darkness wrote:
Mutability isn't difficult in C++. You just pass objects by const reference. I don't know how C# would do it though.


Practically, const is more trouble than what it is worth especially when working with 3rd party libraries that do not use constness.


I think you're a minority here. Most C++ developers appreciate const correctness. Yes, sometimes you can't pass a const reference but there will always be such cases even with your own C++ classes.


I mean it's not that difficult to just clone a const variable before passing it if that's needed. That said I rarely use it myself. It's not that difficult to keep track of a variable and just not set it again if you need to. And if it can be defined before compile I just use #define instead (That said I don't really have an opinion on the subject. It's more preference than anything else).


I still like to have function heads declaring references as const whenever possible.

Especially when revisiting old code or other people code, it is useful to know if this is passed as reference only to accelerate the code or if it is passed as reference because the function intends to modify it.

And no "if you want the variable to be kept intact, just clone it" is not a viable solution.


Never stated the last thing. I said "if you want to pass (or alter) a const variable, you can clone it". That is a perfectly viable solution. Cloning a variable is not what's going to bog down your program even in the slightest.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2017-12-10 23:03:35
December 10 2017 22:57 GMT
#18563
here is a situation I have (python)

I have a set, with many tuples in it. each tuple is of form (a, b, c).

I want to find all tuples in the set of form (a, _, c).

I am guessing that python isn't going to let me use wildcards. So what is the best way to do this? I don't want to have to iterate the set, that defeats the point.

edit: To pre-empt a possible answer, I will say that I can't use a dictionary to solve this problem, because I already am using a dictionary to store my sets. The key for the dictionary is a, not (a,c), because I need to do lookups by a somewhere else.
Acrofales
Profile Joined August 2010
Spain18232 Posts
December 10 2017 23:21 GMT
#18564
filter and a lambda function?
mahrgell
Profile Blog Joined December 2009
Germany3943 Posts
December 10 2017 23:29 GMT
#18565
list/set comprehension?

[x for x in s if condition]
Neshapotamus
Profile Blog Joined May 2006
United States163 Posts
December 11 2017 02:18 GMT
#18566
On December 11 2017 07:57 travis wrote:
here is a situation I have (python)

I have a set, with many tuples in it. each tuple is of form (a, b, c).

I want to find all tuples in the set of form (a, _, c).

I am guessing that python isn't going to let me use wildcards. So what is the best way to do this? I don't want to have to iterate the set, that defeats the point.

edit: To pre-empt a possible answer, I will say that I can't use a dictionary to solve this problem, because I already am using a dictionary to store my sets. The key for the dictionary is a, not (a,c), because I need to do lookups by a somewhere else.


Assume by and b, you mean pattern matching any values instead of specific instances.

You already have a map with key of "a's"


thinking you dict[a] has data like this:
dict[a] = [
(a,x,b),(a,y,b),
(a,x,c),(a,y,c),
(a,x,d),(a,y,d),
]

thrids = set(map(dict[a], lambda x: x[2])) # [b,c,d]

filtered = filter(dict[a], lambda x: x[2] in thirds)

a_and_b = map(filtered , lambda x : (x[0], x[2])) # [(a,b),(a,b),(a,c),(a,c),(a,d),(a,d)]
or
a_and_b = [(x[0],x[1]) for x in filtered]

If you didn't and want to match a specific instance of b:

filtered = filter(dict[a], lambda x: x[2] == b)
a_and_b = [(x[0],x[1]) for x in filtered]

Why are you limited to only using 1 set?
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2017-12-11 02:56:56
December 11 2017 02:54 GMT
#18567
edit: nevermind, figured this problem out

anyways i will read those responses i promise, just super busy coding right this moment!
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2017-12-11 17:30:44
December 11 2017 17:27 GMT
#18568
Ok! replying to the answers

On December 11 2017 08:21 Acrofales wrote:
filter and a lambda function?


this is something i need to learn i've seen people doing it a bit but I didn't really understand what was going on

On December 11 2017 08:29 mahrgell wrote:
list/set comprehension?

[x for x in s if condition]


I think this will make me iterate through the set? I want to avoid having to do that so I can have that sweet O(1) lookup.


On December 11 2017 11:18 Neshapotamus wrote:

Assume by and b, you mean pattern matching any values instead of specific instances.

You already have a map with key of "a's"


thinking you dict[a] has data like this:
dict[a] = [
(a,x,b),(a,y,b),
(a,x,c),(a,y,c),
(a,x,d),(a,y,d),
]

thrids = set(map(dict[a], lambda x: x[2])) # [b,c,d]

filtered = filter(dict[a], lambda x: x[2] in thirds)

a_and_b = map(filtered , lambda x : (x[0], x[2])) # [(a,b),(a,b),(a,c),(a,c),(a,d),(a,d)]
or
a_and_b = [(x[0],x[1]) for x in filtered]

If you didn't and want to match a specific instance of b:

filtered = filter(dict[a], lambda x: x[2] == b)
a_and_b = [(x[0],x[1]) for x in filtered]

Why are you limited to only using 1 set?


more lambda stuff, I will have to read up on it.
I can't answer your actual question about only using 1 set, because my approach changed. But I wasn't only using one set, I was using many sets. I can't remember the details though.




Anyways, something I want to bring up. I've built a TSP algorithm that seems to give the optimal solution (as in, solves the problem). I've been working on methods for a while and all of them were focused on providing the actual answer, not just a best approximation.

Intuitively, it makes sense that it solves it to me. Mathematically, I get flustered when n gets large, I think I would need a math guy to help prove it. And I'd need to see if someone else has taken this approach. I compared it to brute force up to n=11 (any higher and brute force takes forever), about 100 times. It matched brute force every time.

The algorithm is not fast, but it is much much faster than brute force.
Analyzing the complexity would take some time, and I think there is a shitload of optimizing I can do. (hell, there may even be ways to creatively utilize the overall concept to drastically cut runtime down even more).

average runtimes (timing with a clock) looked like this. set up time (populating edges and loading imports) is included in both times.

n = 10
brute force: 12 seconds
mine: 3 seconds

n = 11
brute force: 75 seconds
mine: 12 seconds

n=12
brute force: I don't want to wait this long. I am guessing 25-30 minutes
mine: 1 minute, 5 seconds



Is this at all impressive, assuming the algorithm actually solves every tsp problem assigned?
I'll try a problem set from a repository tonight while I sleep. See if I can solve ~50 or something. I don't exactly have a super computer.
mahrgell
Profile Blog Joined December 2009
Germany3943 Posts
December 11 2017 17:34 GMT
#18569
Pick one:
[ ] use (hash based) set
[ ] do your search in O(1)
phar
Profile Joined August 2011
United States1080 Posts
Last Edited: 2017-12-12 03:55:58
December 12 2017 03:55 GMT
#18570
On December 12 2017 02:27 travis wrote:
n = 10
brute force: 12 seconds
mine: 3 seconds

n = 11
brute force: 75 seconds
mine: 12 seconds

n=12
brute force: I don't want to wait this long. I am guessing 25-30 minutes
mine: 1 minute, 5 seconds

Is this at all impressive, assuming the algorithm actually solves every tsp problem assigned?

Hard to say with low n. There exist a bunch of exact algorithms and heuristic solutions to tsp. Every exact solution is some variant of worst case 2^n * some additional polynomial. So make n large and it doesn't really matter. Smear some A* on that and call it day.

With your 3 data points (10,3); (11,12); (12,65), it sounds like it's still exponential?

If you managed to find a not-exponential exact solution to tsp, you should probably like, not post on this forum anymore, and go collect your fields medal and/or turing award. Also a million dollars.
Who after all is today speaking about the destruction of the Armenians?
Silvanel
Profile Blog Joined March 2003
Poland4742 Posts
Last Edited: 2017-12-12 08:38:49
December 12 2017 08:26 GMT
#18571
Why not both? He can collect awards and still post here!

Edit: Not that i am making fun of Travis. I dont know shit about algorithms.
Pathetic Greta hater.
Manit0u
Profile Blog Joined August 2004
Poland17692 Posts
December 12 2017 15:32 GMT
#18572
On December 12 2017 17:26 Silvanel wrote:
Why not both? He can collect awards and still post here!

Edit: Not that i am making fun of Travis. I dont know shit about algorithms.


Algorithms are for pussies Real men solve their problems the hard way.
Time is precious. Waste it wisely.
mahrgell
Profile Blog Joined December 2009
Germany3943 Posts
December 12 2017 15:52 GMT
#18573
On December 13 2017 00:32 Manit0u wrote:
Show nested quote +
On December 12 2017 17:26 Silvanel wrote:
Why not both? He can collect awards and still post here!

Edit: Not that i am making fun of Travis. I dont know shit about algorithms.


Algorithms are for pussies Real men solve their problems the hard way.


Somehow when you say that, I'm picturing my grandpa, who when given 2 dozen German cities and the task to drive the shortest route, would claim to know this perfect route faster than any algorithm could even process the input.

And then he would start driving without ever looking back and having a single doubt.
I guess this could then be described as "the hard way" for any potential co-drivers.

raNazUra
Profile Joined December 2012
United States10 Posts
December 12 2017 22:31 GMT
#18574
On December 12 2017 12:55 phar wrote:
Show nested quote +
On December 12 2017 02:27 travis wrote:
n = 10
brute force: 12 seconds
mine: 3 seconds

n = 11
brute force: 75 seconds
mine: 12 seconds

n=12
brute force: I don't want to wait this long. I am guessing 25-30 minutes
mine: 1 minute, 5 seconds

Is this at all impressive, assuming the algorithm actually solves every tsp problem assigned?

Hard to say with low n. There exist a bunch of exact algorithms and heuristic solutions to tsp. Every exact solution is some variant of worst case 2^n * some additional polynomial. So make n large and it doesn't really matter. Smear some A* on that and call it day.

With your 3 data points (10,3); (11,12); (12,65), it sounds like it's still exponential?

If you managed to find a not-exponential exact solution to tsp, you should probably like, not post on this forum anymore, and go collect your fields medal and/or turing award. Also a million dollars.

Essentially this.

As a side note, if you check the Wikipedia page, it mentions that there's an early dynamic programming solution that is O(n^2 * 2^n), while the brute force solution is O(n!). If you look at those two running times while ignoring constants, you get something like this:

n n! n^2*2^n
0 1 0
1 1 2
2 2 16
3 6 72
4 24 256
5 120 800
6 720 2304
7 5040 6272
8 40320 16384
9 362880 41472
10 3628800 102400
11 39916800 247808

in which the dynamic programming solution starts overtaking brute force around n=7, and really beating it as you get up into the 9-11 range. Without a larger sample size from your algorithm vs. brute force or the algorithm itself, we can't say if you've got a qualitatively superior (but still exponential) solution like the DP one, or have just managed to bring down the constant on brute force.

If you want to post the approach, I'd be happy to see if I can find any flaws in the logic and/or prove it =) Algorithms was always my favorite subject.
Speak the truth, even if your voice shakes
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
December 13 2017 02:25 GMT
#18575
Do you guys think that inventors of algorithms should be able to patent them?

I read lots of arguments that no they shouldn't, but it doesn't seem any different than discoveries in other scientific fields, to me.

Furthermore, it would seem wrong for some scientist to develop an algorithm and then make little or no financial gain from it, while megacorporations with huge amounts of infastructure can immediately utilize it to increase their profits.
phar
Profile Joined August 2011
United States1080 Posts
Last Edited: 2017-12-13 03:54:29
December 13 2017 03:49 GMT
#18576
If you want the actual answer, from a patent law perspective, you want to do the following:

First read the old trilogy (Gottschalk v. Benson, Parker v. Flook, and Diamond v. Diehr).

And then go look up the recent-ish rulings on Mayo v. Prometheus, Alice v. CLS, and potentially Bilski v. Kappos. Long story short, it's not a purely settled matter yet. However:

Abstract ideas cannot be patented, that's a sure thing. Math, laws of nature, etc cannot be patented, that's a sure thing. As in Gottshalk v. Benson, pure algorithms tend to fall into those categories - not patentable. Meaning if you came up with an exponential solution to TSP, it probably would not be patentable.

That said, if you came up with a way of combining more complex software systems to do some novel thing, you can probably get a patent on it. Whether or not it would hold light in court with sufficient money thrown against you from the other side, is up to how novel your new system is, and maybe whether or not you draw Judge Aslup on the district court level


^ The above is not really my opinion on the way things should be, but rather the way things actually are for US patent law today. So I say this not as a computer person, but as second hand knowledge from someone else who knows a damn shit ton about patent law. So also I could be misremembering / misconstruing some things...



From a practical perspective, there is a reason why a lot of companies don't open source their core algorithms. Trade secrets yo. If a scientist comes up with a sufficiently brilliant algo, they can monetize. See e.g. Larry Page & Sergey Brin, who came up with PageRank, and now are the 12th & 13th richest people in the world.
Who after all is today speaking about the destruction of the Armenians?
Manit0u
Profile Blog Joined August 2004
Poland17692 Posts
December 13 2017 07:00 GMT
#18577
That's also why you can't really patent/copyright game mechanics since they're usually just math algorithms.
Time is precious. Waste it wisely.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
December 13 2017 10:56 GMT
#18578
But how is that different than divising a formula or recipe for a chemical, medicine, material, etc? That's also just math. It's literally a an algorithm. So why is it commonly accepted that patents for this makes sense, but patents for digital recipes do not?

I think the distinction is arbitrary and unfair.

(that said, you actually can patent algorithms and ideas, if properly presented to the patent office. but you aren't supposed to be able to)
Excludos
Profile Blog Joined April 2010
Norway8240 Posts
December 13 2017 11:07 GMT
#18579
On December 13 2017 19:56 travis wrote:
But how is that different than divising a formula or recipe for a chemical, medicine, material, etc? That's also just math. It's literally a an algorithm. So why is it commonly accepted that patents for this makes sense, but patents for digital recipes do not?

I think the distinction is arbitrary and unfair.

(that said, you actually can patent algorithms and ideas, if properly presented to the patent office. but you aren't supposed to be able to)


Let's just be thankful that we can't. If people had the option of patenting algorithms we'd be set back years.
Acrofales
Profile Joined August 2010
Spain18232 Posts
December 13 2017 12:09 GMT
#18580
On December 13 2017 11:25 travis wrote:
Do you guys think that inventors of algorithms should be able to patent them?

I read lots of arguments that no they shouldn't, but it doesn't seem any different than discoveries in other scientific fields, to me.

Furthermore, it would seem wrong for some scientist to develop an algorithm and then make little or no financial gain from it, while megacorporations with huge amounts of infastructure can immediately utilize it to increase their profits.

If you come up with a genius algorithm, don't patent it, because it's probably an abstract idea and thus unpatentable.

Software patents are stupid, but the good ones cover novel systems and methods for solving real life problems. Now if your algorithm can do a million different things (as any truly good solution to the TSP can), then there is not much point in patenting it, because to patent it you also have to divulge it... and you don't want to do that, because that's giving away your unpatentable core technology that can be used for a million different things.

Instead, a brilliant new algorithm is kept as a trade secret and monetized. Either by turning it into a service (e.g. Watson) or by selling services based on it. You could try selling it as a product, but reverse engineering will probably figure out your magic, which is why web-based services is probably the way to go.

Either that, or accept that other people can implement your brilliant algorithm, and just become famous, but not rich off it.
Prev 1 927 928 929 930 931 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 4h 9m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
mouzHeroMarine 686
ProTech105
IndyStarCraft 99
JuggernautJason86
RushiSC 16
StarCraft: Brood War
sSak 52
scan(afreeca) 48
Dota 2
Gorgc4875
canceldota62
Counter-Strike
fl0m3356
byalli812
Heroes of the Storm
Liquid`Hasu264
Khaldor163
Other Games
gofns46544
tarik_tv16175
Grubby2536
FrodaN1580
Beastyqt679
summit1g659
B2W.Neo526
KnowMe465
DeMusliM169
C9.Mang0111
Livibee61
Organizations
Dota 2
PGL Dota 2 - Main Stream13987
Other Games
gamesdonequick1722
ComeBackTV 275
BasetradeTV72
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 18 non-featured ]
StarCraft 2
• StrangeGG 52
• Kozan
• LaughNgamezSOOP
• sooper7s
• AfreecaTV YouTube
• intothetv
• Migwel
• IndyKCrew
StarCraft: Brood War
• blackmanpl 42
• RayReign 6
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• lizZardDota255
League of Legends
• Doublelift1287
• TFBlade1280
Other Games
• imaqtpie1139
• Shiphtur175
Upcoming Events
Replay Cast
4h 9m
CranKy Ducklings
14h 9m
RSL Revival
14h 9m
MaxPax vs Rogue
Clem vs Bunny
WardiTV Team League
16h 9m
uThermal 2v2 Circuit
21h 9m
BSL
1d
Sparkling Tuna Cup
1d 14h
RSL Revival
1d 14h
ByuN vs SHIN
Maru vs Krystianer
WardiTV Team League
1d 16h
Patches Events
1d 21h
[ Show More ]
BSL
2 days
Replay Cast
2 days
Replay Cast
2 days
Wardi Open
2 days
Monday Night Weeklies
2 days
WardiTV Team League
3 days
GSL
4 days
The PondCast
5 days
WardiTV Team League
5 days
Replay Cast
6 days
WardiTV Team League
6 days
Liquipedia Results

Completed

Proleague 2026-03-12
WardiTV Winter 2026
Underdog Cup #3

Ongoing

KCM Race Survival 2026 Season 1
Jeongseon Sooper Cup
BSL Season 22
Proleague 2026-03-13
RSL Revival: Season 4
Nations Cup 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 Elite League 2026
ASL Season 21
Acropolis #4 - TS6
2026 Changsha Offline CUP
Acropolis #4
IPSL Spring 2026
CSLAN 4
HSC XXIX
uThermal 2v2 2026 Main Event
NationLESS Cup
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
BLAST Open 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.