• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 06:15
CEST 12:15
KST 19: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
Serral wins EWC 202542Tournament Spotlight: FEL Cracow 202510Power Rank - Esports World Cup 202580RSL Season 1 - Final Week9[ASL19] Finals Recap: Standing Tall15
Community News
Weekly Cups (Jul 28-Aug 3): herO doubles up5LiuLi Cup - August 2025 Tournaments3[BSL 2025] H2 - Team Wars, Weeklies & SB Ladder10EWC 2025 - Replay Pack4Google Play ASL (Season 20) Announced57
StarCraft 2
General
Clem Interview: "PvT is a bit insane right now" Serral wins EWC 2025 TL Team Map Contest #5: Presented by Monster Energy Would you prefer the game to be balanced around top-tier pro level or average pro level? Weekly Cups (Jul 28-Aug 3): herO doubles up
Tourneys
WardiTV Mondays $5,000 WardiTV Summer Championship 2025 Sparkling Tuna Cup - Weekly Open Tournament LiuLi Cup - August 2025 Tournaments Sea Duckling Open (Global, Bronze-Diamond)
Strategy
Custom Maps
External Content
Mutation # 485 Death from Below Mutation # 484 Magnetic Pull Mutation #239 Bad Weather Mutation # 483 Kill Bot Wars
Brood War
General
Google Play ASL (Season 20) Announced How do the new Battle.net ranks translate? BW General Discussion Nobody gona talk about this year crazy qualifiers? [G] Progamer Settings
Tourneys
[ASL20] Online Qualifiers Day 2 [Megathread] Daily Proleagues Cosmonarchy Pro Showmatches [ASL20] Online Qualifiers Day 1
Strategy
Simple Questions, Simple Answers [G] Mineral Boosting Muta micro map competition Does 1 second matter in StarCraft?
Other Games
General Games
Stormgate/Frost Giant Megathread Total Annihilation Server - TAForever Nintendo Switch Thread Beyond All Reason [MMORPG] Tree of Savior (Successor of Ragnarok)
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
US Politics Mega-thread Things Aren’t Peaceful in Palestine European Politico-economics QA Mega-thread 9/11 Anniversary Possible Al Qaeda Attack on 9/11
Fan Clubs
INnoVation Fan Club SKT1 Classic Fan Club!
Media & Entertainment
Movie Discussion! [Manga] One Piece Anime Discussion Thread [\m/] Heavy Metal Thread Korean Music Discussion
Sports
2024 - 2025 Football Thread Formula 1 Discussion TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
Gtx660 graphics card replacement Installation of Windows 10 suck at "just a moment" Computer Build, Upgrade & Buying Resource Thread
TL Community
TeamLiquid Team Shirt On Sale The Automated Ban List
Blogs
[Girl blog} My fema…
artosisisthebest
Sharpening the Filtration…
frozenclaw
ASL S20 English Commentary…
namkraft
The Link Between Fitness and…
TrAiDoS
momentary artworks from des…
tankgirl
from making sc maps to makin…
Husyelt
Customize Sidebar...

Website Feedback

Closed Threads



Active: 656 users

The Big Programming Thread - Page 562

Forum Index > General Forum
Post a Reply
Prev 1 560 561 562 563 564 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.
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
Poland17257 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
Poland17257 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
Poland17257 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
Poland17257 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
Poland17257 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
Poland17257 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 1031 Next
Please log in or register to reply.
Live Events Refresh
OSC
10:00
Elite Rising Star #16 - Day 1
CranKy Ducklings40
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft: Brood War
Horang2 9085
ggaemo 1491
Bisu 1221
yabsab 528
hero 475
Hyuk 340
firebathero 313
Killer 251
Nal_rA 157
PianO 105
[ Show more ]
Pusan 99
Dewaltoss 98
ZerO 92
TY 59
ToSsGirL 56
Rush 51
Backho 35
sSak 34
Sharp 34
sorry 23
Soulkey 20
Yoon 18
JYJ13
Bale 11
Dota 2
XaKoH 379
XcaliburYe272
BananaSlamJamma253
League of Legends
JimRising 424
Counter-Strike
olofmeister1945
shoxiejesuss692
x6flipin305
allub169
edward108
byalli25
Other Games
summit1g7978
singsing1137
ceh9579
Pyrionflax222
rGuardiaN198
RotterdaM162
Fuzer 136
SortOf119
ArmadaUGS95
PartinGtheBigBoy50
ZerO(Twitch)4
Organizations
Other Games
gamesdonequick1015
StarCraft: Brood War
UltimateBattle 31
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 17 non-featured ]
StarCraft 2
• Berry_CruncH407
• davetesta23
• LUISG 23
• StrangeGG 3
• Dystopia_ 1
• Kozan
• sooper7s
• intothetv
• AfreecaTV YouTube
• IndyKCrew
• LaughNgamezSOOP
• Migwel
StarCraft: Brood War
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
League of Legends
• Stunt1003
• HappyZerGling127
Upcoming Events
WardiTV Summer Champion…
46m
WardiTV Summer Champion…
4h 46m
PiGosaur Monday
13h 46m
WardiTV Summer Champion…
1d
Stormgate Nexus
1d 3h
uThermal 2v2 Circuit
1d 5h
The PondCast
1d 23h
WardiTV Summer Champion…
2 days
Replay Cast
2 days
LiuLi Cup
3 days
[ Show More ]
uThermal 2v2 Circuit
3 days
RSL Revival
3 days
RSL Revival
3 days
uThermal 2v2 Circuit
4 days
CSO Cup
4 days
Sparkling Tuna Cup
4 days
uThermal 2v2 Circuit
5 days
Wardi Open
6 days
RotterdaM Event
6 days
Liquipedia Results

Completed

ASL Season 20: Qualifier #2
FEL Cracow 2025
CC Div. A S7

Ongoing

Copa Latinoamericana 4
Jiahua Invitational
BSL 20 Team Wars
KCM Race Survival 2025 Season 3
BSL 21 Qualifiers
HCC Europe
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1
BLAST.tv Austin Major 2025
ESL Impact League Season 7
IEM Dallas 2025

Upcoming

ASL Season 20
CSLPRO Chat StarLAN 3
BSL Season 21
BSL 21 Team A
RSL Revival: Season 2
Maestros of the Game
SEL Season 2 Championship
WardiTV Summer 2025
uThermal 2v2 Main Event
Thunderpick World Champ.
MESA Nomadic Masters Fall
CS Asia Championships 2025
Roobet Cup 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
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.