• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 08:55
CET 14:55
KST 22:55
  • 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: Winners11Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10[ASL20] Finals Preview: Arrival13TL.net Map Contest #21: Voting12[ASL20] Ro4 Preview: Descent11
Community News
[TLMC] Fall/Winter 2025 Ladder Map Rotation4Weekly Cups (Nov 3-9): Clem Conquers in Canada4SC: Evo Complete - Ranked Ladder OPEN ALPHA8StarCraft, SC2, HotS, WC3, Returning to Blizzcon!45$5,000+ WardiTV 2025 Championship7
StarCraft 2
General
[TLMC] Fall/Winter 2025 Ladder Map Rotation Mech is the composition that needs teleportation t Weekly Cups (Nov 3-9): Clem Conquers in Canada Craziest Micro Moments Of All Time? SC: Evo Complete - Ranked Ladder OPEN ALPHA
Tourneys
Constellation Cup - Main Event - Stellar Fest Tenacious Turtle Tussle Sparkling Tuna Cup - Weekly Open Tournament $5,000+ WardiTV 2025 Championship Merivale 8 Open - LAN - Stellar Fest
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 499 Chilling Adaptation Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened Mutation # 496 Endless Infection
Brood War
General
BW General Discussion FlaSh on: Biggest Problem With SnOw's Playstyle Terran 1:35 12 Gas Optimization BGH Auto Balance -> http://bghmmr.eu/ [ASL20] Ask the mapmakers — Drop your questions
Tourneys
[BSL21] RO32 Group D - Sunday 21:00 CET [BSL21] RO32 Group C - Saturday 21:00 CET [ASL20] Grand Finals [Megathread] Daily Proleagues
Strategy
Current Meta PvZ map balance How to stay on top of macro? Soma's 9 hatch build from ASL Game 2
Other Games
General Games
Nintendo Switch Thread Stormgate/Frost Giant Megathread Should offensive tower rushing be viable in RTS games? Path of Exile Dawn of War IV
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
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 Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine Canadian Politics Mega-thread The Games Industry And ATVI
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
[Manga] One Piece Anime Discussion Thread Movie Discussion! Korean Music Discussion Series you have seen recently...
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion MLB/Baseball 2023 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
Blogs
Dyadica Gospel – a Pulp No…
Hildegard
Coffee x Performance in Espo…
TrAiDoS
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Reality "theory" prov…
perfectspheres
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1356 users

The Big Programming Thread - Page 923

Forum Index > General Forum
Post a Reply
Prev 1 921 922 923 924 925 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.
Liebig
Profile Joined August 2010
France738 Posts
Last Edited: 2017-11-29 19:21:12
November 29 2017 19:20 GMT
#18441
On November 30 2017 03:35 sc-darkness wrote:
Do you guys fail logic tests and/or programming tests which ask you to write code which you're unlikely to use at work/in real life? For example, I was told to write code for an MxM matrix. It's artificially split into layers. Here's an example:

1 1 1 1
1 2 2 1
1 1 1 1

Outer layer starts with one. The deeper you dig the higher the number which is 2 in this case. Matrix can be from 1x1 to 9x9 or 100x100. I can't remember exactly. I had to take matrix input and validate if each layer has the expected number.

Also, if you have 1x1 and 2x2 matrix, then they only have an outer layer.

Overall test had to take 1 hour and 30 minutes. It was split into 3 categories - logic questions, SQL questions (8.6/9.0 here) and 2 programming questions. I just think this matrix stuff alone is so time-consuming that it will fuck up your remaining time anyway. Or, is it just me who is being silly?

Personally, it was very easy for me to understand what this matrix question was about. Programming isn't my weakness overall, but coming up with an algorithm/helper functions to check inner layers proved to be the more difficult task. Do you have any suggestions what to read/do so I can become better at tricky stuff like that?


Your example doesn't correspond to the problem, it's not a square.
And this seems trivial with recursivity, the matrix is correct if and only if the outer layer has the right numbers and the inner matrix is correct.
sc-darkness
Profile Joined August 2017
856 Posts
Last Edited: 2017-11-29 19:34:34
November 29 2017 19:23 GMT
#18442
On November 30 2017 04:20 Liebig wrote:
Show nested quote +
On November 30 2017 03:35 sc-darkness wrote:
Do you guys fail logic tests and/or programming tests which ask you to write code which you're unlikely to use at work/in real life? For example, I was told to write code for an MxM matrix. It's artificially split into layers. Here's an example:

1 1 1 1
1 2 2 1
1 1 1 1

Outer layer starts with one. The deeper you dig the higher the number which is 2 in this case. Matrix can be from 1x1 to 9x9 or 100x100. I can't remember exactly. I had to take matrix input and validate if each layer has the expected number.

Also, if you have 1x1 and 2x2 matrix, then they only have an outer layer.

Overall test had to take 1 hour and 30 minutes. It was split into 3 categories - logic questions, SQL questions (8.6/9.0 here) and 2 programming questions. I just think this matrix stuff alone is so time-consuming that it will fuck up your remaining time anyway. Or, is it just me who is being silly?

Personally, it was very easy for me to understand what this matrix question was about. Programming isn't my weakness overall, but coming up with an algorithm/helper functions to check inner layers proved to be the more difficult task. Do you have any suggestions what to read/do so I can become better at tricky stuff like that?


Your example doesn't correspond to the problem, it's not a square.
And this seems trivial with recursivity, the matrix is correct if and only if the outer layer has the right numbers and the inner matrix is correct.


Yes, apologies.

It's

1 1 1 1
1 2 2 1
1 2 2 1
1 1 1 1


How would you do it with recursion?

Edit: I think I see what you mean. Do you mean you can break each matrix into a smaller one and validate it? There would only be one validation method to do this.
Liebig
Profile Joined August 2010
France738 Posts
Last Edited: 2017-11-29 19:48:16
November 29 2017 19:45 GMT
#18443
On November 30 2017 04:23 sc-darkness wrote:
Show nested quote +
On November 30 2017 04:20 Liebig wrote:
On November 30 2017 03:35 sc-darkness wrote:
Do you guys fail logic tests and/or programming tests which ask you to write code which you're unlikely to use at work/in real life? For example, I was told to write code for an MxM matrix. It's artificially split into layers. Here's an example:

1 1 1 1
1 2 2 1
1 1 1 1

Outer layer starts with one. The deeper you dig the higher the number which is 2 in this case. Matrix can be from 1x1 to 9x9 or 100x100. I can't remember exactly. I had to take matrix input and validate if each layer has the expected number.

Also, if you have 1x1 and 2x2 matrix, then they only have an outer layer.

Overall test had to take 1 hour and 30 minutes. It was split into 3 categories - logic questions, SQL questions (8.6/9.0 here) and 2 programming questions. I just think this matrix stuff alone is so time-consuming that it will fuck up your remaining time anyway. Or, is it just me who is being silly?

Personally, it was very easy for me to understand what this matrix question was about. Programming isn't my weakness overall, but coming up with an algorithm/helper functions to check inner layers proved to be the more difficult task. Do you have any suggestions what to read/do so I can become better at tricky stuff like that?


Your example doesn't correspond to the problem, it's not a square.
And this seems trivial with recursivity, the matrix is correct if and only if the outer layer has the right numbers and the inner matrix is correct.


Yes, apologies.

It's

1 1 1 1
1 2 2 1
1 2 2 1
1 1 1 1


How would you do it with recursion?


In kinda pseudo code:

Suppose you have a function check_outer(m, i, j, l, k) that takes the big matrix m, the position of the top left corner (i, j) of the inner matrix of size l and checks that the outer layer of that inner matrix is k and returns true if it is so and false otherwise

Now to check the whole matrix, you just define
check_matrix_aux(m, i, j, l, k) = if l <= 2 then check_outer(m, i, j, l, k) else 
if check_outer(m, i, j, l, k) then check_matrix_aux(m,i+1,j+1,l-1,k+1) else false


and finally check_matrix(m) = check_matrix_aux(m,0,0, length m, 1)


edit: i'm assuming a matrix is an array of arrays
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
November 29 2017 19:47 GMT
#18444
So it's simply a matter of iterating in the correct pattern. (and in this case, incrementing some sort of value that you assign to the matrix indices).

I actually just did something just like this in another program I was doing.

Here is a modified version of the code I used:
+ Show Spoiler +


Inc_i = 0
Inc_j = 0
count = 1

while Inc_i < (row-length) and Inc_j < (row length):
for j in xrange((row length) - Inc_j):
YourArray[count][j + count] = count #go from top left to top right
Inc_i = Inc_i + 1
for i in xrange((row length) - Inc_i):
YourArray[i + count][(row length) - count] = count #go from top right to bottom right
Inc_j = Inc_j + 1
for j in xrange((row length) - Inc_j):
YourArray[(row length) - count][(row length) - count - j] = count #bottom right to bottom left
Inc_i = Inc_i + 1
for i in xrange((row length) - Inc_i):
YourArray[(row length ) - count - i][count] = count #bottom left to top right
count = count + 1


sc-darkness
Profile Joined August 2017
856 Posts
November 29 2017 20:22 GMT
#18445
Ok, thank you for answers. Much appreciated! Despite studying some algorithms and data structures at university, I think I'll start reading Introductions to Algorithms in my free time. Here is the book: https://www.amazon.co.uk/Introduction-Algorithms-Thomas-H-Cormen-ebook/dp/B007CNRCAO/ref=sr_1_2?ie=UTF8&qid=1511986799&sr=8-2&keywords=introduction to algorithms

Has anyone read it? Any thoughts? People say it's really good.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
November 29 2017 21:08 GMT
#18446
A bit for my algorithms class.
phar
Profile Joined August 2011
United States1080 Posts
November 30 2017 03:11 GMT
#18447
On November 30 2017 05:22 sc-darkness wrote:
Ok, thank you for answers. Much appreciated! Despite studying some algorithms and data structures at university, I think I'll start reading Introductions to Algorithms in my free time. Here is the book: https://www.amazon.co.uk/Introduction-Algorithms-Thomas-H-Cormen-ebook/dp/B007CNRCAO/ref=sr_1_2?ie=UTF8&qid=1511986799&sr=8-2&keywords=introduction to algorithms

Has anyone read it? Any thoughts? People say it's really good.

That book is called CLR(S), it is the canonical algorithms text. If you are going to read one algorithms book, that is the one to read.
Who after all is today speaking about the destruction of the Armenians?
phar
Profile Joined August 2011
United States1080 Posts
November 30 2017 03:19 GMT
#18448
On November 29 2017 17:54 Silvanel wrote:
Show nested quote +
On November 29 2017 15:25 phar wrote:
On November 29 2017 08:09 Blitzkrieg0 wrote:
On November 29 2017 08:05 Excludos wrote:
On November 29 2017 07:26 Blitzkrieg0 wrote:
On November 29 2017 07:15 Excludos wrote:
You can't expect someone to know of every possible scenario they might come across. And if you can't test for that, all you can really test for is a super easy fizzbuzz function, which tells you exactly nothing about a person beyond "He does indeed know what a for loop is".


You keep harping on this, but that is exactly what we're testing for. What percentage of candidates do you think we interview that can not write fizzbuzz? We do this for our interns and our entry/newgrad level positions.


Exactly what kind of education do you guys have? In Norway computer science is an engineering degree on the same line as electrical engineer, biochemistry or machine engineers. It requires semi decent grades and quite a bit of math, physics, a bit of chemistry, and a few other general subjects. A for-loop is literally what you learn at first week, and you finish the third year by spending the last 6 months programming a fully functioning program and a full thesis to go along with it. I would have suspected that most of the world operates like this? If so there is simply no way you don't know how to do extremely basic things like a loop after graduating.


I thought the same thing until I interviewed people who couldn't write fizzbuzz with cs degrees.


Yea anyone telling you fizz buzz style questions aren't necessary has not done enough interviews, or is at a tiny company that can be very picky about who they interview (or is unaware of a pipeline in front of them that is filtering for people who can't do fizz buzz).


Thats not necessarily true. Different companies have different recruiting schemes.
For example in my company most people are either recommended by present employees or found by headhunters. Then HR vet them for their experience, salary expectation and etc. And only after that they have interview with technical staff. We dont ask fizzbuzz questions at any point.
Even for junior positions.
For junior testers You get some (simple) program and requirements are told to find as many bugs as possible.
For junior developers there are some simple tasks/questions depending on the technology but no fizzbuzz.
And besides tasks there is always a converastion. Every candidate gets hhis chance.
And we are by no means small company. Granted they might do things differently in other locations, but thats how it is done in our polish location.

I do get what You are saying, there are tech companies in my town that do things this way. They invite a hell lot of people throw fizzbuzz/lanaguage standarized tests at them and invite selct few with best results to interview. You can do things this way. But it is not the only way.

Sure yea, it's a matter of numbers. Your company sounds like it falls into the third category I mentioned - a pipeline that does most of the work for you (referrals and some headhunters), and possibly a bit of the first category (small) if you can rely on *only* referrals and some headhunters. But as soon as you open the floodgates and have a million applicants, a significant fraction of whom will be... less than honest... about their programming skills, you're gonna be kicking yourself for not checking basic (and I mean *basic*) ability first through some cheap hopefully-automated fashion.
Who after all is today speaking about the destruction of the Armenians?
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
November 30 2017 04:21 GMT
#18449
On November 30 2017 12:11 phar wrote:
Show nested quote +
On November 30 2017 05:22 sc-darkness wrote:
Ok, thank you for answers. Much appreciated! Despite studying some algorithms and data structures at university, I think I'll start reading Introductions to Algorithms in my free time. Here is the book: https://www.amazon.co.uk/Introduction-Algorithms-Thomas-H-Cormen-ebook/dp/B007CNRCAO/ref=sr_1_2?ie=UTF8&qid=1511986799&sr=8-2&keywords=introduction to algorithms

Has anyone read it? Any thoughts? People say it's really good.

That book is called CLR(S), it is the canonical algorithms text. If you are going to read one algorithms book, that is the one to read.

It's like a Christian asking if the Bible is a good read
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
WolfintheSheep
Profile Joined June 2011
Canada14127 Posts
Last Edited: 2017-11-30 04:35:28
November 30 2017 04:34 GMT
#18450
On November 30 2017 12:19 phar wrote:
Show nested quote +
On November 29 2017 17:54 Silvanel wrote:
On November 29 2017 15:25 phar wrote:
On November 29 2017 08:09 Blitzkrieg0 wrote:
On November 29 2017 08:05 Excludos wrote:
On November 29 2017 07:26 Blitzkrieg0 wrote:
On November 29 2017 07:15 Excludos wrote:
You can't expect someone to know of every possible scenario they might come across. And if you can't test for that, all you can really test for is a super easy fizzbuzz function, which tells you exactly nothing about a person beyond "He does indeed know what a for loop is".


You keep harping on this, but that is exactly what we're testing for. What percentage of candidates do you think we interview that can not write fizzbuzz? We do this for our interns and our entry/newgrad level positions.


Exactly what kind of education do you guys have? In Norway computer science is an engineering degree on the same line as electrical engineer, biochemistry or machine engineers. It requires semi decent grades and quite a bit of math, physics, a bit of chemistry, and a few other general subjects. A for-loop is literally what you learn at first week, and you finish the third year by spending the last 6 months programming a fully functioning program and a full thesis to go along with it. I would have suspected that most of the world operates like this? If so there is simply no way you don't know how to do extremely basic things like a loop after graduating.


I thought the same thing until I interviewed people who couldn't write fizzbuzz with cs degrees.


Yea anyone telling you fizz buzz style questions aren't necessary has not done enough interviews, or is at a tiny company that can be very picky about who they interview (or is unaware of a pipeline in front of them that is filtering for people who can't do fizz buzz).


Thats not necessarily true. Different companies have different recruiting schemes.
For example in my company most people are either recommended by present employees or found by headhunters. Then HR vet them for their experience, salary expectation and etc. And only after that they have interview with technical staff. We dont ask fizzbuzz questions at any point.
Even for junior positions.
For junior testers You get some (simple) program and requirements are told to find as many bugs as possible.
For junior developers there are some simple tasks/questions depending on the technology but no fizzbuzz.
And besides tasks there is always a converastion. Every candidate gets hhis chance.
And we are by no means small company. Granted they might do things differently in other locations, but thats how it is done in our polish location.

I do get what You are saying, there are tech companies in my town that do things this way. They invite a hell lot of people throw fizzbuzz/lanaguage standarized tests at them and invite selct few with best results to interview. You can do things this way. But it is not the only way.

Sure yea, it's a matter of numbers. Your company sounds like it falls into the third category I mentioned - a pipeline that does most of the work for you (referrals and some headhunters), and possibly a bit of the first category (small) if you can rely on *only* referrals and some headhunters. But as soon as you open the floodgates and have a million applicants, a significant fraction of whom will be... less than honest... about their programming skills, you're gonna be kicking yourself for not checking basic (and I mean *basic*) ability first through some cheap hopefully-automated fashion.

I've seen the the exact opposite happen as well, that companies will overvalue how exceptional they are and end up with completely overqualified people (if anyone at all) filling positions with skillsets that could be taught entirely on-the-job, and likely still will be.

And those positions end up empty again in less than a year.
Average means I'm better than half of you.
phar
Profile Joined August 2011
United States1080 Posts
November 30 2017 05:50 GMT
#18451
Lot of places (in)famous for that, true. The only way you hang on to people there is if you pay them like half a mil a year or w/e lol.
Who after all is today speaking about the destruction of the Armenians?
Silvanel
Profile Blog Joined March 2003
Poland4733 Posts
Last Edited: 2017-11-30 08:17:05
November 30 2017 08:15 GMT
#18452
My company has around 26000 employees dunno if its is large or small for You. Granted the recruiting scheme is different depending on location (so can be different say in German, USA or in India and i would say it most certainly is). Still it works fine for our location i think (Poland). The project i work currently in has around 600 engineers spread around the globe. For sure some of them are overqualified for their postion, some underqualified and some are exactly where they need to be. But i would say its more because of the size than recruiting scheme.
Pathetic Greta hater.
Wrath
Profile Blog Joined July 2014
3174 Posts
November 30 2017 08:48 GMT
#18453
Hi guys,

Lets say we have the following:
I'm accessing 3 huge XML file via HTTP (Each file about 200,000 node). However, via URL, I can determine how many nodes returned each time and from what starting point (rows=5000&start=0, "rows" determine how rows returned and "start" determines from what node to start fetching nodes)

I'm writing a Java code that will compare these files and determine if they are all equal or not.

What is the best way to do this? Do I write these 3 files locally and compare them? Or do I store portions using DocumentBuilder and Document and compare each iteration (lets say each iteration about 5000 node/record).
Liebig
Profile Joined August 2010
France738 Posts
November 30 2017 09:11 GMT
#18454
Advent of Code starts tomorrow.

Who's going to do it ?
Hanh
Profile Joined June 2016
146 Posts
November 30 2017 10:08 GMT
#18455
Sounds like fun
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
November 30 2017 12:32 GMT
#18456
Every fall as it nears finals time I manage to get distracted by furiously trying to come up with solutions to the travelling salesman problem. I'm talking like, 14 hour days spent deep in thought. Coincidence, or tactic to avoid responsibility?
Artesimo
Profile Joined February 2015
Germany563 Posts
November 30 2017 14:15 GMT
#18457
On November 30 2017 21:32 travis wrote:
Every fall as it nears finals time I manage to get distracted by furiously trying to come up with solutions to the travelling salesman problem. I'm talking like, 14 hour days spent deep in thought. Coincidence, or tactic to avoid responsibility?


Traveling Salesman is one of the prime examples for problems that are not economicly solveable via exhaustive enumeration and a great problem for genetic algorithms which search for a "good enough" solution rather than the best.
Acrofales
Profile Joined August 2010
Spain18114 Posts
November 30 2017 16:23 GMT
#18458
Dumb question:

I have a stupid problem where I have to correct a whole load of stuff. And it's going to be fastest to do this with a long list of radio buttons where I can mark "right" "half right" or "wrong". However, I don't know exactly how many radio buttons I need beforehand because it's loaded dynamically from the database.

I have my code for loading this stuff in python, but wtf do I use to generate the UI? I was looking at guidata, but it seems to want a fixed number of items up front, rather than being able to add them at runtime.

Am I incredibly stupid to think a simple and fast way of doing this is by simply generating a webpage, hosting it with flask and then saving the answers back into the database on a form submission?
Khalum
Profile Joined September 2010
Austria831 Posts
November 30 2017 16:43 GMT
#18459
I guess a really fast hack could be a GUI presenting 3 radio buttons and 'back'/'next' buttons to navigate between questions.
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
November 30 2017 17:01 GMT
#18460
On November 30 2017 21:32 travis wrote:
Every fall as it nears finals time I manage to get distracted by furiously trying to come up with solutions to the travelling salesman problem. I'm talking like, 14 hour days spent deep in thought. Coincidence, or tactic to avoid responsibility?


My current problem at work is not too different from the travelling salesman:
Calculating the cheapest possible shopping cart given a set of multiple discount rules.

Multiple discounts can apply to each item in different order. Some discounts do not allow for other discounts. Some discounts only apply to multiples of a mixed set of items (e.g. two mattresses, either the same or different, for a set price). Some discounts apply to products that already have a reduced price, some don't, but if they don't and the discount is cheaper than the reduced price, then they apply and the reduced price doesn't.

I started that task thinking I could just use a prioritized list, apply discount A, apply discount B, then check for each exclusive discount whether it would be better, ... but eventually I got stuck, because all discounts essentially needed to know about all other discounts. The logic grew too much, trying to solve cases where the distinct items A, B and C all could be in an exclusive set that only applied to sets of two items but also had one or more potential non-exclusive discounts. Depending on the non-exclusive discounts, (AB)C could be cheaper than A(BC) or (AC)B or the set might even be more expensive than using the non-exclusive discounts for all three.

I eventually decided that it looks more like a graph problem and refactored it to recursively go through all possible iterations of cart positions and discounts, trying to find the cheapest path. The logic looks much cleaner and easier to understand, though I have yet to test the performance. It should still be fine, because on average there are only 3-4 items in the carts and the upper boundary is around 25.
Prev 1 921 922 923 924 925 1032 Next
Please log in or register to reply.
Live Events Refresh
Kung Fu Cup
12:00
2025 Monthly #3: Day 1
Reynor vs GuMihoLIVE!
ByuN vs ShoWTimE
RotterdaM523
TKL 182
Rex146
IntoTheiNu 103
SteadfastSC88
Liquipedia
OSC
11:30
Mid Season Playoffs
Cure vs SpiritLIVE!
Krystianer vs Percival
WardiTV446
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RotterdaM 523
Reynor 227
TKL 182
Rex 146
SteadfastSC 88
StarCraft: Brood War
Calm 4495
Rain 2923
Bisu 2701
Hyuk 2015
Horang2 1304
Flash 797
Soma 464
Backho 369
Stork 340
Rush 261
[ Show more ]
Pusan 197
Last 133
Soulkey 115
JulyZerg 104
Barracks 79
hero 58
sSak 33
zelot 31
Aegong 28
sas.Sziky 24
Killer 23
Terrorterran 11
Noble 9
Hm[arnc] 7
Dota 2
Gorgc2155
qojqva1591
Dendi1136
XcaliburYe181
BananaSlamJamma86
Counter-Strike
olofmeister911
allub158
Super Smash Bros
Mew2King127
Other Games
B2W.Neo990
hiko295
DeMusliM285
Pyrionflax260
Sick170
Fuzer 164
Hui .86
QueenE46
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• Adnapsc2 9
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• C_a_k_e 1641
• WagamamaTV400
League of Legends
• Nemesis1689
• TFBlade702
Upcoming Events
Tenacious Turtle Tussle
9h 5m
The PondCast
20h 5m
RSL Revival
20h 5m
Solar vs Zoun
MaxPax vs Bunny
Kung Fu Cup
22h 5m
WardiTV Korean Royale
22h 5m
PiGosaur Monday
1d 11h
RSL Revival
1d 20h
Classic vs Creator
Cure vs TriGGeR
Kung Fu Cup
1d 22h
CranKy Ducklings
2 days
RSL Revival
2 days
herO vs Gerald
ByuN vs SHIN
[ Show More ]
Kung Fu Cup
2 days
IPSL
3 days
ZZZero vs rasowy
Napoleon vs KameZerg
BSL 21
3 days
Tarson vs Julia
Doodle vs OldBoy
eOnzErG vs WolFix
StRyKeR vs Aeternum
Sparkling Tuna Cup
3 days
RSL Revival
3 days
Reynor vs sOs
Maru vs Ryung
Kung Fu Cup
3 days
WardiTV Korean Royale
3 days
BSL 21
4 days
JDConan vs Semih
Dragon vs Dienmax
Tech vs NewOcean
TerrOr vs Artosis
IPSL
4 days
Dewalt vs WolFix
eOnzErG vs Bonyth
Wardi Open
4 days
Monday Night Weeklies
5 days
WardiTV Korean Royale
5 days
The PondCast
6 days
Liquipedia Results

Completed

Proleague 2025-11-07
Stellar Fest: Constellation Cup
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
YSL S2
BSL Season 21
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
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

Upcoming

SLON Tour Season 2
BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
RSL Revival: Season 3
META Madness #9
BLAST Bounty Winter 2026
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 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...

Disclosure: This page contains affiliate marketing links that support TLnet.

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.