• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 05:50
CEST 11:50
KST 18:50
  • 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
Serral wins HomeStory Cup 2914Serral wins Maestros of the Game 243ByuL, and the Limitations of Standard Play3Team Liquid Map Contest #22: Results and Winners7Code S Season 2 (2026): RO4 and Finals Preview12
Community News
ZeroSpace Early Access is Now Live!15Weekly Cups (July 13-19): Terran & Protoss rise; Zerg falters2Balance hotfix patch 5.0.16b (July 16)84Reynor: GSL Loss Wasn't About Preparation Format16[IPSL] Spring 2026 Grand Finals - This Weekend!18
StarCraft 2
General
Balance hotfix patch 5.0.16b (July 16) Clem: "I don't have that much hope in Blizzard" Weekly Cups (July 13-19): Terran & Protoss rise; Zerg falters How would you feel about frequent/monthly balance patches for SC2? [D] Wireframe Casting Removed
Tourneys
RSL Revival: Season 6 - Qualifiers and Main Event Master Swan Open (Global Bronze-Master 2) WardiTV Summer Cup 2026 GSL CK #5 Race War HomeStory Cup 29
Strategy
[G] Having the right mentality to improve
Custom Maps
[M] (2) Industrial Park New Map Maker - Looking for Advice - Love or Hate
External Content
Mutation # 535 Assembly of Vengeance The PondCast: SC2 News & Results Mutation # 534 Burning Evacuation Mutation # 533 Die Together
Brood War
General
Animated Gateway BGH Auto Balance -> http://bghmmr.eu/ BW General Discussion HORROR STARCRAFT MOVIE How Famous was FlaSh before his Debut?
Tourneys
[Megathread] Daily Proleagues [IPSL] Spring 2026 Grand Finals - This Weekend! Escore Tournament - Season 3 Small VOD Thread 2.0
Strategy
Simple Questions, Simple Answers PvT advise for noobs Fighting Spirit mining rates Creating a full chart of Zerg builds
Other Games
General Games
Path of Exile ZeroSpace Early Access is Now Live! General RTS Discussion Thread ZeroSpace at Steam NextFest - Last free demo Nintendo Switch Thread
Dota 2
Looking for a Dota Mentor Official 'what is Dota anymore' discussion
League of Legends
TSM pausing esports and CLG Dead
Heroes of the Storm
Heroes of the Storm 2.0
Hearthstone
Deck construction bug
TL Mafia
TL Mafia Power Rank NeO.D_StephenKing vs This Guy From 1 Million Dance TL Mafia Community Thread Vanilla Mini Mafia
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Artificial Intelligence Thread How to buy a book - shipping from Korea to Europe The Games Industry And ATVI
Fan Clubs
The IdrA Fan Club The HerO Fan Club!
Media & Entertainment
Anime Discussion Thread Series you have seen recently... Movie Discussion! [Req][Books] Good Fantasy/SciFi books
Sports
2024 - 2026 Football Thread TeamLiquid Health and Fitness Initiative For 2023 Formula 1 Discussion MLB/Baseball 2023 McBoner: A hockey love story
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread Simple Questions Simple Answers FPS when play League Of Legend on laptop
TL Community
Northern Ireland Global Starcraft The Automated Ban List
Blogs
Hello guys!
LIN1s
Role of Gaming on Mental Hea…
TrAiDoS
ASL S22 English Commentary…
namkraft
Poker (part 2)
Nebuchad
An Exploration of th…
waywardstrategy
ramps on octagon
StaticNine
Customize Sidebar...

Website Feedback

Closed Threads



Active: 8551 users

The Big Programming Thread - Page 458

Forum Index > General Forum
Post a Reply
Prev 1 456 457 458 459 460 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.
Days
Profile Joined February 2010
United States219 Posts
March 24 2014 16:21 GMT
#9141
On March 25 2014 00:51 LonelyCat wrote:
So Comparable forces you (as you know) to implement the compareTo method. This method is used by other methods (for example Collections.sort) to determine which of 2 objects is "larger".

So lets take your Investment class and say we want to say the price of an investment is

double totalPrice = numShares*price;


and an investment is "greater" than another investment if its total price is higher than the other:


public int compareTo( Investment rhs ){
/* Find out this objects total price*/
double thisTotalPrice = this.numShares*this.price;

/* Find out rhs total price */
double rhsTotalPrice = rhs.numShares*rhs.price;

/* Return the difference (this - rhs)*/
return thisTotalPrice - rhsTotalPrice;
}


+ Show Spoiler +

Note that this implementation will not work as numShares and price are declared as private, so you need getters/setters to access them.


The important thing is:
If this > rhs then the returned value is > 0.
If this .equals(rhs) then the return value is == 0 (this is NOT enforced, however it is good practice).
if this < rhs then the returned value is < 0.


If we then were to do:

ArrayList<Investment> investments = new ArrayList<Investment>();
/* ... Fill ArrayList ...*/
Collections.sort(investments);


then ArrayList<Investment>.get(0) would have the lowest total price investment (as the .sort method sorts in ascending order).

Hope this helps somewhat


Yes that helped a lot, thank you! I'm still confused about the difference between the comperable and iterable for my Account class that implements both. I know the iterable is passing the list of portfolios, how exactly am I to use this with the list of portfolios. Does iterable also use Collections.sort?
We buy things we don't need, with money we don't have, to impress people we don't like.
Athos
Profile Blog Joined February 2008
United States2484 Posts
March 24 2014 16:59 GMT
#9142
On March 24 2014 19:04 endy wrote:
Anyone has a nice framework to recommend to develop cross platform mobile apps?
Most of them, like PhoneGap seem to be based on Javascript? Is Javascript powerful/robust enough? I don't think it can compare with a solid object oriented language.

edit: Also not very sure of how I can use a local database like Sqlite when using such a framework, or how to make my application work when offline.





If you're interested in game development, I recommend Game Closure. It's open source and they have a pretty good dedicated community to answering questions about the framework.
supereddie
Profile Joined March 2011
Netherlands151 Posts
March 24 2014 17:04 GMT
#9143
On March 25 2014 01:21 Days wrote:

Yes that helped a lot, thank you! I'm still confused about the difference between the comperable and iterable for my Account class that implements both. I know the iterable is passing the list of portfolios, how exactly am I to use this with the list of portfolios. Does iterable also use Collections.sort?

Don't implement the iterable on the Account class. It makes no sense from a design/OO-perspective.
"Do not try to make difficult things possible, but make simple things simple." - David Platt on Software Design
LonelyCat
Profile Joined April 2011
United Kingdom130 Posts
March 24 2014 17:57 GMT
#9144
I agree with the previous poster, however if you're really set on it then you could do:


class Account implements Comparable<Account>, Iterable<Portfolio> {
private String accountId;
private List <Portfolio> portfolios;

@Override
public int compareTo(Account obj){
return 0;
}
void addPortfolio( Portfolio obj2 ){

};

public Iterator<Portfolio> iterator(){
return portfolios.iterator();
}


Iterable does not have anything to do with Collections, for example:

public class Set implements Iterable, Collections

is the java Set class - it implements iterable (so you know you can get an iterator over the set) as well as Collections, so you can call any Collections method on the Set too (like Collections.sort(Set)).

If you want to use iterable what you probably want to do is not implement iterable but instead do:

class Account implements Comparable<Account> {
private String accountId;
private List <Portfolio> portfolios;

@Override
public int compareTo(Account obj){
return 0;
}
void addPortfolio( Portfolio obj2 ){

};

public Iterator<Portfolio> getPortfolioIterator(){
return portfolios.iterator();
}
Days
Profile Joined February 2010
United States219 Posts
Last Edited: 2014-03-24 18:07:18
March 24 2014 18:04 GMT
#9145
Ahh okay it's all making sense now. Technically it doesn't make sense to implement iterable since the Iterator already does what it needs to do without the use of implementing iterable. It would basically be redundant to implement iterable. Thank you guys lots!

Edit: I hope that makes sense what I just said from a logical point, if not you're welcome to correct me :D
We buy things we don't need, with money we don't have, to impress people we don't like.
Encdalf
Profile Joined February 2012
Germany66 Posts
March 25 2014 09:25 GMT
#9146
On March 24 2014 19:04 endy wrote:
Anyone has a nice framework to recommend to develop cross platform mobile apps?
Most of them, like PhoneGap seem to be based on Javascript? Is Javascript powerful/robust enough? I don't think it can compare with a solid object oriented language.

edit: Also not very sure of how I can use a local database like Sqlite when using such a framework, or how to make my application work when offline.

Using JS is usually fine, however there are areas where a native implementation is better. But that depends on what you want to do.
I used PhoneGap a while back for several Apps and it worked. I can't say anything about Appcelerator but I guess in the end it comes down to what do you need and which suits you better

As for making the app offline capable, you simply put all data into the app, and ship it with it. Or you download files on demand and store them in the app. As for database, the frameworks have a database api you can use.
endy
Profile Blog Joined May 2009
Switzerland8970 Posts
March 25 2014 10:07 GMT
#9147
On March 24 2014 20:04 sluggaslamoo wrote:
Show nested quote +
On March 24 2014 19:04 endy wrote:
Anyone has a nice framework to recommend to develop cross platform mobile apps?
Most of them, like PhoneGap seem to be based on Javascript? Is Javascript powerful/robust enough? I don't think it can compare with a solid object oriented language.

edit: Also not very sure of how I can use a local database like Sqlite when using such a framework, or how to make my application work when offline.


Appcelerator Titanium. Nothing else comes close.


This looks pretty good, I will give this a try first. Thanks!

On March 25 2014 01:59 Athos wrote:
Show nested quote +
On March 24 2014 19:04 endy wrote:
Anyone has a nice framework to recommend to develop cross platform mobile apps?
Most of them, like PhoneGap seem to be based on Javascript? Is Javascript powerful/robust enough? I don't think it can compare with a solid object oriented language.

edit: Also not very sure of how I can use a local database like Sqlite when using such a framework, or how to make my application work when offline.


If you're interested in game development, I recommend Game Closure. It's open source and they have a pretty good dedicated community to answering questions about the framework.


Not interested in games for now, but thank you.

On March 25 2014 18:25 Encdalf wrote:
Show nested quote +
On March 24 2014 19:04 endy wrote:
Anyone has a nice framework to recommend to develop cross platform mobile apps?
Most of them, like PhoneGap seem to be based on Javascript? Is Javascript powerful/robust enough? I don't think it can compare with a solid object oriented language.

edit: Also not very sure of how I can use a local database like Sqlite when using such a framework, or how to make my application work when offline.

Using JS is usually fine, however there are areas where a native implementation is better. But that depends on what you want to do.
I used PhoneGap a while back for several Apps and it worked. I can't say anything about Appcelerator but I guess in the end it comes down to what do you need and which suits you better

As for making the app offline capable, you simply put all data into the app, and ship it with it. Or you download files on demand and store them in the app. As for database, the frameworks have a database api you can use.


Hmm ok, I just feel that JS is fine for scripting as its name indicates. But I don't think you can write clean, easy to maintain and more importantly re-usable code with JS as you could with Java.
Thanks!





ॐ
sluggaslamoo
Profile Blog Joined November 2009
Australia4494 Posts
Last Edited: 2014-03-25 12:17:28
March 25 2014 12:16 GMT
#9148
On March 25 2014 19:07 endy wrote:
Show nested quote +
On March 24 2014 20:04 sluggaslamoo wrote:
On March 24 2014 19:04 endy wrote:
Anyone has a nice framework to recommend to develop cross platform mobile apps?
Most of them, like PhoneGap seem to be based on Javascript? Is Javascript powerful/robust enough? I don't think it can compare with a solid object oriented language.

edit: Also not very sure of how I can use a local database like Sqlite when using such a framework, or how to make my application work when offline.


Appcelerator Titanium. Nothing else comes close.


This looks pretty good, I will give this a try first. Thanks!

Show nested quote +
On March 25 2014 01:59 Athos wrote:
On March 24 2014 19:04 endy wrote:
Anyone has a nice framework to recommend to develop cross platform mobile apps?
Most of them, like PhoneGap seem to be based on Javascript? Is Javascript powerful/robust enough? I don't think it can compare with a solid object oriented language.

edit: Also not very sure of how I can use a local database like Sqlite when using such a framework, or how to make my application work when offline.


If you're interested in game development, I recommend Game Closure. It's open source and they have a pretty good dedicated community to answering questions about the framework.


Not interested in games for now, but thank you.

Show nested quote +
On March 25 2014 18:25 Encdalf wrote:
On March 24 2014 19:04 endy wrote:
Anyone has a nice framework to recommend to develop cross platform mobile apps?
Most of them, like PhoneGap seem to be based on Javascript? Is Javascript powerful/robust enough? I don't think it can compare with a solid object oriented language.

edit: Also not very sure of how I can use a local database like Sqlite when using such a framework, or how to make my application work when offline.

Using JS is usually fine, however there are areas where a native implementation is better. But that depends on what you want to do.
I used PhoneGap a while back for several Apps and it worked. I can't say anything about Appcelerator but I guess in the end it comes down to what do you need and which suits you better

As for making the app offline capable, you simply put all data into the app, and ship it with it. Or you download files on demand and store them in the app. As for database, the frameworks have a database api you can use.


Hmm ok, I just feel that JS is fine for scripting as its name indicates. But I don't think you can write clean, easy to maintain and more importantly re-usable code with JS as you could with Java.
Thanks!




http://coffeescript.org/

Java has pretty horrid code re-usability actually, but I think I've beaten the horse to death enough over that.
Come play Android Netrunner - http://www.teamliquid.net/forum/viewmessage.php?topic_id=409008
Cyx.
Profile Joined November 2010
Canada806 Posts
March 26 2014 03:01 GMT
#9149
On March 12 2014 08:47 Cyx. wrote:
e: so I guess I should tell you guys how my 'command line interview' went... it was not as complex as previously thought, I just had to write a couple of scripts and fix some bugs in some stuff. It was on the command line on Ubuntu so all the stuff I had been worrying about for the last couple days was still pretty useful, but I didn't have to know how to grep anything or anything dumb like that ^^


second update: I got the job! So I get to actually code things for four months this summer instead of waiting tables, and someone is actually going to pay me for it... which is as good as I could have hoped for in second year =D next year I'll try and get an internship somewhere involved with gaming but for now I'm just satisfied that all the programming I've done over the last few years is actually going to pay me for once =D
icystorage
Profile Blog Joined November 2008
Jollibee19350 Posts
March 26 2014 03:09 GMT
#9150
Congrats man! I know the feeling!
LiquidDota StaffAre you ready for a Miracle-? We are! The International 2017 Champions!
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
March 26 2014 17:34 GMT
#9151
Can someone recommend me good books on OOP, TDD and MVVM, maybe AOP? Not so much introductory material, but books that "lay down the law", clear and precise. Not all in one book of course, but rather one or two books for each topic.
If you have a good reason to disagree with the above, please tell me. Thank you.
obesechicken13
Profile Blog Joined July 2008
United States10467 Posts
Last Edited: 2014-03-27 07:28:32
March 27 2014 07:06 GMT
#9152
How do you debug a timeout in .net 4.0?

[image loading]
We deployed on amazon. This works when you run the site locally on amazon. It also works when I run the site on my machine in visual studio. I can't seem to find anything in the log files that might help.

The problem is that nothing returns. No error code.

It works if you make the app bind on port 80, but we have two different parts of the site that are currently running on different ports.
I think in our modern age technology has evolved to become more addictive. The things that don't give us pleasure aren't used as much. Work was never meant to be fun, but doing it makes us happier in the long run.
bangsholt
Profile Joined June 2011
Denmark138 Posts
March 27 2014 09:00 GMT
#9153
Fire up Wireshark or http://www.telerik.com/fiddler - then you have an idea of what's being sent back and forth, or the lack thereof, which should help you
sluggaslamoo
Profile Blog Joined November 2009
Australia4494 Posts
March 27 2014 16:01 GMT
#9154
On March 27 2014 02:34 spinesheath wrote:Not so much introductory material, but books that "lay down the law", clear and precise


There's really no such thing. Depending on who you speak to everyone will have a different idea of how "OOP" is meant to be. Anyone who tells you how OOP is meant to be like this and that really doesn't know what they're talking about (which is unfortunately almost all programmers).

Find out all you can about OOP, but never hold yourself to any one doctrine, because they're all correct and incorrect in one way or another.

I have read a lot of books on OO but my favorite one is still

http://www.amazon.com/Object-Design-Roles-Responsibilities-Collaborations/dp/0201379430

As for TDD, the best book is probably

http://www.amazon.com/Working-Effectively-Legacy-Michael-Feathers/dp/0131177052
Come play Android Netrunner - http://www.teamliquid.net/forum/viewmessage.php?topic_id=409008
gargantotang
Profile Joined September 2013
7 Posts
March 27 2014 16:31 GMT
#9155
Hello TL programmers, I have question for you.

I am an engineering student who took a C++ for engineering course (basic stuff) and have been using the language to solve larger problems that I don't want to do or can't do in excel. When using it for a recent modeling program, I noticed the larger the program got, the more frequently it would inexplicably crash. No errors of any sort, and after rebooting and recompiling it would often run just fine.

Why is it doing this and how do I make it stop? Is the computer trying to do the calculations too fast and I need to set a limit to how fast it does them (opening the task manager I saw the CPU would often be running at 98%), or is it a memory problem (I often get a blue screen talking about a memory dump)? This kind of problem is outside of my knowledge base, and I feel the programmers must have dealt with these kinds of problems a long while ago. Any advice or reading material suggestions on the issue would be appreciated.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
March 27 2014 16:51 GMT
#9156
On March 28 2014 01:01 sluggaslamoo wrote:
Show nested quote +
On March 27 2014 02:34 spinesheath wrote:Not so much introductory material, but books that "lay down the law", clear and precise


There's really no such thing. Depending on who you speak to everyone will have a different idea of how "OOP" is meant to be. Anyone who tells you how OOP is meant to be like this and that really doesn't know what they're talking about (which is unfortunately almost all programmers).

Find out all you can about OOP, but never hold yourself to any one doctrine, because they're all correct and incorrect in one way or another.

I have read a lot of books on OO but my favorite one is still

http://www.amazon.com/Object-Design-Roles-Responsibilities-Collaborations/dp/0201379430

As for TDD, the best book is probably

http://www.amazon.com/Working-Effectively-Legacy-Michael-Feathers/dp/0131177052

Well, there's got to be a baseline consensus on OOP at least.

Anyways, thanks for the suggestions!
If you have a good reason to disagree with the above, please tell me. Thank you.
RoyGBiv_13
Profile Blog Joined August 2010
United States1275 Posts
March 27 2014 17:14 GMT
#9157
On March 28 2014 01:51 spinesheath wrote:
Show nested quote +
On March 28 2014 01:01 sluggaslamoo wrote:
On March 27 2014 02:34 spinesheath wrote:Not so much introductory material, but books that "lay down the law", clear and precise


There's really no such thing. Depending on who you speak to everyone will have a different idea of how "OOP" is meant to be. Anyone who tells you how OOP is meant to be like this and that really doesn't know what they're talking about (which is unfortunately almost all programmers).

Find out all you can about OOP, but never hold yourself to any one doctrine, because they're all correct and incorrect in one way or another.

I have read a lot of books on OO but my favorite one is still

http://www.amazon.com/Object-Design-Roles-Responsibilities-Collaborations/dp/0201379430

As for TDD, the best book is probably

http://www.amazon.com/Working-Effectively-Legacy-Michael-Feathers/dp/0131177052

Well, there's got to be a baseline consensus on OOP at least.

Anyways, thanks for the suggestions!


OOP designs does differ a lot depending on implementation. OOP for C++ is different than OOP from Java, etc... If you look at just one language, there's probably a good book that provides an excellent set of rules to live by. It's been some time since I did any heavy lifting in any OOP language though, so I don't have any suggestions.

Except don't use Exceptions if you're using C++, because unexpected arbitrary length code execution is bad.
Any sufficiently advanced technology is indistinguishable from magic
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
Last Edited: 2014-03-27 19:22:13
March 27 2014 19:14 GMT
#9158
On March 28 2014 02:14 RoyGBiv_13 wrote:
Except don't use Exceptions if you're using C++, because unexpected arbitrary length code execution is bad.


Huh? Why?

I see : http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml#Exceptions

but this counter-example here : http://stackoverflow.com/questions/3312513/on-a-disadvantage-of-exceptions-in-c/3312577#3312577

makes sense.
There is no one like you in the universe.
dae
Profile Joined June 2010
Canada1600 Posts
March 27 2014 19:18 GMT
#9159
On March 28 2014 01:31 gargantotang wrote:
Hello TL programmers, I have question for you.

I am an engineering student who took a C++ for engineering course (basic stuff) and have been using the language to solve larger problems that I don't want to do or can't do in excel. When using it for a recent modeling program, I noticed the larger the program got, the more frequently it would inexplicably crash. No errors of any sort, and after rebooting and recompiling it would often run just fine.

Why is it doing this and how do I make it stop? Is the computer trying to do the calculations too fast and I need to set a limit to how fast it does them (opening the task manager I saw the CPU would often be running at 98%), or is it a memory problem (I often get a blue screen talking about a memory dump)? This kind of problem is outside of my knowledge base, and I feel the programmers must have dealt with these kinds of problems a long while ago. Any advice or reading material suggestions on the issue would be appreciated.


It sounds like you probably have one or more memory leaks somewhere in the program.

This causes your program to take up more and more memory until it crashes.

There are two solutions to this for you: Look up how to manage memory properly in C++, or use a language such as Python, Java, or C# that has garbage collection that deals with memory management for you.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
March 27 2014 20:03 GMT
#9160
On March 28 2014 04:14 Blisse wrote:
Show nested quote +
On March 28 2014 02:14 RoyGBiv_13 wrote:
Except don't use Exceptions if you're using C++, because unexpected arbitrary length code execution is bad.


Huh? Why?

I see : http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml#Exceptions

but this counter-example here : http://stackoverflow.com/questions/3312513/on-a-disadvantage-of-exceptions-in-c/3312577#3312577

makes sense.

Yeah, if you're using new/delete in C++ without boxing it into a constructor/destructor pair, you're doing it wrong.
If you have a good reason to disagree with the above, please tell me. Thank you.
Prev 1 456 457 458 459 460 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 10m
[ Submit Event ]
Live Streams
Refresh
StarCraft: Brood War
Bisu 1406
Rain 1088
Jaedong 487
Tasteless 395
Horang2 393
BeSt 356
Soma 220
Leta 171
Hyun 153
Mini 140
[ Show more ]
Zeus 123
Mong 96
ZerO 65
Pusan 61
Killer 60
PianO 51
ToSsGirL 40
Mind 34
sorry 31
Rush 30
Aegong 26
Bale 21
ZergMaN 18
Stork 18
hero 14
Movie 14
NaDa 13
Hm[arnc] 13
JulyZerg 12
yabsab 12
GoRush 11
Noble 8
ajuk12(nOOB) 7
Yoon 6
Terrorterran 6
NotJumperer 5
Dota 2
Fuzer 154
League of Legends
JimRising 442
Counter-Strike
shoxiejesuss759
Other Games
summit1g5643
FrodaN2606
ceh91119
singsing868
Pyrionflax170
Trikslyr23
CosmosSc2 14
ZerO(Twitch)12
Organizations
Other Games
gamesdonequick1132
StarCraft: Brood War
lovetv 10
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 14 non-featured ]
StarCraft 2
• Berry_CruncH312
• mYiSmile170
• LUISG 7
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• lizZardDota2330
Upcoming Events
The PondCast
10m
Kung Fu Cup
1h 10m
OSC
14h 10m
CrankTV Team League
1d 1h
Replay Cast
1d 14h
CrankTV Team League
2 days
Korean StarCraft League
2 days
Afreeca Starleague
2 days
RSL Revival
2 days
Serral vs SHIN
herO vs Solar
Online Event
3 days
[ Show More ]
Replay Cast
3 days
RSL Revival
3 days
Clem vs ByuN
Rogue vs Lambo
WardiTV Weekly
5 days
Sparkling Tuna Cup
6 days
PiGosaur Cup
6 days
Liquipedia Results

Completed

Proleague 2026-07-21
HSC XXIX
Eternal Conflict S2 E3

Ongoing

CSL 2026 Summer (S21)
KCM Race Survival 2026 Season 3
RSL Revival: Season 6
CranK Gathers Season 4: BW vs SC2 Team League
SCTL 2026 Spring
BLAST Bounty Summer Qual
Stake Ranked Episode 3
XSE Pro League 2026
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026

Upcoming

Escore Tournament S3: W4
ASL S22 SEASON OPEN Day 2
Escore Tournament S3: W5
CSLAN 4
Blizzard Classic Cup 2026
HSC XXX
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
Light Tournament 2026
Eternal Conflict S2 Finale
ESL Pro League Season 24
Stake Ranked Episode 4
Logitech G Connect 2026
SL StarSeries Fall 2026
FISSURE Playground #5
BLAST Open Fall 2026
Esports World Cup 2026
BLAST Bounty Summer 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...

Disclosure: This page contains affiliate marketing links that support TLnet.

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.