• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 13:15
CET 19:15
KST 03:15
  • 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: Winners11Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10[ASL20] Finals Preview: Arrival13TL.net Map Contest #21: Voting12[ASL20] Ro4 Preview: Descent11
Community News
StarCraft, SC2, HotS, WC3, Returning to Blizzcon!45$5,000+ WardiTV 2025 Championship7[BSL21] RO32 Group Stage4Weekly Cups (Oct 26-Nov 2): Liquid, Clem, Solar win; LAN in Philly2Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win10
StarCraft 2
General
SC: Evo Complete - Ranked Ladder OPEN ALPHA Mech is the composition that needs teleportation t TL.net Map Contest #21: Winners StarCraft, SC2, HotS, WC3, Returning to Blizzcon! RotterdaM "Serral is the GOAT, and it's not close"
Tourneys
Constellation Cup - Main Event - Stellar Fest Sparkling Tuna Cup - Weekly Open Tournament $5,000+ WardiTV 2025 Championship Merivale 8 Open - LAN - Stellar Fest Sea Duckling Open (Global, Bronze-Diamond)
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 499 Chilling Adaptation Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened Mutation # 496 Endless Infection
Brood War
General
FlaSh on: Biggest Problem With SnOw's Playstyle BGH Auto Balance -> http://bghmmr.eu/ [ASL20] Ask the mapmakers — Drop your questions BW General Discussion Where's CardinalAllin/Jukado the mapmaker?
Tourneys
[Megathread] Daily Proleagues [ASL20] Grand Finals [BSL21] RO32 Group A - Saturday 21:00 CET [BSL21] RO32 Group B - Sunday 21:00 CET
Strategy
PvZ map balance Current Meta How to stay on top of macro? Soma's 9 hatch build from ASL Game 2
Other Games
General Games
Stormgate/Frost Giant Megathread Should offensive tower rushing be viable in RTS games? Nintendo Switch Thread Path of Exile Dawn of War IV
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
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine Canadian Politics Mega-thread US Politics Mega-thread The Games Industry And ATVI
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
[Manga] One Piece Anime Discussion Thread Movie Discussion! Korean Music Discussion Series you have seen recently...
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion MLB/Baseball 2023 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
Blogs
Learning my new SC2 hotkey…
Hildegard
Coffee x Performance in Espo…
TrAiDoS
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Reality "theory" prov…
perfectspheres
Our Last Hope in th…
KrillinFromwales
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1424 users

The Big Programming Thread - Page 804

Forum Index > General Forum
Post a Reply
Prev 1 802 803 804 805 806 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.
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
Hyrule19151 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
Hyrule19151 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
Poland17423 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 1032 Next
Please log in or register to reply.
Live Events Refresh
Wardi Open
12:00
#60
WardiTV2250
IndyStarCraft 235
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
IndyStarCraft 235
UpATreeSC 87
StarCraft: Brood War
Rain 3549
Horang2 1587
Shuttle 779
firebathero 160
scan(afreeca) 52
sSak 37
Mong 30
Aegong 22
JulyZerg 17
ivOry 6
[ Show more ]
SilentControl 5
Dota 2
Gorgc5362
qojqva3580
420jenkins277
BananaSlamJamma178
XcaliburYe153
League of Legends
rGuardiaN20
Counter-Strike
fl0m572
byalli525
Other Games
FrodaN1033
Beastyqt715
ceh9567
KnowMe280
Lowko263
Sick257
Hui .188
Mew2King150
Liquid`VortiX147
ArmadaUGS79
QueenE48
Trikslyr46
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 18 non-featured ]
StarCraft 2
• kabyraGe 105
• Reevou 1
• IndyKCrew
• LaughNgamezSOOP
• sooper7s
• AfreecaTV YouTube
• Migwel
• intothetv
• Kozan
StarCraft: Brood War
• Michael_bg 9
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• WagamamaTV218
League of Legends
• Nemesis3571
• TFBlade957
• imaqtpie471
Other Games
• Shiphtur284
Upcoming Events
Replay Cast
4h 45m
WardiTV Korean Royale
17h 45m
OSC
22h 45m
Replay Cast
1d 4h
Replay Cast
1d 14h
Kung Fu Cup
1d 17h
Classic vs Solar
herO vs Cure
Reynor vs GuMiho
ByuN vs ShoWTimE
Tenacious Turtle Tussle
2 days
The PondCast
2 days
RSL Revival
2 days
Solar vs Zoun
MaxPax vs Bunny
Kung Fu Cup
2 days
[ Show More ]
WardiTV Korean Royale
2 days
PiGosaur Monday
3 days
RSL Revival
3 days
Classic vs Creator
Cure vs TriGGeR
Kung Fu Cup
3 days
CranKy Ducklings
4 days
RSL Revival
4 days
herO vs Gerald
ByuN vs SHIN
Kung Fu Cup
4 days
BSL 21
5 days
Tarson vs Julia
Doodle vs OldBoy
eOnzErG vs WolFix
StRyKeR vs Aeternum
Sparkling Tuna Cup
5 days
RSL Revival
5 days
Reynor vs sOs
Maru vs Ryung
Kung Fu Cup
5 days
WardiTV Korean Royale
5 days
BSL 21
6 days
JDConan vs Semih
Dragon vs Dienmax
Tech vs NewOcean
TerrOr vs Artosis
Wardi Open
6 days
Monday Night Weeklies
6 days
Liquipedia Results

Completed

Proleague 2025-11-07
Stellar Fest: Constellation Cup
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
YSL S2
BSL Season 21
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual

Upcoming

SLON Tour Season 2
BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
RSL Revival: Season 3
META Madness #9
BLAST Bounty Winter 2026
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals 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.