• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 22:57
CEST 04:57
KST 11:57
  • 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
[ASL21] Ro16 Preview Pt2: All Star10Team Liquid Map Contest #22 - The Finalists16[ASL21] Ro16 Preview Pt1: Fresh Flow9[ASL21] Ro24 Preview Pt2: News Flash10[ASL21] Ro24 Preview Pt1: New Chaos0
Community News
2026 GSL Season 1 Qualifiers13Maestros of the Game 2 announced82026 GSL Tour plans announced14Weekly Cups (April 6-12): herO doubles, "Villains" prevail1MaNa leaves Team Liquid24
StarCraft 2
General
Maestros of the Game 2 announced Team Liquid Map Contest #22 - The Finalists MaNa leaves Team Liquid 2026 GSL Tour plans announced Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool
Tourneys
Sparkling Tuna Cup - Weekly Open Tournament 2026 GSL Season 1 Qualifiers GSL CK: More events planned pending crowdfunding RSL Revival: Season 5 - Qualifiers and Main Event Master Swan Open (Global Bronze-Master 2)
Strategy
Custom Maps
[D]RTS in all its shapes and glory <3 [A] Nemrods 1/4 players [M] (2) Frigid Storage
External Content
Mutation # 522 Flip My Base The PondCast: SC2 News & Results Mutation # 521 Memorable Boss Mutation # 520 Moving Fees
Brood War
General
Pros React To: ASL S21, Ro.16 Group C ASL21 General Discussion BGH Auto Balance -> http://bghmmr.eu/ [TOOL] Starcraft Chat Translator Data needed
Tourneys
[ASL21] Ro16 Group C [Megathread] Daily Proleagues [ASL21] Ro16 Group D [ASL21] Ro16 Group B
Strategy
What's the deal with APM & what's its true value Simple Questions, Simple Answers Any training maps people recommend? Fighting Spirit mining rates
Other Games
General Games
Diablo IV Nintendo Switch Thread Dawn of War IV Starcraft Tabletop Miniature Game General RTS Discussion Thread
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 Things Aren’t Peaceful in Palestine Canadian Politics Mega-thread Russo-Ukrainian War Thread YouTube Thread
Fan Clubs
The IdrA Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece [Req][Books] Good Fantasy/SciFi books Movie Discussion!
Sports
McBoner: A hockey love story 2024 - 2026 Football Thread Formula 1 Discussion Cricket [SPORT]
World Cup 2022
Tech Support
[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: 2442 users

The Big Programming Thread - Page 389

Forum Index > General Forum
Post a Reply
Prev 1 387 388 389 390 391 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.
phar
Profile Joined August 2011
United States1080 Posts
November 10 2013 18:49 GMT
#7761
Your first not-hello-world style programming experience and you're thrown headfirst into GWT? That's brutal. GWT eats up and spits out engineers at my work. I personally did a few months of that ~2 years ago and then ran screaming for the hills, never to look back (to be fair mostly because I don't really enjoy FE).

Anyways, likely you do not want to have a raw csv file on the client side. Make some sort of data structure, read the file into that on the server, and then just use whatever your normal serialization is to pass it to the client. (I don't know what kind of setup you're using, on my team we use emulated protocol buffers - if this was my task at work, I'd be constructing a proto that holds the same data structure, parse it in on the server and then make sure any java code that handles that proto is properly emulated so it'll work on the client).
Who after all is today speaking about the destruction of the Armenians?
Fawkes
Profile Blog Joined May 2010
Canada1935 Posts
November 10 2013 22:06 GMT
#7762
As a design question, how would you guys go about putting this in a column in a sql db? If you had a form that had a question that said: check off as many that apply. The way I am thinking of putting it is just putting any checked off fields into the entry, but I can't seem to figure out if that is going to come back to haunt me or not...

So if I had options A, B, C, D and E...A and E were checked off, I was gonna put "A, E". I am just trying to figure out if there's anything I might regret if I try to query the table in the future.
Taeyeon ~ Jennie ~ Seulgi ~ Irene @Fawkes711
sluggaslamoo
Profile Blog Joined November 2009
Australia4494 Posts
Last Edited: 2013-11-10 22:31:11
November 10 2013 22:30 GMT
#7763
On November 09 2013 08:29 Rotodyne wrote:
Hey guys, over the last year I have been teaching myself a bunch of web programming stuff (php, javascript, html, css), but I still really just use a programming technique called "get shit done", in the short term this has been useful, but I usually just begin coding projects and figure it out as I go along. Specifically I know I need to learn OO programming.

My question is if I should use PHP to learn OO, or should I use something else? I have heard that PHP isn't a good way to learn because objects were added as sort of an afterthought. But what do I know.


The best way is not to learn a language but go read some books

Read books on responsibility driven design and OOP. Writing OO in PHP gives me a headache though.

Object Design by Wirfs-Brock & Mckean is one I'd recommend for starters. It is a small and concise book that will teach you the mindset required behind RRD, there's no code, just UML, but that's why its so good IMO.

RRD is a fundamental of OO, you can know all the OOP in the world, but without RRD you will just write rubbish code.

The most important thing is just how to write clean structured code in PHP as you don't have any fancy features. Fat Models, thin Controllers, break as many things down into small re-useable functions as you can (functional decomposition), etc.

If you have any functions that are longer than 10 lines seriously have a look at them and see if you can't break them down. Most of my functions are 1-3 (ruby) lines long, this is due to functional programming though, I'd say for PHP they should float between 3 to 5 lines on average.

On November 09 2013 08:43 misirlou wrote:
Show nested quote +
On November 09 2013 08:29 Rotodyne wrote:
Hey guys, over the last year I have been teaching myself a bunch of web programming stuff (php, javascript, html, css), but I still really just use a programming technique called "get shit done", in the short term this has been useful, but I usually just begin coding projects and figure it out as I go along. Specifically I know I need to learn OO programming.

My question is if I should use PHP to learn OO, or should I use something else? I have heard that PHP isn't a good way to learn because objects were added as sort of an afterthought. But what do I know.

Although not the best OOP language, PHP has the main features of OOP so you can start learning with what it's available there. If you do plan in "getting shit done" with PHP and other web languages, there's no real reason to go learn another language to learn OOP.
AFAIK PHP has dynamic dispatching, abstraction, polymorphism and inheritance, so you're good to go.


There's no polymorphism that I'm aware of, like other dynamic languages it has duck-typing instead.

Every language has abstraction, as long as it can define functions it has abstraction.
Come play Android Netrunner - http://www.teamliquid.net/forum/viewmessage.php?topic_id=409008
Javadocs
Profile Joined July 2010
United States60 Posts
November 10 2013 22:31 GMT
#7764
On November 11 2013 07:06 Fawkes wrote:
As a design question, how would you guys go about putting this in a column in a sql db? If you had a form that had a question that said: check off as many that apply. The way I am thinking of putting it is just putting any checked off fields into the entry, but I can't seem to figure out if that is going to come back to haunt me or not...

So if I had options A, B, C, D and E...A and E were checked off, I was gonna put "A, E". I am just trying to figure out if there's anything I might regret if I try to query the table in the future.


A better solution would be to create a new table (if possible) with 2 columns, the user ID (or whatever links it back to the original table) and a choice column.

CREATE TABLE (
userID int not null, --FOREIGN KEY probably
questionChoice char(1) not null
)

Then just insert a row for each choice (if selected), so if they chose A and E, then there are two rows inserted (and returned) for that user ID.

That way, you don't have to parse a string, and have to deal with invalid strings.
DeltaX
Profile Joined August 2011
United States287 Posts
November 10 2013 22:49 GMT
#7765
I don't know that much about sql design, but some other options would be:

1. Have a column for each entry. This feels a bit messy and I would assume there is something that makes this bad, I just don't know it.

2. Store the options as a number with each bit representing one choice. IE, if they chose A and C, that is 101 aka 5 that you would store, then write some methods somewhere to encode/decode the options. This might be a bit complicated for whatever your application is, but i think it would work out well.

I don't like the idea of doing it with strings.
Orome
Profile Blog Joined June 2004
Switzerland11984 Posts
November 10 2013 22:57 GMT
#7766
On November 11 2013 03:49 phar wrote:
Your first not-hello-world style programming experience and you're thrown headfirst into GWT? That's brutal. GWT eats up and spits out engineers at my work. I personally did a few months of that ~2 years ago and then ran screaming for the hills, never to look back (to be fair mostly because I don't really enjoy FE).

Anyways, likely you do not want to have a raw csv file on the client side. Make some sort of data structure, read the file into that on the server, and then just use whatever your normal serialization is to pass it to the client. (I don't know what kind of setup you're using, on my team we use emulated protocol buffers - if this was my task at work, I'd be constructing a proto that holds the same data structure, parse it in on the server and then make sure any java code that handles that proto is properly emulated so it'll work on the client).


Yeah it's somewhat ridiculous, especially since there's absolutely no help on the coding side of things. I have a nagging suspicion I'm going too far with this and that there's some sort of intermediate working solution I could be implementing, but I have no idea what that might be.

I think what I've been trying to do the past few hours is somewhat similar to what you're suggesting. Place the import code server-side so I can use Java IO, communicate with that method through a remote procedure call, have it return a data structure which then gets copied into the client-side data structure for further use. Problem being that I have absolutely no knowledge about servlets, the different GWT project files or anything, so it's extremely hard to avoid mistakes or debug in a way that isn't just randomly guessing what the fix might be.
On a purely personal note, I'd like to show Yellow the beauty of infinitely repeating Starcraft 2 bunkers. -Boxer
VyingsP
Profile Joined December 2011
France174 Posts
November 10 2013 23:16 GMT
#7767
On November 11 2013 07:31 Javadocs wrote:
Show nested quote +
On November 11 2013 07:06 Fawkes wrote:
As a design question, how would you guys go about putting this in a column in a sql db? If you had a form that had a question that said: check off as many that apply. The way I am thinking of putting it is just putting any checked off fields into the entry, but I can't seem to figure out if that is going to come back to haunt me or not...

So if I had options A, B, C, D and E...A and E were checked off, I was gonna put "A, E". I am just trying to figure out if there's anything I might regret if I try to query the table in the future.


A better solution would be to create a new table (if possible) with 2 columns, the user ID (or whatever links it back to the original table) and a choice column.

CREATE TABLE (
userID int not null, --FOREIGN KEY probably
questionChoice char(1) not null
)

Then just insert a row for each choice (if selected), so if they chose A and E, then there are two rows inserted (and returned) for that user ID.

That way, you don't have to parse a string, and have to deal with invalid strings.


Other possibility is to have both fields as foreign keys : userID and choiceID, and to create a new table with your options. This way you can use your choice table as the reference anywhere else it would be needed (might not be relevant in your case, just something to keep in mind if those options might be reused elsewhere).
Corrections of my bad english are much welcome
GeneralMrPiggy
Profile Joined November 2011
Netherlands2 Posts
November 10 2013 23:27 GMT
#7768
On November 11 2013 07:49 DeltaX wrote:
I don't know that much about sql design, but some other options would be:

1. Have a column for each entry. This feels a bit messy and I would assume there is something that makes this bad, I just don't know it.

2. Store the options as a number with each bit representing one choice. IE, if they chose A and C, that is 101 aka 5 that you would store, then write some methods somewhere to encode/decode the options. This might be a bit complicated for whatever your application is, but i think it would work out well.

I don't like the idea of doing it with strings.



If it were a form with a fairly limited amount of options that are not going to change I would say option 1 is a fine option. The issue a lot of the time is when you want to change or add options.

As for option 2. In my opinion it makes it unnecessarily difficult, instead I would go for the option as suggested by Javadocs to create a table holding a record for each user id / choice combination. This would give the same flexibility as having a bit for each option without having to do encoding and decoding of the options.
The essence of failure is me
ArchmageKruzer
Profile Joined August 2013
64 Posts
November 11 2013 02:18 GMT
#7769
For science fair this year, one of my friends is trying to build a program to compare frequencies of chunks of various DNA codes (quite personally I don't really understand it myself, but it's basically you get ~ one million dna bases, and you pick out how many AGTGGACA are in there, rinse and repeat for a ton more chunks). So the obvious way is to just run a loop and compare the data, but that would take a long time as I understand it. Is there a more effective way to do this? (btw, I am really bad at coding. I am extremely good at logic stuff, but idk much syntax and terms and shit. i.e I'm in regular high school programming learning about java. we just got past karel, and are in the middle of if statements) please try not to use too much complicated syntax, or if you do, give me some sort of reference sheet so that I can look at it while I read you post. Ty!
bangsholt
Profile Joined June 2011
Denmark138 Posts
November 11 2013 02:24 GMT
#7770
Is it something you can precompute or do you need to do it on the spot? If you don't need to do on the spot, then do it whatever way you know, then try to improve it by thinking a bit about where you can do "smart" things - implement them, then rerun with some simple benchmarks and you've suddenly learned a lot

In that way, it actually doesn't matter if you *can* precompute or not, as long as you can get some sample data to work with.
Fawkes
Profile Blog Joined May 2010
Canada1935 Posts
November 11 2013 02:47 GMT
#7771
I know this is bad practice, but it's not my design and I rather not argue.

If we had a table where the fields are like (num_id, firstname, lastname), num_id is just an incrementing number based on entries in this table...what's a query I can use to get the biggest num_id so far used?

Also can someone tell me what happens in this code block:


while ($myrow = mysql_fetch_array($result)) {
//does something with $myrow
}


$result is the result of a sql query.
How does the condition for the loop work? Am I understanding it right that when it reaches past the last row, mysql_fetch_array returns false...so $myrow = false would fail the loop? I didn't know this would break the condition of the loop. I never actually tried anything like this before...
Taeyeon ~ Jennie ~ Seulgi ~ Irene @Fawkes711
Rotodyne
Profile Blog Joined July 2005
United States2263 Posts
November 11 2013 02:49 GMT
#7772
On November 11 2013 07:30 sluggaslamoo wrote:
Show nested quote +
On November 09 2013 08:29 Rotodyne wrote:
Hey guys, over the last year I have been teaching myself a bunch of web programming stuff (php, javascript, html, css), but I still really just use a programming technique called "get shit done", in the short term this has been useful, but I usually just begin coding projects and figure it out as I go along. Specifically I know I need to learn OO programming.

My question is if I should use PHP to learn OO, or should I use something else? I have heard that PHP isn't a good way to learn because objects were added as sort of an afterthought. But what do I know.


The best way is not to learn a language but go read some books

Read books on responsibility driven design and OOP. Writing OO in PHP gives me a headache though.

Object Design by Wirfs-Brock & Mckean is one I'd recommend for starters. It is a small and concise book that will teach you the mindset required behind RRD, there's no code, just UML, but that's why its so good IMO.

RRD is a fundamental of OO, you can know all the OOP in the world, but without RRD you will just write rubbish code.

The most important thing is just how to write clean structured code in PHP as you don't have any fancy features. Fat Models, thin Controllers, break as many things down into small re-useable functions as you can (functional decomposition), etc.

If you have any functions that are longer than 10 lines seriously have a look at them and see if you can't break them down. Most of my functions are 1-3 (ruby) lines long, this is due to functional programming though, I'd say for PHP they should float.


Thanks a lot! I had started a book about PHP OOP but it wasn't really doing it for me. I'll try that one out for for sure.
I can only play starcraft when I am shit canned. IPXZERG is a god.
Zocat
Profile Joined April 2010
Germany2229 Posts
November 11 2013 04:11 GMT
#7773
On November 11 2013 11:18 ArchmageKruzer wrote:
For science fair this year, one of my friends is trying to build a program to compare frequencies of chunks of various DNA codes (quite personally I don't really understand it myself, but it's basically you get ~ one million dna bases, and you pick out how many AGTGGACA are in there, rinse and repeat for a ton more chunks). So the obvious way is to just run a loop and compare the data, but that would take a long time as I understand it. Is there a more effective way to do this? (btw, I am really bad at coding. I am extremely good at logic stuff, but idk much syntax and terms and shit. i.e I'm in regular high school programming learning about java. we just got past karel, and are in the middle of if statements) please try not to use too much complicated syntax, or if you do, give me some sort of reference sheet so that I can look at it while I read you post. Ty!


For high school stuff you should probably look at this:
http://en.wikipedia.org/wiki/String_searching_algorithm
and pick something which seems good for you.
KaiserJohan
Profile Joined May 2010
Sweden1808 Posts
Last Edited: 2013-11-11 08:12:57
November 11 2013 08:11 GMT
#7774
On November 11 2013 11:47 Fawkes wrote:
I know this is bad practice, but it's not my design and I rather not argue.

If we had a table where the fields are like (num_id, firstname, lastname), num_id is just an incrementing number based on entries in this table...what's a query I can use to get the biggest num_id so far used?

Also can someone tell me what happens in this code block:

Show nested quote +

while ($myrow = mysql_fetch_array($result)) {
//does something with $myrow
}


$result is the result of a sql query.
How does the condition for the loop work? Am I understanding it right that when it reaches past the last row, mysql_fetch_array returns false...so $myrow = false would fail the loop? I didn't know this would break the condition of the loop. I never actually tried anything like this before...


'$myrow' is assigned the result of 'mysql_fetch_array()' before '$myrow' is evaluated as the loop condition.
...
while ($myrow = mysql_fetch_array($result)) =>
while ($myrow = false) =>
while (false)
England will fight to the last American
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2013-11-11 14:09:08
November 11 2013 14:08 GMT
#7775
I'm going to ask again as it remained unanswered.

If you have:

Java:
public class BlahBlah extends Thread

or C++
class BlahBlah: public Thread
(let's assume that's C++ STL class)
or Objective-C
class BlahBlah: NSThread
(pretend you have such a class that comes from Apple)

Do you need to show this inheritance on a class diagram if it's a class from standard library? I understand you need to do for a CustomClass2 that inherits CustomClass1 but what about the case above?
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
November 11 2013 14:27 GMT
#7776
If you have a rock solid definition of "class diagram" that you have to follow, then follow it. Most likely you don't, and you only should add relevant information to the diagram to avoid unnecessary clutter. Ask yourself if it is relevant that you inherit from Thread for what the diagram is supposed to describe.
If you have a good reason to disagree with the above, please tell me. Thank you.
Tobberoth
Profile Joined August 2010
Sweden6375 Posts
November 11 2013 15:51 GMT
#7777
On November 11 2013 23:08 darkness wrote:
I'm going to ask again as it remained unanswered.

If you have:

Java:
public class BlahBlah extends Thread

or C++
class BlahBlah: public Thread
(let's assume that's C++ STL class)
or Objective-C
class BlahBlah: NSThread
(pretend you have such a class that comes from Apple)

Do you need to show this inheritance on a class diagram if it's a class from standard library? I understand you need to do for a CustomClass2 that inherits CustomClass1 but what about the case above?

I don't think it's customary. I mean, in C# for example, all classes inherit from Object, but you don't actually write out Object in the class diagram. I would just write BlahBlah : Thread as the name of the class to make it clear that it has functionality not shown in the class diagram, but I wouldn't actually include the Thread class.
Yoshi-
Profile Joined October 2008
Germany10227 Posts
November 11 2013 16:52 GMT
#7778
On November 11 2013 07:30 sluggaslamoo wrote:

If you have any functions that are longer than 10 lines seriously have a look at them and see if you can't break them down. Most of my functions are 1-3 (ruby) lines long, this is due to functional programming though, I'd say for PHP they should float between 3 to 5 lines on average.


Yea that is bullshit
I all up for splitting code into smaller part, but saying that you should average between 3 to 5 lines is just ridiculous
ferdkuh
Profile Joined January 2013
10 Posts
November 11 2013 17:13 GMT
#7779
On November 11 2013 11:18 ArchmageKruzer wrote:
For science fair this year, one of my friends is trying to build a program to compare frequencies of chunks of various DNA codes (quite personally I don't really understand it myself, but it's basically you get ~ one million dna bases, and you pick out how many AGTGGACA are in there, rinse and repeat for a ton more chunks). So the obvious way is to just run a loop and compare the data, but that would take a long time as I understand it. Is there a more effective way to do this? (btw, I am really bad at coding. I am extremely good at logic stuff, but idk much syntax and terms and shit. i.e I'm in regular high school programming learning about java. we just got past karel, and are in the middle of if statements) please try not to use too much complicated syntax, or if you do, give me some sort of reference sheet so that I can look at it while I read you post. Ty!


I think a nice way to do this would be this using something similar to this: http://en.wikipedia.org/wiki/Suffix_tree

You can find/count common sequences quite easy and fast and it is reasonably simple to implement.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
Last Edited: 2013-11-11 17:23:23
November 11 2013 17:23 GMT
#7780
Breaking code up into smaller parts only makes sense if you can come up with good names for these parts. If you functions are small but their names don't clearly describe what they do, you made your code worse by splitting it up.
If you have a good reason to disagree with the above, please tell me. Thank you.
Prev 1 387 388 389 390 391 1032 Next
Please log in or register to reply.
Live Events Refresh
Replay Cast
00:00
2026 GSL Season 1: Qualifiers
CranKy Ducklings144
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
PiGStarcraft342
RuFF_SC2 197
Nina 89
ROOTCatZ 10
StarCraft: Brood War
GuemChi 5923
ProTech21
Dota 2
monkeys_forever432
NeuroSwarm149
LuMiX1
League of Legends
Doublelift3644
JimRising 624
Counter-Strike
tarik_tv4025
Coldzera 1842
taco 947
Super Smash Bros
hungrybox1432
Other Games
summit1g10060
Artosis473
C9.Mang0443
ViBE139
Maynarde111
Trikslyr60
Mew2King27
Organizations
Other Games
gamesdonequick1138
BasetradeTV111
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 16 non-featured ]
StarCraft 2
• Hupsaiya 36
• intothetv
• AfreecaTV YouTube
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• Azhi_Dahaki22
• RayReign 19
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Lourlo386
• Rush304
• Stunt115
Upcoming Events
The PondCast
7h 3m
KCM Race Survival
7h 3m
WardiTV Map Contest Tou…
8h 3m
Gerald vs herO
Clem vs Cure
ByuN vs Solar
Rogue vs MaxPax
ShoWTimE vs TBD
OSC
12h 3m
CranKy Ducklings
21h 3m
Escore
1d 7h
RSL Revival
1d 14h
Replay Cast
1d 21h
WardiTV Map Contest Tou…
2 days
Universe Titan Cup
2 days
Rogue vs Percival
[ Show More ]
Ladder Legends
2 days
uThermal 2v2 Circuit
2 days
BSL
2 days
Sparkling Tuna Cup
3 days
WardiTV Map Contest Tou…
3 days
Ladder Legends
3 days
BSL
3 days
Replay Cast
3 days
Replay Cast
4 days
Wardi Open
4 days
Afreeca Starleague
4 days
Soma vs hero
Monday Night Weeklies
4 days
Replay Cast
4 days
Afreeca Starleague
5 days
Leta vs YSC
Replay Cast
6 days
Replay Cast
6 days
Liquipedia Results

Completed

Proleague 2026-04-22
RSL Revival: Season 4
NationLESS Cup

Ongoing

BSL Season 22
ASL Season 21
CSL 2026 SPRING (S20)
IPSL Spring 2026
KCM Race Survival 2026 Season 2
StarCraft2 Community Team League 2026 Spring
WardiTV TLMC #16
Nations Cup 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
IEM Kraków 2026

Upcoming

Escore Tournament S2: W4
Acropolis #4
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
RSL Revival: Season 5
2026 GSL S1
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
BLAST Rivals Spring 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.