• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 22:29
CEST 04:29
KST 11:29
  • 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
Serral wins HomeStory Cup 2910Serral wins Maestros of the Game 243ByuL, and the Limitations of Standard Play3Team Liquid Map Contest #22: Results and Winners7Code S Season 2 (2026): RO4 and Finals Preview12
Community News
Reynor: GSL Loss Wasn't About Preparation Format9[IPSL] Spring 2026 Grand Finals - This Weekend!0Weekly Cups (July 6 - 12): Protoss strike back4BSL Season 22 Full Overview & Conclusion8BSL Season 22 Full Overview & Conclusion8
StarCraft 2
General
Weekly Cups (July 6 - 12): Protoss strike back Reynor: GSL Loss Wasn't About Preparation Format Co-op Commander Guide: Kerrigan Serral wins HomeStory Cup 29 Is the larve respawn broken?
Tourneys
GSL CK #5 Race War WardiTV Summer Cup 2026 RSL Revival: Season 6 - Qualifiers and Main Event HomeStory Cup 29 Vespene Cup #1 — $300+ USD, July 10
Strategy
[G] Having the right mentality to improve
Custom Maps
New Map Maker - Looking for Advice - Love or Hate Work In Progress Melee Maps [D]RTS in all its shapes and glory <3
External Content
The PondCast: SC2 News & Results Mutation # 534 Burning Evacuation Mutation # 533 Die Together Mutation # 532 Nuclear Family
Brood War
General
Pros Debate: Zerg Unfairly Nerfed? (ASL S22 map) screpdb: new Starcraft reporting tool BSL Season 22 Full Overview & Conclusion BGH Auto Balance -> http://bghmmr.eu/ ASL 22 Proposed Map Pool
Tourneys
[Megathread] Daily Proleagues [IPSL] Spring 2026 Grand Finals - This Weekend! [ASL22] Wildcard Qualifier IPSL Spring 2026 Top 4!
Strategy
Fighting Spirit mining rates Simple Questions, Simple Answers Creating a full chart of Zerg builds Relatively freeroll strategies
Other Games
General Games
Nintendo Switch Thread General RTS Discussion Thread Stormgate/Frost Giant Megathread Path of Exile Summer Games Done Quick 2026!
Dota 2
Looking for a Dota Mentor 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
TL Mafia
NeO.D_StephenKing vs This Guy From 1 Million Dance TL Mafia Community Thread TL Mafia Power Rank Vanilla Mini Mafia
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread UK Politics Mega-thread YouTube Thread Canadian Politics Mega-thread
Fan Clubs
The IdrA Fan Club The HerO Fan Club!
Media & Entertainment
Anime Discussion Thread [Req][Books] Good Fantasy/SciFi books Movie Discussion! Series you have seen recently...
Sports
2024 - 2026 Football Thread McBoner: A hockey love story Tennis[sport] Formula 1 Discussion TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
Simple Questions Simple Answers FPS when play League Of Legend on laptop How to clean a TTe Thermaltake keyboard?
TL Community
The Automated Ban List
Blogs
The Experiences We Want and …
TrAiDoS
An Exploration of th…
waywardstrategy
Gauntlet SC2: A Retrospectiv…
Ctone23
ramps on octagon
StaticNine
Funny Nicknames
LUCKY_NOOB
Evil Gacha Games and the…
ffswowsucks
Customize Sidebar...

Website Feedback

Closed Threads



Active: 7647 users

The Big Programming Thread - Page 382

Forum Index > General Forum
Post a Reply
Prev 1 380 381 382 383 384 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.
obesechicken13
Profile Blog Joined July 2008
United States10467 Posts
October 27 2013 04:47 GMT
#7621
Having some difficulty with database homework problems. I'm trying to find a highest average rating for something (let's assume movies, but it's really wine).

But I'm trying to find it by the country. So I want to return the highest rated wine from Canada and Mexico and China at the same time with no extras. I'm not allowed to list the second lowest below.
I think in our modern age technology has evolved to become more addictive. The things that don't give us pleasure aren't used as much. Work was never meant to be fun, but doing it makes us happier in the long run.
WolfintheSheep
Profile Joined June 2011
Canada14127 Posts
October 27 2013 05:08 GMT
#7622
On October 27 2013 13:47 obesechicken13 wrote:
Having some difficulty with database homework problems. I'm trying to find a highest average rating for something (let's assume movies, but it's really wine).

But I'm trying to find it by the country. So I want to return the highest rated wine from Canada and Mexico and China at the same time with no extras. I'm not allowed to list the second lowest below.

Is this supposed to be in SQL? If so, it should be fairly easy if you look through the API. Depending on how the database is setup, and the constraints on the question, you might have to do some annoying JOINs and have a very bloated query.
Average means I'm better than half of you.
obesechicken13
Profile Blog Joined July 2008
United States10467 Posts
Last Edited: 2013-10-27 07:11:48
October 27 2013 05:37 GMT
#7623
On October 27 2013 14:08 WolfintheSheep wrote:
Show nested quote +
On October 27 2013 13:47 obesechicken13 wrote:
Having some difficulty with database homework problems. I'm trying to find a highest average rating for something (let's assume movies, but it's really wine).

But I'm trying to find it by the country. So I want to return the highest rated wine from Canada and Mexico and China at the same time with no extras. I'm not allowed to list the second lowest below.

Is this supposed to be in SQL? If so, it should be fairly easy if you look through the API. Depending on how the database is setup, and the constraints on the question, you might have to do some annoying JOINs and have a very bloated query.

Yeah, I think I'm getting it. Very bloated indeed but it forces me to use some of the stuff in class.

Here's something that's messing me up. I need to be able to get only the avg_rate column in order to do a comparison and find a max value. Unless having allows you to compare on a single element and not a grouping like where does (brb have to try this)

[image loading]
This query returns fine

[image loading]
Why is everything 0s?

I'm running postgresql latest in a gui environment and the gui compiler seems a bit buggy (I can't use doublequotes) so maybe that's the problem.

Figured out an alternative:
drop view relation2 cascade;

create view relation2 as
(select wmname, cname, avg(rating) as avg_rate
from countries c2 natural join
wine w2 natural join
winemakers wm2 natural join
ratings r2
group by wmname, cname);

create view
relation3
as(
select
cname,max(avg_rate)
from
relation2
group by
cname);

select relation2.cname, relation2.wmname, avg_rate from
relation2 natural join relation3
where relation2.cname=relation3.cname
and relation2.avg_rate=relation3.max;

Basically I made 2 views and compared them to each other using where.
I think in our modern age technology has evolved to become more addictive. The things that don't give us pleasure aren't used as much. Work was never meant to be fun, but doing it makes us happier in the long run.
teamamerica
Profile Blog Joined July 2010
United States958 Posts
October 27 2013 07:21 GMT
#7624
On October 27 2013 14:37 obesechicken13 wrote:
Show nested quote +
On October 27 2013 14:08 WolfintheSheep wrote:
On October 27 2013 13:47 obesechicken13 wrote:
Having some difficulty with database homework problems. I'm trying to find a highest average rating for something (let's assume movies, but it's really wine).

But I'm trying to find it by the country. So I want to return the highest rated wine from Canada and Mexico and China at the same time with no extras. I'm not allowed to list the second lowest below.

Is this supposed to be in SQL? If so, it should be fairly easy if you look through the API. Depending on how the database is setup, and the constraints on the question, you might have to do some annoying JOINs and have a very bloated query.

Yeah, I think I'm getting it. Very bloated indeed but it forces me to use some of the stuff in class.

Here's something that's messing me up. I need to be able to get only the avg_rate column in order to do a comparison and find a max value. Unless having allows you to compare on a single element and not a grouping like where does (brb have to try this)

[image loading]
This query returns fine

[image loading]
Why is everything 0s?

I'm running postgresql latest in a gui environment and the gui compiler seems a bit buggy (I can't use doublequotes) so maybe that's the problem.


I can't speak to why your query is failing but it doesn't seem like the query is doing what you want. I'm assuming this because a cid (5) is listed twice. Afaik, when you group by more then one column, it will group by the tuple of columns you selected; it won't group by one column then the other. So grouping by (wname, cid) groups collapses all the rows where the (wname, cid) match, which does not limit it to one per country. A better example of this is: http://stackoverflow.com/questions/2421388/using-group-by-on-multiple-columns

If you want the wine with the highest average rating in every country, I think the query you want is:



SELECT
MAX(avg_rating)
FROM
countries c2
INNER JOIN
winemakers wm2
ON c2.id = wm2.cid
INNER JOIN
(
SELECT
wid,
avg(rating) AS avg_rate
FROM
wine w2 NATURAL JOIN
ratings r2
GROUP BY wid
) AS avg_ratings
ON avg_ratings.wid = wm2.wid
GROUP BY cid


Although someone here might be able to point out a better solution. One thing I personally prefer is to use explicit joins rather than natural so you know what columns you're joining on. But that's just my limited exp.

As for HAVING vs WHERE - HAVING lets you act on aggregate values. You can use HAVING avg_count > 5; while without using a subquery, you cannot do that with where. i.e


SELECT avg(sum) AS avg
FROM numbers
HAVING avg > 5

is the same as

SELECT *
FROM
(
SELECT avg(sum) AS avg
FROM numbers
)
WHERE avg > 5


RIP GOMTV. RIP PROLEAGUE.
obesechicken13
Profile Blog Joined July 2008
United States10467 Posts
October 27 2013 07:27 GMT
#7625
On October 27 2013 16:21 teamamerica wrote:
Show nested quote +
On October 27 2013 14:37 obesechicken13 wrote:
On October 27 2013 14:08 WolfintheSheep wrote:
On October 27 2013 13:47 obesechicken13 wrote:
Having some difficulty with database homework problems. I'm trying to find a highest average rating for something (let's assume movies, but it's really wine).

But I'm trying to find it by the country. So I want to return the highest rated wine from Canada and Mexico and China at the same time with no extras. I'm not allowed to list the second lowest below.

Is this supposed to be in SQL? If so, it should be fairly easy if you look through the API. Depending on how the database is setup, and the constraints on the question, you might have to do some annoying JOINs and have a very bloated query.

Yeah, I think I'm getting it. Very bloated indeed but it forces me to use some of the stuff in class.

Here's something that's messing me up. I need to be able to get only the avg_rate column in order to do a comparison and find a max value. Unless having allows you to compare on a single element and not a grouping like where does (brb have to try this)

[image loading]
This query returns fine

[image loading]
Why is everything 0s?

I'm running postgresql latest in a gui environment and the gui compiler seems a bit buggy (I can't use doublequotes) so maybe that's the problem.


I can't speak to why your query is failing but it doesn't seem like the query is doing what you want. I'm assuming this because a cid (5) is listed twice. Afaik, when you group by more then one column, it will group by the tuple of columns you selected; it won't group by one column then the other. So grouping by (wname, cid) groups collapses all the rows where the (wname, cid) match, which does not limit it to one per country. A better example of this is: http://stackoverflow.com/questions/2421388/using-group-by-on-multiple-columns

I read that post. The reason it doesn't work for me is that I needed the max of the average by country. It's a funny twist. Anyways, thank you. That would have pointed me in the right direction and definitely, explicit > implicit.
I think in our modern age technology has evolved to become more addictive. The things that don't give us pleasure aren't used as much. Work was never meant to be fun, but doing it makes us happier in the long run.
teamamerica
Profile Blog Joined July 2010
United States958 Posts
October 27 2013 07:36 GMT
#7626
Oh ok, so the ratings table also mentions contains the country the rating was filed from? I should have asked for the schema before I did anything!
RIP GOMTV. RIP PROLEAGUE.
obesechicken13
Profile Blog Joined July 2008
United States10467 Posts
Last Edited: 2013-10-27 08:41:16
October 27 2013 07:44 GMT
#7627
On October 27 2013 16:36 teamamerica wrote:
Oh ok, so the ratings table also mentions contains the country the rating was filed from? I should have asked for the schema before I did anything!

I should have provided the schema.

It turns out I made some mistakes when doing natural join too. I natural joined two tables with no common attributes
I don't think it caused any problems though.

The reasons the 0s showed up was that my GUI was just being dumb. When it shows a number, it converts to a real (double or float)

So the integer number 12 is converted to 12.000000000000000000000000000000000

Rather than show me the 12.000000000000000000000000000000000 it shows me the latter half
12.000000000000000000000000000000000
I think in our modern age technology has evolved to become more addictive. The things that don't give us pleasure aren't used as much. Work was never meant to be fun, but doing it makes us happier in the long run.
pyro19
Profile Joined August 2010
6575 Posts
October 27 2013 12:18 GMT
#7628
Does anyone know any good websites for Learning VHDL?
I've been tasked with making a 4 bit Processor and I'm stuck :/
Thy Shall Die Alone...or emm..something like that.
icystorage
Profile Blog Joined November 2008
Jollibee19350 Posts
October 27 2013 12:20 GMT
#7629
On October 27 2013 21:18 pyro19 wrote:
Does anyone know any good websites for Learning VHDL?
I've been tasked with making a 4 bit Processor and I'm stuck :/

http://www.nand2tetris.org/

i learned HDL here by following its course
LiquidDota StaffAre you ready for a Miracle-? We are! The International 2017 Champions!
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2013-10-27 15:33:17
October 27 2013 15:32 GMT
#7630
I want to build similar Sudoku like this one (please take a look) by using Java: http://www.miniclip.com/games/sudoku/en/

I know how to handle button events but I'd like to have an internal 2D int array to represent the puzzle. In other words, if a user clicks the image at row 2, column 1; that's ok, The only problem is I don't know how to associate the image at that location with an int array[1][0] (in this case). I hope I was clear.

Any ideas? I like this implementation more than TextFields because it's more user friendly imho.
bangsholt
Profile Joined June 2011
Denmark138 Posts
October 28 2013 00:20 GMT
#7631
You make an array of labels, initialize with an ImageIcon in the GUI and then you have a direct translation of the indices. Means you can even use the same buttonhandler if you do it correctly.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2013-10-28 23:37:25
October 28 2013 19:40 GMT
#7632
On October 28 2013 09:20 bangsholt wrote:
You make an array of labels, initialize with an ImageIcon in the GUI and then you have a direct translation of the indices. Means you can even use the same buttonhandler if you do it correctly.


Does the label need to be visible though? I'd not like that.

Edit: One more question. Is the recursive method faster in this case? I'm trying to print a 2D array in this case but I'll need to do rows and columns checking later, so I'm wondering which approach to take. I usually know that iteration is preferred, but what if the recursive method is just O(n)?

Iterative, it should be O(n^2).

public void printArray() {
for (int i = 0; i < this.grid.length; i++) {
for (int j = 0; j < this.grid.length; j++) {
System.out.printf("%d ", this.grid[i][j]);
}
System.out.println();
}
}

Recursive, it should be... O(n)? And more memory consuming too?

public void printArray(int row) {
if (row == this.grid.length) {
return;
}
else {
for (int i = 0; i < this.grid.length; i++) {
System.out.printf("%d ", this.grid[row][i]);
}
System.out.println();
printArray(row + 1);
}
}
delHospital
Profile Blog Joined December 2010
Poland261 Posts
Last Edited: 2013-10-29 00:26:27
October 29 2013 00:26 GMT
#7633
On October 29 2013 04:40 darkness wrote:
+ Show Spoiler +

On October 28 2013 09:20 bangsholt wrote:
You make an array of labels, initialize with an ImageIcon in the GUI and then you have a direct translation of the indices. Means you can even use the same buttonhandler if you do it correctly.


Does the label need to be visible though? I'd not like that.

Edit: One more question. Is the recursive method faster in this case? I'm trying to print a 2D array in this case but I'll need to do rows and columns checking later, so I'm wondering which approach to take. I usually know that iteration is preferred, but what if the recursive method is just O(n)?

Iterative, it should be O(n^2).

public void printArray() {
for (int i = 0; i < this.grid.length; i++) {
for (int j = 0; j < this.grid.length; j++) {
System.out.printf("%d ", this.grid[i][j];
}
System.out.println();
}
}

Recursive, it should be... O(n)? And more memory consuming too?

public void printArray(int row) {
if (row == this.grid.length) {
return;
}
else {
for (int i = 0; i < this.grid.length; i++) {
System.out.printf("%d ", this.grid[row][i];
}
System.out.println();
printArray(row + 1);
}
}

Let's say your array has n rows and m columns. You want to print all the cells, that's m*n numbers that you want to print. You can't do that faster than O(n*m)
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2013-10-29 00:40:28
October 29 2013 00:34 GMT
#7634
On October 29 2013 09:26 delHospital wrote:
Show nested quote +
On October 29 2013 04:40 darkness wrote:
+ Show Spoiler +

On October 28 2013 09:20 bangsholt wrote:
You make an array of labels, initialize with an ImageIcon in the GUI and then you have a direct translation of the indices. Means you can even use the same buttonhandler if you do it correctly.


Does the label need to be visible though? I'd not like that.

Edit: One more question. Is the recursive method faster in this case? I'm trying to print a 2D array in this case but I'll need to do rows and columns checking later, so I'm wondering which approach to take. I usually know that iteration is preferred, but what if the recursive method is just O(n)?

Iterative, it should be O(n^2).

public void printArray() {
for (int i = 0; i < this.grid.length; i++) {
for (int j = 0; j < this.grid.length; j++) {
System.out.printf("%d ", this.grid[i][j];
}
System.out.println();
}
}

Recursive, it should be... O(n)? And more memory consuming too?

public void printArray(int row) {
if (row == this.grid.length) {
return;
}
else {
for (int i = 0; i < this.grid.length; i++) {
System.out.printf("%d ", this.grid[row][i];
}
System.out.println();
printArray(row + 1);
}
}

Let's say your array has n rows and m columns. You want to print all the cells, that's m*n numbers that you want to print. You can't do that faster than O(n*m)


So basically, O(n^2) is the fastest you can get with a 2D array if I understood right. What about those 1D arrays that act like 2D? Are they still O(n^2)? They should be I guess.
Zocat
Profile Joined April 2010
Germany2229 Posts
Last Edited: 2013-10-29 01:57:34
October 29 2013 01:44 GMT
#7635
You should read up on O(n) and O(n^2). You didnt understand the concept (if you still ask questions^^)

Short version:
If you have a 1D array where you have n*m elements it's still O(n^2).
1D / 2D arrays mean shit. You can have a 1D array representing O(n^n).

To you initial question:
Parameter for button click.
HashTable (dictionary, ...) maps the parameter to 2D array.
bangsholt
Profile Joined June 2011
Denmark138 Posts
Last Edited: 2013-10-29 18:16:11
October 29 2013 18:09 GMT
#7636
On October 29 2013 04:40 darkness wrote:
Show nested quote +
On October 28 2013 09:20 bangsholt wrote:
You make an array of labels, initialize with an ImageIcon in the GUI and then you have a direct translation of the indices. Means you can even use the same buttonhandler if you do it correctly.


Does the label need to be visible though? I'd not like that.
<snip>


The label is initialized with an image rather than text. This will make it a picture. Hence the "initialize with an ImageIcon".

There's probably other ways too, this is just the Swing way I could remember.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2013-10-29 19:24:01
October 29 2013 19:07 GMT
#7637
On October 30 2013 03:09 bangsholt wrote:
Show nested quote +
On October 29 2013 04:40 darkness wrote:
On October 28 2013 09:20 bangsholt wrote:
You make an array of labels, initialize with an ImageIcon in the GUI and then you have a direct translation of the indices. Means you can even use the same buttonhandler if you do it correctly.


Does the label need to be visible though? I'd not like that.
<snip>


The label is initialized with an image rather than text. This will make it a picture. Hence the "initialize with an ImageIcon".

There's probably other ways too, this is just the Swing way I could remember.


So, from what I've understood, it is:

ImageIcon ii = new ImageIcon("some.jpg");
JLabel label = new JLabel(ii);

How do I know which index (e.g. int array[3][4]) this image represents?

Yup, you said an array but I'm just trying to figure it out for a single label for now. I expected some kind of info like:

label.getText() which may return "3,4" or something, except this text is not shown on GUI.

Edit: Do I just use label.setName("3,4") and label.getName()?
bangsholt
Profile Joined June 2011
Denmark138 Posts
October 30 2013 02:41 GMT
#7638
Make a Mouse Event listener. You get the event source, which you then can cast to get the source.

Once you have the source of the event you can change the label to whatever you want - a new picture as an example - you *do* need to search through the "whole" array to find it though, but it's so small it doesn't matter anyway.
pebble444
Profile Blog Joined March 2011
Italy2503 Posts
October 30 2013 13:49 GMT
#7639
Hello friends, i need some advice:

I am trying to build a website. My goal is to have a place with different pages, upload different kind of files like audio content, pictures, make it downloadable, make it available in Both English and Italian;
I don' t want to have a blog. I want to have it custom, with an entry page. Now, for now i have secured a domain name.
My question is this: where should i go from here? what type of web hosting should i be looking at? what is a reasonable price;

I am willing to put time into doing this and learn something. I used to have fun with Html, very basic things like links, images, fonts; is learning more Html enough to build a website from zero? or should i just try and use some template i find?

I am a little confused as to where to start/go from here, any advice i would greatly appreciate
"Awaken my Child, and embrace the Glory that is your Birthright"
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2013-10-30 14:06:47
October 30 2013 14:05 GMT
#7640
On October 30 2013 22:49 pebble444 wrote:
Hello friends, i need some advice:

I am trying to build a website. My goal is to have a place with different pages, upload different kind of files like audio content, pictures, make it downloadable, make it available in Both English and Italian;
I don' t want to have a blog. I want to have it custom, with an entry page. Now, for now i have secured a domain name.
My question is this: where should i go from here? what type of web hosting should i be looking at? what is a reasonable price;

I am willing to put time into doing this and learn something. I used to have fun with Html, very basic things like links, images, fonts; is learning more Html enough to build a website from zero? or should i just try and use some template i find?

I am a little confused as to where to start/go from here, any advice i would greatly appreciate


I'm in no way experienced with web programming but it sounds me that you need PHP if you are looking for dynamic page content. There are other scripting languages too. JavaScript can't hurt if you compliment it with php/html too.

There is a platform called Joomla if you don't want to start from scratch. Link: http://www.joomla.org/
Prev 1 380 381 382 383 384 1032 Next
Please log in or register to reply.
Live Events Refresh
PiGosaur Cup
00:00
#90
CranKy Ducklings178
davetesta57
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
WinterStarcraft539
RuFF_SC2 146
Nina 129
FoxeR 67
StarCraft: Brood War
Rain 3978
GuemChi 2943
NaDa 61
Counter-Strike
summit1g7793
tarik_tv4429
taco 268
minikerr52
Super Smash Bros
hungrybox507
Other Games
C9.Mang0339
ViBE246
Maynarde165
XaKoH 125
CosmosSc2 20
Organizations
Other Games
gamesdonequick2884
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 15 non-featured ]
StarCraft 2
• Hupsaiya 105
• EnkiAlexander 50
• CranKy Ducklings SOOP28
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Lourlo235
Other Games
• Scarra2371
Upcoming Events
The PondCast
7h 31m
Kung Fu Cup
8h 31m
Replay Cast
1d 6h
CrankTV Team League
1d 8h
Replay Cast
2 days
CrankTV Team League
2 days
Replay Cast
2 days
RSL Revival
3 days
Clem vs Lambo
Scarlett vs Cure
CranKy Ducklings
3 days
IPSL
3 days
Dragon vs Hawk
[ Show More ]
RSL Revival
4 days
Classic vs Trap
herO vs SHIN
Sparkling Tuna Cup
4 days
IPSL
4 days
Bonyth vs Ret
WardiTV Weekly
5 days
Monday Night Weeklies
5 days
PiGosaur Cup
6 days
Liquipedia Results

Completed

YSL S3
HSC XXIX
Eternal Conflict S2 E2

Ongoing

IPSL Spring 2026
Acropolis #4
CSL 2026 Summer (S21)
RSL Revival: Season 6
CranK Gathers Season 4: BW vs SC2 Team League
SCTL 2026 Spring
Stake Ranked Episode 3
XSE Pro League 2026
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

Upcoming

Escore Tournament S3: W3
ASL S22 SEASON OPEN Day 1
Escore Tournament S3: W4
ASL S22 SEASON OPEN Day 2
Escore Tournament S3: W5
CSLAN 4
Blizzard Classic Cup 2026
HSC XXX
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
Light Tournament 2026
Eternal Conflict S2 Finale
Eternal Conflict S2 E3
Logitech G Connect 2026
StarSeries Fall 2026
FISSURE Playground #5
BLAST Open Fall 2026
Esports World Cup 2026
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
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.