• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 02:09
CEST 08:09
KST 15:09
  • 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
[ASL20] Ro24 Preview Pt2: Take-Off7[ASL20] Ro24 Preview Pt1: Runway132v2 & SC: Evo Complete: Weekend Double Feature4Team Liquid Map Contest #21 - Presented by Monster Energy9uThermal's 2v2 Tour: $15,000 Main Event18
Community News
Weekly Cups (Aug 18-24): herO dethrones MaxPax6Maestros of The Game—$20k event w/ live finals in Paris31Weekly Cups (Aug 11-17): MaxPax triples again!13Weekly Cups (Aug 4-10): MaxPax wins a triple6SC2's Safe House 2 - October 18 & 195
StarCraft 2
General
Geoff 'iNcontroL' Robinson has passed away #1: Maru - Greatest Players of All Time #2: Serral - Greatest Players of All Time I hope balance council is prepping final balance Aligulac - Europe takes the podium
Tourneys
Esports World Cup 2025 Sparkling Tuna Cup - Weekly Open Tournament Maestros of The Game—$20k event w/ live finals in Paris WardiTV Mondays RSL: Revival, a new crowdfunded tournament series
Strategy
Custom Maps
External Content
Mutation # 488 What Goes Around Mutation # 487 Think Fast Mutation # 486 Watch the Skies Mutation # 485 Death from Below
Brood War
General
BSL Polish World Championship 2025 20-21 September BGH Auto Balance -> http://bghmmr.eu/ ASL Season 20 Ro24 Groups Flash On His 2010 "God" Form, Mind Games, vs JD No Rain in ASL20?
Tourneys
[Megathread] Daily Proleagues [IPSL] CSLAN Review and CSLPRO Reimagined! [ASL20] Ro24 Group F [ASL20] Ro24 Group D
Strategy
Muta micro map competition Simple Questions, Simple Answers Fighting Spirit mining rates [G] Mineral Boosting
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread General RTS Discussion Thread Dawn of War IV Path of Exile
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine The year 2050 European Politico-economics QA Mega-thread
Fan Clubs
INnoVation Fan Club SKT1 Classic Fan Club!
Media & Entertainment
Anime Discussion Thread Movie Discussion! [Manga] One Piece [\m/] Heavy Metal Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
High temperatures on bridge(s) Gtx660 graphics card replacement Installation of Windows 10 suck at "just a moment"
TL Community
The Automated Ban List TeamLiquid Team Shirt On Sale
Blogs
RTS Design in Hypercoven
a11
Evil Gacha Games and the…
ffswowsucks
Breaking the Meta: Non-Stand…
TrAiDoS
INDEPENDIENTE LA CTM
XenOsky
[Girl blog} My fema…
artosisisthebest
Sharpening the Filtration…
frozenclaw
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2186 users

The Big Programming Thread - Page 205

Forum Index > General Forum
Post a Reply
Prev 1 203 204 205 206 207 1031 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
Zurich15345 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
Hyrule19078 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 States3701 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
Germany2577 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
Germany2577 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
Zurich15345 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
Germany2577 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 1031 Next
Please log in or register to reply.
Live Events Refresh
Replay Cast
00:00
SEL S2 Championship: Ro16
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft: Brood War
Leta 373
ggaemo 145
PianO 134
Pusan 123
Zeus 74
Nal_rA 67
NaDa 26
Noble 19
Movie 18
Icarus 10
[ Show more ]
Bale 10
JulyZerg 8
SilentControl 6
Dota 2
NeuroSwarm88
League of Legends
JimRising 709
Other Games
tarik_tv8687
summit1g7648
singsing757
shahzam650
C9.Mang0319
Maynarde127
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• Berry_CruncH173
• practicex 27
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Rush1364
• Lourlo1076
• HappyZerGling59
Upcoming Events
The PondCast
3h 51m
WardiTV Summer Champion…
4h 51m
herO vs MaxPax
Clem vs Classic
Replay Cast
17h 51m
LiuLi Cup
1d 4h
MaxPax vs TriGGeR
ByuN vs herO
Cure vs Rogue
Classic vs HeRoMaRinE
Cosmonarchy
1d 9h
OyAji vs Sziky
Sziky vs WolFix
WolFix vs OyAji
Big Brain Bouts
1d 9h
Iba vs GgMaChine
TriGGeR vs Bunny
Reynor vs Classic
Serral vs Clem
BSL Team Wars
1d 12h
Team Hawk vs Team Dewalt
BSL Team Wars
1d 12h
Team Hawk vs Team Bonyth
SC Evo League
2 days
TaeJa vs Cure
Rogue vs threepoint
ByuN vs Creator
MaNa vs Classic
Maestros of the Game
2 days
ShoWTimE vs Cham
GuMiho vs Ryung
Zoun vs Spirit
Rogue vs MaNa
[ Show More ]
[BSL 2025] Weekly
2 days
SC Evo League
3 days
Maestros of the Game
3 days
SHIN vs Creator
Astrea vs Lambo
Bunny vs SKillous
HeRoMaRinE vs TriGGeR
BSL Team Wars
3 days
Team Bonyth vs Team Sziky
BSL Team Wars
3 days
Team Dewalt vs Team Sziky
Monday Night Weeklies
4 days
Replay Cast
4 days
Sparkling Tuna Cup
5 days
Replay Cast
6 days
Liquipedia Results

Completed

CSL Season 18: Qualifier 1
uThermal 2v2 Main Event
HCC Europe

Ongoing

Copa Latinoamericana 4
BSL 20 Team Wars
KCM Race Survival 2025 Season 3
BSL 21 Qualifiers
ASL Season 20
Acropolis #4 - TS1
CSL Season 18: Qualifier 2
SEL Season 2 Championship
WardiTV Summer 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1
BLAST.tv Austin Major 2025

Upcoming

CSL 2025 AUTUMN (S18)
LASL Season 20
BSL Season 21
BSL 21 Team A
Chzzk MurlocKing SC1 vs SC2 Cup #2
RSL Revival: Season 2
Maestros of the Game
EC S1
Sisters' Call Cup
Skyesports Masters 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
MESA Nomadic Masters Fall
Thunderpick World Champ.
CS Asia Championships 2025
Roobet Cup 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
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.