• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 18:00
CEST 00:00
KST 07: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
[ASL20] Ro24 Preview Pt2: Take-Off7[ASL20] Ro24 Preview Pt1: Runway132v2 & SC: Evo Complete: Weekend Double Feature4Team Liquid Map Contest #21 - Presented by Monster Energy9uThermal's 2v2 Tour: $15,000 Main Event18
Community News
Weekly Cups (Aug 18-24): herO dethrones MaxPax6Maestros of The Game—$20k event w/ live finals in Paris34Weekly Cups (Aug 11-17): MaxPax triples again!13Weekly Cups (Aug 4-10): MaxPax wins a triple6SC2's Safe House 2 - October 18 & 195
StarCraft 2
General
BoxeR's Wings Episode 2 - Fan Translation Greatest Players of All Time: 2025 Update #1: Maru - Greatest Players of All Time A Eulogy for the Six Pool Geoff 'iNcontroL' Robinson has passed away
Tourneys
$5,000 WardiTV Summer Championship 2025 Maestros of The Game—$20k event w/ live finals in Paris $5,100+ SEL Season 2 Championship (SC: Evo) Esports World Cup 2025 Sparkling Tuna Cup - Weekly Open Tournament
Strategy
Custom Maps
External Content
Mutation # 488 What Goes Around Mutation # 487 Think Fast Mutation # 486 Watch the Skies Mutation # 485 Death from Below
Brood War
General
BGH Auto Balance -> http://bghmmr.eu/ Post ASL20 Ro24 discussion. No Rain in ASL20? How do I speak directly to Coinbase?1-(888)-419-97 Recent recommended BW games
Tourneys
[ASL20] Ro24 Group D [ASL20] Ro24 Group E Small VOD Thread 2.0 [Megathread] Daily Proleagues
Strategy
Muta micro map competition Simple Questions, Simple Answers Fighting Spirit mining rates [G] Mineral Boosting
Other Games
General Games
Stormgate/Frost Giant Megathread General RTS Discussion Thread Nintendo Switch Thread Dawn of War IV 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
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine US Politics Mega-thread The year 2050 European Politico-economics QA Mega-thread
Fan Clubs
INnoVation Fan Club SKT1 Classic Fan Club!
Media & Entertainment
Anime Discussion Thread Movie Discussion! [Manga] One Piece [\m/] Heavy Metal Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread High temperatures on bridge(s) Gtx660 graphics card replacement
TL Community
The Automated Ban List TeamLiquid Team Shirt On Sale
Blogs
How Culture and Conflict Imp…
TrAiDoS
RTS Design in Hypercoven
a11
Evil Gacha Games and the…
ffswowsucks
INDEPENDIENTE LA CTM
XenOsky
[Girl blog} My fema…
artosisisthebest
Customize Sidebar...

Website Feedback

Closed Threads



Active: 923 users

Starting Web

Blogs > Greem
Post a Reply
Normal
Greem
Profile Blog Joined September 2010
730 Posts
Last Edited: 2012-12-18 14:38:26
December 18 2012 11:42 GMT
#1
Hello TL, i'm looking to start a web, but sadly my knowledge in this area are pretty limited. I purchased a domain in godaddy.com , they also offer hosting services, so my question is to support high traffic sites , like mmo-champion, curse.com, what kind of hosting is needed ?

I'm building a simple site which is kind of item finder, similar to ebay let's say, so as i understand it's gonna work a lot with access to different databases, pulling in and out information, search like engine. No video, no downloads, maybe simple message system with real time chat. What would you recommend for this ?


Just read http://www.forbes.com/sites/kellyclay/2012/09/10/5-reasons-you-should-leave-godaddy-and-how/ and so probably gonna use different site now, the CEO killing an elephant is unacceptable.


Decided to go with https://www.gandi.net/, for domain registration. And http://www.ipage.com/ for hosting. Also looking into importance of http://dyn.com.

youtube.com/N0rthernL1ght
Rannasha
Profile Blog Joined August 2010
Netherlands2398 Posts
December 18 2012 12:38 GMT
#2
I would start by learning HTML, PHP and MySQL.

HTML (HyperText Markup Language) is the language that structures webpages. You use it to divide information in paragraphs, define headers, add figures, etc... It is complemented by CSS (Cascading Style Sheets), which is a language that describes style (colour, size, font, etc...) of elements of the webpage.

PHP (PHP Hypertext Processor) is a scripting language. It is very widely used to create server-side scripts that make up dynamic webpages. These scripts take user input (if any) and combine it with database input, calculations, etc... to generate a webpage (in HTML) on the fly. TeamLiquid uses PHP for their website, as do many other large and small sites.

MySQL is a database system that allows you to easily store and query data. It is freely available on all platforms and has a good enough performance for all but the most extreme applications. There's a good interface between PHP and MySQL, allowing you to use PHP commands to query the database.

As for hosting, it doesn't really matter that much. Any hosting service that isn't too small will be able to host a growing website and scale up with the needs of the user. Small websites are hosted on machines with dozens of sites on them, with no access to programs running the background. Larger websites may run from a virtual server, meaning that the website owner can treat it as a separate machine for his site, allowing him to run specialized software in the background (perhaps for indexing purposes if it's a search-engine-type-website), but in reality there are still several of these virtual machines running on one physical machine, each virtual machine unaware of the presence of others. As you scale up, the website will use an entire physical machine and eventually may have to start adding additional servers. Really large websites have servers dedicated to specific tasks: Database, serving static content (images), generating dynamic content, caching, etc...

Start out small. You say you have very limited knowledge in this area, so it's best to just start with a very basic hosting account and build up your website. As the website grows, you can either expand the account or, if your hoster has limited options, switch alltogether. A properly executed hoster-switch hardly incurs any downtime.
Such flammable little insects!
Greem
Profile Blog Joined September 2010
730 Posts
Last Edited: 2012-12-18 12:56:43
December 18 2012 12:56 GMT
#3
On December 18 2012 21:38 Rannasha wrote:
I would start by learning HTML, PHP and MySQL.

HTML (HyperText Markup Language) is the language that structures webpages. You use it to divide information in paragraphs, define headers, add figures, etc... It is complemented by CSS (Cascading Style Sheets), which is a language that describes style (colour, size, font, etc...) of elements of the webpage.

PHP (PHP Hypertext Processor) is a scripting language. It is very widely used to create server-side scripts that make up dynamic webpages. These scripts take user input (if any) and combine it with database input, calculations, etc... to generate a webpage (in HTML) on the fly. TeamLiquid uses PHP for their website, as do many other large and small sites.

MySQL is a database system that allows you to easily store and query data. It is freely available on all platforms and has a good enough performance for all but the most extreme applications. There's a good interface between PHP and MySQL, allowing you to use PHP commands to query the database.

As for hosting, it doesn't really matter that much. Any hosting service that isn't too small will be able to host a growing website and scale up with the needs of the user. Small websites are hosted on machines with dozens of sites on them, with no access to programs running the background. Larger websites may run from a virtual server, meaning that the website owner can treat it as a separate machine for his site, allowing him to run specialized software in the background (perhaps for indexing purposes if it's a search-engine-type-website), but in reality there are still several of these virtual machines running on one physical machine, each virtual machine unaware of the presence of others. As you scale up, the website will use an entire physical machine and eventually may have to start adding additional servers. Really large websites have servers dedicated to specific tasks: Database, serving static content (images), generating dynamic content, caching, etc...

Start out small. You say you have very limited knowledge in this area, so it's best to just start with a very basic hosting account and build up your website. As the website grows, you can either expand the account or, if your hoster has limited options, switch alltogether. A properly executed hoster-switch hardly incurs any downtime.


Couldn't imagine a better answer than this, thank you sir! The thing i fear is that as i start as a beginner, if the idea will work, anyone out there with better understanding of things in this area, who is able to provide high quality service doing basically the same, is gonna destroy me altogether ) But i guess that is another problem i need to look into Thank you again!
youtube.com/N0rthernL1ght
SgtCoDFish
Profile Blog Joined July 2010
United Kingdom1520 Posts
December 18 2012 14:01 GMT
#4
Javascript (not to be confused with Java) is also pretty important for the web, as is CSS. I'd say learn HTML before anything, then CSS. Then learn Javascript/PHP + MySQL... which is more important will depend very much on what you're actually going to try and do. If you need specific tips once you've got the basics down, visit the Big Programming Thread on TL, or one of the programming subreddits such as reddit.com/r/learnprogramming

I also would recommend against godaddy, purely because of their lack of support for net neutrality. Haven't shopped for hosting in a while so I can't help beyond recommending against godaddy.
Rannasha
Profile Blog Joined August 2010
Netherlands2398 Posts
Last Edited: 2012-12-18 14:02:57
December 18 2012 14:01 GMT
#5
If you lack the technical skills to implement your idea yourself, you'll have to work together with someone who does have the tech-skills, but no projects to use them on. If you really have a good idea, you may even get a loan from a bank or some other investor for it to get the thing jumpstarted, but that's rather hard in todays economy and new internet-ideas being so common.

Either way, if you feel that your idea is really unique (do research, there are often sites that are very similar to what you're wanting to make, but they're just not that well known) and easy to copy once it's out there, you should wait with making it publicly available until it's fully operational. And even then, you shouldn't count on large traffic-volume in the first weeks or months, so don't overbudget your hosting too much. Instead, find a hoster that will migrate you to a larger hosting-plan if your needs grow.
Such flammable little insects!
Greem
Profile Blog Joined September 2010
730 Posts
December 18 2012 14:16 GMT
#6
On December 18 2012 23:01 SgtCoDFish wrote:
Javascript (not to be confused with Java) is also pretty important for the web, as is CSS. I'd say learn HTML before anything, then CSS. Then learn Javascript/PHP + MySQL... which is more important will depend very much on what you're actually going to try and do. If you need specific tips once you've got the basics down, visit the Big Programming Thread on TL, or one of the programming subreddits such as reddit.com/r/learnprogramming

I also would recommend against godaddy, purely because of their lack of support for net neutrality. Haven't shopped for hosting in a while so I can't help beyond recommending against godaddy.


Thank you ) Godaddy was the fastest thing i found, but then looking closely on what people thing i found that they were in favor of pipa/sopa, on top of that they CEO posted a picture killing an elephant, that is just beyond disgusting.
youtube.com/N0rthernL1ght
Greem
Profile Blog Joined September 2010
730 Posts
December 18 2012 14:21 GMT
#7
On December 18 2012 23:01 Rannasha wrote:
If you lack the technical skills to implement your idea yourself, you'll have to work together with someone who does have the tech-skills, but no projects to use them on. If you really have a good idea, you may even get a loan from a bank or some other investor for it to get the thing jumpstarted, but that's rather hard in todays economy and new internet-ideas being so common.

Either way, if you feel that your idea is really unique (do research, there are often sites that are very similar to what you're wanting to make, but they're just not that well known) and easy to copy once it's out there, you should wait with making it publicly available until it's fully operational. And even then, you shouldn't count on large traffic-volume in the first weeks or months, so don't overbudget your hosting too much. Instead, find a hoster that will migrate you to a larger hosting-plan if your needs grow.


I did searching for similar sites, and i found none, and it kinda surprised me since i been in that "business" for long time and it just hit me. Sadly i got no friends with such skills, and telling the idea to someone else with technical skills could just result in major mistake, they just can do it for themselves. So i just in a middle of nothing, trying to protect and to make. Thanks a lot for your insight, again!
youtube.com/N0rthernL1ght
Recognizable
Profile Blog Joined December 2011
Netherlands1552 Posts
December 18 2012 14:31 GMT
#8
On December 18 2012 23:21 Greem wrote:
Show nested quote +
On December 18 2012 23:01 Rannasha wrote:
If you lack the technical skills to implement your idea yourself, you'll have to work together with someone who does have the tech-skills, but no projects to use them on. If you really have a good idea, you may even get a loan from a bank or some other investor for it to get the thing jumpstarted, but that's rather hard in todays economy and new internet-ideas being so common.

Either way, if you feel that your idea is really unique (do research, there are often sites that are very similar to what you're wanting to make, but they're just not that well known) and easy to copy once it's out there, you should wait with making it publicly available until it's fully operational. And even then, you shouldn't count on large traffic-volume in the first weeks or months, so don't overbudget your hosting too much. Instead, find a hoster that will migrate you to a larger hosting-plan if your needs grow.


I did searching for similar sites, and i found none, and it kinda surprised me since i been in that "business" for long time and it just hit me. Sadly i got no friends with such skills, and telling the idea to someone else with technical skills could just result in major mistake, they just can do it for themselves. So i just in a middle of nothing, trying to protect and to make. Thanks a lot for your insight, again!


It'll take you some time tho. Unless you have all day I guess it can take up to a year to learn how to properly make a website like this.
KillerSOS
Profile Blog Joined July 2010
United States4207 Posts
December 18 2012 14:34 GMT
#9
If you dont know how to code Wordpress is a solid way to start.
Greem
Profile Blog Joined September 2010
730 Posts
December 18 2012 14:36 GMT
#10
On December 18 2012 23:31 Recognizable wrote:
Show nested quote +
On December 18 2012 23:21 Greem wrote:
On December 18 2012 23:01 Rannasha wrote:
If you lack the technical skills to implement your idea yourself, you'll have to work together with someone who does have the tech-skills, but no projects to use them on. If you really have a good idea, you may even get a loan from a bank or some other investor for it to get the thing jumpstarted, but that's rather hard in todays economy and new internet-ideas being so common.

Either way, if you feel that your idea is really unique (do research, there are often sites that are very similar to what you're wanting to make, but they're just not that well known) and easy to copy once it's out there, you should wait with making it publicly available until it's fully operational. And even then, you shouldn't count on large traffic-volume in the first weeks or months, so don't overbudget your hosting too much. Instead, find a hoster that will migrate you to a larger hosting-plan if your needs grow.


I did searching for similar sites, and i found none, and it kinda surprised me since i been in that "business" for long time and it just hit me. Sadly i got no friends with such skills, and telling the idea to someone else with technical skills could just result in major mistake, they just can do it for themselves. So i just in a middle of nothing, trying to protect and to make. Thanks a lot for your insight, again!


It'll take you some time tho. Unless you have all day I guess it can take up to a year to learn how to properly make a website like this.


I've got all day , and ye, i believe from 0 its gonna take painfully long period of time. But i'm up for it. I will edit this blog with every new thing i find and learn. Maybe someone else , sometime in the future will choke with the same obstacle.
youtube.com/N0rthernL1ght
Greem
Profile Blog Joined September 2010
730 Posts
December 18 2012 14:44 GMT
#11
On December 18 2012 23:34 KillerSOS wrote:
If you dont know how to code Wordpress is a solid way to start.


I will look into it, thanks !
youtube.com/N0rthernL1ght
Rannasha
Profile Blog Joined August 2010
Netherlands2398 Posts
December 18 2012 15:25 GMT
#12
Wordpress isn't really a good start if you want to make any form of interactive website. Wordpress is great for making a blog-like website, where you just add content as you go, but everything remains static. You don't really learn much from using Wordpress. It's excellent at quickly setting up a semi-static webpage with a decent CMS behind it, but if you want to go further than what it has to offer, you might as well skip it alltogether.

There's really no way to get around learning things like HTML, PHP, CSS, MySQL and JavaScript (and how much you need to know of each depends on your goals) if you want to make something like a search-engine.
Such flammable little insects!
micronesia
Profile Blog Joined July 2006
United States24698 Posts
December 18 2012 15:27 GMT
#13
I just started learning html/css and you should probably do the same:

http://www.codecademy.com/tracks/htmlcss

They also have javascript but that's probably much less important for us new web designers than html/css. I'm about 65% done with the html/css section. After that I will probably play around with my new knowledge and possibly learn some php as was suggested earlier in this thread. Personally, I don't think I'll be needing mySQL any time soon.
ModeratorThere are animal crackers for people and there are people crackers for animals.
Deleted User 135096
Profile Blog Joined December 2010
3624 Posts
December 18 2012 16:33 GMT
#14
yea, if you do start with html, don't learn html only... css is pretty much indespensable in today's landscape.
Administrator
JDub
Profile Joined December 2010
United States976 Posts
December 18 2012 17:11 GMT
#15
Just fyi, as far as server technologies go, there are many great alternatives to PHP, many that make getting started a lot easier. Django (a Python framework) is one of my favorites, but as you can see, there are a ton of frameworks just in Python alone: http://wiki.python.org/moin/WebFrameworks

If you do want to go with PHP, after learning the basics of PHP I would really recommend picking up one of the PHP frameworks, as it will save you a massive amount of time: http://en.wikipedia.org/wiki/Comparison_of_web_application_frameworks#PHP_2.

Most of the frameworks basically take a lot of the boring work out of the web development, and let you get started on the meat of your web app right after getting them set up.
LML
Profile Blog Joined March 2007
Germany1768 Posts
December 18 2012 17:12 GMT
#16
for hosting I can highly suggest networksolutions.com
I think I got the basic package and already have alot of storage, unlimited traffic, a domain, and FTP/MySQL support
LML
Tobberoth
Profile Joined August 2010
Sweden6375 Posts
December 18 2012 17:41 GMT
#17
I'd say stick with HTML5, CSS and javascript for as long as you can. Using a server side language such like PHP, ASP.NET, JSP, Python, Ruby etc lets you do powerful stuff, but you shouldn't learn these things "just to learn them", find a situation where you need them and go from there.

Depending on the site you're making, you might not even need javascript. HTML and CSS alone lets you make beautiful presentations of information. Javascript lets you make it a bit more dynamic... and with server side scripting/databases, you can start to make sites with a more "application feel" to them. One should, IMO, never use too much. If you want a site with some information and images etc, HTML and CSS will do just fine.
StatixEx
Profile Blog Joined August 2011
United Kingdom779 Posts
December 18 2012 18:25 GMT
#18
after christmas im starting a learn html with css with 12-13 yr olds if you message me past han 7th ill link you to the lesson content and you can follow the resources and vid tutorials i make
willoc
Profile Joined February 2011
Canada1530 Posts
December 18 2012 19:38 GMT
#19
Wow. Those Forbes articles you linked make them look like amateur journalists especially the article that came out the same day on why you should use GoDaddy. So much misinformation, bad logic and retarded assumptions made by them and now they looks like fools.

http://www.forbes.com/sites/tomwatson/2012/09/10/five-reasons-you-should-use-godaddy-and-why/
Be bold and mighty forces will come to your aid!
Clbull
Profile Blog Joined February 2011
United Kingdom1439 Posts
December 18 2012 19:46 GMT
#20
On December 18 2012 21:56 Greem wrote:
Show nested quote +
On December 18 2012 21:38 Rannasha wrote:
I would start by learning HTML, PHP and MySQL.

HTML (HyperText Markup Language) is the language that structures webpages. You use it to divide information in paragraphs, define headers, add figures, etc... It is complemented by CSS (Cascading Style Sheets), which is a language that describes style (colour, size, font, etc...) of elements of the webpage.

PHP (PHP Hypertext Processor) is a scripting language. It is very widely used to create server-side scripts that make up dynamic webpages. These scripts take user input (if any) and combine it with database input, calculations, etc... to generate a webpage (in HTML) on the fly. TeamLiquid uses PHP for their website, as do many other large and small sites.

MySQL is a database system that allows you to easily store and query data. It is freely available on all platforms and has a good enough performance for all but the most extreme applications. There's a good interface between PHP and MySQL, allowing you to use PHP commands to query the database.

As for hosting, it doesn't really matter that much. Any hosting service that isn't too small will be able to host a growing website and scale up with the needs of the user. Small websites are hosted on machines with dozens of sites on them, with no access to programs running the background. Larger websites may run from a virtual server, meaning that the website owner can treat it as a separate machine for his site, allowing him to run specialized software in the background (perhaps for indexing purposes if it's a search-engine-type-website), but in reality there are still several of these virtual machines running on one physical machine, each virtual machine unaware of the presence of others. As you scale up, the website will use an entire physical machine and eventually may have to start adding additional servers. Really large websites have servers dedicated to specific tasks: Database, serving static content (images), generating dynamic content, caching, etc...

Start out small. You say you have very limited knowledge in this area, so it's best to just start with a very basic hosting account and build up your website. As the website grows, you can either expand the account or, if your hoster has limited options, switch alltogether. A properly executed hoster-switch hardly incurs any downtime.


Couldn't imagine a better answer than this, thank you sir! The thing i fear is that as i start as a beginner, if the idea will work, anyone out there with better understanding of things in this area, who is able to provide high quality service doing basically the same, is gonna destroy me altogether ) But i guess that is another problem i need to look into Thank you again!

There's a really good Sitepoint book called "PHP & MySQL: Novice To Ninja" that goes into a lot of this stuff.
Greem
Profile Blog Joined September 2010
730 Posts
December 19 2012 00:27 GMT
#21
On December 19 2012 00:27 micronesia wrote:
I just started learning html/css and you should probably do the same:

http://www.codecademy.com/tracks/htmlcss

They also have javascript but that's probably much less important for us new web designers than html/css. I'm about 65% done with the html/css section. After that I will probably play around with my new knowledge and possibly learn some php as was suggested earlier in this thread. Personally, I don't think I'll be needing mySQL any time soon.


I've been doing exersices on this site all day , they got it pretty entertaining, time passed by so quickly.
youtube.com/N0rthernL1ght
micronesia
Profile Blog Joined July 2006
United States24698 Posts
Last Edited: 2012-12-19 15:16:19
December 19 2012 15:15 GMT
#22
Greem let's make an awesome website with our new found html/css skills.

Here, I already started one: http://micronesia.github.com
ModeratorThere are animal crackers for people and there are people crackers for animals.
Greem
Profile Blog Joined September 2010
730 Posts
December 19 2012 18:40 GMT
#23
On December 20 2012 00:15 micronesia wrote:
Greem let's make an awesome website with our new found html/css skills.

Here, I already started one: http://micronesia.github.com


LOL , catz will attract a lot of viewers for sure, thats a good start !
youtube.com/N0rthernL1ght
Normal
Please log in or register to reply.
Live Events Refresh
Next event in 2h
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
UpATreeSC 144
ProTech119
JuggernautJason101
CosmosSc2 56
StarCraft: Brood War
Aegong 41
scan(afreeca) 27
Dota 2
capcasts181
Counter-Strike
taco 480
Stewie2K472
Foxcn295
Other Games
summit1g4670
FrodaN2967
Grubby2518
Sick299
ViBE187
Liquid`Hasu175
ToD138
C9.Mang0122
Mew2King49
PPMD26
Organizations
Other Games
BasetradeTV16
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 20 non-featured ]
StarCraft 2
• musti20045 46
• RyuSc2 31
• davetesta28
• Kozan
• LaughNgamezSOOP
• sooper7s
• AfreecaTV YouTube
• intothetv
• Migwel
• IndyKCrew
StarCraft: Brood War
• Pr0nogo 1
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• WagamamaTV586
• masondota2227
League of Legends
• Doublelift4119
• TFBlade906
Counter-Strike
• imaqtpie1134
• Shiphtur172
Upcoming Events
Replay Cast
2h
LiuLi Cup
13h
MaxPax vs TriGGeR
ByuN vs herO
Cure vs Rogue
Classic vs HeRoMaRinE
Cosmonarchy
18h
OyAji vs Sziky
Sziky vs WolFix
WolFix vs OyAji
Big Brain Bouts
18h
Iba vs GgMaChine
TriGGeR vs Bunny
Reynor vs TBD
Serral vs TBD
BSL Team Wars
21h
Team Hawk vs Team Dewalt
BSL Team Wars
21h
Team Hawk vs Team Bonyth
Code For Giants Cup
1d
SC Evo League
1d 14h
TaeJa vs Cure
Rogue vs threepoint
ByuN vs Creator
MaNa vs Classic
Maestros of the Game
1d 18h
ShoWTimE vs Cham
GuMiho vs Ryung
Zoun vs Spirit
Rogue vs MaNa
[BSL 2025] Weekly
1d 20h
[ Show More ]
SC Evo League
2 days
Maestros of the Game
2 days
SHIN vs Creator
Astrea vs Lambo
Bunny vs SKillous
HeRoMaRinE vs TriGGeR
BSL Team Wars
2 days
Team Bonyth vs Team Sziky
BSL Team Wars
2 days
Team Dewalt vs Team Sziky
Monday Night Weeklies
3 days
Replay Cast
4 days
Sparkling Tuna Cup
4 days
LiuLi Cup
5 days
Replay Cast
6 days
The PondCast
6 days
RSL Revival
6 days
Maru vs SHIN
MaNa vs MaxPax
Liquipedia Results

Completed

CSL Season 18: Qualifier 1
uThermal 2v2 Main Event
HCC Europe

Ongoing

Copa Latinoamericana 4
BSL 20 Team Wars
KCM Race Survival 2025 Season 3
BSL 21 Qualifiers
ASL Season 20
Acropolis #4 - TS1
CSL Season 18: Qualifier 2
SEL Season 2 Championship
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1
BLAST.tv Austin Major 2025

Upcoming

CSL 2025 AUTUMN (S18)
LASL Season 20
BSL Season 21
BSL 21 Team A
Chzzk MurlocKing SC1 vs SC2 Cup #2
RSL Revival: Season 2
Maestros of the Game
EC S1
Sisters' Call Cup
Skyesports Masters 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
FISSURE Playground #2
BLAST Open 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.