• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 01:36
CEST 07:36
KST 14:36
  • 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
Code S Season 1 - RO12 Group A: Rogue, Percival, Solar, Zoun12[ASL21] Ro8 Preview Pt1: Inheritors16[ASL21] Ro16 Preview Pt2: All Star10Team Liquid Map Contest #22 - The Finalists22[ASL21] Ro16 Preview Pt1: Fresh Flow9
Community News
RSL Revival: Season 5 - Qualifiers and Main Event4Code S Season 1 (2026) - RO12 Results02026 GSL Season 1 Qualifiers25Maestros of the Game 2 announced92026 GSL Tour plans announced15
StarCraft 2
General
Code S Season 1 (2026) - RO12 Results Code S Season 1 - RO12 Group A: Rogue, Percival, Solar, Zoun Team Liquid Map Contest #22 - The Finalists Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool MaNa leaves Team Liquid
Tourneys
RSL Revival: Season 5 - Qualifiers and Main Event GSL Code S Season 1 (2026) SC2 INu's Battles#15 <BO.9 2Matches> WardiTV Spring Cup SEL Masters #6 - Solar vs Classic (SC: Evo)
Strategy
Custom Maps
[D]RTS in all its shapes and glory <3 [A] Nemrods 1/4 players [M] (2) Frigid Storage
External Content
The PondCast: SC2 News & Results Mutation # 523 Firewall Mutation # 522 Flip My Base Mutation # 521 Memorable Boss
Brood War
General
Pros React To: Leta vs Tulbo (ASL S21, Ro.8) [BSL22] RO16 Group A - Sunday 21:00 CEST [BSL22] RO16 Group B - Saturday 21:00 CEST RepMastered™: replay sharing and analyzer site BW General Discussion
Tourneys
[BSL22] RO16 Group Stage - 02 - 10 May Escore Tournament StarCraft Season 2 [Megathread] Daily Proleagues [ASL21] Ro8 Day 2
Strategy
Fighting Spirit mining rates Simple Questions, Simple Answers What's the deal with APM & what's its true value Any training maps people recommend?
Other Games
General Games
Daigo vs Menard Best of 10 Stormgate/Frost Giant Megathread Nintendo Switch Thread Dawn of War IV Diablo IV
Dota 2
The Story of Wings Gaming
League of Legends
G2 just beat GenG in First stand
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
Vanilla Mini Mafia Mafia Game Mode Feedback/Ideas TL Mafia Community Thread Five o'clock TL Mafia
Community
General
US Politics Mega-thread European Politico-economics QA Mega-thread Russo-Ukrainian War Thread 3D technology/software discussion Canadian Politics Mega-thread
Fan Clubs
The IdrA Fan Club
Media & Entertainment
[Manga] One Piece Anime Discussion Thread [Req][Books] Good Fantasy/SciFi books Movie Discussion!
Sports
2024 - 2026 Football Thread McBoner: A hockey love story Formula 1 Discussion
World Cup 2022
Tech Support
streaming software Strange computer issues (software) [G] How to Block Livestream Ads
TL Community
The Automated Ban List
Blogs
Sexual Health Of Gamers
TrAiDoS
lurker extra damage testi…
StaticNine
Broowar part 2
qwaykee
Funny Nicknames
LUCKY_NOOB
Iranian anarchists: organize…
XenOsky
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1846 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
Replay Cast
00:00
2026 GSL S1: Ro12 Group A
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
ProTech137
StarCraft: Brood War
Mind 283
Shine 140
Backho 124
Aegong 62
ZergMaN 21
Dota 2
NeuroSwarm217
League of Legends
JimRising 726
Counter-Strike
Stewie2K1176
Other Games
summit1g7627
C9.Mang0602
WinterStarcraft589
monkeys_forever429
RuFF_SC295
ViBE42
ToD25
Organizations
Other Games
gamesdonequick905
Dota 2
PGL Dota 2 - Main Stream85
StarCraft: Brood War
UltimateBattle 26
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 13 non-featured ]
StarCraft 2
• Response 20
• OhrlRock 4
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Stunt470
Upcoming Events
Replay Cast
3h 24m
RSL Revival
4h 24m
Classic vs GgMaChine
Rogue vs Maru
WardiTV Invitational
5h 24m
Percival vs Shameless
ByuN vs YoungYakov
IPSL
10h 24m
Ret vs Art_Of_Turtle
Radley vs TBD
BSL
13h 24m
Replay Cast
18h 24m
RSL Revival
1d 4h
herO vs TriGGeR
NightMare vs Solar
uThermal 2v2 Circuit
1d 8h
BSL
1d 13h
IPSL
1d 13h
eOnzErG vs TBD
G5 vs Nesh
[ Show More ]
Patches Events
1d 18h
Replay Cast
2 days
Wardi Open
2 days
Afreeca Starleague
2 days
Jaedong vs Light
Monday Night Weeklies
2 days
Replay Cast
2 days
Sparkling Tuna Cup
3 days
Afreeca Starleague
3 days
Snow vs Flash
WardiTV Invitational
3 days
GSL
4 days
Classic vs Cure
Maru vs Rogue
GSL
5 days
SHIN vs Zoun
ByuN vs herO
OSC
5 days
Replay Cast
5 days
Escore
6 days
The PondCast
6 days
WardiTV Invitational
6 days
Replay Cast
6 days
Liquipedia Results

Completed

Escore Tournament S2: W5
WardiTV TLMC #16
Nations Cup 2026

Ongoing

BSL Season 22
ASL Season 21
CSL 2026 SPRING (S20)
IPSL Spring 2026
KCM Race Survival 2026 Season 2
KK 2v2 League Season 1
Acropolis #4
SCTL 2026 Spring
RSL Revival: Season 5
2026 GSL S1
BLAST Rivals Spring 2026
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026

Upcoming

BSL 22 Non-Korean Championship
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
Maestros of the Game 2
2026 GSL S2
Stake Ranked Episode 3
XSE Pro League 2026
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
IEM Atlanta 2026
Asian Champions League 2026
PGL Astana 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.