• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 09:01
CEST 15:01
KST 22:01
  • 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
[ASL19] Finals Recap: Standing Tall9HomeStory Cup 27 - Info & Preview18Classic wins Code S Season 2 (2025)16Code S RO4 & Finals Preview: herO, Rogue, Classic, GuMiho0TL Team Map Contest #5: Presented by Monster Energy6
Community News
Flash Announces Hiatus From ASL54Weekly Cups (June 23-29): Reynor in world title form?13FEL Cracov 2025 (July 27) - $8000 live event16Esports World Cup 2025 - Final Player Roster16Weekly Cups (June 16-22): Clem strikes back1
StarCraft 2
General
Weekly Cups (June 23-29): Reynor in world title form? The SCII GOAT: A statistical Evaluation PiG Sty Festival #5: Playoffs Preview + Groups Recap The GOAT ranking of GOAT rankings Statistics for vetoed/disliked maps
Tourneys
RSL: Revival, a new crowdfunded tournament series Korean Starcraft League Week 77 Master Swan Open (Global Bronze-Master 2) [GSL 2025] Code S: Season 2 - Semi Finals & Finals $5,100+ SEL Season 2 Championship (SC: Evo)
Strategy
How did i lose this ZvP, whats the proper response Simple Questions Simple Answers
Custom Maps
[UMS] Zillion Zerglings
External Content
Mutation # 480 Moths to the Flame Mutation # 479 Worn Out Welcome Mutation # 478 Instant Karma Mutation # 477 Slow and Steady
Brood War
General
Player “Jedi” cheat on CSL BW General Discussion Flash Announces Hiatus From ASL BGH Auto Balance -> http://bghmmr.eu/ Unit and Spell Similarities
Tourneys
[Megathread] Daily Proleagues [BSL20] Grand Finals - Sunday 20:00 CET Small VOD Thread 2.0 [BSL20] GosuLeague RO16 - Tue & Wed 20:00+CET
Strategy
Simple Questions, Simple Answers I am doing this better than progamers do.
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread Path of Exile What do you want from future RTS games? Beyond All Reason
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
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
US Politics Mega-thread Trading/Investing Thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread The Games Industry And ATVI
Fan Clubs
SKT1 Classic Fan Club! Maru Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece [\m/] Heavy Metal Thread
Sports
Formula 1 Discussion 2024 - 2025 Football Thread NBA General Discussion TeamLiquid Health and Fitness Initiative For 2023 NHL Playoffs 2024
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
Blogs
Culture Clash in Video Games…
TrAiDoS
from making sc maps to makin…
Husyelt
Blog #2
tankgirl
StarCraft improvement
iopq
Trip to the Zoo
micronesia
Customize Sidebar...

Website Feedback

Closed Threads



Active: 653 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
Poland17243 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
Spain17970 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
Poland17243 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
Poland17243 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
Spain17970 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
Spain17970 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
Poland17243 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
Spain17970 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
Poland17243 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
Poland17243 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
WardiTV European League
12:00
Swiss Groups Day 2
WardiTV1198
TKL 366
Liquipedia
CranKy Ducklings
10:00
Master Swan Open #93
CranKy Ducklings86
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
TKL 366
Hui .279
BRAT_OK 84
MindelVK 43
StarCraft: Brood War
Calm 11547
Horang2 2182
Bisu 1330
Jaedong 1212
Flash 1209
Larva 874
Mini 536
BeSt 383
Stork 382
actioN 314
[ Show more ]
Last 206
Soulkey 190
Hyun 163
hero 103
Mind 103
Sea.KH 68
TY 56
sSak 49
Mong 36
Icarus 21
Free 17
HiyA 12
GoRush 11
Terrorterran 1
Stormgate
NightEnD19
Dota 2
XcaliburYe593
canceldota187
Counter-Strike
zeus475
Heroes of the Storm
Khaldor283
Other Games
Gorgc3088
singsing2852
B2W.Neo1352
DeMusliM557
Happy330
Fuzer 264
XaKoH 228
Lowko205
SortOf113
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• Adnapsc2 22
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• C_a_k_e 2280
• WagamamaTV692
League of Legends
• Nemesis3053
Upcoming Events
FEL
2h 59m
RSL Revival
20h 59m
Clem vs Classic
SHIN vs Cure
FEL
22h 59m
WardiTV European League
22h 59m
BSL: ProLeague
1d 4h
Dewalt vs Bonyth
Replay Cast
2 days
Sparkling Tuna Cup
2 days
WardiTV European League
3 days
The PondCast
3 days
Replay Cast
4 days
[ Show More ]
RSL Revival
4 days
Replay Cast
5 days
RSL Revival
5 days
RSL Revival
6 days
Liquipedia Results

Completed

BSL 2v2 Season 3
HSC XXVII
Heroes 10 EU

Ongoing

JPL Season 2
BSL Season 20
Acropolis #3
KCM Race Survival 2025 Season 2
CSL 17: 2025 SUMMER
Copa Latinoamericana 4
Championship of Russia 2025
RSL Revival: Season 1
Murky Cup #2
BLAST.tv Austin Major 2025
ESL Impact League Season 7
IEM Dallas 2025
PGL Astana 2025
Asian Champions League '25
BLAST Rivals Spring 2025
MESA Nomadic Masters
CCT Season 2 Global Finals
IEM Melbourne 2025

Upcoming

2025 ACS Season 2: Qualifier
CSLPRO Last Chance 2025
2025 ACS Season 2
CSLPRO Chat StarLAN 3
K-Championship
uThermal 2v2 Main Event
SEL Season 2 Championship
FEL Cracov 2025
Esports World Cup 2025
StarSeries Fall 2025
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
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.