• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 19:39
CET 01:39
KST 09:39
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
RSL Season 3 - Playoffs Preview0RSL Season 3 - RO16 Groups C & D Preview0RSL Season 3 - RO16 Groups A & B Preview2TL.net Map Contest #21: Winners12Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10
Community News
RSL Season 3: RO16 results & RO8 bracket13Weekly Cups (Nov 10-16): Reynor, Solar lead Zerg surge2[TLMC] Fall/Winter 2025 Ladder Map Rotation14Weekly Cups (Nov 3-9): Clem Conquers in Canada4SC: Evo Complete - Ranked Ladder OPEN ALPHA15
StarCraft 2
General
Weekly Cups (Nov 10-16): Reynor, Solar lead Zerg surge SC: Evo Complete - Ranked Ladder OPEN ALPHA RSL Season 3: RO16 results & RO8 bracket RSL Season 3 - Playoffs Preview Mech is the composition that needs teleportation t
Tourneys
RSL Revival: Season 3 $5,000+ WardiTV 2025 Championship StarCraft Evolution League (SC Evo Biweekly) Constellation Cup - Main Event - Stellar Fest 2025 RSL Offline Finals Dates + Ticket Sales!
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 501 Price of Progress Mutation # 500 Fright night Mutation # 499 Chilling Adaptation Mutation # 498 Wheel of Misfortune|Cradle of Death
Brood War
General
2v2 maps which are SC2 style with teams together? Data analysis on 70 million replays BGH Auto Balance -> http://bghmmr.eu/ soO on: FanTaSy's Potential Return to StarCraft A cwal.gg Extension - Easily keep track of anyone
Tourneys
[BSL21] RO16 Tie Breaker - Group B - Sun 21:00 CET [BSL21] RO16 Tie Breaker - Group A - Sat 21:00 CET [Megathread] Daily Proleagues Small VOD Thread 2.0
Strategy
Current Meta Game Theory for Starcraft How to stay on top of macro? PvZ map balance
Other Games
General Games
Path of Exile Nintendo Switch Thread Should offensive tower rushing be viable in RTS games? Clair Obscur - Expedition 33 Stormgate/Frost Giant Megathread
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Mafia Game Mode Feedback/Ideas
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread The Games Industry And ATVI Things Aren’t Peaceful in Palestine About SC2SEA.COM
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
[Manga] One Piece Movie Discussion! Anime Discussion Thread Korean Music Discussion
Sports
Formula 1 Discussion 2024 - 2026 Football Thread NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
TL Community
The Automated Ban List
Blogs
The Health Impact of Joining…
TrAiDoS
Dyadica Evangelium — Chapt…
Hildegard
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2045 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
Poland17450 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
Poland17450 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
Poland4733 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
Poland17450 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
28094 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
Poland4733 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
Bulgaria832 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
Poland17450 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
Poland4733 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
Poland17450 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
Turkey779 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
Bulgaria832 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
Poland17450 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
OSC
23:00
OSC Elite Rising Star #17
CranKy Ducklings97
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
White-Ra 207
Nathanias 61
ProTech15
StarCraft: Brood War
Calm 3013
Artosis 711
Terrorterran 4
Counter-Strike
taco 49
Heroes of the Storm
Khaldor202
Other Games
summit1g10121
Grubby4002
Pyrionflax200
Maynarde125
Organizations
Other Games
gamesdonequick1229
BasetradeTV49
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 19 non-featured ]
StarCraft 2
• Hupsaiya 98
• HeavenSC 42
• musti20045 28
• Kozan
• LaughNgamezSOOP
• sooper7s
• AfreecaTV YouTube
• intothetv
• Migwel
• IndyKCrew
StarCraft: Brood War
• HerbMon 7
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota21232
• Ler70
League of Legends
• Doublelift4255
Other Games
• imaqtpie1497
• Scarra1141
Upcoming Events
OSC
8h 21m
Wardi Open
11h 21m
Monday Night Weeklies
16h 21m
OSC
22h 21m
Wardi Open
1d 11h
Replay Cast
2 days
Wardi Open
2 days
Tenacious Turtle Tussle
2 days
The PondCast
3 days
Replay Cast
3 days
[ Show More ]
LAN Event
4 days
Replay Cast
4 days
Replay Cast
5 days
Sparkling Tuna Cup
6 days
Replay Cast
6 days
Liquipedia Results

Completed

SOOP Univ League 2025
RSL Revival: Season 3
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
YSL S2
BSL Season 21
CSCL: Masked Kings S3
SLON Tour Season 2
META Madness #9
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2

Upcoming

BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
TLPD

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

Advertising | Privacy Policy | Terms Of Use | Contact Us

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