• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 16:30
CEST 22:30
KST 05:30
  • 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
ByuL, and the Limitations of Standard Play1Team Liquid Map Contest #22: Results and Winners7Code S Season 2 (2026): RO4 and Finals Preview12TL.net Map Contest #22 - Voting & Ladder Map Selection7Code S Season 2 (2026) - RO8 Preview8
Community News
[TLMC] Summer 2026 Ladder Map Rotation05.0.16 patch for SC2 goes live (8 worker start)69ZeroSpace at Steam NextFest - Last free demo31Weekly Cups (June 8-14): Clem and Solar double, PTR tested0RSL: S6 Finals played at BlizzCon 202611
StarCraft 2
General
5.0.16 patch for SC2 goes live (8 worker start) Is the larve respawn broken? The Death of Cheese: From a Professional Cheeser Mizenhauer's Douyu Cup Preview ByuL, and the Limitations of Standard Play
Tourneys
Douyu Cup 2026: $20,000 Legends Event (June 26-28) RSL Revival: Season 6 - Qualifiers and Main Event INu's Battles#17 <BO.9> Sparkling Tuna Cup - Weekly Open Tournament GSL CK #4 20-21th June
Strategy
[G] Having the right mentality to improve
Custom Maps
New Map Maker - Looking for Advice - Love or Hate Work In Progress Melee Maps [D]RTS in all its shapes and glory <3
External Content
The PondCast: SC2 News & Results Mutation # 531 Experimental Artillery Mutation # 530 One For All Mutation # 529 Opportunities Unleashed
Brood War
General
ASL 22 Proposed Map Pool BW General Discussion Farewell Beloved Starcraft (Youtube Videos) vespene.gg — BW replays in browser Quality of life changes in BW that you will like ?
Tourneys
[ASL21] Grand Finals [Megathread] Daily Proleagues The Casual Games of the Week Thread [BSL22] GosuLeague Casts - Tue & Thu 22:00 CEST
Strategy
Simple Questions, Simple Answers Creating a full chart of Zerg builds Relatively freeroll strategies Why doesn't anyone use restoration?
Other Games
General Games
Path of Exile Stormgate/Frost Giant Megathread Beyond All Reason Nintendo Switch Thread ZeroSpace at Steam NextFest - Last free demo
Dota 2
Looking for a Dota Mentor 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
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
US Politics Mega-thread The Games Industry And ATVI Canadian Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread
Fan Clubs
The HerO Fan Club! The herO Fan Club!
Media & Entertainment
Movie Discussion! Series you have seen recently... [Req][Books] Good Fantasy/SciFi books [TV/BOOK] *SPOILERS* Game of Thrones Discussion
Sports
2024 - 2026 Football Thread TeamLiquid Health and Fitness Initiative For 2023 McBoner: A hockey love story Formula 1 Discussion Cricket [SPORT]
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread Facing Challenges in Mobile App Development
TL Community
The Automated Ban List
Blogs
Listen To The Coaches!
TrAiDoS
An Exploration of th…
waywardstrategy
I'm an arrogant trash talke…
FlaShFTW
Gauntlet SC2: A Retrospectiv…
Ctone23
ramps on octagon
StaticNine
StarCraft improvement
iopq
Customize Sidebar...

Website Feedback

Closed Threads



Active: 9138 users

The Big Programming Thread - Page 70

Forum Index > General Forum
Post a Reply
Prev 1 68 69 70 71 72 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.
MisterD
Profile Blog Joined June 2010
Germany1338 Posts
Last Edited: 2011-07-18 23:00:26
July 18 2011 23:00 GMT
#1381
noone learns how to do everything. The thing you do learn as a computer science student is to know what you don't know, and to know how to learn and understand it. I totally annoy all people around me with this, but whenever they ask me something, i usually say "i have no idea" because i actually don't. If you put me infront of the problem (usually technology related obviously, because computer science people are predestined to fix computers and anything that runs on digital circuits), i'll usually solve it very quickly just because i intuitively look in the right spots. But still, i have absolutely no clue about it. Most people don't get that. They say "but you'll solve it almost instantly, so you must know it!", but i just know i don't.

but that is not limited to computer sciences. Of course, computer science is one of these fields where you absolutely need this. But basically, every engineer needs this. Engineers are "sort of" limited to getting into stuff that has hardware machines attached, while computer science people will have to get into anything, even stuff that's not researched enough yet so that anyone has a deep enough understanding to provide a more or less mathematical model of it.

that being said, i'm a cs student, but last semester i only had engineering courses, and while this last paragraph may have sounded like engineers get of easy, don't be fooled, the big machinery is usually just as complicated as any other random subject to work on so no hurt feelings please!
Gold isn't everything in life... you need wood, too!
guyabs
Profile Joined May 2010
Philippines103 Posts
Last Edited: 2011-07-19 00:13:04
July 19 2011 00:12 GMT
#1382
Can any of you guys help me? Java applets

This is the problem:
+ Show Spoiler +
Create an applet with a Button. Display your name in an 8-point font. Every time the user clicks the
Button, increase the font size for the displayed name by four points. Remove the Button when the font
size exceeds 24 point.


So far this is what i've worked on:
+ Show Spoiler +
import java.applet.*;
import java.awt.*;

public class Exercise extends applet implements ActionListener
{
Button button1 = new Button("Press This");
Label label1 = new Label("Benjamin");
Font font1 = new Font("Helvetica",Font.BOLD,8);

public void init()
{
label1.setFont(font1);
button1.addActionListener(this);
add(label1);
add(button1);
}

public void ActionPerformed(ActionEvent thisEvent)
{


}
}


Our instructor have not really tackled that deep, so i think I lack some basic commands to complete this problem.

Thanks in advance.
fabiano
Profile Blog Joined August 2009
Brazil4644 Posts
Last Edited: 2011-07-19 00:33:58
July 19 2011 00:29 GMT
#1383
Your code doesn't compile.

I fixed it, see if its what you are supposed to do:
+ Show Spoiler +


import java.applet.*;
import java.awt.*;
import java.awt.event.*;

public class Exercise extends Applet implements ActionListener
{
public void init()
{
label1.setFont(font1);
button1.addActionListener(this);
add(label1);
add(button1);
}

public void actionPerformed(ActionEvent thisEvent)
{
if(thisEvent.getSource() == button1) {
mFontSize += 4;

if(mFontSize >= 24) {
button1.setVisible(false);
}

font1 = new Font("Benjamin", Font.BOLD, mFontSize);
label1.setFont(font1);
}
}

private int mFontSize = 8;
private Button button1 = new Button("Press This");
private Label label1 = new Label("Benjamin");
private Font font1 = new Font("Helvetica", Font.BOLD, mFontSize);
}


Explanation:

You've registered button1 to receive actions which will be handled by the class Exercise with the method actionPerformed. In this method you check to see what is the source of the action event triggered by the user. If it is the button, it will increase the size of the font by 4 and check if the size is greater than 23, if it is, then you turn your button invisible.

Notice that a class attribute has been created to keep track of the size of the font.
"When the geyser died, a probe came out" - SirJolt
guyabs
Profile Joined May 2010
Philippines103 Posts
Last Edited: 2011-07-19 00:45:17
July 19 2011 00:43 GMT
#1384
Thank you very much sir, my instructor haven't really said anything about using an assigned int value to set a font. I really have no idea on how to increase the size of the font before you posted it.

I have a question. What does the .getSource() class exactly do?

Thanks again!
fabiano
Profile Blog Joined August 2009
Brazil4644 Posts
July 19 2011 00:49 GMT
#1385
Oh, no problem man!

The method getSource() returns the object target of the action which triggered the actionPerformed() callback.
"When the geyser died, a probe came out" - SirJolt
guyabs
Profile Joined May 2010
Philippines103 Posts
July 19 2011 00:53 GMT
#1386
You just saved me from not completing my laboratory examination.

Thank you very much, till next time sir!
Xanbatou
Profile Blog Joined February 2010
United States805 Posts
July 19 2011 04:08 GMT
#1387
I am having an interesting problem. I want to have a box with a border overlaid on top of a vlc web player. I can get it to work just fine if the background color is not transparent, but as soon as I set it to transparent, it gets drawn behind the player. Does anyone know how to get around this?

Here is a jsfiddle that shows what I am talking about (You need to have vlc web plugin installed in order for this to work. Additionally, you can only do overlays with firefox, for some reason).

http://jsfiddle.net/AsGuL/21/
MrCon
Profile Blog Joined August 2010
France29748 Posts
Last Edited: 2011-07-19 16:05:09
July 19 2011 15:59 GMT
#1388
Hi,
I know very few about javascript, but I would like to create a button (or a link that I could click, or a shortcut in my chrome link bar) that transform an url of the page I'm currently browsing.
But I don't know how to add this to my browser. What I want to do is when I'm on a
http://www.youtube.com/user/hsypersakura2009#p/c/xxxxxxxxxxxx
page, I'm get either a link or a button, or like I said just a shortcut in my quicklaunch bar that I manually press that transform the url to :
http://www.youtube.com/view_play_list?p=xxxxxxxxxxxxx
I know how to transform the url, I just don't know how to implement this and where to put the code, this should be like a very basic chrome plugin.
I tried to create an html document, made a shortcut and I click it, but it doesn't retrieve the url I was in, either with document.url or document.referrer (the later is null)
I'm sure it's a very basic question, but I have so low experience in this and I don't know how to do it.
dmillz
Profile Joined November 2010
Canada270 Posts
Last Edited: 2011-07-19 18:39:04
July 19 2011 18:38 GMT
#1389
Never mind I didn't read the OP very well!
delHospital
Profile Blog Joined December 2010
Poland261 Posts
Last Edited: 2011-07-19 19:11:16
July 19 2011 19:07 GMT
#1390
On July 20 2011 00:59 MrCon wrote:
Hi,
I know very few about javascript, but I would like to create a button (or a link that I could click, or a shortcut in my chrome link bar) that transform an url of the page I'm currently browsing.
But I don't know how to add this to my browser. What I want to do is when I'm on a
http://www.youtube.com/user/hsypersakura2009#p/c/xxxxxxxxxxxx
page, I'm get either a link or a button, or like I said just a shortcut in my quicklaunch bar that I manually press that transform the url to :
http://www.youtube.com/view_play_list?p=xxxxxxxxxxxxx
I know how to transform the url, I just don't know how to implement this and where to put the code, this should be like a very basic chrome plugin.
I tried to create an html document, made a shortcut and I click it, but it doesn't retrieve the url I was in, either with document.url or document.referrer (the later is null)
I'm sure it's a very basic question, but I have so low experience in this and I don't know how to do it.

A poor man's solution could be to make a bookmark named, say "asdf", with the address like
javascript:window.location=window.location.toString().replace(new RegExp("(.*)user/[^/]*/c/(.*)"), "$1view_play_list?p=$2")
and when you want to use it, enter asdf in the address bar and select the bookmark.

Oh, if you don't have the bookmark bar hidden, it could work quite nicely.
Patriot.dlk
Profile Blog Joined October 2004
Sweden5462 Posts
July 19 2011 20:11 GMT
#1391
Man I have been trying to get into JSF 2 (work related) but it's sick hard. I really like java but I hate jsf so far. Anyone here who can offer help when I grind this tomorrow?
Cambium
Profile Blog Joined June 2004
United States16368 Posts
July 19 2011 20:20 GMT
#1392
On July 18 2011 12:01 Xanbatou wrote:
Hello TL,

I am a computer science major at UCSD. Recently, at the place I'm interning at, I got involved in a discussion about the future of the computer science degree. The guy I was talking with said in about 10-15 years, computer science will closely resemble a liberal arts degree, of sorts. He said that computer science by itself is useless and it's much better if you major in math, physics, biology, or something else and use computer science as a tool to help you get your job done. Furthermore, he said that basic computer science courses will probably be turned into GEs due to how helpful they can be to pretty much everybody.

What do people think about this?


You'll know he's full of shit in a few years.
When you want something, all the universe conspires in helping you to achieve it.
CCitrus
Profile Joined July 2011
Canada164 Posts
July 19 2011 20:48 GMT
#1393
On July 20 2011 05:20 Cambium wrote:
Show nested quote +
On July 18 2011 12:01 Xanbatou wrote:
Hello TL,

I am a computer science major at UCSD. Recently, at the place I'm interning at, I got involved in a discussion about the future of the computer science degree. The guy I was talking with said in about 10-15 years, computer science will closely resemble a liberal arts degree, of sorts. He said that computer science by itself is useless and it's much better if you major in math, physics, biology, or something else and use computer science as a tool to help you get your job done. Furthermore, he said that basic computer science courses will probably be turned into GEs due to how helpful they can be to pretty much everybody.

What do people think about this?


You'll know he's full of shit in a few years.


He is right about one thing. Computer science courses will gradually become more and more common outside of computer science majors' programs. I know my job would be a lot easier if the whole office didn't slow down when the IT guy took his vacation. I would also be able to do my work 8x faster if I had experience in anything other than visual basic.
Zocat
Profile Joined April 2010
Germany2229 Posts
Last Edited: 2011-07-19 21:33:57
July 19 2011 21:33 GMT
#1394
On July 18 2011 12:01 Xanbatou wrote:
Hello TL,

I am a computer science major at UCSD. Recently, at the place I'm interning at, I got involved in a discussion about the future of the computer science degree. The guy I was talking with said in about 10-15 years, computer science will closely resemble a liberal arts degree, of sorts. He said that computer science by itself is useless and it's much better if you major in math, physics, biology, or something else and use computer science as a tool to help you get your job done. Furthermore, he said that basic computer science courses will probably be turned into GEs due to how helpful they can be to pretty much everybody.

What do people think about this?


The thing is specialization & limited time.

A math student could probably do the same stuff I can do, if he spends some of his time researching the problem.
On the other hand - I can probably do the same stuff a math student can do - given enough time.

Computer Science isnt "How to program".
MrCon
Profile Blog Joined August 2010
France29748 Posts
July 19 2011 22:51 GMT
#1395
On July 20 2011 04:07 delHospital wrote:
Show nested quote +
On July 20 2011 00:59 MrCon wrote:
Hi,
I know very few about javascript, but I would like to create a button (or a link that I could click, or a shortcut in my chrome link bar) that transform an url of the page I'm currently browsing.
But I don't know how to add this to my browser. What I want to do is when I'm on a
http://www.youtube.com/user/hsypersakura2009#p/c/xxxxxxxxxxxx
page, I'm get either a link or a button, or like I said just a shortcut in my quicklaunch bar that I manually press that transform the url to :
http://www.youtube.com/view_play_list?p=xxxxxxxxxxxxx
I know how to transform the url, I just don't know how to implement this and where to put the code, this should be like a very basic chrome plugin.
I tried to create an html document, made a shortcut and I click it, but it doesn't retrieve the url I was in, either with document.url or document.referrer (the later is null)
I'm sure it's a very basic question, but I have so low experience in this and I don't know how to do it.

A poor man's solution could be to make a bookmark named, say "asdf", with the address like
javascript:window.location=window.location.toString().replace(new RegExp("(.*)user/[^/]*/c/(.*)"), "$1view_play_list?p=$2")
and when you want to use it, enter asdf in the address bar and select the bookmark.

Oh, if you don't have the bookmark bar hidden, it could work quite nicely.

Thanks, I'll try that.
KaiserJohan
Profile Joined May 2010
Sweden1808 Posts
July 19 2011 23:32 GMT
#1396
On July 20 2011 06:33 Zocat wrote:
Show nested quote +
On July 18 2011 12:01 Xanbatou wrote:
Hello TL,

I am a computer science major at UCSD. Recently, at the place I'm interning at, I got involved in a discussion about the future of the computer science degree. The guy I was talking with said in about 10-15 years, computer science will closely resemble a liberal arts degree, of sorts. He said that computer science by itself is useless and it's much better if you major in math, physics, biology, or something else and use computer science as a tool to help you get your job done. Furthermore, he said that basic computer science courses will probably be turned into GEs due to how helpful they can be to pretty much everybody.

What do people think about this?


The thing is specialization & limited time.

A math student could probably do the same stuff I can do, if he spends some of his time researching the problem.
On the other hand - I can probably do the same stuff a math student can do - given enough time.

Computer Science isnt "How to program".


Knowing all the exact details on how for example your computer works is not part of a math or physics major. I highly, highly doubt a math student can design, program and deploy an application as well as a CS major.
England will fight to the last American
Zocat
Profile Joined April 2010
Germany2229 Posts
Last Edited: 2011-07-20 01:43:54
July 20 2011 01:42 GMT
#1397
On July 20 2011 08:32 KaiserJohan wrote:
Show nested quote +
On July 20 2011 06:33 Zocat wrote:
On July 18 2011 12:01 Xanbatou wrote:
Hello TL,

I am a computer science major at UCSD. Recently, at the place I'm interning at, I got involved in a discussion about the future of the computer science degree. The guy I was talking with said in about 10-15 years, computer science will closely resemble a liberal arts degree, of sorts. He said that computer science by itself is useless and it's much better if you major in math, physics, biology, or something else and use computer science as a tool to help you get your job done. Furthermore, he said that basic computer science courses will probably be turned into GEs due to how helpful they can be to pretty much everybody.

What do people think about this?


The thing is specialization & limited time.

A math student could probably do the same stuff I can do, if he spends some of his time researching the problem.
On the other hand - I can probably do the same stuff a math student can do - given enough time.

Computer Science isnt "How to program".


Knowing all the exact details on how for example your computer works is not part of a math or physics major. I highly, highly doubt a math student can design, program and deploy an application as well as a CS major.


Of course there are some fields (computer hardware, network security, ... ) which math students dont really learn.
On the other hand my number theory knowledge isnt great and my financial time series analysis isnt existant at all
As I said "given enough time"

Also I dont know if the application development knowledge is that different from a math student who's focus i.e. is in Neural Networks compared to a CS student who's focusing on theoretical cs (is that a term in English? I mean languages & stuff like pumping lemma, or AI like neural networks) or a heavy crypto theorist.
A "pure" software engineering CS guy would obviously know more
EscPlan9
Profile Blog Joined December 2006
United States2777 Posts
July 20 2011 22:40 GMT
#1398
WorksheetCreateMethod CreateMethod = RequestTypes.Contains( ClientType ) ? ( ResponseTypes.Contains( ClientType ) ? WorksheetCreateMethod.Both : WorksheetCreateMethod.Input ) : ( ResponseTypes.Contains( ClientType ) ? WorksheetCreateMethod.Validati​on : WorksheetCreateMethod.None );

Programmers who love putting ridiculous nested statements like this all on one line, with no comments or documentation.. stop please! Giving me a headache looking over this code at work. I didn't even know you could do a ternary operator within ternary operator (mostly because I never use it for sake of readability).

I have a new found appreciation for clearly written and commented code after seeing the work of this one developer lol
Undefeated TL Tecmo Super Bowl League Champion
Wordpad
Profile Blog Joined November 2010
Denmark154 Posts
Last Edited: 2011-07-27 14:54:18
July 27 2011 14:53 GMT
#1399
I decided C# to be my first programming language, so I went ahead and installed Vistual Studio 2010 C# to use as my learning tool. I started reading: Learning C# 3.0: Master the fundamentals of C# 3.0, to get started since it seemed like it was aimed towards complete new-comers to programming.

Before stating my question, let me quote something from the book:
when we refer to .NET, we mean the .NET 3.5 Framework; and when we refer to Visual Studio, we mean Visual Studio 2008.

I'm worried if it is a waste of my time reading this book when it's about .NET 3.5, when 4.0 is available, and if not, whether or not I can use Visual Studio 2010 as apposed to 2008 following the book. Do I have anthing to worry about, or should I find a book not as "old" as this one? Sorry I'm a bit clueless
Uriel_SVK
Profile Joined April 2010
Slovakia427 Posts
July 27 2011 15:32 GMT
#1400
On July 27 2011 23:53 Wordpad wrote:
I decided C# to be my first programming language, so I went ahead and installed Vistual Studio 2010 C# to use as my learning tool. I started reading: Learning C# 3.0: Master the fundamentals of C# 3.0, to get started since it seemed like it was aimed towards complete new-comers to programming.

Before stating my question, let me quote something from the book:
Show nested quote +
when we refer to .NET, we mean the .NET 3.5 Framework; and when we refer to Visual Studio, we mean Visual Studio 2008.

I'm worried if it is a waste of my time reading this book when it's about .NET 3.5, when 4.0 is available, and if not, whether or not I can use Visual Studio 2010 as apposed to 2008 following the book. Do I have anthing to worry about, or should I find a book not as "old" as this one? Sorry I'm a bit clueless


I checked that book (http://msdn.microsoft.com/en-us/library/orm-9780596521066-01.aspx) and I do not think you will have any problems using VS2010 instead of 2008. If you are learning basics you wont find any difference wheter you use 2008 or 2010. And you dont have to be worried about .NET 3.5. I think that all the thinks you learn in 3.5 you can use in 4.0. Good luck!
Prev 1 68 69 70 71 72 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 8h 30m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
mouzHeroMarine 475
ZombieGrub49
gerald23 44
EmSc Tv 21
StarCraft: Brood War
Britney 10509
Dewaltoss 102
Dota 2
420jenkins216
League of Legends
JimRising 546
Super Smash Bros
Liquid`Ken10
Heroes of the Storm
Liquid`Hasu460
Other Games
summit1g6837
Grubby3801
FrodaN2614
fl0m1420
shahzam455
ArmadaUGS148
KnowMe85
Trikslyr53
Nina37
Organizations
Dota 2
PGL Dota 2 - Secondary Stream1574
StarCraft 2
TaKeTV 608
angryscii 27
EmSc Tv 21
EmSc2Tv 21
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 13 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• WagamamaTV373
League of Legends
• Scarra1447
Other Games
• Shiphtur248
Upcoming Events
Douyu Cup 2020
8h 30m
Maestros of the Game
16h
herO vs Classic
Maru vs Serral
BSL22 NKC (BSL vs China)
17h 30m
Douyu Cup 2020
1d 8h
BSL22 NKC (BSL vs China)
1d 17h
Online Event
1d 18h
RSL Revival
2 days
WardiTV Weekly
2 days
RSL Revival
3 days
RSL Revival
3 days
[ Show More ]
Bombastic Starleague
3 days
Kung Fu Cup
4 days
OSC
5 days
CrankTV Team League
5 days
Bombastic Starleague
5 days
Replay Cast
6 days
The PondCast
6 days
HomeStory Cup
6 days
Liquipedia Results

Completed

CSCL: Masked Kings S4
WardiTV Spring 2026
Heroes Pulsing #2

Ongoing

IPSL Spring 2026
Acropolis #4
YSL S3
BSL 22 Non-Korean Championship
CSL Season 21: Qualifier 1
CSL Season 21: Qualifier 2
SCTL 2026 Spring
Douyu Cup 2026
Maestros of the Game 2
Murky Cup 2026
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026
IEM Rio 2026

Upcoming

CSL 2026 Summer (S21)
CSLAN 4
Blizzard Classic Cup 2026
Kung Fu Cup 2026 Grand Finals
RSL Revival: Season 6
CranK Gathers Season 4: BW vs SC2 Team League
HSC XXIX
BCC 2026
Light Tournament 2026
Eternal Conflict S2 Finale
Eternal Conflict S2 E1
Heroes Pulsing #3
FISSURE Playground #5
BLAST Open Fall 2026
Esports World Cup 2026
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
Stake Ranked Episode 3
XSE Pro League 2026
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2026 TLnet. All Rights Reserved.