• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 14:11
CEST 20:11
KST 03:11
  • 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 BlizzCon4Weekly Cups (Aug 30-Sep 7): herO thrives amid growing schism10Official StarCraft website teases new content ahead of BlizzCon?146Stellar 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 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 SC4ALL: II Winner will earn a spot at HSC 30!
Tourneys
RSL goes to London! 2026 Offline Finals Nov 21-22 KSL Week #92 IntoTheTV X SOOP SC2 League : Weekly & Monthly 2026 GSTL Announcement Sparkling Tuna Cup - Weekly Open Tournament
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? Broodwar Prediction Market BGH Auto Balance -> http://bghmmr.eu/ Practice Partners (Official) [D] Brainstorming a balance patch for Brood war
Tourneys
[ASL22] Ro16 Group A [ASL22] Ro16 Group B 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
Nintendo Switch Thread EVE Corporation Diablo IV [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 UK Politics Mega-thread Things Aren’t Peaceful in Palestine Trading/Investing Thread Russo-Ukrainian War Thread
Fan Clubs
MarineLorD Fan Club The Creator Fan Club The ShoWTimE Fan Club
Media & Entertainment
Diablo Animated Series on Netflix Movie Discussion!
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: 7169 users

The Big Programming Thread - Page 559

Forum Index > General Forum
Post a Reply
Prev 1 557 558 559 560 561 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
December 25 2014 21:38 GMT
#11161
On December 26 2014 05:39 delHospital wrote:
Show nested quote +
On December 26 2014 05:29 spinesheath wrote:
Technically that's not too far off the mark. But usually a bunch of other stuff is associated with functional programming as well since it wasn't really supported in non-functional languages for a long time.

Robert C. Martin had a talk at the Norwegian Developer's Conference where he basically said: Structured programming is not using goto, OOP is not using function pointers (replaced by the safer virtual methods/interfaces), functional is not using assignments (immutability).

Imo that captures the essence pretty well, but since the OOP and functional branches have evolved seperately for a long time each of them developed specific higher level concepts that are just now being merged into the respective other branch.

If OOP is not using function pointers, then FP is closer to structured programming than to OOP, as functions in FP are first-class, and get passed around all the time.

You're mixing up function references and function pointers here. In machine code there's no real difference between the two, but on the language level function references are transparent and immutable. Then again you obviously can't have mutable pointers in FP if FP is defined by immutability...
If you have a good reason to disagree with the above, please tell me. Thank you.
delHospital
Profile Blog Joined December 2010
Poland261 Posts
December 25 2014 21:48 GMT
#11162
On December 26 2014 06:38 spinesheath wrote:
Show nested quote +
On December 26 2014 05:39 delHospital wrote:
On December 26 2014 05:29 spinesheath wrote:
Technically that's not too far off the mark. But usually a bunch of other stuff is associated with functional programming as well since it wasn't really supported in non-functional languages for a long time.

Robert C. Martin had a talk at the Norwegian Developer's Conference where he basically said: Structured programming is not using goto, OOP is not using function pointers (replaced by the safer virtual methods/interfaces), functional is not using assignments (immutability).

Imo that captures the essence pretty well, but since the OOP and functional branches have evolved seperately for a long time each of them developed specific higher level concepts that are just now being merged into the respective other branch.

If OOP is not using function pointers, then FP is closer to structured programming than to OOP, as functions in FP are first-class, and get passed around all the time.

You're mixing up function references and function pointers here. In machine code there's no real difference between the two, but on the language level function references are transparent and immutable. Then again you obviously can't have mutable pointers in FP if FP is defined by immutability...

How am I mixing up anything? OOP (I'm assuming a language like Java here) doesn't use function pointers, function references, or anything like that (the fact that you have to wrap a function in a class to pass it around shows how much this is discouraged in OOP). Therefore, if the thing that distinguishes structured programming and OOP best is replacement of function pointers with inheritance and method overriding, then FP is much closer to structured programming.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
December 25 2014 21:54 GMT
#11163
Well, C# makes it fairly easy to pass around functions (or rather methods, of course) as delegates, plus lambdas also do that and have been added to Java too afaik.
I'm just saying that FP doesn't use function pointers, it uses function references. I'm not denying that FP is closer to structured than it is to OOP.
If you have a good reason to disagree with the above, please tell me. Thank you.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
December 25 2014 23:50 GMT
#11164
On December 26 2014 06:48 delHospital wrote:
Show nested quote +
On December 26 2014 06:38 spinesheath wrote:
On December 26 2014 05:39 delHospital wrote:
On December 26 2014 05:29 spinesheath wrote:
Technically that's not too far off the mark. But usually a bunch of other stuff is associated with functional programming as well since it wasn't really supported in non-functional languages for a long time.

Robert C. Martin had a talk at the Norwegian Developer's Conference where he basically said: Structured programming is not using goto, OOP is not using function pointers (replaced by the safer virtual methods/interfaces), functional is not using assignments (immutability).

Imo that captures the essence pretty well, but since the OOP and functional branches have evolved seperately for a long time each of them developed specific higher level concepts that are just now being merged into the respective other branch.

If OOP is not using function pointers, then FP is closer to structured programming than to OOP, as functions in FP are first-class, and get passed around all the time.

You're mixing up function references and function pointers here. In machine code there's no real difference between the two, but on the language level function references are transparent and immutable. Then again you obviously can't have mutable pointers in FP if FP is defined by immutability...

How am I mixing up anything? OOP (I'm assuming a language like Java here) doesn't use function pointers, function references, or anything like that (the fact that you have to wrap a function in a class to pass it around shows how much this is discouraged in OOP). Therefore, if the thing that distinguishes structured programming and OOP best is replacement of function pointers with inheritance and method overriding, then FP is much closer to structured programming.



Umm... why? I don't think it's discouraged. It's just a lack of language feature. C++/C# both support method pointers.
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
December 26 2014 03:28 GMT
#11165
It all boils down to one simple statement:

"Any pure paradigm is bad."

Pure procedural: Bad
Pure OOP: Bad
Pure Functional: Bad

It's about mixing those 3 and combining the best of each world that makes a good, easy to maintain program. That is the big thing about lambdas as they've been introduced in C++ and C#. It's not that they are new, everyone who ever picked up a programming book knows that they are ancient, but it's new that they combine OOP with functional programming, creating a sum that is bigger than it's parts.

If you program pure object-oriented code without using lambdas where appropriate, you lose a lot of potential. There are OO languages that don't allow for lambdas, which is a flaw in the languages, not in OOP.
If you program pure functional code... well, you're probably a math professor, an emacs developer or escaped from an insane asylum, so you don't count.
If you, at this day and age, still program procedural code, i.e. C, then you either have a very, very good excuse (microprocessor/driver/kernel programming) or you have only seen the bad sides of OOP without it's good sides and you need to learn that good OOP is more than putting everything into objects and creating insane inheritance trees.

There was a phase where OOP was quite over-the-top, which was the high time of Java and why that language is so terribly designed, but things have calmed down a lot and simpler approaches are a lot more common now. The time when everything was a noun has come and gone.

I love C# because it does the combination of functional and object-oriented code so extremely well that it appears seamless, which is a huge difference to other languages (haven't gotten around to working with the C++ lambdas yet) and really sets it apart. Neither functional nor OOP are new, both go all the way back into the '70s, but combining it in that way is new and that is why many people are excited about it.

Javascript has done the similar combination several years before with a bigger focus on the functional part, but the language has a lot of other... problems that makes programmers avoid it, not just because of nightmares from the combination of javascript and web browsers. Javascript is a great language to learn outside of a browser context because it does the combination of OOP and functional programming as well, but sadly the environment around the language is too limited for most uses, though nodejs is trying to improve that.
Manit0u
Profile Blog Joined August 2004
Poland17843 Posts
Last Edited: 2014-12-26 10:13:14
December 26 2014 10:04 GMT
#11166
JS really needs some coherent way of writing code. Like you can use the semicolon but you can just as well not use it at all. And then you have to deal with code written by various people that mixes the styles and it's a mess even bigger than in the other languages that adhere to a much more strict way of doing things. And because in JS everything is an object you can chain everything and you end up working with lots of code violating the Single Responsibility Principle etc.

Seriously, JS scripts suffer from excessive code bloat more often than anything I've seen and debugging it is painful as hell.
Time is precious. Waste it wisely.
MScott
Profile Joined December 2014
Belgium1 Post
Last Edited: 2014-12-26 15:56:27
December 26 2014 14:44 GMT
#11167
Mod edit

User was banned for this post.
Belgium
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
December 26 2014 17:24 GMT
#11168
On December 26 2014 12:28 Morfildur wrote:
It all boils down to one simple statement:

"Any pure paradigm is bad."

Pure procedural: Bad
Pure OOP: Bad
Pure Functional: Bad

It's about mixing those 3 and combining the best of each world that makes a good, easy to maintain program. That is the big thing about lambdas as they've been introduced in C++ and C#. It's not that they are new, everyone who ever picked up a programming book knows that they are ancient, but it's new that they combine OOP with functional programming, creating a sum that is bigger than it's parts.

If you program pure object-oriented code without using lambdas where appropriate, you lose a lot of potential. There are OO languages that don't allow for lambdas, which is a flaw in the languages, not in OOP.
If you program pure functional code... well, you're probably a math professor, an emacs developer or escaped from an insane asylum, so you don't count.
If you, at this day and age, still program procedural code, i.e. C, then you either have a very, very good excuse (microprocessor/driver/kernel programming) or you have only seen the bad sides of OOP without it's good sides and you need to learn that good OOP is more than putting everything into objects and creating insane inheritance trees.

There was a phase where OOP was quite over-the-top, which was the high time of Java and why that language is so terribly designed, but things have calmed down a lot and simpler approaches are a lot more common now. The time when everything was a noun has come and gone.

I love C# because it does the combination of functional and object-oriented code so extremely well that it appears seamless, which is a huge difference to other languages (haven't gotten around to working with the C++ lambdas yet) and really sets it apart. Neither functional nor OOP are new, both go all the way back into the '70s, but combining it in that way is new and that is why many people are excited about it.

Javascript has done the similar combination several years before with a bigger focus on the functional part, but the language has a lot of other... problems that makes programmers avoid it, not just because of nightmares from the combination of javascript and web browsers. Javascript is a great language to learn outside of a browser context because it does the combination of OOP and functional programming as well, but sadly the environment around the language is too limited for most uses, though nodejs is trying to improve that.


I'm not sure if lambdas are purely from functional programming although Wikipedia says they're popular in that paradigm, but I know for a fact that C# LINQ is a lot easier with lambdas.
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
December 26 2014 18:43 GMT
#11169
--- Nuked ---
Liebig
Profile Joined August 2010
France738 Posts
Last Edited: 2014-12-26 20:34:17
December 26 2014 20:31 GMT
#11170
On December 26 2014 12:28 Morfildur wrote:
If you program pure functional code... well, you're probably a math professor, an emacs developer or escaped from an insane asylum, so you don't count.

Contrary to what people usually think, FP is actually (quite minor compared to other paradigms but still) used in industry.
For example, Chucklefish, the developers of Starbound are using Haskell for their new game. It's also used in banking/automated trading and critical systems.
Prillan
Profile Joined August 2011
Sweden350 Posts
December 27 2014 04:20 GMT
#11171
On December 27 2014 05:31 Liebig wrote:
Show nested quote +
On December 26 2014 12:28 Morfildur wrote:
If you program pure functional code... well, you're probably a math professor, an emacs developer or escaped from an insane asylum, so you don't count.

Contrary to what people usually think, FP is actually (quite minor compared to other paradigms but still) used in industry.
For example, Chucklefish, the developers of Starbound are using Haskell for their new game. It's also used in banking/automated trading and critical systems.

To add to this: Klarna, a big payment processor in Sweden, is built with Erlang.
TheBB's sidekick, aligulac.com | "Reality is frequently inaccurate." - Douglas Adams
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2014-12-27 14:06:44
December 27 2014 13:56 GMT
#11172
Windows 8 Memory Consumption

More granular prioritization of memory:

Windows 8 has a better scheme for the prioritization of memory allocations made by applications and system components. This means that Windows can make better decisions about what memory to keep around and what memory to remove sooner.

For example, antivirus programs (AV) do various checks on files when they are being opened by other programs. The memory that the AV program allocates to check virus signatures is usually a one-time allocation (it is unlikely that specific memory will be needed again). On Windows 7, the memory is treated as if it had the same priority in the system as other memory (say, memory allocated by a running instance of Microsoft Excel). If memory became scarce, Windows 7 could end up removing the memory that helps another running application (like Excel) stay responsive for the user, which wouldn't be the best choice for system responsiveness in this case.

In Windows 8, any program has the ability to allocate memory as "low priority." This is an important signal to Windows that if there is memory pressure, Windows can remove this low priority memory to make space, and it doesn't affect other memory required to sustain the responsiveness of the system.


So, how do you allocate memory at low and high priority? Is 'new' in Java/C#/C++ enough? Is it up to Windows to decide which is low and high priority? Or do you just use task manager to set priorities?
fmod
Profile Blog Joined November 2013
Cayman Islands330 Posts
December 27 2014 17:10 GMT
#11173
Functional programming is much more than just using a few lambda's here and there, though. There is much more to it, like the concept of pure functions, monads, using recursion A LOT, etc. Although I myself admit not having used FP a lot.
I don't particularly like you.
WindWolf
Profile Blog Joined July 2012
Sweden11767 Posts
December 27 2014 17:41 GMT
#11174
On December 27 2014 22:56 darkness wrote:
Windows 8 Memory Consumption

Show nested quote +
More granular prioritization of memory:

Windows 8 has a better scheme for the prioritization of memory allocations made by applications and system components. This means that Windows can make better decisions about what memory to keep around and what memory to remove sooner.

For example, antivirus programs (AV) do various checks on files when they are being opened by other programs. The memory that the AV program allocates to check virus signatures is usually a one-time allocation (it is unlikely that specific memory will be needed again). On Windows 7, the memory is treated as if it had the same priority in the system as other memory (say, memory allocated by a running instance of Microsoft Excel). If memory became scarce, Windows 7 could end up removing the memory that helps another running application (like Excel) stay responsive for the user, which wouldn't be the best choice for system responsiveness in this case.

In Windows 8, any program has the ability to allocate memory as "low priority." This is an important signal to Windows that if there is memory pressure, Windows can remove this low priority memory to make space, and it doesn't affect other memory required to sustain the responsiveness of the system.


So, how do you allocate memory at low and high priority? Is 'new' in Java/C#/C++ enough? Is it up to Windows to decide which is low and high priority? Or do you just use task manager to set priorities?

I haven't heard about this yet but it sure sounds as something useful.
EZ4ENCE
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
December 27 2014 18:23 GMT
#11175
On December 28 2014 02:41 WindWolf wrote:
Show nested quote +
On December 27 2014 22:56 darkness wrote:
Windows 8 Memory Consumption

More granular prioritization of memory:

Windows 8 has a better scheme for the prioritization of memory allocations made by applications and system components. This means that Windows can make better decisions about what memory to keep around and what memory to remove sooner.

For example, antivirus programs (AV) do various checks on files when they are being opened by other programs. The memory that the AV program allocates to check virus signatures is usually a one-time allocation (it is unlikely that specific memory will be needed again). On Windows 7, the memory is treated as if it had the same priority in the system as other memory (say, memory allocated by a running instance of Microsoft Excel). If memory became scarce, Windows 7 could end up removing the memory that helps another running application (like Excel) stay responsive for the user, which wouldn't be the best choice for system responsiveness in this case.

In Windows 8, any program has the ability to allocate memory as "low priority." This is an important signal to Windows that if there is memory pressure, Windows can remove this low priority memory to make space, and it doesn't affect other memory required to sustain the responsiveness of the system.


So, how do you allocate memory at low and high priority? Is 'new' in Java/C#/C++ enough? Is it up to Windows to decide which is low and high priority? Or do you just use task manager to set priorities?

I haven't heard about this yet but it sure sounds as something useful.


It sounds good indeed but I doubt it can be used properly if it's not Windows which makes the decision.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
December 27 2014 19:03 GMT
#11176
How does it sound useful when it's just a performance thing? Have you ever profiled an application to be slow because windows had bad memory priorities? If you didn't profile it, don't optimize it.
If you have a good reason to disagree with the above, please tell me. Thank you.
CatNzHat
Profile Blog Joined February 2011
United States1599 Posts
December 27 2014 19:11 GMT
#11177
On December 26 2014 19:04 Manit0u wrote:
JS really needs some coherent way of writing code. Like you can use the semicolon but you can just as well not use it at all. And then you have to deal with code written by various people that mixes the styles and it's a mess even bigger than in the other languages that adhere to a much more strict way of doing things. And because in JS everything is an object you can chain everything and you end up working with lots of code violating the Single Responsibility Principle etc.

Seriously, JS scripts suffer from excessive code bloat more often than anything I've seen and debugging it is painful as hell.

JSLINT is your friend.

If you use the module design pattern you can more strictly adhere to SRP. The language is not at fault here, it's the programmers.
Zocat
Profile Joined April 2010
Germany2229 Posts
Last Edited: 2014-12-27 19:31:19
December 27 2014 19:30 GMT
#11178
On December 27 2014 22:56 darkness wrote:
Windows 8 Memory Consumption

Show nested quote +
More granular prioritization of memory:

Windows 8 has a better scheme for the prioritization of memory allocations made by applications and system components. This means that Windows can make better decisions about what memory to keep around and what memory to remove sooner.

For example, antivirus programs (AV) do various checks on files when they are being opened by other programs. The memory that the AV program allocates to check virus signatures is usually a one-time allocation (it is unlikely that specific memory will be needed again). On Windows 7, the memory is treated as if it had the same priority in the system as other memory (say, memory allocated by a running instance of Microsoft Excel). If memory became scarce, Windows 7 could end up removing the memory that helps another running application (like Excel) stay responsive for the user, which wouldn't be the best choice for system responsiveness in this case.

In Windows 8, any program has the ability to allocate memory as "low priority." This is an important signal to Windows that if there is memory pressure, Windows can remove this low priority memory to make space, and it doesn't affect other memory required to sustain the responsiveness of the system.


So, how do you allocate memory at low and high priority? Is 'new' in Java/C#/C++ enough? Is it up to Windows to decide which is low and high priority? Or do you just use task manager to set priorities?


http://blogs.msdn.com/b/b8/archive/2012/04/17/reclaiming-memory-from-metro-style-apps.aspx

http://msdn.microsoft.com/en-us/library/windows/apps/hh465088.aspx
xtorn
Profile Blog Joined December 2013
4067 Posts
December 27 2014 19:41 GMT
#11179
On December 27 2014 22:56 darkness wrote:
Windows 8 Memory Consumption

Show nested quote +
More granular prioritization of memory:

Windows 8 has a better scheme for the prioritization of memory allocations made by applications and system components. This means that Windows can make better decisions about what memory to keep around and what memory to remove sooner.

For example, antivirus programs (AV) do various checks on files when they are being opened by other programs. The memory that the AV program allocates to check virus signatures is usually a one-time allocation (it is unlikely that specific memory will be needed again). On Windows 7, the memory is treated as if it had the same priority in the system as other memory (say, memory allocated by a running instance of Microsoft Excel). If memory became scarce, Windows 7 could end up removing the memory that helps another running application (like Excel) stay responsive for the user, which wouldn't be the best choice for system responsiveness in this case.

In Windows 8, any program has the ability to allocate memory as "low priority." This is an important signal to Windows that if there is memory pressure, Windows can remove this low priority memory to make space, and it doesn't affect other memory required to sustain the responsiveness of the system.


So, how do you allocate memory at low and high priority? Is 'new' in Java/C#/C++ enough? Is it up to Windows to decide which is low and high priority? Or do you just use task manager to set priorities?


thread priority is used to set the scheduling priority.

http://msdn.microsoft.com/en-us/library/system.threading.threadpriority.aspx

windows then interprets this scheduling priority like this

The system treats all threads with the same priority as equal. The system assigns time slices in a round-robin fashion to all threads with the highest priority. If none of these threads are ready to run, the system assigns time slices in a round-robin fashion to all threads with the next highest priority. If a higher-priority thread becomes available to run, the system ceases to execute the lower-priority thread (without allowing it to finish using its time slice), and assigns a full time slice to the higher-priority thread.


Windows - Scheduling priority
<3 things - Life | Kane | Innovation | Scarlett | Solar | MMA
Khalum
Profile Joined September 2010
Austria831 Posts
December 27 2014 19:51 GMT
#11180
They're writing about memory priority, not thread priority...
Prev 1 557 558 559 560 561 1032 Next
Please log in or register to reply.
Live Events Refresh
AI Arena Tournament
17:00
Swiss - Round 1
Laughngamez YouTube
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RotterdaM 744
Tasteless 505
BRAT_OK 68
CosmosSc2 58
StarCraft: Brood War
Britney 28974
Calm 3830
firebathero 957
Shuttle 707
Artosis 654
Mini 147
Dewaltoss 71
910 69
Mong 44
HiyA 43
[ Show more ]
Hm[arnc] 11
Noble 7
Dota 2
qojqva3607
420jenkins301
Counter-Strike
fl0m1183
Fnx 718
Super Smash Bros
Chillindude16
Heroes of the Storm
Liquid`Hasu898
Trikslyr84
Other Games
Grubby5193
B2W.Neo1072
JimRising 470
XaKoH 117
QueenE59
Organizations
Heroes of the Storm
Heroes of the Storm2219
StarCraft 2
StarCraft1690
Other Games
EGCTV1252
StarCraft 2
ComeBackTV 846
StarCraft: Brood War
Afreeca ASL 591
Other Games
BasetradeTV30
angryscii25
[ Show 15 non-featured ]
StarCraft 2
• Hupsaiya 46
• printf 40
• intothetv
• AfreecaTV YouTube
• Kozan
• IndyKCrew
• Migwel
StarCraft: Brood War
• Airneanach33
• FirePhoenix7
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Jankos1830
Other Games
• imaqtpie511
• Shiphtur170
Upcoming Events
OSC
2h 19m
Sparkling Tuna Cup
15h 49m
WardiTV Invitational
16h 49m
ByuN vs Percival
Cure vs Classic
Shopify Rebellion Sundays
20h 49m
Spirit vs Mixu
Clem vs TBD
RSL Revival
21h 49m
Serral vs Rogue
BlizzCon
1d
IdrA vs MC
Replay Cast
1d 5h
Afreeca Starleague
1d 15h
Light vs JyJ
Soulkey vs hero
WardiTV Weekly
1d 16h
Monday Night Weeklies
1d 21h
[ Show More ]
Afreeca Starleague
2 days
Snow vs Shinee
Shine vs EffOrt
GSL
2 days
PiGosaur Cup
3 days
The PondCast
3 days
Kung Fu Cup
3 days
Replay Cast
4 days
KCM Race Survival
4 days
IntoTheTV X SOOP
4 days
Replay Cast
5 days
IntoTheTV X SOOP
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
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

Blizzard Classic Cup 2026
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
Blizzard Classic Cup 2026
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.