• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 07:52
CEST 13:52
KST 20:52
  • 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
[ASL22] Ro24 Preview: Siren's Call8[ASL22] Ro24 Preview: Summer's End9Serral wins HomeStory Cup 2915Serral wins Maestros of the Game 244ByuL, and the Limitations of Standard Play3
Community News
Stellar Fest TWO the Moon (Dec 16-20)8Weekly Cups (August 24-30): Patches' balance mod takes over2New 3v3 BGH Ladder (and more) on ShieldBattery!40Weekly Cups (August 17-23): Zerg dominate the week6Weekly Cups (August 10-16): SHIN doubles5
StarCraft 2
General
September World Ranking: herO leads, Serral climbs Weekly Cups (August 10-16): SHIN doubles Nexon wins bid to develop StarCraft IP content, distribute Overwatch mobile game SC4ALL II: SC2 Player Announcement 6/8 - Maru Weekly Cups (August 24-30): Patches' balance mod takes over
Tourneys
IntoTheTV X SOOP SC2 League : Weekly & Monthly SC2 INu's Battles#20 [BO.9] 2026 GSTL Announcement Stellar Fest TWO the Moon (Dec 16-20) PIG STY FESTIVAL 8.0! (13 - 23 August)
Strategy
[G] Having the right mentality to improve
Custom Maps
Nexus Wars 2021 GUIDE [M] (2) Industrial Park
External Content
Mutation # 541 Binary Choice The PondCast: SC2 News & Results Mutation # 540 Dodge This Mutation # 539 Thunder Dome
Brood War
General
BW General Discussion BGH Auto Balance -> http://bghmmr.eu/ Making an Online Broodwar Manager Game ASL22 General Discussion [Personal Project Share] Terran Defense v0.60
Tourneys
KCM Race Survival 2026 Season 3 [Megathread] Daily Proleagues BSL LAN Party - Kraków 29-30 August - OPEN SIGNUPS [ASL22] Ro24 Group F
Strategy
Replay Review Process - What do you do? Game Theory for Starcraft Odyssey Mineral Stack Saturation Fighting Spirit mining rates
Other Games
General Games
[Maplestory Hardcore] Let's Play~!! General RTS Discussion Thread Stratus: Battle for the sky now on steam Early acc Nintendo Switch Thread Stormgate/Frost Giant Megathread
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
[TL LoL EUW IHs] Teemo shall perish TSM pausing esports and CLG Dead
Heroes of the Storm
Heroes of the Storm 2.0
Hearthstone
Deck construction bug
TL Mafia
TL Mafia Power Rank TL Mafia Community Thread NeO.D_StephenKing vs This Guy From 1 Million Dance
Community
General
Things Aren’t Peaceful in Palestine US Politics Mega-thread Russo-Ukrainian War Thread Canadian Politics Mega-thread European Politico-economics QA Mega-thread
Fan Clubs
MarineLorD Fan Club The Creator Fan Club The ShoWTimE Fan Club
Media & Entertainment
Movie Discussion! Anime Discussion Thread
Sports
Football (Soccer) Thread TeamLiquid Health and Fitness Initiative For 2023 MLB/Baseball 2023 NBA General Discussion
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Northern Ireland Global Starcraft
Blogs
Regacy Esports: The Bh…
regacyesports
Violent Games and Crime Rate…
TrAiDoS
LOCKPICKING NOOB
LUCKY_NOOB
Cathedral Of CS And NY pizza a…
FuDDx
Please support my new stand…
Peanutsc
Customize Sidebar...

Website Feedback

Closed Threads



Active: 5964 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
KCM Race Survival
10:00
2026 Season 3 Week 8
Kim Chul Min (afreeca) 1225
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
OGKoka 188
StarCraft: Brood War
firebathero 9040
Bisu 3665
Shuttle 1619
Hyuk 789
EffOrt 660
Pusan 518
Horang2 453
Snow 243
Stork 192
Light 184
[ Show more ]
Zeus 181
ZerO 177
ToSsGirL 81
Rush 50
Sea.KH 46
Shinee 42
Barracks 41
Sexy 29
910 27
Sacsri 24
NotJumperer 23
soO 21
sSak 20
Noble 12
SilentControl 12
zelot 8
Dota 2
Dendi760
Counter-Strike
olofmeister1120
byalli807
Heroes of the Storm
Liquid`Hasu95
Other Games
singsing1708
Lowko375
crisheroes372
XaKoH 227
Happy198
B2W.Neo166
DeMusliM157
PiGStarcraft146
Liquid`LucifroN104
Mew2King86
Organizations
StarCraft: Brood War
lovetv 8
[ Show 11 non-featured ]
StarCraft 2
• StrangeGG 56
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• Migwel
StarCraft: Brood War
• Light_VIP 58
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Jankos1321
Upcoming Events
INu's Battles
9m
herO vs Rogue
OSC
10h 39m
IntoTheTV X SOOP
23h 9m
CranKy Ducklings
1d 22h
Sparkling Tuna Cup
2 days
OSC
3 days
Shopify Rebellion Sundays
3 days
Mixu vs TBD
Spirit vs TBD
Clem vs TBD
Patches Events
3 days
Afreeca Starleague
3 days
Soma vs Shuttle
BeSt vs Rush
WardiTV Weekly
3 days
[ Show More ]
Afreeca Starleague
4 days
Leta vs ggaemo
Jaedong vs Queen
GSL
4 days
PiGosaur Cup
5 days
Kung Fu Cup
5 days
Replay Cast
6 days
The PondCast
6 days
Liquipedia Results

Completed

Proleague 2026-09-02
PiG Sty Festival 8.0
Light Tournament 2026

Ongoing

KCM Race Survival 2026 Season 3
K-JUNGMAN
ASL Season 22
Super Anchor Qualifying S3
CSL 2026 AUTUMN (S22)
RSL Revival: Season 6
Calamity Invitational
Big Dog Cup 2026 Div 1
BLAST Open Fall 2026
Esports World Cup 2026
Esports World Cup 2026: LCQ
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
Stake Ranked Episode 3
XSE Pro League 2026
IEM Cologne Major 2026

Upcoming

Acropolis #5
Acropolis #5 - TRS
Escore Tournament S3: King of Kings
Blizzard Classic Cup 2026
Acropolis #5 - GSA
Acropolis #5 - GSB
Acropolis #5 - GSC
HSC XXX
Stellar Fest 2: Lunar Cup
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
RSL Offline Finals
BLAST Rivals Fall 2026
IEM Beijing 2026
Stake Ranked Episode 5
PGL Masters Bucharest 2026
1win Private Club #2
Thunderpick World Champ. '26
ESL Pro League Season 24
Stake Ranked Episode 4
1win Private Club #1
Logitech G Play Connect 2026
SL StarSeries Fall 2026
FISSURE Playground #3
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.