• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 01:00
CEST 07:00
KST 14:00
  • 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 TLMC #5 - Finalists & Open Tournaments0[ASL20] Ro16 Preview Pt2: Turbulence10Classic Games #3: Rogue vs Serral at BlizzCon9[ASL20] Ro16 Preview Pt1: Ascent10Maestros of the Game: Week 1/Play-in Preview12
Community News
Weekly Cups (Sept 8-14): herO & MaxPax split cups4WardiTV TL Team Map Contest #5 Tournaments1SC4ALL $6,000 Open LAN in Philadelphia8Weekly Cups (Sept 1-7): MaxPax rebounds & Clem saga continues29LiuLi Cup - September 2025 Tournaments3
StarCraft 2
General
#1: Maru - Greatest Players of All Time Weekly Cups (Sept 8-14): herO & MaxPax split cups Team Liquid Map Contest #21 - Presented by Monster Energy SpeCial on The Tasteless Podcast Team TLMC #5 - Finalists & Open Tournaments
Tourneys
Maestros of The Game—$20k event w/ live finals in Paris SC4ALL $6,000 Open LAN in Philadelphia Sparkling Tuna Cup - Weekly Open Tournament WardiTV TL Team Map Contest #5 Tournaments RSL: Revival, a new crowdfunded tournament series
Strategy
Custom Maps
External Content
Mutation # 491 Night Drive Mutation # 490 Masters of Midnight Mutation # 489 Bannable Offense Mutation # 488 What Goes Around
Brood War
General
[ASL20] Ro16 Preview Pt2: Turbulence BW General Discussion ASL20 General Discussion Diplomacy, Cosmonarchy Edition BGH Auto Balance -> http://bghmmr.eu/
Tourneys
[ASL20] Ro16 Group D [ASL20] Ro16 Group C [Megathread] Daily Proleagues SC4ALL $1,500 Open Bracket LAN
Strategy
Simple Questions, Simple Answers Muta micro map competition Fighting Spirit mining rates [G] Mineral Boosting
Other Games
General Games
Path of Exile Stormgate/Frost Giant Megathread General RTS Discussion Thread Nintendo Switch Thread Borderlands 3
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Canadian Politics Mega-thread Russo-Ukrainian War Thread The Big Programming Thread
Fan Clubs
The Happy Fan Club!
Media & Entertainment
Movie Discussion! [Manga] One Piece Anime Discussion Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion MLB/Baseball 2023
World Cup 2022
Tech Support
Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread High temperatures on bridge(s)
TL Community
BarCraft in Tokyo Japan for ASL Season5 Final The Automated Ban List
Blogs
The Personality of a Spender…
TrAiDoS
A very expensive lesson on ma…
Garnet
hello world
radishsoup
Lemme tell you a thing o…
JoinTheRain
RTS Design in Hypercoven
a11
Evil Gacha Games and the…
ffswowsucks
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1130 users

The Big Programming Thread - Page 652

Forum Index > General Forum
Post a Reply
Prev 1 650 651 652 653 654 1031 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
Poland17341 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
Spain18049 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
Poland17341 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
Poland17341 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
Spain18049 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
Spain18049 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
Poland17341 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
Spain18049 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
Poland17341 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
Poland17341 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 1031 Next
Please log in or register to reply.
Live Events Refresh
PiGosaur Monday
00:00
#49
Liquipedia
OSC
23:00
OSC Elite Rising Star #16
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
WinterStarcraft556
StarCraft: Brood War
Leta 533
Noble 51
ajuk12(nOOB) 43
Icarus 10
Dota 2
NeuroSwarm138
Counter-Strike
Stewie2K448
semphis_45
Super Smash Bros
Mew2King40
Other Games
summit1g4980
C9.Mang0320
XaKoH 150
ViBE142
SortOf52
Trikslyr34
trigger0
Organizations
Other Games
gamesdonequick684
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• OhrlRock 91
• intothetv
• AfreecaTV YouTube
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Lourlo1125
• Rush1120
• Stunt434
Other Games
• Scarra1215
Upcoming Events
LiuLi Cup
6h
OSC
14h
RSL Revival
1d 5h
Maru vs Reynor
Cure vs TriGGeR
The PondCast
1d 8h
RSL Revival
2 days
Zoun vs Classic
Korean StarCraft League
2 days
BSL Open LAN 2025 - War…
3 days
RSL Revival
3 days
BSL Open LAN 2025 - War…
4 days
RSL Revival
4 days
[ Show More ]
Online Event
4 days
Wardi Open
5 days
Sparkling Tuna Cup
6 days
Liquipedia Results

Completed

Proleague 2025-09-10
Chzzk MurlocKing SC1 vs SC2 Cup #2
HCC Europe

Ongoing

BSL 20 Team Wars
KCM Race Survival 2025 Season 3
BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
LASL Season 20
RSL Revival: Season 2
Maestros of the Game
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1

Upcoming

2025 Chongqing Offline CUP
BSL World Championship of Poland 2025
IPSL Winter 2025-26
BSL Season 21
SC4ALL: Brood War
BSL 21 Team A
Stellar Fest
SC4ALL: StarCraft II
EC S1
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
MESA Nomadic Masters Fall
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 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.