• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 04:19
CEST 10:19
KST 17:19
  • 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
Code S Season 1 - RO12 Group A: Rogue, Percival, Solar, Zoun11[ASL21] Ro8 Preview Pt1: Inheritors16[ASL21] Ro16 Preview Pt2: All Star10Team Liquid Map Contest #22 - The Finalists21[ASL21] Ro16 Preview Pt1: Fresh Flow9
Community News
2026 GSL Season 1 Qualifiers25Maestros of the Game 2 announced92026 GSL Tour plans announced15Weekly Cups (April 6-12): herO doubles, "Villains" prevail1MaNa leaves Team Liquid25
StarCraft 2
General
Code S Season 1 - RO12 Group A: Rogue, Percival, Solar, Zoun Team Liquid Map Contest #22 - The Finalists Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool MaNa leaves Team Liquid Maestros of the Game 2 announced
Tourneys
GSL Code S Season 1 (2026) SC2 INu's Battles#15 <BO.9 2Matches> WardiTV Spring Cup RSL Revival: Season 5 - Qualifiers and Main Event SEL Masters #6 - Solar vs Classic (SC: Evo)
Strategy
Custom Maps
[D]RTS in all its shapes and glory <3 [A] Nemrods 1/4 players [M] (2) Frigid Storage
External Content
The PondCast: SC2 News & Results Mutation # 523 Firewall Mutation # 522 Flip My Base Mutation # 521 Memorable Boss
Brood War
General
Pros React To: Leta vs Tulbo (ASL S21, Ro.8) ASL21 General Discussion [TOOL] Starcraft Chat Translator JaeDong's ASL S21 Ro16 Post-Review Missed out on ASL tickets - what are my options?
Tourneys
Escore Tournament StarCraft Season 2 [ASL21] Ro8 Day 2 [ASL21] Ro8 Day 1 ASL Season 21 LIVESTREAM with English Commentary
Strategy
Fighting Spirit mining rates Simple Questions, Simple Answers What's the deal with APM & what's its true value Any training maps people recommend?
Other Games
General Games
Daigo vs Menard Best of 10 Stormgate/Frost Giant Megathread Nintendo Switch Thread Dawn of War IV Diablo IV
Dota 2
The Story of Wings Gaming
League of Legends
G2 just beat GenG in First stand
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
Vanilla Mini Mafia Mafia Game Mode Feedback/Ideas TL Mafia Community Thread Five o'clock TL Mafia
Community
General
US Politics Mega-thread European Politico-economics QA Mega-thread Russo-Ukrainian War Thread 3D technology/software discussion Canadian Politics Mega-thread
Fan Clubs
The IdrA Fan Club
Media & Entertainment
[Manga] One Piece Anime Discussion Thread [Req][Books] Good Fantasy/SciFi books Movie Discussion!
Sports
2024 - 2026 Football Thread McBoner: A hockey love story Formula 1 Discussion
World Cup 2022
Tech Support
streaming software Strange computer issues (software) [G] How to Block Livestream Ads
TL Community
The Automated Ban List
Blogs
Sexual Health Of Gamers
TrAiDoS
lurker extra damage testi…
StaticNine
Broowar part 2
qwaykee
Funny Nicknames
LUCKY_NOOB
Iranian anarchists: organize…
XenOsky
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2542 users

The Big Programming Thread - Page 562

Forum Index > General Forum
Post a Reply
Prev 1 560 561 562 563 564 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.
SilverSkyLark
Profile Blog Joined April 2008
Philippines8437 Posts
Last Edited: 2015-01-08 00:52:37
January 08 2015 00:52 GMT
#11221
Guys, how do you get the new filepath of the file that was recently uploaded via php?


$uploaddir = '/gallery/';
$uploadFile = $uploaddir . basename($_FILES['fileToUpload']['tmp_name']);

die(json_encode(array(
'success' => true,
'status' => "File is uploaded successfully. - 8",
'filePath' => $uploadFile
)));


but the path I get points to the tmp folder, not the folder and the filename where it was uploaded to.

More info over here. http://stackoverflow.com/questions/27818823/php-getting-the-filepath-of-the-file-after-uploading-to-server
"If i lost an arm, I would play w3." -IntoTheWow || "Member of Hyuk Hyuk Hyuk cafe. He's the next Jaedong, baby!"
LaNague
Profile Blog Joined April 2010
Germany9118 Posts
Last Edited: 2015-01-08 01:16:28
January 08 2015 01:12 GMT
#11222
I thinkgood programming is something similar to good painting.


You have to have a brain for it and you have to practice technique.
No matter how much i practiced for my stupid art aclasses in school, in 12 years i did not produce a single good looking picture.
And similar, some people in my university are incapable of producing good code, their brain isnt made for it.

But university CS degrees arent about programming, you learn mostly other stuff and have some basic programming classes.
Same as an art degree is probably not painting things all week (i think?).



hey what would you recommend to programm a little 3d video game? i heared c++ is the best for this?

what libaries would i need besides opengl? i would need something to load files with sound, images, 3d models etc. Which SDK can offer all that. I am looking for something that makes life easy. But i want to go the professional way




that totally depends.
If you just want to get it over with and design your game and dont care that you cant really tune everything, then Unity or a similar engine. It can also be used in C# for example.

If you are in it for the experience or need something custom, then you need C++ with either directX or openGL.


Also, there are shades between those 2 options, but im not a game programmer so i dont know whats hot right now regarding that.
berated-
Profile Blog Joined February 2007
United States1134 Posts
Last Edited: 2015-01-08 02:09:26
January 08 2015 01:58 GMT
#11223
On January 08 2015 09:52 SilverSkyLark wrote:
Guys, how do you get the new filepath of the file that was recently uploaded via php?


$uploaddir = '/gallery/';
$uploadFile = $uploaddir . basename($_FILES['fileToUpload']['tmp_name']);

die(json_encode(array(
'success' => true,
'status' => "File is uploaded successfully. - 8",
'filePath' => $uploadFile
)));


but the path I get points to the tmp folder, not the folder and the filename where it was uploaded to.

More info over here. http://stackoverflow.com/questions/27818823/php-getting-the-filepath-of-the-file-after-uploading-to-server


Why do you think it was uploaded to the gallery directory? I'm pretty sure when you upload via php it writes a temp file, if you actually want to put it in a certain directory, you have to move it there. If you never move the file there, its going to still be in the tmp dir.

Edit: From reading your SO post, it looks like you write the file as $_FILES['fileToUpload']['tmp_name'], but according to the comment above the code that you copy and pasted, the real file name is in $_FILES['fileToUpload']['name'].
SilverSkyLark
Profile Blog Joined April 2008
Philippines8437 Posts
January 08 2015 02:53 GMT
#11224
On January 08 2015 10:58 berated- wrote:
Show nested quote +
On January 08 2015 09:52 SilverSkyLark wrote:
Guys, how do you get the new filepath of the file that was recently uploaded via php?


$uploaddir = '/gallery/';
$uploadFile = $uploaddir . basename($_FILES['fileToUpload']['tmp_name']);

die(json_encode(array(
'success' => true,
'status' => "File is uploaded successfully. - 8",
'filePath' => $uploadFile
)));


but the path I get points to the tmp folder, not the folder and the filename where it was uploaded to.

More info over here. http://stackoverflow.com/questions/27818823/php-getting-the-filepath-of-the-file-after-uploading-to-server


Why do you think it was uploaded to the gallery directory? I'm pretty sure when you upload via php it writes a temp file, if you actually want to put it in a certain directory, you have to move it there. If you never move the file there, its going to still be in the tmp dir.

Edit: From reading your SO post, it looks like you write the file as $_FILES['fileToUpload']['tmp_name'], but according to the comment above the code that you copy and pasted, the real file name is in $_FILES['fileToUpload']['name'].



I actually made it work, but it doesn't make sense to me. What happened was I used basename instead of sha1_file so that the temp filename was kept. I can't seem to make it work using sha1_file.

		if (!move_uploaded_file(
$_FILES['fileToUpload']['tmp_name'],
sprintf('./gallery/%s.%s',
basename($_FILES['fileToUpload']['tmp_name']),
$ext
)
)) {
die(json_encode(array(
'success' => false,
'status' => "Failed to move uploaded file. - 7",
)));

}

$uploaddir = '/gallery/';
$name = $_FILES["fileToUpload"]["tmp_name"];

$fullPath = sprintf('/gallery/%s.%s',
basename($_FILES['fileToUpload']['tmp_name']),
$ext
);

die(json_encode(array(
'success' => true,
'status' => "File is uploaded successfully. - 8",
'filePath' => "$fullPath"
)));


the basenames used to be sha1_file, but I can't seem to make sha1_file work on the 2nd call when I'm assembling the filename.
"If i lost an arm, I would play w3." -IntoTheWow || "Member of Hyuk Hyuk Hyuk cafe. He's the next Jaedong, baby!"
Manit0u
Profile Blog Joined August 2004
Poland17740 Posts
Last Edited: 2015-01-08 07:21:13
January 08 2015 05:43 GMT
#11225
That's because basename takes full path to file as its first argument, not just the name and it returns just the filename, not its path.


$name = $_FILES['fileToUpload']['tmp_name'];
$path = '/gallery/';

$filePath = "{$path}{$name}"; // param = "/gallery/yourfile.yourext"
$fileName = basename($filePath); // will return file name with extension

// alternate

$filePathArr = pathinfo("{$path}{$name}"); // param = "/gallery/yourfile.yourext"

$fileDir = $filePathArr['dirname']; // "/gallery"
$fileNameExt = $filePathArr['basename']; // "yourfile.yourext" - same as basename()
$fileName = $filePathArr['filename']; // "yourfile"
$fileExt = $filePathArr['extension']; // "yourext"

$filePath = "{$filePathArr['dirname']}/{$filePathArr['basename']}; // "/gallery/yourfile.yourext"
Time is precious. Waste it wisely.
SilverSkyLark
Profile Blog Joined April 2008
Philippines8437 Posts
January 08 2015 07:45 GMT
#11226
On January 08 2015 14:43 Manit0u wrote:
That's because basename takes full path to file as its first argument, not just the name and it returns just the filename, not its path.


$name = $_FILES['fileToUpload']['tmp_name'];
$path = '/gallery/';

$filePath = "{$path}{$name}"; // param = "/gallery/yourfile.yourext"
$fileName = basename($filePath); // will return file name with extension

// alternate

$filePathArr = pathinfo("{$path}{$name}"); // param = "/gallery/yourfile.yourext"

$fileDir = $filePathArr['dirname']; // "/gallery"
$fileNameExt = $filePathArr['basename']; // "yourfile.yourext" - same as basename()
$fileName = $filePathArr['filename']; // "yourfile"
$fileExt = $filePathArr['extension']; // "yourext"

$filePath = "{$filePathArr['dirname']}/{$filePathArr['basename']}; // "/gallery/yourfile.yourext"


I see. So how do I use sha1_file instead of basename? I like how the new filename after sha1_file is so long. The filename of the files as they get to the tmp folder seems boring honestly.
"If i lost an arm, I would play w3." -IntoTheWow || "Member of Hyuk Hyuk Hyuk cafe. He's the next Jaedong, baby!"
Manit0u
Profile Blog Joined August 2004
Poland17740 Posts
Last Edited: 2015-01-08 13:30:37
January 08 2015 12:55 GMT
#11227
On January 08 2015 16:45 SilverSkyLark wrote:
Show nested quote +
On January 08 2015 14:43 Manit0u wrote:
That's because basename takes full path to file as its first argument, not just the name and it returns just the filename, not its path.


$name = $_FILES['fileToUpload']['tmp_name'];
$path = '/gallery/';

$filePath = "{$path}{$name}"; // param = "/gallery/yourfile.yourext"
$fileName = basename($filePath); // will return file name with extension

// alternate

$filePathArr = pathinfo("{$path}{$name}"); // param = "/gallery/yourfile.yourext"

$fileDir = $filePathArr['dirname']; // "/gallery"
$fileNameExt = $filePathArr['basename']; // "yourfile.yourext" - same as basename()
$fileName = $filePathArr['filename']; // "yourfile"
$fileExt = $filePathArr['extension']; // "yourext"

$filePath = "{$filePathArr['dirname']}/{$filePathArr['basename']}; // "/gallery/yourfile.yourext"


I see. So how do I use sha1_file instead of basename? I like how the new filename after sha1_file is so long. The filename of the files as they get to the tmp folder seems boring honestly.


I don't really know what you need. Do you want this?


$finalPath = "/path/to/destination/";
$tmpPath = "/tmp/";
$fileName = "somefile.txt";

$baseFilePath = "{$tmpPath}{$fileName}"; // "/tmp/somefile.txt"
$fileNameHash = sha1_file($baseFilePath); // "asdasduosf9d0sa8uf0a9sga" gibberish
$hashedFilePath = "{$finalPath}{$fileNameHash}" ; // "/path/to/destination/asdasduosf9d0sa8uf0a9sga"

// copying contents of tmp file to hashed file (text), the convoluted way

$contents = file_get_contents($baseFilePath);
$newFile = file_put_contents($hashedFilePath, $contents);

// creating hashed filename from regular and moving it to the proper folder, the right way

rename($baseFilePath, $hashedFilePath); // this moves the file and overwrites if exists, nice and clean, doesn't leave old and unnecessary stuff lying around
Time is precious. Waste it wisely.
SilverSkyLark
Profile Blog Joined April 2008
Philippines8437 Posts
January 08 2015 13:25 GMT
#11228
On January 08 2015 21:55 Manit0u wrote:
Show nested quote +
On January 08 2015 16:45 SilverSkyLark wrote:
On January 08 2015 14:43 Manit0u wrote:
That's because basename takes full path to file as its first argument, not just the name and it returns just the filename, not its path.


$name = $_FILES['fileToUpload']['tmp_name'];
$path = '/gallery/';

$filePath = "{$path}{$name}"; // param = "/gallery/yourfile.yourext"
$fileName = basename($filePath); // will return file name with extension

// alternate

$filePathArr = pathinfo("{$path}{$name}"); // param = "/gallery/yourfile.yourext"

$fileDir = $filePathArr['dirname']; // "/gallery"
$fileNameExt = $filePathArr['basename']; // "yourfile.yourext" - same as basename()
$fileName = $filePathArr['filename']; // "yourfile"
$fileExt = $filePathArr['extension']; // "yourext"

$filePath = "{$filePathArr['dirname']}/{$filePathArr['basename']}; // "/gallery/yourfile.yourext"


I see. So how do I use sha1_file instead of basename? I like how the new filename after sha1_file is so long. The filename of the files as they get to the tmp folder seems boring honestly.


I don't really know what you need. Do you want this?


$path = "/path/to/destination/";
$tmpPath = "/tmp/";
$file = "somefile.txt";

$baseFile = "{$tmpPath}{$file}"; // "/tmp/somefile.txt"
$fileHash = sha1_file($baseFile); // "asdasduosf9d0sa8uf0a9sga" gibberish
$hashedFile = "{$path}{$fileHash}" ; // "/path/to/destination/asdasduosf9d0sa8uf0a9sga"

// copying contents of tmp file to hashed file (text)

$contents = file_get_contents($baseFile);
$newFile = file_put_contents($hashedFile, $contents);

Oh yeah something like this, I'll test it later. Thanks!

btw, are there repercussions in using the gibberish sha1_file uses as the final filename as you save it in your directory?
"If i lost an arm, I would play w3." -IntoTheWow || "Member of Hyuk Hyuk Hyuk cafe. He's the next Jaedong, baby!"
Manit0u
Profile Blog Joined August 2004
Poland17740 Posts
January 08 2015 13:28 GMT
#11229
I've updated the reply to let everyone know that this method isn't that great and included the right one (which also works for all types of files).

The only repercussions are that you need to know the new gibberish filename if you want to use it anywhere. I presume you will write the new filename to the database somewhere.
Time is precious. Waste it wisely.
Manit0u
Profile Blog Joined August 2004
Poland17740 Posts
January 08 2015 16:57 GMT
#11230
Web development at its finest:

[image loading]
Time is precious. Waste it wisely.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
January 08 2015 17:35 GMT
#11231
On January 09 2015 01:57 Manit0u wrote:
Web development at its finest:

Makes sure only dedicated people will apply.
If you have a good reason to disagree with the above, please tell me. Thank you.
Manit0u
Profile Blog Joined August 2004
Poland17740 Posts
January 08 2015 23:18 GMT
#11232
On January 09 2015 02:35 spinesheath wrote:
Show nested quote +
On January 09 2015 01:57 Manit0u wrote:
Web development at its finest:

Makes sure only dedicated people will apply.


Makes sure that anyone who knows anything about web dev won't apply...
Time is precious. Waste it wisely.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
January 08 2015 23:53 GMT
#11233
On January 08 2015 10:12 LaNague wrote:
I thinkgood programming is something similar to good painting.


You have to have a brain for it and you have to practice technique.
No matter how much i practiced for my stupid art aclasses in school, in 12 years i did not produce a single good looking picture.
And similar, some people in my university are incapable of producing good code, their brain isnt made for it.

But university CS degrees arent about programming, you learn mostly other stuff and have some basic programming classes.
Same as an art degree is probably not painting things all week (i think?).


Show nested quote +

hey what would you recommend to programm a little 3d video game? i heared c++ is the best for this?

what libaries would i need besides opengl? i would need something to load files with sound, images, 3d models etc. Which SDK can offer all that. I am looking for something that makes life easy. But i want to go the professional way




that totally depends.
If you just want to get it over with and design your game and dont care that you cant really tune everything, then Unity or a similar engine. It can also be used in C# for example.

If you are in it for the experience or need something custom, then you need C++ with either directX or openGL.


Also, there are shades between those 2 options, but im not a game programmer so i dont know whats hot right now regarding that.


Come on, this is bullshit. You should probably define what you mean by good code, but if you mean readable, then all it takes is to read the book 'Clean Code' by Robert Martin. I don't think one has to have an excellent brain, it is just a discipline.
Manit0u
Profile Blog Joined August 2004
Poland17740 Posts
Last Edited: 2015-01-09 07:46:57
January 09 2015 07:46 GMT
#11234
Good code is when you see it and you instantly know how to use it. End of story.
Time is precious. Waste it wisely.
Djagulingu
Profile Blog Joined December 2010
Germany3605 Posts
January 09 2015 09:36 GMT
#11235
On January 09 2015 16:46 Manit0u wrote:
Good code is when you see it and you instantly know how to use it. End of story.

Manit0u the great lord has spoken words of wisdom.
"windows bash is a steaming heap of shit" tofucake
VarianWrynn
Profile Joined January 2015
United States3 Posts
January 09 2015 14:26 GMT
#11236
Interpreting quantum physics in a game
Posted on October 21, 2013 by spach
‘Learning games’ or ‘games for learning?’ People in our industry tend to use the terms interchangeably, but I prefer ‘games for learning.’ It puts the emphasis on the ‘games’ part. It reminds me that, first and foremost, a game that hopes to foster learning must still be fun. There’s no reason learning itself can’t be fun, of course, whether it happens in a game or not: in fact, I’d say it inherently is. But a game for learning really has to be.

Collaborating with our friends at Google, MincraftEdu and IQIM to make qCraft was a fascinating exercise in finding the intersection of fun Minecraft gameplay and meaningful learning about quantum mechanics. As Dr. M describes in his blog post, our original design was focused more on finding ways to simulate how quantum computers work with things like CNOT gates and qubits. Simulations can be great learning tools, but they aren’t games, and while that design was interesting, it was hard to do the science justice (it turns out simulating a quantum computer with a classical computer is really hard) and the result was not quite as fun as we would have liked. It also didn’t take advantage of the things that can make games great learning tools. In particular, games let you dive in and experience worlds and identities that you never could in real life.

It’s probably unrealistic to think that a Minecraft mod — or any game — could comprehensively cover a topic as complex and hotly debated as quantum mechanics. What we hope a game can do is create a gateway into understanding and experiencing quantum phenomena.

For most people, the notion that something might have different properties based on whether or how it is being observed is a really strange notion totally unlike anything we experience firsthand in the real, macroscopic world. The same is true of other precursor or foundational concepts in quantum mechanics like superposition and entanglement. If a game could help players make this ‘quantum leap’ — and do it in a fun way — that might just be interesting and even useful.

As our design evolved, we asked ourselves what it would mean if players could actually experience, for example, observer dependency in the the Minecraft world. The possibilities for fun gameplay quickly became apparent: structures that reconfigured themselves when you look at them, mazes that change while your back is turned, etc. But could these kind of playful experiences actually change players’ intuitions about how the world works? If they could, would it make real quantum phenomena seem a little less alien? Would players who never studied quantum physics before be motivated to learn more about them? We don’t know the answers to these questions yet, but we’re excited to find out.

Brian Alspach is Executive Vice President at E-Line Media, one of the organizations collaborating on qCraft.

http://qcraft.org/interpreting-quantum-physics-in-a-game/
http://www.thetakeaway.org/story/when-quantum-physics-meets-video-game/
http://www.scienceclarified.com/Qu-Ro/Quantum-Mechanics.html
VBNiya
Profile Joined August 2014
53 Posts
January 09 2015 20:01 GMT
#11237
On January 09 2015 16:46 Manit0u wrote:
Good code is when you see it and you instantly know how to use it. End of story.


I disagree. Granted there is some truth in what you say. Knowing how to instantly use a method depends more on good practices like variable naming and good commenting but its not nearly enough to qualify a piece of code as good code. Good code is code that has an elegance to it. I can't really put into words but a good comparison is like watching a brilliant piece of artwork that's so cleverly rendered, it just leaves you in awe of how clever the artist is.

Truth is almost no code is like that since programming is something that always seem to have deadlines. There's really never any time to try and be clever. Usually you have to get shit working asap. Many times you're gonna end up with a mess that looks like it could fall apart anytime. MS Windows is a good example of this. I read some years ago where some insider said that the Windows base code is such a huge mess due to all the hacking necessary to make it backward compatible and their deadlines for Windows releases doesn't help either.

But once in a while you get to see code that so beautiful and elegant, you almost wanna cry.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
January 09 2015 20:15 GMT
#11238
On January 10 2015 05:01 VBNiya wrote:
Good code is code that has an elegance to it. I can't really put into words but a good comparison is like watching a brilliant piece of artwork that's so cleverly rendered, it just leaves you in awe of how clever the artist is.

Absolutely not. Good code is code that is so simple that you never recognize it as something special.
If you have a good reason to disagree with the above, please tell me. Thank you.
ComaDose
Profile Blog Joined December 2009
Canada10357 Posts
January 09 2015 20:25 GMT
#11239
but what if you can make it work faster with a more convoluted method? good code is also a function of the requirements and weighted criteria.
BW pros training sc2 is like kiss making a dub step album.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
January 09 2015 20:41 GMT
#11240
On January 10 2015 05:25 ComaDose wrote:
but what if you can make it work faster with a more convoluted method? good code is also a function of the requirements and weighted criteria.

Then there's a good chance I'll scold you for thinking about optimization before profiling. Also then there likely is a way to make it faster without convoluting the code.
If you have a good reason to disagree with the above, please tell me. Thank you.
Prev 1 560 561 562 563 564 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 41m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
ProTech167
Livibee 113
Nina 77
StarCraft: Brood War
Mind 855
Killer 479
firebathero 444
Hm[arnc] 394
Pusan 314
Dewaltoss 56
yabsab 41
Leta 36
NotJumperer 35
ToSsGirL 35
[ Show more ]
Bale 34
actioN 23
Nal_rA 19
ZergMaN 18
Sharp 15
Shuttle 14
Terrorterran 2
Dota 2
resolut1ontv 638
monkeys_forever539
NeuroSwarm148
League of Legends
JimRising 648
Counter-Strike
Stewie2K1247
shoxiejesuss1141
ceh9438
Other Games
summit1g5539
WinterStarcraft541
Happy331
Sick232
crisheroes0
Organizations
Other Games
gamesdonequick529
Dota 2
PGL Dota 2 - Main Stream116
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 13 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Stunt690
• Jankos672
• TFBlade630
Upcoming Events
Replay Cast
41m
Escore
1h 41m
INu's Battles
2h 41m
Classic vs ByuN
SHIN vs ByuN
OSC
4h 41m
Big Brain Bouts
7h 41m
Replay Cast
15h 41m
Replay Cast
1d
RSL Revival
1d 1h
Classic vs GgMaChine
Rogue vs Maru
WardiTV Invitational
1d 2h
IPSL
1d 7h
Ret vs Art_Of_Turtle
Radley vs TBD
[ Show More ]
BSL
1d 10h
Replay Cast
1d 15h
RSL Revival
2 days
herO vs TriGGeR
NightMare vs Solar
uThermal 2v2 Circuit
2 days
BSL
2 days
IPSL
2 days
eOnzErG vs TBD
G5 vs Nesh
Patches Events
2 days
Replay Cast
3 days
Wardi Open
3 days
Afreeca Starleague
3 days
Jaedong vs Light
Monday Night Weeklies
3 days
Replay Cast
3 days
Sparkling Tuna Cup
4 days
Afreeca Starleague
4 days
Snow vs Flash
WardiTV Invitational
4 days
GSL
5 days
Classic vs Cure
Maru vs Rogue
GSL
6 days
SHIN vs Zoun
ByuN vs herO
Replay Cast
6 days
Liquipedia Results

Completed

Proleague 2026-04-29
WardiTV TLMC #16
Nations Cup 2026

Ongoing

BSL Season 22
ASL Season 21
CSL 2026 SPRING (S20)
IPSL Spring 2026
KCM Race Survival 2026 Season 2
Escore Tournament S2: W5
KK 2v2 League Season 1
StarCraft2 Community Team League 2026 Spring
2026 GSL S1
BLAST Rivals Spring 2026
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026

Upcoming

Acropolis #4
BSL 22 Non-Korean Championship
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
Maestros of the Game 2
2026 GSL S2
RSL Revival: Season 5
XSE Pro League 2026
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 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.