• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 05:39
CEST 11:39
KST 18:39
  • 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
TL.net Map Contest #21: Voting10[ASL20] Ro4 Preview: Descent11Team TLMC #5: Winners Announced!3[ASL20] Ro8 Preview Pt2: Holding On9Maestros of the Game: Live Finals Preview (RO4)5
Community News
Chinese SC2 server to reopen; live all-star event in Hangzhou16Weekly Cups (Oct 13-19): Clem Goes for Four0BSL Team A vs Koreans - Sat-Sun 16:00 CET6Weekly Cups (Oct 6-12): Four star herO85.0.15 Patch Balance Hotfix (2025-10-8)80
StarCraft 2
General
Chinese SC2 server to reopen; live all-star event in Hangzhou RotterdaM "Serral is the GOAT, and it's not close" Weekly Cups (March 17-23): Clem Bounces Back DreamHack Open 2013 revealed The New Patch Killed Mech!
Tourneys
$1,200 WardiTV October (Oct 21st-31st) SC2's Safe House 2 - October 18 & 19 INu's Battles #13 - ByuN vs Zoun Tenacious Turtle Tussle Sparkling Tuna Cup - Weekly Open Tournament
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 496 Endless Infection Mutation # 495 Rest In Peace Mutation # 494 Unstable Environment Mutation # 493 Quick Killers
Brood War
General
Is there anyway to get a private coach? BW General Discussion BGH Auto Balance -> http://bghmmr.eu/ BSL Season 21 OGN to release AI-upscaled StarLeague from Feb 24
Tourneys
300$ 3D!Community Brood War Super Cup #4 [ASL20] Semifinal B Azhi's Colosseum - Anonymous Tournament [Megathread] Daily Proleagues
Strategy
Current Meta Roaring Currents ASL final [I] Funny Protoss Builds/Strategies BW - ajfirecracker Strategy & Training
Other Games
General Games
Path of Exile Nintendo Switch Thread Stormgate/Frost Giant Megathread Dawn of War IV ZeroSpace Megathread
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine The Chess Thread Russo-Ukrainian War Thread Men's Fashion Thread
Fan Clubs
The herO Fan Club!
Media & Entertainment
Anime Discussion Thread Series you have seen recently... [Manga] One Piece Movie Discussion!
Sports
2024 - 2026 Football Thread TeamLiquid Health and Fitness Initiative For 2023 MLB/Baseball 2023 Formula 1 Discussion NBA General Discussion
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Recent Gifted Posts
Blogs
Our Last Hope in th…
KrillinFromwales
Certified Crazy
Hildegard
The Heroism of Pepe the Fro…
Peanutsc
Rocket League: Traits, Abili…
TrAiDoS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1093 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 21m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
OGKoka 205
SortOf 168
mcanning 63
StarCraft: Brood War
hero 1802
Flash 732
firebathero 417
GuemChi 359
Killer 339
Leta 259
Mini 188
Hyun 182
PianO 142
Soma 126
[ Show more ]
ZerO 107
ToSsGirL 76
Aegong 29
Free 25
Sacsri 15
Sharp 15
Rush 7
Bale 5
Mong 1
Dota 2
XaKoH 401
XcaliburYe169
canceldota73
League of Legends
JimRising 578
Counter-Strike
olofmeister1468
shoxiejesuss770
Stewie2K299
Other Games
summit1g7647
singsing798
ceh9571
B2W.Neo380
Hui .150
Mew2King56
Trikslyr13
ZerO(Twitch)6
Organizations
Other Games
gamesdonequick612
Counter-Strike
PGL270
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• LUISG 30
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• iopq 0
• STPLYoutube
• ZZZeroYoutube
Dota 2
• WagamamaTV507
League of Legends
• Jankos1812
• Lourlo755
Upcoming Events
Replay Cast
21m
OSC
6h 21m
Tenacious Turtle Tussle
13h 21m
The PondCast
1d
OSC
1d 2h
WardiTV Invitational
2 days
Online Event
2 days
RSL Revival
2 days
RSL Revival
3 days
WardiTV Invitational
3 days
[ Show More ]
Afreeca Starleague
3 days
Snow vs Soma
Sparkling Tuna Cup
4 days
WardiTV Invitational
4 days
CrankTV Team League
4 days
RSL Revival
4 days
Wardi Open
5 days
CrankTV Team League
5 days
Replay Cast
6 days
WardiTV Invitational
6 days
CrankTV Team League
6 days
Liquipedia Results

Completed

Acropolis #4 - TS2
WardiTV TLMC #15
HCC Europe

Ongoing

BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
C-Race Season 1
IPSL Winter 2025-26
EC S1
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
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

Upcoming

SC4ALL: Brood War
BSL Season 21
BSL 21 Team A
BSL 21 Non-Korean Championship
RSL Offline Finals
RSL Revival: Season 3
Stellar Fest
SC4ALL: StarCraft II
CranK Gathers Season 2: SC II Pro Teams
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 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.