• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 08:56
CEST 14:56
KST 21:56
  • 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
TL.net Map Contest #21: Voting3[ASL20] Ro4 Preview: Descent6Team TLMC #5: Winners Announced!3[ASL20] Ro8 Preview Pt2: Holding On9Maestros of the Game: Live Finals Preview (RO4)5
Community News
Weekly Cups (Oct 6-12): Four star herO65.0.15 Patch Balance Hotfix (2025-10-8)70Weekly Cups (Sept 29-Oct 5): MaxPax triples up3PartinG joins SteamerZone, returns to SC2 competition325.0.15 Balance Patch Notes (Live version)119
StarCraft 2
General
5.0.15 Patch Balance Hotfix (2025-10-8) The New Patch Killed Mech! TL.net Map Contest #21: Voting Weekly Cups (Oct 6-12): Four star herO PartinG joins SteamerZone, returns to SC2 competition
Tourneys
Master Swan Open (Global Bronze-Master 2) Tenacious Turtle Tussle WardiTV Mondays SC2's Safe House 2 - October 18 & 19 Sparkling Tuna Cup - Weekly Open Tournament
Strategy
Custom Maps
External Content
Mutation # 495 Rest In Peace Mutation # 494 Unstable Environment Mutation # 493 Quick Killers Mutation # 492 Get Out More
Brood War
General
BGH Auto Balance -> http://bghmmr.eu/ Brood War web app to calculate unit interactions BSL Season 21 Whose hotkey signature is this? Any rep analyzer that shows resources situation?
Tourneys
[ASL20] Semifinal B [ASL20] Semifinal A [Megathread] Daily Proleagues [ASL20] Ro8 Day 4
Strategy
Current Meta BW - ajfirecracker Strategy & Training Siegecraft - a new perspective TvZ Theorycraft - Improving on State of the Art
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread ZeroSpace Megathread Dawn of War IV Path of Exile
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
League of Legends
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
SPIRED by.ASL Mafia {211640} TL Mafia Community Thread
Community
General
Russo-Ukrainian War Thread Men's Fashion Thread Things Aren’t Peaceful in Palestine Sex and weight loss US Politics Mega-thread
Fan Clubs
The herO Fan Club! The Happy Fan Club!
Media & Entertainment
Anime Discussion Thread [Manga] One Piece Movie Discussion!
Sports
2024 - 2026 Football Thread Formula 1 Discussion MLB/Baseball 2023 NBA General Discussion TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Recent Gifted Posts
Blogs
Inbreeding: Why Do We Do It…
Peanutsc
From Tilt to Ragequit:The Ps…
TrAiDoS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1207 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
Zurich15352 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
Hyrule19135 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
Germany2578 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
Germany2578 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
Zurich15352 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
Germany2578 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
LiuLi Cup
11:00
46
Rogue vs herOLIVE!
Clem vs Classic
WardiTV849
RotterdaM417
Rex131
Liquipedia
Afreeca Starleague
10:00
Ro4 Match 2
Soma vs BisuLIVE!
Afreeca ASL 19533
sctven
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RotterdaM 417
Lowko341
Rex 131
ProTech87
StarCraft: Brood War
Calm 12474
Rain 6422
Flash 5790
Sea 5174
Jaedong 3742
BeSt 2385
Horang2 1231
Mini 1183
EffOrt 792
Larva 659
[ Show more ]
Pusan 641
actioN 500
ZerO 431
Stork 389
firebathero 324
Hyun 268
Light 229
Barracks 150
hero 109
PianO 107
Backho 68
JYJ63
ToSsGirL 61
ggaemo 59
Rush 57
Mong 56
Aegong 55
Sharp 37
NotJumperer 32
JulyZerg 32
soO 25
yabsab 18
Terrorterran 17
Sacsri 16
Bale 16
ajuk12(nOOB) 15
scan(afreeca) 12
Killer 11
Icarus 11
HiyA 10
Noble 10
ivOry 8
SilentControl 7
Hm[arnc] 7
Dota 2
qojqva2682
Dendi1243
Gorgc739
XaKoH 367
XcaliburYe330
BananaSlamJamma180
Counter-Strike
x6flipin426
edward38
Other Games
olofmeister1066
hiko450
B2W.Neo382
crisheroes332
Pyrionflax263
DeMusliM256
Liquid`LucifroN90
Fuzer 84
oskar67
ArmadaUGS62
Codebar2
Organizations
Counter-Strike
PGL8852
StarCraft: Brood War
UltimateBattle 347
lovetv 13
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 11 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Jankos3069
Upcoming Events
OSC
1h 4m
OSC
5h 4m
MaxPax vs Gerald
Solar vs Krystianer
PAPI vs Lemon
Ryung vs Moja
Nice vs NightPhoenix
Cham vs TBD
MaNa vs TriGGeR
PiGosaur Monday
11h 4m
OSC
1d 10h
The PondCast
1d 21h
OSC
1d 23h
Wardi Open
2 days
CranKy Ducklings
3 days
Safe House 2
4 days
Sparkling Tuna Cup
4 days
[ Show More ]
Safe House 2
5 days
Liquipedia Results

Completed

Acropolis #4 - TS2
WardiTV TLMC #15
HCC Europe

Ongoing

BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
C-Race Season 1
IPSL Winter 2025-26
EC S1
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025

Upcoming

SC4ALL: Brood War
BSL Season 21
BSL 21 Team A
RSL Offline Finals
RSL Revival: Season 3
Stellar Fest
SC4ALL: StarCraft II
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
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 © 2025 TLnet. All Rights Reserved.