• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 17:54
CEST 23:54
KST 06:54
  • 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, and the Limitations of Standard Play1Team Liquid Map Contest #22: Results and Winners7Code S Season 2 (2026): RO4 and Finals Preview12TL.net Map Contest #22 - Voting & Ladder Map Selection7Code S Season 2 (2026) - RO8 Preview8
Community News
[TLMC] Summer 2026 Ladder Map Rotation05.0.16 patch for SC2 goes live (8 worker start)70ZeroSpace at Steam NextFest - Last free demo31Weekly Cups (June 8-14): Clem and Solar double, PTR tested0RSL: S6 Finals played at BlizzCon 202611
StarCraft 2
General
5.0.16 patch for SC2 goes live (8 worker start) Is the larve respawn broken? The Death of Cheese: From a Professional Cheeser Mizenhauer's Douyu Cup Preview ByuL, and the Limitations of Standard Play
Tourneys
Douyu Cup 2026: $20,000 Legends Event (June 26-28) RSL Revival: Season 6 - Qualifiers and Main Event INu's Battles#17 <BO.9> Sparkling Tuna Cup - Weekly Open Tournament GSL CK #4 20-21th June
Strategy
[G] Having the right mentality to improve
Custom Maps
New Map Maker - Looking for Advice - Love or Hate Work In Progress Melee Maps [D]RTS in all its shapes and glory <3
External Content
The PondCast: SC2 News & Results Mutation # 531 Experimental Artillery Mutation # 530 One For All Mutation # 529 Opportunities Unleashed
Brood War
General
ASL 22 Proposed Map Pool BW General Discussion Farewell Beloved Starcraft (Youtube Videos) vespene.gg — BW replays in browser Quality of life changes in BW that you will like ?
Tourneys
[ASL21] Grand Finals [Megathread] Daily Proleagues The Casual Games of the Week Thread [BSL22] GosuLeague Casts - Tue & Thu 22:00 CEST
Strategy
Simple Questions, Simple Answers Creating a full chart of Zerg builds Relatively freeroll strategies Why doesn't anyone use restoration?
Other Games
General Games
Path of Exile Stormgate/Frost Giant Megathread Beyond All Reason Nintendo Switch Thread ZeroSpace at Steam NextFest - Last free demo
Dota 2
Looking for a Dota Mentor Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
The Games Industry And ATVI US Politics Mega-thread Canadian Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread
Fan Clubs
The HerO Fan Club! The herO Fan Club!
Media & Entertainment
Movie Discussion! Series you have seen recently... [Req][Books] Good Fantasy/SciFi books [TV/BOOK] *SPOILERS* Game of Thrones Discussion
Sports
2024 - 2026 Football Thread TeamLiquid Health and Fitness Initiative For 2023 McBoner: A hockey love story Formula 1 Discussion Cricket [SPORT]
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread Facing Challenges in Mobile App Development
TL Community
The Automated Ban List
Blogs
Listen To The Coaches!
TrAiDoS
An Exploration of th…
waywardstrategy
I'm an arrogant trash talke…
FlaShFTW
Gauntlet SC2: A Retrospectiv…
Ctone23
ramps on octagon
StaticNine
StarCraft improvement
iopq
Customize Sidebar...

Website Feedback

Closed Threads



Active: 8558 users

The Big Programming Thread - Page 984

Forum Index > General Forum
Post a Reply
Prev 1 982 983 984 985 986 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.
Manit0u
Profile Blog Joined August 2004
Poland17774 Posts
Last Edited: 2018-12-24 19:31:11
December 24 2018 19:29 GMT
#19661
Python would instantly be 1000% better if you didn't have to use this explicit self as a first argument of every class method (and then you ignore it when using it completely so you pass arguments from the second on). This is triggering me so much...

Another nitpick of mine is this reliance on indentation. Why it's nice and convenient to have everything be conforming to some style form when some more complex part of your code gets jumbled up (IDE indentation errors are not uncommon and people screwing it up are commonplace) quite often trying to find the error and fix it can be frustrating. Imagine nested ifs getting on the same level. There won't be any compiler error/IDE warning that will catch it.
Time is precious. Waste it wisely.
solidbebe
Profile Blog Joined November 2010
Netherlands4921 Posts
Last Edited: 2018-12-24 19:41:13
December 24 2018 19:40 GMT
#19662
On December 25 2018 04:29 Manit0u wrote:
Python would instantly be 1000% better if you didn't have to use this explicit self as a first argument of every class method (and then you ignore it when using it completely so you pass arguments from the second on). This is triggering me so much...

Another nitpick of mine is this reliance on indentation. Why it's nice and convenient to have everything be conforming to some style form when some more complex part of your code gets jumbled up (IDE indentation errors are not uncommon and people screwing it up are commonplace) quite often trying to find the error and fix it can be frustrating. Imagine nested ifs getting on the same level. There won't be any compiler error/IDE warning that will catch it.

Cant you just auto-indent, sounds like exactly something IDEs are good at catching.

To the guy talking about scala: Im using scala right now in a course about dybamic and static software verification (like type systems, taint analysis, etc). Turns out it is pretty easy to implement another programming language with compilation and interpretation in scala . It does take a bit to get used to the immutable vars and all the wild stuff you can do with lambdas.
That's the 2nd time in a week I've seen someone sig a quote from this GD and I have never witnessed a sig quote happen in my TL history ever before. -Najda
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2018-12-24 19:44:49
December 24 2018 19:43 GMT
#19663
On December 25 2018 04:29 Manit0u wrote:
Python would instantly be 1000% better if you didn't have to use this explicit self as a first argument of every class method (and then you ignore it when using it completely so you pass arguments from the second on). This is triggering me so much...

Another nitpick of mine is this reliance on indentation. Why it's nice and convenient to have everything be conforming to some style form when some more complex part of your code gets jumbled up (IDE indentation errors are not uncommon and people screwing it up are commonplace) quite often trying to find the error and fix it can be frustrating. Imagine nested ifs getting on the same level. There won't be any compiler error/IDE warning that will catch it.


yes I don't like classes in python
It's not often I do something where I need to create classes though, sinceif I wanted to do much oop I probably wouldn't be using python.

your 2nd point is also a great point... one that I had to learn how to fix and can now easily do in notepad++. you kind of just have to be able to figure out what is going on. after 2 or 3 times of it happening to me and wasting a bunch of time I now recognize it pretty fast. copy pasted code in particular often gets indentation screwed up for me.
Manit0u
Profile Blog Joined August 2004
Poland17774 Posts
December 24 2018 19:49 GMT
#19664
On December 25 2018 04:40 solidbebe wrote:
Cant you just auto-indent, sounds like exactly something IDEs are good at catching.


IDE won't catch stuff like that:


def my_func:
if something:
do_something

if something_else:
do_something_else

return whatever



def my_func:
if something:
do_something

if something_else:
do_something_else

return whatever
Time is precious. Waste it wisely.
LightTemplar
Profile Blog Joined August 2011
Ireland481 Posts
Last Edited: 2018-12-24 23:23:29
December 24 2018 23:23 GMT
#19665
I've written python for a long time so I guess I probably don't see the issue, but is indentation actually an issue people have with python past the first few weeks? Personally I can't imagine programming without the indentation being basically Python style.

I agree perhaps the language definition isn't the best place to define code style but at least I can read python logic and not have to worry about what part of flow control I'm in.

And yeh I agree with Travis, classes don't really have a place in most the Python I write. If it needs classes (and its not a lib interface) I rarely see Python as the tool for the job. That said I feel classes are overused in general, way more OOP in the world than it warrants imo.
"Thoughts are always there, the mind can't stop" - Grubby
Silvanel
Profile Blog Joined March 2003
Poland4767 Posts
December 24 2018 23:26 GMT
#19666
travis: use IDLE instead of notepad, it comes with Python and You wont get indentation errors that way.

Also complaining about indentation in Python is exactly the same as complaining about braces in other langauges. The code might do something not intended instead of stoping with error if you are unlucky. Afterall most Python indentation mistakes ends with errors.
Pathetic Greta hater.
LightTemplar
Profile Blog Joined August 2011
Ireland481 Posts
December 24 2018 23:29 GMT
#19667
Actually all the talk of preferred languages brings me to another question. Are programmers preferences for more niche languages generally a result of not having to extensively work on them?

I wonder if that is the case because the majority of the code they see in that language being them learning it themselves and not having to deal with the code of others, and larger projects in general.

It just seems strange to me that whenever the industry settles on a language being mainstream all of a sudden the hobbyist programming world wants the next thing. Or perhaps its because through mass adoption the cracks of the old language start to show and the next languages are progress on that. Thoughts?
"Thoughts are always there, the mind can't stop" - Grubby
Manit0u
Profile Blog Joined August 2004
Poland17774 Posts
December 24 2018 23:48 GMT
#19668
On December 25 2018 08:29 LightTemplar wrote:
Actually all the talk of preferred languages brings me to another question. Are programmers preferences for more niche languages generally a result of not having to extensively work on them?

I wonder if that is the case because the majority of the code they see in that language being them learning it themselves and not having to deal with the code of others, and larger projects in general.

It just seems strange to me that whenever the industry settles on a language being mainstream all of a sudden the hobbyist programming world wants the next thing. Or perhaps its because through mass adoption the cracks of the old language start to show and the next languages are progress on that. Thoughts?


I did big projects in several languages over the past few years. Most of the time I was working with PHP and Ruby though (they're completely different beasts). I did some stuff in Java and Python too, but I can't say I was enjoying it but I have to put my lack of enjoyment on some stylistic choices in those languages (Java having class names and method names so long that I get bored before I even get to the params and Python being kind of awkward for me in general).
Time is precious. Waste it wisely.
TheEmulator
Profile Blog Joined July 2010
28100 Posts
December 25 2018 20:03 GMT
#19669
Python is the fastest growing language is it not? Probably has a lot to do with unis using it as their intro language these days. I know my uni switched our entire intro curriculum from c++ to python 2-3 years ago.
Administrator
Silvanel
Profile Blog Joined March 2003
Poland4767 Posts
December 25 2018 21:08 GMT
#19670
In my opinion it is becuase of the speed of deployment. In Python the time between start of typing and first results is very short and people do love being rewarded fast. Psychology. Also Python is very clear about its limitations and weak sides. No one will try to use Python in environment with limited resources beacuse everyone knows that language wasnt designed for that while in resource rich environment Python flaws are mitigated by abundance of resources. Its a tool perfectly suited for certain tasks, think of it as hammer. Wont help You with screws, but nothing will beat it when it comes to nails.
Pathetic Greta hater.
SC-Shield
Profile Joined December 2018
Bulgaria863 Posts
Last Edited: 2018-12-25 21:37:56
December 25 2018 21:36 GMT
#19671
On December 26 2018 06:08 Silvanel wrote:
In my opinion it is becuase of the speed of deployment. In Python the time between start of typing and first results is very short and people do love being rewarded fast. Psychology. Also Python is very clear about its limitations and weak sides. No one will try to use Python in environment with limited resources beacuse everyone knows that language wasnt designed for that while in resource rich environment Python flaws are mitigated by abundance of resources. Its a tool perfectly suited for certain tasks, think of it as hammer. Wont help You with screws, but nothing will beat it when it comes to nails.


What's wrong with Java then? I know that C++ is difficult, but Java isn't. It allows you to learn C++, Objective-C and C# later.
solidbebe
Profile Blog Joined November 2010
Netherlands4921 Posts
December 25 2018 22:47 GMT
#19672
On December 26 2018 06:36 SC-Shield wrote:
Show nested quote +
On December 26 2018 06:08 Silvanel wrote:
In my opinion it is becuase of the speed of deployment. In Python the time between start of typing and first results is very short and people do love being rewarded fast. Psychology. Also Python is very clear about its limitations and weak sides. No one will try to use Python in environment with limited resources beacuse everyone knows that language wasnt designed for that while in resource rich environment Python flaws are mitigated by abundance of resources. Its a tool perfectly suited for certain tasks, think of it as hammer. Wont help You with screws, but nothing will beat it when it comes to nails.


What's wrong with Java then? I know that C++ is difficult, but Java isn't. It allows you to learn C++, Objective-C and C# later.

Depends on if you want to teach OOP or functional programming. From experience, programming outside of computer science is mostly limited to functional i.e. python.
That's the 2nd time in a week I've seen someone sig a quote from this GD and I have never witnessed a sig quote happen in my TL history ever before. -Najda
Manit0u
Profile Blog Joined August 2004
Poland17774 Posts
December 25 2018 23:13 GMT
#19673
On December 26 2018 07:47 solidbebe wrote:
Show nested quote +
On December 26 2018 06:36 SC-Shield wrote:
On December 26 2018 06:08 Silvanel wrote:
In my opinion it is becuase of the speed of deployment. In Python the time between start of typing and first results is very short and people do love being rewarded fast. Psychology. Also Python is very clear about its limitations and weak sides. No one will try to use Python in environment with limited resources beacuse everyone knows that language wasnt designed for that while in resource rich environment Python flaws are mitigated by abundance of resources. Its a tool perfectly suited for certain tasks, think of it as hammer. Wont help You with screws, but nothing will beat it when it comes to nails.


What's wrong with Java then? I know that C++ is difficult, but Java isn't. It allows you to learn C++, Objective-C and C# later.

Depends on if you want to teach OOP or functional programming. From experience, programming outside of computer science is mostly limited to functional i.e. python.


Wait, what? I believe that most of the stuff being done outside CS is mostly OOP. Functional is still too niche. There are some real-world applications for it but lack of tooling, increased development times and trouble finding the developers are a bit too much of a hassle for most companies at the moment.
Time is precious. Waste it wisely.
graNite
Profile Blog Joined December 2010
Germany4434 Posts
December 25 2018 23:24 GMT
#19674
Anyone up for some numpy code review?
I am coding a bot for https://sc2ai.net. In a game, many distances have to be calculated every frame.

Here is the part of the library that is being used and I want to improve:
https://github.com/Dentosal/python-sc2/blob/develop/sc2/position.py

I built a new class Points that inherits from np.ndarray.
It is not yet connected to the rest of the library, but the functions are done. I removed the functions furthest_to, further_than and so on because the closer-versions are basically the same execpt a -1 or <.

Are these functions implemented in most efficient way? Is there a way to improve the parts that look like this:
find = np.where(np.any(M < distance, axis=1))
selection = np.array([self[i] for i in find[0]])


Any other comments or suggestions are also welcome
+ Show Spoiler +
from typing import Any, Dict, List, Optional, Set, Tuple, Union  # for mypy type checking

import numpy as np
from scipy.spatial.distance import cdist

from position import Point2


class Points(np.ndarray):
def __new__(cls, units_or_points):
obj = np.asarray(units_or_points).view(cls)
return obj

def closest_to(self, point: Point2) -> Point2:
"""Returns the point of self that is closest to another point."""
if point in self:
return Point2(tuple(point))
deltas = self - point
distances = np.einsum("ij,ij->i", deltas, deltas)
result = self[np.argmin(distances)]
return Point2(tuple(result))

def closer_than(self, point: Point2, distance: Union[int, float]) -> "Points":
"""Returns a new Points object with all points of self that
are closer than distance to point."""
position = np.array([point])
M = cdist(self, position)
find = np.where(np.all(M < distance, axis=1))
selection = np.array([self[i] for i in find[0]])
return Points(selection)

def in_distance_between(
self, point: Point2, distance1: Union[int, float], distance2: Union[int, float]
) -> "Points":
"""Returns a new Points object with all points of self
that are between distance1 and distance2 away from point."""
p = np.array([point])
M = cdist(self, p)
find = np.where(np.any(np.logical_and(distance1 < M, M < distance2), axis=1))
selection = np.array([self[i] for i in find[0]])
return Points(selection)

def sort_by_distance_to(self, point: Point2, reverse: bool = False) -> "Points":
"""Returns a new Points object with all points of self sorted by distance to point.
Ordered from smallest to biggest distance. Reverse order with keyword reverse=True."""
deltas = self - point
distances = (1 if reverse else -1) * np.einsum("ij,ij->i", deltas, deltas)
result = self[distances.argsort()[::-1]]
return Points(result)

def closest_n_points(self, point: Point2, n: int) -> "Points":
"""Returns a new Points object with the n points of self that are closest to point."""
deltas = self - point
distances = np.einsum("ij,ij->i", deltas, deltas)
result = (self[distances.argsort()[::-1]])[-n:]
return Points(result)

def in_distance_of_points(self, points: "Points", distance: Union[int, float]) -> "Points":
"""Returns a new Points object with every point of self that
is in distance of any point in points."""
M = cdist(self, points)
find = np.where(np.any(M < distance, axis=1))
selection = np.array([self[i] for i in find[0]])
return Points(selection)

def n_closest_to_distance(self, point: Point2, distance: Union[int, float], n: int) -> "Points":
"""Returns a new Points object with the n points of self
which calculated distance to point is closest to distance."""
deltas = self - point
distances = np.absolute(distance - np.einsum("ij,ij->i", deltas, deltas))
result = (self[distances.argsort()[::-1]])[-n:]
return Points(result)


"Oink oink, bitches" - Tasteless on Pigbaby winning a map against Flash
solidbebe
Profile Blog Joined November 2010
Netherlands4921 Posts
December 26 2018 08:56 GMT
#19675
On December 26 2018 08:13 Manit0u wrote:
Show nested quote +
On December 26 2018 07:47 solidbebe wrote:
On December 26 2018 06:36 SC-Shield wrote:
On December 26 2018 06:08 Silvanel wrote:
In my opinion it is becuase of the speed of deployment. In Python the time between start of typing and first results is very short and people do love being rewarded fast. Psychology. Also Python is very clear about its limitations and weak sides. No one will try to use Python in environment with limited resources beacuse everyone knows that language wasnt designed for that while in resource rich environment Python flaws are mitigated by abundance of resources. Its a tool perfectly suited for certain tasks, think of it as hammer. Wont help You with screws, but nothing will beat it when it comes to nails.


What's wrong with Java then? I know that C++ is difficult, but Java isn't. It allows you to learn C++, Objective-C and C# later.

Depends on if you want to teach OOP or functional programming. From experience, programming outside of computer science is mostly limited to functional i.e. python.


Wait, what? I believe that most of the stuff being done outside CS is mostly OOP. Functional is still too niche. There are some real-world applications for it but lack of tooling, increased development times and trouble finding the developers are a bit too much of a hassle for most companies at the moment.

I'm not talking about industry , I was talking about the 'introduction to programming' courses I see being taught in study programmes outside CS: e.g. in the mathematics department they teach some python and how to implement algorithms and manipulate data, and read/write to files. I did check out the curriculum and it looks like they mention some OOP stuff at the end. In the geology department they get taught matlab, etc.
That's the 2nd time in a week I've seen someone sig a quote from this GD and I have never witnessed a sig quote happen in my TL history ever before. -Najda
Silvanel
Profile Blog Joined March 2003
Poland4767 Posts
December 26 2018 09:25 GMT
#19676
On December 26 2018 06:36 SC-Shield wrote:
Show nested quote +
On December 26 2018 06:08 Silvanel wrote:
In my opinion it is becuase of the speed of deployment. In Python the time between start of typing and first results is very short and people do love being rewarded fast. Psychology. Also Python is very clear about its limitations and weak sides. No one will try to use Python in environment with limited resources beacuse everyone knows that language wasnt designed for that while in resource rich environment Python flaws are mitigated by abundance of resources. Its a tool perfectly suited for certain tasks, think of it as hammer. Wont help You with screws, but nothing will beat it when it comes to nails.


What's wrong with Java then? I know that C++ is difficult, but Java isn't. It allows you to learn C++, Objective-C and C# later.


Well, people complain that Java is overly verbose and also that knowing Java is not enough. You need to have knowledge of specific framework that will be used for a task and its inner doings. Java of course have tons of advantages but i would say its trying to be to broad for its own good.
Pathetic Greta hater.
Manit0u
Profile Blog Joined August 2004
Poland17774 Posts
Last Edited: 2018-12-26 17:36:19
December 26 2018 17:32 GMT
#19677
For me the biggest problem with Java for larger projects is the atrocious way in which they handle the dependency management. Whereas other popular languages give you a simple JSON, YAML or some other form of simple vendor lib versioning in Java world you have to go through those elaborate XML files...

Just take a look at that: http://websystique.com/springmvc/spring-4-mvc-helloworld-tutorial-full-example/

You're writing more XML than Java. I fucking hate XML

Also, nowadays you're doing more magic annotations than actual code writing in Java frameworks, which is a pity.
Time is precious. Waste it wisely.
mantequilla
Profile Blog Joined June 2012
Turkey781 Posts
December 26 2018 19:40 GMT
#19678
Those spring config xml things are completely unnecessary, only thing that's required and xml is maven pom file, which is, in my opinion has strengths over other dependency management systems, like gradle or js dependency systems (hell).

Spring config via annotations is so clear, annotations themselves act like a documentation and I can quickly understand how a class is going to function in runtime. Its almost elegant

For example, in a python project I worked on a little bit, there were bunch of json fields, there's no information on which fields are required or optional, what's their format etc. There's no other way than reading the whole code to understand that. Look at a java class with annotations and everything is clear in 10 seconds.

I don't know if its personal bias because I used java much more than other languages, but I can understand how things work in minutes when looking at someone else's code in java. In python or js, its just magic, I don't understand what's going on without debugging everything line by line and reading the whole code.
Age of Mythology forever!
SC-Shield
Profile Joined December 2018
Bulgaria863 Posts
Last Edited: 2018-12-26 21:05:07
December 26 2018 21:04 GMT
#19679
Does anyone have experience with WiX installers? I was checking today how to install Visual C++ 2015 Redistributable, but I'm still confused how to embed its installer. I just know that merge modules don't work because of Universal CRT on Windows 8.1 and below.
Manit0u
Profile Blog Joined August 2004
Poland17774 Posts
December 27 2018 09:34 GMT
#19680
On December 27 2018 04:40 mantequilla wrote:
Those spring config xml things are completely unnecessary, only thing that's required and xml is maven pom file, which is, in my opinion has strengths over other dependency management systems, like gradle or js dependency systems (hell).

Spring config via annotations is so clear, annotations themselves act like a documentation and I can quickly understand how a class is going to function in runtime. Its almost elegant

For example, in a python project I worked on a little bit, there were bunch of json fields, there's no information on which fields are required or optional, what's their format etc. There's no other way than reading the whole code to understand that. Look at a java class with annotations and everything is clear in 10 seconds.

I don't know if its personal bias because I used java much more than other languages, but I can understand how things work in minutes when looking at someone else's code in java. In python or js, its just magic, I don't understand what's going on without debugging everything line by line and reading the whole code.


I guess I need to refresh my knowledge of Java world Got a small project for my friend which could be a good way to get back in touch with Spring. Is Hibernate still a thing?
Time is precious. Waste it wisely.
Prev 1 982 983 984 985 986 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 7h 6m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
mouzHeroMarine 843
ZombieGrub237
ViBE97
StarCraft: Brood War
Dewaltoss 114
MaD[AoV]30
Purpose 7
League of Legends
JimRising 603
Super Smash Bros
Liquid`Ken20
Heroes of the Storm
Grubby4867
Other Games
summit1g11911
FrodaN2638
shahzam593
Liquid`Hasu161
KnowMe140
Nina38
PPMD16
Organizations
Dota 2
PGL Dota 2 - Secondary Stream4071
StarCraft 2
angryscii 26
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 14 non-featured ]
StarCraft 2
• Hupsaiya 39
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• WagamamaTV548
League of Legends
• Scarra1269
Other Games
• Shiphtur184
Upcoming Events
Douyu Cup 2020
7h 6m
Maestros of the Game
14h 36m
herO vs Classic
Maru vs Serral
BSL22 NKC (BSL vs China)
16h 6m
Douyu Cup 2020
1d 7h
BSL22 NKC (BSL vs China)
1d 16h
Online Event
1d 17h
RSL Revival
2 days
WardiTV Weekly
2 days
RSL Revival
3 days
RSL Revival
3 days
[ Show More ]
Bombastic Starleague
3 days
Kung Fu Cup
4 days
OSC
5 days
CrankTV Team League
5 days
Bombastic Starleague
5 days
Replay Cast
6 days
The PondCast
6 days
HomeStory Cup
6 days
Liquipedia Results

Completed

CSCL: Masked Kings S4
WardiTV Spring 2026
Heroes Pulsing #2

Ongoing

IPSL Spring 2026
Acropolis #4
YSL S3
BSL 22 Non-Korean Championship
CSL Season 21: Qualifier 1
CSL Season 21: Qualifier 2
SCTL 2026 Spring
Douyu Cup 2026
Maestros of the Game 2
Murky Cup 2026
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026
IEM Rio 2026

Upcoming

CSL 2026 Summer (S21)
CSLAN 4
Blizzard Classic Cup 2026
Kung Fu Cup 2026 Grand Finals
RSL Revival: Season 6
CranK Gathers Season 4: BW vs SC2 Team League
HSC XXIX
BCC 2026
Light Tournament 2026
Eternal Conflict S2 Finale
Eternal Conflict S2 E1
Heroes Pulsing #3
FISSURE Playground #5
BLAST Open Fall 2026
Esports World Cup 2026
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
Stake Ranked Episode 3
XSE Pro League 2026
TLPD

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

Advertising | Privacy Policy | Terms Of Use | Contact Us

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