• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 21:00
CET 03:00
KST 11:00
  • 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
ByuL: The Forgotten Master of ZvT28Behind the Blue - Team Liquid History Book19Clem wins HomeStory Cup 289HomeStory Cup 28 - Info & Preview13Rongyi Cup S3 - Preview & Info8
Community News
Weekly Cups (Feb 16-22): MaxPax doubles0Weekly Cups (Feb 9-15): herO doubles up2ACS replaced by "ASL Season Open" - Starts 21/0247LiuLi Cup: 2025 Grand Finals (Feb 10-16)46Weekly Cups (Feb 2-8): Classic, Solar, MaxPax win2
StarCraft 2
General
Nexon's StarCraft game could be FPS, led by UMS maker ByuL: The Forgotten Master of ZvT How do you think the 5.0.15 balance patch (Oct 2025) for StarCraft II has affected the game? Oliveira Would Have Returned If EWC Continued Behind the Blue - Team Liquid History Book
Tourneys
WardiTV Team League Season 10 The Dave Testa Open #11 Sparkling Tuna Cup - Weekly Open Tournament PIG STY FESTIVAL 7.0! (19 Feb - 1 Mar) StarCraft Evolution League (SC Evo Biweekly)
Strategy
Custom Maps
Map Editor closed ? [A] Starcraft Sound Mod
External Content
Mutation # 514 Ulnar New Year The PondCast: SC2 News & Results Mutation # 513 Attrition Warfare Mutation # 512 Overclocked
Brood War
General
Soma Explains: JD's Unrelenting Aggro vs FlaSh ACS replaced by "ASL Season Open" - Starts 21/02 BGH Auto Balance -> http://bghmmr.eu/ CasterMuse Youtube TvZ is the most complete match up
Tourneys
Escore Tournament StarCraft Season 1 [Megathread] Daily Proleagues [LIVE] [S:21] ASL Season Open Day 1 Small VOD Thread 2.0
Strategy
Fighting Spirit mining rates Simple Questions, Simple Answers Zealot bombing is no longer popular?
Other Games
General Games
Battle Aces/David Kim RTS Megathread Path of Exile Nintendo Switch Thread Beyond All Reason New broswer game : STG-World
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
Vanilla Mini Mafia Mafia Game Mode Feedback/Ideas TL Mafia Community Thread
Community
General
US Politics Mega-thread Mexico's Drug War Canadian Politics Mega-thread Russo-Ukrainian War Thread Ask and answer stupid questions here!
Fan Clubs
The IdrA Fan Club The herO Fan Club!
Media & Entertainment
[Req][Books] Good Fantasy/SciFi books [Manga] One Piece Anime Discussion Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion TL MMA Pick'em Pool 2013
World Cup 2022
Tech Support
Laptop capable of using Photoshop Lightroom?
TL Community
The Automated Ban List
Blogs
Unintentional protectionism…
Uldridge
ASL S21 English Commentary…
namkraft
Inside the Communication of …
TrAiDoS
My 2025 Magic: The Gathering…
DARKING
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1534 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
Canada8033 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
Poland17671 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
Poland17671 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
OSC
00:00
OSC Elite Rising Star #18
CranKy Ducklings116
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RuFF_SC2 171
SteadfastSC 168
Vindicta 41
StarCraft: Brood War
GuemChi 1843
Artosis 625
NaDa 27
Dota 2
febbydoto30
LuMiX1
Counter-Strike
tarik_tv4287
Fnx 2039
fl0m1333
taco 639
Super Smash Bros
hungrybox403
Other Games
summit1g12101
Day[9].tv956
shahzam521
JimRising 436
C9.Mang0305
Maynarde114
ViBE44
Livibee39
Organizations
Other Games
gamesdonequick901
Counter-Strike
PGL334
Other Games
BasetradeTV84
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 18 non-featured ]
StarCraft 2
• Berry_CruncH114
• Hupsaiya 82
• davetesta4
• Kozan
• LaughNgamezSOOP
• sooper7s
• AfreecaTV YouTube
• intothetv
• Migwel
• IndyKCrew
StarCraft: Brood War
• RayReign 27
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota22082
League of Legends
• Doublelift5173
Other Games
• Day9tv956
• Shiphtur299
Upcoming Events
The PondCast
8h
Replay Cast
22h
Korean StarCraft League
2 days
CranKy Ducklings
2 days
OSC
2 days
SC Evo Complete
2 days
DaveTesta Events
2 days
Replay Cast
2 days
Sparkling Tuna Cup
3 days
uThermal 2v2 Circuit
3 days
[ Show More ]
Replay Cast
4 days
Wardi Open
4 days
Monday Night Weeklies
4 days
Replay Cast
4 days
Replay Cast
6 days
Replay Cast
6 days
Liquipedia Results

Completed

Proleague 2026-02-22
LiuLi Cup: 2025 Grand Finals
Underdog Cup #3

Ongoing

KCM Race Survival 2026 Season 1
Acropolis #4 - TS5
Jeongseon Sooper Cup
Spring Cup 2026
WardiTV Winter 2026
PiG Sty Festival 7.0
Nations Cup 2026
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual
eXTREMESLAND 2025
SL Budapest Major 2025

Upcoming

[S:21] ASL SEASON OPEN 2nd Round
[S:21] ASL SEASON OPEN 2nd Round Qualifier
ASL Season 21: Qualifier #1
ASL Season 21: Qualifier #2
ASL Season 21
Acropolis #4 - TS6
Acropolis #4
HSC XXIX
uThermal 2v2 2026 Main Event
Bellum Gens Elite Stara Zagora 2026
RSL Revival: Season 4
IEM Atlanta 2026
Asian Champions League 2026
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
FISSURE Playground #3
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
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.