• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 09:06
CEST 15:06
KST 22:06
  • 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] Ro16 Preview: Rough Waters10[ASL22] Ro24 Preview: Siren's Call8[ASL22] Ro24 Preview: Summer's End9Serral wins HomeStory Cup 2915Serral wins Maestros of the Game 244
Community News
StarCraft open world shooter announced at BlizzCon66Weekly Cups (Aug 30-Sep 7): herO thrives amid growing schism10Official StarCraft website teases new content ahead of BlizzCon?169Stellar Fest TWO the Moon (Dec 16-20)9Weekly Cups (August 24-30): Patches' balance mod takes over3
StarCraft 2
General
StarCraft open world shooter announced at BlizzCon How do you feel about the StarCraft shooter announcement at BlizzCon 2026? Balance hotfix patch 5.0.16b (July 16) Team Liquid Map Contest #22: Results and Winners Weekly Cups (Aug 30-Sep 7): herO thrives amid growing schism
Tourneys
Sparkling Tuna Cup - Weekly Open Tournament RSL goes to London! 2026 Offline Finals Nov 21-22 KSL Week #92 IntoTheTV X SOOP SC2 League : Weekly & Monthly 2026 GSTL Announcement
Strategy
[G] Having the right mentality to improve
Custom Maps
Nexus Wars 2021 GUIDE [M] (2) Industrial Park
External Content
Mutation # 542 The Ascended Mutation # 541 Binary Choice The PondCast: SC2 News & Results Mutation # 540 Dodge This
Brood War
General
Official StarCraft website teases new content ahead of BlizzCon? ASL22 General Discussion BGH Auto Balance -> http://bghmmr.eu/ Broodwar Prediction Market Practice Partners (Official)
Tourneys
[ASL22] Ro16 Group B [ASL22] Ro16 Group A Escore Tournament - Season 3 Small VOD Thread 2.0
Strategy
Replay Review Process - What do you do? Simple Questions, Simple Answers Odyssey Mineral Stack Saturation Game Theory for Starcraft
Other Games
General Games
Diablo IV Nintendo Switch Thread EVE Corporation [Maplestory Hardcore] Let's Play~!! General RTS Discussion Thread
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
[TL LoL EUW IHs] Teemo shall perish TSM pausing esports and CLG Dead
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 Things Aren’t Peaceful in Palestine Trading/Investing Thread UK Politics Mega-thread Russo-Ukrainian War Thread
Fan Clubs
MarineLorD Fan Club The Creator Fan Club The ShoWTimE Fan Club
Media & Entertainment
Movie Discussion! 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
The Automated Ban List Northern Ireland Global Starcraft
Blogs
Virtual Romance, Real-Life C…
TrAiDoS
Regacy Esports:Our Goa…
regacyesports
Dreaming of BW patches (mod…
c3rberUs
LOCKPICKING NOOB
LUCKY_NOOB
Customize Sidebar...

Website Feedback

Closed Threads



Active: 6264 users

The Big Programming Thread - Page 497

Forum Index > General Forum
Post a Reply
Prev 1 495 496 497 498 499 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.
berated-
Profile Blog Joined February 2007
United States1134 Posts
Last Edited: 2014-07-04 16:09:01
July 04 2014 16:07 GMT
#9921
On July 04 2014 23:58 Nesserev wrote:
Show nested quote +
On July 04 2014 22:21 urboss wrote:
So how do you know then when to write a Unit Test?
If you don't do it for every small function you write, what's the point of doing it in the first place?

Are there any scientific studies that compare the gained productivity from doing unit tests vs. doing system tests only?

Well, there's a difference between TDD and just writing unit tests. TDD is an ugly process, but the use of unit tests is one of those 'good' parts that came out of it and should be treated as just another tool for the programmer to write the program he/she wants. I personally feel like it's unnecessary to write unit tests for those small functions that I'm confident about, as unit tests are limited and not to be completely relied upon; they're not the proof that your code is bugfree (which is impossible btw).

Some agree with my logic, some don't... and some want to shoot me in the face for saying that.

To prove my point: http://en.wikipedia.org/wiki/Ariane_5_Flight_501


Some people will want to shoot you in the face no matter what stance you take on anything in programming, so, there isn't a lot of surprise in that.

The only problem that I have with your logic is that its singularly focused on your ability to get the code right. Over the course of a large project, many different programmers will come through and will have varying degrees of knowledge of why the system was formed the way it was. If written well, unit tests can show assumptions that are built into your product and act as a form of documentation as to how you expected for your code to be used. If ran every build, they also have less chances becoming inconsistent like comments.

The rest of what you have to say I agree with, especially on the unit tests do not prove your code is bugfree, only that it acts as the tests prove that they do.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
July 04 2014 16:22 GMT
#9922
On July 04 2014 23:58 Nesserev wrote:
Show nested quote +
On July 04 2014 22:21 urboss wrote:
So how do you know then when to write a Unit Test?
If you don't do it for every small function you write, what's the point of doing it in the first place?

Are there any scientific studies that compare the gained productivity from doing unit tests vs. doing system tests only?

Well, there's a difference between TDD and just writing unit tests. TDD is an ugly process, but the use of unit tests is one of those 'good' parts that came out of it and should be treated as just another tool for the programmer to write the program he/she wants. I personally feel like it's unnecessary to write unit tests for those small functions that I'm confident about, as unit tests are limited and not to be completely relied upon; they're not the proof that your code is bugfree (which is impossible btw).

Some agree with my logic, some don't... and some want to shoot me in the face for saying that.

To prove my point: http://en.wikipedia.org/wiki/Ariane_5_Flight_501

TDD is a beautiful process. It temporarily produces ugly code which is then turned into beautiful code that is just right for what it is supposed to do.
In TDD you're also not writing unit tests for the small methods that you're confident about, unless they are externally visible features of your module. If you're testing small private methods, you're doing it wrong; you'll bind your implementation to your tests and thus make refactoring impossible.
If you have a good reason to disagree with the above, please tell me. Thank you.
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
July 04 2014 17:58 GMT
#9923
--- Nuked ---
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
July 04 2014 21:48 GMT
#9924
On July 04 2014 22:21 urboss wrote:
So how do you know then when to write a Unit Test?
If you don't do it for every small function you write, what's the point of doing it in the first place?

Are there any scientific studies that compare the gained productivity from doing unit tests vs. doing system tests only?


If you refer to 'small functions' as private ones, as far as I have understood the topic, you assume they're correct if the public API works as expected. And if they're not tested in the public API, then you don't need them anyway.

As far as the worth of unit testing goes, I'm not consistent in writing unit tests but it's good to know you can rewrite code, and then run the test to see if it works in the intended way as last time.
averageshuohuizhong
Profile Joined July 2014
2 Posts
July 04 2014 22:09 GMT
#9925
anyone know where i can learn web game development
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
Last Edited: 2014-07-05 07:27:37
July 05 2014 07:15 GMT
#9926
--- Nuked ---
Fawkes
Profile Blog Joined May 2010
Canada1935 Posts
July 06 2014 18:58 GMT
#9927
First time trying something like this...can anybody tell me why the response header is empty? Nothing gets printed in the log. ReadyState of this request stays at 1.

+ Show Spoiler ['JSON/HTTP post request question] +

function update (userid, achievementid, description)
{
console.log("starting http request");
var xmlhttp;
if (window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest();
}
else
{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.open("POST", "/update.php");
xmlhttp.setRequestHeader("Content-type", "application/json");
console.log(xmlhttp.getAllResponseHeaders());
console.log("1");
var JSONObj = { "userId": userid, "achievementId": achievementid, "Description": description } ;
console.log("2");
xmlhttp.send(JSON.stringify(JSONObj));
console.log(JSONObj);

console.log("js update end");
}
Taeyeon ~ Jennie ~ Seulgi ~ Irene @Fawkes711
urboss
Profile Joined September 2013
Austria1223 Posts
July 06 2014 19:15 GMT
#9928
Don't know if that's the issue, but you are using both XML and JSON in your code.
Stick to either XML or JSON.
Fawkes
Profile Blog Joined May 2010
Canada1935 Posts
July 06 2014 19:53 GMT
#9929
Yeah...I have somewhat no idea what I am doing.

I'm trying to create a js function that takes 3 parameters, create a JSON object and then submit a HTTP POST request to a page called update.php which would then use that JSON object. But I'm having a lot of difficulty trying to write this request.
Taeyeon ~ Jennie ~ Seulgi ~ Irene @Fawkes711
epilogue
Profile Joined April 2011
0 Posts
July 06 2014 20:03 GMT
#9930
On July 04 2014 22:21 urboss wrote:
So how do you know then when to write a Unit Test?
If you don't do it for every small function you write, what's the point of doing it in the first place?

Are there any scientific studies that compare the gained productivity from doing unit tests vs. doing system tests only?


Well, if you are asking this question, I can say you should _always_ write unit tests, because you are not (neither do I, for example) experienced enough to decide if it is necessary. I remember, from the presentation a friend of mine made, there indeed are scientific studies that show in the long run unit tests reduce the cost. As far as I remember, writing unit tests increases development time up to 40%, but as the software grows and evolves, it actually reduces the time spent on the project.

Unit tests should be part of your code. It does not matter how small the function is. If you write your own addition operation for example, you never know whether the statement `mySum(2,2)` will always produce `4`. Eventually someone will definitely f... up and you should be prepared.

I have doubts about TDD, but unit tests are a mandatory part of the code. Code should be written for humans, never forget this fact.
delHospital
Profile Blog Joined December 2010
Poland261 Posts
July 06 2014 20:15 GMT
#9931
Ok, so there's an often repeated myth that players living closer geographically to a server (and therefore having a lower ping) have an advantage against those living farther away (here is one example out of many).

However, Starcraft II is a peer-to-peer game where the game states of all participants (players and spectators) are synchronized, and the game server doesn't take an active part.

Let's assume a 1v1 game. After a command is issued (e.g. right click), but before it is carried out (e.g. the unit starts moving), both players' game clients have to agree on the exact frame that the action will happen. If this wasn't enforced, then on one screen you could have a unit barely survive an encounter, and on the other it could be dead – there is no authoritative server that could see "the true state" and resolve such disputes. So, when the two players live 10,000 miles apart, the game slows down for both of them equally – both players' commands are executed not a couple frames from issuing, but several hundred milliseconds later.

Or at least that's how I see it. Am I right by saying that lag in SC2 is always symmetric, or is there something wrong with my understanding?
berated-
Profile Blog Joined February 2007
United States1134 Posts
Last Edited: 2014-07-06 20:24:56
July 06 2014 20:24 GMT
#9932
On July 07 2014 03:58 Fawkes wrote:
First time trying something like this...can anybody tell me why the response header is empty? Nothing gets printed in the log. ReadyState of this request stays at 1.

+ Show Spoiler ['JSON/HTTP post request question] +

function update (userid, achievementid, description)
{
console.log("starting http request");
var xmlhttp;
if (window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest();
}
else
{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.open("POST", "/update.php");
xmlhttp.setRequestHeader("Content-type", "application/json");
console.log(xmlhttp.getAllResponseHeaders());
console.log("1");
var JSONObj = { "userId": userid, "achievementId": achievementid, "Description": description } ;
console.log("2");
xmlhttp.send(JSON.stringify(JSONObj));
console.log(JSONObj);

console.log("js update end");
}


Response headers are only valid on the response. You are trying to fetch them from the request object, before you even call send.

You don't have seem to have any callbacks on your xmlhttp object, have you not posted some code that is somewhere else?

This post shows an example

You are also using the synchronous call of xmlhttp, might want to be careful with that.
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
July 06 2014 20:53 GMT
#9933
On July 03 2014 03:04 RoyGBiv_13 wrote:
I've recently hired a few software devs. I only glanced at their resume's once to see what kind of things to talk about during lunch/dinner.
One candidate in particular had a LaTeX resume, and that was one of the points to talk about. We ended up hiring him. I don't think the LaTeX'ness of the resume made us hire him, but it did add information density to a one page document. If you don't normally use LaTeX, though, I wouldn't hold it against you.

On side projects, the later in your career and life you are, the more they mean. If a 40-year old dev can still make time to fidget with gizmos and gadgets, it's a strong indicator that they like what they do. A 20-something fresh out of college without any side projects or previous experience may have no strong indicator they actually like software development, so it's riskier to invest in them only to find out they'd rather be a history teacher.


That makes sense. Using LaTeX in your resume is a better way of adding LaTeX to your skill summary of some sort, and because it's so prominent it's an easy topic to start talking about, just like any other interesting projects on the resume, or like bringing a sample project (apps) you made to the resume. Great to do to specify you have an interest in it (though I still don't like that some people do it "just to one up others on the interview"), but I guess if the recruiter thinks that LaTeX resumes are better than non-LaTeX resumes I probably don't want to work there.

I guess I just get overly annoyed at some stuff people say, but that's why I asked you guys :d
There is no one like you in the universe.
sluggaslamoo
Profile Blog Joined November 2009
Australia4494 Posts
Last Edited: 2014-07-08 11:24:35
July 08 2014 11:23 GMT
#9934
On July 07 2014 05:15 delHospital wrote:
Ok, so there's an often repeated myth that players living closer geographically to a server (and therefore having a lower ping) have an advantage against those living farther away (here is one example out of many).

However, Starcraft II is a peer-to-peer game where the game states of all participants (players and spectators) are synchronized, and the game server doesn't take an active part.

Let's assume a 1v1 game. After a command is issued (e.g. right click), but before it is carried out (e.g. the unit starts moving), both players' game clients have to agree on the exact frame that the action will happen. If this wasn't enforced, then on one screen you could have a unit barely survive an encounter, and on the other it could be dead – there is no authoritative server that could see "the true state" and resolve such disputes. So, when the two players live 10,000 miles apart, the game slows down for both of them equally – both players' commands are executed not a couple frames from issuing, but several hundred milliseconds later.

Or at least that's how I see it. Am I right by saying that lag in SC2 is always symmetric, or is there something wrong with my understanding?


This is how BW worked, this is not how SC2 works.

SC2 does not use a peer to peer system.
Come play Android Netrunner - http://www.teamliquid.net/forum/viewmessage.php?topic_id=409008
delHospital
Profile Blog Joined December 2010
Poland261 Posts
July 08 2014 12:31 GMT
#9935
On July 08 2014 20:23 sluggaslamoo wrote:
Show nested quote +
On July 07 2014 05:15 delHospital wrote:
Ok, so there's an often repeated myth that players living closer geographically to a server (and therefore having a lower ping) have an advantage against those living farther away (here is one example out of many).

However, Starcraft II is a peer-to-peer game where the game states of all participants (players and spectators) are synchronized, and the game server doesn't take an active part.

Let's assume a 1v1 game. After a command is issued (e.g. right click), but before it is carried out (e.g. the unit starts moving), both players' game clients have to agree on the exact frame that the action will happen. If this wasn't enforced, then on one screen you could have a unit barely survive an encounter, and on the other it could be dead – there is no authoritative server that could see "the true state" and resolve such disputes. So, when the two players live 10,000 miles apart, the game slows down for both of them equally – both players' commands are executed not a couple frames from issuing, but several hundred milliseconds later.

Or at least that's how I see it. Am I right by saying that lag in SC2 is always symmetric, or is there something wrong with my understanding?


This is how BW worked, this is not how SC2 works.

SC2 does not use a peer to peer system.

[citation needed]

I don't mean to sound like a dick, but if what you said is true, then why do we have lag screens when an observer is on a bad connection?

Or why are maphacks possible?

How are "desync" and "results disagree" errors possible?

If p2p is not how SC2 works, then how does it work?
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
July 08 2014 13:10 GMT
#9936
--- Nuked ---
delHospital
Profile Blog Joined December 2010
Poland261 Posts
Last Edited: 2014-07-08 16:14:53
July 08 2014 16:03 GMT
#9937
On July 08 2014 22:10 Nesserev wrote:
Show nested quote +
On July 08 2014 21:31 delHospital wrote:
[citation needed]

I don't mean to sound like a dick, but if what you said is true, then why do we have lag screens when an observer is on a bad connection?

Or why are maphacks possible?

How are "desync" and "results disagree" errors possible?

If p2p is not how SC2 works, then how does it work?

You don't sound like a dick... but you're not sounding logical either Lag screens, maphacks, etc. are not exclusive to P2P.

Lag is a universal problem,

In what client-server games do spectators on a bad connection cause the game to stop? I can't think of any.


and maphacks (in SC2's case) are the results of 'too much data' being on the client's computer, nothing else.

There is nothing that would suggest that the only reason for existence of maphacks is incompetence of Blizzard's developers. And if it was, it would've been fixed a long time ago. We've gotten game resuming, multiplayer replays, changes to the arcade, "global play", etc., why haven't we received a fix to the maphack problem?


"Desync" and "results disagree" could have many possible causes...

Could you give some examples? Because to me they don't make sense outside of a p2p architecture.


If I remember correctly, it was stated that Blizzard uses the typical client-server system, and relays everything through their own servers. Don't have any source though...

They're relaying everything through their servers to eliminate the need for port forwarding.

In custom maps it is possible to alter the game state of only one client. If it's possible, then each player must have "their very own server", i.e. peer-to-peer.

Also, here is R1CH saying that it's p2p. Here's another good post from that thread.

So... does anyone see a way for lag to affect players differently?
Manit0u
Profile Blog Joined August 2004
Poland17843 Posts
Last Edited: 2014-07-08 16:13:13
July 08 2014 16:11 GMT
#9938
On July 07 2014 05:53 Blisse wrote:
Show nested quote +
On July 03 2014 03:04 RoyGBiv_13 wrote:
I've recently hired a few software devs. I only glanced at their resume's once to see what kind of things to talk about during lunch/dinner.
One candidate in particular had a LaTeX resume, and that was one of the points to talk about. We ended up hiring him. I don't think the LaTeX'ness of the resume made us hire him, but it did add information density to a one page document. If you don't normally use LaTeX, though, I wouldn't hold it against you.

On side projects, the later in your career and life you are, the more they mean. If a 40-year old dev can still make time to fidget with gizmos and gadgets, it's a strong indicator that they like what they do. A 20-something fresh out of college without any side projects or previous experience may have no strong indicator they actually like software development, so it's riskier to invest in them only to find out they'd rather be a history teacher.


That makes sense. Using LaTeX in your resume is a better way of adding LaTeX to your skill summary of some sort, and because it's so prominent it's an easy topic to start talking about, just like any other interesting projects on the resume, or like bringing a sample project (apps) you made to the resume. Great to do to specify you have an interest in it (though I still don't like that some people do it "just to one up others on the interview"), but I guess if the recruiter thinks that LaTeX resumes are better than non-LaTeX resumes I probably don't want to work there.

I guess I just get overly annoyed at some stuff people say, but that's why I asked you guys :d


Meh, I write my resume's in Libre Office and just put LaTeX among other software/computer skills. LaTeX seems like such an overkill for 2 simple pages... There's a tool for everything, and I don't think LaTeX is a tool to write your resume, letter to grandma or some single-page requests at uni/office.
Time is precious. Waste it wisely.
urboss
Profile Joined September 2013
Austria1223 Posts
July 08 2014 16:13 GMT
#9939
You could in theory solve the problem by encrypting all the game state variables.
My guess is that this would:
- be too much of a pain in the ass
- slow down the game noticeably
- assume that this is an actual issue for Blizzard (they can already detect maphacks with Warden)
nunez
Profile Blog Joined February 2011
Norway4003 Posts
Last Edited: 2014-07-08 16:53:38
July 08 2014 16:49 GMT
#9940
in theory they don't need to shar eall the game state variables, just the one the other guy sees, this was done back in 1996 in subspace.

but solving the maphacking problem by technological innovation is bunk. they should focus on facilitating community effort driven reprisals. maphackers are mostly concentrated around a narrow mmr (sc2 with maphacks is a super simple game for retards), the ppl who give a shit are also concentrated around that same mmr. the maphackers could be policed by something along the lines of the maphacker thread, wherein the mods banned confirmed / blatant hackers.
conspired against by a confederacy of dunces.
Prev 1 495 496 497 498 499 1032 Next
Please log in or register to reply.
Live Events Refresh
WardiTV Invitational
11:00
Pre Blizzcon Cup
Classic vs ByuNLIVE!
WardiTV1157
IntoTheiNu 1052
Rex145
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Rex 145
MindelVK 38
StarCraft: Brood War
Britney 54898
Calm 7256
PianO 4738
Jaedong 1314
Hyuk 607
firebathero 411
Pusan 279
Last 237
Hyun 202
Mini 146
[ Show more ]
ggaemo 71
Sea.KH 63
Mong 56
Killer 39
Sharp 37
sorry 36
sSak 31
HiyA 31
NaDa 29
Hm[arnc] 21
Trap 21
Shine 17
JulyZerg 17
SilentControl 14
Rock 11
ajuk12(nOOB) 9
Icarus 6
Dota 2
qojqva1655
syndereN382
Fuzer 207
Counter-Strike
zeus489
x6flipin233
Other Games
Happy530
DeMusliM329
amsayoshi20
Hui .6
Organizations
Other Games
BasetradeTV215
StarCraft: Brood War
UltimateBattle 25
lovetv 8
[ Show 10 non-featured ]
StarCraft 2
• Adnapsc2 46
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• Migwel
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• WagamamaTV615
Upcoming Events
Shopify Rebellion Sundays
1h 54m
Spirit vs Mixu
Clem vs TBD
RSL Revival
2h 54m
Serral vs Rogue
BlizzCon
5h 24m
IdrA vs MC
Afreeca Starleague
20h 54m
Light vs JyJ
Soulkey vs hero
WardiTV Weekly
21h 54m
Monday Night Weeklies
1d 2h
Afreeca Starleague
1d 20h
Snow vs Shinee
Shine vs EffOrt
GSL
1d 21h
PiGosaur Cup
2 days
The PondCast
2 days
[ Show More ]
Kung Fu Cup
2 days
Replay Cast
3 days
KCM Race Survival
3 days
IntoTheTV X SOOP
3 days
Replay Cast
4 days
IntoTheTV X SOOP
4 days
Replay Cast
5 days
GSL
5 days
Replay Cast
6 days
GSL
6 days
Liquipedia Results

Completed

Acropolis #5 - TRS
PiG Sty Festival 8.0
Big Dog Cup 2026 Div 1

Ongoing

KCM Race Survival 2026 Season 3
K-JUNGMAN
ASL Season 22
Super Anchor Qualifying S3
CSL 2026 AUTUMN (S22)
Acropolis #5
Blizzard Classic Cup 2026
Blizzard Classic Cup 2026
RSL Revival: Season 6
Calamity Invitational
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 - GSA
Acropolis #5 - GSB
Acropolis #5 - GSC
SC4ALL II: Brood War
HSC XXX
Stellar Fest 2: Lunar Cup
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
RSL Offline Finals
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
Logitech G Play Connect 2026
SL StarSeries Fall 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.