• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 06:16
CEST 12:16
KST 19:16
  • 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
[ASL22] Ro16 Preview: Rough Waters9[ASL22] Ro24 Preview: Siren's Call8[ASL22] Ro24 Preview: Summer's End9Serral wins HomeStory Cup 2915Serral wins Maestros of the Game 244
Community News
Weekly Cups (Aug 30-Sep 7): herO thrives amid growing schism7Official StarCraft website teases new content ahead of BlizzCon?121Stellar Fest TWO the Moon (Dec 16-20)9Weekly Cups (August 24-30): Patches' balance mod takes over3New 3v3 BGH Ladder (and more) on ShieldBattery!46
StarCraft 2
General
Weekly Cups (Aug 30-Sep 7): herO thrives amid growing schism SC4ALL: II Winner will earn a spot at HSC 30! SC4ALL II: StarCraft 2 Player Announcement 7/8 Nexon wins bid to develop StarCraft IP content, distribute Overwatch mobile game Balance hotfix patch 5.0.16b (July 16)
Tourneys
Sparkling Tuna Cup - Weekly Open Tournament Sea Duckling Open (Global, Bronze-Diamond) 2026 GSTL Announcement Stellar Fest TWO the Moon (Dec 16-20) IntoTheTV X SOOP SC2 League : Weekly & Monthly
Strategy
[G] Having the right mentality to improve
Custom Maps
Nexus Wars 2021 GUIDE [M] (2) Industrial Park
External Content
Mutation # 542 The Ascended Mutation # 541 Binary Choice The PondCast: SC2 News & Results Mutation # 540 Dodge This
Brood War
General
Terran or Protoss BGH Auto Balance -> http://bghmmr.eu/ BW General Discussion Official StarCraft website teases new content ahead of BlizzCon? [ASL22] Ro16 Preview: Rough Waters
Tourneys
KCM Race Survival 2026 Season 3 [ASL22] Ro16 Group A BWCL Season 65 Announcement [ASL22] Ro16 Group B
Strategy
Replay Review Process - What do you do? Simple Questions, Simple Answers Odyssey Mineral Stack Saturation Game Theory for Starcraft
Other Games
General Games
Nintendo Switch Thread EVE Corporation Diablo IV [Maplestory Hardcore] Let's Play~!! General RTS Discussion Thread
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
[TL LoL EUW IHs] Teemo shall perish TSM pausing esports and CLG Dead
Heroes of the Storm
Heroes of the Storm 2.0
Hearthstone
Deck construction bug
TL Mafia
TL Mafia Power Rank TL Mafia Community Thread NeO.D_StephenKing vs This Guy From 1 Million Dance
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread European Politico-economics QA Mega-thread Trading/Investing Thread Things Aren’t Peaceful in Palestine
Fan Clubs
MarineLorD Fan Club The Creator Fan Club The ShoWTimE Fan Club
Media & Entertainment
Movie Discussion! Anime Discussion Thread
Sports
Football (Soccer) Thread TeamLiquid Health and Fitness Initiative For 2023 MLB/Baseball 2023
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Northern Ireland Global Starcraft
Blogs
Is Buying an MLBB Veri…
regacyesports
F* the Children and Get Off …
TrAiDoS
Dreaming of BW patches (mod…
c3rberUs
LOCKPICKING NOOB
LUCKY_NOOB
Customize Sidebar...

Website Feedback

Closed Threads



Active: 9494 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
Hyrule19253 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
Hyrule19253 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
Poland17843 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
KCM Race Survival
10:00
S3 Semi-final
Kim Chul Min (afreeca) 531
LiquipediaDiscussion
The PondCast
10:00
Episode 108
CranKy Ducklings15
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
OGKoka 189
StarCraft: Brood War
Britney 7213
Soulkey 607
Bisu 571
BeSt 539
Horang2 503
Jaedong 422
Soma 224
Shine 194
EffOrt 174
Mini 136
[ Show more ]
Killer 129
Dewaltoss 77
Pusan 70
Rush 67
Light 62
Mind 60
Snow 59
ToSsGirL 53
Last 28
Aegong 26
Bale 24
Sacsri 16
Terrorterran 15
Sexy 11
sorry 8
ZerO 6
League of Legends
JimRising 281
Counter-Strike
olofmeister1281
edward57
Other Games
shoxiejesuss1162
singsing999
Trikslyr22
ZerO(Twitch)4
Organizations
StarCraft: Brood War
lovetv 6
[ Show 13 non-featured ]
StarCraft 2
• CranKy Ducklings SOOP31
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• Migwel
StarCraft: Brood War
• iopq 2
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• lizZardDota2118
League of Legends
• Jankos1999
Other Games
• WagamamaTV237
Upcoming Events
OSC
12h 14m
Escore
23h 44m
IntoTheTV X SOOP
1d
CranKy Ducklings
1d 23h
Sparkling Tuna Cup
2 days
Shopify Rebellion Sundays
3 days
Spirit vs Mixu
Clem vs TBD
RSL Revival
3 days
Serral vs Rogue
BlizzCon
3 days
IdrA vs MC
Replay Cast
3 days
Afreeca Starleague
3 days
[ Show More ]
WardiTV Weekly
4 days
Afreeca Starleague
4 days
GSL
5 days
PiGosaur Cup
5 days
The PondCast
5 days
Kung Fu Cup
6 days
Replay Cast
6 days
Liquipedia Results

Completed

Proleague 2026-09-08
PiG Sty Festival 8.0
Big Dog Cup 2026 Div 1

Ongoing

KCM Race Survival 2026 Season 3
K-JUNGMAN
ASL Season 22
Super Anchor Qualifying S3
CSL 2026 AUTUMN (S22)
Acropolis #5
Acropolis #5 - TRS
RSL Revival: Season 6
Calamity Invitational
FISSURE Playground #3
BLAST Open Fall 2026
Esports World Cup 2026
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
Stake Ranked Episode 3
XSE Pro League 2026

Upcoming

Escore Tournament S3: King of Kings
Acropolis #5 - GSA
Blizzard Classic Cup 2026
Acropolis #5 - GSB
Acropolis #5 - GSC
SC4ALL II: Brood War
HSC XXX
Stellar Fest 2: Lunar Cup
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
RSL Offline Finals
Blizzard Classic Cup 2026
Stake Ranked Episode 6
BLAST Rivals Fall 2026
IEM Beijing 2026
Stake Ranked Episode 5
PGL Masters Bucharest 2026
1win Private Club #2
Thunderpick World Champ. '26
ESL Pro League Season 24
Stake Ranked Episode 4
1win Private Club #1
Logitech G Play Connect 2026
SL StarSeries Fall 2026
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 © 2026 TLnet. All Rights Reserved.