• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 04:58
CEST 10:58
KST 17:58
  • 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
[ASL22] Ro8 Preview: In A Tizzy9[ASL22] Ro16 Preview: Holy Diver5[ASL22] Ro16 Preview: Rough Waters10[ASL22] Ro24 Preview: Siren's Call8[ASL22] Ro24 Preview: Summer's End9
Community News
Weekly Cups (Sep 13-20): herO scores triple1BSL Season 235Weekly Cups (Sep 7-12): SHIN, ByuN, MaxPax double down1StarCraft open world shooter announced at BlizzCon101Weekly Cups (Aug 30-Sep 7): herO thrives amid growing schism10
StarCraft 2
General
Balance hotfix patch 5.0.16b (July 16) Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool How do you feel about the StarCraft shooter announcement at BlizzCon 2026? The Death of Cheese: From a Professional Cheeser Weekly Cups (Sep 13-20): herO scores triple
Tourneys
Stellar Fest TWO the Moon (Dec 16-20) Sparkling Tuna Cup - Weekly Open Tournament 2026 GSTL Announcement RSL Revival: Season 6 - Qualifiers and Main Event RSL goes to London! 2026 Offline Finals Nov 21-22
Strategy
[H] ZvP Mid-Late Game: Stalkers Collossi HT
Custom Maps
Nexus Wars 2021 GUIDE [M] (2) Industrial Park
External Content
Mutation # 544 Double Trouble The PondCast: SC2 News & Results Mutation # 543 Enhanced Defenses Mutation # 542 The Ascended
Brood War
General
screpdb: new Starcraft reporting tool an AI researcher's take on the ladder bot BW General Discussion Bot on ladder [ASL22] Ro8 Preview: In A Tizzy
Tourneys
[ASL22] Ro8 Day 2 [ASL22] Ro16 Group D [ASL22] Ro8 Day 1 [IPSL] IPSL is Back With Winter 26-27!
Strategy
Cliff Jump Revisited (1 in a 1000 strategy) Replay Review Process - What do you do? Simple Questions, Simple Answers Odyssey Mineral Stack Saturation
Other Games
General Games
Diablo IV Nintendo Switch Thread Warcraft III: The Frozen Throne Stormgate/Frost Giant Megathread EVE Corporation
Dota 2
Dota 2 Champions League Season 3 Begins April 25! Official 'what is Dota anymore' discussion
League of Legends
[TL LoL EUW IHs] Teemo shall perish
Heroes of the Storm
Heroes of the Storm 2.0
Hearthstone
Deck construction bug
TL Mafia
TL Mafia Community Thread
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Artificial Intelligence Thread Things Aren’t Peaceful in Palestine All you football fans (soccer)!
Fan Clubs
MarineLorD Fan Club The Creator Fan Club The ShoWTimE Fan Club
Media & Entertainment
Movie Discussion! [Manga] One Piece Diablo Animated Series on Netflix
Sports
Football (Soccer) Thread TeamLiquid Health and Fitness Initiative For 2023 MLB/Baseball 2023
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
Recent Gifted Posts
Blogs
Gaming Intensity, Problemati…
TrAiDoS
38 yo Retired SWE loo…
PurE)Rabbit-SF
Can Bots Beat Pros?? Starcr…
namkraft
[meme] I finally understa…
LUCKY_NOOB
Regacy Esports:Our Goa…
regacyesports
Dreaming of BW patches (mod…
c3rberUs
Customize Sidebar...

Website Feedback

Closed Threads



Active: 7834 users

The Big Programming Thread - Page 950

Forum Index > General Forum
Post a Reply
Prev 1 948 949 950 951 952 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.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
March 06 2018 23:28 GMT
#18981
I have a set of node-weight pairs. So, each node corresponds to a weight.

In each loop, I traverse the nodes in sorted order (minimum to maximum) and do some math stuff.
After every loop, the weight of any of my nodes may change.


What is a very fast design for doing this?

Right now I am using http://www.grantjenks.com/docs/sortedcontainers/sorteddict.html

A sorted dictionary, where I map weights to the node. Then traverse the keys which the dict presents in sorted order.

With this approach, I must delete and re-add new key-value pairs at every step.
But, if I want my weights sorted, any implementation must either sort or start from an empty structure. I can't expect values to magically sort as I re-assign them.

So I wonder if it's even possible to get much faster than what I am using right now. The only thing I could think of is some sort of heap, where I heap the weights and the nodes are glued to them.

Maybe you guys have some clever idea or structure I don't know about.
Acrofales
Profile Joined August 2010
Spain18445 Posts
March 07 2018 07:48 GMT
#18982
On March 07 2018 08:28 travis wrote:
I have a set of node-weight pairs. So, each node corresponds to a weight.

In each loop, I traverse the nodes in sorted order (minimum to maximum) and do some math stuff.
After every loop, the weight of any of my nodes may change.


What is a very fast design for doing this?

Right now I am using http://www.grantjenks.com/docs/sortedcontainers/sorteddict.html

A sorted dictionary, where I map weights to the node. Then traverse the keys which the dict presents in sorted order.

With this approach, I must delete and re-add new key-value pairs at every step.
But, if I want my weights sorted, any implementation must either sort or start from an empty structure. I can't expect values to magically sort as I re-assign them.

So I wonder if it's even possible to get much faster than what I am using right now. The only thing I could think of is some sort of heap, where I heap the weights and the nodes are glued to them.

Maybe you guys have some clever idea or structure I don't know about.

Can multiple nodes have the same weight? If so, a sorteddict won't work.

Either way, a sorted dict in that way probably uses a heap as the underlying data structure anyway. If I had to implement it from start, I'd probably use a binary heap of tuples (weight, node), with the sort only on the weight, obviously. Maybe a Fibonacci heap if delete operations are few and far between. Most heaps can work with duplicate values.
Manit0u
Profile Blog Joined August 2004
Poland17843 Posts
Last Edited: 2018-03-07 13:59:19
March 07 2018 13:58 GMT
#18983
It should be noted that no ethically-trained software engineer
would ever consent to write a DestroyBaghdad procedure.
Basic professional ethics would instead require him to write
a DestroyCity procedure, to which Baghdad could be given as a parameter.
Time is precious. Waste it wisely.
emperorchampion
Profile Blog Joined December 2008
Canada9496 Posts
March 07 2018 15:43 GMT
#18984
On March 07 2018 22:58 Manit0u wrote:
It should be noted that no ethically-trained software engineer
would ever consent to write a DestroyBaghdad procedure.
Basic professional ethics would instead require him to write
a DestroyCity procedure, to which Baghdad could be given as a parameter.


I'm sure that there's some pun involving constructors / destructors to be made here.
TRUEESPORTS || your days as a respected member of team liquid are over
Excludos
Profile Blog Joined April 2010
Norway8279 Posts
March 07 2018 17:13 GMT
#18985
On March 07 2018 22:58 Manit0u wrote:
It should be noted that no ethically-trained software engineer
would ever consent to write a DestroyBaghdad procedure.
Basic professional ethics would instead require him to write
a DestroyCity procedure, to which Baghdad could be given as a parameter.


Haha, hilarious! Where's that from?
Manit0u
Profile Blog Joined August 2004
Poland17843 Posts
Last Edited: 2018-03-08 17:51:04
March 08 2018 14:52 GMT
#18986
On March 08 2018 02:13 Excludos wrote:
Show nested quote +
On March 07 2018 22:58 Manit0u wrote:
It should be noted that no ethically-trained software engineer
would ever consent to write a DestroyBaghdad procedure.
Basic professional ethics would instead require him to write
a DestroyCity procedure, to which Baghdad could be given as a parameter.


Haha, hilarious! Where's that from?


It's a quote from Nathaniel Borenstein: http://www.gdargaud.net/Humor/QuotesProgramming.html

More goodies: https://en.wikiquote.org/wiki/Programming#Computer_Programming_quotes

nsfw image removed

User was warned for this post
Time is precious. Waste it wisely.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
Last Edited: 2018-03-09 20:36:53
March 09 2018 20:02 GMT
#18987
working on my state-machine library (c++). recently i wrote a random-generation module (of dfa, nfa-graphs or expressions).

i exposed it through a RESTful web-api (i think), using boost beast to write a tiny server. boost beast seems like a great addition to the boost libraries. maybe it could do with a more detailed model of the uri. then wrote a simple gui (html/css/js) that fetches a random graph (layout done server-side with ogdf) and draws it using sigmajs (also neat). this is my first foray into javascript, it seems totally crazy, but also quite careless and free.

below are two examples of nfa-graphs over a binary alphabet, with colors from solarized theme. note that the top-most automaton has initial states in each connected component, it is the graph of one nfa. it's a bit hard to decipher the automaton (doesn't show transition symbols f.ex.), but it is just for show.
[image loading]
[image loading]

i was contemplating writing everything in c++, or doing c++/python or c++/web. i chose the c++/web approach because i haven't tried it before. the c++/python stack seems super-nice as well though, especially considering how easy it is to set up bindings twixt c++ and python with pybind or boost python, and also considering how low-tech a python environment can be, and also the versatility of python wrt build-processes, deployment and testing. the pure c++ approach seems a bit of a hassle at the moment. i didn't get friendly with any of the gui-toolkits yet. i'd try emscripten, but it uses clang, and doesn't support concepts yet.

i suspect there are some well-versed web-devs in this thread. i was wondering about your thoughts on letting a resource in REST refer to an operation. i am a bit confused here, as i have seen some articles contrasting REST with f.ex. RPC-JSON. this contrast only seems to make sense if resources are not allowed to be operations.

f.ex. i exposed my random generation like this:
http://host:port/rand/{graph,expr}/{dfa,nfa}

the server responds to a GET on this url by computing a random automaton of the designated type and return it. i probably want to parametrize the random generation. if i were to encode the parameters in the query, it seems the only difference between this and RPC-JSON would be the format of the parameters (encode in query vs JSON-format body), and maybe the verb of the request? this seems sort of irrelevant so i suspect i am missing something, and remember i am new to this.
conspired against by a confederacy of dunces.
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
Last Edited: 2018-03-10 02:55:46
March 10 2018 02:55 GMT
#18988
REST logically maps to a database/object model (i.e. CRUD operations), while RPC logically maps to a function call (i.e. other operations).

If you want an API to make a function call on your server you want RPC (which stands for Remote Procedure Call). You can accomplish the same things in either but one or the other makes it logically simpler depending on your use case.

Your JSON-RPC call might look like:

http://host:port/generateRandomGraph

with a body of:

{
"graph": "dfa",
"expr": "nfa"
}


Your understanding of the difference between RPC and REST seems right. Google "REST vs RPC" to get a more detailed explanation. There is a lot of discussion on the difference.
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
berated-
Profile Blog Joined February 2007
United States1134 Posts
Last Edited: 2018-03-10 12:27:09
March 10 2018 12:06 GMT
#18989
On March 10 2018 05:02 nunez wrote:
i suspect there are some well-versed web-devs in this thread. i was wondering about your thoughts on letting a resource in REST refer to an operation. i am a bit confused here, as i have seen some articles contrasting REST with f.ex. RPC-JSON. this contrast only seems to make sense if resources are not allowed to be operations.

f.ex. i exposed my random generation like this:
http://host:port/rand/{graph,expr}/{dfa,nfa}

the server responds to a GET on this url by computing a random automaton of the designated type and return it. i probably want to parametrize the random generation. if i were to encode the parameters in the query, it seems the only difference between this and RPC-JSON would be the format of the parameters (encode in query vs JSON-format body), and maybe the verb of the request? this seems sort of irrelevant so i suspect i am missing something, and remember i am new to this.


I've spent a good couple years fighting with this, trying to read through the internet and determine what is "right" and how to do things. It's important to remember that REST is just an architectural style, it doesn't necessarily tell you specifics on how to implement but more guiding principles.

In a REST world, there are only nouns. Everything is a resource. From my interpretation of REST -- if that is the direction you ultimately wanted to go -- there are a few things that stick out as needing to be changed.

In your example, the automaton is the resource. GETs are supposed to be idempotent and cannot modify server state. Generating an automaton as a result of a GET request is therefore a no no. Also, each context path is suppose to be another resource -- the fact that it's random, {graph | expr}, {dfa | nfa} are all attributes of the automaton, they don't seem to be resources of their own. In the new scheme, one could POST to /automatons with the parameters needed to create one which could return an id that could be retrieved later via a GET

If you don't like that, another way that I've found that people semantically get around the fact that verbs do not exist is that there are events. A generate automaton event is a noun and something that can be created. Similarly to before you would POST the params to the automaton creation event that returns a link to the newly created resource.

You can keep going down this path, but, even though REST is one of the hot buzzwords, it's why I've ultimately iterated to the fact that most people don't actually want a RESTful api in it's purest definition. There are a ton of great principles in REST as applied to http -- using HTTP verbs correctly, using media type to represent the type of content flow, etc ... but I personally find that pragmatically most of us think in verbs and operations.

There are also other tradeoffs like it's just harder to test POSTs than it is GETs, harder to share with people a single link to show off, especially if you are new to all this and just want to test or show off that just by supplying different params you can generate different automaton. I'd personally just do what works and leave out the "correctness" for a later point -- but if you want to do it "right' hopefully this was helpful.


this seems sort of irrelevant so i suspect i am missing something, and remember i am new to this.


:D tech people and their purity... good luck fighting this one for a long time
nunez
Profile Blog Joined February 2011
Norway4003 Posts
Last Edited: 2018-03-10 13:53:04
March 10 2018 13:51 GMT
#18990
thanks for replies, very helpful.

the random-generators for each type of automaton (graph-dfa,graph-nfa,expr-dfa,expr-nfa) is modelled as resources. rand, rand/expr and rand/graph are all collections, whilst f.ex. rand/graph/dfa is the random-generation algorithm as a resource. {graph,expr} refers the form of the automaton, whilst {dfa,nfa} refers to the content, neither are attributes (at least not in the state-machine theory i am familiar with). the attributes of an automaton are it's states, transitions, etc, which i did not bother to expose.

another part of the API exposes the actually existing automatons (store/my_neat.graph_dfa, store/my_neat.graph_nfa), but it is irrelevant to this discussion.

the kicker is that a GET on one of the generators returns the result of a generation, and not the generator itself. that is, the algorithm doesn't modify the server-state when you GET rand/graph/dfa, it generates an automaton and replies with it. the generation is const with respect to server state. if it stored the generated automaton on the server, then it would be abusing GET. i should have been more clear on this.

again my confusion loops back to whether or not you can model operations / algorithms / functions as a resource, which i have not found a clear answer too. is it an abuse? is the 'pureness' of your REST-api a metric of how similar the object (what is being modeled) is to CRUD? then i can see the allure of a pure REST-api... not in REST itself, but in the simplicity of its object.

the event-based approach was new to me, very interesting.

i try to be pragmatic above all, so i won't lose any sleep over this in any case. i am learning the concepts is all.
conspired against by a confederacy of dunces.
berated-
Profile Blog Joined February 2007
United States1134 Posts
Last Edited: 2018-03-10 16:13:25
March 10 2018 15:38 GMT
#18991
On March 10 2018 22:51 nunez wrote:
thanks for replies, very helpful.

the random-generators for each type of automaton (graph-dfa,graph-nfa,expr-dfa,expr-nfa) is modelled as resources. rand, rand/expr and rand/graph are all collections, whilst f.ex. rand/graph/dfa is the random-generation algorithm as a resource. {graph,expr} refers the form of the automaton, whilst {dfa,nfa} refers to the content, neither are attributes (at least not in the state-machine theory i am familiar with). the attributes of an automaton are it's states, transitions, etc, which i did not bother to expose.

another part of the API exposes the actually existing automatons (store/my_neat.graph_dfa, store/my_neat.graph_nfa), but it is irrelevant to this discussion.

the kicker is that a GET on one of the generators returns the result of a generation, and not the generator itself. that is, the algorithm doesn't modify the server-state when you GET rand/graph/dfa, it generates an automaton and replies with it. the generation is const with respect to server state. if it stored the generated automaton on the server, then it would be abusing GET. i should have been more clear on this.

again my confusion loops back to whether or not you can model operations / algorithms / functions as a resource, which i have not found a clear answer too. is it an abuse? is the 'pureness' of your REST-api a metric of how similar the object (what is being modeled) is to CRUD? then i can see the allure of a pure REST-api... not in REST itself, but in the simplicity of its object.

the event-based approach was new to me, very interesting.

i try to be pragmatic above all, so i won't lose any sleep over this in any case. i am learning the concepts is all.


But your GET still wouldn't be idempotent. Multiple calls to /rand/graph/nfa would produce different results I'm assuming since it says random.

I was using the term modifying state too loosely. I guess what I meant is you still created something. Even though you are not storing the results from a random generation it is still creating the results. Not just reading it.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
Last Edited: 2018-03-10 17:03:32
March 10 2018 17:00 GMT
#18992
i assumed the idempotency was defined wrt resources, and not responses. the resource, on the server, or the state of the server itself, does not change, but the response sent back to the client is different every time.

consider f.ex. the inclusion of a date-field in the response: it might differ for each corresponding request.
conspired against by a confederacy of dunces.
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
March 10 2018 18:53 GMT
#18993
You are correct.
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
sc-darkness
Profile Joined August 2017
856 Posts
March 10 2018 23:19 GMT
#18994
I've not done much C++ since I started a new job. Probably about 3 weeks except reading some code. Do you guys feel the need to do some warm-up like me? What helps to regain confidence, I mean what kind of exercise do you go for? Some fun project I guess? I expect to start using C++ in the near future though.
Excludos
Profile Blog Joined April 2010
Norway8279 Posts
March 10 2018 23:59 GMT
#18995
On March 11 2018 08:19 sc-darkness wrote:
I've not done much C++ since I started a new job. Probably about 3 weeks except reading some code. Do you guys feel the need to do some warm-up like me? What helps to regain confidence, I mean what kind of exercise do you go for? Some fun project I guess? I expect to start using C++ in the near future though.


Depends a bit. I'm equal fan of just jumping in and be super slow the first few weeks until I get confident again. Unless you're starting from scratch it's going to take that long to learn the code you're jumping into anyways. But otherwise, yeah, just do some projects you might find fun! I just did a bunch of Unity stuff because I wanted to touch up on C# myself.

Otherwise, there's always Codewars
mantequilla
Profile Blog Joined June 2012
Turkey781 Posts
Last Edited: 2018-03-11 00:08:02
March 11 2018 00:06 GMT
#18996
new trends on web programming emerge faster than I can forget the old ones.

just a few years ago I was learning jsf 1.2 and then it went like

jsf 1.2+richfaces -> jsf 2+primefaces -> extjs -> angularjs -> angularjs 2-3-4 -> react -> whatever the hell is trendy right now

I just want to settle down and get proficient in something. It is so pointless to learn to put down the same damn button in 24 different ways.
Age of Mythology forever!
tofucake
Profile Blog Joined October 2009
Hyrule19257 Posts
March 11 2018 00:19 GMT
#18997
yeah that's because you're just trying to learn the newest thing instead of learning just the ones you need. Angular, Vue, and React are all still popular, but each serves a different role. Pick the framework for the job, or pick a framework and take jobs based on that (if you're a contractor or work an agency or something).
Liquipediaasante sana squash banana
Hanh
Profile Joined June 2016
146 Posts
March 11 2018 01:32 GMT
#18998
On March 11 2018 02:00 nunez wrote:
i assumed the idempotency was defined wrt resources, and not responses. the resource, on the server, or the state of the server itself, does not change, but the response sent back to the client is different every time.

consider f.ex. the inclusion of a date-field in the response: it might differ for each corresponding request.


An easy way to reason about GET vs POST is to remember that the client (browser) is allowed to cache the response of a GET query. If that affects your expected behavior, GET should be avoided.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
March 11 2018 06:26 GMT
#18999
On March 11 2018 10:32 Hanh wrote:
Show nested quote +
On March 11 2018 02:00 nunez wrote:
i assumed the idempotency was defined wrt resources, and not responses. the resource, on the server, or the state of the server itself, does not change, but the response sent back to the client is different every time.

consider f.ex. the inclusion of a date-field in the response: it might differ for each corresponding request.


An easy way to reason about GET vs POST is to remember that the client (browser) is allowed to cache the response of a GET query. If that affects your expected behavior, GET should be avoided.

I have been wondering about this, too. I'm working on something that is similar to a forum in a SPA. The content of a thread necessarily changes over time. So when I request a certain thread (all its comments), do I use a GET (bad because of caching) or a POST (doesn't seem to be what POST is supposed to be for).
If you have a good reason to disagree with the above, please tell me. Thank you.
Hanh
Profile Joined June 2016
146 Posts
March 11 2018 08:31 GMT
#19000
In your case, I'd use GET with a Cache-Control header (or something to the same effect) because you are expecting every user to see the same result, i.e. the user is getting the latest snapshot of the resource.
However, in the OP the user will get something different every time. I'd use POST because it seems that the user is "posting" a request for a new graph. If instead the url was of the form /rand/graph/nfa?seed=xxx then I think GET would be fine.
Prev 1 948 949 950 951 952 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 2h 2m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
ProTech164
Has 74
StarCraft: Brood War
Shuttle 2434
Britney 2066
firebathero 760
Leta 369
Stork 184
PianO 56
Shinee 33
sorry 32
Sharp 29
Hm[arnc] 25
[ Show more ]
Bale 22
zelot 17
Shine 15
Terrorterran 11
ajuk12(nOOB) 8
Dota 2
Gorgc3179
League of Legends
Reynor69
Other Games
olofmeister1009
ceh9550
Happy460
JimRising 453
crisheroes162
Livibee141
Maynarde132
Mew2King93
Organizations
Dota 2
PGL Dota 2 - Main Stream9712
Other Games
gamesdonequick490
StarCraft: Brood War
Afreeca ASL 337
[ Show 15 non-featured ]
StarCraft 2
• Berry_CruncH140
• StrangeGG 35
• mYiSmile128
• LUISG 21
• Letter144
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• Migwel
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• lizZardDota2114
League of Legends
• Stunt700
Upcoming Events
Kung Fu Cup
2h 2m
The PondCast
1d 1h
Replay Cast
1d 15h
Korean StarCraft League
2 days
CranKy Ducklings
3 days
GSL
3 days
Yamato Cup
4 days
Replay Cast
4 days
Afreeca Starleague
5 days
WardiTV Weekly
5 days
[ Show More ]
Sparkling Tuna Cup
6 days
Afreeca Starleague
6 days
PiGosaur Cup
6 days
Liquipedia Results

Completed

Super Anchor Qualifying S3
Blizzard Classic Cup 2026
Big Dog Cup 2026 Div 1

Ongoing

ASL Season 22
CSL 2026 AUTUMN (S22)
Acropolis #5
Acropolis #5 - GSA
Calamity Invitational
Logitech G Play Connect 2026
SL StarSeries Fall 2026
FISSURE Playground #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

Upcoming

Acropolis #5 - GSB
Acropolis #5 - GSC
BSL Season 23
SC4ALL II: Brood War
BSL 23: Non-Korean Championship
HSC XXX
Stellar Fest 2: Lunar Cup
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
RSL Offline Finals
Custodian Cup
Copium Cup
PGL Major Singapore 2026
Stake Ranked Episode 6
BLAST Rivals Fall 2026
IEM Beijing 2026
Stake Ranked Episode 5
PGL Masters Bucharest 2026
1win Private Club #2
Thunderpick World Champ. '26
ESL Pro League Season 24
Stake Ranked Episode 4
1win Private Club #1
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2026 TLnet. All Rights Reserved.