• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 09:35
CEST 15:35
KST 22:35
  • 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
Weekly Cups (June 30 - July 6): Classic Doubles1[BSL20] Non-Korean Championship 4x BSL + 4x China7Flash Announces Hiatus From ASL64Weekly Cups (June 23-29): Reynor in world title form?13FEL Cracov 2025 (July 27) - $8000 live event22
StarCraft 2
General
Weekly Cups (June 30 - July 6): Classic Doubles 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?
Tourneys
RSL: Revival, a new crowdfunded tournament series FEL Cracov 2025 (July 27) - $8000 live event Sparkling Tuna Cup - Weekly Open Tournament WardiTV Mondays 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 # 481 Fear and Lava Mutation # 480 Moths to the Flame Mutation # 479 Worn Out Welcome Mutation # 478 Instant Karma
Brood War
General
SC uni coach streams logging into betting site BGH Auto Balance -> http://bghmmr.eu/ ASL20 Preliminary Maps Flash Announces Hiatus From ASL Player “Jedi” cheat on CSL
Tourneys
[BSL20] Grand Finals - Sunday 20:00 CET [BSL20] Non-Korean Championship 4x BSL + 4x China CSL Xiamen International Invitational The Casual Games of the Week Thread
Strategy
Simple Questions, Simple Answers I am doing this better than progamers do.
Other Games
General Games
Stormgate/Frost Giant Megathread Path of Exile 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 Stop Killing Games - European Citizens Initiative Summer Games Done Quick 2024! Summer Games Done Quick 2025!
Fan Clubs
SKT1 Classic Fan Club! Maru Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece [\m/] Heavy Metal Thread
Sports
Formula 1 Discussion 2024 - 2025 Football Thread 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
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: 711 users

The Big Programming Thread - Page 73

Forum Index > General Forum
Post a Reply
Prev 1 71 72 73 74 75 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.
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
August 02 2011 11:55 GMT
#1441
On August 02 2011 20:51 Rhyze wrote:
I guess it was a stupid question :D and i didn't write the script, a real employee did :D and i work for the government ^^


Well, in my experience, 99% of the programmers shouldn't ever touch any code again because they just don't have any clue, so it's not suprising for me to see horrible code, even in government code from full time programmers :p
Kahzaar
Profile Joined October 2010
Sweden897 Posts
August 02 2011 20:53 GMT
#1442
Hey everyone, I've been trying to do a simple imageslider in jquery but I can't get it to work. I'm not sure how to make to write the .attr-part. The .jpg gives me an error and I'm not sure how to write it. Any clues?
+ Show Spoiler +
<script type="text/javascript">
var PicNumber = 1;
$(window).load(function () {
$("imageActive").attr("src",PicNumber".jpg");
});

$(nextPic).click(function () {
PicNumber+=1;
});

$(prevPic).click(function () {
PicNumber-=1;
});
</script>
disco
Profile Blog Joined June 2009
Netherlands1667 Posts
August 02 2011 21:01 GMT
#1443
This should work:
+ Show Spoiler +

<script type="text/javascript">
var PicNumber = 1;
$(window).load(function () {
$("imageActive").attr("src",PicNumber+".jpg");
});

$(nextPic).click(function () {
PicNumber+=1;
});

$(prevPic).click(function () {
PicNumber-=1;
});
</script>
this game is a fucking jokie
Kahzaar
Profile Joined October 2010
Sweden897 Posts
August 02 2011 23:56 GMT
#1444
On August 03 2011 06:01 disco wrote:
This should work:
+ Show Spoiler +

<script type="text/javascript">
var PicNumber = 1;
$(window).load(function () {
$("imageActive").attr("src",PicNumber+".jpg");
});

$(nextPic).click(function () {
PicNumber+=1;
});

$(prevPic).click(function () {
PicNumber-=1;
});
</script>

thanks, had to change some other smalls things too, but now it's working
disco
Profile Blog Joined June 2009
Netherlands1667 Posts
August 03 2011 07:35 GMT
#1445
On August 03 2011 08:56 Kahzaar wrote:
Show nested quote +
On August 03 2011 06:01 disco wrote:
This should work:
+ Show Spoiler +

<script type="text/javascript">
var PicNumber = 1;
$(window).load(function () {
$("imageActive").attr("src",PicNumber+".jpg");
});

$(nextPic).click(function () {
PicNumber+=1;
});

$(prevPic).click(function () {
PicNumber-=1;
});
</script>

thanks, had to change some other smalls things too, but now it's working


No problem, I didn't really pay attention to anything other than the missing "+" for the filename.
this game is a fucking jokie
haduken
Profile Blog Joined April 2003
Australia8267 Posts
Last Edited: 2011-08-03 09:42:36
August 03 2011 09:41 GMT
#1446
nvm
Rillanon.au
mmp
Profile Blog Joined April 2009
United States2130 Posts
August 07 2011 08:52 GMT
#1447
On August 01 2011 11:12 EvanED wrote:
Show nested quote +
On July 31 2011 19:29 Frigo wrote:
I seriously recommend against touching any kind of scripting, functional, procedural or esoteric language without having a proper knowledge of Java or C++. You will learn nothing useful.

I vehemently disagree with this, for reasons I've stated above. (Just the negative part -- that you won't learn anything useful. Depending on your interest, Java or C++ might be a reasonable starting language.)

I've got a substantial portion of the "best" CS schools on my side too. US News gives the top 10 as MIT (#1), CMU (#2), Stanford and UIUC (#3-tie), Cal Berkeley (#5), Georgia Tech (#6), UT Austin (#7), Michigan (#8), Cal Tech (#9) and Cornell (#10).

Of those: MIT used to use Scheme and now uses Python in their intro class, CMU uses SML, Stanford uses Java, UIUC uses Java for what seems to be the primary first in-major class (there's another intro class that uses Python, but I'm not sure how it fits in), Cal Berkeley seems to emphasize Scheme though it's not at the complete exclusion of everything else, Georgia Tech uses Python, UT Austin uses Java, Michigan uses ??? (I actually can't find a course webpage, and the description doesn't say; there's a chance it uses C++. If you have better luck than me, the course is EECS 280), Caltech uses Python, Cornell uses Java.

Discounting Michigan, counting UIUC as Java, and counting Berkeley as Scheme, the counts are 4 schools for Java, 3 schools for Python, 1 school for Scheme, and one school for SML. Even if Michigan came into the picture with Java, that's still half of the US News top 10 schools which teach a language you accuse of teaching "nothing useful."

Now, the pressures are very different for a university deciding how to set its curriculum and an individual deciding what to learn, but I think that "you won't learn anything from a high-level language" is complete bogus.

Show nested quote +
On July 31 2011 19:50 KaiserJohan wrote: I would do either that or C. C is also less complex than C++, there is less chance of getting lost early. Its easier to find C++ resources though, and you can just reuse C code in C++...


Well, that's sort of true, but at the same time IMO a good C programmer does not necessarily make a good C++ programmer (though it is likely). You'll have to unlearn a fair bit of stuff for that.


Python is a great first language in my opinion. It's easy to pick up, gets shit done fast, and can take you very far. A real Swiss-Army-Knife language.

MIT's intro EECS class used to be an adventure in Scheme programming and everyone loved it because the assignments were flexible and allowed for a lot of creativity; now it's a well-rounded EE+CS mediocre bore (no CS bias from me: nobody likes it!). The AI class also moved from Scheme to Python, but I think this was a good decision (some of that Scheme code was pretty gross).
I (λ (foo) (and (<3 foo) ( T_T foo) (RAGE foo) )) Starcraft
Badboyrune
Profile Blog Joined May 2010
Sweden2247 Posts
August 09 2011 09:17 GMT
#1448
If you're interested in starting doing some programming for Android/iPhone is the best way to go about it to first learn basic java and then learn how to implement it into Android/iPhone apps, or start out with app programming right away?
"If yellow does start SC2, I should start handsomenerd diaper busniess and become a rich man" - John the Translator
Soier
Profile Joined August 2010
Denmark28 Posts
August 09 2011 11:58 GMT
#1449
For Android:
Since you need basic java to program for Android I would recomend getting the java skills before you start with your app. If you know basic java and use Eclipse with the Android dev kit you are well equiped på produce and test android apps.

Dont know much about iPhnoe programming, as far as I know you need to know about objective-C++ witch is a harder language to learn than java. Furthermore if you want you iPhone app on the market you have to jump allot of hoops and even pay for a lisence, so if you are just starting out I would recoment programming for Android.

Can PM me if you have further questions
Play more
Badboyrune
Profile Blog Joined May 2010
Sweden2247 Posts
August 09 2011 16:55 GMT
#1450
On August 09 2011 20:58 Soier wrote:
For Android:
Since you need basic java to program for Android I would recomend getting the java skills before you start with your app. If you know basic java and use Eclipse with the Android dev kit you are well equiped på produce and test android apps.

Dont know much about iPhnoe programming, as far as I know you need to know about objective-C++ witch is a harder language to learn than java. Furthermore if you want you iPhone app on the market you have to jump allot of hoops and even pay for a lisence, so if you are just starting out I would recoment programming for Android.

Can PM me if you have further questions


Thanks a bunch! More or less as I suspected then, time to look up some java guides.

Not a big Apple guy so iPhone programming was never the main idea. Still it might be worth the trouble in the future, in which case I'll pick you up on your offer to help. Actually I might do that anyway if I remember if, or rather when, i run into trouble :p

Thanks again!
"If yellow does start SC2, I should start handsomenerd diaper busniess and become a rich man" - John the Translator
Emperor_Earth
Profile Blog Joined April 2009
United States824 Posts
August 09 2011 19:12 GMT
#1451
I'm starting a really big site. If anyone is interested in contributing to something meaningful and to be proud of, send me a pm. You may be able to help.

If I had to guess right now, PHP, MySql, jQuery, CSS2/3, standard LAMP setup basically.

Debating on: PostgreSQL vs MySQL
Ruby (probably on Rails) vs Java vs PHP
@Emperor_Earth ------- "Amat Victoria Curam."
ibutoss
Profile Blog Joined June 2005
Australia341 Posts
August 13 2011 01:33 GMT
#1452
On August 02 2011 20:55 Morfildur wrote:
Show nested quote +
On August 02 2011 20:51 Rhyze wrote:
I guess it was a stupid question :D and i didn't write the script, a real employee did :D and i work for the government ^^


Well, in my experience, 99% of the programmers shouldn't ever touch any code again because they just don't have any clue, so it's not suprising for me to see horrible code, even in government code from full time programmers :p


I believe the problem with this sentiment among programmers is that everyone else's code is always going to be crap compared to the ideal solution. When you work in industry it's more than likely the programmer wanted extra time to complete X, but management said no we have a deadline, do the bare minimum. So when you look at someone else's horrible code perhaps keep in mind that you don't know the full circumstances of how it came about. (That said I agree, it probably was just bad code from someone with no clue. haha)

I've seen this happen time and time again. It takes a complete culture shift to actually work quality into software projects.
Nada got Yooned
Abductedonut
Profile Blog Joined December 2010
United States324 Posts
August 14 2011 03:00 GMT
#1453
Anyone know a simple way to safely use the gets() function in stdio.h?
fabiano
Profile Blog Joined August 2009
Brazil4644 Posts
August 14 2011 03:04 GMT
#1454
On August 14 2011 12:00 Abductedonut wrote:
Anyone know a simple way to safely use the gets() function in stdio.h?


What do you mean? o.O
"When the geyser died, a probe came out" - SirJolt
Frigo
Profile Joined August 2009
Hungary1023 Posts
August 14 2011 04:23 GMT
#1455
Sorry man, gets is inherently unsafe and vulnerable to buffer overflow attacks. Use something else, especially if it is C++.
http://www.fimfiction.net/user/Treasure_Chest
Abductedonut
Profile Blog Joined December 2010
United States324 Posts
August 14 2011 05:06 GMT
#1456
On August 14 2011 12:04 fabiano wrote:
Show nested quote +
On August 14 2011 12:00 Abductedonut wrote:
Anyone know a simple way to safely use the gets() function in stdio.h?


What do you mean? o.O


Yeah, the gets() function in the C standard library is completely vulnerable to buffer overflows, which is basically what a hacker can use to take control of the computer.

On August 14 2011 13:23 Frigo wrote:
Sorry man, gets is inherently unsafe and vulnerable to buffer overflow attacks. Use something else, especially if it is C++.


Well, getline is C++ so I can't use it in C. I've found a solution using fgets() but that's sortof cheating since it's not gets(). There's also the issue that the rest of the string is still in stdin, which is kindaof a hassle to deal with, but whatever. Here's what i mean: ( and fabiano, i compiled using gets() the first time, the warning is there for you as well )

+ Show Spoiler +
[image loading]


If anyone can think of another solution using actual gets(), please let me know! I'm actually curious.
Frigo
Profile Joined August 2009
Hungary1023 Posts
August 14 2011 05:49 GMT
#1457
No sorry, the compiler is quite right about warning you, it simply can't be made safe. You need to know in advance whether the line fits in your buffer, and that is simply not possible with the standard input, only with files.

Why is it so important anyway, isn't fgets enough? It's not that difficult to write a function that behaves like std::vector in the sense that it automatically grows the buffer when you need to insert more data.
http://www.fimfiction.net/user/Treasure_Chest
EvanED
Profile Joined October 2009
United States111 Posts
Last Edited: 2011-08-14 23:15:10
August 14 2011 23:08 GMT
#1458
On August 14 2011 14:06 Abductedonut wrote:If anyone can think of another solution using actual gets(), please let me know! I'm actually curious.

Really the only way that I can think of that has a chance of working is something like the following:
// global or file static:
jmp_buf from_fgets;

void return_to_past_gets(int ign) {
(void) ign;
longjmp(from_fgets, 1);
}

// Where you want to call fgets
struct sigaction old_handler;
char * buf;
int ret;
if (setjmp(&from_fgets) == 0) {
// Set up memory. 'buf' will point to 4096 bytes, then a guard page
buf = mmap(NULL, 4096*2, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
if (buf == NULL) goto err_mmap;
ret = mprotect(buf + 4096, 1, PROT_NONE);
if (ret != 0) goto err_mprotect;

// set up a handler for SIGSEGV, which will be
struct sigaction new_handler;
new_handler.sa_handler = return_to_past_gets;
ret = sigemptyset (&new_action.sa_mask);
if (ret != 0) goto err_sigemptyset;
new_action.sa_flags = 0;
ret = sigaction(SIGSEGV, &new_action, &old_action);
if (ret != 0) goto err_sigaction_new

// call fgets
fgets(buf);
}
else {
// fgets overflowed.
ret = ungetc(buf[4095], stdin);
if (ret != 0) goto err_ungetc
buf[4095] = 0;
}
ret = sigaction(SIGSEGV, &old_action, NULL);
if (ret != 0) goto err_sigaction_restore

// YOU implement err_mmap, err_mprotect, err_ungetc, err_sigemptyset,
// err_sigaction_new, and err_sigaction_restore

// Oh, and don't forget to
unmmap(buf, 4096*2);
// instead of free(buf)


There. A (*)safe way of calling fgets. Except that I'm not sure that mmap is guaranteed to return something on a page boundary, pages aren't guaranteed to be 4096 bytes, MAP_ANONYMOUS isn't POSIX, I didn't take into account wanting anything other than an entire page, fgets is probably not guaranteed to write into its buffer sequentially... and if that's not enough, you risk leaving the internals of libc in an inconsistent state because fgets didn't get a chance to return cleanly.

Doesn't that sound worth not saying
fgets(buf, size, stdin);

? :-)


Edit:
On August 14 2011 14:49 Frigo wrote:
No sorry, the compiler is quite right about warning you, it simply can't be made safe. You need to know in advance whether the line fits in your buffer, and that is simply not possible with the standard input, only with files.

This is a bit of a red herring, which can be demonstrated two ways. First, calling fgets(buf, size, stdin) works fine, and is just like calling gets(buf) except that if it reads more than size bytes, it will stop early. (There's a difference in how it handles the trailing newline if it doesn't stop early, as well.) It's not like fgets is imbued with psychic powers to see what's coming up in the stream, it just makes a "best-effort" attempt to fit it in the given buffer. The second way you can see this is calling fgets on an actual file -- it doesn't figure out that the current line is too long to fit into the buffer and does nothing, it again makes that best-effort attempt.

(And as a third way: just because the runtime thinks something is a file doesn't mean it is -- it could be a device node, a fifo, etc. -- and doesn't mean it can seek randomly.)
Craton
Profile Blog Joined December 2009
United States17247 Posts
August 17 2011 23:14 GMT
#1459
I have an interview coming up. What would be some good areas to brush up on beforehand? The job is primarily C#.NET and VB.NET in both client-side applications and ASP.NET.

Finished B.S. in May.
twitch.tv/cratonz
TheRageKage12
Profile Joined November 2010
United States161 Posts
August 17 2011 23:24 GMT
#1460
On August 18 2011 08:14 Craton wrote:
I have an interview coming up. What would be some good areas to brush up on beforehand? The job is primarily C#.NET and VB.NET in both client-side applications and ASP.NET.

Finished B.S. in May.


Know the syntax and basic semantics of all those languages (derp) and be able to write out programs on a whiteboard in them. Also review all your algorithms (sorting, DFS, BFS, etc.) and data structures with their inherent strengths and weaknesses (for example, hash tables have O(1) lookup time but are rather large in memory).
Prev 1 71 72 73 74 75 1031 Next
Please log in or register to reply.
Live Events Refresh
Wardi Open
11:00
#43
WardiTV1322
OGKoka 522
Harstem427
IndyStarCraft 169
Rex167
CranKy Ducklings122
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
OGKoka 522
Harstem 427
Hui .184
IndyStarCraft 169
Rex 167
StarCraft: Brood War
Bisu 2963
Flash 2112
Jaedong 1818
Hyuk 1166
firebathero 688
EffOrt 645
ZerO 538
Larva 508
actioN 436
Soulkey 387
[ Show more ]
Stork 378
Snow 308
Soma 275
GuemChi 168
Mind 132
sSak 113
Pusan 111
Light 98
PianO 80
hero 77
Sharp 74
JulyZerg 72
TY 55
Barracks 46
Sea.KH 44
Yoon 38
Aegong 35
sorry 32
Free 30
GoRush 26
soO 24
zelot 23
Movie 22
JYJ20
HiyA 20
yabsab 19
IntoTheRainbow 11
Terrorterran 10
Shine 8
ivOry 4
Dota 2
qojqva3148
Gorgc2576
XaKoH 621
XcaliburYe297
syndereN293
League of Legends
singsing2548
Counter-Strike
byalli263
markeloff128
Super Smash Bros
Mew2King169
Other Games
hiko1144
B2W.Neo1138
crisheroes383
Beastyqt345
Lowko310
ArmadaUGS128
Liquid`VortiX84
ZerO(Twitch)24
Organizations
Other Games
gamesdonequick37693
StarCraft: Brood War
UltimateBattle 889
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 13 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• C_a_k_e 2960
• WagamamaTV335
League of Legends
• Nemesis5594
Upcoming Events
RotterdaM Event
2h 25m
Replay Cast
10h 25m
Sparkling Tuna Cup
20h 25m
WardiTV European League
1d 2h
MaNa vs sebesdes
Mixu vs Fjant
ByuN vs HeRoMaRinE
ShoWTimE vs goblin
Gerald vs Babymarine
Krystianer vs YoungYakov
PiGosaur Monday
1d 10h
The PondCast
1d 20h
WardiTV European League
1d 22h
Jumy vs NightPhoenix
Percival vs Nicoract
ArT vs HiGhDrA
MaxPax vs Harstem
Scarlett vs Shameless
SKillous vs uThermal
uThermal 2v2 Circuit
2 days
Replay Cast
2 days
RSL Revival
2 days
ByuN vs SHIN
Clem vs Reynor
[ Show More ]
Replay Cast
3 days
RSL Revival
3 days
Classic vs Cure
FEL
4 days
RSL Revival
4 days
FEL
4 days
FEL
5 days
BSL20 Non-Korean Champi…
5 days
Bonyth vs QiaoGege
Dewalt vs Fengzi
Hawk vs Zhanhun
Sziky vs Mihu
Mihu vs QiaoGege
Zhanhun vs Sziky
Fengzi vs Hawk
Sparkling Tuna Cup
5 days
RSL Revival
5 days
FEL
6 days
BSL20 Non-Korean Champi…
6 days
Bonyth vs Dewalt
QiaoGege vs Dewalt
Hawk vs Bonyth
Sziky vs Fengzi
Mihu vs Zhanhun
QiaoGege vs Zhanhun
Fengzi vs Mihu
Liquipedia Results

Completed

BSL Season 20
HSC XXVII
Heroes 10 EU

Ongoing

JPL Season 2
BSL 2v2 Season 3
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
CSL Xiamen Invitational
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.