• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 08:53
CET 13:53
KST 21:53
  • 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
[ASL21] Ro24 Preview Pt1: New Chaos0Team Liquid Map Contest #22 - Presented by Monster Energy7ByuL: The Forgotten Master of ZvT30Behind the Blue - Team Liquid History Book19Clem wins HomeStory Cup 289
Community News
Weekly Cups (March 16-22): herO doubles, Cure surprises3Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool48Weekly Cups (March 9-15): herO, Clem, ByuN win42026 KungFu Cup Announcement6BGE Stara Zagora 2026 cancelled12
StarCraft 2
General
What mix of new & old maps do you want in the next ladder pool? (SC2) Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool Weekly Cups (March 16-22): herO doubles, Cure surprises Weekly Cups (August 25-31): Clem's Last Straw? Team Liquid Map Contest #22 - Presented by Monster Energy
Tourneys
Sparkling Tuna Cup - Weekly Open Tournament World University TeamLeague (500$+) | Signups Open RSL Season 4 announced for March-April WardiTV Team League Season 10 KSL Week 87
Strategy
Custom Maps
[M] (2) Frigid Storage Publishing has been re-enabled! [Feb 24th 2026]
External Content
The PondCast: SC2 News & Results Mutation # 518 Radiation Zone Mutation # 517 Distant Threat Mutation # 516 Specter of Death
Brood War
General
ASL21 General Discussion RepMastered™: replay sharing and analyzer site mca64Launcher - New Version with StarCraft: Remast BGH Auto Balance -> http://bghmmr.eu/ Soulkey's decision to leave C9
Tourneys
[ASL21] Ro24 Group C [Megathread] Daily Proleagues [ASL21] Ro24 Group B 2026 Changsha Offline Cup
Strategy
Fighting Spirit mining rates Simple Questions, Simple Answers Soma's 9 hatch build from ASL Game 2
Other Games
General Games
General RTS Discussion Thread Nintendo Switch Thread Stormgate/Frost Giant Megathread Path of Exile Dawn of War IV
Dota 2
Official 'what is Dota anymore' discussion The Story of Wings Gaming
League of Legends
G2 just beat GenG in First stand
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 Five o'clock TL Mafia Mafia Game Mode Feedback/Ideas Vanilla Mini Mafia
Community
General
US Politics Mega-thread Canadian Politics Mega-thread Russo-Ukrainian War Thread European Politico-economics QA Mega-thread Things Aren’t Peaceful in Palestine
Fan Clubs
The IdrA Fan Club
Media & Entertainment
[Req][Books] Good Fantasy/SciFi books Movie Discussion! [Manga] One Piece
Sports
2024 - 2026 Football Thread Cricket [SPORT] Formula 1 Discussion Tokyo Olympics 2021 Thread General nutrition recommendations
World Cup 2022
Tech Support
Laptop capable of using Photoshop Lightroom?
TL Community
The Automated Ban List
Blogs
Funny Nicknames
LUCKY_NOOB
Money Laundering In Video Ga…
TrAiDoS
Iranian anarchists: organize…
XenOsky
FS++
Kraekkling
Shocked by a laser…
Spydermine0240
Unintentional protectionism…
Uldridge
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1558 users

The Big Programming Thread - Page 807

Forum Index > General Forum
Post a Reply
Prev 1 805 806 807 808 809 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.
phar
Profile Joined August 2011
United States1080 Posts
November 28 2016 17:37 GMT
#16121
On November 28 2016 17:05 icystorage wrote:
I had a job interview last week (I already have a job) for a mid level position. During the technical interview Q&A, I only answered around 40% of the total questions, is that normal?

Really depends on the company. Some places will fail you out if you mess up more than a question or two. Some places just ask a ton of random ass questions and use it more to figure out placement than pass/fail, so you're expected to not do well in all areas. Hard to say without knowing that specific company's hiring methods.

This is an in person spoken interview, or like a written multiple choice type deal?
Who after all is today speaking about the destruction of the Armenians?
icystorage
Profile Blog Joined November 2008
Jollibee19350 Posts
November 28 2016 22:34 GMT
#16122
Skype call, but yeah thanks, there were a lot of questions.
LiquidDota StaffAre you ready for a Miracle-? We are! The International 2017 Champions!
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2016-11-29 23:21:49
November 29 2016 23:20 GMT
#16123
Is binary serialisation the fastest in theory? I came across protobuf (protocol buffers) yesterday and they say it is faster. However, it is probably concrete implementation, so I'm not sure what to make of it.
meatpudding
Profile Joined March 2011
Australia520 Posts
November 30 2016 01:51 GMT
#16124
On November 30 2016 08:20 Shield wrote:
Is binary serialisation the fastest in theory? I came across protobuf (protocol buffers) yesterday and they say it is faster. However, it is probably concrete implementation, so I'm not sure what to make of it.

This is a difficult question to answer because there are different serialisation methods and formats. But,
1. Binary serialisation will be faster to read and write than text, due to smaller file sizes and faster comparison operations;
2. Protobuf looks really interesting
Be excellent to each other.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
November 30 2016 02:54 GMT
#16125
I am soooo tired. But... exam tomorrow. I'll do a little study tonight and wake up early for some more study.

Some exam review questions... are these answers accurate?

graph questions, define these

cycle: a path that goes back to the starting node without repeating a node
simple path: a path that doesn't repeat vertices
acyclic graph: a graph without any cycles
connecting graph: a graph where any two nodes can be connected by a path

Which kind of graph traversal is likely to use recursion: depth first

How can a graph be implemented using an adjacency list:
+ Show Spoiler +

Define a vertex object or edge object. Fill a list with those objects. Each object itself contains a list of nodes it connects to.


What kind of graphs do it work for? Weighted/directed/undirected?
+ Show Spoiler +

Well.. Is it still an "adjacency list" if it's using maps? I am guessing not. So the answer is that it works for directed or undirected graphs but not weighted graphs...? I dunno actually



A couple quick sorting algorithm questions

What kind of data works well with bucket sort: When you are sorting mostly unique elements(so they are spread out)?
What kind of data works well with counting sort: When you are working with a limited key range (counting sort will work with strings, right?)
What kind of data works with radix sort: Inputs that are limited in size and uniqueness of keys? I guess, relative to the total number of inputs ?


some threading questions

What is the difference between a thread and a process? A process handles an entire application, and a thread handles a specific part of an application. A process can be made of multiple threads, but a thread cannot be.

Describe the memory diagrom for multi-threaded java program: My answer here is probably terrible but i believe that each thread uses it's own stack, but they all share the one heap. Been a while since I've done this stuff but the stack is a stack (last in first out) and has the temporary memory stuff in it(references to the heap and primitives?). The heap has the stuff that is more permanent, and a special section for static stuff.

Examples where you might want a multi-threaded program: When you want your program to be able to handle new input while simultaneously executing code(is this answer terrible?). Example: a gui

What is a data race: when 2 threads access the same memory and at least one of them is a write.

what is a lock: ergggh. It's when you say "hey, only one thread at a time can use this block of code".

how do threads behave when encountering a synchronized block: "all other threads stop until the synchronized thread is done executing?"

what is a thread safe class: a class that can be used with multiple threads and work as expected

what is a deadlock: when 2 threads try to access the code that is currently locked to access from only the other threads (they both lock each other out).









Please critique! Thanks
Neshapotamus
Profile Blog Joined May 2006
United States163 Posts
Last Edited: 2016-11-30 04:59:13
November 30 2016 04:54 GMT
#16126
Q) How can a graph be implemented using an adjacency list?
A) An adjacency list is a map. The key is the vertex, the value is a list of vertices.

Q) What kind of graphs does(sic) it work for? Weighted/directed/undirected?
A) Works for all.

Related Graph Questions that will deepen your understanding:
1. When do you use an adjacency list vs an adjacency matrix?
a. How much space do they use?
b. What is their running speed?

2. What is a undirected Graph?
a. How do you store this in an adjacency list?
b. What is a degree?

3. What is a directed Graph?
a. How do you store this in an adjacency list?
b. What is an indegree?
c. What is an outdegree?

4. What is a weighted Graph?
a. When would you use a weighted graph?
b. When you use a weighted directed Graph, and your run breadth first search, do you expect to find the shortest path? If not, why?

5. When do you want to use depth first search?
a. Can you name of use cases for dfs?
b. What is the running speed for dfs when using an adjacency list?
c. What is the running speed for dfs when using an adjacency matrix?

6. When do you want to use breath first search?
a. Can you name of use cases for bfs?
b. What is the running speed for bfs when using an adjacency list?
c. What is the running speed for bfs when using an adjacency matrix?

Are the questions that you came up with something you came up with or something your teacher provided? Just curious as I find definitions are not really important as knowing how and when to use these data structures.

Blisse
Profile Blog Joined July 2010
Canada3710 Posts
Last Edited: 2016-11-30 07:09:04
November 30 2016 05:09 GMT
#16127
graph questions, define these

cycle: a path that goes back to the starting node without repeating a node
simple path: a path that doesn't repeat vertices
acyclic graph: a graph without any cycles
connecting graph: a graph where any two nodes can be connected by a path


Choose either node or vertex. Don't mix the two words.

Your terminology is too loose.

A cycle is a path that starts and ends at the same node.
A connected graph is a graph where there is a path between any two nodes.


What is the difference between a thread and a process? A process handles an entire application, and a thread handles a specific part of an application. A process can be made of multiple threads, but a thread cannot be.


Handles doesn't make sense. A process is a group of threads associated with a program. A thread is a group of instructions run by a scheduler.


Describe the memory diagrom for multi-threaded java program: My answer here is probably terrible but i believe that each thread uses it's own stack, but they all share the one heap. Been a while since I've done this stuff but the stack is a stack (last in first out) and has the temporary memory stuff in it(references to the heap and primitives?). The heap has the stuff that is more permanent, and a special section for static stuff.


You will probably be asked this, and asked to draw it out.


Examples where you might want a multi-threaded program: When you want your program to be able to handle new input while simultaneously executing code(is this answer terrible?). Example: a gui


The idea is fine but the wording is incorrect. You'd want something closer to, "When you want your program to remain responsive while concurrently executing code". You should know what's the difference between concurrency and parallelism.

how do threads behave when encountering a synchronized block: "all other threads stop until the synchronized thread is done executing?"


Same thing here, right idea but wording. The threads will block themselves until the synchronized block thread finishes executing the synchronized block, at which point the threads will unblock according to the scheduler."

what is a lock: ergggh. It's when you say "hey, only one thread at a time can use this block of code".


More of an example than a definition. A lock is a synchronization mechanism to manage resource access in a multi-threaded environment.
There is no one like you in the universe.
Neshapotamus
Profile Blog Joined May 2006
United States163 Posts
Last Edited: 2016-11-30 05:11:51
November 30 2016 05:10 GMT
#16128
Whenever you talk about sorting, you need to be able to answer these questions:

1. Briefly describe the sorting algorithm

2. Is it stable? If not, why?

3. What the running time?
a. O, Omega and Theta notation of running times. (Upper limit, lower limit, and between upper and lower Limit respectively)

4. How much space does it use?

5. How do you implement it in your language?

You should be able to answer the above questions for counting sorts and comparison sorts.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
November 30 2016 10:56 GMT
#16129
maybe it's because it's 5 in the morning and i didn't get much sleep but I feel so much love when I wake up and see you guys helping me. thanks blisse, I wrote down your definitions I'll study those on the bus to school. gonna go through some of neshs questions and then practice pseudocode / threading implementations

On November 30 2016 13:54 Neshapotamus wrote:
Q) How can a graph be implemented using an adjacency list?
A) An adjacency list is a map. The key is the vertex, the value is a list of vertices.


that makes sense I don't know why it wasn't taught to us like that


Related Graph Questions that will deepen your understanding:
1. When do you use an adjacency list vs an adjacency matrix?
a. How much space do they use?
b. What is their running speed?


adjacency matrix is a 2d array right? so this uses more memory n*n
Adjacency list uses less memory but looking up the actual edges would be a lot lower

adjacency matrix... 2 arrays... lookup should be constant time right? if you know the index
adjacency list I am not sure how quick lookup is.. I guess O(n) minimum?



2. What is a undirected Graph?
a. How do you store this in an adjacency list?
b. What is a degree?

3. What is a directed Graph?
a. How do you store this in an adjacency list?
b. What is an indegree?
c. What is an outdegree?

4. What is a weighted Graph?
a. When would you use a weighted graph?
b. When you use a weighted directed Graph, and your run breadth first search, do you expect to find the shortest path? If not, why?

5. When do you want to use depth first search?
a. Can you name of use cases for dfs?
b. What is the running speed for dfs when using an adjacency list?
c. What is the running speed for dfs when using an adjacency matrix?

6. When do you want to use breath first search?
a. Can you name of use cases for bfs?
b. What is the running speed for bfs when using an adjacency list?
c. What is the running speed for bfs when using an adjacency matrix?

Are the questions that you came up with something you came up with or something your teacher provided? Just curious as I find definitions are not really important as knowing how and when to use these data structures.



2.) It means that if there is an edge between 2 vertices you can go either direction between them. In an adjacency list, does this mean that if you map A to B, you also have to map B to A? Or is there another way this is typically handled (perhaps by addressing it in all your methods?)

I quickly looked up degree, I hadn't heard of it. But I am skipping it because i know this won't be on the test (though it looks interesting so I wish it was.

4.) weighted graph is when the edges are assigned values so that they can be compared
a.) when you need to do some meaningful comparison of paths
b.) yes, you do.

5.)You want to use a depth first search when... geeze I don't know why you would use a depth first search. I guess a criteria is that you don't care if you find the shortest path. I guess it may also technically be quicker for visiting all the vertices?

gonna stop and study pseudocode now. thank you!
Acrofales
Profile Joined August 2010
Spain18243 Posts
Last Edited: 2016-11-30 11:51:48
November 30 2016 11:50 GMT
#16130
On November 30 2016 19:56 travis wrote:
maybe it's because it's 5 in the morning and i didn't get much sleep but I feel so much love when I wake up and see you guys helping me. thanks blisse, I wrote down your definitions I'll study those on the bus to school. gonna go through some of neshs questions and then practice pseudocode / threading implementations

Show nested quote +
On November 30 2016 13:54 Neshapotamus wrote:
Q) How can a graph be implemented using an adjacency list?
A) An adjacency list is a map. The key is the vertex, the value is a list of vertices.


that makes sense I don't know why it wasn't taught to us like that

Show nested quote +

Related Graph Questions that will deepen your understanding:
1. When do you use an adjacency list vs an adjacency matrix?
a. How much space do they use?
b. What is their running speed?


adjacency matrix is a 2d array right? so this uses more memory n*n
Adjacency list uses less memory but looking up the actual edges would be a lot lower

adjacency matrix... 2 arrays... lookup should be constant time right? if you know the index
adjacency list I am not sure how quick lookup is.. I guess O(n) minimum?


O(n) is correct, although generally speaking checking the presence of an edge is not usually a very interesting operation,


Show nested quote +

2. What is a undirected Graph?
a. How do you store this in an adjacency list?
b. What is a degree?

3. What is a directed Graph?
a. How do you store this in an adjacency list?
b. What is an indegree?
c. What is an outdegree?

4. What is a weighted Graph?
a. When would you use a weighted graph?
b. When you use a weighted directed Graph, and your run breadth first search, do you expect to find the shortest path? If not, why?

5. When do you want to use depth first search?
a. Can you name of use cases for dfs?
b. What is the running speed for dfs when using an adjacency list?
c. What is the running speed for dfs when using an adjacency matrix?

6. When do you want to use breath first search?
a. Can you name of use cases for bfs?
b. What is the running speed for bfs when using an adjacency list?
c. What is the running speed for bfs when using an adjacency matrix?

Are the questions that you came up with something you came up with or something your teacher provided? Just curious as I find definitions are not really important as knowing how and when to use these data structures.



2.) It means that if there is an edge between 2 vertices you can go either direction between them. In an adjacency list, does this mean that if you map A to B, you also have to map B to A? Or is there another way this is typically handled (perhaps by addressing it in all your methods?)

I quickly looked up degree, I hadn't heard of it. But I am skipping it because i know this won't be on the test (though it looks interesting so I wish it was.

4.) weighted graph is when the edges are assigned values so that they can be compared
a.) when you need to do some meaningful comparison of paths
b.) yes, you do.

5.)You want to use a depth first search when... geeze I don't know why you would use a depth first search. I guess a criteria is that you don't care if you find the shortest path. I guess it may also technically be quicker for visiting all the vertices?

gonna stop and study pseudocode now. thank you!


Re 4:
No. BFS will not give you the shortest path in a weighted graph. Imagine the following graph:

Nodes: (start, a, dest)
Edges:
(start, dest; 10)
(start, a; 1)
(a, dest; 1)

BFS will stop when it finds dest. In the graph above, this will give the path (start -> dest) with cost 10. It will not continue to find (start -> a -> dest) with cost 2, and thus the actual shortest path. That's why you need Dijkstra.

Re 5:
DFS is great if you have to traverse the entire tree anyway. It has a lot less overhead than BFS (especially for wide trees). Other uses are very specifically for the type of problem: if you have many good solutions, but they are hidden deep in a (wide) tree, you want to use DFS.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2016-11-30 11:54:20
November 30 2016 11:53 GMT
#16131
Acrofales: regaridng "shortest path", I was thinking unweighted. So like, it will find a path that contains the shortest amount of edges.

edit: Oh, my bad, I see. He was asking about weighted graphs.
Manit0u
Profile Blog Joined August 2004
Poland17700 Posts
November 30 2016 13:48 GMT
#16132
https://www.destroyallsoftware.com/talks/wat

Wat...
Time is precious. Waste it wisely.
tofucake
Profile Blog Joined October 2009
Hyrule19197 Posts
November 30 2016 13:50 GMT
#16133
love that one :D
Liquipediaasante sana squash banana
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
November 30 2016 14:06 GMT
#16134
--- Nuked ---
Acrofales
Profile Joined August 2010
Spain18243 Posts
November 30 2016 15:03 GMT
#16135
On November 30 2016 23:06 Nesserev wrote:
Show nested quote +
On November 30 2016 22:48 Manit0u wrote:
https://www.destroyallsoftware.com/talks/wat

Wat...

I end up watching this one every couple of months... still love it, especially the last one

Same. I start off thinking "oh, this looks funny", then realize I already watched it, and cry my eyes out laughing anyway.
Prillan
Profile Joined August 2011
Sweden350 Posts
November 30 2016 17:09 GMT
#16136
On November 30 2016 13:54 Neshapotamus wrote:
Q) How can a graph be implemented using an adjacency list?
A) An adjacency list is a map. The key is the vertex, the value is a list of vertices.

Q) What kind of graphs does(sic) it work for? Weighted/directed/undirected?
A) Works for all.

Maybe I'm stupid, but how would you implement a weighted graph using the above definition of an adjacency list?
TheBB's sidekick, aligulac.com | "Reality is frequently inaccurate." - Douglas Adams
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2016-11-30 18:33:05
November 30 2016 18:31 GMT
#16137
I think I did pretty well on the exam. Most of the questions were knowledge questions.

The three knowledge questions I was unsure about was the big O complexity of "average case" bubble sort, "worst case" bucket sort, but with it being specified beforehand that the range was at least as big as n and with uniform distribution, and the "worst case" of counting sort where the range was not bigger than n.

I put that average case of bubble sort was n^2 but I found it to be an odd question, because isn't it like completely up to chance?

I put that the worst case of bucket sort under those conditions was O(n)

I put that the worst case of counting sort under those conditions was O(n)


There were 3 code implementation questions.

The first was to implement bubble sort when passed (Comparable[] a)

For this I did a for loop of i = 0 incrementing to a.length -1;
And inside that I did a for loop of j = 0 going to a.length - i;

and inside that I did an if((index i compareto index i+1) > 0) { swap them }


I see now just looking at it that my inner loop should have started at j = 1. Hopefully that's only 1 point off.




The 2nd implementation was to implement heap sort when passed Comparable[] a and Heap h. It specified that our heap had add and removeSmallest methods

For this I just did a for loop through a[], and added every element to the heap. Then I did a for loop and did remove smallest for every index and put them back into the array. seems like the most straightforward thing ever.

you know what, shit. i don't think I returned the arrays in either of these.. lol. I always do stupid shit when writing the code.



anyways the last implementation had a class with an empty main method in it. I was told to "spawn 500 threads that each print 'hi'"

I made an inner class that implements runnable. inside that I put a run() { System.out.println("hi") }

Then I put in my main method I put a for loop that ran 500 times. inside it said
Thread newThread = new Thread(inner class name);
newThread.start



I don't know if this was actually how I do it, though
mantequilla
Profile Blog Joined June 2012
Turkey781 Posts
December 01 2016 15:18 GMT
#16138
any android devs here?

when making a skype-like application, do I need a background service implemented myself that always runs and listens for incoming calls, or is there a service provided by Google that I can use to nudge my app to start when a call comes?

for example, for a step counter app, it always needs to run in background to be able to count steps even when app is not in the front, but a skype app does not need that, it just needs to be nudged when a call comes, so it shouldn't need a continuously running background service.
Age of Mythology forever!
shz
Profile Blog Joined October 2010
Germany2687 Posts
December 01 2016 16:09 GMT
#16139
On December 02 2016 00:18 mantequilla wrote:
any android devs here?

when making a skype-like application, do I need a background service implemented myself that always runs and listens for incoming calls, or is there a service provided by Google that I can use to nudge my app to start when a call comes?

for example, for a step counter app, it always needs to run in background to be able to count steps even when app is not in the front, but a skype app does not need that, it just needs to be nudged when a call comes, so it shouldn't need a continuously running background service.


Without knowing too much, you could maybe solve that by using notifications. When a user wants to call another one, the service connects to your backend and the backend pushes a notification. This may be possible with https://cloud.google.com/functions or something simliar.

But I'm not sure if this is the right way to go.
Liquipedia
Acrofales
Profile Joined August 2010
Spain18243 Posts
December 01 2016 16:20 GMT
#16140
On December 02 2016 01:09 shz wrote:
Show nested quote +
On December 02 2016 00:18 mantequilla wrote:
any android devs here?

when making a skype-like application, do I need a background service implemented myself that always runs and listens for incoming calls, or is there a service provided by Google that I can use to nudge my app to start when a call comes?

for example, for a step counter app, it always needs to run in background to be able to count steps even when app is not in the front, but a skype app does not need that, it just needs to be nudged when a call comes, so it shouldn't need a continuously running background service.


Without knowing too much, you could maybe solve that by using notifications. When a user wants to call another one, the service connects to your backend and the backend pushes a notification. This may be possible with https://cloud.google.com/functions or something simliar.

But I'm not sure if this is the right way to go.


You can make your app react to phone call intents.

http://stackoverflow.com/questions/15563921/how-to-detect-incoming-calls-in-an-android-device

Now this is for actual phonecalls. Not quite sure what to do for your own voip app, but my bet is you're going to rely on this:
https://developer.android.com/guide/topics/connectivity/sip.html

That's the Android SDK library for it. If that doesn't do what you need, it'll at least give you ideas of how to implement your own version.
Prev 1 805 806 807 808 809 1032 Next
Please log in or register to reply.
Live Events Refresh
Kung Fu Cup
11:00
2026 Week 2
WardiTV713
TKL 253
SteadfastSC163
IndyStarCraft 150
Rex113
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Lowko271
TKL 253
SteadfastSC 163
IndyStarCraft 150
Rex 113
StarCraft: Brood War
Britney 71440
Sea 28551
Calm 5887
Horang2 2006
Jaedong 1539
Mong 594
Mini 555
Larva 531
EffOrt 438
actioN 329
[ Show more ]
Rush 296
Shine 281
ZerO 217
Leta 185
ggaemo 167
Last 163
Snow 156
Light 133
Pusan 109
Soma 98
Sharp 88
ToSsGirL 85
Mind 76
Aegong 48
Backho 46
Barracks 27
Bale 21
GoRush 18
ajuk12(nOOB) 17
Noble 17
zelot 16
Icarus 15
IntoTheRainbow 14
sorry 14
Nal_rA 14
Rock 9
ivOry 9
910 8
Terrorterran 5
eros_byul 0
Dota 2
Gorgc6139
BananaSlamJamma220
XcaliburYe143
Counter-Strike
x6flipin325
edward81
Heroes of the Storm
MindelVK15
Other Games
singsing1967
shoxiejesuss788
Liquid`RaSZi787
B2W.Neo755
olofmeister744
XBOCT334
hiko307
XaKoH 270
crisheroes253
Fuzer 177
Sick78
ArmadaUGS77
QueenE58
ZerO(Twitch)7
Organizations
Dota 2
PGL Dota 2 - Main Stream39
StarCraft: Brood War
lovetv 13
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 13 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• iopq 6
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• WagamamaTV412
League of Legends
• TFBlade378
Upcoming Events
Replay Cast
11h 7m
KCM Race Survival
20h 7m
The PondCast
21h 7m
WardiTV Team League
23h 7m
OSC
23h 7m
Replay Cast
1d 11h
WardiTV Team League
1d 23h
RSL Revival
2 days
Cure vs Zoun
herO vs Rogue
WardiTV Team League
2 days
Platinum Heroes Events
3 days
[ Show More ]
BSL
3 days
RSL Revival
3 days
ByuN vs Maru
MaxPax vs TriGGeR
WardiTV Team League
3 days
BSL
4 days
Replay Cast
4 days
Replay Cast
4 days
Afreeca Starleague
4 days
Light vs Calm
Royal vs Mind
Wardi Open
4 days
Monday Night Weeklies
5 days
OSC
5 days
Sparkling Tuna Cup
5 days
Afreeca Starleague
5 days
Rush vs PianO
Flash vs Speed
Replay Cast
6 days
Afreeca Starleague
6 days
BeSt vs Leta
Queen vs Jaedong
Liquipedia Results

Completed

Proleague 2026-03-23
WardiTV Winter 2026
Underdog Cup #3

Ongoing

KCM Race Survival 2026 Season 1
BSL Season 22
CSL Elite League 2026
CSL Season 20: Qualifier 1
ASL Season 21
Acropolis #4 - TS6
RSL Revival: Season 4
Nations Cup 2026
NationLESS Cup
BLAST Open Spring 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual

Upcoming

2026 Changsha Offline CUP
CSL Season 20: Qualifier 2
CSL 2026 SPRING (S20)
Acropolis #4
IPSL Spring 2026
BSL 22 Non-Korean Championship
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 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 © 2026 TLnet. All Rights Reserved.