• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 15:53
CET 20:53
KST 04:53
  • 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: The Forgotten Master of ZvT30Behind the Blue - Team Liquid History Book19Clem wins HomeStory Cup 289HomeStory Cup 28 - Info & Preview13Rongyi Cup S3 - Preview & Info8
Community News
BGE Stara Zagora 2026 cancelled7Blizzard Classic Cup - Tastosis announced as captains12Weekly Cups (March 2-8): ByuN overcomes PvT block4GSL CK - New online series18BSL Season 224
StarCraft 2
General
BGE Stara Zagora 2026 cancelled BGE Stara Zagora 2026 announced ByuL: The Forgotten Master of ZvT Terran AddOns placement Blizzard Classic Cup - Tastosis announced as captains
Tourneys
StarCraft Evolution League (SC Evo Biweekly) https://www.facebook.com/BubaSocks.Official/ [GSL CK] Team Maru vs. Team herO WardiTV Team League Season 10 Master Swan Open (Global Bronze-Master 2)
Strategy
Custom Maps
Publishing has been re-enabled! [Feb 24th 2026] Map Editor closed ?
External Content
The PondCast: SC2 News & Results Mutation # 516 Specter of Death Mutation # 515 Together Forever Mutation # 514 Ulnar New Year
Brood War
General
ASL21 General Discussion BGH Auto Balance -> http://bghmmr.eu/ BW General Discussion Gypsy to Korea Are you ready for ASL 21? Hype VIDEO
Tourneys
[Megathread] Daily Proleagues [BSL22] Open Qualifiers & Ladder Tours IPSL Spring 2026 is here! ASL Season 21 Qualifiers March 7-8
Strategy
Simple Questions, Simple Answers Soma's 9 hatch build from ASL Game 2 Fighting Spirit mining rates Zealot bombing is no longer popular?
Other Games
General Games
Stormgate/Frost Giant Megathread Path of Exile Nintendo Switch Thread PC Games Sales Thread No Man's Sky (PS4 and PC)
Dota 2
Official 'what is Dota anymore' discussion The Story of Wings Gaming
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Five o'clock TL Mafia Mafia Game Mode Feedback/Ideas Vanilla Mini Mafia TL Mafia Community Thread
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread Mexico's Drug War NASA and the Private Sector
Fan Clubs
The IdrA Fan Club
Media & Entertainment
Movie Discussion! [Req][Books] Good Fantasy/SciFi books [Manga] One Piece
Sports
Formula 1 Discussion 2024 - 2026 Football Thread General nutrition recommendations Cricket [SPORT] TL MMA Pick'em Pool 2013
World Cup 2022
Tech Support
Laptop capable of using Photoshop Lightroom?
TL Community
The Automated Ban List
Blogs
Iranian anarchists: organize…
XenOsky
FS++
Kraekkling
Shocked by a laser…
Spydermine0240
Gaming-Related Deaths
TrAiDoS
Unintentional protectionism…
Uldridge
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2549 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 4h 7m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
mouzHeroMarine 686
IndyStarCraft 107
ProTech107
JuggernautJason78
RushiSC 17
StarCraft: Brood War
sSak 60
scan(afreeca) 51
Dota 2
Gorgc4875
canceldota62
Counter-Strike
fl0m3288
byalli834
Heroes of the Storm
Liquid`Hasu264
Khaldor163
Other Games
gofns46544
tarik_tv16545
Grubby2888
FrodaN2144
summit1g1426
Beastyqt638
B2W.Neo519
KnowMe465
DeMusliM169
C9.Mang0131
Livibee59
Organizations
Dota 2
PGL Dota 2 - Main Stream13987
Other Games
gamesdonequick1755
ComeBackTV 271
BasetradeTV76
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 18 non-featured ]
StarCraft 2
• StrangeGG 48
• Kozan
• LaughNgamezSOOP
• sooper7s
• AfreecaTV YouTube
• intothetv
• Migwel
• IndyKCrew
StarCraft: Brood War
• blackmanpl 42
• RayReign 8
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• lizZardDota255
League of Legends
• Doublelift1648
• TFBlade1408
Other Games
• imaqtpie1139
• Shiphtur178
Upcoming Events
Replay Cast
4h 7m
CranKy Ducklings
14h 7m
RSL Revival
14h 7m
MaxPax vs Rogue
Clem vs Bunny
WardiTV Team League
16h 7m
uThermal 2v2 Circuit
21h 7m
BSL
1d
Sparkling Tuna Cup
1d 14h
RSL Revival
1d 14h
ByuN vs SHIN
Maru vs Krystianer
WardiTV Team League
1d 16h
Patches Events
1d 21h
[ Show More ]
BSL
2 days
Replay Cast
2 days
Replay Cast
2 days
Wardi Open
2 days
Monday Night Weeklies
2 days
WardiTV Team League
3 days
GSL
4 days
The PondCast
5 days
WardiTV Team League
5 days
Replay Cast
6 days
WardiTV Team League
6 days
Liquipedia Results

Completed

Proleague 2026-03-12
WardiTV Winter 2026
Underdog Cup #3

Ongoing

KCM Race Survival 2026 Season 1
Jeongseon Sooper Cup
BSL Season 22
Proleague 2026-03-13
RSL Revival: Season 4
Nations Cup 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual

Upcoming

CSL Elite League 2026
ASL Season 21
Acropolis #4 - TS6
2026 Changsha Offline CUP
Acropolis #4
IPSL Spring 2026
CSLAN 4
HSC XXIX
uThermal 2v2 2026 Main Event
NationLESS Cup
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 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.