• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 02:30
CEST 08:30
KST 15:30
  • 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
Team Liquid Map Contest #22 - The Finalists14[ASL21] Ro16 Preview Pt1: Fresh Flow9[ASL21] Ro24 Preview Pt2: News Flash10[ASL21] Ro24 Preview Pt1: New Chaos0Team Liquid Map Contest #22 - Presented by Monster Energy21
Community News
2026 GSL Season 1 Qualifiers11Maestros of the Game 2 announced32026 GSL Tour plans announced11Weekly Cups (April 6-12): herO doubles, "Villains" prevail1MaNa leaves Team Liquid21
StarCraft 2
General
MaNa leaves Team Liquid 2026 GSL Tour plans announced Team Liquid Map Contest #22 - The Finalists Weekly Cups (April 6-12): herO doubles, "Villains" prevail Oliveira Would Have Returned If EWC Continued
Tourneys
GSL CK: More events planned pending crowdfunding 2026 GSL Season 1 Qualifiers Sparkling Tuna Cup - Weekly Open Tournament Master Swan Open (Global Bronze-Master 2) SEL Doubles (SC Evo Bimonthly)
Strategy
Custom Maps
[D]RTS in all its shapes and glory <3 [A] Nemrods 1/4 players [M] (2) Frigid Storage
External Content
Mutation # 521 Memorable Boss The PondCast: SC2 News & Results Mutation # 520 Moving Fees Mutation # 519 Inner Power
Brood War
General
BGH Auto Balance -> http://bghmmr.eu/ Data needed ASL21 General Discussion Pros React To: Tulbo in Ro.16 Group A RepMastered™: replay sharing and analyzer site
Tourneys
Escore Tournament StarCraft Season 2 [Megathread] Daily Proleagues [ASL21] Ro16 Group A [ASL21] Ro16 Group B
Strategy
Simple Questions, Simple Answers What's the deal with APM & what's its true value Any training maps people recommend? Fighting Spirit mining rates
Other Games
General Games
Nintendo Switch Thread General RTS Discussion Thread Battle Aces/David Kim RTS Megathread Stormgate/Frost Giant Megathread Starcraft Tabletop Miniature Game
Dota 2
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
Vanilla Mini Mafia Mafia Game Mode Feedback/Ideas TL Mafia Community Thread Five o'clock TL Mafia
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread YouTube Thread Canadian Politics Mega-thread
Fan Clubs
The IdrA Fan Club
Media & Entertainment
Anime Discussion Thread [Req][Books] Good Fantasy/SciFi books [Manga] One Piece Movie Discussion!
Sports
2024 - 2026 Football Thread McBoner: A hockey love story Formula 1 Discussion Cricket [SPORT]
World Cup 2022
Tech Support
[G] How to Block Livestream Ads
TL Community
The Automated Ban List
Blogs
Reappraising The Situation T…
TrAiDoS
lurker extra damage testi…
StaticNine
Broowar part 2
qwaykee
Funny Nicknames
LUCKY_NOOB
Iranian anarchists: organize…
XenOsky
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1984 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
The PiG Daily
22:15
Best Games of SC
Rogue vs MaxPax
Maru vs Zoun
SHIN vs Cure
ByuN vs TBD
PiGStarcraft262
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft: Brood War
scan(afreeca) 879
Pusan 202
Sacsri 109
Backho 71
Noble 21
Bale 18
Aegong 17
Dota 2
NeuroSwarm168
ODPixel161
League of Legends
JimRising 849
Counter-Strike
Stewie2K1231
m0e_tv293
Super Smash Bros
hungrybox545
Mew2King65
Other Games
summit1g9353
WinterStarcraft476
C9.Mang0341
PiGStarcraft262
RuFF_SC258
Trikslyr33
Organizations
Other Games
gamesdonequick823
Dota 2
PGL Dota 2 - Main Stream465
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 13 non-featured ]
StarCraft 2
• practicex 64
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Lourlo1284
• Stunt457
Upcoming Events
CranKy Ducklings
3h 30m
WardiTV Map Contest Tou…
4h 30m
SC Evo League
7h
IPSL
9h 30m
WolFix vs nOmaD
dxtr13 vs Razz
BSL
12h 30m
UltrA vs KwarK
Gosudark vs cavapoo
dxtr13 vs HBO
Doodle vs Razz
Patches Events
15h 30m
CranKy Ducklings
17h 30m
Sparkling Tuna Cup
1d 3h
WardiTV Map Contest Tou…
1d 4h
Ladder Legends
1d 8h
[ Show More ]
BSL
1d 12h
StRyKeR vs rasowy
Artosis vs Aether
JDConan vs OyAji
Hawk vs izu
IPSL
1d 12h
JDConan vs TBD
Aegong vs rasowy
Replay Cast
2 days
Wardi Open
2 days
Afreeca Starleague
2 days
Bisu vs Ample
Jaedong vs Flash
Monday Night Weeklies
2 days
RSL Revival
2 days
Afreeca Starleague
3 days
Barracks vs Leta
Royal vs Light
WardiTV Map Contest Tou…
3 days
RSL Revival
4 days
Replay Cast
4 days
The PondCast
5 days
KCM Race Survival
5 days
WardiTV Map Contest Tou…
5 days
Replay Cast
5 days
Escore
6 days
RSL Revival
6 days
Liquipedia Results

Completed

Escore Tournament S2: W3
RSL Revival: Season 4
NationLESS Cup

Ongoing

BSL Season 22
ASL Season 21
CSL 2026 SPRING (S20)
IPSL Spring 2026
KCM Race Survival 2026 Season 2
StarCraft2 Community Team League 2026 Spring
WardiTV TLMC #16
Nations Cup 2026
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026
IEM Kraków 2026

Upcoming

Escore Tournament S2: W4
Acropolis #4
BSL 22 Non-Korean Championship
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
2026 GSL S2
RSL Revival: Season 5
2026 GSL S1
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
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.