• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 16:22
CEST 22:22
KST 05:22
  • 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-Off6[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 MaxPax3Maestros of The Game—$20k event w/ live finals in Paris30Weekly 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
Weekly Cups (Aug 18-24): herO dethrones MaxPax Geoff 'iNcontroL' Robinson has passed away What mix of new and old maps do you want in the next 1v1 ladder pool? (SC2) : 2v2 & SC: Evo Complete: Weekend Double Feature The GOAT ranking of GOAT rankings
Tourneys
Maestros of The Game—$20k event w/ live finals in Paris RSL: Revival, a new crowdfunded tournament series Sparkling Tuna Cup - Weekly Open Tournament Monday Nights Weeklies Master Swan Open (Global Bronze-Master 2)
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
Flash On His 2010 "God" Form, Mind Games, vs JD BGH Auto Balance -> http://bghmmr.eu/ [ASL20] Ro24 Preview Pt2: Take-Off BW General Discussion No Rain in ASL20?
Tourneys
[ASL20] Ro24 Group D [Megathread] Daily Proleagues [ASL20] Ro24 Group B [ASL20] Ro24 Group C
Strategy
Simple Questions, Simple Answers Fighting Spirit mining rates [G] Mineral Boosting Muta micro map competition
Other Games
General Games
Nintendo Switch Thread General RTS Discussion Thread Stormgate/Frost Giant Megathread 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 TeamLiquid Health and Fitness Initiative For 2023 Formula 1 Discussion
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
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
ASL S20 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 4081 users

The Big Programming Thread - Page 131

Forum Index > General Forum
Post a Reply
Prev 1 129 130 131 132 133 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.
MisterD
Profile Blog Joined June 2010
Germany1338 Posts
April 04 2012 21:52 GMT
#2601
Post your code and/or a stacktrace of the exception that you get when executing it, otherwise we can't do anything but shooting blind. The "linking" mentioned above in java simply consists of setting up your classloaders correctly, that's usually done by just specifying a classpath for the jvm when executing, which is usually a directory which contains package folders and class files (or a jar file which is basically the same folder, just zipped). So make sure your classpath is correct (e.g. "java -cp bin package.MainClass" or something like that), then it should find your inner classes class file. (if that's the problem, i don't know if it is due to the mentioned lack of a stacktrace ;P)
Gold isn't everything in life... you need wood, too!
berated-
Profile Blog Joined February 2007
United States1134 Posts
Last Edited: 2012-04-04 22:45:12
April 04 2012 22:33 GMT
#2602
On April 05 2012 02:27 Millitron wrote:
Show nested quote +
On April 04 2012 22:56 darkness wrote:
I use Java nested class, but it doesn't work on Linux although I get a file similar to: mainclass$innerclass.class (the problem is the inner class isn't executed)
There is no problem on Windows though. Any suggestions?

Read up on how your Linux JVM handles inner classes. I suspect its a linking issue though.

Anyways, I got a question TL. I'm working on a fairly large project in Java, and I'm using Eclipse. My problem is that each version only changes a couple of methods in each class, so I like to collapse the ones that I'm not working on. But, since each version gets its own project, Eclipse seems to forget what methods I've collapsed, and displays them all, and its getting annoying to have to manually collapse them all every time I start a new version. Is there any way to make it remember this kind of thing between projects?


I'm don't know of how to solve your problem as you describe it, but why does each version get its on project? Sounds like you need to be using some kind of version control to do your versioning, not eclipse.

Edit: The reason I point this out is because if you did that, the current version you are working on could always stay in one project. Therefore, you wouldn't be switching projects constantly and losing your preferences. You would still be able to go back to previous version if you really needed to by checking out the previous version into a new project.

Or you could see if this solution is still valid
Millitron
Profile Blog Joined August 2010
United States2611 Posts
April 04 2012 23:33 GMT
#2603
On April 05 2012 07:33 berated- wrote:
Show nested quote +
On April 05 2012 02:27 Millitron wrote:
On April 04 2012 22:56 darkness wrote:
I use Java nested class, but it doesn't work on Linux although I get a file similar to: mainclass$innerclass.class (the problem is the inner class isn't executed)
There is no problem on Windows though. Any suggestions?

Read up on how your Linux JVM handles inner classes. I suspect its a linking issue though.

Anyways, I got a question TL. I'm working on a fairly large project in Java, and I'm using Eclipse. My problem is that each version only changes a couple of methods in each class, so I like to collapse the ones that I'm not working on. But, since each version gets its own project, Eclipse seems to forget what methods I've collapsed, and displays them all, and its getting annoying to have to manually collapse them all every time I start a new version. Is there any way to make it remember this kind of thing between projects?


I'm don't know of how to solve your problem as you describe it, but why does each version get its on project? Sounds like you need to be using some kind of version control to do your versioning, not eclipse.

Edit: The reason I point this out is because if you did that, the current version you are working on could always stay in one project. Therefore, you wouldn't be switching projects constantly and losing your preferences. You would still be able to go back to previous version if you really needed to by checking out the previous version into a new project.

Or you could see if this solution is still valid

Well, its not a real, for-sale project. Its part of a course I'm taking. Each lab assignment adds a feature to the program made in the previous lab, so they all build off of each other. The thing is, they all get their own project so I can be sure I'm running the main method from the current version, and not a previous one.

Anyways, the solution you suggested works well enough for me. Thanks!
Who called in the fleet?
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2012-04-05 11:14:41
April 05 2012 11:09 GMT
#2604
Well, I have 2 inner classes within an outer class, but only the last one isn't executed. I'm starting to hate Java on Linux. :/
Edit: I may give my code on PM if anyone wants to try to solve my problem.
MisterD
Profile Blog Joined June 2010
Germany1338 Posts
Last Edited: 2012-04-05 11:57:49
April 05 2012 11:56 GMT
#2605
On April 05 2012 20:09 darkness wrote:
Well, I have 2 inner classes within an outer class, but only the last one isn't executed. I'm starting to hate Java on Linux. :/
Edit: I may give my code on PM if anyone wants to try to solve my problem.

what do you even mean by "executing a class"? the only way to "execute" a class is to use it as main class which will execute it's main method, but you can't just execute a class itself and you can only always have one main class, not multiple. Try to explain your problem properly and if you have no clue how to do that, pm me your stuff and maybe i can then understand what you mean Oo
Gold isn't everything in life... you need wood, too!
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
April 05 2012 14:18 GMT
#2606
On April 05 2012 20:56 MisterD wrote:
Show nested quote +
On April 05 2012 20:09 darkness wrote:
Well, I have 2 inner classes within an outer class, but only the last one isn't executed. I'm starting to hate Java on Linux. :/
Edit: I may give my code on PM if anyone wants to try to solve my problem.

what do you even mean by "executing a class"? the only way to "execute" a class is to use it as main class which will execute it's main method, but you can't just execute a class itself and you can only always have one main class, not multiple. Try to explain your problem properly and if you have no clue how to do that, pm me your stuff and maybe i can then understand what you mean Oo


I meant that both inner classes are called in main(), but the 2nd one doesn't start for some reason. I get no errors.
GaiaCaT
Profile Joined June 2011
35 Posts
April 05 2012 15:48 GMT
#2607
On April 05 2012 23:18 darkness wrote:
I meant that both inner classes are called in main(), but the 2nd one doesn't start for some reason. I get no errors.

Could you post your code/pseudocode, or upload it to pastebin.com?
I am still not sure what you mean by calling inner classes.
You don't call them, you create an instance of inner classes, either through an instance of the outer class:
+ Show Spoiler +
outerClass myOuterClass = new outerClass();
outerClass.innerClass myInnerClass = myOuterClass.new innerClass();
myInnerClass.innerMethod();

public class outerClass {
//outerClass field(s)

//outerClass constructor(s)
public outerClass() {
}

//outerClass method(s)
public void outerMethod() {
}

public class innerClass {
//innerClass field(s)

//innerClass constructor(s)
public innerClass() {
}

//innerClass method(s)
public void innerMethod() {
}
}
}


Or through the constructors or methods of outerClass:
+ Show Spoiler +
outerClass myOuterClass = new outerClass();

public class outerClass {
//outerClass field(s)

//outerClass constructor(s)
public outerClass() {
innerClass myInnerClass = new innerClass();
myInnerClass.innerMethod();
}

//outerClass method(s)
public void outerMethod() {
}

public class innerClass {
//innerClass field(s)

//innerClass constructor(s)
public innerClass() {
}

//innerClass method(s)
public void innerMethod() {
}
}
}
MisterD
Profile Blog Joined June 2010
Germany1338 Posts
April 05 2012 16:05 GMT
#2608
On April 05 2012 23:18 darkness wrote:
Show nested quote +
On April 05 2012 20:56 MisterD wrote:
On April 05 2012 20:09 darkness wrote:
Well, I have 2 inner classes within an outer class, but only the last one isn't executed. I'm starting to hate Java on Linux. :/
Edit: I may give my code on PM if anyone wants to try to solve my problem.

what do you even mean by "executing a class"? the only way to "execute" a class is to use it as main class which will execute it's main method, but you can't just execute a class itself and you can only always have one main class, not multiple. Try to explain your problem properly and if you have no clue how to do that, pm me your stuff and maybe i can then understand what you mean Oo


I meant that both inner classes are called in main(), but the 2nd one doesn't start for some reason. I get no errors.



have you done something like this?
class OuterClass{
public static void main(String args[]) {
InnerClass1.main();
InnerClass2.main();
}
}

Because if that's the case, i assume your issue is this: Your main methods contain endless loops or at least run for a long time. Therefore, only one of them will seem to start initially, because the call InnerClass2.main(); will only be executed after InnerClass1.main(); _finished_. If you want to run them parallel, you will have to use threads.

but then again, just shooting blind because you don't post any actual information on what you are doing. And now i'm done with shooting blind, so if you want further replies, post your stuff.
Gold isn't everything in life... you need wood, too!
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2012-04-05 17:43:27
April 05 2012 16:45 GMT
#2609
Sorry for being vague, but it's an assignment for university, so I have to be extra careful with sharing my code.
Anyway, I've fixed my problem. A value wasn't properly updated only on Linux, so it didn't go through if {}.
Here is a bit of code to show you what I mean:
+ Show Spoiler +


public class OuterClass {
// Variables
public static int value = 0;
public final static int maxValue = 10; // say 10 for example

public static synchronized void increase {
//code here
}

public static syncrhonized void decrease {
//code here
}

public static synchronized int getValue {
return value;
}

// Inner class 1
public static class InnerClass extends Thread {
public void run() {
//code which modifies value
}
}

// Inner class 2
public static class InnerClassTwo extends Thread {
public void run() {
// this is what fixed the problem
getValue();
// this is what fixed the problem

if (value >= 1) {
...
}
}


//main method
...
}



TLDR: value changes were unknown to the 2nd (inner) class, it was always zero for it. However, that problem existed only on Linux jdk 1.6. Windows and FreeBSD proved to be fine.

P.S. I'm aware there are some syntax and identation errors, but you get the point.
GaiaCaT
Profile Joined June 2011
35 Posts
April 05 2012 18:26 GMT
#2610
On April 06 2012 01:45 darkness wrote:
However, that problem existed only on Linux jdk 1.6. Windows and FreeBSD proved to be fine.

I don't think this is a bug.
You need to synchronize reads/gets too, otherwise you're not guaranteed to retrieve the most recent value.
The reason Windows and FreeBSD seems to work is likely because they update value "fast enough" for the 2nd thread to pick up, unlike Linux which is still using a cached value.
If the first thread finishes its job too fast and causes the second thread to terminate, the second thread might never get access to an updated value.
This would explain why your if-block never fires unless you call getValue() before the if-block.

Might want to use this instead:
if (getValue() >= 1) {
}

If 2nd thread only ever reads value, you could also consider just declaring value as volatile which should ensure any reads will return the most recent write.
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
April 05 2012 20:23 GMT
#2611
Wrote a pretty interesting article on binary collision: link. Pretty simple collision that's useful for platforming games
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2012-04-05 23:52:19
April 05 2012 23:51 GMT
#2612
On April 06 2012 03:26 GaiaCaT wrote:
Show nested quote +
On April 06 2012 01:45 darkness wrote:
However, that problem existed only on Linux jdk 1.6. Windows and FreeBSD proved to be fine.

I don't think this is a bug.
You need to synchronize reads/gets too, otherwise you're not guaranteed to retrieve the most recent value.
The reason Windows and FreeBSD seems to work is likely because they update value "fast enough" for the 2nd thread to pick up, unlike Linux which is still using a cached value.
If the first thread finishes its job too fast and causes the second thread to terminate, the second thread might never get access to an updated value.
This would explain why your if-block never fires unless you call getValue() before the if-block.

Might want to use this instead:
if (getValue() >= 1) {
}

If 2nd thread only ever reads value, you could also consider just declaring value as volatile which should ensure any reads will return the most recent write.


It sounds logical. Btw, a friend of mine has installed Ubuntu as virtual machine and there was no problem. Could we say it's also up to JDK and/or kernel version?
GaiaCaT
Profile Joined June 2011
35 Posts
April 06 2012 01:11 GMT
#2613
This is well beyond my expertise...
But as far as I know, it could be architecture, kernel, JVM, and maybe even CPU load and core-dependant.
The current implementation does not enforce any synchronization of variables accessed through unsynchronized reads.
That means a JVM could as example keep a variable cached for 10 seconds and it would still be within standards because you're supposed to read from within a synchronized method/block or declare the variable as volatile if you want the most up-to-date value.
tec27
Profile Blog Joined June 2004
United States3701 Posts
April 06 2012 03:56 GMT
#2614
On April 06 2012 08:51 darkness wrote:
Show nested quote +
On April 06 2012 03:26 GaiaCaT wrote:
On April 06 2012 01:45 darkness wrote:
However, that problem existed only on Linux jdk 1.6. Windows and FreeBSD proved to be fine.

I don't think this is a bug.
You need to synchronize reads/gets too, otherwise you're not guaranteed to retrieve the most recent value.
The reason Windows and FreeBSD seems to work is likely because they update value "fast enough" for the 2nd thread to pick up, unlike Linux which is still using a cached value.
If the first thread finishes its job too fast and causes the second thread to terminate, the second thread might never get access to an updated value.
This would explain why your if-block never fires unless you call getValue() before the if-block.

Might want to use this instead:
if (getValue() >= 1) {
}

If 2nd thread only ever reads value, you could also consider just declaring value as volatile which should ensure any reads will return the most recent write.


It sounds logical. Btw, a friend of mine has installed Ubuntu as virtual machine and there was no problem. Could we say it's also up to JDK and/or kernel version?

Its a race condition, so the output is indeterminant on any architecture. The reason calling getValue() fixes it is because its a synchronized method, which forces the thread to lock until the object is available (not being used in another synchronized method call). Say you have thread 1 increment the value, and thread 2 output it, the events are essentially:

Thread 1
  • Retrieve Value
  • Increment Value
  • Store Value

Thread 2
  • Retrieve Value
  • Output Value


Now, since you're running those actions in separate threads, its completely up to the OS scheduler as to when they will take place. Assuming a starting value of 5, they might interleave like:
T1 - Retrieve [local = value = 5]
T1 - Increment [local = 6]
T1 - Store [value = 6]
T2 - Retrieve [local = value = 6]
T2 - Output [6]
(this is an okay/desired outcome)

Or like:
T1 - Retrieve [local = value = 5]
T1 - Increment [local = 6]
T2 - Retrieve [local = value = 5]
T1 - Store [value = 6]
T2 - Output [5]
(this is one of the ways to get to your 'buggy' state)

There are a bunch more possible orderings, but I think you get the point Anyway, what the 'synchronized' keyword does is basically turn the methods into atomic actions, so that they can't interleave per object. So if one thread calls the Retrieve method on an object, no other object can, for instance, call the Set method at the same time for that object. Thus, when your 'fixed' program runs, its highly likely (but NOT 100% sure, it still has a race condition ) that the increment step will run before the print one. IE:

T1 - Retrieve (OBJECT LOCKED) [local = value = 5]
T2 - Retrieve (object is locked, thread blocks until object is available)
T1 - Increment [local = 6]
T1 - Store (OBJECT UNLOCKED) [value = 6]
T2 - Continues with Retrieve [local = value = 6]
T2 - Output [6]

But as you can see, this ordering still depends on what thing gets the lock first. You can do some things to make sure they lock in the right order, but this problem is also better solved by just not threading
Can you jam with the console cowboys in cyberspace?
MrHoon *
Profile Blog Joined April 2008
10183 Posts
April 06 2012 04:03 GMT
#2615
man i wish i can trade my korean language for programming
dats racist
Chaosvuistje
Profile Joined April 2010
Netherlands2581 Posts
April 06 2012 08:07 GMT
#2616
On April 06 2012 13:03 MrHoon wrote:
man i wish i can trade my korean language for programming


I'd say that programming languages are a fair bit easier to understand than the syntax of Korean. Then again, it all depends on where you are born. But really, syntax is much easier for computer languages than regular languages.
IMlemon
Profile Blog Joined May 2008
Lithuania296 Posts
April 06 2012 08:12 GMT
#2617
Syntax is by far the easiest part of programming and can be learned in a few days by everyone. Using that syntax to create working solutions to problems is the hard part.
My future's so bright, I gotta wear shades.
Weson
Profile Blog Joined December 2010
Iceland1032 Posts
Last Edited: 2012-04-07 00:42:26
April 07 2012 00:40 GMT
#2618
Anyone know a good site or anything where you can learn ASP.NET with C#? Just started a class and we're working in Visual Studio Web Developer. I got a book but it's more of a reference book rather than a learning book.
"!@€#" - as some guy said
alwinuz
Profile Joined September 2011
Netherlands77 Posts
April 07 2012 15:25 GMT
#2619
On April 07 2012 09:40 Weson wrote:
Anyone know a good site or anything where you can learn ASP.NET with C#? Just started a class and we're working in Visual Studio Web Developer. I got a book but it's more of a reference book rather than a learning book.

What part of ASP.net are you focusing on? For example, I think MVC is much easier than Web Forms.

There's lots of training articles and videos at the official site: http://www.asp.net/mvc
Ultraliskhero
Profile Joined April 2010
Canada249 Posts
April 07 2012 22:16 GMT
#2620
Hi guys, I have a quick question.

I'm doing file i/o using C on a linux environment, and I am wondering if there is a way to delete the contents of an entire file that was opened earlier without closing the file.

Basicly, I first opened an existing file using the "r+" mode for fopen(), then I'm reading the file until EOF, and then I want to delete the contents of the file and write to it again starting from the begining. However, I cannot simply close the file and reopen it using the "w" mode for fopen() because I have the file locked using flock(), and I do not want to close (unlock) the file before I finish doing all the operations on it.

Thanks.
Prev 1 129 130 131 132 133 1031 Next
Please log in or register to reply.
Live Events Refresh
RotterdaM Event
15:00
Rotti's All Random Finals
RotterdaM1273
IndyStarCraft 244
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RotterdaM 1273
mouzHeroMarine 444
Reynor 257
IndyStarCraft 244
ProTech90
Dewaltoss 58
UpATreeSC 51
StarCraft: Brood War
Larva 419
Mini 396
Aegong 56
scan(afreeca) 34
HiyA 10
Beast 2
Dota 2
XaKoH 469
Pyrionflax231
capcasts129
Counter-Strike
fl0m1937
Stewie2K791
Foxcn408
kRYSTAL_57
PGG 47
Super Smash Bros
PPMD64
Heroes of the Storm
Liquid`Hasu524
Other Games
Grubby2770
FrodaN770
C9.Mang0188
KnowMe137
Trikslyr50
ZombieGrub42
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 22 non-featured ]
StarCraft 2
• StrangeGG 69
• LUISG 18
• OhrlRock 5
• IndyKCrew
• sooper7s
• AfreecaTV YouTube
• intothetv
• Kozan
• Migwel
• LaughNgamezSOOP
StarCraft: Brood War
• 80smullet 21
• Pr0nogo 3
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota21095
• WagamamaTV752
• Noizen43
League of Legends
• TFBlade1017
Counter-Strike
• imaqtpie698
Other Games
• Scarra549
• Shiphtur200
Upcoming Events
Replay Cast
3h 39m
Afreeca Starleague
13h 39m
Rush vs TBD
TBD vs Mong
WardiTV Summer Champion…
14h 39m
Cure vs Classic
ByuN vs TBD
herO vs TBD
TBD vs NightMare
TBD vs MaxPax
OSC
15h 39m
PiGosaur Monday
1d 3h
Afreeca Starleague
1d 13h
herO vs TBD
Royal vs Barracks
Replay Cast
2 days
The PondCast
2 days
WardiTV Summer Champion…
2 days
Replay Cast
3 days
[ Show More ]
LiuLi Cup
3 days
MaxPax vs TriGGeR
ByuN vs herO
Cure vs Rogue
Classic vs HeRoMaRinE
Cosmonarchy
3 days
OyAji vs Sziky
Sziky vs WolFix
WolFix vs OyAji
BSL Team Wars
3 days
Team Hawk vs Team Dewalt
BSL Team Wars
3 days
Team Hawk vs Team Bonyth
SC Evo League
4 days
TaeJa vs Cure
Rogue vs threepoint
ByuN vs Creator
MaNa vs Classic
Maestros of the Game
4 days
[BSL 2025] Weekly
4 days
SC Evo League
5 days
Maestros of the Game
5 days
BSL Team Wars
5 days
Team Bonyth vs Team Sziky
BSL Team Wars
5 days
Team Dewalt vs Team Sziky
Monday Night Weeklies
6 days
Liquipedia Results

Completed

CSLAN 3
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
CSL Season 18: Qualifier 1
Acropolis #4 - TS1
SEL Season 2 Championship
WardiTV Summer 2025
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 Season 18: Qualifier 2
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
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
MESA Nomadic Masters Fall
CS Asia Championships 2025
Roobet Cup 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
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.