• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 09:17
CEST 15:17
KST 22:17
  • 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] Ro24 Preview: Siren's Call8[ASL22] Ro24 Preview: Summer's End9Serral wins HomeStory Cup 2915Serral wins Maestros of the Game 244ByuL, and the Limitations of Standard Play3
Community News
Official StarCraft website teases new content ahead of BlizzCon?76Stellar Fest TWO the Moon (Dec 16-20)9Weekly Cups (August 24-30): Patches' balance mod takes over3New 3v3 BGH Ladder (and more) on ShieldBattery!40Weekly Cups (August 17-23): Zerg dominate the week6
StarCraft 2
General
Nexon wins bid to develop StarCraft IP content, distribute Overwatch mobile game SC4ALL: II Winner Will Earn a Spot at HSC 30! Weekly Cups (August 24-30): Patches' balance mod takes over Balance hotfix patch 5.0.16b (July 16) September World Ranking: herO leads, Serral climbs
Tourneys
Stellar Fest TWO the Moon (Dec 16-20) IntoTheTV X SOOP SC2 League : Weekly & Monthly SC2 INu's Battles#20 [BO.9] 2026 GSTL Announcement PIG STY FESTIVAL 8.0! (13 - 23 August)
Strategy
[G] Having the right mentality to improve
Custom Maps
Nexus Wars 2021 GUIDE [M] (2) Industrial Park
External Content
Mutation # 541 Binary Choice The PondCast: SC2 News & Results Mutation # 540 Dodge This Mutation # 539 Thunder Dome
Brood War
General
ASL22 General Discussion Gypsy to Korea Official StarCraft website teases new content ahead of BlizzCon? [Personal Project Share] Terran Defense v0.60 BW General Discussion
Tourneys
KCM Race Survival 2026 Season 3 Brood War in Budapest ! WORTEX 2026 BW Finals [Megathread] Daily Proleagues BSL LAN Party - Kraków 29-30 August - OPEN SIGNUPS
Strategy
Replay Review Process - What do you do? Game Theory for Starcraft Odyssey Mineral Stack Saturation Fighting Spirit mining rates
Other Games
General Games
Nintendo Switch Thread Diablo IV EVE Corporation [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 Power Rank TL Mafia Community Thread NeO.D_StephenKing vs This Guy From 1 Million Dance
Community
General
Artificial Intelligence Thread US Politics Mega-thread Things Aren’t Peaceful in Palestine Canadian Politics Mega-thread UK Politics Mega-thread
Fan Clubs
MarineLorD Fan Club The Creator Fan Club The ShoWTimE Fan Club
Media & Entertainment
Movie Discussion! Anime Discussion Thread
Sports
Football (Soccer) Thread TeamLiquid Health and Fitness Initiative For 2023 MLB/Baseball 2023 NBA General Discussion
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Northern Ireland Global Starcraft
Blogs
Dreaming of BW patches (mod…
c3rberUs
Regacy Esports: The Bh…
regacyesports
Violent Games and Crime Rate…
TrAiDoS
LOCKPICKING NOOB
LUCKY_NOOB
Cathedral Of CS And NY pizza a…
FuDDx
Customize Sidebar...

Website Feedback

Closed Threads



Active: 7078 users

The Big Programming Thread - Page 445

Forum Index > General Forum
Post a Reply
Prev 1 443 444 445 446 447 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.
Warri
Profile Joined May 2010
Germany3208 Posts
Last Edited: 2014-02-17 16:31:10
February 17 2014 16:29 GMT
#8881
On February 18 2014 01:21 Akka wrote:
Isn't that an empty menubar?

Hm, i didnt specify any so it's null.
JMenuBar mb = new JMenuBar();
setJMenuBar(mb);
mb.setVisible(false);
Doesnt work either.
Edit: If i do have a menubar and its visible, there's still the same margin below the menubar.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
February 17 2014 16:54 GMT
#8882
personally i strictly follow the RGM standard.
conspired against by a confederacy of dunces.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
February 17 2014 17:27 GMT
#8883
On February 18 2014 00:07 darkness wrote:
Do you guys follow the SOLID principles and to what extent?

Some points may be debatable in detail, but for OOP languages, would you ever not follow these?
I guess aside from working with existing code where conforming to those principles would take more effort than you can spare, and quick 100 line programs. Which tend to turn into bigger programs anyways, so you would still want to do them properly...
If you have a good reason to disagree with the above, please tell me. Thank you.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
February 17 2014 23:02 GMT
#8884
On February 18 2014 02:27 spinesheath wrote:
Show nested quote +
On February 18 2014 00:07 darkness wrote:
Do you guys follow the SOLID principles and to what extent?

Some points may be debatable in detail, but for OOP languages, would you ever not follow these?
I guess aside from working with existing code where conforming to those principles would take more effort than you can spare, and quick 100 line programs. Which tend to turn into bigger programs anyways, so you would still want to do them properly...


Okay then, I have a specific question based on:


The Single Responsibility Principle

There should never be more than one reason for a class to change. Basically, this means that your classes should exist for one purpose only. For example, let's say you are creating a class to represent a SalesOrder. You would not want that class to save to the database, as well as export an XML-based receipt. Why? Well if later on down the road, you want to change database type (or if you want to change your XML schema), you're allowing one responsibility's changes to possibly alter another. Responsibility is the heart of this principle, so to rephrase there should never be more than one responsibility per class.

Source: codeproject

If I have a class that wraps a grid (2D array) that offers methods to enter a value for an index or get a value from an index, can I still use the same class for validation purposes? E.g. to check if a number is in boundaries. I'm kind of confused if this would count as two responsibilities: 1) (wrapping a grid, set/get a value) and 2) validation? Or maybe responsibility may be very high level such as "grid management", so in this class 1) and 2) are just 1 responsibility.
ZenithM
Profile Joined February 2011
France15952 Posts
Last Edited: 2014-02-18 00:07:47
February 18 2014 00:02 GMT
#8885
Edit: Scratch that, I don't think it was very good advice in the end :/
You might want to change your validation process at some point, so if you view the validation step as something separate from the grid (or like, additional to it), I say go ahead, make them 2 classes.
sluggaslamoo
Profile Blog Joined November 2009
Australia4494 Posts
Last Edited: 2014-02-18 00:23:01
February 18 2014 00:21 GMT
#8886
On February 18 2014 08:02 darkness wrote:
Show nested quote +
On February 18 2014 02:27 spinesheath wrote:
On February 18 2014 00:07 darkness wrote:
Do you guys follow the SOLID principles and to what extent?

Some points may be debatable in detail, but for OOP languages, would you ever not follow these?
I guess aside from working with existing code where conforming to those principles would take more effort than you can spare, and quick 100 line programs. Which tend to turn into bigger programs anyways, so you would still want to do them properly...


Okay then, I have a specific question based on:

Show nested quote +

The Single Responsibility Principle

There should never be more than one reason for a class to change. Basically, this means that your classes should exist for one purpose only. For example, let's say you are creating a class to represent a SalesOrder. You would not want that class to save to the database, as well as export an XML-based receipt. Why? Well if later on down the road, you want to change database type (or if you want to change your XML schema), you're allowing one responsibility's changes to possibly alter another. Responsibility is the heart of this principle, so to rephrase there should never be more than one responsibility per class.

Source: codeproject

If I have a class that wraps a grid (2D array) that offers methods to enter a value for an index or get a value from an index, can I still use the same class for validation purposes? E.g. to check if a number is in boundaries. I'm kind of confused if this would count as two responsibilities: 1) (wrapping a grid, set/get a value) and 2) validation? Or maybe responsibility may be very high level such as "grid management", so in this class 1) and 2) are just 1 responsibility.


The Array would have the validations, but the actual Validator that handles validations would be a separate class.

http://api.rubyonrails.org/classes/ActiveModel/Validations.html


class Person
include ActiveModel::Validations

validates_presence_of :name
end


Sometimes things can't be simply explained you need to read more than just a few acronyms to understand this sort of stuff. Have a look at Responsibility Driven Design.
Come play Android Netrunner - http://www.teamliquid.net/forum/viewmessage.php?topic_id=409008
Zorkmid
Profile Joined November 2008
4410 Posts
February 18 2014 00:55 GMT
#8887
Is anyone familiar with agent programming, agentspeak and/or Json?
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2014-02-18 18:56:25
February 18 2014 01:34 GMT
#8888
On February 18 2014 09:55 Zorkmid wrote:
Is anyone familiar with agent programming, agentspeak and/or Json?


I think you mean Jason not Json. JSON is a different thing.

Edit: Websites such as Codility and OnlineJudge annoy me... what's the point? I think they just promote sloppy code in favour of quicker implementation.
Badboyrune
Profile Blog Joined May 2010
Sweden2247 Posts
February 18 2014 22:01 GMT
#8889
Ok so the up button functionality in android is continuing to make no sense to me. Sometimes (and I don't really know when) the up button brings you to the main activity, despite the current activity having a specified parent activity that is not the main activity and the home button supposedly calling NavUtils.navigateUpTo(), with an intent that specifies the parent activity.

The biggest issue however is that one activities up button seems to behave differently depending on what activity you navigated there from. If I'm using the up button after having navigated to the activity from the parent activity the parent activity does not get the intent that's supposed to be delivered. If however I navigate to the activity from an activity that is not the parent activity when I use the up button the intent is received as it should be.

The method handles the option items looks like this if it helps

+ Show Spoiler +

	@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
Log.i(TAG, "Navigating up from ShopList");
String idname = getIntent().getStringExtra(MainActivity.EXTRA_MESSAGE);
Log.i(TAG, "idname: " + idname);
Intent upIntent = NavUtils.getParentActivityIntent(this);
upIntent.putExtra(MainActivity.EXTRA_MESSAGE, idname);
String testid = upIntent.getStringExtra(MainActivity.EXTRA_MESSAGE);
Log.i(TAG, "idname in upIntent: " + testid);
NavUtils.navigateUpTo(this, upIntent);
}
return super.onOptionsItemSelected(item);
}
}

"If yellow does start SC2, I should start handsomenerd diaper busniess and become a rich man" - John the Translator
Zorkmid
Profile Joined November 2008
4410 Posts
February 18 2014 23:52 GMT
#8890
On February 18 2014 10:34 darkness wrote:
Show nested quote +
On February 18 2014 09:55 Zorkmid wrote:
Is anyone familiar with agent programming, agentspeak and/or Json?


I think you mean Jason not Json. JSON is a different thing.

Edit: Websites such as Codility and OnlineJudge annoy me... what's the point? I think they just promote sloppy code in favour of quicker implementation.


Yes you're right.
Duval
Profile Blog Joined February 2011
Belgium144 Posts
February 19 2014 14:25 GMT
#8891
So we got an assignment (long term, 4-5 months time) to create a quiz-system. Basically, they want us to create a powerpoint-like application specialized in creating quizzes (the kind of quizzes where there's a guy presenting it to groups of people who write down answers on paper). We're currently planning on implementing in Qt, because I think creating the GUI is a lot easier than with java's swing (We have to use an OO language, so preferably java or c++).

The main question I have are about packages, are there any packages available which we should use? Some packages for creating a workspace for the slides for example is something we'll really would like and have no idea where to look for.
Makavw
Profile Joined April 2010
Croatia165 Posts
February 19 2014 14:33 GMT
#8892
Hiya all,
I want to learn some web programming - and decided that I want to use C# and .NET for it.
Do you know any good books to start with? I know about Headfirst C# and C# for dummies, but they mostly only cover desktop or console application.
I would like to get right into web programming since it would make learning a bit more fun!

The best thing i found so far is http://www.w3schools.com/ASPnet/default.asp
and where should i start : webpages, mvc or web forms?
Thanks for your help
teamamerica
Profile Blog Joined July 2010
United States958 Posts
February 19 2014 14:52 GMT
#8893
On February 19 2014 07:01 Badboyrune wrote:
Ok so the up button functionality in android is continuing to make no sense to me. Sometimes (and I don't really know when) the up button brings you to the main activity, despite the current activity having a specified parent activity that is not the main activity and the home button supposedly calling NavUtils.navigateUpTo(), with an intent that specifies the parent activity.

The biggest issue however is that one activities up button seems to behave differently depending on what activity you navigated there from. If I'm using the up button after having navigated to the activity from the parent activity the parent activity does not get the intent that's supposed to be delivered. If however I navigate to the activity from an activity that is not the parent activity when I use the up button the intent is received as it should be.

The method handles the option items looks like this if it helps

+ Show Spoiler +

	@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
Log.i(TAG, "Navigating up from ShopList");
String idname = getIntent().getStringExtra(MainActivity.EXTRA_MESSAGE);
Log.i(TAG, "idname: " + idname);
Intent upIntent = NavUtils.getParentActivityIntent(this);
upIntent.putExtra(MainActivity.EXTRA_MESSAGE, idname);
String testid = upIntent.getStringExtra(MainActivity.EXTRA_MESSAGE);
Log.i(TAG, "idname in upIntent: " + testid);
NavUtils.navigateUpTo(this, upIntent);
}
return super.onOptionsItemSelected(item);
}
}



For your 2nd problem of the intent not being received - in the parent Activity in what lifecycle callback are you checking for the intent? The line in the NavUtil documentation "This method should be used when performing up navigation from within the same task as the destination." seems to pertain to your case.

For the first problem, are you seeing all the log messages you expect? Returning home makes me think that somehow control is reaching the super.onOptionsItemSelected call...
RIP GOMTV. RIP PROLEAGUE.
kitaman27 *
Profile Blog Joined April 2009
United States9245 Posts
February 19 2014 15:47 GMT
#8894
For the TL Mafia subforum, we have put together a simple php site that uses a mysql database to record game and player records

http://tlmafiadatabase.sourceforge.net/.

Whenever I attempt to update or insert a record, the database does reflect the change, however when I attempt to run the select query a second time, it returns a result set as if the update or insert never took place. The updates and inserts are permanent so it doesn't seem like a rollback issue.

When I clear the web browser's cache and cookies and reload the page, the select statement does return the updated records, so are there perhaps any caching issues that I might need to look into?

My php knowledge is pretty limited, so any suggestions would certainly be appreciated. Thanks!

+ Show Spoiler [Code] +
Upon page load, selectplayers is called and will return player A and B. I then call deleteplayer to remove B and the record is indeed removed from the database. I call selectplayers a second time and it still returns player A and B. If I clear the cache and reload the page, it returns only player A.

function selectplayers() {
$db = new db("mysql-t","user","password","database");
$id = $db->escape($_REQUEST["id"]);
$db->execute("SELECT name FROM players WHERE id=$id");
$db->close();
//echo result set to page
}

function deleteplayer() {
$db = new db("mysql-t","user","password","database");
$id = $db->escape($_REQUEST["id"]);
$db->execute("DELETE FROM players WHERE id=$id");
$db->close();
}


I'm better than dirt. Well, most kinds of dirt. I mean not that fancy store bought dirt. That stuffs loaded with nutrients. I... I can't compete with that stuff.
CatNzHat
Profile Blog Joined February 2011
United States1599 Posts
February 19 2014 15:57 GMT
#8895
This might not be considered directly in the scope of this thread, but I'm looking to learn a bit more about Twitch.tv's engineering culture and structure. If someone who works there could give me some insight it would be greatly appreciated.
bangsholt
Profile Joined June 2011
Denmark138 Posts
February 19 2014 16:27 GMT
#8896
On February 19 2014 23:33 Makavw wrote:
Hiya all,
I want to learn some web programming - and decided that I want to use C# and .NET for it.
Do you know any good books to start with? I know about Headfirst C# and C# for dummies, but they mostly only cover desktop or console application.
I would like to get right into web programming since it would make learning a bit more fun!

The best thing i found so far is http://www.w3schools.com/ASPnet/default.asp
and where should i start : webpages, mvc or web forms?
Thanks for your help


http://www.asp.net/mvc/tutorials

Start from there. Start with MVC, it's will learn you some design method that is easy to maintain.

On February 18 2014 10:34 darkness wrote:
Show nested quote +
On February 18 2014 09:55 Zorkmid wrote:
Is anyone familiar with agent programming, agentspeak and/or Json?


I think you mean Jason not Json. JSON is a different thing.

Edit: Websites such as Codility and OnlineJudge annoy me... what's the point? I think they just promote sloppy code in favour of quicker implementation.


That surely depends on what goals you have for your code. When I play around with them, I usually make two solutions, one that is pragmatically correct and one that's fast as hell. You learn a lot from both ways of designing code.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2014-02-19 16:52:08
February 19 2014 16:48 GMT
#8897
When you apply for Software Engineer jobs, do you get discrete math questions such as probability of something to happen (combinatorics)? I've just had to deal with such a test. Needless to say how it slightly caught me offguard because I am in year 3, and my last mathematical module was in year 1... I have chosen the software path not the pure computer science although the degree is still called computer science, but the programme is software development.

Maybe the purpose is to weed out some candidates even though they do not expect perfect scores?
Badboyrune
Profile Blog Joined May 2010
Sweden2247 Posts
February 19 2014 17:02 GMT
#8898
On February 19 2014 23:52 teamamerica wrote:
Show nested quote +
On February 19 2014 07:01 Badboyrune wrote:
Ok so the up button functionality in android is continuing to make no sense to me. Sometimes (and I don't really know when) the up button brings you to the main activity, despite the current activity having a specified parent activity that is not the main activity and the home button supposedly calling NavUtils.navigateUpTo(), with an intent that specifies the parent activity.

The biggest issue however is that one activities up button seems to behave differently depending on what activity you navigated there from. If I'm using the up button after having navigated to the activity from the parent activity the parent activity does not get the intent that's supposed to be delivered. If however I navigate to the activity from an activity that is not the parent activity when I use the up button the intent is received as it should be.

The method handles the option items looks like this if it helps

+ Show Spoiler +

	@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
Log.i(TAG, "Navigating up from ShopList");
String idname = getIntent().getStringExtra(MainActivity.EXTRA_MESSAGE);
Log.i(TAG, "idname: " + idname);
Intent upIntent = NavUtils.getParentActivityIntent(this);
upIntent.putExtra(MainActivity.EXTRA_MESSAGE, idname);
String testid = upIntent.getStringExtra(MainActivity.EXTRA_MESSAGE);
Log.i(TAG, "idname in upIntent: " + testid);
NavUtils.navigateUpTo(this, upIntent);
}
return super.onOptionsItemSelected(item);
}
}



For your 2nd problem of the intent not being received - in the parent Activity in what lifecycle callback are you checking for the intent? The line in the NavUtil documentation "This method should be used when performing up navigation from within the same task as the destination." seems to pertain to your case.

For the first problem, are you seeing all the log messages you expect? Returning home makes me think that somehow control is reaching the super.onOptionsItemSelected call...


I managed to work around the second problem by just not using intents at all and using a shared preference key-value pair which I think ended up working better for my application.

For the first issue I think I've narrowed it down to that it seems to navigate home to the main activity when I press the back button in an activity after having navigated to that activity from an activity that is not the parent activity. So the navigation goes: parent activity -> activity -> activity:up button -> parent activity in normal cases and: some activity -> activity -> activity:up button -> main activity in other cases.

It's not a big deal for my purposes since my app is small enough that it's only a very minor inconvenience when it happens, it just annoys med that I don't understand why it happens
"If yellow does start SC2, I should start handsomenerd diaper busniess and become a rich man" - John the Translator
mantequilla
Profile Blog Joined June 2012
Turkey781 Posts
Last Edited: 2014-02-19 17:25:45
February 19 2014 17:25 GMT
#8899
Guys, help me work out a simple object oriented design.

I have an object and will have 3 forms for operations on that object:

1) A create form, which will have fields of the object and a save button. Fields will be filled by user and when user clicks the save button, a new object will be created.
2) An update form. This will be very much like the create form, but will take the object as an argument and the fields will be already filled with that object's data. When user changes some values and clicks save button, existing object will be updated.
3) A view form. And this will be like the update form, but won't have a save button, plus fields will be read-only.

How would you design something like this? Abstract classes, interfaces etc...
Age of Mythology forever!
supereddie
Profile Joined March 2011
Netherlands151 Posts
February 19 2014 17:29 GMT
#8900
On February 20 2014 02:25 mantequilla wrote:
Guys, help me work out a simple object oriented design.

I have an object and will have 3 forms for operations on that object:

1) A create form, which will have fields of the object and a save button. Fields will be filled by user and when user clicks the save button, a new object will be created.
2) An update form. This will be very much like the create form, but will take the object as an argument and the fields will be already filled with that object's data. When user changes some values and clicks save button, existing object will be updated.
3) A view form. And this will be like the update form, but won't have a save button, plus fields will be read-only.

How would you design something like this? Abstract classes, interfaces etc...

To start with it looks like you only need one form that has multiple states (and operations tied to these states).
"Do not try to make difficult things possible, but make simple things simple." - David Platt on Software Design
Prev 1 443 444 445 446 447 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 20h 43m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RotterdaM 532
SHIN 228
StarCraft: Brood War
Britney 60144
Calm 12787
Hyuk 2032
Shuttle 1022
Pusan 726
Horang2 593
actioN 552
firebathero 345
Hyun 265
Mini 239
[ Show more ]
Last 152
910 92
hero 82
Mong 76
ggaemo 75
Barracks 59
Sexy 34
Sharp 33
HiyA 33
Shinee 29
Free 26
Aegong 26
sSak 21
SilentControl 11
scan(afreeca) 9
ajuk12(nOOB) 8
Noble 8
Icarus 7
Rock 4
Dota 2
Dendi1303
qojqva1182
Gorgc1030
Counter-Strike
byalli805
Super Smash Bros
Mew2King148
Heroes of the Storm
Khaldor300
Other Games
B2W.Neo816
DeMusliM293
IndyStarCraft 181
Liquid`LucifroN126
Liquid`VortiX66
trigger4
Organizations
StarCraft 2
WardiTV605
Other Games
gamesdonequick470
StarCraft: Brood War
UltimateBattle 26
lovetv 10
[ Show 12 non-featured ]
StarCraft 2
• StrangeGG 43
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• Migwel
StarCraft: Brood War
• Michael_bg 5
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• WagamamaTV518
League of Legends
• Jankos1762
Upcoming Events
Sparkling Tuna Cup
20h 43m
OSC
22h 43m
Shopify Rebellion Sundays
1d 1h
Mixu vs TBD
Spirit vs TBD
Clem vs TBD
Patches Events
1d 2h
OSC
1d 10h
Afreeca Starleague
1d 20h
Soma vs Shuttle
BeSt vs Rush
WardiTV Weekly
1d 21h
Monday Night Weeklies
2 days
Afreeca Starleague
2 days
Leta vs ggaemo
Jaedong vs Queen
GSL
2 days
[ Show More ]
PiGosaur Cup
3 days
Kung Fu Cup
3 days
Replay Cast
4 days
The PondCast
4 days
KCM Race Survival
4 days
Escore
5 days
IntoTheTV X SOOP
5 days
CranKy Ducklings
6 days
Liquipedia Results

Completed

Proleague 2026-09-02
PiG Sty Festival 8.0
Light Tournament 2026

Ongoing

KCM Race Survival 2026 Season 3
K-JUNGMAN
ASL Season 22
Super Anchor Qualifying S3
CSL 2026 AUTUMN (S22)
Acropolis #5
Acropolis #5 - TRS
RSL Revival: Season 6
Calamity Invitational
Big Dog Cup 2026 Div 1
BLAST Open Fall 2026
Esports World Cup 2026
Esports World Cup 2026: LCQ
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
Stake Ranked Episode 3
XSE Pro League 2026

Upcoming

Escore Tournament S3: King of Kings
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
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
FISSURE Playground #3
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.