• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 20:02
CEST 02:02
KST 09:02
  • 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 Pt2: News Flash10[ASL21] Ro24 Preview Pt1: New Chaos0Team Liquid Map Contest #22 - Presented by Monster Energy18ByuL: The Forgotten Master of ZvT30Behind the Blue - Team Liquid History Book20
Community News
Weekly Cups (March 23-29): herO takes triple6Aligulac acquired by REPLAYMAN.com/Stego Research8Weekly Cups (March 16-22): herO doubles, Cure surprises3Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool51Weekly Cups (March 9-15): herO, Clem, ByuN win4
StarCraft 2
General
Team Liquid Map Contest #22 - Presented by Monster Energy Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool What mix of new & old maps do you want in the next ladder pool? (SC2) Aligulac acquired by REPLAYMAN.com/Stego Research Weekly Cups (March 23-29): herO takes triple
Tourneys
RSL Season 4 announced for March-April Sparkling Tuna Cup - Weekly Open Tournament StarCraft Evolution League (SC Evo Biweekly) WardiTV Mondays World University TeamLeague (500$+) | Signups Open
Strategy
Custom Maps
[M] (2) Frigid Storage Publishing has been re-enabled! [Feb 24th 2026]
External Content
The PondCast: SC2 News & Results Mutation # 520 Moving Fees Mutation # 519 Inner Power Mutation # 518 Radiation Zone
Brood War
General
BSL 22 Map Contest — Submissions OPEN to March 10 so ive been playing broodwar for a week straight. Klaucher discontinued / in-game color settings BGH Auto Balance -> http://bghmmr.eu/ Pros React To: JaeDong vs Queen
Tourneys
[Megathread] Daily Proleagues [ASL21] Ro24 Group E [ASL21] Ro24 Group F Azhi's Colosseum - Foreign KCM
Strategy
What's the deal with APM & what's its true value Fighting Spirit mining rates Simple Questions, Simple Answers
Other Games
General Games
Stormgate/Frost Giant Megathread Starcraft Tabletop Miniature Game Nintendo Switch Thread General RTS Discussion Thread Darkest Dungeon
Dota 2
The Story of Wings Gaming Official 'what is Dota anymore' discussion
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
Mafia Game Mode Feedback/Ideas TL Mafia Community Thread Five o'clock TL Mafia
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread The Chess Thread NASA and the Private Sector Things Aren’t Peaceful in Palestine
Fan Clubs
The IdrA Fan Club
Media & Entertainment
[Req][Books] Good Fantasy/SciFi books [Manga] One Piece Movie Discussion!
Sports
2024 - 2026 Football Thread Formula 1 Discussion Cricket [SPORT] Tokyo Olympics 2021 Thread General nutrition recommendations
World Cup 2022
Tech Support
[G] How to Block Livestream Ads
TL Community
The Automated Ban List
Blogs
Broowar part 2
qwaykee
China Uses Video Games to Sh…
TrAiDoS
Funny Nicknames
LUCKY_NOOB
Iranian anarchists: organize…
XenOsky
FS++
Kraekkling
Shocked by a laser…
Spydermine0240
ASL S21 English Commentary…
namkraft
Electronics
mantequilla
Customize Sidebar...

Website Feedback

Closed Threads



Active: 13155 users

The Big Programming Thread - Page 205

Forum Index > General Forum
Post a Reply
Prev 1 203 204 205 206 207 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.
zatic
Profile Blog Joined September 2007
Zurich15365 Posts
November 28 2012 21:46 GMT
#4081
On November 29 2012 01:24 AmericanUmlaut wrote:
Show nested quote +
On November 28 2012 22:38 zatic wrote:
On November 22 2012 20:56 zatic wrote:
Thanks guys. "Change" should be enough, I won't need to keep entered but unfinished text elements before they change focus.

AmericanUmlaut: Yeah what I am afraid is that their UI uses tons of Javascript already and might do some of the changes to form elements programmatically. I'll know more when I am onsite.

The change() thing wasn't really feasible because the form already had all sorts of event handlers on every element that interfered with what I was trying to do.

I ended up extending the JS function that submits the form to include the timestamp I needed.
+ Show Spoiler +

var zsendSubmit = sendSubmit;
(function () {
sendSubmit = function () {
$("input[name='lastconfigchange']".val($.now());
zsendSubmit();
}
})();


Reminded me how much fun coding is and how much fun Javascript is. Also how much unfun MSIE is

Yeah, when I teach my daughter to code, I'm going to tell her bedtime stories about IE6. I'm so glad I'm working on projects that don't have to support IE<9 any more.

I'm curious why you wrapped the redefinition of sendSubmit in a self-executing anonymous function? As far as I can tell, there's no difference between doing that and just putting the same block of code into global namespace. You don't have any variables in there that will expire when the context created by the function dies. Did you intend to declare zsendSubmit inside the function?

That was what I did first, but then zsendSubmit ended up referencing the new sendSubmit and not the old one and the browser was stuck in endless recursion. It was a bit unsuspected for me as well, but at least the fix was easy enough.
ModeratorI know Teamliquid is known as a massive building
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2012-11-28 22:18:04
November 28 2012 22:15 GMT
#4082
I'm looking for a Java programmer who is familiar with Linked lists/network/threads. I prefer to contact him & share code via PM because my code will be checked for plagiarism later, and I don't want it to be found on any website.

My problem is specifically about adding a user to a linked list. The list is always empty, and I don't know how to fix it.
RMonkeyF
Profile Joined April 2011
46 Posts
November 29 2012 01:36 GMT
#4083
I was working with image animation in Javascript and ran into a problem.

I can't figure out what the logic would be for animating 9 images forward and then backwards.

function changePin()
{
if(curImage == 9)
{
curImage=0;
}
else
{
++curImage;
}
document.images[0].src = imageArray[curImage].src;
}
This is to go forward but it just resets @ 0 every time, and i need it to go from 9 to 8 to 7 ect. after going upwards.

Can someone help me with this please?
tofucake
Profile Blog Joined October 2009
Hyrule19200 Posts
November 29 2012 02:21 GMT
#4084
You first if is the reset. The simplest way to animate would be to have image 10 be image 8, image 11 be image 7, and so forth, and then reset at the final image.
Liquipediaasante sana squash banana
RMonkeyF
Profile Joined April 2011
46 Posts
Last Edited: 2012-11-29 03:27:22
November 29 2012 03:26 GMT
#4085
cool thanks, that works out.

just another thing dealing with images, i want to display a smaller image of a pin and then a larger image of the pin.

i made a link under the image that i should be able to click on and changes the image.

function changeImage()
{
if(document.getElementByTag("img").src == "pin_small.jpg")
{
document.getElementByTag("img").src = "pin_large.jpg";
}
else
{
document.getElementByTag("img").src = "pin_small.jpg";
}
}

It's not changing the image however and im not sure as to what is wrong.

HTML:
<img src="pin_small.jpg" id="pinImage" alt="Pin Picture" height="69" width="105" /><br />
<a href="" id="changeImage" onclick="changeImage();return false;">View larger image</a>

?
tec27
Profile Blog Joined June 2004
United States3702 Posts
Last Edited: 2012-11-29 06:26:02
November 29 2012 04:38 GMT
#4086
On November 29 2012 06:46 zatic wrote:
Show nested quote +
On November 29 2012 01:24 AmericanUmlaut wrote:
On November 28 2012 22:38 zatic wrote:
On November 22 2012 20:56 zatic wrote:
Thanks guys. "Change" should be enough, I won't need to keep entered but unfinished text elements before they change focus.

AmericanUmlaut: Yeah what I am afraid is that their UI uses tons of Javascript already and might do some of the changes to form elements programmatically. I'll know more when I am onsite.

The change() thing wasn't really feasible because the form already had all sorts of event handlers on every element that interfered with what I was trying to do.

I ended up extending the JS function that submits the form to include the timestamp I needed.
+ Show Spoiler +

var zsendSubmit = sendSubmit;
(function () {
sendSubmit = function () {
$("input[name='lastconfigchange']").val($.now());
zsendSubmit();
}
})();


Reminded me how much fun coding is and how much fun Javascript is. Also how much unfun MSIE is

Yeah, when I teach my daughter to code, I'm going to tell her bedtime stories about IE6. I'm so glad I'm working on projects that don't have to support IE<9 any more.

I'm curious why you wrapped the redefinition of sendSubmit in a self-executing anonymous function? As far as I can tell, there's no difference between doing that and just putting the same block of code into global namespace. You don't have any variables in there that will expire when the context created by the function dies. Did you intend to declare zsendSubmit inside the function?

That was what I did first, but then zsendSubmit ended up referencing the new sendSubmit and not the old one and the browser was stuck in endless recursion. It was a bit unsuspected for me as well, but at least the fix was easy enough.

There's gotta be something else going on there then, that's weird :O Also, I'd recommend you be explicit about using a global there, IE:
window.sendSubmit = function() {
...
}


If you aren't then your code will cause linter warnings (and if you don't use JSHint on your stuff already, you should!). It also makes it more clear that you're expecting the variable to be declared somewhere else and not just forgetting a var.
Can you jam with the console cowboys in cyberspace?
AmericanUmlaut
Profile Blog Joined November 2010
Germany2594 Posts
November 29 2012 09:04 GMT
#4087
I agree with tec about the window.myVar notation. I learned embarassingly late about the difference between globally and locally scoped variable declarations in Javascript, but now I really find it much better to explicity say "I want this to be global" so that no one has to wonder. What I find even better, though, is just declaring a global namespace object and then making all of my "global" values and functions properties of that object. It prevents weird collisions that can be hard to debug, and if you have a good editor, it gives you a nicely organized structure for code completion.

@zatic: I'm thinking about what might be going on with your function. I've debugged through some mocked-up versions of your code (I usually do some brain teaser I find on stackoverflow to get warmed up, but this works, too ) and I can't see any difference at all between the behavior of the reassignment with or without the wrapper function. Either way, I get recursion if the code runs twice, and not if it only runs once. Is the place where the function is defined getting run multiple times? Then you can do something like this to guarantee that you only run the block once:


if(!window.zsendSubmit) {
window.zsendSubmit = sendSubmit;
sendSubmit = function () {
$("input[name='lastconfigchange']").val($.now());
zsendSubmit();
}
}


If that's not the problem, then I'm utterly perplexed and very curious to hear more if you learn more about what's going on there.
The frumious Bandersnatch
AmericanUmlaut
Profile Blog Joined November 2010
Germany2594 Posts
Last Edited: 2012-11-29 09:32:41
November 29 2012 09:26 GMT
#4088
On November 29 2012 12:26 RMonkeyF wrote:

function changeImage()
{
if(document.getElementByTag("img").src == "pin_small.jpg")
{
document.getElementByTag("img").src = "pin_large.jpg";
}
else
{
document.getElementByTag("img").src = "pin_small.jpg";
}
}


First, use code tags! They make everything better!

This is the sort of problem that you should be able to debug very easily without any help:


function changeImage()
{
//This is better stylistically: Don't navigate your DOM over and over again getting the same element
var elem = document.getElementByTag("img");
var src = elem.src;

/* debug */
alert(src);
/* end debug */

if(src == "pin_small.jpg")
{
elem.src = "pin_large.jpg";
}
else
{
elem.src = "pin_small.jpg";
}
}


What's in your alert output? It should be a full URL (at least it is in FireFox), so it's not going to exactly match the string you're comparing it to. A simple solution would be to use the indexOf() function, which returns -1 if it doesn't find the passed string in the calling string:


function changeImage()
{
var elem = document.getElementByTag("img");
elem.src = (elem.src.indexOf("pin_small.jpg") == -1 ? "pin_large.jpg" : "pin_small.jpg");
}


------

OOH OOH OOH! And I have such a clever idea for the animation problem that I just have to share it:


function changePin()
{
if(curImage == 9)
{
curImage = -8;
}
else
{
++curImage;
}

document.images[0].src = imageArray[Math.abs(curImage)].src;
}


Then you don't have to map any extra values to your array.
The frumious Bandersnatch
zatic
Profile Blog Joined September 2007
Zurich15365 Posts
November 29 2012 09:26 GMT
#4089
Well I just did the same thing again and it worked here too. Did not on the customer system though.

Keep in mind it is all a big mess of JS and VBscript, I must not change any legacy code and pure IE7 was my only debugging tool. There is little point in over optimization.
ModeratorI know Teamliquid is known as a massive building
TheSwedishFan
Profile Blog Joined July 2012
Sweden608 Posts
Last Edited: 2012-11-29 13:55:07
November 29 2012 13:53 GMT
#4090
Anyone know how to make Javascript control if a form should be sent or not without having to deal with the onClick attribute?
I have a input element within my form with the id attribute equal to btnSubmit and the type attribute equal to submit. When i click it i want a javascript to control that data have been entered as it should (in this case more then 0 letters). If one of the input elements isn't filled in i want it not to submit and if them all are filled in it will be submited.

this is the code i produced so far but i cant find a solution to achive what i want without adding a onClick attribute to my input sumbit button element.

I know how to control the element data it's just that i dont know how to stop the form from being sent.
        function start(){
document.getElementById("btnSubmit").addEventListener("click", controlInput, false);
}
function controlInput(){
alert('I dont want to send the damn form :(');
}
window.addEventListener("load", start, false);
"Suck it" - Kennigit 2012
AmericanUmlaut
Profile Blog Joined November 2010
Germany2594 Posts
Last Edited: 2012-11-29 14:08:35
November 29 2012 14:03 GMT
#4091
I think you probably want to use jQuery.submit(). (Or the equivalent native Javascript event, which is "submit").


$('#myForm').submit(function() {
return isValid();
});


or


document.getElementById("myForm").addEventHandler("submit", function(){...});


Returning FALSE blocks the form from being submitted in the case of the jQuery version. I think you have to manually prevent the default behavior in the pure Javascript version, but I use pure Javascript to bind events pretty rarely, so I'm not entirely sure.
The frumious Bandersnatch
Tobberoth
Profile Joined August 2010
Sweden6375 Posts
November 29 2012 14:04 GMT
#4092
On November 29 2012 22:53 TheSwedishFan wrote:
Anyone know how to make Javascript control if a form should be sent or not without having to deal with the onClick attribute?
I have a input element within my form with the id attribute equal to btnSubmit and the type attribute equal to submit. When i click it i want a javascript to control that data have been entered as it should (in this case more then 0 letters). If one of the input elements isn't filled in i want it not to submit and if them all are filled in it will be submited.

this is the code i produced so far but i cant find a solution to achive what i want without adding a onClick attribute to my input sumbit button element.

I know how to control the element data it's just that i dont know how to stop the form from being sent.
        function start(){
document.getElementById("btnSubmit").addEventListener("click", controlInput, false);
}
function controlInput(){
alert('I dont want to send the damn form :(');
}
window.addEventListener("load", start, false);

Don't really understand what it is you're going for, but if the problem is that you can't send the form without using a click() event, remember that you can use document.forms["theForm"].submit();. Obviously, there's no way to get away from using a click() event if you need something to happen on a click event though.
TheSwedishFan
Profile Blog Joined July 2012
Sweden608 Posts
Last Edited: 2012-11-29 14:40:19
November 29 2012 14:20 GMT
#4093
Turns out id didn't work. Time for some experementing. I'll post again if i find a solution.
"Suck it" - Kennigit 2012
phar
Profile Joined August 2011
United States1080 Posts
Last Edited: 2012-11-29 21:14:34
November 29 2012 21:02 GMT
#4094
On November 29 2012 07:15 darkness wrote:
I'm looking for a Java programmer who is familiar with Linked lists/network/threads. I prefer to contact him & share code via PM because my code will be checked for plagiarism later, and I don't want it to be found on any website.

My problem is specifically about adding a user to a linked list. The list is always empty, and I don't know how to fix it.

That's a pretty vague question. If you just need to add an entry to a linked list, it works the same way as any other list:

User user = blah;
List<User> list = Lists.newLinkedList();
list.add(user);


That's not exactly threadsafe though, can you describe in general terms what you're trying to do?
Who after all is today speaking about the destruction of the Armenians?
fabiano
Profile Blog Joined August 2009
Brazil4644 Posts
November 29 2012 21:10 GMT
#4095
On November 29 2012 07:15 darkness wrote:
I'm looking for a Java programmer who is familiar with Linked lists/network/threads. I prefer to contact him & share code via PM because my code will be checked for plagiarism later, and I don't want it to be found on any website.

My problem is specifically about adding a user to a linked list. The list is always empty, and I don't know how to fix it.


Maybe you are screwing up variable scope?
"When the geyser died, a probe came out" - SirJolt
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
November 29 2012 23:32 GMT
#4096
On November 30 2012 06:10 fabiano wrote:
Show nested quote +
On November 29 2012 07:15 darkness wrote:
I'm looking for a Java programmer who is familiar with Linked lists/network/threads. I prefer to contact him & share code via PM because my code will be checked for plagiarism later, and I don't want it to be found on any website.

My problem is specifically about adding a user to a linked list. The list is always empty, and I don't know how to fix it.


Maybe you are screwing up variable scope?


Fixed. Actually, my instance had to be 'static'. I guess the link list was recreated which shouldn't happen, so it was always null.
icystorage
Profile Blog Joined November 2008
Jollibee19350 Posts
Last Edited: 2012-11-30 11:52:01
November 30 2012 11:49 GMT
#4097
I'm sorry guys but this is kind of a homework problem and got stuck.
im not really good in Java but how do you fix this problem?

+ Show Spoiler +
[image loading]


the scanner totally skips the 'Enter Student Name' part and directly proceeds to the Enter Student Id.

Did I do something wrong?

the x = null; part is just a hunch coz i thought x wasn't initialized properly.

+ Show Spoiler +
import java.util.Scanner;


public class Driver {


public static void main(String[] args) {

int choice, numberCourses, y;
String x;
Scanner input = new Scanner(System.in);
boolean loop = true;

while(loop == true){

System.out.println("Student Record Menu");
System.out.println("[1] New Record");
System.out.println("[2] Display Records");
System.out.println("[3] Quit");

choice = input.nextInt();

switch(choice) {
case 1:
System.out.println("New Record:");
Record record = new Record();
record.createStudent();

System.out.println("Enter Student Name:");
x = null;
x = input.nextLine();
record.setName(x);

System.out.println("Enter Student ID:");
x = input.nextLine();
record.setId(x);

System.out.println("Enter Course:");
x = input.nextLine();
record.setCourse(x);

System.out.println("Enter number of Subjects:");
numberCourses = input.nextInt();

for (int i = 1; i < numberCourses; i++) {
Course course = new Course();
System.out.println("For Subject " + i);
System.out.println("Enter Subject Code:");
x = input.nextLine();
course.setCode(x);
System.out.println("Enter Description:");
x = input.nextLine();
course.setDesc(x);
System.out.println("Enter Subject Units:");
y = input.nextInt();
course.setUnits(y);
System.out.println("Enter Grade:");
y = input.nextInt();
course.setGrade(y);
record.addCourse(course);
}
System.out.println("Done Adding...");
case 2:
case 3:
loop = false;
}
}

}

}


the entire Driver code.
LiquidDota StaffAre you ready for a Miracle-? We are! The International 2017 Champions!
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2012-11-30 12:50:25
November 30 2012 12:31 GMT
#4098
I can't notice what causes your problem, but a piece of advice:

1. You can use while (boolean) instead of while (boolean == true). It does the same job, but I guess it's more readable in your case.

2. Always put
break;
after each case.

E.g.

case 1:
//some job
break;

case 2:
......
icystorage
Profile Blog Joined November 2008
Jollibee19350 Posts
November 30 2012 13:07 GMT
#4099
On November 30 2012 21:31 darkness wrote:
I can't notice what causes your problem, but a piece of advice:

1. You can use while (boolean) instead of while (boolean == true). It does the same job, but I guess it's more readable in your case.

2. Always put
break;
after each case.

E.g.

case 1:
//some job
break;

case 2:
......

yeah i already did that i just wanted to test the code in the middle of coding. I actually finished everything but i can't test it because of my problem =/
LiquidDota StaffAre you ready for a Miracle-? We are! The International 2017 Champions!
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
November 30 2012 13:14 GMT
#4100
On November 30 2012 20:49 icystorage wrote:
I'm sorry guys but this is kind of a homework problem and got stuck.
im not really good in Java but how do you fix this problem?

+ Show Spoiler +
[image loading]


the scanner totally skips the 'Enter Student Name' part and directly proceeds to the Enter Student Id.

Did I do something wrong?

the x = null; part is just a hunch coz i thought x wasn't initialized properly.

+ Show Spoiler +
import java.util.Scanner;


public class Driver {


public static void main(String[] args) {

int choice, numberCourses, y;
String x;
Scanner input = new Scanner(System.in);
boolean loop = true;

while(loop == true){

System.out.println("Student Record Menu");
System.out.println("[1] New Record");
System.out.println("[2] Display Records");
System.out.println("[3] Quit");

choice = input.nextInt();

switch(choice) {
case 1:
System.out.println("New Record:");
Record record = new Record();
record.createStudent();

System.out.println("Enter Student Name:");
x = null;
x = input.nextLine();
record.setName(x);

System.out.println("Enter Student ID:");
x = input.nextLine();
record.setId(x);

System.out.println("Enter Course:");
x = input.nextLine();
record.setCourse(x);

System.out.println("Enter number of Subjects:");
numberCourses = input.nextInt();

for (int i = 1; i < numberCourses; i++) {
Course course = new Course();
System.out.println("For Subject " + i);
System.out.println("Enter Subject Code:");
x = input.nextLine();
course.setCode(x);
System.out.println("Enter Description:");
x = input.nextLine();
course.setDesc(x);
System.out.println("Enter Subject Units:");
y = input.nextInt();
course.setUnits(y);
System.out.println("Enter Grade:");
y = input.nextInt();
course.setGrade(y);
record.addCourse(course);
}
System.out.println("Done Adding...");
case 2:
case 3:
loop = false;
}
}

}

}


the entire Driver code.


A simple google search for "java nextLine skips" gave me the correct solution so i suggest next time you'll just try googling it first.

As opposed to what you might expect from a method called "nextLine", it doesn't return the whole line but only the part until the EOL characters (basically the enter key). You have to call another input.nextLine() after reading each line, i.e.:


System.out.println("Enter Subject Code:");
x = input.nextLine();
course.setCode(x);
input.nextLine(); // <-- don't need to store output

...

Prev 1 203 204 205 206 207 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 9h 58m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
PiGStarcraft386
SpeCial 141
Ketroc 43
StarCraft: Brood War
GuemChi 3557
Artosis 743
-ZergGirl 89
NaDa 17
Dota 2
capcasts308
monkeys_forever275
canceldota147
League of Legends
JimRising 465
Counter-Strike
tarik_tv5320
Heroes of the Storm
Khaldor208
Other Games
summit1g16196
ViBE53
Trikslyr52
Organizations
Other Games
gamesdonequick1189
BasetradeTV65
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 19 non-featured ]
StarCraft 2
• Berry_CruncH175
• Hupsaiya 102
• HeavenSC 14
• davetesta12
• Adnapsc2 3
• Response 1
• Migwel
• AfreecaTV YouTube
• sooper7s
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
StarCraft: Brood War
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
League of Legends
• Doublelift4274
Other Games
• Scarra679
• WagamamaTV316
Upcoming Events
Afreeca Starleague
9h 58m
Wardi Open
9h 58m
Replay Cast
23h 58m
Sparkling Tuna Cup
1d 9h
Kung Fu Cup
2 days
The PondCast
3 days
Replay Cast
3 days
Replay Cast
4 days
CranKy Ducklings
5 days
BSL
5 days
[ Show More ]
Replay Cast
5 days
Sparkling Tuna Cup
6 days
BSL
6 days
Replay Cast
6 days
Liquipedia Results

Completed

Escore Tournament S2: W1
WardiTV Winter 2026
NationLESS Cup

Ongoing

BSL Season 22
CSL Elite League 2026
ASL Season 21
CSL Season 20: Qualifier 2
StarCraft2 Community Team League 2026 Spring
Nations Cup 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
BLAST Bounty Winter 2026

Upcoming

CSL 2026 SPRING (S20)
Escore Tournament S2: W2
IPSL Spring 2026
Escore Tournament S2: W3
Acropolis #4
BSL 22 Non-Korean Championship
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
RSL Revival: Season 5
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
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.