• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 08:50
CEST 14:50
KST 21:50
  • 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
[ASL19] Finals Recap: Standing Tall9HomeStory Cup 27 - Info & Preview18Classic wins Code S Season 2 (2025)16Code S RO4 & Finals Preview: herO, Rogue, Classic, GuMiho0TL Team Map Contest #5: Presented by Monster Energy6
Community News
Flash Announces Hiatus From ASL62Weekly Cups (June 23-29): Reynor in world title form?13FEL Cracov 2025 (July 27) - $8000 live event21Esports World Cup 2025 - Final Player Roster16Weekly Cups (June 16-22): Clem strikes back1
StarCraft 2
General
Program: SC2 / XSplit / OBS Scene Switcher The SCII GOAT: A statistical Evaluation Statistics for vetoed/disliked maps Weekly Cups (June 23-29): Reynor in world title form? PiG Sty Festival #5: Playoffs Preview + Groups Recap
Tourneys
RSL: Revival, a new crowdfunded tournament series Sparkling Tuna Cup - Weekly Open Tournament WardiTV Mondays FEL Cracov 2025 (July 27) - $8000 live event Korean Starcraft League Week 77
Strategy
How did i lose this ZvP, whats the proper response Simple Questions Simple Answers
Custom Maps
[UMS] Zillion Zerglings
External Content
Mutation # 480 Moths to the Flame Mutation # 479 Worn Out Welcome Mutation # 478 Instant Karma Mutation # 477 Slow and Steady
Brood War
General
Player “Jedi” cheat on CSL SC uni coach streams logging into betting site Flash Announces Hiatus From ASL Practice Partners (Official) ASL20 Preliminary Maps
Tourneys
[BSL20] Grand Finals - Sunday 20:00 CET [Megathread] Daily Proleagues Small VOD Thread 2.0 [BSL20] GosuLeague RO16 - Tue & Wed 20:00+CET
Strategy
Simple Questions, Simple Answers I am doing this better than progamers do.
Other Games
General Games
Path of Exile Stormgate/Frost Giant Megathread Nintendo Switch Thread What do you want from future RTS games? Beyond All Reason
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 Russo-Ukrainian War Thread Summer Games Done Quick 2025! Trading/Investing Thread Things Aren’t Peaceful in Palestine
Fan Clubs
SKT1 Classic Fan Club! Maru Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece [\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
Blogs
Culture Clash in Video Games…
TrAiDoS
from making sc maps to makin…
Husyelt
Blog #2
tankgirl
StarCraft improvement
iopq
Trip to the Zoo
micronesia
Customize Sidebar...

Website Feedback

Closed Threads



Active: 624 users

The Big Programming Thread - Page 708

Forum Index > General Forum
Post a Reply
Prev 1 706 707 708 709 710 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.
NovemberstOrm
Profile Blog Joined September 2011
Canada16217 Posts
March 06 2016 08:22 GMT
#14141
On March 05 2016 21:41 Manit0u wrote:
Show nested quote +
On March 05 2016 16:14 NovemberstOrm wrote:
I'm creating an application in VB.net, I need to have a next record/prev record button, I'm using hashtables atm, any ideas?


Can't you just call next() and previous() on a collection?

Show nested quote +
On March 05 2016 20:54 tofucake wrote:
On March 05 2016 13:32 Manit0u wrote:
What do you mean by "text not written in Windows"? I've never had problems with assetic on either Linux or Windows.

Here are some things that might help you:
http://stackoverflow.com/questions/19219578/nginx-and-css-issue

Also: Why Chromium? T_T


.align-go {
transform: translateY(75%);
-webkit-transform: translateY(75%);
}

^ was written in Windows and works. Anything else I type in Arch goes to null.


sendfile off worked though, thanks


Really strange...

In the meantime, I've found another cool article/FAQ on Nginx:
https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/


Thanks I figured it out!
Moderatorlickypiddy
Manit0u
Profile Blog Joined August 2004
Poland17243 Posts
Last Edited: 2016-03-08 12:47:33
March 08 2016 12:45 GMT
#14142
So, I've just got out of a job interview. The test was harder than I thought, since it was a lot about the fundamentals and if you've been working with OOP and high level abstractions for the past 2 years you tend to forget some of the basics. Still, was nice to take it. Here's the PHP part for anyone interested (all of the questions were about the output):

1.

$t = ['one', 'two', 'three'];

echo $t[1][2];


2.

$a = 4;
$b = &$a;
$c = 5;
$a = $c;

echo $b;


3.

function abc() {
return func_get_arg(1);
}

echo abc('a', 'b', 'c');


4.

function f() { }

var_dump(f());


5.

$a = 0;
$b = [];

while (++$a <= 6)
$b[] = $a++;

echo implode($a, $b);


+ Show Spoiler +

The firs one is really evil. I completely forgot about this PHP quirk, where even if you supposedly try to call a multi-dimensinal array index, if element at next-to-last index is a string, it'll treat this string as a char array...
Time is precious. Waste it wisely.
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
Last Edited: 2016-03-08 12:58:06
March 08 2016 12:57 GMT
#14143
On March 08 2016 21:45 Manit0u wrote:
So, I've just got out of a job interview. The test was harder than I thought, since it was a lot about the fundamentals and if you've been working with OOP and high level abstractions for the past 2 years you tend to forget some of the basics. Still, was nice to take it. Here's the PHP part for anyone interested (all of the questions were about the output):

+ Show Spoiler +

1.

$t = ['one', 'two', 'three'];

echo $t[1][2];


2.

$a = 4;
$b = &$a;
$c = 5;
$a = $c;

echo $b;


3.

function abc() {
return func_get_arg(1);
}

echo abc('a', 'b', 'c');


4.

function f() { }

var_dump(f());


5.

$a = 0;
$b = [];

while (++$a <= 6)
$b[] = $a++;

echo implode($a, $b);


+ Show Spoiler +

The firs one is really evil. I completely forgot about this PHP quirk, where even if you supposedly try to call a multi-dimensinal array index, if element at next-to-last index is a string, it'll treat this string as a char array...


I probably would have walked out. Those are terrible questions with no real world application. Well, #5 is sort of relevant since such algorithms can easily lead to bugs, but writing code like that is a sin anyways and if I ever see something like that in production, I will strangle the person responsible myself. I hate interview tests that ask for useless trivia instead of actually testing ability.
tofucake
Profile Blog Joined October 2009
Hyrule19030 Posts
March 08 2016 13:30 GMT
#14144
Yeah these are dumb questions :\
Liquipediaasante sana squash banana
Manit0u
Profile Blog Joined August 2004
Poland17243 Posts
Last Edited: 2016-03-08 14:41:51
March 08 2016 14:40 GMT
#14145
On March 08 2016 21:57 Morfildur wrote:
Show nested quote +
On March 08 2016 21:45 Manit0u wrote:
So, I've just got out of a job interview. The test was harder than I thought, since it was a lot about the fundamentals and if you've been working with OOP and high level abstractions for the past 2 years you tend to forget some of the basics. Still, was nice to take it. Here's the PHP part for anyone interested (all of the questions were about the output):

+ Show Spoiler +

1.

$t = ['one', 'two', 'three'];

echo $t[1][2];


2.

$a = 4;
$b = &$a;
$c = 5;
$a = $c;

echo $b;


3.

function abc() {
return func_get_arg(1);
}

echo abc('a', 'b', 'c');


4.

function f() { }

var_dump(f());


5.

$a = 0;
$b = [];

while (++$a <= 6)
$b[] = $a++;

echo implode($a, $b);


+ Show Spoiler +

The firs one is really evil. I completely forgot about this PHP quirk, where even if you supposedly try to call a multi-dimensinal array index, if element at next-to-last index is a string, it'll treat this string as a char array...


I probably would have walked out. Those are terrible questions with no real world application. Well, #5 is sort of relevant since such algorithms can easily lead to bugs, but writing code like that is a sin anyways and if I ever see something like that in production, I will strangle the person responsible myself. I hate interview tests that ask for useless trivia instead of actually testing ability.


I thought more of it as "do you know the basics" like how pointers work, what's the default return value of a function, what's the difference between pre- and post- increment etc.

Still, was expecting something completely different since in their offer they stated that 2+ years of experience is a requirement. Came in expecting questions about hydration strategies, event listeners, RESTful service implementations and such. Instead I got this, had to construct a db query with some joins and iterate over DOM elements with jQuery. All very basic stuff.
Time is precious. Waste it wisely.
Cynry
Profile Blog Joined August 2010
810 Posts
March 08 2016 15:45 GMT
#14146
What's roughly your skillset Manit0u ?
I'm seeing a lot of job offers (small missions mostly) going by these days, usually web apps, so if you're into that..
Manit0u
Profile Blog Joined August 2004
Poland17243 Posts
Last Edited: 2016-03-08 16:49:15
March 08 2016 16:41 GMT
#14147
On March 09 2016 00:45 Cynry wrote:
What's roughly your skillset Manit0u ?
I'm seeing a lot of job offers (small missions mostly) going by these days, usually web apps, so if you're into that..


I'm primarily a PHP developer. Used to do a bit of front-end work but for the past 1+ years I've been doing mostly back-end stuff (so it would be advanced PHP and intermediate JavaScript for the most part for me, I also know my way around CSS and HTML but have been a bit out of touch with those lately). If you need help with some smaller projects I believe I could help out, especially that I have a lot more leeway now that I've started my own one-man company and am mostly employed on a b2b basis

I did take part in a multitude of projects. From simple webpage portfolios, Magento- and Sylius-based e-commerce to various ERP solutions (this past year I've been dealing almost exclusively in DMS, QMS, SaaS and the like).
Time is precious. Waste it wisely.
Itsmedudeman
Profile Blog Joined March 2011
United States19229 Posts
March 09 2016 04:18 GMT
#14148
So let's see if I can word my question properly, but when I'm sending data to something like a jsp page from a servlet should I be flattening out that data? For example, I have an object in java that I want to send over but rather than having the jsp page fetch its details through getters should I instead lay it out in a simplified json/xml format?
Manit0u
Profile Blog Joined August 2004
Poland17243 Posts
March 09 2016 13:29 GMT
#14149
Aren't jsp pages parsed by jvm anyway? It doesn't matter what form your data takes there. It's just a matter of displaying it to the user. You should use json and xml as return data from your services to external resources (unless you somehow need them in that format in your view).
Time is precious. Waste it wisely.
Chocolate
Profile Blog Joined December 2010
United States2350 Posts
March 11 2016 08:24 GMT
#14150
The firs one is really evil. I completely forgot about this PHP quirk, where even if you supposedly try to call a multi-dimensinal array index, if element at next-to-last index is a string, it'll treat this string as a char array...


I don't use PHP but that seems like something the compiler should warn you about, shitty interview question though, why should you need to know all of PHP's weird quirks? That could be a career unto itself
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
March 11 2016 09:16 GMT
#14151
On March 11 2016 17:24 Chocolate wrote:
Show nested quote +
The firs one is really evil. I completely forgot about this PHP quirk, where even if you supposedly try to call a multi-dimensinal array index, if element at next-to-last index is a string, it'll treat this string as a char array...


I don't use PHP but that seems like something the compiler should warn you about, shitty interview question though, why should you need to know all of PHP's weird quirks? That could be a career unto itself


Usually such interview questions are the result of "clever" programmers that created a code base based on such quirks, and now they look for someone who understands their "clever" code.

Either way, PHP doesn't warn you about a lot of things, especially if you don't enable all the warning and strict flags, so it's easy for messy code to end up working by random chance. JavaScript might have a reputation as a terrible language - in my opinion unfounded -, but I much rather develop Node.js applications than PHP. PHP has too many quirks that just annoy me all the time.
iaretehnoob
Profile Joined June 2004
Sweden741 Posts
March 11 2016 13:18 GMT
#14152
I don't think "strings are character arrays" qualifies as a quirk.
tofucake
Profile Blog Joined October 2009
Hyrule19030 Posts
March 11 2016 13:44 GMT
#14153
On March 11 2016 18:16 Morfildur wrote:
Show nested quote +
On March 11 2016 17:24 Chocolate wrote:
The firs one is really evil. I completely forgot about this PHP quirk, where even if you supposedly try to call a multi-dimensinal array index, if element at next-to-last index is a string, it'll treat this string as a char array...


I don't use PHP but that seems like something the compiler should warn you about, shitty interview question though, why should you need to know all of PHP's weird quirks? That could be a career unto itself


Usually such interview questions are the result of "clever" programmers that created a code base based on such quirks, and now they look for someone who understands their "clever" code.

Either way, PHP doesn't warn you about a lot of things, especially if you don't enable all the warning and strict flags, so it's easy for messy code to end up working by random chance. JavaScript might have a reputation as a terrible language - in my opinion unfounded -, but I much rather develop Node.js applications than PHP. PHP has too many quirks that just annoy me all the time.

most of the quirks have been worked out of the language as of 7, and plenty of the remaining ones are going to be removed soon anyway.
Liquipediaasante sana squash banana
Manit0u
Profile Blog Joined August 2004
Poland17243 Posts
Last Edited: 2016-03-11 14:49:09
March 11 2016 14:28 GMT
#14154
On March 11 2016 22:18 iaretehnoob wrote:
I don't think "strings are character arrays" qualifies as a quirk.


Well, it's all because most of the basic PHP functionality depends on the underlying C stuff (in which strings are character arrays). It's also why some of the functions behave differently on different platforms (and some of them simply don't work at all on Windows for example).

Usually, when you see something like that:

$arr = ['one', 'two', 'three'];

echo $arr[1][2];


You'd expect it to throw an undefined index, while in fact it'll return 'o'.

It's dumb, but it's there and some people even use those quirks to save a couple of lines of code here and there. It's really bad practice in my opinion and borders on code obfuscation.

As for me, I'm always trying to use Python's philosophy of explicit > implicit (including trying to avoid pre- and post- incrementation). Even if I often have to write more code because of that I'm usually glad I did when I come back to it after a couple of months.

On March 11 2016 22:44 tofucake wrote:
most of the quirks have been worked out of the language as of 7, and plenty of the remaining ones are going to be removed soon anyway.


I think there'll still be plenty of wrong with PHP until Zend won't change their philosophy of "PHP is not for programmers" and finally decide to:
1. unify function names (2 vs to etc.)
2. reduce the number of built-in functions (there's too much, and plenty of useless stuff. I mean, just check this out)
3. enforce writing secure and stable apps (removing eval, getting rid of php config files etc.)
4. unify function argument sequence (they swap it around for seemingly very similar functions, I can never remember all the search function's needle and haystack arguments order).
Time is precious. Waste it wisely.
tofucake
Profile Blog Joined October 2009
Hyrule19030 Posts
March 11 2016 14:42 GMT
#14155
There's a bunch of RFCs now about unifying function arguments. One I'm especially happy about is to allow negative offsets in all the string functions.
Liquipediaasante sana squash banana
Cyx.
Profile Joined November 2010
Canada806 Posts
March 11 2016 16:13 GMT
#14156
On March 11 2016 23:28 Manit0u wrote:
Show nested quote +
On March 11 2016 22:18 iaretehnoob wrote:
I don't think "strings are character arrays" qualifies as a quirk.


Usually, when you see something like that:

$arr = ['one', 'two', 'three'];

echo $arr[1][2];


You'd expect it to throw an undefined index, while in fact it'll return 'o'.


I think what he's saying is that he *wouldn't* expect that to throw an undefined index, but instead to return the 3rd character of the 2nd string, which is what it does... I agree that treating strings as char arrays isn't weird at all, at least to me. (Not really trying to defend PHP here - just a comment )
Manit0u
Profile Blog Joined August 2004
Poland17243 Posts
March 11 2016 17:50 GMT
#14157
On March 12 2016 01:13 Cyx. wrote:
Show nested quote +
On March 11 2016 23:28 Manit0u wrote:
On March 11 2016 22:18 iaretehnoob wrote:
I don't think "strings are character arrays" qualifies as a quirk.


Usually, when you see something like that:

$arr = ['one', 'two', 'three'];

echo $arr[1][2];


You'd expect it to throw an undefined index, while in fact it'll return 'o'.


I think what he's saying is that he *wouldn't* expect that to throw an undefined index, but instead to return the 3rd character of the 2nd string, which is what it does... I agree that treating strings as char arrays isn't weird at all, at least to me. (Not really trying to defend PHP here - just a comment )


I'm not saying treating strings as char arrays is bad, but the fact that people do such things as in the example is preposterous in my eyes since it can lead to a metric ton of hard to find bugs.
Time is precious. Waste it wisely.
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
March 11 2016 18:04 GMT
#14158
On March 12 2016 02:50 Manit0u wrote:
Show nested quote +
On March 12 2016 01:13 Cyx. wrote:
On March 11 2016 23:28 Manit0u wrote:
On March 11 2016 22:18 iaretehnoob wrote:
I don't think "strings are character arrays" qualifies as a quirk.


Usually, when you see something like that:

$arr = ['one', 'two', 'three'];

echo $arr[1][2];


You'd expect it to throw an undefined index, while in fact it'll return 'o'.


I think what he's saying is that he *wouldn't* expect that to throw an undefined index, but instead to return the 3rd character of the 2nd string, which is what it does... I agree that treating strings as char arrays isn't weird at all, at least to me. (Not really trying to defend PHP here - just a comment )


I'm not saying treating strings as char arrays is bad, but the fact that people do such things as in the example is preposterous in my eyes since it can lead to a metric ton of hard to find bugs.


Treating strings as string arrays is fun:

<?
$x = "abcd";
echo $x[0][0][0][0][0][0][0][0][0][0][0]; // a
Manit0u
Profile Blog Joined August 2004
Poland17243 Posts
March 11 2016 18:07 GMT
#14159
On March 12 2016 03:04 Morfildur wrote:
Show nested quote +
On March 12 2016 02:50 Manit0u wrote:
On March 12 2016 01:13 Cyx. wrote:
On March 11 2016 23:28 Manit0u wrote:
On March 11 2016 22:18 iaretehnoob wrote:
I don't think "strings are character arrays" qualifies as a quirk.


Usually, when you see something like that:

$arr = ['one', 'two', 'three'];

echo $arr[1][2];


You'd expect it to throw an undefined index, while in fact it'll return 'o'.


I think what he's saying is that he *wouldn't* expect that to throw an undefined index, but instead to return the 3rd character of the 2nd string, which is what it does... I agree that treating strings as char arrays isn't weird at all, at least to me. (Not really trying to defend PHP here - just a comment )


I'm not saying treating strings as char arrays is bad, but the fact that people do such things as in the example is preposterous in my eyes since it can lead to a metric ton of hard to find bugs.


Treating strings as string arrays is fun:

<?
$x = "abcd";
echo $x[0][0][0][0][0][0][0][0][0][0][0]; // a


What?! I don't even...
Time is precious. Waste it wisely.
madnessman
Profile Blog Joined May 2009
United States1581 Posts
March 11 2016 18:17 GMT
#14160
Has anybody had any success here writing an SC:BW AI which doesn't just execute a few hard coded strategies? I've finished my courses in AI and machine learning and I'm thinking about writing a BW AI to compete in the CIG AI competition this year. I found a few papers where researchers tried to implement more sophisticated methods but those bots didn't fare too well against the other competitive bots.
Prev 1 706 707 708 709 710 1031 Next
Please log in or register to reply.
Live Events Refresh
WardiTV European League
12:00
Swiss Groups Day 2
WardiTV744
TKL 431
Liquipedia
FEL
12:00
Cracov 2025: Qualifier #2
IndyStarCraft 310
CranKy Ducklings79
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
TKL 431
IndyStarCraft 310
Rex 119
MindelVK 39
StarCraft: Brood War
Sea 11032
Calm 9514
Rain 7180
Bisu 2849
Horang2 2292
Hyuk 1365
Jaedong 1317
Shuttle 516
Rush 430
EffOrt 300
[ Show more ]
Stork 282
Leta 270
Last 240
PianO 210
Mini 206
ToSsGirL 156
Hyun 140
ZerO 95
Movie 79
hero 55
TY 53
Sea.KH 41
JYJ40
Killer 35
JulyZerg 29
ajuk12(nOOB) 22
HiyA 20
GoRush 19
Free 19
zelot 19
Terrorterran 18
Sacsri 17
Barracks 16
Icarus 6
ivOry 2
Stormgate
NightEnD21
Dota 2
qojqva3057
XcaliburYe452
canceldota102
League of Legends
singsing2904
Counter-Strike
x6flipin739
zeus453
Heroes of the Storm
Khaldor315
Other Games
Gorgc2822
B2W.Neo1375
DeMusliM540
Happy390
Fuzer 389
crisheroes369
Pyrionflax337
XaKoH 263
Hui .243
RotterdaM147
ArmadaUGS70
KnowMe60
ZerO(Twitch)17
Organizations
StarCraft: Brood War
CasterMuse 25
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• StrangeGG 38
• iHatsuTV 6
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• WagamamaTV749
• Ler42
Upcoming Events
BSL: ProLeague
5h 10m
Dewalt vs Bonyth
Replay Cast
1d 11h
Sparkling Tuna Cup
1d 21h
WardiTV European League
2 days
The PondCast
2 days
Replay Cast
3 days
RSL Revival
3 days
ByuN vs SHIN
Clem vs Reynor
Replay Cast
4 days
RSL Revival
4 days
Classic vs Cure
FEL
5 days
[ Show More ]
RSL Revival
5 days
FEL
5 days
FEL
6 days
Sparkling Tuna Cup
6 days
RSL Revival
6 days
Liquipedia Results

Completed

BSL 2v2 Season 3
HSC XXVII
Heroes 10 EU

Ongoing

JPL Season 2
BSL Season 20
Acropolis #3
KCM Race Survival 2025 Season 2
CSL 17: 2025 SUMMER
Copa Latinoamericana 4
Jiahua Invitational
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
CCT Season 2 Global Finals
IEM Melbourne 2025

Upcoming

2025 ACS Season 2: Qualifier
CSLPRO Last Chance 2025
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
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.