• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 06:32
CEST 12:32
KST 19:32
  • 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 1 - Final Week6[ASL19] Finals Recap: Standing Tall15HomeStory Cup 27 - Info & Preview18Classic wins Code S Season 2 (2025)16Code S RO4 & Finals Preview: herO, Rogue, Classic, GuMiho0
Community News
Esports World Cup 2025 - Brackets Revealed17Weekly Cups (July 7-13): Classic continues to roll8Team TLMC #5 - Submission extension3Firefly given lifetime ban by ESIC following match-fixing investigation17$25,000 Streamerzone StarCraft Pro Series announced7
StarCraft 2
General
Who will win EWC 2025? Esports World Cup 2025 - Brackets Revealed The Memories We Share - Facing the Final(?) GSL RSL Revival patreon money discussion thread The GOAT ranking of GOAT rankings
Tourneys
Sea Duckling Open (Global, Bronze-Diamond) FEL Cracov 2025 (July 27) - $8000 live event Sparkling Tuna Cup - Weekly Open Tournament RSL: Revival, a new crowdfunded tournament series $5,100+ SEL Season 2 Championship (SC: Evo)
Strategy
How did i lose this ZvP, whats the proper response
Custom Maps
External Content
Mutation # 482 Wheel of Misfortune Mutation # 481 Fear and Lava Mutation # 480 Moths to the Flame Mutation # 479 Worn Out Welcome
Brood War
General
BW General Discussion BGH Auto Balance -> http://bghmmr.eu/ Flash Announces (and Retracts) Hiatus From ASL Soulkey Muta Micro Map? [ASL19] Finals Recap: Standing Tall
Tourneys
[Megathread] Daily Proleagues CSL Xiamen International Invitational 2025 ACS Season 2 Qualifier Cosmonarchy Pro Showmatches
Strategy
Simple Questions, Simple Answers I am doing this better than progamers do.
Other Games
General Games
Stormgate/Frost Giant Megathread Path of Exile Nintendo Switch Thread CCLP - Command & Conquer League Project The PlayStation 5
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 US Politics Mega-thread Russo-Ukrainian War Thread Stop Killing Games - European Citizens Initiative Summer Games Done Quick 2025!
Fan Clubs
SKT1 Classic Fan Club! Maru Fan Club
Media & Entertainment
Korean Music Discussion Movie Discussion! [Manga] One Piece Anime Discussion Thread [\m/] Heavy Metal Thread
Sports
2024 - 2025 Football Thread Formula 1 Discussion TeamLiquid Health and Fitness Initiative For 2023 NBA General Discussion
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List
Blogs
Ping To Win? Pings And Their…
TrAiDoS
momentary artworks from des…
tankgirl
from making sc maps to makin…
Husyelt
StarCraft improvement
iopq
Customize Sidebar...

Website Feedback

Closed Threads



Active: 627 users

The Big Programming Thread - Page 572

Forum Index > General Forum
Post a Reply
Prev 1 570 571 572 573 574 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.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2015-01-27 22:43:31
January 27 2015 22:37 GMT
#11421
On January 28 2015 07:18 Z-BosoN wrote:
Show nested quote +
On January 28 2015 07:13 solidbebe wrote:
btw is there a difference between ++i and i++?


++i updates i, then does whatever, while i++ does whatever, then updates i

i = 9

++i == 9 is FALSE, because i incremented before checking the equality
i++ == 9 is TRUE, because the original value was used in the equality before getting incremented

in both instances i is 10 after the increment


To put this into perspective:


while (iter != list.end()
{
list2.push_back(iter++);
}


is equal to:


while (iter != list.end()
{
list2.push_back(iter);
++iter; // iter++ also works but is somewhat less efficient
}


Couldn't think of a better example but the idea is you add something to the list and because of post-increment, you still add the right iter, and then increment. It only saves a line but you rely on other programmers to know that which is dumb in my opinion.
ZenithM
Profile Joined February 2011
France15952 Posts
January 27 2015 22:48 GMT
#11422
On January 28 2015 04:19 Liebig wrote:
Show nested quote +
On January 28 2015 02:51 ZenithM wrote:
On January 28 2015 02:37 Liebig wrote:
On January 28 2015 01:43 ZenithM wrote:
On January 28 2015 01:31 Liebig wrote:
On January 27 2015 19:08 Manit0u wrote:
http://www.sitepoint.com/best-programming-language-learn-2014/

Interesting.

I'm proficient in none of them rofl

Hmm, what do you program in? To me this list and the article didn't come as much of a surprise at all so that's why I was wondering why Manit0u found it interesting.
Glad Scala is gaining ground, but it's still far from being mainstream. It's so powerful though, holy shit, you can't go back to Java after tasting t3h Scala...

Mainly OCaml and Coq.

Haha nice. "Cocorico!" as they say. You're probably from a similar educational background as mine ;D. I can't really picture someone dabbling in Coq in their free time, it's not something "natural" to stumble upon.

I did prépa + ENS :o I'm probably going to start a phd related to Coq in a year or so, but yeah, prolly few people will ever play with Coq without some academic background But I find it kinda like a game where a theorem is your enemy and you try to kill it by proving it with tactics and such :o

On the other hand, I have obviously touched mainstream languages like C, Java and such during my undergrads, but never used them again since then and I hope I never will :o

Haha same, prépa + ENS, not unlikely we crossed path at some point ;D

Also, note to everyone, never say, like me, "I dabble in Coq in my free time".
nunez
Profile Blog Joined February 2011
Norway4003 Posts
Last Edited: 2015-01-28 00:20:32
January 27 2015 23:33 GMT
#11423
On January 28 2015 07:18 Z-BosoN wrote:
Show nested quote +
On January 28 2015 07:13 solidbebe wrote:
btw is there a difference between ++i and i++?


++i updates i, then does whatever, while i++ does whatever, then updates i

i = 9

++i == 9 is FALSE, because i incremented before checking the equality
i++ == 9 is TRUE, because the original value was used in the equality before getting incremented

in both instances i is 10 after the increment


this is not quite right in the context of c++, let me provide some clarity...

regarding ++i == j and i++ == j:

in both cases i is incremented before the equality comparison is made because
both suffix- and prefix-increment operators have a higher precedence than ==.
however the return values of the two increment operators, which is used as
the left hand side argument of the == operator, might differ.

presumably ++i increments i then returns a reference to i, while
i++ makes a copy of i, increments i, then returns said copy
(this copy could concern efficiency).

thus in the first case a reference to the incremented i is passed to the == operator,
but in the latter case a copy of non-incremented i is passed to the == operator.

the differing returns of the prefix and suffix operator can be readily demonstrated
with a small example, wherein decltype(auto) is used to make the type of left hand side of
an assignement mirror the return type of the right hand side expression, and the type trait
is_reference is used to deduce whether the types of j and k are references or not.

+ Show Spoiler [main.cpp] +
#include<iostream>
#include<type_traits>
using namespace std;

int
main()
{
int i=0;
decltype(auto) j=++i;
decltype(auto) k=i++;

cout<<boolalpha
<<"j is reference to int: "<<is_reference<decltype(j)>::value<<endl
<<"k is reference to int: "<<is_reference<decltype(k)>::value<<endl;
}

+ Show Spoiler [output] +
[jeh@gimli tl]$ ./tl 
j is reference to int: true
k is reference to int: false


regarding ++i > j and (i+=1) > j:

since i+=k presumably adds k to i and returns a reference to i, when k=1,
++i > j and (i+=1) > j are equivalent... prefer the first one,
apparently it's an excellent noob detector.
conspired against by a confederacy of dunces.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2015-01-28 00:43:59
January 28 2015 00:24 GMT
#11424
How is it a noob detector when all it does is waste people's time at work to find out what's really going on? Btw, I know you're obsessed with C++11/14 and that I may not be familiar with all the new features, but your code is unreadable because you abuse all kind of new shit. For example, decltype(auto). Do you write such code at work if you work?

Edit: It doesn't even compile in Visual Studio 2012, so you have to use a C++14 compiler.

As an alternative:


int i = 0;
int& j = ++i;
int k = i++;
Spazer
Profile Blog Joined March 2009
Canada8031 Posts
January 28 2015 00:45 GMT
#11425
Is there an actual benefit to using ++i at a high level?

The only time I've ever seen it used is in C code intended for microprocessors. Basically, the device had hardware that allowed you to increment pointers while simultaneously reading values from memory, the end result being that you could optimize the hell out of loops.
Liquipedia
nunez
Profile Blog Joined February 2011
Norway4003 Posts
Last Edited: 2015-01-28 00:56:01
January 28 2015 00:47 GMT
#11426
when what is really going on is a fundamental aspect of the language you
are writing in, such as operators and their precedence, you ought to spend some
time to figure that out.

that's why i clearly stated what i used decltype(auto) for.
yes, i write as cool code as i can. if i didn't i would lose my passion.

whenever i find stuff i don't understand it usually means that my colleagues can
teach me something i didn't know, and luckily i enjoy learning.
in that sense this expression seems to be a noob detector.

edit:
you are missing the point.
in my demonstration gcc proves me right.
if i used your alternative, i would just
restate what i already said.
conspired against by a confederacy of dunces.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2015-01-28 00:50:00
January 28 2015 00:49 GMT
#11427
On January 28 2015 09:45 Spazer wrote:
Is there an actual benefit to using ++i at a high level?

The only time I've ever seen it used is in C code intended for microprocessors. Basically, the device had hardware that allowed you to increment pointers while simultaneously reading values from memory, the end result being that you could optimize the hell out of loops.


So the short answer in a language like C++ seems to be: it depends how expensive the copy constructor is.

http://stackoverflow.com/a/24904
ZenithM
Profile Joined February 2011
France15952 Posts
Last Edited: 2015-01-28 00:52:57
January 28 2015 00:49 GMT
#11428
Haha yeah nunez does seem to tend to go overboard with new C++ features. In a work setting it's definitely a priority that your shit is readable so I wouldn't really abuse the so-called "noob detectors".
I mean, let's be realistic here, most of the time, you'll work with noobs anyway. :O
nunez
Profile Blog Joined February 2011
Norway4003 Posts
January 28 2015 01:16 GMT
#11429
@zenith
i will not sacrifice my righteous passion
at the altar of greed and profit, nor will i
retard my rapture into the realms of the
holy binary on account of another mans
acrophobia.

@spazer
if the two are otherwise equivalent,
then the one that might give better
performance sounds like a good
default.
conspired against by a confederacy of dunces.
ZenithM
Profile Joined February 2011
France15952 Posts
Last Edited: 2015-01-28 01:57:39
January 28 2015 01:57 GMT
#11430
I wouldn't have it any other way, nunez, I like reading your posts, all the more so as I'm not super on point with C++ newest stuff :D
dapierow
Profile Blog Joined April 2010
Serbia1316 Posts
January 28 2015 01:58 GMT
#11431
Hey guys, I was having some trouble creating a list with my array, if i could get some help on what i need to do to fix it it would be greatly appriciated.

my array:

$images = array();
$images[22] = array("id"=>22,"title" => "View of Cologne", "description" => "View of Cologne from atop the Cologne Cathedral", "country" => "Germany", "user" => "João Fernandes", "path" => "6114850721.jpg");
$images[54] = array("id"=>54,"title" => "Arch of Septimus Severus", "description" => "In the Roman Forum", "country" => "Italy", "user" => "Ellie Sullivan", "path" => "9495574327.jpg");
$images[7] = array("id"=>7,"title" => "Lunenburg Port", "description" => "On board a small sailing ship leaving Lunenburg", "country" => "Canada", "user" => "Mark Taylor", "path" => "5856697109.jpg");
$images[19] = array("id"=>19,"title" => "British Museum", "description" => "The library in the British Museum in London", "country" => "United Kingdom", "user" => "Mark Taylor", "path" => "5855729828.jpg");

$images[46] = array("id"=>46,"title" => "Temple of Hephaistos", "description" => "Located on western perimeter of Agora in Athens. Built in 460-415 BCE, it is the best preserved temple of antiquity.", "country" => "Greece", "user" => "Ellie Sullivan", "path" => "8711645510.jpg");
$images[6] = array("id"=>6,"title" => "At the top of Sulpher Mountain", "description" => "At top of Sulpher Mountain near Banff", "country" => "Canada", "user" => "Frantisek Wichterlová", "path" => "6114907897.jpg");


and my code to try to access the path of each index into a image link


<?php
foreach($images as $key => $value)
{
echo '<a href ="travel-image.php"><img src="images/travel/square/' . $value['path'] . '"></a>';
}
?>


now the problem im having trouble undererstanding is how to link each image to a different page with its respective other keys($title, $country, $description, $user)

my template for each page is



<div class="row">
<div class="col-md-8">

image here

</div>
<div class="col-md-4">
<div class="panel panel-primary">
<div class="panel-body">
<p>By <a href="#">user here</a></p>
<p>Taken in <a href="#">country here</a></p>
<p>description here</p>
</div>
</div>
</div>



thank you in advance for your advice
Eat.Sleep.Starcraft 2
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
Last Edited: 2015-01-28 07:20:34
January 28 2015 07:20 GMT
#11432
--- Nuked ---
solidbebe
Profile Blog Joined November 2010
Netherlands4921 Posts
January 28 2015 10:11 GMT
#11433
That is a very nice example nesserev. And yeah I think thats a pretty cool idea, Im up for it !
That's the 2nd time in a week I've seen someone sig a quote from this GD and I have never witnessed a sig quote happen in my TL history ever before. -Najda
Manit0u
Profile Blog Joined August 2004
Poland17249 Posts
Last Edited: 2015-01-28 16:52:10
January 28 2015 10:17 GMT
#11434
On January 28 2015 10:58 dapierow wrote:
Hey guys, I was having some trouble creating a list with my array, if i could get some help on what i need to do to fix it it would be greatly appriciated.

my array:

$images = array();
$images[22] = array("id"=>22,"title" => "View of Cologne", "description" => "View of Cologne from atop the Cologne Cathedral", "country" => "Germany", "user" => "João Fernandes", "path" => "6114850721.jpg");
$images[54] = array("id"=>54,"title" => "Arch of Septimus Severus", "description" => "In the Roman Forum", "country" => "Italy", "user" => "Ellie Sullivan", "path" => "9495574327.jpg");
$images[7] = array("id"=>7,"title" => "Lunenburg Port", "description" => "On board a small sailing ship leaving Lunenburg", "country" => "Canada", "user" => "Mark Taylor", "path" => "5856697109.jpg");
$images[19] = array("id"=>19,"title" => "British Museum", "description" => "The library in the British Museum in London", "country" => "United Kingdom", "user" => "Mark Taylor", "path" => "5855729828.jpg");

$images[46] = array("id"=>46,"title" => "Temple of Hephaistos", "description" => "Located on western perimeter of Agora in Athens. Built in 460-415 BCE, it is the best preserved temple of antiquity.", "country" => "Greece", "user" => "Ellie Sullivan", "path" => "8711645510.jpg");
$images[6] = array("id"=>6,"title" => "At the top of Sulpher Mountain", "description" => "At top of Sulpher Mountain near Banff", "country" => "Canada", "user" => "Frantisek Wichterlová", "path" => "6114907897.jpg");


and my code to try to access the path of each index into a image link


<?php
foreach($images as $key => $value)
{
echo '<a href ="travel-image.php"><img src="images/travel/square/' . $value['path'] . '"></a>';
}
?>


now the problem im having trouble undererstanding is how to link each image to a different page with its respective other keys($title, $country, $description, $user)

my template for each page is



<div class="row">
<div class="col-md-8">

image here

</div>
<div class="col-md-4">
<div class="panel panel-primary">
<div class="panel-body">
<p>By <a href="#">user here</a></p>
<p>Taken in <a href="#">country here</a></p>
<p>description here</p>
</div>
</div>
</div>



thank you in advance for your advice


You don't use arrays for that. You have relational databases for this purpose.

Edit:

I'll cave...


{% if images is iterable %}
{% for image in images %}
<div class="row">
<div class="col-md-8">

<a href="travel-image.php">
<img src="{{ 'images/travel/square/' ~ image['path'] }}"
alt="{{ image['title'] }}">
</a>

</div>
<div class="col-md-4">

<div class="panel panel-primary">
<div class="panel-body">
<p>By <a href="#">{{ image['user'] }}</a></p>
<p>Taken in <a href="#">{{ image['country'] }}</a></p>
<p>{{ image['description'] }}</p>
</div>
</div>

</div>
</div>
{% endfor %}
{% endif %}


Is that what you wanted? (used Twig for brevity and readability)

That will display all the images. If you want the page of a single image then you must pass additional parameters to your single image view. Example in raw php this time:


// page with images
<a href="travel_image.php?id=<?php echo image['id'] ?>" ...

// single image page
$id = $_GET['id'];
$image = $images[$id];


I didn't think anyone would write pages in raw php without mvc and/or some framework this days...
Time is precious. Waste it wisely.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
Last Edited: 2015-01-28 14:01:04
January 28 2015 13:17 GMT
#11435
On January 28 2015 16:20 Nesserev wrote:
Nunez, I think the most clear way to show the difference between ++i and i++, is by just showing their typical definitions for a class Foo, with one member called 'value'.

I'm pretty sure that in a lot of cases, i++ is optimized to the same effect as ++i by the compiler.


Foo& Foo::operator++() // called for ++i
{
this->value += 1;
return *this; // reference is returned
}

// the ignored int parameter is used to distinguish ++i and i++, for any class

Foo Foo::operator++(int) // called for i++
{
Foo copy(*this); // copy constructor is called to make a copy of this object
++(*this);
return copy; // copy is returned
}


sidenote:
your previous alternative should also demonstrate that
attempting to bind the result of the suffix increment expression
to a reference does not compile.

frontnote:
showing a case of canonical operator overloading for a contrived class
on an imaginary type is good, but i demand more rigour in the general
case (as we have not revealed anything about the type of value, or even the
use of Foo), calling the expected operators on the held value:

Foo 
Foo::operator++(int)
{ return Foo(value++); }

Foo&
Foo::operator++()
{
++value;
return *this;
}

however there is something left unsaid about the increment operators of the value and their
exception specifications, it is not something the holy binary would compile, the restrictive and seemingly
random nature of the dummy int variable is an abomhination to good taste and rational thought,
and it is not as elegant or fundamental as showing it's the case for a primitive type...

behold this proof by compilation (i noobed the other one down a bit):
#include<type_traits>
int
main()
{
int i;
static_assert(
!std::is_reference<decltype(i++)>::value&&
std::is_reference<decltype(++i)>::value,
"!QED"
);
}

what glorious code! most precise! praise the GCC! halleluja!

the existence of situations where the performance differs twixt
prefix and suffix is enough to tip the scales in favor of the
prefix increment over the suffix increment as the reasonable
default. specifically what situations is interesting, but not of
consequence, when they are otherwise equivalent.

have pity on your loving mothers, for they will not know how to begin
forgiving you for even suggesting to use add-assign in the place of
increment.

backnote:
a little entertainement, canonical implementation
of the rvalue reference qualified suffix increment operator:
	Foo
operator++(int) &&
{ return std::move(*this); }
conspired against by a confederacy of dunces.
bangsholt
Profile Joined June 2011
Denmark138 Posts
January 28 2015 17:08 GMT
#11436
And here all I do is just C, C# and the occasional Java when it's unavoidable. I seem to be missing out on so much
Manit0u
Profile Blog Joined August 2004
Poland17249 Posts
Last Edited: 2015-01-28 17:26:42
January 28 2015 17:18 GMT
#11437
On January 29 2015 02:08 bangsholt wrote:
And here all I do is just C, C# and the occasional Java when it's unavoidable. I seem to be missing out on so much


You're not. C++ is scrapcode. Nothing like glorious C or elegant C#

If you want truly elegant metaprogramming you need to look no further than Lisp, which is ahead of any other programming language since 1958
Time is precious. Waste it wisely.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
January 28 2015 18:56 GMT
#11438
On January 29 2015 02:18 Manit0u wrote:
Show nested quote +
On January 29 2015 02:08 bangsholt wrote:
And here all I do is just C, C# and the occasional Java when it's unavoidable. I seem to be missing out on so much


You're not. C++ is scrapcode. Nothing like glorious C or elegant C#

If you want truly elegant metaprogramming you need to look no further than Lisp, which is ahead of any other programming language since 1958


I disagree. C++ is really cool but some people do their best to make their code unreadable. "Glorious C" - good luck with that unsafe language. :D
bangsholt
Profile Joined June 2011
Denmark138 Posts
January 28 2015 19:03 GMT
#11439
On January 29 2015 03:56 darkness wrote:
Show nested quote +
On January 29 2015 02:18 Manit0u wrote:
On January 29 2015 02:08 bangsholt wrote:
And here all I do is just C, C# and the occasional Java when it's unavoidable. I seem to be missing out on so much


You're not. C++ is scrapcode. Nothing like glorious C or elegant C#

If you want truly elegant metaprogramming you need to look no further than Lisp, which is ahead of any other programming language since 1958


I disagree. C++ is really cool but some people do their best to make their code unreadable. "Glorious C" - good luck with that unsafe language. :D


I'm interpolating a bit here, but are you trying to say that C is unsafe and C++ is... safe?
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2015-01-28 19:09:50
January 28 2015 19:04 GMT
#11440
On January 29 2015 04:03 bangsholt wrote:
Show nested quote +
On January 29 2015 03:56 darkness wrote:
On January 29 2015 02:18 Manit0u wrote:
On January 29 2015 02:08 bangsholt wrote:
And here all I do is just C, C# and the occasional Java when it's unavoidable. I seem to be missing out on so much


You're not. C++ is scrapcode. Nothing like glorious C or elegant C#

If you want truly elegant metaprogramming you need to look no further than Lisp, which is ahead of any other programming language since 1958


I disagree. C++ is really cool but some people do their best to make their code unreadable. "Glorious C" - good luck with that unsafe language. :D


I'm interpolating a bit here, but are you trying to say that C is unsafe and C++ is... safe?


Well, I've recently started learning C++ and I can say it looks safer so far. Provided that you use the right tools, of course.

Edit: C's macros immediately come to mind.

I'm also not saying C++ is completely safe, it obviously has a lot of undefined behaviour (e.g. dangling raw pointers) but I think it's safer than C.
Prev 1 570 571 572 573 574 1031 Next
Please log in or register to reply.
Live Events Refresh
CranKy Ducklings
10:00
Sea Duckling Open #136
CranKy Ducklings51
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
mouzHeroMarine 292
Nina 237
StarCraft: Brood War
Mini 1261
actioN 881
Larva 509
Soma 416
firebathero 320
Pusan 265
Hyun 245
TY 225
Sharp 189
Dewaltoss 171
[ Show more ]
Barracks 153
Last 96
Backho 92
ToSsGirL 60
Bonyth 46
Free 45
sorry 26
zelot 19
ajuk12(nOOB) 15
Britney 0
Sea 0
Dota 2
Gorgc5750
singsing1863
XcaliburYe352
Super Smash Bros
Westballz36
Heroes of the Storm
Khaldor192
Other Games
Happy378
DeMusliM272
Fuzer 217
SortOf97
Trikslyr24
Lowko21
Organizations
Other Games
gamesdonequick2603
StarCraft: Brood War
Afreeca ASL 465
UltimateBattle 85
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• Berry_CruncH222
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• lizZardDota2143
League of Legends
• Jankos1217
• Stunt859
Upcoming Events
Epic.LAN
1h 28m
CSO Contender
6h 28m
Sparkling Tuna Cup
23h 28m
Online Event
1d 5h
Esports World Cup
2 days
ByuN vs Astrea
Lambo vs HeRoMaRinE
Clem vs TBD
Solar vs Zoun
SHIN vs Reynor
Maru vs TriGGeR
herO vs Lancer
Cure vs ShoWTimE
Esports World Cup
3 days
Esports World Cup
4 days
Esports World Cup
6 days
CranKy Ducklings
6 days
Liquipedia Results

Completed

CSL Xiamen Invitational: ShowMatche
RSL Revival: Season 1
Murky Cup #2

Ongoing

BSL 2v2 Season 3
Copa Latinoamericana 4
Jiahua Invitational
BSL20 Non-Korean Championship
CSL Xiamen Invitational
2025 ACS Season 2
Championship of Russia 2025
Underdog Cup #2
FISSURE Playground #1
BLAST.tv Austin Major 2025
ESL Impact League Season 7
IEM Dallas 2025
PGL Astana 2025
Asian Champions League '25

Upcoming

CSLPRO Last Chance 2025
CSLPRO Chat StarLAN 3
BSL Season 21
RSL Revival: Season 2
SEL Season 2 Championship
uThermal 2v2 Main Event
FEL Cracov 2025
Esports World 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
BLAST Bounty Fall Qual
IEM Cologne 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.