• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 11:30
CEST 17:30
KST 00:30
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
[ASL19] Finals Recap: Standing Tall4HomeStory Cup 27 - Info & Preview18Classic wins Code S Season 2 (2025)16Code S RO4 & Finals Preview: herO, Rogue, Classic, GuMiho0TL Team Map Contest #5: Presented by Monster Energy6
Community News
Flash Announces Retirement From ASL22Weekly Cups (June 23-29): Reynor in world title form?12FEL Cracov 2025 (July 27) - $8000 live event16Esports World Cup 2025 - Final Player Roster14Weekly Cups (June 16-22): Clem strikes back1
StarCraft 2
General
The SCII GOAT: A statistical Evaluation Weekly Cups (June 23-29): Reynor in world title form? StarCraft Mass Recall: SC1 campaigns on SC2 thread How does the number of casters affect your enjoyment of esports? Esports World Cup 2025 - Final Player Roster
Tourneys
FEL Cracov 2025 (July 27) - $8000 live event HomeStory Cup 27 (June 27-29) WardiTV Mondays SOOPer7s Showmatches 2025 $200 Biweekly - StarCraft Evolution League #1
Strategy
How did i lose this ZvP, whats the proper response Simple Questions Simple Answers
Custom Maps
[UMS] Zillion Zerglings
External Content
Mutation # 480 Moths to the Flame Mutation # 479 Worn Out Welcome Mutation # 478 Instant Karma Mutation # 477 Slow and Steady
Brood War
General
Flash Announces Retirement From ASL Where did Hovz go? [ASL19] Finals Recap: Standing Tall BW General Discussion ASL20 Preliminary Maps
Tourneys
[Megathread] Daily Proleagues [BSL20] GosuLeague RO16 - Tue & Wed 20:00+CET The Casual Games of the Week Thread [BSL20] ProLeague LB Final - Saturday 20:00 CET
Strategy
Simple Questions, Simple Answers I am doing this better than progamers do.
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread Path of Exile What do you want from future RTS games? Beyond All Reason
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
Things Aren’t Peaceful in Palestine Stop Killing Games - European Citizens Initiative US Politics Mega-thread Trading/Investing Thread Russo-Ukrainian War Thread
Fan Clubs
SKT1 Classic Fan Club! Maru Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece [\m/] Heavy Metal Thread Korean Music Discussion
Sports
2024 - 2025 Football Thread NBA General Discussion Formula 1 Discussion TeamLiquid Health and Fitness Initiative For 2023 NHL Playoffs 2024
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List
Blogs
from making sc maps to makin…
Husyelt
Blog #2
tankgirl
Game Sound vs. Music: The Im…
TrAiDoS
StarCraft improvement
iopq
Heero Yuy & the Tax…
KrillinFromwales
Trip to the Zoo
micronesia
Customize Sidebar...

Website Feedback

Closed Threads



Active: 601 users

The Big Programming Thread - Page 120

Forum Index > General Forum
Post a Reply
Prev 1 118 119 120 121 122 1031 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
February 28 2012 06:16 GMT
#2381
On February 28 2012 13:29 heroyi wrote:
I was wondering if anyone can give me a quick run down (just a general idea) of how one is able to reverse engineer a software (or how to be able to see the coding to it). I am interested in hacking NOT cracking.

do you just use some sort of decompiler and from the result do you just go and play around with the coding? Or is it more of you looking at the code and trying to find holes that you can try to exploit?

i am still new to the whole programming world. I am an aspiring programmer xD
sry for my noobines

edit: I am currently learning c++ and lets assume the program I am trying to hack uses C or C++

I don't know much about how to in a very skilled manner... I do know however that you can compile your own code and check out the generated assembly. With GCC you can use on the command line "gcc -c -S filename.c", and that will make a text file to check out the assembly code generated from your written code.

You can also try a dissassembler to take an EXE and transform it into assembly code. However I think this would be really messy, as compilers do a lot of heavy and tricky optimization that makes for very unreadable assembly.

So from what little I know, you'll likely need to be able to work proficiently with very low-level assembly.
Pawsom
Profile Blog Joined February 2009
United States928 Posts
February 28 2012 06:42 GMT
#2382
On February 28 2012 13:29 heroyi wrote:
I was wondering if anyone can give me a quick run down (just a general idea) of how one is able to reverse engineer a software (or how to be able to see the coding to it). I am interested in hacking NOT cracking.

do you just use some sort of decompiler and from the result do you just go and play around with the coding? Or is it more of you looking at the code and trying to find holes that you can try to exploit?

i am still new to the whole programming world. I am an aspiring programmer xD
sry for my noobines

edit: I am currently learning c++ and lets assume the program I am trying to hack uses C or C++


You'll need a bit more knowledge about general computer arthitecture and how a program exists and runs in memory before you can do this.

These are by no means complete, but should point you in a good direction.

http://en.wikipedia.org/wiki/Computer_architecture
http://en.wikipedia.org/wiki/Machine_code
http://en.wikipedia.org/wiki/Disassembly
heroyi
Profile Blog Joined March 2009
United States1064 Posts
Last Edited: 2012-02-28 06:47:50
February 28 2012 06:42 GMT
#2383
On February 28 2012 15:42 Pawsom wrote:
Show nested quote +
On February 28 2012 13:29 heroyi wrote:
I was wondering if anyone can give me a quick run down (just a general idea) of how one is able to reverse engineer a software (or how to be able to see the coding to it). I am interested in hacking NOT cracking.

do you just use some sort of decompiler and from the result do you just go and play around with the coding? Or is it more of you looking at the code and trying to find holes that you can try to exploit?

i am still new to the whole programming world. I am an aspiring programmer xD
sry for my noobines

edit: I am currently learning c++ and lets assume the program I am trying to hack uses C or C++


You'll need a bit more knowledge about general computer arthitecture and how a program exists and runs in memory before you can do this.

These are by no means complete, but should point you in a good direction.

http://en.wikipedia.org/wiki/Computer_architecture
http://en.wikipedia.org/wiki/Machine_code
http://en.wikipedia.org/wiki/Disassembly

so..if say I wanted to hack windows 7 (or w.e software) I would just activate disassembly program and it would show me the assembly language? And I guess from there you can read the assembly and work there (if you can read and work with assembly?

edit: I am somewhat familiar with the idea of compilers to assembly to machine.
edit: 2 --> I was wondering how one would go about and try to learn some concept of programming. I guess I am asking where does one go and learn how the compiler works. I am interested to know so that I can try to learn and have more fun coding instead of fighting the code and being fearful whenever I have to change something and risk the chance of having cascading error reports...
wat wat in my pants
MisterD
Profile Blog Joined June 2010
Germany1338 Posts
February 28 2012 10:06 GMT
#2384
you block out errors by having a test suite for your program that just tells you if some change of your code broke some piece of functionality somewhere else. That's the right way of getting rid of the "i'm gonna break everything and not notice it until errors fly around everywhere if i change something" fear.

Learning how a compiler works can either be done through reading books on the topic, attending one or several lectures, or even just internet-study by reading wikipedia and linked sources. But learning how a compiler works doesn't really help to prevent you from writing down syntax errors. you have to just do some coding and you'll learn over time which compile errors are the causes and which are consequences. A good example is php, where, if you forget a semicolon at the end of a line, you get a syntax error in the next line, that the compiler/parser doesn't know how to handle the first literal in that line. You are weirded out by that five to ten times, but then you learn to just check for the semicolon in the previous line first whenever you get a "unexpected literal" message somewhere in your code. You really can't learn that through general compiler knowledge.
Gold isn't everything in life... you need wood, too!
BottleAbuser
Profile Blog Joined December 2007
Korea (South)1888 Posts
Last Edited: 2012-02-28 12:55:29
February 28 2012 12:54 GMT
#2385
I'm surprised this hasn't been posted sooner... but !!!!!!!!!!!!!!!!!!!!!!!!

So psyched.

Some context: $35 computer. Yes, it's too slow to run WoW on. No, it won't quite fit into an Altoids can. But it's still AMAZING.
Compilers are like boyfriends, you miss a period and they go crazy on you.
CellGel
Profile Joined August 2011
Australia27 Posts
Last Edited: 2012-02-28 13:16:58
February 28 2012 13:02 GMT
#2386
Does anyone here have any Gamebryo experience? I'm trying to set it up to link with VS2010 on a fresh computer. I've linked additional dependencies etc, but apparently I should have an installer or something with my gamebryo folder, which simply isn't there D:

Not really looking for precise help obviously, I was just wondering if anyone with more than my 3 months of experience with the engine could point me in the direction of an actual forum for the programming side that isn't dead/all shader tuts

EDIT License is through campus/educational.
A lot of people across the years have had issues installing it on non-networked computers (i.e. off-campus). However in all these cases there has been a setup exe which generates the actual filepaths required to include the gamebryo libraries. It seems that adding the local paths manually into dependencies doesn't do the trick...

Are you suggesting I try re-downloading directly onto the computer? I'd have to check but I'm not sure if I'd be personally licensed to do that.
Fix the colours!!!!
heishe
Profile Blog Joined June 2009
Germany2284 Posts
February 28 2012 13:07 GMT
#2387
How'd you get a license?
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.
heroyi
Profile Blog Joined March 2009
United States1064 Posts
February 28 2012 16:44 GMT
#2388
On February 28 2012 19:06 MisterD wrote:
you block out errors by having a test suite for your program that just tells you if some change of your code broke some piece of functionality somewhere else. That's the right way of getting rid of the "i'm gonna break everything and not notice it until errors fly around everywhere if i change something" fear.

Learning how a compiler works can either be done through reading books on the topic, attending one or several lectures, or even just internet-study by reading wikipedia and linked sources. But learning how a compiler works doesn't really help to prevent you from writing down syntax errors. you have to just do some coding and you'll learn over time which compile errors are the causes and which are consequences. A good example is php, where, if you forget a semicolon at the end of a line, you get a syntax error in the next line, that the compiler/parser doesn't know how to handle the first literal in that line. You are weirded out by that five to ten times, but then you learn to just check for the semicolon in the previous line first whenever you get a "unexpected literal" message somewhere in your code. You really can't learn that through general compiler knowledge.

Hey I just read your post.

So I guess in the software field experience is more valuable? If I run into a error, I'll just have to go "google" it out and remember not to make that same mistake?

wat wat in my pants
Millitron
Profile Blog Joined August 2010
United States2611 Posts
February 28 2012 17:20 GMT
#2389
On February 28 2012 22:02 CellGel wrote:
Does anyone here have any Gamebryo experience? I'm trying to set it up to link with VS2010 on a fresh computer. I've linked additional dependencies etc, but apparently I should have an installer or something with my gamebryo folder, which simply isn't there D:

Not really looking for precise help obviously, I was just wondering if anyone with more than my 3 months of experience with the engine could point me in the direction of an actual forum for the programming side that isn't dead/all shader tuts

EDIT License is through campus/educational.
A lot of people across the years have had issues installing it on non-networked computers (i.e. off-campus). However in all these cases there has been a setup exe which generates the actual filepaths required to include the gamebryo libraries. It seems that adding the local paths manually into dependencies doesn't do the trick...

Are you suggesting I try re-downloading directly onto the computer? I'd have to check but I'm not sure if I'd be personally licensed to do that.

I've never worked in Gamebryo, but I have worked in other game engines, so hopefully this will help.

Your DLL's need to go into the lib folder in the visual studios SDK directory. Any .h files need to go in the Headers folder in the same directory. At least some of the DLL's must also go into System 32. Last, if you're on a 64 bit OS, they need to go into SysWow as well.

Hope that helped.
Who called in the fleet?
ShadowWolf
Profile Joined March 2010
United States197 Posts
February 28 2012 20:41 GMT
#2390
On February 28 2012 15:42 heroyi wrote:
Show nested quote +
On February 28 2012 15:42 Pawsom wrote:
On February 28 2012 13:29 heroyi wrote:
I was wondering if anyone can give me a quick run down (just a general idea) of how one is able to reverse engineer a software (or how to be able to see the coding to it). I am interested in hacking NOT cracking.

do you just use some sort of decompiler and from the result do you just go and play around with the coding? Or is it more of you looking at the code and trying to find holes that you can try to exploit?

i am still new to the whole programming world. I am an aspiring programmer xD
sry for my noobines

edit: I am currently learning c++ and lets assume the program I am trying to hack uses C or C++


You'll need a bit more knowledge about general computer arthitecture and how a program exists and runs in memory before you can do this.

These are by no means complete, but should point you in a good direction.

http://en.wikipedia.org/wiki/Computer_architecture
http://en.wikipedia.org/wiki/Machine_code
http://en.wikipedia.org/wiki/Disassembly

so..if say I wanted to hack windows 7 (or w.e software) I would just activate disassembly program and it would show me the assembly language? And I guess from there you can read the assembly and work there (if you can read and work with assembly?

edit: I am somewhat familiar with the idea of compilers to assembly to machine.
edit: 2 --> I was wondering how one would go about and try to learn some concept of programming. I guess I am asking where does one go and learn how the compiler works. I am interested to know so that I can try to learn and have more fun coding instead of fighting the code and being fearful whenever I have to change something and risk the chance of having cascading error reports...


You've asked two unrelated questions.

The answer to your first question is to learn how to read, understand, and write assembly. Most of the hacking you see is someone busting out a hex editor against a target and reverse engineering what the code does. You cannot do this without pretty solid knowledge of how assembly works on the target platform (probably x86). Once you understand assembly you can then start working your way backwards and understanding more complex concepts like calling conventions and picking out standard conventions/optimizations that will lead you to believe certain things are going on.

The answer to your second question is to actually read the specifications of the language/compiler you're using and stop guessing at things. You're afraid of breaking things because you don't grasp what you don't know. Your ancillary question about learning how compilers work is a lot more simple: to learn how compilers work you would want to research compilers.

If you want a free working draft of the C++11 standard (there are a couple of problems, but it's more or less OK outside of constexpr and noexecpt) you can download this: http://open-std.org/JTC1/SC22/WG21/docs/papers/2011/n3242.pdf

Otherwise I'd suggest it might even be more beneficial to work through Bjarne's book on C++: http://www.amazon.com/Programming-Language-3rd-Bjarne-Stroustrup/dp/0201889544

Keep in mind those aren't really good ways to teach yourself C++ in most cases, but they are amazing references. If you need to know how something works or the desired outcome based on inputs then those are going to answer whatever question you have.

Lastly, making errors and fixing them is the best way to learn. Stop being afraid to screw things up.
MisterD
Profile Blog Joined June 2010
Germany1338 Posts
February 28 2012 23:59 GMT
#2391
On February 29 2012 01:44 heroyi wrote:
Show nested quote +
On February 28 2012 19:06 MisterD wrote:
you block out errors by having a test suite for your program that just tells you if some change of your code broke some piece of functionality somewhere else. That's the right way of getting rid of the "i'm gonna break everything and not notice it until errors fly around everywhere if i change something" fear.

Learning how a compiler works can either be done through reading books on the topic, attending one or several lectures, or even just internet-study by reading wikipedia and linked sources. But learning how a compiler works doesn't really help to prevent you from writing down syntax errors. you have to just do some coding and you'll learn over time which compile errors are the causes and which are consequences. A good example is php, where, if you forget a semicolon at the end of a line, you get a syntax error in the next line, that the compiler/parser doesn't know how to handle the first literal in that line. You are weirded out by that five to ten times, but then you learn to just check for the semicolon in the previous line first whenever you get a "unexpected literal" message somewhere in your code. You really can't learn that through general compiler knowledge.

Hey I just read your post.

So I guess in the software field experience is more valuable? If I run into a error, I'll just have to go "google" it out and remember not to make that same mistake?


experience is almost invaluable in any field, same for software engineering. Sure it helps a ton if you have brains and good intuition and are a fast learner, you can gain experience quickly that way, but you still need it. When you start, you will inevitably run into the most stupid of issues and often enough probably not solve them by asking google, but rather making a helpless post ^^ everybody does that. But with growing experience, you increase your working effectiveness thousandfold.

The good thing to achieve is to get a kind of intuition on how to use something or what's actually wrong when you get error message X. How you gain such knowledge and intuition probably depends a lot on what kind of learner you are? I'm not very good at explaining this. I usually get pretty accommodated to coding environments (be it a framework or a language/compiler) rather fast, but i can't really explain how. Just know that you will write horrible code at any point in time. it's like normal life (at least for me): when you think back about what you did half a year or maybe two years ago, you just can't help but thinking "wow i was an idiot back then!"

But well, everyone has to start. So i guess just go for it and always try to understand what went wrong so you gain knowledge the fastest i guess? i'm really not old enough for wise words ;p
Gold isn't everything in life... you need wood, too!
BottleAbuser
Profile Blog Joined December 2007
Korea (South)1888 Posts
February 29 2012 11:49 GMT
#2392
I'd say that theoretical knowledge is a good foundation. An undergraduate CS course covers pretty much everything you'll ever see in a real-life situation, plus some. After that, it's a matter of learning how to talk to clients and figuring out what they actually want you to do (instead of what they claim they need you to do), and googling for a library that implements X algorithm in the language you're using.

(At least, that's how it's been for me in my first year as a developer.)
Compilers are like boyfriends, you miss a period and they go crazy on you.
MisterD
Profile Blog Joined June 2010
Germany1338 Posts
February 29 2012 21:20 GMT
#2393
well either you are exceptionally good or you just haven't noticed what kinds of bullshit you are designing :D sure, you can do designs, but doing good designs without experience is near impossible imo. At least no-one i know can do that, including myself.
Gold isn't everything in life... you need wood, too!
FoxyMayhem
Profile Blog Joined April 2011
624 Posts
March 01 2012 02:46 GMT
#2394
Anyone Here good with CSS?
BottleAbuser
Profile Blog Joined December 2007
Korea (South)1888 Posts
March 01 2012 02:58 GMT
#2395
I did write some pretty ugly code for the first few months, went back and refactored them afterwards, but the basic approach was solid.

Example: Make a secure login/account control system.

I know that we'll need TLS for secure transmission of data. I know that passwords shouldn't be stored in plaintext, and should be prohibitively difficult to crack even if both the DB and the WAS are pwned. One-way functions! Google for "one-way function password security", find that Blowfish is state of the art, and google for "blowfish java". This implementation transparently uses a salt, so I don't even need to think about how to use it, great! Done in two hours, most of which was reading up on how to set up JEUS (a Korean-brand version of Tomcat) to use TLS.

Apart from designing new systems, a theoretical base lets me recognize when an existing system is stupidly designed.

Example: I've was tasked with tacking on a few features to an existing site. Its 3 different controllers use an average of 80 "else if" statements to figure out what view to display. I change this out with a text file (MUCH easier to read) that is loaded into a hash map (faster execution) that is loaded upon web app start. (Only afterwards did I find out that Spring does this pretty automatically, but I wouldn't have had the time to port everything over to Spring anyways.)

My point is, you might end up re-implementing some things, but they won't be stupidly inefficient, and you'll easily recognize inefficiency when you see it.
Compilers are like boyfriends, you miss a period and they go crazy on you.
RoTaNiMoD
Profile Blog Joined January 2004
United States558 Posts
March 01 2012 03:10 GMT
#2396
On March 01 2012 11:46 FoxyMayhem wrote:
Anyone Here good with CSS?


I'm good with CSS.
Chaosvuistje
Profile Joined April 2010
Netherlands2581 Posts
March 01 2012 09:05 GMT
#2397
On March 01 2012 11:46 FoxyMayhem wrote:
Anyone Here good with CSS?


Pretty good here myself, what do you need?
MisterD
Profile Blog Joined June 2010
Germany1338 Posts
March 01 2012 09:59 GMT
#2398
On March 01 2012 11:58 BottleAbuser wrote:
I did write some pretty ugly code for the first few months, went back and refactored them afterwards, but the basic approach was solid.

Example: Make a secure login/account control system.

I know that we'll need TLS for secure transmission of data. I know that passwords shouldn't be stored in plaintext, and should be prohibitively difficult to crack even if both the DB and the WAS are pwned. One-way functions! Google for "one-way function password security", find that Blowfish is state of the art, and google for "blowfish java". This implementation transparently uses a salt, so I don't even need to think about how to use it, great! Done in two hours, most of which was reading up on how to set up JEUS (a Korean-brand version of Tomcat) to use TLS.

Apart from designing new systems, a theoretical base lets me recognize when an existing system is stupidly designed.

Example: I've was tasked with tacking on a few features to an existing site. Its 3 different controllers use an average of 80 "else if" statements to figure out what view to display. I change this out with a text file (MUCH easier to read) that is loaded into a hash map (faster execution) that is loaded upon web app start. (Only afterwards did I find out that Spring does this pretty automatically, but I wouldn't have had the time to port everything over to Spring anyways.)

My point is, you might end up re-implementing some things, but they won't be stupidly inefficient, and you'll easily recognize inefficiency when you see it.


yes efficiency isn't all that hard when you've heard your share of lectures about runtime complexity. But good design is by far more than just efficiency. Reusability, extendability, but at the same time not overengineering it, you're pretty much bound to fail at all of those most of the time without the proper experience.
Gold isn't everything in life... you need wood, too!
Bobbias
Profile Blog Joined March 2008
Canada1373 Posts
March 01 2012 10:02 GMT
#2399
So, I learned C++ ages ago from this book. Pretty sure it was the oldest C++ specifications.

Since then I've dabbled in Java, Haskell and C# (mostly C#). I'm looking at going back and learning proper C in it's newest form (C11), but I'm not sure where to start. I don't want to buy a book (but you can make suggestions anyway if there's a book you really think I should look at, and I'll try to find a copy), but I'm looking to find somewhere that teaches proper C11 (I don't want to just jump into some C tutorial and find out later that it doesn't teach the most up to date C).

Basically, any suggestions on where to learn C that teaches C11, as opposed to any of the older variants?
uNiGNoRe
Profile Blog Joined June 2007
Germany1115 Posts
Last Edited: 2012-03-01 16:33:40
March 01 2012 16:25 GMT
#2400
Maybe someone can help me with this problem:
Does anyone know if/how you can enable content assist in Eclipse CDT for included files that are not part of the standard libraries? Content assist works fine for functions like printf etc, but if I include other files like the OpenGL header, it doesn't work even though I have indexing enabled.

Edit: I think my Eclipse is somehow broken. Content assist doesn't even work for variables within the source file...
Prev 1 118 119 120 121 122 1031 Next
Please log in or register to reply.
Live Events Refresh
Next event in 30m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Harstem 429
mouzHeroMarine 386
StarCraft: Brood War
Rain 4555
EffOrt 1356
Larva 1304
Stork 410
Mini 368
BeSt 275
ZerO 240
Light 179
Rush 133
Snow 132
[ Show more ]
hero 120
Hyun 109
Mind 77
Zeus 58
Sharp 56
Shinee 46
Barracks 41
JYJ39
Movie 39
Aegong 29
Terrorterran 17
Rock 15
ajuk12(nOOB) 14
Noble 13
scan(afreeca) 12
IntoTheRainbow 10
SilentControl 10
zelot 9
HiyA 8
Hm[arnc] 7
Shine 7
Dota 2
Gorgc10806
qojqva2859
febbydoto10
League of Legends
singsing2532
Counter-Strike
markeloff130
Super Smash Bros
Mew2King139
amsayoshi31
Heroes of the Storm
Khaldor151
Other Games
hiko1326
FrodaN1120
B2W.Neo432
RotterdaM352
Liquid`VortiX315
Happy298
crisheroes212
ArmadaUGS96
Trikslyr47
QueenE36
ZerO(Twitch)21
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• poizon28 26
• iHatsuTV 12
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• C_a_k_e 2810
• WagamamaTV377
League of Legends
• TFBlade873
Upcoming Events
uThermal 2v2 Circuit
30m
OSC
3h 30m
SHIN vs Bunny
Cham vs MaNa
SKillous vs TBD
PAPI vs Jumy
Gerald vs Moja
ArT vs TBD
Replay Cast
8h 30m
The PondCast
18h 30m
RSL Revival
18h 30m
ByuN vs Classic
Clem vs Cham
WardiTV European League
1d
Replay Cast
1d 8h
RSL Revival
1d 18h
herO vs SHIN
Reynor vs Cure
WardiTV European League
2 days
FEL
2 days
[ Show More ]
Korean StarCraft League
2 days
CranKy Ducklings
2 days
RSL Revival
2 days
FEL
3 days
Sparkling Tuna Cup
3 days
RSL Revival
3 days
FEL
3 days
BSL: ProLeague
4 days
Dewalt vs Bonyth
Replay Cast
5 days
Replay Cast
5 days
The PondCast
6 days
Liquipedia Results

Completed

Proleague 2025-06-28
HSC XXVII
Heroes 10 EU

Ongoing

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

Upcoming

CSLPRO Last Chance 2025
CSLPRO Chat StarLAN 3
K-Championship
uThermal 2v2 Main Event
SEL Season 2 Championship
FEL Cracov 2025
Esports World Cup 2025
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Disclosure: This page contains affiliate marketing links that support TLnet.

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.