• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 08:54
CET 14:54
KST 22:54
  • 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
TL.net Map Contest #21: Winners11Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10[ASL20] Finals Preview: Arrival13TL.net Map Contest #21: Voting12[ASL20] Ro4 Preview: Descent11
Community News
[TLMC] Fall/Winter 2025 Ladder Map Rotation4Weekly Cups (Nov 3-9): Clem Conquers in Canada4SC: Evo Complete - Ranked Ladder OPEN ALPHA8StarCraft, SC2, HotS, WC3, Returning to Blizzcon!45$5,000+ WardiTV 2025 Championship7
StarCraft 2
General
[TLMC] Fall/Winter 2025 Ladder Map Rotation Mech is the composition that needs teleportation t Weekly Cups (Nov 3-9): Clem Conquers in Canada Craziest Micro Moments Of All Time? SC: Evo Complete - Ranked Ladder OPEN ALPHA
Tourneys
Constellation Cup - Main Event - Stellar Fest Tenacious Turtle Tussle Sparkling Tuna Cup - Weekly Open Tournament $5,000+ WardiTV 2025 Championship Merivale 8 Open - LAN - Stellar Fest
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 499 Chilling Adaptation Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened Mutation # 496 Endless Infection
Brood War
General
BW General Discussion FlaSh on: Biggest Problem With SnOw's Playstyle Terran 1:35 12 Gas Optimization BGH Auto Balance -> http://bghmmr.eu/ [ASL20] Ask the mapmakers — Drop your questions
Tourneys
[BSL21] RO32 Group D - Sunday 21:00 CET [BSL21] RO32 Group C - Saturday 21:00 CET [ASL20] Grand Finals [Megathread] Daily Proleagues
Strategy
Current Meta PvZ map balance How to stay on top of macro? Soma's 9 hatch build from ASL Game 2
Other Games
General Games
Nintendo Switch Thread Stormgate/Frost Giant Megathread Should offensive tower rushing be viable in RTS games? Path of Exile Dawn of War IV
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine Canadian Politics Mega-thread The Games Industry And ATVI
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
[Manga] One Piece Anime Discussion Thread Movie Discussion! Korean Music Discussion Series you have seen recently...
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List
Blogs
Dyadica Gospel – a Pulp No…
Hildegard
Coffee x Performance in Espo…
TrAiDoS
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Reality "theory" prov…
perfectspheres
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1346 users

The Big Programming Thread - Page 572

Forum Index > General Forum
Post a Reply
Prev 1 570 571 572 573 574 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.
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
Canada8032 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
Poland17429 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
Poland17429 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 1032 Next
Please log in or register to reply.
Live Events Refresh
Kung Fu Cup
12:00
2025 Monthly #3: Day 1
Reynor vs GuMihoLIVE!
ByuN vs ShoWTimE
RotterdaM523
TKL 182
Rex146
IntoTheiNu 103
SteadfastSC88
Liquipedia
OSC
11:30
Mid Season Playoffs
Cure vs SpiritLIVE!
Krystianer vs Percival
WardiTV446
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RotterdaM 523
Reynor 227
TKL 182
Rex 146
SteadfastSC 88
StarCraft: Brood War
Calm 4495
Rain 2923
Bisu 2701
Hyuk 2015
Horang2 1304
Flash 797
Soma 464
Backho 369
Stork 340
Rush 261
[ Show more ]
Pusan 197
Last 133
Soulkey 115
JulyZerg 104
Barracks 79
hero 58
sSak 33
zelot 31
Aegong 28
sas.Sziky 24
Killer 23
Terrorterran 11
Noble 9
Hm[arnc] 7
Dota 2
Gorgc2155
qojqva1591
Dendi1136
XcaliburYe181
BananaSlamJamma86
Counter-Strike
olofmeister911
allub158
Super Smash Bros
Mew2King127
Other Games
B2W.Neo990
hiko295
DeMusliM285
Pyrionflax260
Sick170
Fuzer 164
Hui .86
QueenE46
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• Adnapsc2 9
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• C_a_k_e 1641
• WagamamaTV400
League of Legends
• Nemesis1689
• TFBlade702
Upcoming Events
Tenacious Turtle Tussle
9h 6m
The PondCast
20h 6m
RSL Revival
20h 6m
Solar vs Zoun
MaxPax vs Bunny
Kung Fu Cup
22h 6m
WardiTV Korean Royale
22h 6m
PiGosaur Monday
1d 11h
RSL Revival
1d 20h
Classic vs Creator
Cure vs TriGGeR
Kung Fu Cup
1d 22h
CranKy Ducklings
2 days
RSL Revival
2 days
herO vs Gerald
ByuN vs SHIN
[ Show More ]
Kung Fu Cup
2 days
IPSL
3 days
ZZZero vs rasowy
Napoleon vs KameZerg
BSL 21
3 days
Tarson vs Julia
Doodle vs OldBoy
eOnzErG vs WolFix
StRyKeR vs Aeternum
Sparkling Tuna Cup
3 days
RSL Revival
3 days
Reynor vs sOs
Maru vs Ryung
Kung Fu Cup
3 days
WardiTV Korean Royale
3 days
BSL 21
4 days
JDConan vs Semih
Dragon vs Dienmax
Tech vs NewOcean
TerrOr vs Artosis
IPSL
4 days
Dewalt vs WolFix
eOnzErG vs Bonyth
Wardi Open
4 days
Monday Night Weeklies
5 days
WardiTV Korean Royale
5 days
The PondCast
6 days
Liquipedia Results

Completed

Proleague 2025-11-07
Stellar Fest: Constellation Cup
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
YSL S2
BSL Season 21
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual

Upcoming

SLON Tour Season 2
BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
RSL Revival: Season 3
META Madness #9
BLAST Bounty Winter 2026
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
TLPD

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

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.