• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 21:05
CEST 03:05
KST 10:05
  • 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
[BSL20] Non-Korean Championship 4x BSL + 4x China1Flash Announces Hiatus From ASL63Weekly Cups (June 23-29): Reynor in world title form?13FEL Cracov 2025 (July 27) - $8000 live event22Esports World Cup 2025 - Final Player Roster16
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 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
Player “Jedi” cheat on CSL SC uni coach streams logging into betting site Flash Announces Hiatus From ASL BW General Discussion Practice Partners (Official)
Tourneys
[BSL20] Non-Korean Championship 4x BSL + 4x China CSL Xiamen International Invitational The Casual Games of the Week Thread [BSL20] Grand Finals - Sunday 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
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
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: 604 users

The Big Programming Thread - Page 711

Forum Index > General Forum
Post a Reply
Prev 1 709 710 711 712 713 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.
Djagulingu
Profile Blog Joined December 2010
Germany3605 Posts
Last Edited: 2016-03-21 08:12:20
March 21 2016 07:28 GMT
#14201
On March 21 2016 11:23 Frudgey wrote:
Hey does anyone know of a good place (online) to do some C++/Javascript programming practice?

I have a job interview next week so I want to brush up.

Also if anyone has some tips for a programming interview I'm all ears. They're going to have a practical set-up where I can demonstrate my coding abilities. Anyone know what I should expect?

You can go to codefights and play with people in C++/javascript.

Make you demonstrate your coding abilities? Well, expect (at least) one of the two things:
1- They give you a green field and ask some question. I had one recently. They gave you a string with man repetitions of letters (let's call this str) and a number (let's call this int). Then I had to check the str for repetitions of letters and if there are repetitions for a number bigger than or equal to int, I would replace all of them with * (I solved this in Java btw)

Example: (aaaabbbcc, 3) -> (*******cc), (aaaabbbcc, 4) -> (****bbbcc) or such.

2- They give you a big fucking project and ask you for small fixes. I had this in a PHP interview (I don't even know PHP btw). The questions were like:

- remove autocomplete from this place
- implement this table with this data on the controller side (well yeah, we have some SHIT that does not work at all, so good luck with that too)
- there is this thing that sums up all the amounts in dollars, i don't want to sum them up in dollars, i want to sum them up in local currencies, implement that too

3- They give you a whole bunch of shit that they call requirements and ask for an implementation.

Also, a tip:

- ALWAYS write tests first.

On March 21 2016 09:42 WarSame wrote:
Is that because you ran into callback hell?

I can handle callback hell. What I can't handle is my test mqtt client subscribing into a whole bunch of different topics and my server client subscribing into a whole bunch of other topics and one of them publishing shit into a topic and the subscriber receives a message, sends another message into another topic and the recipients of the second topic send some other message in yet another topic and the whole fucking hell breaks loose on me. How the fuck are people supposed to write unit tests on this shit. Even worse, without unit tests, how the fuck are people supposed to write code on this shit.
"windows bash is a steaming heap of shit" tofucake
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
March 21 2016 08:26 GMT
#14202
On March 21 2016 16:28 Djagulingu wrote:
Show nested quote +
On March 21 2016 09:42 WarSame wrote:
Is that because you ran into callback hell?

I can handle callback hell. What I can't handle is my test mqtt client subscribing into a whole bunch of different topics and my server client subscribing into a whole bunch of other topics and one of them publishing shit into a topic and the subscriber receives a message, sends another message into another topic and the recipients of the second topic send some other message in yet another topic and the whole fucking hell breaks loose on me. How the fuck are people supposed to write unit tests on this shit. Even worse, without unit tests, how the fuck are people supposed to write code on this shit.


That's why I don't like message based architecture. It all sounds nice in theory, but in practice it ends up being a mess that requires a huge amount of documentation and diagrams that need to be constantly maintained so everyone who works with the code knows what happens when anything happens and can follow the (hopefully current) diagram instead of digging through the code.
Since programmers are terrible about updating documentation or diagrams, it just results in a lot more code digging.

I think every IDE and syntax highlighting editor should have a big "Did you KISS?" confirmation dialog before you save any file. So many Architecture Astronauts invent (or in the case of message based architecture re-invent) stuff that is just unpractical.
Acrofales
Profile Joined August 2010
Spain17971 Posts
March 21 2016 11:47 GMT
#14203
On March 21 2016 17:26 Morfildur wrote:
Show nested quote +
On March 21 2016 16:28 Djagulingu wrote:
On March 21 2016 09:42 WarSame wrote:
Is that because you ran into callback hell?

I can handle callback hell. What I can't handle is my test mqtt client subscribing into a whole bunch of different topics and my server client subscribing into a whole bunch of other topics and one of them publishing shit into a topic and the subscriber receives a message, sends another message into another topic and the recipients of the second topic send some other message in yet another topic and the whole fucking hell breaks loose on me. How the fuck are people supposed to write unit tests on this shit. Even worse, without unit tests, how the fuck are people supposed to write code on this shit.


That's why I don't like message based architecture. It all sounds nice in theory, but in practice it ends up being a mess that requires a huge amount of documentation and diagrams that need to be constantly maintained so everyone who works with the code knows what happens when anything happens and can follow the (hopefully current) diagram instead of digging through the code.
Since programmers are terrible about updating documentation or diagrams, it just results in a lot more code digging.

I think every IDE and syntax highlighting editor should have a big "Did you KISS?" confirmation dialog before you save any file. So many Architecture Astronauts invent (or in the case of message based architecture re-invent) stuff that is just unpractical.


Well... in an IoT system you don't have any alternative to messaging. You can lament a poorly thought out architecture, but the messages are there to stay. And let's face it. Sometimes you can't unit test. Not everything can be neatly compartmentalized. Of course, I know nothing about the project, so maybe it's just a really shitty design, and a neater design would allow unit testing.
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
March 21 2016 12:18 GMT
#14204
--- Nuked ---
Djagulingu
Profile Blog Joined December 2010
Germany3605 Posts
March 21 2016 15:29 GMT
#14205
On March 21 2016 20:47 Acrofales wrote:
Show nested quote +
On March 21 2016 17:26 Morfildur wrote:
On March 21 2016 16:28 Djagulingu wrote:
On March 21 2016 09:42 WarSame wrote:
Is that because you ran into callback hell?

I can handle callback hell. What I can't handle is my test mqtt client subscribing into a whole bunch of different topics and my server client subscribing into a whole bunch of other topics and one of them publishing shit into a topic and the subscriber receives a message, sends another message into another topic and the recipients of the second topic send some other message in yet another topic and the whole fucking hell breaks loose on me. How the fuck are people supposed to write unit tests on this shit. Even worse, without unit tests, how the fuck are people supposed to write code on this shit.


That's why I don't like message based architecture. It all sounds nice in theory, but in practice it ends up being a mess that requires a huge amount of documentation and diagrams that need to be constantly maintained so everyone who works with the code knows what happens when anything happens and can follow the (hopefully current) diagram instead of digging through the code.
Since programmers are terrible about updating documentation or diagrams, it just results in a lot more code digging.

I think every IDE and syntax highlighting editor should have a big "Did you KISS?" confirmation dialog before you save any file. So many Architecture Astronauts invent (or in the case of message based architecture re-invent) stuff that is just unpractical.


Well... in an IoT system you don't have any alternative to messaging. You can lament a poorly thought out architecture, but the messages are there to stay. And let's face it. Sometimes you can't unit test. Not everything can be neatly compartmentalized. Of course, I know nothing about the project, so maybe it's just a really shitty design, and a neater design would allow unit testing.

Well, for any future reference: NEVER test your nodejs MQTT client using mocha. You will fuck it. 100%. No other way. Use an external place to test your shit. Like... Write an angular client and run your test suite on it. Or something else. Just don't use mocha in your nodejs mqtt client.

On March 21 2016 21:18 Nesserev wrote:
Show nested quote +
On March 21 2016 20:47 Acrofales wrote:
On March 21 2016 17:26 Morfildur wrote:
On March 21 2016 16:28 Djagulingu wrote:
On March 21 2016 09:42 WarSame wrote:
Is that because you ran into callback hell?

I can handle callback hell. What I can't handle is my test mqtt client subscribing into a whole bunch of different topics and my server client subscribing into a whole bunch of other topics and one of them publishing shit into a topic and the subscriber receives a message, sends another message into another topic and the recipients of the second topic send some other message in yet another topic and the whole fucking hell breaks loose on me. How the fuck are people supposed to write unit tests on this shit. Even worse, without unit tests, how the fuck are people supposed to write code on this shit.


That's why I don't like message based architecture. It all sounds nice in theory, but in practice it ends up being a mess that requires a huge amount of documentation and diagrams that need to be constantly maintained so everyone who works with the code knows what happens when anything happens and can follow the (hopefully current) diagram instead of digging through the code.
Since programmers are terrible about updating documentation or diagrams, it just results in a lot more code digging.

I think every IDE and syntax highlighting editor should have a big "Did you KISS?" confirmation dialog before you save any file. So many Architecture Astronauts invent (or in the case of message based architecture re-invent) stuff that is just unpractical.


Well... in an IoT system you don't have any alternative to messaging. You can lament a poorly thought out architecture, but the messages are there to stay. And let's face it. Sometimes you can't unit test. Not everything can be neatly compartmentalized. Of course, I know nothing about the project, so maybe it's just a really shitty design, and a neater design would allow unit testing.

There's an alternative... just don't do it. Don't do IoT. It's bad for you and everyone. :3

Well, that's an alternative for sure, but it's as good of an alternative as "don't use fire because you can get burnt and shit" in any given winter in the stone age.
"windows bash is a steaming heap of shit" tofucake
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
March 21 2016 16:23 GMT
#14206
--- Nuked ---
zatic
Profile Blog Joined September 2007
Zurich15325 Posts
March 22 2016 10:47 GMT
#14207
Anyone know a good overview of HTML5/cross device UI frameworks?

Google gives me a thousand super superficial clickbait "the 20 most important HTML5 frameworks of 2015" results, but nothing that looks very good.

Things I am looking for in addition to the usual jazz are native device capabilities, offline capabilities, transactionality. Happy to include commercial frameworks.
ModeratorI know Teamliquid is known as a massive building
tofucake
Profile Blog Joined October 2009
Hyrule19031 Posts
March 22 2016 12:31 GMT
#14208
Bootstrap is HTML5 compatible, and free. I've also heard good things about Foundation, but I've never used it.
Liquipediaasante sana squash banana
Manit0u
Profile Blog Joined August 2004
Poland17243 Posts
Last Edited: 2016-03-22 16:17:49
March 22 2016 16:16 GMT
#14209
On March 22 2016 21:31 tofucake wrote:
Bootstrap is HTML5 compatible, and free. I've also heard good things about Foundation, but I've never used it.


Foundation is yet another grid-based framework. Very similar to Bootstrap. Didn't work long with that but from what I've glanced its major benefit is that you can achieve the same results as in Bootstrap but with less code.

Personally, I think you can never go wrong with Bootstrap and jQuery for front-end. They might not be the best thing around but there's a metric ton of online resources for them since they're so widely used. It's also easier to find help/replacement team members if you work with widespread technologies.
Time is precious. Waste it wisely.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
March 22 2016 20:57 GMT
#14210
Can this code be refactored to use STL? words is std::vector<std::string>.

+ Show Spoiler +


for (size_t i = 0; i < words.size(); ++i )
{
for ( auto j = words.size() - 1; j > i; --j )
{
auto & w1 = words.at(i);
auto & w2 = words.at(j);
if (w2.length() > w1.length() || (w2.length() == w1.length() && w2 > w1))
std::swap(w1, w2);
}
}



The only idea I have is std::sort with a predicate. Is that the best 'STL way'?
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
March 22 2016 21:24 GMT
#14211
On March 23 2016 05:57 Shield wrote:
Can this code be refactored to use STL? words is std::vector<std::string>.

+ Show Spoiler +


for (size_t i = 0; i < words.size(); ++i )
{
for ( auto j = words.size() - 1; j > i; --j )
{
auto & w1 = words.at(i);
auto & w2 = words.at(j);
if (w2.length() > w1.length() || (w2.length() == w1.length() && w2 > w1))
std::swap(w1, w2);
}
}



The only idea I have is std::sort with a predicate. Is that the best 'STL way'?

If you're trying to sort things, std::sort seems like an obvious choice. That would be trivial to understand, much unlike your code sample.
If you have a good reason to disagree with the above, please tell me. Thank you.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2016-03-22 21:36:40
March 22 2016 21:32 GMT
#14212
On March 23 2016 06:24 spinesheath wrote:
Show nested quote +
On March 23 2016 05:57 Shield wrote:
Can this code be refactored to use STL? words is std::vector<std::string>.

+ Show Spoiler +


for (size_t i = 0; i < words.size(); ++i )
{
for ( auto j = words.size() - 1; j > i; --j )
{
auto & w1 = words.at(i);
auto & w2 = words.at(j);
if (w2.length() > w1.length() || (w2.length() == w1.length() && w2 > w1))
std::swap(w1, w2);
}
}



The only idea I have is std::sort with a predicate. Is that the best 'STL way'?

If you're trying to sort things, std::sort seems like an obvious choice. That would be trivial to understand, much unlike your code sample.


Oh yeah, I know. It's for a friend who has an assignment to use more STL. I had suggested sort but he said he was still going to solve that problem tomorrow. That's why I asked if there was a more STL way than sort with a predicate. Thanks.
zatic
Profile Blog Joined September 2007
Zurich15325 Posts
March 23 2016 08:07 GMT
#14213
On March 23 2016 01:16 Manit0u wrote:
Show nested quote +
On March 22 2016 21:31 tofucake wrote:
Bootstrap is HTML5 compatible, and free. I've also heard good things about Foundation, but I've never used it.


Foundation is yet another grid-based framework. Very similar to Bootstrap. Didn't work long with that but from what I've glanced its major benefit is that you can achieve the same results as in Bootstrap but with less code.

Personally, I think you can never go wrong with Bootstrap and jQuery for front-end. They might not be the best thing around but there's a metric ton of online resources for them since they're so widely used. It's also easier to find help/replacement team members if you work with widespread technologies.

Yeah those are the obvious choices but don't offer any of the features I am looking for as far as I know.
ModeratorI know Teamliquid is known as a massive building
Manit0u
Profile Blog Joined August 2004
Poland17243 Posts
Last Edited: 2016-03-23 10:27:43
March 23 2016 10:26 GMT
#14214
And what features are you looking for?

Edit: never mind, I've re-read your original post

Will look into it.
Time is precious. Waste it wisely.
zatic
Profile Blog Joined September 2007
Zurich15325 Posts
March 23 2016 14:57 GMT
#14215
After some more research, I am taking these here into closer consideration:

https://trigger.io/
http://openui5.org/
http://ionicframework.com/

ModeratorI know Teamliquid is known as a massive building
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
March 23 2016 17:01 GMT
#14216
Which algorithms of C++ <algorithm> do you guys use most of the time?
Biolunar
Profile Joined February 2012
Germany224 Posts
March 23 2016 18:48 GMT
#14217
On March 24 2016 02:01 Shield wrote:
Which algorithms of C++ <algorithm> do you guys use most of the time?

find, sort, swap, min and max mostly. Others are more niche like transform and copy. I have never used 80% of the algos but I assume they have their uses.
What is best? To crush the Zerg, see them driven before you, and hear the lamentations of the Protoss.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
March 23 2016 20:03 GMT
#14218
On March 24 2016 03:48 Biolunar wrote:
Show nested quote +
On March 24 2016 02:01 Shield wrote:
Which algorithms of C++ <algorithm> do you guys use most of the time?

find, sort, swap, min and max mostly. Others are more niche like transform and copy. I have never used 80% of the algos but I assume they have their uses.


Yeah, I use and know them but I feel like I use too few.

Some guy parses data from the Fish server here: http://www.teamliquid.net/forum/brood-war/506307-fish-ladder-under-your-fingers
Does anyone know what tools could be used to do the same in C# or C++? I don't need full code, just some quick guide and possible libraries to consider.
BlueRoyaL
Profile Blog Joined February 2006
United States2493 Posts
March 23 2016 21:13 GMT
#14219
Browsed through his python script, looks like he's just using beautiful soup to scrape.

I've used HTML Agility Pack for C#/.NET, and it works amazingly:

http://www.nuget.org/packages/HtmlAgilityPack
http://www.mikesdotnetting.com/article/273/using-the-htmlagilitypack-to-parse-html-in-asp-net

In a nutshell, you specify a URL to load, it parses the DOM nodes into a nice tree that you can traverse, query from, etc.

I'm about to start on the backend portion of a personal project soon using it again, it works very well. Cheers!
WHAT'S HAPPENIN
Manit0u
Profile Blog Joined August 2004
Poland17243 Posts
March 23 2016 21:29 GMT
#14220
On March 24 2016 05:03 Shield wrote:
Show nested quote +
On March 24 2016 03:48 Biolunar wrote:
On March 24 2016 02:01 Shield wrote:
Which algorithms of C++ <algorithm> do you guys use most of the time?

find, sort, swap, min and max mostly. Others are more niche like transform and copy. I have never used 80% of the algos but I assume they have their uses.


Yeah, I use and know them but I feel like I use too few.

Some guy parses data from the Fish server here: http://www.teamliquid.net/forum/brood-war/506307-fish-ladder-under-your-fingers
Does anyone know what tools could be used to do the same in C# or C++? I don't need full code, just some quick guide and possible libraries to consider.


Well, for sure you won't be able to match what python can do in 200 lines of code with C# or C++...

What you need to look for in libraries is more or less this:
1. ability to grab the DOM (or at least part of it) of an external web page
2. ability to parse said DOM
3. json support (I guess that could be exchanged for any other way of storing data for easy parsing later on, xml, yaml, csv, whatever)

You could do it with JavaScript, since its primary purpose is DOM parsing and manipulation.

I mean, all this script really does is: get external DOM -> parse DOM -> save parsed data to file -> parse file and display data. In theory you could bypass entire saving to file and then reading from it again parts by simply passing parsed DOM around as variable.

I'm drunk. I shouldn't post.
Time is precious. Waste it wisely.
Prev 1 709 710 711 712 713 1031 Next
Please log in or register to reply.
Live Events Refresh
Next event in 9h 55m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Nina 214
Livibee 208
RuFF_SC2 78
ProTech74
StarCraft: Brood War
Artosis 1128
Icarus 6
Dota 2
monkeys_forever667
Counter-Strike
tarik_tv7163
Fnx 1821
Stewie2K977
Super Smash Bros
Mew2King140
Heroes of the Storm
Khaldor239
Other Games
summit1g10102
fl0m765
ViBE246
Maynarde177
JuggernautJason20
Organizations
Other Games
gamesdonequick46739
BasetradeTV56
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• davetesta35
• Berry_CruncH13
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• Ler60
League of Legends
• masondota2795
Upcoming Events
Wardi Open
9h 55m
Replay Cast
22h 55m
Sparkling Tuna Cup
1d 8h
WardiTV European League
1d 14h
MaNa vs sebesdes
Mixu vs Fjant
ByuN vs HeRoMaRinE
ShoWTimE vs goblin
Gerald vs Babymarine
Krystianer vs YoungYakov
PiGosaur Monday
1d 22h
The PondCast
2 days
WardiTV European League
2 days
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
3 days
ByuN vs SHIN
Clem vs Reynor
[ Show More ]
Replay Cast
3 days
RSL Revival
4 days
Classic vs Cure
FEL
4 days
RSL Revival
5 days
FEL
5 days
FEL
5 days
Sparkling Tuna Cup
6 days
RSL Revival
6 days
FEL
6 days
Liquipedia Results

Completed

BSL Season 20
HSC XXVII
Heroes 10 EU

Ongoing

JPL Season 2
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.