• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 12:49
CEST 18:49
KST 01:49
  • 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: Voting10[ASL20] Ro4 Preview: Descent11Team TLMC #5: Winners Announced!3[ASL20] Ro8 Preview Pt2: Holding On9Maestros of the Game: Live Finals Preview (RO4)5
Community News
Chinese SC2 server to reopen; live all-star event in Hangzhou7Weekly Cups (Oct 13-19): Clem Goes for Four0BSL Team A vs Koreans - Sat-Sun 16:00 CET6Weekly Cups (Oct 6-12): Four star herO85.0.15 Patch Balance Hotfix (2025-10-8)80
StarCraft 2
General
RotterdaM "Serral is the GOAT, and it's not close" DreamHack Open 2013 revealed The New Patch Killed Mech! Chinese SC2 server to reopen; live all-star event in Hangzhou Team Liquid Map Contest #21 - Presented by Monster Energy
Tourneys
SC2's Safe House 2 - October 18 & 19 INu's Battles #13 - ByuN vs Zoun Tenacious Turtle Tussle Sparkling Tuna Cup - Weekly Open Tournament $1,200 WardiTV October (Oct 21st-31st)
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 496 Endless Infection Mutation # 495 Rest In Peace Mutation # 494 Unstable Environment Mutation # 493 Quick Killers
Brood War
General
Is there anyway to get a private coach? The Lose More Card BW General Discussion BSL Season 21 OGN to release AI-upscaled StarLeague from Feb 24
Tourneys
300$ 3D!Community Brood War Super Cup #4 [ASL20] Semifinal B Azhi's Colosseum - Anonymous Tournament [Megathread] Daily Proleagues
Strategy
[I] TvZ Strategies and Builds [I] TvP Strategies and Build Roaring Currents ASL final Current Meta
Other Games
General Games
Nintendo Switch Thread Stormgate/Frost Giant Megathread Path of Exile Dawn of War IV ZeroSpace Megathread
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
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
Things Aren’t Peaceful in Palestine The Chess Thread US Politics Mega-thread Russo-Ukrainian War Thread Men's Fashion Thread
Fan Clubs
The herO Fan Club!
Media & Entertainment
Series you have seen recently... Anime Discussion Thread [Manga] One Piece Movie Discussion!
Sports
MLB/Baseball 2023 2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion 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 Recent Gifted Posts
Blogs
Certified Crazy
Hildegard
The Heroism of Pepe the Fro…
Peanutsc
Rocket League: Traits, Abili…
TrAiDoS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1222 users

The Big Programming Thread - Page 42

Forum Index > General Forum
Post a Reply
Prev 1 40 41 42 43 44 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.
AntiLegend
Profile Joined September 2010
Germany247 Posts
March 21 2011 13:26 GMT
#821
On March 21 2011 22:12 shinarit wrote:
My question is, why this expression is not independent from implementation?

int x = 10;
x = x++;

This will either give you 10 or 11. Which i dont get why, it should be 10 clearly every time, as = has lower precedence than ++ (any form of it). So you increase x, than assign the old value to it, no way it can be 11. And yet, on some compilers it will be 11. Whats the reason behind this? Btw i tried it with C++ compilers.


explained here:

http://c-faq.com/expr/evalorder2.html
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
March 21 2011 13:28 GMT
#822
On March 21 2011 22:12 shinarit wrote:
My question is, why this expression is not independent from implementation?

int x = 10;
x = x++;

This will either give you 10 or 11. Which i dont get why, it should be 10 clearly every time, as = has lower precedence than ++ (any form of it). So you increase x, than assign the old value to it, no way it can be 11. And yet, on some compilers it will be 11. Whats the reason behind this? Btw i tried it with C++ compilers.


It is implementation dependant because the order of execution is undefined until it hits a sequence point (semicolon). This means it's free to the implementation to first increment, then assign the copied value or assign the original value, then increment.

Generally speaking, a value should only be modified once between any sequence points.

Didn't read it, but i think it should cover the concept:
http://en.wikipedia.org/wiki/Sequence_point
Fateless
Profile Joined January 2011
United States99 Posts
March 21 2011 13:43 GMT
#823
On March 21 2011 21:42 Manit0u wrote:
Hey guys, I'm in need for some training to become at least amateurish in Java for the purposes of web development and Python in general (to create/run scripts for statistical analysis).

Could you point me to some good online resources?


Java for the purpose of web development?

I think you need to be a lot more specific in what you're asking. More than likely Java is not what you need to be using.
Kambing
Profile Joined May 2010
United States1176 Posts
Last Edited: 2011-03-21 13:58:48
March 21 2011 13:46 GMT
#824
On March 21 2011 22:16 Clearout wrote:
Show nested quote +
On March 21 2011 22:12 shinarit wrote:
My question is, why this expression is not independent from implementation?

int x = 10;
x = x++;

This will either give you 10 or 11. Which i dont get why, it should be 10 clearly every time, as = has lower precedence than ++ (any form of it). So you increase x, than assign the old value to it, no way it can be 11. And yet, on some compilers it will be 11. Whats the reason behind this? Btw i tried it with C++ compilers.
In the way you put it in the example you are adding 1 after you set x = 10, so then it should always be 11. Or am I missing something?


Yes. Which C++ compilers gave 11 instead of 10? The standard justifies all the reasons you specified:

Clause 5.2.6.1 - Increment and decrement
The value computation of the ++ expression is sequenced before the modification of the operand object.


Clause 5.17.1 - Assignment and compound assignment operators
The assignment operator (=) and the compound assignment operators all group right-to-left. ...In all cases, the assignment is sequenced after the value computation of the right and left operands, and before the value computation of the assignment expression.


The precedence argument is also correct although there is not a specific clause to point to as to why it is true as precedence in the standard is specified by the context-free grammar for the language.

EDIT: I'm wrong, see below!
tofucake
Profile Blog Joined October 2009
Hyrule19144 Posts
March 21 2011 13:48 GMT
#825
On March 21 2011 22:43 Fateless wrote:
Show nested quote +
On March 21 2011 21:42 Manit0u wrote:
Hey guys, I'm in need for some training to become at least amateurish in Java for the purposes of web development and Python in general (to create/run scripts for statistical analysis).

Could you point me to some good online resources?


Java for the purpose of web development?

I think you need to be a lot more specific in what you're asking. More than likely Java is not what you need to be using.

I'm gonna side with Fateless here. Java is not really a web language. You can make applets with it, but it's not really suited to web use. PHP, Perl, and (blegh) ASP are much better choices if you want to do web development.
Liquipediaasante sana squash banana
rackdude
Profile Blog Joined January 2010
United States882 Posts
March 21 2011 13:56 GMT
#826
On March 21 2011 22:48 tofucake wrote:
Show nested quote +
On March 21 2011 22:43 Fateless wrote:
On March 21 2011 21:42 Manit0u wrote:
Hey guys, I'm in need for some training to become at least amateurish in Java for the purposes of web development and Python in general (to create/run scripts for statistical analysis).

Could you point me to some good online resources?


Java for the purpose of web development?

I think you need to be a lot more specific in what you're asking. More than likely Java is not what you need to be using.

I'm gonna side with Fateless here. Java is not really a web language. You can make applets with it, but it's not really suited to web use. PHP, Perl, and (blegh) ASP are much better choices if you want to do web development.


Or you can use Python in the Django framework. That is growing rapidly in popularity and is fairly easy to use, plus you have the full Python scripting language at your disposal.
Sweet.
Kambing
Profile Joined May 2010
United States1176 Posts
Last Edited: 2011-03-21 15:35:37
March 21 2011 13:57 GMT
#827
On March 21 2011 22:28 Morfildur wrote:
Show nested quote +
On March 21 2011 22:12 shinarit wrote:
My question is, why this expression is not independent from implementation?

int x = 10;
x = x++;

This will either give you 10 or 11. Which i dont get why, it should be 10 clearly every time, as = has lower precedence than ++ (any form of it). So you increase x, than assign the old value to it, no way it can be 11. And yet, on some compilers it will be 11. Whats the reason behind this? Btw i tried it with C++ compilers.


It is implementation dependant because the order of execution is undefined until it hits a sequence point (semicolon). This means it's free to the implementation to first increment, then assign the copied value or assign the original value, then increment.

Generally speaking, a value should only be modified once between any sequence points.

Didn't read it, but i think it should cover the concept:
http://en.wikipedia.org/wiki/Sequence_point


Ah nevermind, you and antilegend are correct. I misinterpreted the standard (as you would imagine is easy to do >_<). The two clauses I quoted above would allow for the following sequences of operations of "x = x++":

1) 10 is returned from x++ (A)
2) 10 is assigned to x (B)
3) x is incremented (C)

-and-

1) 10 is returned from x++ (A)
2) x is incremented (C)
3) 10 is assigned to x (B)

In particular, they require that (A) must occur before (B) and that (A) must occur before (C) but the ordering between (B) and (C) is undefined.
Kambing
Profile Joined May 2010
United States1176 Posts
Last Edited: 2011-03-21 13:57:48
March 21 2011 13:57 GMT
#828
EDIT: double post, please delete. =(
Manit0u
Profile Blog Joined August 2004
Poland17388 Posts
March 21 2011 15:11 GMT
#829
On March 21 2011 22:56 rackdude wrote:
Show nested quote +
On March 21 2011 22:48 tofucake wrote:
On March 21 2011 22:43 Fateless wrote:
On March 21 2011 21:42 Manit0u wrote:
Hey guys, I'm in need for some training to become at least amateurish in Java for the purposes of web development and Python in general (to create/run scripts for statistical analysis).

Could you point me to some good online resources?


Java for the purpose of web development?

I think you need to be a lot more specific in what you're asking. More than likely Java is not what you need to be using.

I'm gonna side with Fateless here. Java is not really a web language. You can make applets with it, but it's not really suited to web use. PHP, Perl, and (blegh) ASP are much better choices if you want to do web development.


Or you can use Python in the Django framework. That is growing rapidly in popularity and is fairly easy to use, plus you have the full Python scripting language at your disposal.


Thanks, I'll take a look into this Django stuff.
And for Java, I just wanted to know how much of actual Java/JS I'd need to know to do basic things using stuff like Google Web Toolkit (if at all) etc.
But I think I've already found a good place to learn, with courses and tests at Java Blackbelt (and I think this link should be included in the OP).
Time is precious. Waste it wisely.
Clearout
Profile Blog Joined April 2010
Norway1060 Posts
Last Edited: 2011-03-21 15:38:10
March 21 2011 15:13 GMT
#830
On March 21 2011 22:23 Morfildur wrote:
Show nested quote +
On March 21 2011 22:07 Clearout wrote:
Even my professor couldn't see why it wont work.

It doesn't reach the breakpoint in the keyPressed() method, nor will it it do a println() if I put it in there. So the keyPressed() method doesnt react at all.

Morfildur:
As it is now it is supposed to be added to the panel since I have nothing infront of the addKeyListener() method called in the constructor, even if I put this.addKeyListener() to make it explicitly add to the panel it doesn't make a difference when running it. I have also tested and made sure that the panel is focusable so I'm sure it has the keyboard focus. These things make me fairly sure that the problem has to lie somewhere else. But if you have any way of checking what you're saying please tell

Thanks for responding, TL is my last hope


Try stackoverflow.com for "last hope".

I don't remember the GUI stuff for java, it's been a few years, but wasn't there a JForm or JFrame or something to which you add the panel?

Try to add the handler to any other control you use, the form, the panel, images, buttons, anything. Then check where the keypress gets invoked.

After googling a bit:
try this.requestFocus() in the constructor after the setFocussable(true)

Still not working Went to stackoverflow.com too and tried a lot of things suggested there regarding the focus, which seems to be the problem, yet nothing helped. Thanks for the effort and introducing me to that site!

Edit: tiny breakthrough! The traces I added react when I add the keyListener to the frame, so it seems the frame may be the culprit!

Edit: after the breakthrough one of the folks at the stackoverflow forum figured it out, it's working now! SO HAPPY I'M JUMPING IN MY CHAIR
really?
Hoon
Profile Joined December 2010
Brazil891 Posts
March 21 2011 15:32 GMT
#831
Hey folks!
I'm an Electronical Engineering undergrad. We have to develop a game in C++ as our Programming project. Our teacher suggested using Dev C++ as the compiler and Allegro as the graphical ibrary. I'm wondering if there are any better library that I can use in Visual Studio (would love something easy to use and that doesn't conflict with Threads like Allegro does).
Thanks in advance!
SEn Fanclub: http://www.teamliquid.net/forum/viewmessage.php?topic_id=170834
RainWhisper
Profile Joined May 2009
United Arab Emirates333 Posts
March 21 2011 15:32 GMT
#832
Heres a not so strict programming question but since im an IT Major i think it falls in the same category somewhat. Maybe not? Lets see.

I took a long course that was all about ERP and SAP systems. We discussed its benefits, why and how they're good. We even studied some case studies. Now what does SAP experience mean. When people ask for SAP experience, what do they expect, someone who has an idea of that is or someone who has definitely worked with them and knows exactly what is going on. Anyone got a clue? Why im asking here is cause some firms are asking for SAP programming. So maybe someone with that knowledge can shed some light.
Hi can i get one McGracken please?
japro
Profile Joined August 2010
172 Posts
March 21 2011 15:45 GMT
#833
On March 22 2011 00:32 Hoon wrote:
Hey folks!
I'm an Electronical Engineering undergrad. We have to develop a game in C++ as our Programming project. Our teacher suggested using Dev C++ as the compiler and Allegro as the graphical ibrary. I'm wondering if there are any better library that I can use in Visual Studio (would love something easy to use and that doesn't conflict with Threads like Allegro does).
Thanks in advance!


I'm a big fan of SFML. Does pretty much everything you need in a very straight forward way (no setting up of 13 contexts just to load a picture etc.).
tofucake
Profile Blog Joined October 2009
Hyrule19144 Posts
March 21 2011 15:48 GMT
#834
On March 22 2011 00:11 Manit0u wrote:
Show nested quote +
On March 21 2011 22:56 rackdude wrote:
On March 21 2011 22:48 tofucake wrote:
On March 21 2011 22:43 Fateless wrote:
On March 21 2011 21:42 Manit0u wrote:
Hey guys, I'm in need for some training to become at least amateurish in Java for the purposes of web development and Python in general (to create/run scripts for statistical analysis).

Could you point me to some good online resources?


Java for the purpose of web development?

I think you need to be a lot more specific in what you're asking. More than likely Java is not what you need to be using.

I'm gonna side with Fateless here. Java is not really a web language. You can make applets with it, but it's not really suited to web use. PHP, Perl, and (blegh) ASP are much better choices if you want to do web development.


Or you can use Python in the Django framework. That is growing rapidly in popularity and is fairly easy to use, plus you have the full Python scripting language at your disposal.


Thanks, I'll take a look into this Django stuff.
And for Java, I just wanted to know how much of actual Java/JS I'd need to know to do basic things using stuff like Google Web Toolkit (if at all) etc.
But I think I've already found a good place to learn, with courses and tests at Java Blackbelt (and I think this link should be included in the OP).

Now you've gone and mixed up JS and Java. While JS has Java in the name, it's not Java. JS is used for some of the flashier stuff, but if all you want is to do basic web design and statistical analysis, you do not want to use JS. PHP, Python, or Perl would be the best for that sort of thing. I prefer PHP myself.

On March 22 2011 00:32 Hoon wrote:
Hey folks!
I'm an Electronical Engineering undergrad. We have to develop a game in C++ as our Programming project. Our teacher suggested using Dev C++ as the compiler and Allegro as the graphical ibrary. I'm wondering if there are any better library that I can use in Visual Studio (would love something easy to use and that doesn't conflict with Threads like Allegro does).
Thanks in advance!

Dev-C++ is awful. Windows graphical programming is a bitch and a half in C++. If you're using Visual Studio then you are using the Microsoft compiler and not Dev-C++ anyway, which is a step in the right direction. I haven't used Allegro so I can't comment on it. MFC is the standard for Windows, but it's awful.
Liquipediaasante sana squash banana
shinarit
Profile Joined May 2010
Hungary900 Posts
March 21 2011 15:56 GMT
#835
On March 21 2011 22:26 AntiLegend wrote:
Show nested quote +
On March 21 2011 22:12 shinarit wrote:
My question is, why this expression is not independent from implementation?

int x = 10;
x = x++;

This will either give you 10 or 11. Which i dont get why, it should be 10 clearly every time, as = has lower precedence than ++ (any form of it). So you increase x, than assign the old value to it, no way it can be 11. And yet, on some compilers it will be 11. Whats the reason behind this? Btw i tried it with C++ compilers.


explained here:

http://c-faq.com/expr/evalorder2.html



Thanks for the link, the first really good description of the stuff i read. Its just misleading if you try to imagine postincrement on int as a function (there you cant actually increment AFTER yielding the old value), as you would do with overloaded versions in classes. Thanks again, now it clear
T for BoxeR, Z for IdrA, P because i have no self-respect
Manit0u
Profile Blog Joined August 2004
Poland17388 Posts
Last Edited: 2011-03-21 16:18:10
March 21 2011 16:12 GMT
#836
On March 22 2011 00:32 Hoon wrote:
Hey folks!
I'm an Electronical Engineering undergrad. We have to develop a game in C++ as our Programming project. Our teacher suggested using Dev C++ as the compiler and Allegro as the graphical ibrary. I'm wondering if there are any better library that I can use in Visual Studio (would love something easy to use and that doesn't conflict with Threads like Allegro does).
Thanks in advance!


Trick everyone and create a MUD. Or just take a MUD code and add graphical interface to it (there are quite a lot of mudlibs available for free download).
I mean, you only need to focus on your gamedriver then, since all the libraries, which include
access protection, parsing, admin/user commands and actions, in-game communication, moving about files and objects, compiling and testing are all there. And on top of that, you get your share of standard objects and basic combat/trading systems and what not.
That's quite a bundle to have for starters and expand on.

That is, of course, if you'd like to create a sort of an RPG.

Here are some samples for the bold:
http://lpmuds.net/downloads.html
Time is precious. Waste it wisely.
AntiLegend
Profile Joined September 2010
Germany247 Posts
March 21 2011 18:43 GMT
#837
On March 22 2011 00:32 Hoon wrote:
Hey folks!
I'm an Electronical Engineering undergrad. We have to develop a game in C++ as our Programming project. Our teacher suggested using Dev C++ as the compiler and Allegro as the graphical ibrary. I'm wondering if there are any better library that I can use in Visual Studio (would love something easy to use and that doesn't conflict with Threads like Allegro does).
Thanks in advance!


i can't really make a comparison to other libraries, but in university we programmed a game in C++ with SDL http://www.libsdl.org , and as far as i can remember it was quite good and easy to use.
EscPlan9
Profile Blog Joined December 2006
United States2777 Posts
March 21 2011 20:46 GMT
#838
On March 22 2011 00:48 tofucake wrote:
Dev-C++ is awful. Windows graphical programming is a bitch and a half in C++. If you're using Visual Studio then you are using the Microsoft compiler and not Dev-C++ anyway, which is a step in the right direction. I haven't used Allegro so I can't comment on it. MFC is the standard for Windows, but it's awful.


I've primarily used Dev C++ through college since its what the professor recommended and was installed on the lab computers. I'm curious what makes it awful? I never had any gripes with it and it was simple to use. Though I must say I haven't done any projects on a large scale with C++ yet.
Undefeated TL Tecmo Super Bowl League Champion
Manit0u
Profile Blog Joined August 2004
Poland17388 Posts
March 22 2011 00:05 GMT
#839
Hasn't Dev-C++ been obsolete since like 2005 (at least that's the last time it has been supported/released) and replaced with wxDev-C++ later on?
Time is precious. Waste it wisely.
trew
Profile Joined May 2010
Sweden93 Posts
March 22 2011 00:19 GMT
#840
On March 22 2011 03:43 AntiLegend wrote:
Show nested quote +
On March 22 2011 00:32 Hoon wrote:
Hey folks!
I'm an Electronical Engineering undergrad. We have to develop a game in C++ as our Programming project. Our teacher suggested using Dev C++ as the compiler and Allegro as the graphical ibrary. I'm wondering if there are any better library that I can use in Visual Studio (would love something easy to use and that doesn't conflict with Threads like Allegro does).
Thanks in advance!


i can't really make a comparison to other libraries, but in university we programmed a game in C++ with SDL http://www.libsdl.org , and as far as i can remember it was quite good and easy to use.


I agree on this. Lazyfoo is providing some excellent tutorials on how to get started with SDL.
Prev 1 40 41 42 43 44 1032 Next
Please log in or register to reply.
Live Events Refresh
Wardi Open
14:30
October Qualifier #2
WardiTV1447
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
BRAT_OK 66
UpATreeSC 64
MindelVK 12
StarCraft: Brood War
Britney 35489
Calm 4012
Rain 2088
Jaedong 1593
Bisu 854
Horang2 833
EffOrt 795
Mini 739
Soma 567
Larva 551
[ Show more ]
Light 457
firebathero 431
Shuttle 390
ZerO 273
Snow 246
actioN 207
Soulkey 133
Pusan 127
Rush 107
Free 86
Hyun 74
sSak 72
ggaemo 64
Shine 48
Killer 39
sorry 25
Shinee 21
Movie 19
Dewaltoss 18
scan(afreeca) 13
Bale 13
Sacsri 12
Aegong 12
Terrorterran 9
Hm[arnc] 4
Noble 3
Mong 1
Dota 2
Gorgc6359
qojqva3592
Dendi1430
Fuzer 259
canceldota90
Counter-Strike
fl0m792
byalli355
FunKaTv 52
Other Games
singsing2299
FrodaN765
ceh9600
Lowko393
Sick154
Hui .144
Skadoodle141
ArmadaUGS121
C9.Mang087
KnowMe78
QueenE78
Mew2King52
Trikslyr47
ZerO(Twitch)21
B2W.Neo8
Organizations
Counter-Strike
PGL402
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• Reevou 0
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• Noizen34
League of Legends
• Jankos2969
• TFBlade898
Other Games
• Shiphtur133
Upcoming Events
PiGosaur Monday
7h 11m
Replay Cast
17h 11m
OSC
23h 11m
Tenacious Turtle Tussle
1d 6h
The PondCast
1d 17h
OSC
1d 19h
WardiTV Invitational
2 days
Online Event
2 days
RSL Revival
3 days
RSL Revival
3 days
[ Show More ]
WardiTV Invitational
3 days
Afreeca Starleague
4 days
Snow vs Soma
Sparkling Tuna Cup
4 days
WardiTV Invitational
4 days
CrankTV Team League
4 days
RSL Revival
5 days
Wardi Open
5 days
CrankTV Team League
5 days
Replay Cast
6 days
WardiTV Invitational
6 days
CrankTV Team League
6 days
Liquipedia Results

Completed

Acropolis #4 - TS2
WardiTV TLMC #15
HCC Europe

Ongoing

BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
C-Race Season 1
IPSL Winter 2025-26
EC S1
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
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual

Upcoming

SC4ALL: Brood War
BSL Season 21
BSL 21 Team A
BSL 21 Non-Korean Championship
RSL Offline Finals
RSL Revival: Season 3
Stellar Fest
SC4ALL: StarCraft II
CranK Gathers Season 2: SC II Pro Teams
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 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.