• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 10:29
CET 16:29
KST 00:29
  • 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
TL.net Map Contest #21: Winners11Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10[ASL20] Finals Preview: Arrival13TL.net Map Contest #21: Voting12[ASL20] Ro4 Preview: Descent11
Community News
[TLMC] Fall/Winter 2025 Ladder Map Rotation6Weekly Cups (Nov 3-9): Clem Conquers in Canada4SC: Evo Complete - Ranked Ladder OPEN ALPHA8StarCraft, SC2, HotS, WC3, Returning to Blizzcon!45$5,000+ WardiTV 2025 Championship7
StarCraft 2
General
[TLMC] Fall/Winter 2025 Ladder Map Rotation Mech is the composition that needs teleportation t Weekly Cups (Nov 3-9): Clem Conquers in Canada Craziest Micro Moments Of All Time? SC: Evo Complete - Ranked Ladder OPEN ALPHA
Tourneys
Constellation Cup - Main Event - Stellar Fest Tenacious Turtle Tussle Sparkling Tuna Cup - Weekly Open Tournament $5,000+ WardiTV 2025 Championship Merivale 8 Open - LAN - Stellar Fest
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 499 Chilling Adaptation Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened Mutation # 496 Endless Infection
Brood War
General
BW General Discussion FlaSh on: Biggest Problem With SnOw's Playstyle Terran 1:35 12 Gas Optimization BGH Auto Balance -> http://bghmmr.eu/ [ASL20] Ask the mapmakers — Drop your questions
Tourneys
[BSL21] RO32 Group D - Sunday 21:00 CET [BSL21] RO32 Group C - Saturday 21:00 CET [ASL20] Grand Finals [Megathread] Daily Proleagues
Strategy
Current Meta PvZ map balance How to stay on top of macro? Soma's 9 hatch build from ASL Game 2
Other Games
General Games
EVE Corporation Nintendo Switch Thread Stormgate/Frost Giant Megathread Should offensive tower rushing be viable in RTS games? Path of Exile
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
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
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine Canadian Politics Mega-thread The Games Industry And ATVI
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
[Manga] One Piece Anime Discussion Thread Movie Discussion! Korean Music Discussion Series you have seen recently...
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List
Blogs
Dyadica Gospel – a Pulp No…
Hildegard
Coffee x Performance in Espo…
TrAiDoS
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Reality "theory" prov…
perfectspheres
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1235 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
Poland17429 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
Spain18114 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
Poland17429 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
Poland17429 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
Spain18114 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
Spain18114 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
Poland17429 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
Spain18114 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
Poland17429 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
Poland17429 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
OSC
11:30
Mid Season Playoffs
Krystianer vs PercivalLIVE!
WardiTV1063
TKL 199
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
TKL 199
SteadfastSC 109
Rex 91
StarCraft: Brood War
Calm 3367
Bisu 2918
Rain 2430
Hyuk 1473
Horang2 984
Flash 514
Soma 498
Stork 393
Rush 303
Soulkey 121
[ Show more ]
Backho 114
Barracks 58
sas.Sziky 46
hero 38
Aegong 27
zelot 22
sSak 21
Terrorterran 20
Rock 19
Killer 16
Dota 2
Gorgc3152
qojqva2018
Dendi1105
BananaSlamJamma123
XcaliburYe100
Other Games
hiko638
Sick526
DeMusliM442
Hui .346
Fuzer 199
Mew2King94
QueenE50
Organizations
StarCraft: Brood War
Kim Chul Min (afreeca) 9
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 16 non-featured ]
StarCraft 2
• poizon28 22
• intothetv
• AfreecaTV YouTube
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• HerbMon 10
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• C_a_k_e 3021
• WagamamaTV453
League of Legends
• Nemesis4037
• TFBlade977
Upcoming Events
Tenacious Turtle Tussle
7h 31m
The PondCast
18h 31m
RSL Revival
18h 31m
Solar vs Zoun
MaxPax vs Bunny
Kung Fu Cup
20h 31m
WardiTV Korean Royale
20h 31m
PiGosaur Monday
1d 9h
RSL Revival
1d 18h
Classic vs Creator
Cure vs TriGGeR
Kung Fu Cup
1d 20h
CranKy Ducklings
2 days
RSL Revival
2 days
herO vs Gerald
ByuN vs SHIN
[ Show More ]
Kung Fu Cup
2 days
IPSL
3 days
ZZZero vs rasowy
Napoleon vs KameZerg
BSL 21
3 days
Tarson vs Julia
Doodle vs OldBoy
eOnzErG vs WolFix
StRyKeR vs Aeternum
Sparkling Tuna Cup
3 days
RSL Revival
3 days
Reynor vs sOs
Maru vs Ryung
Kung Fu Cup
3 days
WardiTV Korean Royale
3 days
BSL 21
4 days
JDConan vs Semih
Dragon vs Dienmax
Tech vs NewOcean
TerrOr vs Artosis
IPSL
4 days
Dewalt vs WolFix
eOnzErG vs Bonyth
Wardi Open
4 days
Monday Night Weeklies
5 days
WardiTV Korean Royale
5 days
The PondCast
6 days
Liquipedia Results

Completed

Proleague 2025-11-07
Stellar Fest: Constellation Cup
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
YSL S2
BSL Season 21
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual

Upcoming

SLON Tour Season 2
BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
RSL Revival: Season 3
META Madness #9
BLAST Bounty Winter 2026
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
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 © 2025 TLnet. All Rights Reserved.