• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 00:23
CEST 06:23
KST 13:23
  • 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 China2Flash 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
SC uni coach streams logging into betting site Player “Jedi” cheat on CSL Flash Announces Hiatus From ASL BW General Discussion Practice Partners (Official)
Tourneys
CSL Xiamen International Invitational [BSL20] Non-Korean Championship 4x BSL + 4x China 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
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 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: 663 users

The Big Programming Thread - Page 923

Forum Index > General Forum
Post a Reply
Prev 1 921 922 923 924 925 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.
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
Poland4725 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
Germany546 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
Spain17971 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 1031 Next
Please log in or register to reply.
Live Events Refresh
Next event in 6h 37m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Nina 292
ProTech60
Ketroc 26
StarCraft: Brood War
Leta 448
Shine 76
Noble 48
Mind 33
ajuk12(nOOB) 15
Bale 3
Dota 2
monkeys_forever1272
Counter-Strike
Stewie2K1225
Super Smash Bros
Mew2King165
Other Games
summit1g8812
ViBE243
Maynarde139
Organizations
Other Games
gamesdonequick40074
BasetradeTV86
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 16 non-featured ]
StarCraft 2
• Berry_CruncH302
• Hupsaiya 64
• practicex 28
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• Azhi_Dahaki31
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• masondota2596
League of Legends
• Lourlo1037
Upcoming Events
Wardi Open
6h 37m
Replay Cast
19h 37m
Sparkling Tuna Cup
1d 5h
WardiTV European League
1d 11h
MaNa vs sebesdes
Mixu vs Fjant
ByuN vs HeRoMaRinE
ShoWTimE vs goblin
Gerald vs Babymarine
Krystianer vs YoungYakov
PiGosaur Monday
1d 19h
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
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...

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.