• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 04:35
CET 10:35
KST 18:35
  • 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
TL.net Map Contest #21: Winners11Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10[ASL20] Finals Preview: Arrival13TL.net Map Contest #21: Voting12[ASL20] Ro4 Preview: Descent11
Community News
[TLMC] Fall/Winter 2025 Ladder Map Rotation4Weekly Cups (Nov 3-9): Clem Conquers in Canada4SC: Evo Complete - Ranked Ladder OPEN ALPHA8StarCraft, SC2, HotS, WC3, Returning to Blizzcon!45$5,000+ WardiTV 2025 Championship7
StarCraft 2
General
[TLMC] Fall/Winter 2025 Ladder Map Rotation Mech is the composition that needs teleportation t Weekly Cups (Nov 3-9): Clem Conquers in Canada Craziest Micro Moments Of All Time? SC: Evo Complete - Ranked Ladder OPEN ALPHA
Tourneys
Constellation Cup - Main Event - Stellar Fest Tenacious Turtle Tussle Sparkling Tuna Cup - Weekly Open Tournament $5,000+ WardiTV 2025 Championship Merivale 8 Open - LAN - Stellar Fest
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 499 Chilling Adaptation Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened Mutation # 496 Endless Infection
Brood War
General
Rapidtags: The Ultimate Tool for Hashtag and Keywo Terran 1:35 12 Gas Optimization FlaSh on: Biggest Problem With SnOw's Playstyle BW General Discussion BGH Auto Balance -> http://bghmmr.eu/
Tourneys
[BSL21] RO32 Group D - Sunday 21:00 CET [BSL21] RO32 Group C - Saturday 21:00 CET [ASL20] Grand Finals [Megathread] Daily Proleagues
Strategy
Current Meta PvZ map balance How to stay on top of macro? Soma's 9 hatch build from ASL Game 2
Other Games
General Games
Nintendo Switch Thread Stormgate/Frost Giant Megathread Should offensive tower rushing be viable in RTS games? Path of Exile Dawn of War IV
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
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine Canadian Politics Mega-thread The Games Industry And ATVI
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
[Manga] One Piece Anime Discussion Thread Movie Discussion! Korean Music Discussion Series you have seen recently...
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List
Blogs
Dyadica Gospel – a Pulp No…
Hildegard
Coffee x Performance in Espo…
TrAiDoS
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Reality "theory" prov…
perfectspheres
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1206 users

The Big Programming Thread - Page 933

Forum Index > General Forum
Post a Reply
Prev 1 931 932 933 934 935 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.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
Last Edited: 2018-01-02 07:57:40
January 02 2018 07:56 GMT
#18641
Task manager is not reliable, no. The OS typically reserves a larger chunk of memory for the application than what it actually needs. If the required memory suddenly drops a bunch, the OS still doesn't take away the reserved memory immediately, but might wait until memory pressure rises because of other applications.

Task manager doesn't show exactly how much memory an application uses. I'm not sure if it's the reserved memory either, but that's more likely.

C++ delete releases the memory immediately, but this isn't reflected in task manager for the above reasons. The free memory chunk might also very well between two other used memory chunks and thus still be considered as used from the OS' point of view.

Long story short: if you want any sort of reliable memory usage stats, use a profiler.
If you have a good reason to disagree with the above, please tell me. Thank you.
graNite
Profile Blog Joined December 2010
Germany4434 Posts
Last Edited: 2018-01-02 09:16:19
January 02 2018 09:02 GMT
#18642
In python3, how do i create objects with an instance name and multiple arguments from a list? I have an example here. I need a way to initialize in a for loop with variable names that allow me to access the instance later.

class fruit():
def __init__(self, color, weight):
self.color = color
self.weight = weight

def scale(self):
print(f"{self.weight} kg")


# i can do
strawberry = fruit("red", 10)
strawberry.scale()
# output "10 kg"

# but i cant do
fruitlist = [
["cherry", "red", 5],
["banana", "yellow", 10],
["blueberry", "blue", 15],
]

for i in range(len(fruitlist)):
fruitname = fruitlist[i][0]
fruitname = fruit(fruitlist[i][1], fruitlist[i][2])

cherry.scale()
# output "undefined name cherry"
"Oink oink, bitches" - Tasteless on Pigbaby winning a map against Flash
mahrgell
Profile Blog Joined December 2009
Germany3943 Posts
January 02 2018 09:28 GMT
#18643
On January 02 2018 18:02 graNite wrote:
In python3, how do i create objects with an instance name and multiple arguments from a list? I have an example here. I need a way to initialize in a for loop with variable names that allow me to access the instance later.

class fruit():
def __init__(self, color, weight):
self.color = color
self.weight = weight

def scale(self):
print(f"{self.weight} kg")


# i can do
strawberry = fruit("red", 10)
strawberry.scale()
# output "10 kg"

# but i cant do
fruitlist = [
["cherry", "red", 5],
["banana", "yellow", 10],
["blueberry", "blue", 15],
]

for i in range(len(fruitlist)):
fruitname = fruitlist[i][0]
fruitname = fruit(fruitlist[i][1], fruitlist[i][2]) <<<<<

cherry.scale() <<<<<<
# output "undefined name cherry"


well... you name the variable where you store your fruit "fruitname"

so either write "cherry = fruit(fruitlist[i][1], fruitlist[i][2])" or "fruitname.scale()"
graNite
Profile Blog Joined December 2010
Germany4434 Posts
January 02 2018 09:31 GMT
#18644
On January 02 2018 18:28 mahrgell wrote:
well... you name the variable where you store your fruit "fruitname"

so either write "cherry = fruit(fruitlist[i][1], fruitlist[i][2])" or "fruitname.scale()"


yees, but that every fruit is named cherry or i weigh when in the for loop, but i cant access them all like
cherry.scale()
banana.scale()
"Oink oink, bitches" - Tasteless on Pigbaby winning a map against Flash
Acrofales
Profile Joined August 2010
Spain18114 Posts
January 02 2018 09:39 GMT
#18645
On January 02 2018 18:28 mahrgell wrote:
Show nested quote +
On January 02 2018 18:02 graNite wrote:
In python3, how do i create objects with an instance name and multiple arguments from a list? I have an example here. I need a way to initialize in a for loop with variable names that allow me to access the instance later.

class fruit():
def __init__(self, color, weight):
self.color = color
self.weight = weight

def scale(self):
print(f"{self.weight} kg")


# i can do
strawberry = fruit("red", 10)
strawberry.scale()
# output "10 kg"

# but i cant do
fruitlist = [
["cherry", "red", 5],
["banana", "yellow", 10],
["blueberry", "blue", 15],
]

for i in range(len(fruitlist)):
fruitname = fruitlist[i][0]
fruitname = fruit(fruitlist[i][1], fruitlist[i][2]) <<<<<

cherry.scale() <<<<<<
# output "undefined name cherry"


well... you name the variable where you store your fruit "fruitname"

so either write "cherry = fruit(fruitlist[i][1], fruitlist[i][2])" or "fruitname.scale()"


Or you'd have to do some funny business with exec, which seems completely bizar in this case.

In most cases, you really don't want to be doing this, as it slows down your program and is almost impossible to debug or understand at a later date/by someone else. But if you insist, you would do:


for i in range(len(fruitlist)):
exec(fruitlist[i][0] + " = fruit('" + fruitlist[i][1] + "', " + str(fruitlist[i][2]) + ")")


This is somewhat horrific coding tho, and you'd better have an incredibly good reason for needing to do it this way.
graNite
Profile Blog Joined December 2010
Germany4434 Posts
January 02 2018 09:42 GMT
#18646
And what would be an alternative? I dont have to use this list of lists, I just want to be able to the the objects to access them later and initialize with certain values.
"Oink oink, bitches" - Tasteless on Pigbaby winning a map against Flash
Acrofales
Profile Joined August 2010
Spain18114 Posts
Last Edited: 2018-01-02 12:23:18
January 02 2018 10:32 GMT
#18647
On January 02 2018 18:42 graNite wrote:
And what would be an alternative? I dont have to use this list of lists, I just want to be able to the the objects to access them later and initialize with certain values.

Something like:


fruitlist = [ fruit(x, y) for (x,y) in
[
("red", 5),
("yellow", 10),
("blue", 15),
]
]


E: or if the names are important to you, a dict.
graNite
Profile Blog Joined December 2010
Germany4434 Posts
January 02 2018 12:46 GMT
#18648
On January 02 2018 19:32 Acrofales wrote:

E: or if the names are important to you, a dict.


can you pls show me what that dict would look like?
the names are important, otherwise I could just use the code i provided in the first post
"Oink oink, bitches" - Tasteless on Pigbaby winning a map against Flash
Silvanel
Profile Blog Joined March 2003
Poland4733 Posts
Last Edited: 2018-01-02 13:51:43
January 02 2018 13:46 GMT
#18649

class fruit():
def __init__(self, color, weight):
self.color = color
self.weight = weight

def scale(self):
print(f"{self.weight} kg")


cherry = fruit('red', 5)
banana = fruit('yellow', 10)
blueberry = fruit('blue', 15)

fruitlist = [cherry, banana, blueberry]

for i in fruitlist:
print(i.color, i.weight)


I am not sure if that is what You are looking for but in Your first example You didnt actually create objects of class fruit. You just created a list of list. If You want to create obejct of a class You need to call that class explicitly.

To create object of an class froma list You would need another method. And it would be much easier if You actualy created an argument called say name. For example:


class fruit():
def __init__(self, name, color, weight):
self.color = color
self.weight = weight
self.name = name

def scale(self):
print(f"{self.weight} kg")

fruitlist = [
["cherry", "red", 5],
["banana", "yellow", 10],
["blueberry", "blue", 15],
]
fruit_class_holder = []

def construct_instance_of_fruit(list):
for i in list:
fruit_name = i[0]
fruit_color = i[1]
fruit_weight = i[2]
fruit_as_a_class = fruit(fruit_name, fruit_color, fruit_weight)
fruit_class_holder.append(fruit_as_a_class)

construct_instance_of_fruit(fruitlist)

for i in fruit_class_holder:
print(i.name, i.color, i.weight)

Notice i added argument "name" to Your initial class.

The output is:

cherry red 5
banana yellow 10
blueberry blue 15
Pathetic Greta hater.
Acrofales
Profile Joined August 2010
Spain18114 Posts
Last Edited: 2018-01-02 14:24:11
January 02 2018 14:12 GMT
#18650
On January 02 2018 21:46 graNite wrote:
Show nested quote +
On January 02 2018 19:32 Acrofales wrote:

E: or if the names are important to you, a dict.


can you pls show me what that dict would look like?
the names are important, otherwise I could just use the code i provided in the first post

Okay, in that case you need to understand a bit about the logic of programming:

Variable names are important for developers to understand what is happening in the code, but mean absolutely NOTHING at runtime. Everything that is important at runtime should be stored in data structures. Whether that is individual variables, a list, a dict, or some other data structure. In the example silvanel gave, he has created a variable name in the fruit class, and can then simply initialize all of the fruits and store them in a list (as in my exerpt, but adding a field 'name').

You should always be aware of that distinction: if a minimizer or obfuscator garbles up your code, it should work just as it did before, just be illegible for humans. Very rarely you will indeed encounter a situation where you need reflection and have to recover variable names at runtime, but that is a rather advanced usecase, and even then often a kludge and not a proper way of going about doing what needs doing.

As for an example with a list:


fruitdict = {}
for i in range(len(fruitlist)):
fruitdict[fruitlist[i][0]] = fruit(fruitlist[i][1], fruitlist[i][2])

fruitdict["banana"].scale()


This could be done with list comprehension as well (as in my earlier exerpt).
graNite
Profile Blog Joined December 2010
Germany4434 Posts
January 02 2018 14:19 GMT
#18651
On January 02 2018 22:46 Silvanel wrote:+ Show Spoiler +


class fruit():
def __init__(self, color, weight):
self.color = color
self.weight = weight

def scale(self):
print(f"{self.weight} kg")


cherry = fruit('red', 5)
banana = fruit('yellow', 10)
blueberry = fruit('blue', 15)

fruitlist = [cherry, banana, blueberry]

for i in fruitlist:
print(i.color, i.weight)


I am not sure if that is what You are looking for but in Your first example You didnt actually create objects of class fruit. You just created a list of list. If You want to create obejct of a class You need to call that class explicitly.

i tried to do that here:

for i in range(len(fruitlist)):
fruitname = fruitlist[i][0]
fruitname = fruit(fruitlist[i][1], fruitlist[i][2])



To create object of an class froma list You would need another method. And it would be much easier if You actualy created an argument called say name. For example:+ Show Spoiler +



class fruit():
def __init__(self, name, color, weight):
self.color = color
self.weight = weight
self.name = name

def scale(self):
print(f"{self.weight} kg")

fruitlist = [
["cherry", "red", 5],
["banana", "yellow", 10],
["blueberry", "blue", 15],
]
fruit_class_holder = []

def construct_instance_of_fruit(list):
for i in list:
fruit_name = i[0]
fruit_color = i[1]
fruit_weight = i[2]
fruit_as_a_class = fruit(fruit_name, fruit_color, fruit_weight)
fruit_class_holder.append(fruit_as_a_class)

construct_instance_of_fruit(fruitlist)

for i in fruit_class_holder:
print(i.name, i.color, i.weight)

Notice i added argument "name" to Your initial class.


Yes, but i still cant do
cherry.scale()
to access the scale method directly. that is what i want to do.

"Oink oink, bitches" - Tasteless on Pigbaby winning a map against Flash
Silvanel
Profile Blog Joined March 2003
Poland4733 Posts
Last Edited: 2018-01-02 14:47:14
January 02 2018 14:46 GMT
#18652
To use it like that You need a variable called cherry which stores object of a class fruit. Which You dont have (as You dont create it at any point in Your code).

However a slight modification of code i posted above).

for i in fruit_class_holder:
print(i.scale())

Will work and give output.

5 kg
None
10 kg
None
15 kg
None

Pathetic Greta hater.
emperorchampion
Profile Blog Joined December 2008
Canada9496 Posts
January 02 2018 16:56 GMT
#18653
On January 02 2018 23:19 graNite wrote:
Show nested quote +
On January 02 2018 22:46 Silvanel wrote:+ Show Spoiler +


class fruit():
def __init__(self, color, weight):
self.color = color
self.weight = weight

def scale(self):
print(f"{self.weight} kg")


cherry = fruit('red', 5)
banana = fruit('yellow', 10)
blueberry = fruit('blue', 15)

fruitlist = [cherry, banana, blueberry]

for i in fruitlist:
print(i.color, i.weight)


I am not sure if that is what You are looking for but in Your first example You didnt actually create objects of class fruit. You just created a list of list. If You want to create obejct of a class You need to call that class explicitly.

i tried to do that here:

for i in range(len(fruitlist)):
fruitname = fruitlist[i][0]
fruitname = fruit(fruitlist[i][1], fruitlist[i][2])

Show nested quote +


To create object of an class froma list You would need another method. And it would be much easier if You actualy created an argument called say name. For example:+ Show Spoiler +



class fruit():
def __init__(self, name, color, weight):
self.color = color
self.weight = weight
self.name = name

def scale(self):
print(f"{self.weight} kg")

fruitlist = [
["cherry", "red", 5],
["banana", "yellow", 10],
["blueberry", "blue", 15],
]
fruit_class_holder = []

def construct_instance_of_fruit(list):
for i in list:
fruit_name = i[0]
fruit_color = i[1]
fruit_weight = i[2]
fruit_as_a_class = fruit(fruit_name, fruit_color, fruit_weight)
fruit_class_holder.append(fruit_as_a_class)

construct_instance_of_fruit(fruitlist)

for i in fruit_class_holder:
print(i.name, i.color, i.weight)

Notice i added argument "name" to Your initial class.


Yes, but i still cant do
cherry.scale()
to access the scale method directly. that is what i want to do.



Here's how I would do it quickly. You store each of the fruit in a dictionary "my_fruit", you can access "the_fruit" using my_fruit[the_fruit].


fruit.py
1 class fruit():
2 def __init__(self, name, color, weight):
3 self.color = color
4 self.weight = weight
5 self.name = name
6
7 def scale(self):
8 print(f"{self.weight} kg")
9
10 f1 = fruit("cherry", "red", 5)
11 f1.scale()
12
13 fruitlist = [
14 ["cherry", "red", 5],
15 ["banana", "yellow", 10],
16 ["blueberry", "blue", 15]
17 ]
18
19 my_fruits = dict()
20 for i in fruitlist:
21 my_fruits[i[0]] = fruit(i[0], i[1], i[2])
22
23 for key, vals in my_fruits.items():
24 vals.scale()
25
26 my_fruits["cherry"].scale()


$ python fruit.py
5 kg
5 kg
10 kg
15 kg
5 kg

TRUEESPORTS || your days as a respected member of team liquid are over
Varanice
Profile Blog Joined June 2011
United States1517 Posts
January 02 2018 21:59 GMT
#18654
Does anyone have a good recommendation for a C++ textbook (or maybe C, I haven't decided yet)?

I've taken 3 Java classes so far (an intro class, object oriented, and data structures), and I'm taking Systems I next semester which is in C and C++. I decided I wanted to get a bit of a head start on it just for fun over break.

So far these seem decent, anything else you guys would recommend I check out?

- Effective C++: 55 Specific Ways to Improve Your Programs and Designs
- Accelerated C++: Practical Programming by Example
www.twitch.tv/varanice
Manit0u
Profile Blog Joined August 2004
Poland17428 Posts
Last Edited: 2018-01-02 22:29:47
January 02 2018 22:24 GMT
#18655
On January 03 2018 06:59 Varanice wrote:
Does anyone have a good recommendation for a C++ textbook (or maybe C, I haven't decided yet)?

I've taken 3 Java classes so far (an intro class, object oriented, and data structures), and I'm taking Systems I next semester which is in C and C++. I decided I wanted to get a bit of a head start on it just for fun over break.

So far these seem decent, anything else you guys would recommend I check out?

- Effective C++: 55 Specific Ways to Improve Your Programs and Designs
- Accelerated C++: Practical Programming by Example


You can start off with K&R C. This won't overwhelm you with too much knowledge and will be a great foundation for everything else.

https://en.wikipedia.org/wiki/The_C_Programming_Language

After that you can go with C++

https://en.wikipedia.org/wiki/The_C++_Programming_Language

Edit:

Also, in relation to Java, you should really read GOOS: http://www.growing-object-oriented-software.com/

This shows you some of the very useful stuff with OOP that is used everywhere at work but they don't teach you in the academia.
Time is precious. Waste it wisely.
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
January 03 2018 05:01 GMT
#18656
Does anyone know any good larger/more active programming communities like this? While y'all are great this is unfortunately a single thread on a starcraft forum. Are there any forums(or whatever else) for discussion, code, etc. that are this high quality? SO doesn't count because it's too issue-based.
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
graNite
Profile Blog Joined December 2010
Germany4434 Posts
January 03 2018 06:31 GMT
#18657
On January 03 2018 14:01 WarSame wrote:
Does anyone know any good larger/more active programming communities like this? While y'all are great this is unfortunately a single thread on a starcraft forum. Are there any forums(or whatever else) for discussion, code, etc. that are this high quality? SO doesn't count because it's too issue-based.

for all languages or just a specific one?
"Oink oink, bitches" - Tasteless on Pigbaby winning a map against Flash
bo1b
Profile Blog Joined August 2012
Australia12814 Posts
Last Edited: 2018-01-03 12:16:34
January 03 2018 12:14 GMT
#18658
On January 03 2018 07:24 Manit0u wrote:
Show nested quote +
On January 03 2018 06:59 Varanice wrote:
Does anyone have a good recommendation for a C++ textbook (or maybe C, I haven't decided yet)?

I've taken 3 Java classes so far (an intro class, object oriented, and data structures), and I'm taking Systems I next semester which is in C and C++. I decided I wanted to get a bit of a head start on it just for fun over break.

So far these seem decent, anything else you guys would recommend I check out?

- Effective C++: 55 Specific Ways to Improve Your Programs and Designs
- Accelerated C++: Practical Programming by Example


You can start off with K&R C. This won't overwhelm you with too much knowledge and will be a great foundation for everything else.

https://en.wikipedia.org/wiki/The_C_Programming_Language

After that you can go with C++

https://en.wikipedia.org/wiki/The_C++_Programming_Language

I heavily disagree with starting with K&R C then going into c++, the language is significantly different and will serve you no real purpose.

Depending on how intelligent you're feeling start with one of these two:
c++ primer 5th edition (NOT primer plus) - the second chapter is probably the most complex of all the chapters, giving you a nice intro into pointers, pointer arithmetic, auto and its results, and const, before combining them. If you don't have any programming experience I'd avoid starting with this and instead choose

programming principles and practice using c++ - pretty much the perfect beginner programming book.

On January 03 2018 14:01 WarSame wrote:
Does anyone know any good larger/more active programming communities like this? While y'all are great this is unfortunately a single thread on a starcraft forum. Are there any forums(or whatever else) for discussion, code, etc. that are this high quality? SO doesn't count because it's too issue-based.

A lot of the individual sub reddits are good, depending on the language, hackernews is also pretty decent, though it's turning a bit redditish for my liking.

I despise /r/programming and loath /r/technology though.
tofucake
Profile Blog Joined October 2009
Hyrule19151 Posts
January 03 2018 13:45 GMT
#18659
On January 03 2018 14:01 WarSame wrote:
Does anyone know any good larger/more active programming communities like this? While y'all are great this is unfortunately a single thread on a starcraft forum. Are there any forums(or whatever else) for discussion, code, etc. that are this high quality? SO doesn't count because it's too issue-based.

Only ones I can think of are various subreddits (like /r/programming)
Liquipediaasante sana squash banana
Excludos
Profile Blog Joined April 2010
Norway8158 Posts
January 03 2018 17:31 GMT
#18660
On January 03 2018 14:01 WarSame wrote:
Does anyone know any good larger/more active programming communities like this? While y'all are great this is unfortunately a single thread on a starcraft forum. Are there any forums(or whatever else) for discussion, code, etc. that are this high quality? SO doesn't count because it's too issue-based.


There are loads for specific tools, IDEs and languages, but not a whole lot for everything. Stackoverflow comes to mind, but that's more of a "I have this very specific issue plz hepl!" type of place rather than a forum about discussions.
Prev 1 931 932 933 934 935 1032 Next
Please log in or register to reply.
Live Events Refresh
Replay Cast
09:00
WardiTV Mondays #59
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
SortOf 286
StarCraft: Brood War
Britney 49000
Rain 2987
Hyuk 2893
Soma 360
Backho 327
Rush 213
Pusan 117
JulyZerg 53
sSak 31
zelot 14
[ Show more ]
NaDa 12
Noble 11
ZerO 10
Hm[arnc] 8
Terrorterran 7
Dota 2
XaKoH 419
XcaliburYe139
Counter-Strike
fl0m1798
olofmeister680
shoxiejesuss411
oskar63
Super Smash Bros
Mew2King237
Other Games
ceh9502
Happy244
Pyrionflax116
ZerO(Twitch)4
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• Berry_CruncH257
• LUISG 21
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Rush1347
• Stunt515
Upcoming Events
OSC
1h 55m
Kung Fu Cup
2h 25m
Classic vs Solar
herO vs Cure
Reynor vs GuMiho
ByuN vs ShoWTimE
Tenacious Turtle Tussle
13h 25m
The PondCast
1d
RSL Revival
1d
Solar vs Zoun
MaxPax vs Bunny
Kung Fu Cup
1d 2h
WardiTV Korean Royale
1d 2h
PiGosaur Monday
1d 15h
RSL Revival
2 days
Classic vs Creator
Cure vs TriGGeR
Kung Fu Cup
2 days
[ Show More ]
CranKy Ducklings
3 days
RSL Revival
3 days
herO vs Gerald
ByuN vs SHIN
Kung Fu Cup
3 days
IPSL
3 days
ZZZero vs rasowy
Napoleon vs KameZerg
BSL 21
3 days
Tarson vs Julia
Doodle vs OldBoy
eOnzErG vs WolFix
StRyKeR vs Aeternum
Sparkling Tuna Cup
4 days
RSL Revival
4 days
Reynor vs sOs
Maru vs Ryung
Kung Fu Cup
4 days
WardiTV Korean Royale
4 days
BSL 21
4 days
JDConan vs Semih
Dragon vs Dienmax
Tech vs NewOcean
TerrOr vs Artosis
IPSL
4 days
Dewalt vs WolFix
eOnzErG vs Bonyth
Wardi Open
5 days
Monday Night Weeklies
5 days
WardiTV Korean Royale
6 days
Liquipedia Results

Completed

Proleague 2025-11-07
Stellar Fest: Constellation Cup
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
YSL S2
BSL Season 21
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
BLAST Open Fall 2025
BLAST Open Fall Qual

Upcoming

SLON Tour Season 2
BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
RSL Revival: Season 3
META Madness #9
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.