• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 08:49
CEST 14:49
KST 21:49
  • 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
Team Liquid Map Contest #22 - The Finalists14[ASL21] Ro16 Preview Pt1: Fresh Flow9[ASL21] Ro24 Preview Pt2: News Flash10[ASL21] Ro24 Preview Pt1: New Chaos0Team Liquid Map Contest #22 - Presented by Monster Energy21
Community News
2026 GSL Season 1 Qualifiers11Maestros of the Game 2 announced32026 GSL Tour plans announced11Weekly Cups (April 6-12): herO doubles, "Villains" prevail1MaNa leaves Team Liquid22
StarCraft 2
General
MaNa leaves Team Liquid 2026 GSL Tour plans announced Team Liquid Map Contest #22 - The Finalists Weekly Cups (April 6-12): herO doubles, "Villains" prevail Oliveira Would Have Returned If EWC Continued
Tourneys
Sparkling Tuna Cup - Weekly Open Tournament GSL CK: More events planned pending crowdfunding 2026 GSL Season 1 Qualifiers Master Swan Open (Global Bronze-Master 2) SEL Doubles (SC Evo Bimonthly)
Strategy
Custom Maps
[D]RTS in all its shapes and glory <3 [A] Nemrods 1/4 players [M] (2) Frigid Storage
External Content
Mutation # 521 Memorable Boss The PondCast: SC2 News & Results Mutation # 520 Moving Fees Mutation # 519 Inner Power
Brood War
General
ASL21 General Discussion BGH Auto Balance -> http://bghmmr.eu/ Gypsy to Korea Pros React To: Tulbo in Ro.16 Group A Data needed
Tourneys
Escore Tournament StarCraft Season 2 [Megathread] Daily Proleagues [ASL21] Ro16 Group A [ASL21] Ro16 Group B
Strategy
Simple Questions, Simple Answers What's the deal with APM & what's its true value Any training maps people recommend? Fighting Spirit mining rates
Other Games
General Games
Nintendo Switch Thread General RTS Discussion Thread Battle Aces/David Kim RTS Megathread Stormgate/Frost Giant Megathread Starcraft Tabletop Miniature Game
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 Russo-Ukrainian War Thread YouTube Thread Canadian Politics Mega-thread
Fan Clubs
The IdrA Fan Club
Media & Entertainment
Anime Discussion Thread [Req][Books] Good Fantasy/SciFi books [Manga] One Piece Movie Discussion!
Sports
2024 - 2026 Football Thread McBoner: A hockey love story Formula 1 Discussion Cricket [SPORT]
World Cup 2022
Tech Support
[G] How to Block Livestream Ads
TL Community
The Automated Ban List
Blogs
Reappraising The Situation T…
TrAiDoS
lurker extra damage testi…
StaticNine
Broowar part 2
qwaykee
Funny Nicknames
LUCKY_NOOB
Iranian anarchists: organize…
XenOsky
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2159 users

The Big Programming Thread - Page 652

Forum Index > General Forum
Post a Reply
Prev 1 650 651 652 653 654 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.
Manit0u
Profile Blog Joined August 2004
Poland17727 Posts
Last Edited: 2015-07-20 16:14:01
July 20 2015 16:13 GMT
#13021
On July 21 2015 00:10 bangsholt wrote:
Show nested quote +
On July 18 2015 17:32 Manit0u wrote:

As a bonus, I present you with this most interesting study regarding DB performance when storing dates and times (tldr: never use timestamps in your db).


It's a bit of a strong tl;dr for a study made in 2009 using a beta build of MySQL, with the database that doesn't implement foreign keys

Doesn't it as always depend on what the usage is?


Yeah, but it shows that timestamp fields are super slow to parse for some reason. Unless it changed but I couldn't really find any more recent studies on the subject.

As a sidenote, do you guys also hate encountering stuff like that in the code? (turned example into pseudocode for readability)


i = j = 0;
results = [];
num1 = count(arr1);
num2 = count(arr2);
target_number = num1 + num2;

for (k = 0, k < target_number, k++) {
if (i >= num1) {
append arr2[j] to results;

j++;
} elseif (j > num2) {
append arr1[i] to results;

i++;
} elseif (arr1[i] > arr2[j]) {
append arr1[i] to results;

i++;
} else {
append arr2[j] to results;

j++;
}
}


I cringe every time
Time is precious. Waste it wisely.
Acrofales
Profile Joined August 2010
Spain18265 Posts
July 20 2015 17:29 GMT
#13022
On July 21 2015 01:13 Manit0u wrote:
Show nested quote +
On July 21 2015 00:10 bangsholt wrote:
On July 18 2015 17:32 Manit0u wrote:

As a bonus, I present you with this most interesting study regarding DB performance when storing dates and times (tldr: never use timestamps in your db).


It's a bit of a strong tl;dr for a study made in 2009 using a beta build of MySQL, with the database that doesn't implement foreign keys

Doesn't it as always depend on what the usage is?


Yeah, but it shows that timestamp fields are super slow to parse for some reason. Unless it changed but I couldn't really find any more recent studies on the subject.

As a sidenote, do you guys also hate encountering stuff like that in the code? (turned example into pseudocode for readability)


i = j = 0;
results = [];
num1 = count(arr1);
num2 = count(arr2);
target_number = num1 + num2;

for (k = 0, k < target_number, k++) {
if (i >= num1) {
append arr2[j] to results;

j++;
} elseif (j > num2) {
append arr1[i] to results;

i++;
} elseif (arr1[i] > arr2[j]) {
append arr1[i] to results;

i++;
} else {
append arr2[j] to results;

j++;
}
}


I cringe every time


At the risk of sounding stupid, I hope you are cringing at the terrible variable names, and the use of an unnecessary counter variable k in order to use a for-loop instead of doing that in a, far more intuitive, while loop? Other than that, I don't see too much wrong with that code. Sure, the first two if statements can be made more efficient and break out of the loop immediately, but it's not a big deal and I see worse stuff than that minor inefficiency (if it even is inefficient: depends on your language) every day.
Manit0u
Profile Blog Joined August 2004
Poland17727 Posts
Last Edited: 2015-07-20 22:31:51
July 20 2015 22:25 GMT
#13023
It's not really about efficiency. It's about readability. If I'm browsing code I'd like to understand what it does just by skimming over it most of the time. When I have to pause and start to scratch my head trying to figure out when and how 3 different single-letter incrementation variables in a single loop are set, what they do and if this can potentially break things (since you're working with array indices) it's not that great. Notice that in the example above the code does exactly the same thing for two different elseif blocks. If and else blocks also produce the same code. Why is that? Obviously the person who coded it had a good reason to introduce another block instead of simply adding an OR check in the previous one, but there's no comment and nothing in the code itself to indicate why it's so special. It's lazy.
Time is precious. Waste it wisely.
RoyGBiv_13
Profile Blog Joined August 2010
United States1275 Posts
July 20 2015 22:41 GMT
#13024
On July 21 2015 01:13 Manit0u wrote:
Show nested quote +
On July 21 2015 00:10 bangsholt wrote:
On July 18 2015 17:32 Manit0u wrote:

As a bonus, I present you with this most interesting study regarding DB performance when storing dates and times (tldr: never use timestamps in your db).


It's a bit of a strong tl;dr for a study made in 2009 using a beta build of MySQL, with the database that doesn't implement foreign keys

Doesn't it as always depend on what the usage is?


Yeah, but it shows that timestamp fields are super slow to parse for some reason. Unless it changed but I couldn't really find any more recent studies on the subject.

As a sidenote, do you guys also hate encountering stuff like that in the code? (turned example into pseudocode for readability)


i = j = 0;
results = [];
num1 = count(arr1);
num2 = count(arr2);
target_number = num1 + num2;

for (k = 0, k < target_number, k++) {
if (i >= num1) {
append arr2[j] to results;

j++;
} elseif (j > num2) {
append arr1[i] to results;

i++;
} elseif (arr1[i] > arr2[j]) {
append arr1[i] to results;

i++;
} else {
append arr2[j] to results;

j++;
}
}


I cringe every time



It really seems pretty fine to me. Took maybe 30 seconds of code reading to understand what it's trying to do, and the variable names are about as expressive as you get with such a generic algorithm. Am I missing something? I'm assuming that the translation to psuedocode has lost some of the impact from what PHP or Java could have made this to look like.
Any sufficiently advanced technology is indistinguishable from magic
Manit0u
Profile Blog Joined August 2004
Poland17727 Posts
Last Edited: 2015-07-21 00:56:29
July 21 2015 00:55 GMT
#13025
I admit that turning it into pseudocode makes it much easier to read, especially that you don't have some long method chains in there that do basically what I've written out here in the end (not to mention misleading variable names apart from i,j,k).
Time is precious. Waste it wisely.
Acrofales
Profile Joined August 2010
Spain18265 Posts
July 21 2015 01:44 GMT
#13026
On July 21 2015 07:25 Manit0u wrote:
It's not really about efficiency. It's about readability. If I'm browsing code I'd like to understand what it does just by skimming over it most of the time. When I have to pause and start to scratch my head trying to figure out when and how 3 different single-letter incrementation variables in a single loop are set, what they do and if this can potentially break things (since you're working with array indices) it's not that great. Notice that in the example above the code does exactly the same thing for two different elseif blocks. If and else blocks also produce the same code. Why is that? Obviously the person who coded it had a good reason to introduce another block instead of simply adding an OR check in the previous one, but there's no comment and nothing in the code itself to indicate why it's so special. It's lazy.

Yeah, that´s what I thought. With more intuitive variable names, and the use of a more intuitive while loop instead of a for loop:

while i + j < totalSize {
doStuff()
}


That code would be completely fine. Especially if you found it in its own method called mergeSortedArrays(arr1, arr2) or something else intuitive like that. If that code was tucked in the middle of some other bigger method without any comment, it could cause some headscratching.
Sufficiency
Profile Blog Joined October 2010
Canada23833 Posts
July 21 2015 20:37 GMT
#13027
Hi TL,

Suppose I want to make a website - say it's sort of like Google in the sense that it has the following components:

1. A front page that has a textbox; the user can enter some stuff which returns and displays some results from my database.
2. A backend which collects information for my database

But I have no knowledge of web development whatsoever (I do know how to code and use SQL, however). What would you suggest I look into to learn?
https://twitter.com/SufficientStats
Acrofales
Profile Joined August 2010
Spain18265 Posts
July 21 2015 21:06 GMT
#13028
On July 22 2015 05:37 Sufficiency wrote:
Hi TL,

Suppose I want to make a website - say it's sort of like Google in the sense that it has the following components:

1. A front page that has a textbox; the user can enter some stuff which returns and displays some results from my database.
2. A backend which collects information for my database

But I have no knowledge of web development whatsoever (I do know how to code and use SQL, however). What would you suggest I look into to learn?

Despite my hatred for PHP and my intense desire to recommend neat solutions like Ruby on Rails, I think you should just pick up any old tutorial on Linux-Apache-MySQL-PHP (LAMP) and go from there.
Manit0u
Profile Blog Joined August 2004
Poland17727 Posts
Last Edited: 2015-07-21 21:13:12
July 21 2015 21:06 GMT
#13029
On July 22 2015 05:37 Sufficiency wrote:
Hi TL,

Suppose I want to make a website - say it's sort of like Google in the sense that it has the following components:

1. A front page that has a textbox; the user can enter some stuff which returns and displays some results from my database.
2. A backend which collects information for my database

But I have no knowledge of web development whatsoever (I do know how to code and use SQL, however). What would you suggest I look into to learn?


So, all you want is an input field on your page linked to a back-end algorithm that fetches data from the database?

On July 22 2015 06:06 Acrofales wrote:
Despite my hatred for PHP and my intense desire to recommend neat solutions like Ruby on Rails, I think you should just pick up any old tutorial on Linux-Apache-MySQL-PHP (LAMP) and go from there.


While such a solution would indeed be the simplest, I think that for this endavour Angular would be much more elegant while still being rather simple (since you only have one view and don't have to worry about a gazillion things usually involved in websites like user management and such) - despite my hatred for JS in the back-end.
Time is precious. Waste it wisely.
Sufficiency
Profile Blog Joined October 2010
Canada23833 Posts
Last Edited: 2015-07-21 21:37:10
July 21 2015 21:28 GMT
#13030
I should add that instead of the "simplest" solution, I am also very much open to learning something that is "popular" or "cutting-edge", if you know what I mean. Java(script) or Python are highly preferred.

On July 22 2015 06:06 Manit0u wrote:
Show nested quote +
On July 22 2015 05:37 Sufficiency wrote:
Hi TL,

Suppose I want to make a website - say it's sort of like Google in the sense that it has the following components:

1. A front page that has a textbox; the user can enter some stuff which returns and displays some results from my database.
2. A backend which collects information for my database

But I have no knowledge of web development whatsoever (I do know how to code and use SQL, however). What would you suggest I look into to learn?


So, all you want is an input field on your page linked to a back-end algorithm that fetches data from the database?

Show nested quote +
On July 22 2015 06:06 Acrofales wrote:
Despite my hatred for PHP and my intense desire to recommend neat solutions like Ruby on Rails, I think you should just pick up any old tutorial on Linux-Apache-MySQL-PHP (LAMP) and go from there.


While such a solution would indeed be the simplest, I think that for this endavour Angular would be much more elegant while still being rather simple (since you only have one view and don't have to worry about a gazillion things usually involved in websites like user management and such) - despite my hatred for JS in the back-end.


Yes, in the simplest term "input field on your page linked to a back-end algorithm that fetches data from the database" what I am leading towards right now. This by itself is already a highly ambitious project.
https://twitter.com/SufficientStats
RoyGBiv_13
Profile Blog Joined August 2010
United States1275 Posts
July 21 2015 22:50 GMT
#13031
On July 22 2015 06:28 Sufficiency wrote:
I should add that instead of the "simplest" solution, I am also very much open to learning something that is "popular" or "cutting-edge", if you know what I mean. Java(script) or Python are highly preferred.

Show nested quote +
On July 22 2015 06:06 Manit0u wrote:
On July 22 2015 05:37 Sufficiency wrote:
Hi TL,

Suppose I want to make a website - say it's sort of like Google in the sense that it has the following components:

1. A front page that has a textbox; the user can enter some stuff which returns and displays some results from my database.
2. A backend which collects information for my database

But I have no knowledge of web development whatsoever (I do know how to code and use SQL, however). What would you suggest I look into to learn?


So, all you want is an input field on your page linked to a back-end algorithm that fetches data from the database?

On July 22 2015 06:06 Acrofales wrote:
Despite my hatred for PHP and my intense desire to recommend neat solutions like Ruby on Rails, I think you should just pick up any old tutorial on Linux-Apache-MySQL-PHP (LAMP) and go from there.


While such a solution would indeed be the simplest, I think that for this endavour Angular would be much more elegant while still being rather simple (since you only have one view and don't have to worry about a gazillion things usually involved in websites like user management and such) - despite my hatred for JS in the back-end.


Yes, in the simplest term "input field on your page linked to a back-end algorithm that fetches data from the database" what I am leading towards right now. This by itself is already a highly ambitious project.


LAMP for popularity and overall availability of tools/materials to learn. You could theoretically finish a tutorial teaching you how to build LAMP in a couple of hours and have the site you're after.

Python+Django (Django is a library that works as a webserver) if you are comfortable in python, Django isn't a big leap, and is pretty fun. There are some accessible tutorials out there that would have a site like yours ready to go at the completion of it. It is heavily used for page templates.

Ruby on Rails is about as accessible as Django, and a lot of people love it so it has a flourishing ecosystem. Much like python, simply importing the right gem can add a new feature to your webserver. Programming in Ruby feels like Magic in that sense.

Javascript (probably Node.js in your case) also has webservers written in it that could do what you want. If you already have a good handle on Javascript, I'd go with this, otherwise I feel LAMP/Django/RoR have a better ecosystem around them.
Any sufficiently advanced technology is indistinguishable from magic
Sufficiency
Profile Blog Joined October 2010
Canada23833 Posts
July 21 2015 22:59 GMT
#13032
Thank you all for your responses. I think I'll try Django first and see how that goes (I learned Python recently and I am itchy to use more Python). If it's not to my liking I'll go around and try the ones that uses Javascripts. I think I'll probably steer clear of LAMP for now unless I find the other options insufficient or hard to use.
https://twitter.com/SufficientStats
RoyGBiv_13
Profile Blog Joined August 2010
United States1275 Posts
July 21 2015 23:40 GMT
#13033
On July 22 2015 07:59 Sufficiency wrote:
Thank you all for your responses. I think I'll try Django first and see how that goes (I learned Python recently and I am itchy to use more Python). If it's not to my liking I'll go around and try the ones that uses Javascripts. I think I'll probably steer clear of LAMP for now unless I find the other options insufficient or hard to use.


Probably the way to go. https://docs.djangoproject.com/en/1.8/intro/tutorial01/ will get you started
Any sufficiently advanced technology is indistinguishable from magic
Acrofales
Profile Joined August 2010
Spain18265 Posts
Last Edited: 2015-07-21 23:54:52
July 21 2015 23:54 GMT
#13034
Django seems quite a heavyhanded approach if all you want from it is a webserver and a little bit of a front-end/back-end distinction. Flask will do that just fine.

Not saying that Django isn't great, but it has lots of stuff that just doesn't seem necessary for the application in mind: don't need user management or all its ORM stuff, don't even really need the fancy template language (Flask has its own little template engine).

Here's some people doing the comparison: http://www.quora.com/Should-I-learn-Flask-or-Django

TLDR: Flask is tiny and easy. Django is big and has lots of bells and whistles. If you don't plan on using the bells and whistles, just use Flask.
Sufficiency
Profile Blog Joined October 2010
Canada23833 Posts
July 22 2015 00:20 GMT
#13035
Hmm OK. Flask -> Django -> *.js in that order. Thanks for the suggestion!
https://twitter.com/SufficientStats
Manit0u
Profile Blog Joined August 2004
Poland17727 Posts
July 22 2015 00:34 GMT
#13036
In case all else fails and for some reason you'd have to go back to LAMP, please use mini (mini2 preferably). At least you'll be using some good practices.
Time is precious. Waste it wisely.
falconfan02
Profile Blog Joined April 2011
United States231 Posts
July 22 2015 01:37 GMT
#13037
On July 22 2015 09:34 Manit0u wrote:
In case all else fails and for some reason you'd have to go back to LAMP, please use mini (mini2 preferably). At least you'll be using some good practices.


This is pretty cool. I've started to like MVC after learning Symfony, but it's a bit much for a smaller site I'm trying to build. Might have to give Mini a try.
Sufficiency
Profile Blog Joined October 2010
Canada23833 Posts
July 22 2015 05:53 GMT
#13038
So far so good....!

[image loading]

I think I'll do a bit more Flask for now.
https://twitter.com/SufficientStats
Manit0u
Profile Blog Joined August 2004
Poland17727 Posts
July 23 2015 08:24 GMT
#13039
On July 22 2015 14:53 Sufficiency wrote:
So far so good....!

[image loading]

I think I'll do a bit more Flask for now.


Will your app be called HAL by any means?
Time is precious. Waste it wisely.
sabas123
Profile Blog Joined December 2010
Netherlands3122 Posts
July 23 2015 11:18 GMT
#13040
On July 22 2015 07:50 RoyGBiv_13 wrote:
Show nested quote +
On July 22 2015 06:28 Sufficiency wrote:
I should add that instead of the "simplest" solution, I am also very much open to learning something that is "popular" or "cutting-edge", if you know what I mean. Java(script) or Python are highly preferred.

On July 22 2015 06:06 Manit0u wrote:
On July 22 2015 05:37 Sufficiency wrote:
Hi TL,

Suppose I want to make a website - say it's sort of like Google in the sense that it has the following components:

1. A front page that has a textbox; the user can enter some stuff which returns and displays some results from my database.
2. A backend which collects information for my database

But I have no knowledge of web development whatsoever (I do know how to code and use SQL, however). What would you suggest I look into to learn?


So, all you want is an input field on your page linked to a back-end algorithm that fetches data from the database?

On July 22 2015 06:06 Acrofales wrote:
Despite my hatred for PHP and my intense desire to recommend neat solutions like Ruby on Rails, I think you should just pick up any old tutorial on Linux-Apache-MySQL-PHP (LAMP) and go from there.


While such a solution would indeed be the simplest, I think that for this endavour Angular would be much more elegant while still being rather simple (since you only have one view and don't have to worry about a gazillion things usually involved in websites like user management and such) - despite my hatred for JS in the back-end.


Yes, in the simplest term "input field on your page linked to a back-end algorithm that fetches data from the database" what I am leading towards right now. This by itself is already a highly ambitious project.


LAMP for popularity and overall availability of tools/materials to learn. You could theoretically finish a tutorial teaching you how to build LAMP in a couple of hours and have the site you're after.

Python+Django (Django is a library that works as a webserver) if you are comfortable in python, Django isn't a big leap, and is pretty fun. There are some accessible tutorials out there that would have a site like yours ready to go at the completion of it. It is heavily used for page templates.

Ruby on Rails is about as accessible as Django, and a lot of people love it so it has a flourishing ecosystem. Much like python, simply importing the right gem can add a new feature to your webserver. Programming in Ruby feels like Magic in that sense.

Javascript (probably Node.js in your case) also has webservers written in it that could do what you want. If you already have a good handle on Javascript, I'd go with this, otherwise I feel LAMP/Django/RoR have a better ecosystem around them.

No love for asp .net?
The harder it becomes, the more you should focus on the basics.
Prev 1 650 651 652 653 654 1032 Next
Please log in or register to reply.
Live Events Refresh
WardiTV Map Contest Tou…
11:00
Group D
WardiTV841
IndyStarCraft 257
TKL 241
Rex100
3DClanTV 60
Liquipedia
Sparkling Tuna Cup
10:00
Weekly #128 (TLMC 22 Edition)
herO vs PercivalLIVE!
TBD vs ByuN
CranKy Ducklings172
herO (SOOP)43
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
IndyStarCraft 257
TKL 241
Rex 100
MindelVK 44
herO (SOOP) 43
Codebar 2
StarCraft: Brood War
Britney 33662
Calm 5668
Horang2 1817
ToSsGirL 1335
EffOrt 1001
NaDa 672
ggaemo 490
Mini 409
Mind 282
firebathero 247
[ Show more ]
BeSt 236
Soulkey 215
Last 197
Rush 170
Hyun 143
PianO 117
Killer 84
hero 55
[sc1f]eonzerg 49
Pusan 49
Sharp 48
Sea.KH 40
Movie 30
sSak 28
Shinee 25
yabsab 20
Hm[arnc] 20
soO 19
Noble 16
SilentControl 14
GoRush 12
IntoTheRainbow 12
Icarus 5
zelot 4
Dota 2
Gorgc5808
BananaSlamJamma30
Counter-Strike
zeus1776
x6flipin551
edward212
Super Smash Bros
Mew2King104
Heroes of the Storm
Khaldor303
Other Games
B2W.Neo2275
singsing1873
DeMusliM349
XaKoH 291
Mlord285
Pyrionflax210
Beastyqt41
Organizations
Dota 2
PGL Dota 2 - Main Stream12096
PGL Dota 2 - Secondary Stream1299
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 17 non-featured ]
StarCraft 2
• CranKy Ducklings SOOP7
• iHatsuTV 7
• Adnapsc2 6
• sooper7s
• Migwel
• LaughNgamezSOOP
• IndyKCrew
• Kozan
• intothetv
• AfreecaTV YouTube
StarCraft: Brood War
• FirePhoenix5
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Jankos2421
• TFBlade1249
• Nemesis533
Upcoming Events
Ladder Legends
2h 12m
IPSL
3h 12m
JDConan vs TBD
Aegong vs rasowy
BSL
6h 12m
StRyKeR vs rasowy
Artosis vs Aether
JDConan vs OyAji
Hawk vs izu
CranKy Ducklings
11h 12m
Replay Cast
20h 12m
Wardi Open
21h 12m
Afreeca Starleague
21h 12m
Bisu vs Ample
Jaedong vs Flash
Monday Night Weeklies
1d 3h
RSL Revival
1d 13h
Afreeca Starleague
1d 21h
Barracks vs Leta
Royal vs Light
[ Show More ]
WardiTV Map Contest Tou…
1d 22h
RSL Revival
2 days
Replay Cast
3 days
The PondCast
3 days
KCM Race Survival
3 days
WardiTV Map Contest Tou…
3 days
Replay Cast
4 days
Escore
4 days
RSL Revival
5 days
WardiTV Map Contest Tou…
5 days
Ladder Legends
6 days
uThermal 2v2 Circuit
6 days
BSL
6 days
Sparkling Tuna Cup
6 days
WardiTV Map Contest Tou…
6 days
Liquipedia Results

Completed

Escore Tournament S2: W3
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
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
IEM Atlanta 2026
Asian Champions League 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.