• 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
RSL Season 3 - RO16 Groups C & D Preview0RSL Season 3 - RO16 Groups A & B Preview2TL.net Map Contest #21: Winners12Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10[ASL20] Finals Preview: Arrival13
Community News
[TLMC] Fall/Winter 2025 Ladder Map Rotation12Weekly Cups (Nov 3-9): Clem Conquers in Canada4SC: Evo Complete - Ranked Ladder OPEN ALPHA8StarCraft, SC2, HotS, WC3, Returning to Blizzcon!45$5,000+ WardiTV 2025 Championship7
StarCraft 2
General
Mech is the composition that needs teleportation t RotterdaM "Serral is the GOAT, and it's not close" RSL Season 3 - RO16 Groups C & D Preview [TLMC] Fall/Winter 2025 Ladder Map Rotation TL.net Map Contest #21: Winners
Tourneys
RSL Revival: Season 3 Sparkling Tuna Cup - Weekly Open Tournament Constellation Cup - Main Event - Stellar Fest Tenacious Turtle Tussle Master Swan Open (Global Bronze-Master 2)
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 What happened to TvZ on Retro? SnOw's ASL S20 Finals Review BW General Discussion Brood War web app to calculate unit interactions
Tourneys
[Megathread] Daily Proleagues Small VOD Thread 2.0 [BSL21] RO32 Group D - Sunday 21:00 CET [BSL21] RO32 Group C - Saturday 21:00 CET
Strategy
PvZ map balance Current Meta Simple Questions, Simple Answers How to stay on top of macro?
Other Games
General Games
Path of Exile Stormgate/Frost Giant Megathread Nintendo Switch Thread Clair Obscur - Expedition 33 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
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 Russo-Ukrainian War Thread US Politics Mega-thread Artificial Intelligence Thread Canadian Politics Mega-thread
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
Movie Discussion! [Manga] One Piece Anime Discussion Thread 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
Dyadica Gospel – a Pulp No…
Hildegard
Coffee x Performance in Espo…
TrAiDoS
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Reality "theory" prov…
perfectspheres
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2030 users

The Big Programming Thread - Page 81

Forum Index > General Forum
Post a Reply
Prev 1 79 80 81 82 83 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.
simmion
Profile Joined June 2011
United States34 Posts
September 25 2011 05:17 GMT
#1601
So, I've been checking this thread on and off lately, and provided a small amount of advice so far and i feel like there is something that any aspiring java developer on here can benefit from knowing...

The Java API is your friend! it is so easy to get used to using whatever your professor hands you to solve assignments. or using what is in the book you have for your class, but once you get a job working at a company with thousands of classes written, navigating the API it is going to be an invaluable skill to have.

The entire (core)java API is up on the internet for easy viewing, simply google "Java <Object>" and many times it is the first result, a quick scan of the available methods will usually result in a quick solution to any problem that you have. and at the same time helping you to get used to finding answers this way..

(Hopefully)Any company you work for will have something that appears very similar to the core java API, (all generated using javadoc! /** )

Get practice finding answers in the API and you will be a step-ahead of other entry-level programmers, i promise!
"Ricky Bobby" -stephano
ArcticVanguard
Profile Blog Joined August 2010
United States450 Posts
September 26 2011 14:43 GMT
#1602
My question has to do with SDL in C++, when used to display a 2D game.

Has anyone had any recent luck following this tutorial? I'm trying to use SDL to make a roguelike, but having attempted to compile the exact code this tutorial used, I got compilation errors. Are there any similar SDL tutorials with a focus on game design? I'm doing my own research, but most of the tutorials I find are rather difficult to understand or they aren't relevant to what I'm attempting to do. My goal with the program is to have a window that looks similar to a console (already have the tileset I'm going to use) that displays 8x12 sprites taken from a sheet. I chose that because it seemed like it might be easier than using an actual console and it would make changing the game graphically easier.
"When I became a man I put away childish things, including the fear of childishness and the desire to be very grown up." ~C.S. Lewis
ToxNub
Profile Joined June 2010
Canada805 Posts
September 26 2011 21:12 GMT
#1603
On September 25 2011 14:17 simmion wrote:
So, I've been checking this thread on and off lately, and provided a small amount of advice so far and i feel like there is something that any aspiring java developer on here can benefit from knowing...

The Java API is your friend! it is so easy to get used to using whatever your professor hands you to solve assignments. or using what is in the book you have for your class, but once you get a job working at a company with thousands of classes written, navigating the API it is going to be an invaluable skill to have.

The entire (core)java API is up on the internet for easy viewing, simply google "Java <Object>" and many times it is the first result, a quick scan of the available methods will usually result in a quick solution to any problem that you have. and at the same time helping you to get used to finding answers this way..

(Hopefully)Any company you work for will have something that appears very similar to the core java API, (all generated using javadoc! /** )

Get practice finding answers in the API and you will be a step-ahead of other entry-level programmers, i promise!


I don't know if I agree with this. Some of the most fundamental programming skills come from being forced to implement the trivial, base level stuff yourself. It's easy to say you understand quicksort and calling sort functions, its a whole different matter to write quicksort.
allluckysevens7777
Profile Joined February 2009
United States53 Posts
September 27 2011 04:01 GMT
#1604
I think the above statement is orthogonal to what it's "disagreeing" with. Both are important for different reasons.
gullberg
Profile Blog Joined February 2011
Sweden1301 Posts
Last Edited: 2011-09-28 20:03:20
September 28 2011 20:02 GMT
#1605
Aaaah man.... Everything was going so well in my programming course until we got to linked lists, abstract queues and all that. Classes/objects are fucked up. FML
CatalysT.
Profile Joined January 2011
59 Posts
Last Edited: 2011-09-28 20:59:11
September 28 2011 20:49 GMT
#1606
Flash
DrainX
Profile Blog Joined December 2006
Sweden3187 Posts
Last Edited: 2011-09-28 20:57:48
September 28 2011 20:55 GMT
#1607
On September 27 2011 13:01 allluckysevens7777 wrote:
I think the above statement is orthogonal to what it's "disagreeing" with. Both are important for different reasons.

It is much harder to learn the necessary maths, the theory behind algorithms and data structures, and good coding practice, than it is to memorizing an API. Once you have used a couple of languages and APIs, switching between them gets even easier. During your education you should try to get an understanding that is as general, broad and deep as possible. Specialize near the end but don't get too bogged down in a single language or API.
simmion
Profile Joined June 2011
United States34 Posts
September 30 2011 12:43 GMT
#1608
On September 29 2011 05:55 DrainX wrote:
Show nested quote +
On September 27 2011 13:01 allluckysevens7777 wrote:
I think the above statement is orthogonal to what it's "disagreeing" with. Both are important for different reasons.

It is much harder to learn the necessary maths, the theory behind algorithms and data structures, and good coding practice, than it is to memorizing an API. Once you have used a couple of languages and APIs, switching between them gets even easier. During your education you should try to get an understanding that is as general, broad and deep as possible. Specialize near the end but don't get too bogged down in a single language or API.


Of course, your point is valid. I didn't mean to say 'memorize' the api. I was just suggesting getting used to using it. patterns, algorithms, design and data structures are all very important skills to master. A lot of the questions i see here, and back when i was in college, are usually solvable with a quick look-over of the api though, and I merely wanted to put that advice out there for some of the new and future programmers out there.
"Ricky Bobby" -stephano
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
Last Edited: 2011-09-30 13:14:46
September 30 2011 13:09 GMT
#1609
On September 30 2011 21:43 simmion wrote:
Show nested quote +
On September 29 2011 05:55 DrainX wrote:
On September 27 2011 13:01 allluckysevens7777 wrote:
I think the above statement is orthogonal to what it's "disagreeing" with. Both are important for different reasons.

It is much harder to learn the necessary maths, the theory behind algorithms and data structures, and good coding practice, than it is to memorizing an API. Once you have used a couple of languages and APIs, switching between them gets even easier. During your education you should try to get an understanding that is as general, broad and deep as possible. Specialize near the end but don't get too bogged down in a single language or API.


Of course, your point is valid. I didn't mean to say 'memorize' the api. I was just suggesting getting used to using it. patterns, algorithms, design and data structures are all very important skills to master. A lot of the questions i see here, and back when i was in college, are usually solvable with a quick look-over of the api though, and I merely wanted to put that advice out there for some of the new and future programmers out there.


I agree with both of you.

It is important to - whenever able - first look for a solution in the API before trying to do something yourself. Most modern APIs/libraries/frameworks cover every remotely possible problem faster than you could write it yourself.

BUT:

There are situations when you can't look into the API or when the API doesn't have the neccessary functionality.

As an example for the latter:
On my road to become a programmer (well, at least to finally have it on paper, i was one since 20 years ago), i switched schools mid-traineeship and the old school used PHP, the new school Java.

I had never before used Java, my new classmates had a year full of Java education. The second day there was a test on Java. No internet and i didn't do a lot of Java stuff in the meantime (i.e. none at all).

I remembered most stuff, like creating projects in Java and running them from the 2 hours programming lesson the day before, so i had the basics down but i had no API documentation and no experience with this language.

Then there was a simple problem:
I had a string and i wanted it to be a number. I knew there is a function for it in the API, i just couldn't find it. Not solving that problem would have cost me the test as it was part of a bigger task.
Looking through all possibly related classes could have taken me half an hour, more time than i had.
So, to solve it, i pulled out my C knowledge and wrote string->int and int->string functions myself and in the end had the best result of all who did the test.

So in summary:
You should know how to do some things yourself. You don't have to know high-performance sort algorithms and stuff, but you need to know:
- Simple Sort algorithms (i.e. Bubblesort or similar, it's good enough for 90% of the cases)
- Writing simple linked lists
- Generating Trees (not the green, flowery-like ones)
- Type conversions (for example above mentioned Int<->String)
- Big number math (> 32/64 bit without using libraries for it)

You will have those problems at least once in your life as programmer when there is no library for it at hand, so you should be prepared


On September 29 2011 05:02 gullberg wrote:
Aaaah man.... Everything was going so well in my programming course until we got to linked lists, abstract queues and all that. Classes/objects are fucked up. FML


Until 10 years ago i said quite often "Objects are unneccessary, procedual code is where it's at."
Until 1 year ago i said quite often "Object oriented code is the perfect solution for all problems, functional programming is just something for math addicts."
Now i say: "Functional programming is so efficient when combined with object oriented programming, it makes everything so much easier"

Once the switch in your brain flips over and allows you to fully understand classes/objects, you will understand why they work that way and that it actually makes a lot of sense.

+ Show Spoiler +
I wonder what i might have said in another 10 years

Kambing
Profile Joined May 2010
United States1176 Posts
Last Edited: 2011-10-02 03:30:47
October 02 2011 03:30 GMT
#1610
Probably of interest to folk here: Stanford's experimental machine learning class just went live for sign-ups. Good opportunity to get your ass kicked in ML from the comfort of your own home.

http://www.ml-class.org/

Millitron
Profile Blog Joined August 2010
United States2611 Posts
October 02 2011 03:42 GMT
#1611
On September 29 2011 05:02 gullberg wrote:
Aaaah man.... Everything was going so well in my programming course until we got to linked lists, abstract queues and all that. Classes/objects are fucked up. FML

Think of a class like the blueprint for a house's construction, with the object being the finished house.

As for linked lists, think of them like your browser's forward and back buttons. You can only go forward or back one page at a time. Just like in the linked lists, you can only go forward or back one node at a time.

Never heard of abstract queues, can't help ya there.
Who called in the fleet?
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
October 02 2011 10:33 GMT
#1612
On October 02 2011 12:42 Millitron wrote:
Show nested quote +
On September 29 2011 05:02 gullberg wrote:
Aaaah man.... Everything was going so well in my programming course until we got to linked lists, abstract queues and all that. Classes/objects are fucked up. FML

Think of a class like the blueprint for a house's construction, with the object being the finished house.

As for linked lists, think of them like your browser's forward and back buttons. You can only go forward or back one page at a time. Just like in the linked lists, you can only go forward or back one node at a time.

Never heard of abstract queues, can't help ya there.


IIRC Abstract Queues are just queues that work for any type, like:

class Queue<T>
{
public void Enqueue(T item) {...}
public T Dequeue() {...}
}

So just a fancy name for something that is actually quite simple, though from my experience, 90% of what programming professors seem to do is finding fancy names for simple things people do since the dawn of programming, just to scare and confuse students.
heishe
Profile Blog Joined June 2009
Germany2284 Posts
October 02 2011 10:58 GMT
#1613
On September 26 2011 23:43 ArcticVanguard wrote:
My question has to do with SDL in C++, when used to display a 2D game.

Has anyone had any recent luck following this tutorial? I'm trying to use SDL to make a roguelike, but having attempted to compile the exact code this tutorial used, I got compilation errors. Are there any similar SDL tutorials with a focus on game design? I'm doing my own research, but most of the tutorials I find are rather difficult to understand or they aren't relevant to what I'm attempting to do. My goal with the program is to have a window that looks similar to a console (already have the tileset I'm going to use) that displays 8x12 sprites taken from a sheet. I chose that because it seemed like it might be easier than using an actual console and it would make changing the game graphically easier.


What compilation errors do you get exactly? Have you correctly linked all the libraries that you need?

By the way, if you're using C++, take a look at http://sfml-dev.org/. It's a lot faster than SDL and has a much better (OOP) design, too.
If you value your soul, never look into the eye of a horse. Your soul will forever be lost in the void of the horse.
KaiserJohan
Profile Joined May 2010
Sweden1808 Posts
October 02 2011 11:07 GMT
#1614
On October 02 2011 19:33 Morfildur wrote:
Show nested quote +
On October 02 2011 12:42 Millitron wrote:
On September 29 2011 05:02 gullberg wrote:
Aaaah man.... Everything was going so well in my programming course until we got to linked lists, abstract queues and all that. Classes/objects are fucked up. FML

Think of a class like the blueprint for a house's construction, with the object being the finished house.

As for linked lists, think of them like your browser's forward and back buttons. You can only go forward or back one page at a time. Just like in the linked lists, you can only go forward or back one node at a time.

Never heard of abstract queues, can't help ya there.


IIRC Abstract Queues are just queues that work for any type, like:

class Queue<T>
{
public void Enqueue(T item) {...}
public T Dequeue() {...}
}

So just a fancy name for something that is actually quite simple, though from my experience, 90% of what programming professors seem to do is finding fancy names for simple things people do since the dawn of programming, just to scare and confuse students.


If so, abstract queues is a really dumb name, it would get you thinking about abstract classes. General queues or whatever sounds more proper, but as you say, professors loves dem fancy names' :p
England will fight to the last American
heishe
Profile Blog Joined June 2009
Germany2284 Posts
October 02 2011 11:56 GMT
#1615
By the way, academic programming courses are usually pretty bad. The problem is that programming doesn't ever have general cases of problems which can be solved with general methods, like academics tries to achieve. This works with physics and mathematics, and with many fields of computer science, but not with programming. And that's where usually the problem lies.

So all these programming courses usually teach you the same thing that you can pick up in 3 or 4 weeks using a good online tutorial plus a little bit of practice.
If you value your soul, never look into the eye of a horse. Your soul will forever be lost in the void of the horse.
Chaosvuistje
Profile Joined April 2010
Netherlands2581 Posts
October 02 2011 12:57 GMT
#1616
On September 18 2011 01:21 Shootist wrote:
Out of curiosity, what domain are most of the programmers/developers here in? Web, mobile, enterprise systems, etc?

I run a little web agency where I also do the web development work (HTML5/PHP/MySQL).


I'm in the web bussiness too. Doing javascript, HTML5/CSS3 , PHP and MySQL obviously. But recently I have been getting into developping for Android ( got myself an introductary book for Android apps, mostly about the Java language ) and have been working with java for a short amount of time.

ArcticVanguard
Profile Blog Joined August 2010
United States450 Posts
October 02 2011 13:28 GMT
#1617
On October 02 2011 19:58 heishe wrote:
Show nested quote +
On September 26 2011 23:43 ArcticVanguard wrote:
My question has to do with SDL in C++, when used to display a 2D game.

Has anyone had any recent luck following this tutorial? I'm trying to use SDL to make a roguelike, but having attempted to compile the exact code this tutorial used, I got compilation errors. Are there any similar SDL tutorials with a focus on game design? I'm doing my own research, but most of the tutorials I find are rather difficult to understand or they aren't relevant to what I'm attempting to do. My goal with the program is to have a window that looks similar to a console (already have the tileset I'm going to use) that displays 8x12 sprites taken from a sheet. I chose that because it seemed like it might be easier than using an actual console and it would make changing the game graphically easier.


What compilation errors do you get exactly? Have you correctly linked all the libraries that you need?

By the way, if you're using C++, take a look at http://sfml-dev.org/. It's a lot faster than SDL and has a much better (OOP) design, too.

Yeah I found the problem and fixed it, I think it was a library linking error. Thanks for that resource, I'll take a look at it. The problem might be switching over the code I've already done, but the license on the closed source version makes it very appealing because it would make it easier for me to make a decision later on what I want to do with my project. Thanks!
"When I became a man I put away childish things, including the fear of childishness and the desire to be very grown up." ~C.S. Lewis
HowitZer
Profile Joined February 2003
United States1610 Posts
October 02 2011 17:36 GMT
#1618
On October 02 2011 20:56 heishe wrote:
By the way, academic programming courses are usually pretty bad. The problem is that programming doesn't ever have general cases of problems which can be solved with general methods, ...


I'm content with the programming classes I took in college insofar as they prepared me for the real programming based job I have now. I think I've applied 75% of what I did in my programming classes to real world problems. It was never a problem in college to find a generic problem to apply some programming method to.

Human teleportation, molecular decimation, breakdown and reformation is inherently purging. It makes a man acute.
EvanED
Profile Joined October 2009
United States111 Posts
October 02 2011 19:43 GMT
#1619
On October 02 2011 20:07 KaiserJohan wrote:
Show nested quote +
On October 02 2011 19:33 Morfildur wrote:
On October 02 2011 12:42 Millitron wrote:
On September 29 2011 05:02 gullberg wrote:
Aaaah man.... Everything was going so well in my programming course until we got to linked lists, abstract queues and all that. Classes/objects are fucked up. FML

Think of a class like the blueprint for a house's construction, with the object being the finished house.

As for linked lists, think of them like your browser's forward and back buttons. You can only go forward or back one page at a time. Just like in the linked lists, you can only go forward or back one node at a time.

Never heard of abstract queues, can't help ya there.


IIRC Abstract Queues are just queues that work for any type, like:

class Queue<T>
{
public void Enqueue(T item) {...}
public T Dequeue() {...}
}

So just a fancy name for something that is actually quite simple, though from my experience, 90% of what programming professors seem to do is finding fancy names for simple things people do since the dawn of programming, just to scare and confuse students.


If so, abstract queues is a really dumb name, it would get you thinking about abstract classes. General queues or whatever sounds more proper, but as you say, professors loves dem fancy names' :p

The "abstract" part of "abstract queue" comes more from the fact that it doesn't specify how the implementation works, and isn't particularly related to the fact that the collection is parameterized. In other words, it's abstract because you don't know if it's implemented with an array, a linked list, or some other data structure. (That's not the whole story and it'd be possible to write a bit more about that -- in particular it doesn't say why it should be distinct from the Queue interface -- but that's the main bit.) In particular, the generics parameterization is basically unrelated.

And if it makes you think abstract class, that's good... because it is one, and that's also related to the name. :-)
Weson
Profile Blog Joined December 2010
Iceland1032 Posts
Last Edited: 2011-10-03 01:44:20
October 03 2011 01:43 GMT
#1620
I got a question...
I've just started a course in Flash and actionscript and the whole course is based on actionscript 2. I've done some programming in as2 before and could go through this course without putting much efforet in to it.
My teacher wants us to program in AS2 and almost begs us to do so because he says that AS3 is hard to learn and can be really confusing.
I get easily bored if i have to learn things i already know (like watching some online tutorial on how to make a button....) so i wonder if it's a good idea to learn AS3 instead? Or are there no benefits to it?
"!@€#" - as some guy said
Prev 1 79 80 81 82 83 1032 Next
Please log in or register to reply.
Live Events Refresh
IPSL
17:00
Ro16 Group D
ZZZero vs rasowy
Napoleon vs KameZerg
Liquipedia
PSISTORM Gaming Misc
15:55
FSL teamleague CNvsASH, ASHvRR
Freeedom38
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Railgan 184
IndyStarCraft 110
BRAT_OK 47
MindelVK 29
EmSc Tv 13
StarCraft: Brood War
Britney 25290
Calm 2532
Shuttle 775
Stork 341
firebathero 288
Dewaltoss 113
Barracks 68
Mong 61
Rock 43
Shine 18
Dota 2
Gorgc5830
qojqva1713
Dendi963
Counter-Strike
ScreaM1084
byalli378
Heroes of the Storm
Khaldor535
Liquid`Hasu237
Other Games
Beastyqt573
DeMusliM291
Hui .222
Fuzer 215
Lowko213
Trikslyr46
CadenZie18
Organizations
Dota 2
PGL Dota 2 - Main Stream8971
Other Games
EGCTV625
gamesdonequick359
StarCraft 2
angryscii 24
EmSc Tv 13
EmSc2Tv 13
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 22 non-featured ]
StarCraft 2
• HappyZerGling 71
• HeavenSC 61
• printf 5
• LaughNgamezSOOP
• sooper7s
• AfreecaTV YouTube
• Migwel
• intothetv
• Kozan
• IndyKCrew
StarCraft: Brood War
• Airneanach42
• HerbMon 6
• Michael_bg 3
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• C_a_k_e 2455
• WagamamaTV359
• Ler79
League of Legends
• Nemesis2825
Other Games
• imaqtpie1125
• Shiphtur313
Upcoming Events
OSC
45m
davetesta15
BSL 21
1h 45m
Tarson vs Julia
Doodle vs OldBoy
eOnzErG vs WolFix
StRyKeR vs Aeternum
Sparkling Tuna Cup
15h 45m
RSL Revival
15h 45m
Reynor vs sOs
Maru vs Ryung
Kung Fu Cup
17h 45m
Cure vs herO
Reynor vs TBD
WardiTV Korean Royale
17h 45m
BSL 21
1d 1h
JDConan vs Semih
Dragon vs Dienmax
Tech vs NewOcean
TerrOr vs Artosis
IPSL
1d 1h
Dewalt vs WolFix
eOnzErG vs Bonyth
Replay Cast
1d 4h
Wardi Open
1d 17h
[ Show More ]
Monday Night Weeklies
1d 22h
WardiTV Korean Royale
2 days
BSL: GosuLeague
3 days
The PondCast
3 days
Replay Cast
4 days
RSL Revival
4 days
BSL: GosuLeague
5 days
RSL Revival
5 days
WardiTV Korean Royale
5 days
RSL Revival
6 days
WardiTV Korean Royale
6 days
IPSL
6 days
Julia vs Artosis
JDConan vs DragOn
Liquipedia Results

Completed

Proleague 2025-11-14
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
CSCL: Masked Kings S3
SLON Tour Season 2
RSL Revival: Season 3
META Madness #9
BLAST Rivals Fall 2025
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

Upcoming

BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 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.