• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 21:33
CEST 03:33
KST 10:33
  • 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
RSL Season 1 - Final Week4[ASL19] Finals Recap: Standing Tall10HomeStory Cup 27 - Info & Preview18Classic wins Code S Season 2 (2025)16Code S RO4 & Finals Preview: herO, Rogue, Classic, GuMiho0
Community News
Firefly given lifetime ban by ESIC following match-fixing investigation17$25,000 Streamerzone StarCraft Pro Series announced6Weekly Cups (June 30 - July 6): Classic Doubles6[BSL20] Non-Korean Championship 4x BSL + 4x China10Flash Announces Hiatus From ASL70
StarCraft 2
General
RSL Revival patreon money discussion thread The GOAT ranking of GOAT rankings We need to be discussing a new patch right now! Firefly given lifetime ban by ESIC following match-fixing investigation RSL Season 1 - Final Week
Tourneys
RSL: Revival, a new crowdfunded tournament series FEL Cracov 2025 (July 27) - $8000 live event Sparkling Tuna Cup - Weekly Open Tournament $25,000 Streamerzone StarCraft Pro Series announced WardiTV Mondays
Strategy
How did i lose this ZvP, whats the proper response Simple Questions Simple Answers
Custom Maps
[UMS] Zillion Zerglings
External Content
Mutation # 481 Fear and Lava Mutation # 480 Moths to the Flame Mutation # 479 Worn Out Welcome Mutation # 478 Instant Karma
Brood War
General
BW General Discussion A cwal.gg Extension - Easily keep track of anyone ASL20 Preliminary Maps BGH Auto Balance -> http://bghmmr.eu/ Script to open stream directly using middle click
Tourneys
Small VOD Thread 2.0 [Megathread] Daily Proleagues Last Minute Live-Report Thread Resource! [BSL20] Non-Korean Championship 4x BSL + 4x China
Strategy
Simple Questions, Simple Answers I am doing this better than progamers do.
Other Games
General Games
Path of Exile CCLP - Command & Conquer League Project Stormgate/Frost Giant Megathread The PlayStation 5 Nintendo Switch Thread
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread The Accidental Video Game Porn Archive Stop Killing Games - European Citizens Initiative
Fan Clubs
SKT1 Classic Fan Club! Maru Fan Club
Media & Entertainment
Movie Discussion! [Manga] One Piece Anime Discussion Thread [\m/] Heavy Metal Thread
Sports
2024 - 2025 Football Thread Formula 1 Discussion NBA General Discussion TeamLiquid Health and Fitness Initiative For 2023 NHL Playoffs 2024
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List
Blogs
Men Take Risks, Women Win Ga…
TrAiDoS
momentary artworks from des…
tankgirl
from making sc maps to makin…
Husyelt
StarCraft improvement
iopq
Trip to the Zoo
micronesia
Customize Sidebar...

Website Feedback

Closed Threads



Active: 542 users

The Big Programming Thread - Page 706

Forum Index > General Forum
Post a Reply
Prev 1 704 705 706 707 708 1031 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
Thaniri
Profile Blog Joined March 2011
1264 Posts
Last Edited: 2016-02-24 16:49:25
February 24 2016 16:48 GMT
#14101
If that is actually the example code, then if it had supporting documentation it'd be understandable.

+ Show Spoiler +


function convert(num) {
var holder = "";

while (num > 0){
if(num >= 1000){
num = num - 1000;
holder = holder + "M";
}
else if(num >= 900){
num = num - 900;
holder = holder + "CM";
}
else if(num >= 500){
num = num - 500;
holder = holder + "D";
}
else if(num >= 400){
num = num - 400;
holder = holder + "CD";
}
else if(num >= 100){
num = num - 100;
holder = holder + "C";
}
else if(num >= 90){
num = num - 90;
holder = holder + "XC";
}
else if(num >= 50){
num = num - 50;
holder = holder + "L";
}
else if(num >= 40){
num = num - 40;
holder = holder + "XL";
}
else if(num >= 10){
num = num - 10;
holder = holder + "X";
}
else if(num >= 9){
num = num - 9;
holder = holder + "IX";
}
else if(num >= 5){
num = num -5;
holder = holder + "V";
}
else if(num >= 4){
num = num - 4;
holder = holder + "IV";
}
else if (num >= 1){
num = num -1;
holder = holder + "I";
}
}
return holder;
}

convert(36);



I'm a pretty shit programmer, and here is a script to convert from decimal to roman numerals. Does this code evoke similar emotions when you look at it?

Was thinking of building a calculator that had binary, decimal, hexadecimal, and roman numeral for my own learning.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
Last Edited: 2016-02-24 17:03:38
February 24 2016 17:01 GMT
#14102
On February 25 2016 01:48 Thaniri wrote:
If that is actually the example code, then if it had supporting documentation it'd be understandable.

+ Show Spoiler +


function convert(num) {
var holder = "";

while (num > 0){
if(num >= 1000){
num = num - 1000;
holder = holder + "M";
}
else if(num >= 900){
num = num - 900;
holder = holder + "CM";
}
else if(num >= 500){
num = num - 500;
holder = holder + "D";
}
else if(num >= 400){
num = num - 400;
holder = holder + "CD";
}
else if(num >= 100){
num = num - 100;
holder = holder + "C";
}
else if(num >= 90){
num = num - 90;
holder = holder + "XC";
}
else if(num >= 50){
num = num - 50;
holder = holder + "L";
}
else if(num >= 40){
num = num - 40;
holder = holder + "XL";
}
else if(num >= 10){
num = num - 10;
holder = holder + "X";
}
else if(num >= 9){
num = num - 9;
holder = holder + "IX";
}
else if(num >= 5){
num = num -5;
holder = holder + "V";
}
else if(num >= 4){
num = num - 4;
holder = holder + "IV";
}
else if (num >= 1){
num = num -1;
holder = holder + "I";
}
}
return holder;
}

convert(36);



I'm a pretty shit programmer, and here is a script to convert from decimal to roman numerals. Does this code evoke similar emotions when you look at it?

Was thinking of building a calculator that had binary, decimal, hexadecimal, and roman numeral for my own learning.

You certainly can code that a lot better by introducing a map of roman numerals to decimal values (I = 1, IV = 4, V = 5...) and then looking up the best fit each time. You basically reduce your loop to a single of these if blocks.

It would also be flexible enough to support the unary system (map is just I = 1) and a variety of completely stupid other systems you could invent on the spot.
If you have a good reason to disagree with the above, please tell me. Thank you.
Ropid
Profile Joined March 2009
Germany3557 Posts
February 24 2016 17:06 GMT
#14103
On February 25 2016 01:48 Thaniri wrote:
If that is actually the example code, then if it had supporting documentation it'd be understandable.

+ Show Spoiler +


function convert(num) {
var holder = "";

while (num > 0){
if(num >= 1000){
num = num - 1000;
holder = holder + "M";
}
else if(num >= 900){
num = num - 900;
holder = holder + "CM";
}
else if(num >= 500){
num = num - 500;
holder = holder + "D";
}
else if(num >= 400){
num = num - 400;
holder = holder + "CD";
}
else if(num >= 100){
num = num - 100;
holder = holder + "C";
}
else if(num >= 90){
num = num - 90;
holder = holder + "XC";
}
else if(num >= 50){
num = num - 50;
holder = holder + "L";
}
else if(num >= 40){
num = num - 40;
holder = holder + "XL";
}
else if(num >= 10){
num = num - 10;
holder = holder + "X";
}
else if(num >= 9){
num = num - 9;
holder = holder + "IX";
}
else if(num >= 5){
num = num -5;
holder = holder + "V";
}
else if(num >= 4){
num = num - 4;
holder = holder + "IV";
}
else if (num >= 1){
num = num -1;
holder = holder + "I";
}
}
return holder;
}

convert(36);



I'm a pretty shit programmer, and here is a script to convert from decimal to roman numerals. Does this code evoke similar emotions when you look at it?

Was thinking of building a calculator that had binary, decimal, hexadecimal, and roman numeral for my own learning.

When you notice you are doing something like that, where you copy'n'paste in your editor and edit slightly each time you paste, the different programming languages usually have some feature you could use. You could do this repetition through your code instead of in your editor. The benefit would be that you can change everything at once if you find a mistake or want add something.
"My goal is to replace my soul with coffee and become immortal."
Mr. Wiggles
Profile Blog Joined August 2010
Canada5894 Posts
February 24 2016 17:14 GMT
#14104
On February 25 2016 02:01 spinesheath wrote:
Show nested quote +
On February 25 2016 01:48 Thaniri wrote:
If that is actually the example code, then if it had supporting documentation it'd be understandable.

+ Show Spoiler +


function convert(num) {
var holder = "";

while (num > 0){
if(num >= 1000){
num = num - 1000;
holder = holder + "M";
}
else if(num >= 900){
num = num - 900;
holder = holder + "CM";
}
else if(num >= 500){
num = num - 500;
holder = holder + "D";
}
else if(num >= 400){
num = num - 400;
holder = holder + "CD";
}
else if(num >= 100){
num = num - 100;
holder = holder + "C";
}
else if(num >= 90){
num = num - 90;
holder = holder + "XC";
}
else if(num >= 50){
num = num - 50;
holder = holder + "L";
}
else if(num >= 40){
num = num - 40;
holder = holder + "XL";
}
else if(num >= 10){
num = num - 10;
holder = holder + "X";
}
else if(num >= 9){
num = num - 9;
holder = holder + "IX";
}
else if(num >= 5){
num = num -5;
holder = holder + "V";
}
else if(num >= 4){
num = num - 4;
holder = holder + "IV";
}
else if (num >= 1){
num = num -1;
holder = holder + "I";
}
}
return holder;
}

convert(36);



I'm a pretty shit programmer, and here is a script to convert from decimal to roman numerals. Does this code evoke similar emotions when you look at it?

Was thinking of building a calculator that had binary, decimal, hexadecimal, and roman numeral for my own learning.

You certainly can code that a lot better by introducing a map of roman numerals to decimal values (I = 1, IV = 4, V = 5...) and then looking up the best fit each time. You basically reduce your loop to a single of these if blocks.

It would also be flexible enough to support the unary system (map is just I = 1) and a variety of completely stupid other systems you could invent on the spot.

If you use an ordered map, of decimal to numeral, you can just iterate in reverse through the keys, as well. Then the only check is to make sure you don't drop below 0 when subtracting.
you gotta dance
Manit0u
Profile Blog Joined August 2004
Poland17247 Posts
Last Edited: 2016-02-24 19:18:39
February 24 2016 18:11 GMT
#14105
On February 25 2016 01:48 Thaniri wrote:
If that is actually the example code, then if it had supporting documentation it'd be understandable.

+ Show Spoiler +


function convert(num) {
var holder = "";

while (num > 0){
if(num >= 1000){
num = num - 1000;
holder = holder + "M";
}
else if(num >= 900){
num = num - 900;
holder = holder + "CM";
}
else if(num >= 500){
num = num - 500;
holder = holder + "D";
}
else if(num >= 400){
num = num - 400;
holder = holder + "CD";
}
else if(num >= 100){
num = num - 100;
holder = holder + "C";
}
else if(num >= 90){
num = num - 90;
holder = holder + "XC";
}
else if(num >= 50){
num = num - 50;
holder = holder + "L";
}
else if(num >= 40){
num = num - 40;
holder = holder + "XL";
}
else if(num >= 10){
num = num - 10;
holder = holder + "X";
}
else if(num >= 9){
num = num - 9;
holder = holder + "IX";
}
else if(num >= 5){
num = num -5;
holder = holder + "V";
}
else if(num >= 4){
num = num - 4;
holder = holder + "IV";
}
else if (num >= 1){
num = num -1;
holder = holder + "I";
}
}
return holder;
}

convert(36);



I'm a pretty shit programmer, and here is a script to convert from decimal to roman numerals. Does this code evoke similar emotions when you look at it?

Was thinking of building a calculator that had binary, decimal, hexadecimal, and roman numeral for my own learning.


This is basically a single if/else block inside a while loop. Nothing scary about that. It's when your nesting goes deeper than that when you begin to distinguish the faint code smell.

Edit: Also, note the fact that what I posted was simply the blocks in the code. What you should imagine is that each of those functions (maybe except the firs one) is spanning at least 500 lines and doing some stuff on arrays... Oh, and anyone who wrote it obviously never heard of comments. Nightmare.
Time is precious. Waste it wisely.
Wrath
Profile Blog Joined July 2014
3174 Posts
February 29 2016 18:43 GMT
#14106
TeamLiquid front end developers. I call upon you!

I'm applying for a frond end developer position and I have 0 experience. Please tell me what I should expect in the interview (If I was lucky enough to reach there...).
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
February 29 2016 23:42 GMT
#14107
I'm very inexperienced with it too, but they'll probably get you to write some basic js functions, use JSON in there to interface with something else, have familiarity with Bootstrap or some other framework and design a basic website template from scratch. Depends on what the position focuses on, really. If the job focuses in one area then obviously that'll be more important for the interview.
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
March 01 2016 01:55 GMT
#14108
--- Nuked ---
Manit0u
Profile Blog Joined August 2004
Poland17247 Posts
Last Edited: 2016-03-01 02:50:02
March 01 2016 02:47 GMT
#14109
With JS you should familiarize yourself with the module pattern (it'll make understanding libraries like jQuery a lot easier).

With HTML you should learn when to use which tags and some of the more complex ones (video, iframes etc.). It's really important. Also, knowing how to apply aria labels might be a huge bonus (but I doubt most interviewers will ask about it).

For CSS you should really learn something more than pure CSS (no one I know writes in pure CSS any more). LESS or SASS is the way to go.

Basically, you should focus on 2 thigs first: jQuery + Bootstrap since those are most commonly used libraries and if you know them it'll be easier to learn others.

If you have 0 experience I suggest that for the first week you read up on stuff and start with some (not that easy stuff).

Task 1:
Create a single HTML page, no JS, no Bootstrap, just pure HTML and CSS (can be LESS or SASS). But, you have to create some specific elements for it:
a) header
b) left section (1/3rd width)
c) right section (2/3rds width)
d) footer

Now, your job is to make sure that the footer is always on the bottom. It can never go above the bottom side of your screen (it can go below). Left and right sections must be of the same height, regardless of the amount of content you put in each of them (tip: give each element a different background color so you can see them better). Layout can't break if you resize your window (it can scale, but elements can't overlap or disappear suddenly).

This is much harder than you think.

Task 2:
Do the same with Bootstrap (and see how easy it can be).

After that you should just practice adding more stuff to your page. Dropdown menus, modals, sliders, carousels etc.

With that, you'll at least have some decent basics under your belt.

Also, here's a very good thing for every front-end developer:
https://www.google.com/design/spec/material-design/introduction.html
Time is precious. Waste it wisely.
killa_robot
Profile Joined May 2010
Canada1884 Posts
March 01 2016 02:59 GMT
#14110
On March 01 2016 03:43 WrathSCII wrote:
TeamLiquid front end developers. I call upon you!

I'm applying for a frond end developer position and I have 0 experience. Please tell me what I should expect in the interview (If I was lucky enough to reach there...).


Give up because the market is over saturated and they'll just hire someone with lots of experience or someone who has created their own projects over you.

If you're really interested, then work on some open-source projects to build up your resume.
tofucake
Profile Blog Joined October 2009
Hyrule19033 Posts
March 01 2016 03:05 GMT
#14111
I've actually found that there's more jobs than developers...
Liquipediaasante sana squash banana
-Zoda-
Profile Blog Joined April 2011
France3578 Posts
March 01 2016 06:14 GMT
#14112
Dunno about the US but most of the time I hear there are many jobs but many applications.
I'm sort of in the same case as you, so I can't give much advice. I'm following general IT courses atm so I'm leaning a bit more on the full-stack side (but that doesn't mean much with very little experience).
♪ 最初はi つなぐdo それ つまりlife 常に移動 ♪ - IGN: Uhryks
Manit0u
Profile Blog Joined August 2004
Poland17247 Posts
March 01 2016 11:41 GMT
#14113
On March 01 2016 11:59 killa_robot wrote:
Show nested quote +
On March 01 2016 03:43 WrathSCII wrote:
TeamLiquid front end developers. I call upon you!

I'm applying for a frond end developer position and I have 0 experience. Please tell me what I should expect in the interview (If I was lucky enough to reach there...).


Give up because the market is over saturated and they'll just hire someone with lots of experience or someone who has created their own projects over you.

If you're really interested, then work on some open-source projects to build up your resume.


That's like the worst advice ever. Sure, he might not get a job on his first interview (or even fourth) but I'm sure that if he'll take note of the questions asked, learn about it and try again he'll eventually get there. I know I did. A little over 2 years ago I was in the same spot as he is in now (no previous experience, looking for a front-end dev job) and now I'm a senior back-end developer with people spamming me with 3 job offers each day.

It's all a matter of determination and willingness to learn.
Time is precious. Waste it wisely.
Wrath
Profile Blog Joined July 2014
3174 Posts
March 01 2016 13:34 GMT
#14114
^ Thanks for the awesome words, you sure encouraged me to continue on my eternal task of getting away from the administration shit.

I'm more interested on how you ended up being a senior back-end developer when you were looking for a front-end dev job.
Manit0u
Profile Blog Joined August 2004
Poland17247 Posts
March 01 2016 13:42 GMT
#14115
On March 01 2016 22:34 WrathSCII wrote:
^ Thanks for the awesome words, you sure encouraged me to continue on my eternal task of getting away from the administration shit.

I'm more interested on how you ended up being a senior back-end developer when you were looking for a front-end dev job.


I slowly shifted my focus after discovering that front-end is not the place where I want to be... You'll do a couple of "pixel perfect" projects and you'll be puking with it too
Time is precious. Waste it wisely.
Wrath
Profile Blog Joined July 2014
3174 Posts
March 01 2016 14:08 GMT
#14116
On March 01 2016 22:42 Manit0u wrote:
Show nested quote +
On March 01 2016 22:34 WrathSCII wrote:
^ Thanks for the awesome words, you sure encouraged me to continue on my eternal task of getting away from the administration shit.

I'm more interested on how you ended up being a senior back-end developer when you were looking for a front-end dev job.


I slowly shifted my focus after discovering that front-end is not the place where I want to be... You'll do a couple of "pixel perfect" projects and you'll be puking with it too


Well, the reason I'm going for front-end development is because it is the most available job for now. If it was up to me that I could do whatever I wanted to do, I would have chosen something emulating and the low low level like assembly and stuff.

The most language I love is C and C++. But it is just impossible to get jobs with fields like that where I live...
Manit0u
Profile Blog Joined August 2004
Poland17247 Posts
March 01 2016 14:29 GMT
#14117
Well, the good thing about front-end development is that it doesn't really marry you to a specific back-end language, which translates into more opportunities to find a job.
Time is precious. Waste it wisely.
tofucake
Profile Blog Joined October 2009
Hyrule19033 Posts
March 01 2016 14:35 GMT
#14118
yeah but like 70% of the time it'll be php
Liquipediaasante sana squash banana
Manit0u
Profile Blog Joined August 2004
Poland17247 Posts
March 01 2016 14:54 GMT
#14119
On March 01 2016 23:35 tofucake wrote:
yeah but like 70% of the time it'll be php


Can't help the fact that over 80% of websites run on PHP. But there's also plenty of work in SaaS and ERP departments - it's mostly back-end though.
Time is precious. Waste it wisely.
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
March 02 2016 01:59 GMT
#14120
What's the module pattern?
There is no one like you in the universe.
Prev 1 704 705 706 707 708 1031 Next
Please log in or register to reply.
Live Events Refresh
The PiG Daily
22:50
Best Games of SC
Clem vs ByuN
SHIN vs GuMiho
PiGStarcraft500
LiquipediaDiscussion
SC Evo Complete
22:00
Enki Epic Ser. Taeja vs soO EN
davetesta64
Liquipedia
OSC
20:00
Mid Season Playoffs
Spirit vs GeraldLIVE!
Solar vs ShoWTimE
SteadfastSC165
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
PiGStarcraft500
Nina 188
SteadfastSC 165
RuFF_SC2 61
Vindicta 21
StarCraft: Brood War
Aegong 78
NaDa 29
Icarus 7
Stormgate
NightEnD10
Dota 2
monkeys_forever755
canceldota169
NeuroSwarm119
League of Legends
JimRising 788
febbydoto14
Super Smash Bros
hungrybox416
Heroes of the Storm
Khaldor130
Other Games
summit1g8761
C9.Mang0195
ViBE145
Trikslyr74
Organizations
Other Games
gamesdonequick43400
BasetradeTV34
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• Berry_CruncH122
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• Azhi_Dahaki21
• Pr0nogo 3
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Jankos1985
Other Games
• Scarra743
Upcoming Events
RSL Revival
8h 27m
SHIN vs Clem
Cure vs TBD
FEL
10h 27m
FEL
14h 27m
Gerald vs PAPI
Spirit vs ArT
CSO Cup
14h 27m
BSL20 Non-Korean Champi…
16h 27m
Bonyth vs QiaoGege
Dewalt vs Fengzi
Hawk vs Zhanhun
Sziky vs Mihu
Mihu vs QiaoGege
Zhanhun vs Sziky
Fengzi vs Hawk
DaveTesta Events
16h 27m
Sparkling Tuna Cup
1d 8h
RSL Revival
1d 8h
Classic vs TBD
FEL
1d 13h
BSL20 Non-Korean Champi…
1d 16h
Bonyth vs Dewalt
QiaoGege vs Dewalt
Hawk vs Bonyth
Sziky vs Fengzi
Mihu vs Zhanhun
QiaoGege vs Zhanhun
Fengzi vs Mihu
[ Show More ]
Wardi Open
2 days
Replay Cast
3 days
WardiTV European League
3 days
PiGosaur Monday
3 days
uThermal 2v2 Circuit
4 days
Replay Cast
4 days
The PondCast
5 days
Replay Cast
5 days
Epic.LAN
6 days
Liquipedia Results

Completed

KCM Race Survival 2025 Season 2
HSC XXVII
NC Random Cup

Ongoing

JPL Season 2
BSL 2v2 Season 3
Acropolis #3
CSL 17: 2025 SUMMER
Copa Latinoamericana 4
Jiahua Invitational
2025 ACS Season 2: Qualifier
CSLPRO Last Chance 2025
Championship of Russia 2025
RSL Revival: Season 1
Murky Cup #2
BLAST.tv Austin Major 2025
ESL Impact League Season 7
IEM Dallas 2025
PGL Astana 2025
Asian Champions League '25
BLAST Rivals Spring 2025
MESA Nomadic Masters

Upcoming

CSL Xiamen Invitational
CSL Xiamen Invitational: ShowMatche
2025 ACS Season 2
CSLPRO Chat StarLAN 3
K-Championship
uThermal 2v2 Main Event
SEL Season 2 Championship
FEL Cracov 2025
Esports World Cup 2025
Underdog Cup #2
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1
TLPD

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

Advertising | Privacy Policy | Terms Of Use | Contact Us

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