• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 09:02
CEST 15:02
KST 22: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
[ASL19] Finals Recap: Standing Tall9HomeStory Cup 27 - Info & Preview18Classic wins Code S Season 2 (2025)16Code S RO4 & Finals Preview: herO, Rogue, Classic, GuMiho0TL Team Map Contest #5: Presented by Monster Energy6
Community News
Flash Announces Hiatus From ASL54Weekly Cups (June 23-29): Reynor in world title form?13FEL Cracov 2025 (July 27) - $8000 live event16Esports World Cup 2025 - Final Player Roster16Weekly Cups (June 16-22): Clem strikes back1
StarCraft 2
General
Weekly Cups (June 23-29): Reynor in world title form? The SCII GOAT: A statistical Evaluation PiG Sty Festival #5: Playoffs Preview + Groups Recap The GOAT ranking of GOAT rankings Statistics for vetoed/disliked maps
Tourneys
RSL: Revival, a new crowdfunded tournament series Korean Starcraft League Week 77 Master Swan Open (Global Bronze-Master 2) [GSL 2025] Code S: Season 2 - Semi Finals & Finals $5,100+ SEL Season 2 Championship (SC: Evo)
Strategy
How did i lose this ZvP, whats the proper response Simple Questions Simple Answers
Custom Maps
[UMS] Zillion Zerglings
External Content
Mutation # 480 Moths to the Flame Mutation # 479 Worn Out Welcome Mutation # 478 Instant Karma Mutation # 477 Slow and Steady
Brood War
General
Player “Jedi” cheat on CSL BW General Discussion Flash Announces Hiatus From ASL BGH Auto Balance -> http://bghmmr.eu/ Unit and Spell Similarities
Tourneys
[Megathread] Daily Proleagues [BSL20] Grand Finals - Sunday 20:00 CET Small VOD Thread 2.0 [BSL20] GosuLeague RO16 - Tue & Wed 20:00+CET
Strategy
Simple Questions, Simple Answers I am doing this better than progamers do.
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread Path of Exile What do you want from future RTS games? Beyond All Reason
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 Trading/Investing Thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread The Games Industry And ATVI
Fan Clubs
SKT1 Classic Fan Club! Maru Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece [\m/] Heavy Metal Thread
Sports
Formula 1 Discussion 2024 - 2025 Football Thread NBA General Discussion TeamLiquid Health and Fitness Initiative For 2023 NHL Playoffs 2024
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
Blogs
Culture Clash in Video Games…
TrAiDoS
from making sc maps to makin…
Husyelt
Blog #2
tankgirl
StarCraft improvement
iopq
Trip to the Zoo
micronesia
Customize Sidebar...

Website Feedback

Closed Threads



Active: 648 users

The Big Programming Thread - Page 804

Forum Index > General Forum
Post a Reply
Prev 1 802 803 804 805 806 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.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
November 25 2016 20:55 GMT
#16061
On November 26 2016 05:50 RoomOfMush wrote:
Show nested quote +
On November 26 2016 05:35 travis wrote:
ah solved my own problem

but I am left with a question

are objects that have been declared but not initialized set as "null" in java?

I am reading they are
but then why does eclipse give me errors when I don't initialize them (it makes me explicitly say that they = null)

You never declare objects. You declare variables; they are not the same thing as an object. An object is only created when the "new" keyword is used. That is the only way for an object to ever be. (if we ignore black voodoo magic like TheUnsafe and compiler magic like Boxing / Strings)



ah.. yeah.. makes sense



For example:
String a = new String("Hello World");
String b = a;
String c;
String d = null;
new String("Test");

The above code has 4 variables but only 2 Objects. 2 Variables (a, b) point to the same object. One variable (c) was declared but not initialized; it points to no object at all. This variable is not usable until it is initialized. The last variable (d) is pointing to null which is "no object" in java.
Our second Object is created but has no variable pointing to it. We can not do anything with it anymore because we have no reference to work with.

Its different with member variables (attributes) though. These are ALWAYS initialized because the Compiler enforces that. A member variable of object type is always initialized with null unless you initialize it with something else.


okay so it's only local variables that have this problem?

do you know why?? I guess it doesn't *really* matter though it caused me a minor inconvenience, and I don't see the benefit.
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
Last Edited: 2016-11-25 21:01:02
November 25 2016 20:58 GMT
#16062
--- Nuked ---
RoomOfMush
Profile Joined March 2015
1296 Posts
Last Edited: 2016-11-25 21:12:38
November 25 2016 21:08 GMT
#16063
On November 26 2016 05:51 Acrofales wrote:
Show nested quote +
On November 26 2016 05:35 travis wrote:
ah solved my own problem

but I am left with a question

are objects that have been declared but not initialized set as "null" in java?

I am reading they are
but then why does eclipse give me errors when I don't initialize them (it makes me explicitly say that they = null)

Was about to answer, but you did it yourself. Not quite sure about the rest. Java changed that shit at some point. It used to be undefined (and effectively initialized to null), and good practice was to initialize them explicitly to null. Then it became explicit for fields (I think in Java 6), and it was unnecessary to initialize fields to null (and you got a warning that that code did nothing... thank you). I have no idea whether variables follow the former or the latter initialization rules. Clearly you are being told to initialize it to null, so it's probably the former. Or you're working with a really old version of Java.

It has always been the way I described above since version 1.0. You can look up the version history on wikipedia and read the updates yourself: https://en.wikipedia.org/wiki/Java_version_history

Here is a link to the java documentation were default initialization is talked about: https://docs.oracle.com/javase/tutorial/java/nutsandbolts/variablesummary.html
with the important part being:
[...] The compiler will assign a reasonable default value for fields of the above types; for local variables, a default value is never assigned. [...]

And here is the part where the default values are listed:
https://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html
The important part is:
byte                    0
short 0
int 0
long 0L
float 0.0f
double 0.0d
char '\u0000'
String (or any object) null
boolean false


And here is an article talking about it a little bit more in depth (notice the date being 1998 which means the article was written with java version 1.2)
http://www.javaworld.com/article/2076614/core-java/object-initialization-in-java.html

Edit:
On November 26 2016 05:55 travis wrote:
Show nested quote +
On November 26 2016 05:50 RoomOfMush wrote:
On November 26 2016 05:35 travis wrote:
ah solved my own problem

but I am left with a question

are objects that have been declared but not initialized set as "null" in java?

I am reading they are
but then why does eclipse give me errors when I don't initialize them (it makes me explicitly say that they = null)

You never declare objects. You declare variables; they are not the same thing as an object. An object is only created when the "new" keyword is used. That is the only way for an object to ever be. (if we ignore black voodoo magic like TheUnsafe and compiler magic like Boxing / Strings)



ah.. yeah.. makes sense


Show nested quote +

For example:
String a = new String("Hello World");
String b = a;
String c;
String d = null;
new String("Test");

The above code has 4 variables but only 2 Objects. 2 Variables (a, b) point to the same object. One variable (c) was declared but not initialized; it points to no object at all. This variable is not usable until it is initialized. The last variable (d) is pointing to null which is "no object" in java.
Our second Object is created but has no variable pointing to it. We can not do anything with it anymore because we have no reference to work with.

Its different with member variables (attributes) though. These are ALWAYS initialized because the Compiler enforces that. A member variable of object type is always initialized with null unless you initialize it with something else.


okay so it's only local variables that have this problem?

do you know why?? I guess it doesn't *really* matter though it caused me a minor inconvenience, and I don't see the benefit.

Its for performance and security reasons. The JVM would have to push a default value for each variable and parameter on the stack only for it to be overwritten by the developer 99% of the time. If the JVM would not initialize local variables but would also not force local variables to be explicitly initialized then malicious software written in java could freely read your stack which poses a security risk.
phar
Profile Joined August 2011
United States1080 Posts
Last Edited: 2016-11-25 21:33:57
November 25 2016 21:28 GMT
#16064
On November 26 2016 04:34 RoomOfMush wrote:
Show nested quote +
On November 26 2016 03:31 tofucake wrote:
Technically everything on a computer is binary...

No that doesnt make any sense. Binary is a representation of numbers. A computer is a complex physical machine. Everything inside it is currents of electricity. Binary is how we humans decided to interprete it as. Its just a number format that is convenient to use. Binary doesnt happen until you enter the software-level.

It makes quite a lot of sense. From the hardware perspective, things were quite specifically implemented to give binary signals. When designing a CPU, the people don't put together the pieces and later decide that binary is a good representation. The entire process revolves around being able to isolate a signal as one of two states - binary.

It makes even more sense when we talk about this in the context of the original discussion - data in a computer is most certainly binary under the hood. Your RAM, SSD, or HDD are explicitly storing binary data. Sure it gets a little muddled when you're talking about e.g. tlc flash, which uses 2^3 distinct signal levels to store 3 bits of data... but for all intents and purposes it's binary all the way down, by design.
Who after all is today speaking about the destruction of the Armenians?
RoomOfMush
Profile Joined March 2015
1296 Posts
November 25 2016 21:44 GMT
#16065
On November 26 2016 06:28 phar wrote:
Show nested quote +
On November 26 2016 04:34 RoomOfMush wrote:
On November 26 2016 03:31 tofucake wrote:
Technically everything on a computer is binary...

No that doesnt make any sense. Binary is a representation of numbers. A computer is a complex physical machine. Everything inside it is currents of electricity. Binary is how we humans decided to interprete it as. Its just a number format that is convenient to use. Binary doesnt happen until you enter the software-level.

It makes quite a lot of sense. From the hardware perspective, things were quite specifically implemented to give binary signals. When designing a CPU, the people don't put together the pieces and later decide that binary is a good representation. The entire process revolves around being able to isolate a signal as one of two states - binary.

It makes even more sense when we talk about this in the context of the original discussion - data in a computer is most certainly binary under the hood. Your RAM, SSD, or HDD are explicitly storing binary data. Sure it gets a little muddled when you're talking about e.g. tlc flash, which uses 2^3 distinct signal levels to store 3 bits of data... but for all intents and purposes it's binary all the way down, by design.

And I still disagree. Binary is a data representation. It is a way of looking at data but it is not an natural property of the data itself. The representation of the data depends on who is looking at it and for what purpose. A software developer might look at data and see it in terms of objects. A programmer might look at the data and see it in terms of numbers, be it in binary or decimal or whatever. The hardware designer might laugh at this and say the data is all booleans. There is no arithmetics, its all boolean operations on the bit level. The mechanic might see it as voltages or light signals going through a tube or what have you.
What it really is is just data. Its all a whole lot of data. It is binary numbers if you want it to be binary numbers. It is boolean sets if you want it to be boolean sets. But it only is these things as long as there is a human being around to interprete it that way. By its nature its neither.
BluzMan
Profile Blog Joined April 2006
Russian Federation4235 Posts
November 25 2016 22:34 GMT
#16066
On November 26 2016 06:44 RoomOfMush wrote:
Show nested quote +
On November 26 2016 06:28 phar wrote:
On November 26 2016 04:34 RoomOfMush wrote:
On November 26 2016 03:31 tofucake wrote:
Technically everything on a computer is binary...

No that doesnt make any sense. Binary is a representation of numbers. A computer is a complex physical machine. Everything inside it is currents of electricity. Binary is how we humans decided to interprete it as. Its just a number format that is convenient to use. Binary doesnt happen until you enter the software-level.

It makes quite a lot of sense. From the hardware perspective, things were quite specifically implemented to give binary signals. When designing a CPU, the people don't put together the pieces and later decide that binary is a good representation. The entire process revolves around being able to isolate a signal as one of two states - binary.

It makes even more sense when we talk about this in the context of the original discussion - data in a computer is most certainly binary under the hood. Your RAM, SSD, or HDD are explicitly storing binary data. Sure it gets a little muddled when you're talking about e.g. tlc flash, which uses 2^3 distinct signal levels to store 3 bits of data... but for all intents and purposes it's binary all the way down, by design.

And I still disagree. Binary is a data representation. It is a way of looking at data but it is not an natural property of the data itself. The representation of the data depends on who is looking at it and for what purpose. A software developer might look at data and see it in terms of objects. A programmer might look at the data and see it in terms of numbers, be it in binary or decimal or whatever. The hardware designer might laugh at this and say the data is all booleans. There is no arithmetics, its all boolean operations on the bit level. The mechanic might see it as voltages or light signals going through a tube or what have you.
What it really is is just data. Its all a whole lot of data. It is binary numbers if you want it to be binary numbers. It is boolean sets if you want it to be boolean sets. But it only is these things as long as there is a human being around to interprete it that way. By its nature its neither.


I'd say that in the common meaning of the word, binary signifies a lack of representation. The original question was about IO I think. There binary is just raw data, opposed by text which implies at least some formatting.
You want 20 good men, but you need a bad pussy.
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
Last Edited: 2016-11-25 22:36:08
November 25 2016 22:35 GMT
#16067
You're talking about abstractions. The original statement is about the foundations.

Binary is the basic property of everything in a computer system.

We define electric signals by high or low voltage, which we define as 1 or 0. This binary system is the building block of every single thing in a computer. Every abstraction we build is a layer on top of high and low electric signals, a binary system we defined.
There is no one like you in the universe.
BluzMan
Profile Blog Joined April 2006
Russian Federation4235 Posts
November 25 2016 22:58 GMT
#16068
On November 26 2016 07:35 Blisse wrote:
You're talking about abstractions. The original statement is about the foundations.

Binary is the basic property of everything in a computer system.

We define electric signals by high or low voltage, which we define as 1 or 0. This binary system is the building block of every single thing in a computer. Every abstraction we build is a layer on top of high and low electric signals, a binary system we defined.


This is a correct but useless definition, the worst of them all.
You want 20 good men, but you need a bad pussy.
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
Last Edited: 2016-11-25 23:05:40
November 25 2016 23:04 GMT
#16069
On November 26 2016 07:58 BluzMan wrote:
Show nested quote +
On November 26 2016 07:35 Blisse wrote:
You're talking about abstractions. The original statement is about the foundations.

Binary is the basic property of everything in a computer system.

We define electric signals by high or low voltage, which we define as 1 or 0. This binary system is the building block of every single thing in a computer. Every abstraction we build is a layer on top of high and low electric signals, a binary system we defined.


This is a correct but useless definition, the worst of them all.


How is this useless when this is literally how everything works.
There is no one like you in the universe.
phar
Profile Joined August 2011
United States1080 Posts
November 25 2016 23:27 GMT
#16070
The original context here is shields asking about integer storage read as bytes. Binary is the name of the game here.

If we want to be more specific for shields, the things they need to jog their memory are probably
1) 2s complement
2) maybe, big vs little endian, depending on what level this reading of data is being done at.
Who after all is today speaking about the destruction of the Armenians?
BluzMan
Profile Blog Joined April 2006
Russian Federation4235 Posts
November 25 2016 23:29 GMT
#16071
On November 26 2016 08:04 Blisse wrote:
Show nested quote +
On November 26 2016 07:58 BluzMan wrote:
On November 26 2016 07:35 Blisse wrote:
You're talking about abstractions. The original statement is about the foundations.

Binary is the basic property of everything in a computer system.

We define electric signals by high or low voltage, which we define as 1 or 0. This binary system is the building block of every single thing in a computer. Every abstraction we build is a layer on top of high and low electric signals, a binary system we defined.


This is a correct but useless definition, the worst of them all.


How is this useless when this is literally how everything works.

You answered your question with your question. Definitions are useful when they are specific. "How everything works" is the opposite of specific and hence horribly useless.
You want 20 good men, but you need a bad pussy.
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
Last Edited: 2016-11-25 23:44:01
November 25 2016 23:36 GMT
#16072
On November 26 2016 08:29 BluzMan wrote:
Show nested quote +
On November 26 2016 08:04 Blisse wrote:
On November 26 2016 07:58 BluzMan wrote:
On November 26 2016 07:35 Blisse wrote:
You're talking about abstractions. The original statement is about the foundations.

Binary is the basic property of everything in a computer system.

We define electric signals by high or low voltage, which we define as 1 or 0. This binary system is the building block of every single thing in a computer. Every abstraction we build is a layer on top of high and low electric signals, a binary system we defined.


This is a correct but useless definition, the worst of them all.


How is this useless when this is literally how everything works.

You answered your question with your question. Definitions are useful when they are specific. "How everything works" is the opposite of specific and hence horribly useless.


"Definitions are useful when they are specific."

This is neither self-evident nor meaningful, no clue why you're saying random abstract stuff like this.

Definitions are useful when they define something. We defined binary based on high and low voltages. High and low voltages is the basic component of every part in a computer. I don't know what point you're trying to make here. I was responding to RoomOfMush's disagreement.
There is no one like you in the universe.
tofucake
Profile Blog Joined October 2009
Hyrule19030 Posts
November 26 2016 13:15 GMT
#16073
On November 26 2016 04:34 RoomOfMush wrote:
Show nested quote +
On November 26 2016 03:31 tofucake wrote:
Technically everything on a computer is binary...

No that doesnt make any sense. Binary is a representation of numbers. A computer is a complex physical machine. Everything inside it is currents of electricity. Binary is how we humans decided to interprete it as. Its just a number format that is convenient to use. Binary doesnt happen until you enter the software-level.

No, 1 is low current and 0 is high current. The hardware level is very much binary
Liquipediaasante sana squash banana
Djagulingu
Profile Blog Joined December 2010
Germany3605 Posts
November 26 2016 17:33 GMT
#16074
On November 26 2016 22:15 tofucake wrote:
Show nested quote +
On November 26 2016 04:34 RoomOfMush wrote:
On November 26 2016 03:31 tofucake wrote:
Technically everything on a computer is binary...

No that doesnt make any sense. Binary is a representation of numbers. A computer is a complex physical machine. Everything inside it is currents of electricity. Binary is how we humans decided to interprete it as. Its just a number format that is convenient to use. Binary doesnt happen until you enter the software-level.

No, 1 is low voltage and 0 is high voltage. The hardware level is very much binary

FTFY. Also, please know that it might very well be the opposite.
"windows bash is a steaming heap of shit" tofucake
phar
Profile Joined August 2011
United States1080 Posts
November 26 2016 18:32 GMT
#16075
Anyways, how about that bike shed?
Who after all is today speaking about the destruction of the Armenians?
tofucake
Profile Blog Joined October 2009
Hyrule19030 Posts
November 26 2016 18:36 GMT
#16076
On November 27 2016 02:33 Djagulingu wrote:
Show nested quote +
On November 26 2016 22:15 tofucake wrote:
On November 26 2016 04:34 RoomOfMush wrote:
On November 26 2016 03:31 tofucake wrote:
Technically everything on a computer is binary...

No that doesnt make any sense. Binary is a representation of numbers. A computer is a complex physical machine. Everything inside it is currents of electricity. Binary is how we humans decided to interprete it as. Its just a number format that is convenient to use. Binary doesnt happen until you enter the software-level.

No, 1 is low voltage and 0 is high voltage. The hardware level is very much binary

FTFY. Also, please know that it might very well be the opposite.

Yeah it's been a while since my architecture classes...
Liquipediaasante sana squash banana
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
Last Edited: 2016-11-27 08:20:14
November 26 2016 18:44 GMT
#16077
--- Nuked ---
Aerisky
Profile Blog Joined May 2012
United States12129 Posts
Last Edited: 2016-11-27 09:59:13
November 27 2016 09:51 GMT
#16078
On November 27 2016 03:44 Nesserev wrote:
Show nested quote +
On November 27 2016 03:32 phar wrote:
Anyways, how about that bike shed?

First quality post in a while

EDIT: Anyone got any recommended reads that really blew them away recently?

Just read "Story of Your Life" by Ted Chiang (short story on which Arrival was based) which was really great.

JK but I actually read https://learnpythonthehardway.org/book/nopython3.html recently, and found it pretty interesting since I generally like python 3. I was blown away as I really felt some of his concerns were over, uh, blown, and didn't realize it was that big of an issue (is python actually a dying language)? Not sure whence this rant came, tbh. What do you guys think?

I don't feel like I'm experienced enough to have an informed opinion, but other than better error messages and what I've heard was rather bungled handling of the transition from python 2 to 3, I don't really feel like there's that much doom and gloom to be had regarding python 3.
Jim while Johnny had had had had had had had; had had had had the better effect on the teacher.
Manit0u
Profile Blog Joined August 2004
Poland17243 Posts
November 27 2016 14:39 GMT
#16079
On November 27 2016 03:44 Nesserev wrote:
Show nested quote +
On November 27 2016 03:32 phar wrote:
Anyways, how about that bike shed?

First quality post in a while

EDIT: Anyone got any recommended reads that really blew them away recently?


http://evilbydesign.info/
Time is precious. Waste it wisely.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2016-11-27 17:21:15
November 27 2016 17:16 GMT
#16080
edit: there is something magical about asking a question and then instantly figuring out the answer
Prev 1 802 803 804 805 806 1031 Next
Please log in or register to reply.
Live Events Refresh
WardiTV European League
12:00
Swiss Groups Day 2
WardiTV1198
TKL 366
Liquipedia
CranKy Ducklings
10:00
Master Swan Open #93
CranKy Ducklings86
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
TKL 366
Hui .279
BRAT_OK 84
MindelVK 43
StarCraft: Brood War
Calm 11547
Horang2 2182
Bisu 1330
Jaedong 1212
Flash 1209
Larva 874
Mini 536
BeSt 383
Stork 382
actioN 314
[ Show more ]
Last 206
Soulkey 190
Hyun 163
hero 103
Mind 103
Sea.KH 68
TY 56
sSak 49
Mong 36
Icarus 21
Free 17
HiyA 12
GoRush 11
Terrorterran 1
Stormgate
NightEnD19
Dota 2
XcaliburYe593
canceldota187
Counter-Strike
zeus475
Heroes of the Storm
Khaldor283
Other Games
Gorgc3088
singsing2852
B2W.Neo1352
DeMusliM557
Happy330
Fuzer 264
XaKoH 228
Lowko205
SortOf113
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• Adnapsc2 22
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• C_a_k_e 2280
• WagamamaTV692
League of Legends
• Nemesis3053
Upcoming Events
FEL
2h 58m
RSL Revival
20h 58m
Clem vs Classic
SHIN vs Cure
FEL
22h 58m
WardiTV European League
22h 58m
BSL: ProLeague
1d 4h
Dewalt vs Bonyth
Replay Cast
2 days
Sparkling Tuna Cup
2 days
WardiTV European League
3 days
The PondCast
3 days
Replay Cast
4 days
[ Show More ]
RSL Revival
4 days
Replay Cast
5 days
RSL Revival
5 days
RSL Revival
6 days
Liquipedia Results

Completed

BSL 2v2 Season 3
HSC XXVII
Heroes 10 EU

Ongoing

JPL Season 2
BSL Season 20
Acropolis #3
KCM Race Survival 2025 Season 2
CSL 17: 2025 SUMMER
Copa Latinoamericana 4
Championship of Russia 2025
RSL Revival: Season 1
Murky Cup #2
BLAST.tv Austin Major 2025
ESL Impact League Season 7
IEM Dallas 2025
PGL Astana 2025
Asian Champions League '25
BLAST Rivals Spring 2025
MESA Nomadic Masters
CCT Season 2 Global Finals
IEM Melbourne 2025

Upcoming

2025 ACS Season 2: Qualifier
CSLPRO Last Chance 2025
2025 ACS Season 2
CSLPRO Chat StarLAN 3
K-Championship
uThermal 2v2 Main Event
SEL Season 2 Championship
FEL Cracov 2025
Esports World Cup 2025
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
FISSURE Playground #1
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.