• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 09:09
CEST 15:09
KST 22:09
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
TL.net Map Contest #21: Voting10[ASL20] Ro4 Preview: Descent11Team TLMC #5: Winners Announced!3[ASL20] Ro8 Preview Pt2: Holding On9Maestros of the Game: Live Finals Preview (RO4)5
Community News
Weekly Cups (Oct 13-19): Clem Goes for Four0BSL Team A vs Koreans - Sat-Sun 16:00 CET6Weekly Cups (Oct 6-12): Four star herO85.0.15 Patch Balance Hotfix (2025-10-8)80Weekly Cups (Sept 29-Oct 5): MaxPax triples up3
StarCraft 2
General
The New Patch Killed Mech! Team Liquid Map Contest #21 - Presented by Monster Energy herO joins T1 Weekly Cups (Oct 13-19): Clem Goes for Four TL.net Map Contest #21: Voting
Tourneys
INu's Battles #13 - ByuN vs Zoun Tenacious Turtle Tussle SC2's Safe House 2 - October 18 & 19 Sparkling Tuna Cup - Weekly Open Tournament $1,200 WardiTV October (Oct 21st-31st)
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 496 Endless Infection Mutation # 495 Rest In Peace Mutation # 494 Unstable Environment Mutation # 493 Quick Killers
Brood War
General
BSL Season 21 BW General Discussion BGH Auto Balance -> http://bghmmr.eu/ BW caster Sayle BSL Team A vs Koreans - Sat-Sun 16:00 CET
Tourneys
[ASL20] Semifinal B Azhi's Colosseum - Anonymous Tournament [Megathread] Daily Proleagues SC4ALL $1,500 Open Bracket LAN
Strategy
Current Meta BW - ajfirecracker Strategy & Training Relatively freeroll strategies Siegecraft - a new perspective
Other Games
General Games
Path of Exile Stormgate/Frost Giant Megathread Dawn of War IV Nintendo Switch Thread ZeroSpace Megathread
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread Men's Fashion Thread Sex and weight loss
Fan Clubs
The herO Fan Club!
Media & Entertainment
Series you have seen recently... Anime Discussion Thread [Manga] One Piece Movie Discussion!
Sports
Formula 1 Discussion 2024 - 2026 Football Thread MLB/Baseball 2023 NBA General Discussion TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Recent Gifted Posts
Blogs
The Heroism of Pepe the Fro…
Peanutsc
Rocket League: Traits, Abili…
TrAiDoS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1275 users

The Big Programming Thread - Page 711

Forum Index > General Forum
Post a Reply
Prev 1 709 710 711 712 713 1032 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
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
Spain18093 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
Zurich15353 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
Hyrule19144 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
Poland17386 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
Zurich15353 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
Poland17386 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
Zurich15353 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
Poland17386 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 1032 Next
Please log in or register to reply.
Live Events Refresh
INu's Battles
11:00
INu's Battle #13
ByuN vs ZounLIVE!
IntoTheiNu 77
LiquipediaDiscussion
Replay Cast
10:00
LiuLi Cup #46 - Day 1
CranKy Ducklings240
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Harstem 503
sas.Sziky 14
StarCraft: Brood War
Britney 33936
Calm 11750
Hyuk 5297
Horang2 2799
Bisu 2665
GuemChi 1540
Flash 1435
Jaedong 1218
Larva 564
Soma 500
[ Show more ]
EffOrt 387
actioN 381
Mong 310
Light 288
Soulkey 272
Mini 253
Hyun 202
Snow 189
hero 151
Pusan 121
TY 104
JYJ84
Barracks 80
ggaemo 74
Killer 73
Mind 65
JulyZerg 59
Aegong 50
Rush 38
Noble 35
ToSsGirL 28
Movie 27
sorry 26
Sharp 20
soO 19
scan(afreeca) 19
Sacsri 16
yabsab 16
Bale 13
SilentControl 11
Shine 8
Terrorterran 8
HiyA 7
Dota 2
Gorgc4716
qojqva2754
Dendi1093
XaKoH 505
420jenkins301
XcaliburYe217
Counter-Strike
olofmeister2952
x6flipin420
Heroes of the Storm
Khaldor201
Other Games
summit1g12209
singsing2411
hiko753
B2W.Neo703
Lowko306
Sick283
Pyrionflax247
Hui .125
Happy122
oskar71
Mew2King44
ToD25
Organizations
StarCraft: Brood War
lovetv 14
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• StrangeGG 12
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• HerbMon 25
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Nemesis8288
Other Games
• WagamamaTV306
Upcoming Events
Monday Night Weeklies
2h 51m
Replay Cast
9h 51m
WardiTV Invitational
21h 51m
WardiTV Invitational
1d 1h
PiGosaur Monday
1d 10h
Replay Cast
1d 20h
Tenacious Turtle Tussle
2 days
The PondCast
2 days
OSC
2 days
WardiTV Invitational
3 days
[ Show More ]
Online Event
4 days
RSL Revival
4 days
RSL Revival
4 days
WardiTV Invitational
4 days
Afreeca Starleague
5 days
Snow vs Soma
Sparkling Tuna Cup
5 days
WardiTV Invitational
5 days
CrankTV Team League
5 days
RSL Revival
6 days
Wardi Open
6 days
CrankTV Team League
6 days
Liquipedia Results

Completed

Acropolis #4 - TS2
WardiTV TLMC #15
HCC Europe

Ongoing

BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
C-Race Season 1
IPSL Winter 2025-26
EC S1
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual

Upcoming

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

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

Advertising | Privacy Policy | Terms Of Use | Contact Us

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