• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 15:13
CEST 21:13
KST 04:13
  • 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
[ASL21] Ro8 Preview Pt2: Progenitors8Code S Season 1 - RO12 Group A: Rogue, Percival, Solar, Zoun13[ASL21] Ro8 Preview Pt1: Inheritors16[ASL21] Ro16 Preview Pt2: All Star10Team Liquid Map Contest #22 - The Finalists22
Community News
Weekly Cups (April 27-May 4): Clem takes triple0RSL Revival: Season 5 - Qualifiers and Main Event11Code S Season 1 (2026) - RO12 Results12026 GSL Season 1 Qualifiers25Maestros of the Game 2 announced9
StarCraft 2
General
Weekly Cups (April 27-May 4): Clem takes triple Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool Code S Season 1 (2026) - RO12 Results Code S Season 1 - RO12 Group A: Rogue, Percival, Solar, Zoun Team Liquid Map Contest #22 - The Finalists
Tourneys
Sparkling Tuna Cup - Weekly Open Tournament RSL Revival: Season 5 - Qualifiers and Main Event StarCraft Evolution League (SC Evo Biweekly) 2026 GSL Season 2 Qualifiers $1,400 SEL Season 3 Ladder Invitational
Strategy
Custom Maps
[D]RTS in all its shapes and glory <3 [A] Nemrods 1/4 players [M] (2) Frigid Storage
External Content
Mutation # 524 Death and Taxes The PondCast: SC2 News & Results Mutation # 523 Firewall Mutation # 522 Flip My Base
Brood War
General
Do we have a pimpest plays list? AI Question ASL21 General Discussion Using AI to optimize marketing campaigns [ASL21] Ro8 Preview Pt2: Progenitors
Tourneys
[ASL21] Ro8 Day 4 [ASL21] Ro8 Day 3 [Megathread] Daily Proleagues [ASL21] Ro8 Day 2
Strategy
Simple Questions, Simple Answers Fighting Spirit mining rates What's the deal with APM & what's its true value Any training maps people recommend?
Other Games
General Games
Stormgate/Frost Giant Megathread Dawn of War IV OutLive 25 (RTS Game) Daigo vs Menard Best of 10 Nintendo Switch Thread
Dota 2
The Story of Wings Gaming
League of Legends
G2 just beat GenG in First stand
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Vanilla Mini Mafia Mafia Game Mode Feedback/Ideas TL Mafia Community Thread Five o'clock TL Mafia
Community
General
US Politics Mega-thread European Politico-economics QA Mega-thread Russo-Ukrainian War Thread 3D technology/software discussion Canadian Politics Mega-thread
Fan Clubs
The IdrA Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece [Req][Books] Good Fantasy/SciFi books
Sports
2024 - 2026 Football Thread Formula 1 Discussion McBoner: A hockey love story
World Cup 2022
Tech Support
streaming software Strange computer issues (software) [G] How to Block Livestream Ads
TL Community
The Automated Ban List
Blogs
Movie Stars In Video Games: …
TrAiDoS
ramps on octagon
StaticNine
Broowar part 2
qwaykee
Funny Nicknames
LUCKY_NOOB
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1354 users

The Big Programming Thread - Page 77

Forum Index > General Forum
Post a Reply
Prev 1 75 76 77 78 79 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.
Kambing
Profile Joined May 2010
United States1176 Posts
Last Edited: 2011-09-08 19:55:14
September 08 2011 19:51 GMT
#1521
On September 09 2011 03:37 icystorage wrote:
Show nested quote +
On September 08 2011 23:39 Kambing wrote:
On September 08 2011 21:57 icystorage wrote:
i would like to thank the people who helped my on my last problem, yes it was working properly, my bad D:

i have another problem :< im stuck and i hope you guys can help
it compiles correctly but gives an error when i use it


> myprod n m = if m == 0 then 0 else (myprod n (m - 1)) + n

> myprod2 n m = if n == 1 then m else if n mod 2 == 1 then (myprod (n div 2) (m + m)) + m else (myprod (n div 2) (m + m))



this is a multiplication function.
myprod is my old fcn, its very slow so i tried improving it by using binary multiplication.

myprod2 is what i have come up but it returns an error even though it compiles properly, the error is

no instance for (num ((a0->a0->a0->a10->a20)) arising from the literal '5'
possible fix: add an instance declaration for (num ((a0->a0->a0->a10->a20))

and my problem is i dont know how to fix it =/


That's a compiler error actually. The problem is that when you use standard function names as infix operators, you need to encase them in backquotes, e.g., n `div` 2 is equivalent to div 2 n. Writing 1 div 2 is in effect saying "apply the div function (of type Integral a => a -> a -> a) to the constant 1 (of type Num a => a) and then take the result and apply the constant 2". Clearly 1 is not a function so the whole thing fails to type check.

EDIT: because of typeclasses, Haskell can give 1 div 2 a type

1 div 2 :: (Num a1, Num ((a -> a -> a) -> a1 -> t), Integral a) => t


Because it tries to unify the type of 1 with a function type that can take the div function as an argument. However, it fails when the typechecker tries to find an instantiation of the type variable a that satisfies the constraint. Hence the nasty compiler error that you see.

*holds hand* thank you my friend... thank you... how could i be so stupid ._.


No problem friend. Your example surprised a pair of Haskell hackers for a few minutes. It also completely stumped them why you ever want to treat a number as a function. It took a former Haskell design committee member a few minutes to point out that with sufficient typeclass hackery, you can make the following Haskell fragment


10 PRINT "Hello world!"
20 PRINT "This is an embedded BASIC program written in Haskell"


thanks to the Embedded BASIC Haskell package.
Frigo
Profile Joined August 2009
Hungary1023 Posts
Last Edited: 2011-09-09 07:19:48
September 09 2011 07:11 GMT
#1522
Okay, my pointer/reference wrapper is nearing completion. Passed most of my basic little tests, but I will make a proper unit test and documentation for it later.
http://frigocoder.dyndns.org/svn/Frigo/Lang/ref

It still has some quirks though. Because it is implicitly convertible to pointer and reference as well, it will fail for ambiguous overloads. I solved this problem for friend binary operators, but not for functions, alien assignment operators or alien/friend compound assignment operators (due to an unimplemented feature in GCC). In those cases users need to explicitly specify whether they want pointer or reference with get() or getPointer(). Chained implicit conversions do not work either, due to the same reason that prevented me from setting the precedence of pointer conversion lower: C++ allows only 1 implicit conversion (via operator or constructor) in a conversion sequence.

Dereferencing with unary * returns a const reference to the object, but the unary address-of & operator is proxied to the underlying class, for example this allows getting a T* from ref<shared_ptr<T>>, but why would you do that anyway? I'm thinking about returning simply a pointer to the object. It's a minor issue really, users should use get() and getPointer() anyway.

Binary operators now return whatever they would return in T, I'm thinking about changing them to return ref<X>, I'm rather undecided on this one. Changing would require different treatment of return types and it would be slower, but it would solve chaining in classes that return pointers in binary operators. Pointers or rvalues are straightforward, just ref<X>(ptr or rvalue), references are a bit icky, they would need ref<X>(&reference), but that's unsafe, however somewhat acceptable. ref<X>(reference) would copy the result, which is not acceptable in a lot of cases, for example, T& Array<T>::operator [] (int i).

And of course, due to an unimplemented feature in GCC, compound assignment operators are not proxied to the underlying class, it is broken down as an assignment to the result of a binary operator. For example, x += y is broken down as x = (x + y). I believe this is better anyway.
http://www.fimfiction.net/user/Treasure_Chest
mmp
Profile Blog Joined April 2009
United States2130 Posts
Last Edited: 2011-09-09 12:43:37
September 09 2011 12:17 GMT
#1523
On September 09 2011 00:17 Nisani201 wrote:
w3schools should not be included in the OP; read this for more info.

Those are definitely good links. w3schools is definitely sub-intermediate and not even correct at times. Nonetheless it offers hands-on intro material on a wide variety of web technologies, and it delivers it without the daunting complexity of w3c's specifications (e.g. http://www.w3.org/TR/CSS/#css3 is not a fun read). Maybe noobies should step up their game, and it is nice to see people pointing out w3schools's faults (there are many) -- but everyone needs that nooby first tutorial that holds their hand the entire way before they go into the deep end.

MDN's js guide is very good. Some of MDN's other docs are very poor.

Maybe the OP can update the post with these new links.
I (λ (foo) (and (<3 foo) ( T_T foo) (RAGE foo) )) Starcraft
f0rzaa
Profile Joined August 2011
United States59 Posts
September 11 2011 20:58 GMT
#1524
Is it ok to bother you coding bosses with extremely simple newb stuff (first programming class lulz) or is this more for in depth stuff?
got'em
Frigo
Profile Joined August 2009
Hungary1023 Posts
September 11 2011 23:40 GMT
#1525
On September 12 2011 05:58 f0rzaa wrote:
Is it ok to bother you coding bosses with extremely simple newb stuff (first programming class lulz) or is this more for in depth stuff?

Of course it's okay. Hit us.
http://www.fimfiction.net/user/Treasure_Chest
f0rzaa
Profile Joined August 2011
United States59 Posts
September 12 2011 00:20 GMT
#1526
Well the return reserved word, early in the text it says without the use of return sometimes my programs may act in a way I don't want them to. My instructor told us not to worry about it for now because we will cover it later on but I want to know, how does exactly return effect my program if it's included and if it's not? My first program didn't have it but it seemed to work fine, so when would these "unwanted results" occur?
got'em
Frigo
Profile Joined August 2009
Hungary1023 Posts
Last Edited: 2011-09-12 00:42:25
September 12 2011 00:37 GMT
#1527
Which programming language? In what function, main or something else? What does this function should return?

In C and C++ you pretty much need a return statement in non-void functions, otherwise it may return garbage from the stack. The compiler even warns you about it. I tested it with int, and a custom class as return type. While it does seem to return a 0 value by default for int, if the return type is a custom class, it does NOT execute the default constructor. It fills the retunr object with garbage, so yes, it will behave in unpredictable ways.

The main function does not seem to have any trouble, it seems to return 0 by default (if it returns int). And obviously return is not needed for void functions.
http://www.fimfiction.net/user/Treasure_Chest
Deleted_143
Profile Joined October 2010
Australia256 Posts
Last Edited: 2011-09-12 00:43:26
September 12 2011 00:40 GMT
#1528
--- Nuked ---
f0rzaa
Profile Joined August 2011
United States59 Posts
September 12 2011 02:07 GMT
#1529
I think this was the first example of the class(C++) intro:


#include <iostream>

using namespace std;

int main()
{
cout << "Hello world!" << endl;
return 0;
}

I realize this might be extremely simple but I was playing around with Codeblocks and I seem to get the same thing with or without the return 0;. Hello world! is printed either way.

So basically my question is why's it work with and without it if it's needed?
got'em
KaluGOSU
Profile Blog Joined May 2010
United States171 Posts
September 12 2011 02:09 GMT
#1530
On July 07 2010 22:37 Adeny wrote:
Am I the only one who would like a go-to thread to ask questions rather than having to make a new thread?

nope i agree
Halt! Thou shalt not pass. Thou hast much anger, young one
Frigo
Profile Joined August 2009
Hungary1023 Posts
September 12 2011 02:12 GMT
#1531
On September 12 2011 11:07 f0rzaa wrote:
I think this was the first example of the class(C++) intro:


#include <iostream>

using namespace std;

int main()
{
cout << "Hello world!" << endl;
return 0;
}

I realize this might be extremely simple but I was playing around with Codeblocks and I seem to get the same thing with or without the return 0;. Hello world! is printed either way.

So basically my question is why's it work with and without it if it's needed?


There is no caller function that would do anything with the return value of main, so even if it "returns" garbage, there is no problem with it. (Both Linux and Windows can check for the return value, the latter with IF ERRORLEVEL, but it was a while ago since I used it). You may still get a compiler warning though.
http://www.fimfiction.net/user/Treasure_Chest
EvanED
Profile Joined October 2009
United States111 Posts
Last Edited: 2011-09-12 02:22:54
September 12 2011 02:21 GMT
#1532
On September 12 2011 09:40 Klesky wrote:
Most compilers willshould? issue a syntax error* if you don't include a return statement on a non-void function - I wouldn't worry about it. ... edit: this is assuming it's C++.

Continuing to assume C++, it's easy to wind up with a function like
int foo(int a) {
if(a) { return 0; }
}

which is legal. (In other words, a compiler that rejects that violates the standard.) GCC doesn't even warn about that with default settings. (That's level 1 in MSVC, so unless you turn off all warnings or disable that one specifically, you'll see it.)

I'm also going to bet your first program was something like 'void main() {}' would would explain why it didn't have a return statement.

If it was, get your teacher to throw out your book. ;-)

G++ hasn't even compiled that for ages, though MSVC compiles it without warning. (Near as I can tell, a void return from main is accepted by g++ 2.95 and rejected by 3.0. The C complier accepts it, but with a warning on default settings.y)
Frigo
Profile Joined August 2009
Hungary1023 Posts
Last Edited: 2011-09-12 16:21:54
September 12 2011 16:11 GMT
#1533
I wanna post a piece of code because I'm goddamn proud of it.

One guy at stackoverflow.com basically asked whether it is possible to detect cycles in an alleged binary tree in O(n) time and O(1) space, in an analogue to the Floyd cycle detection in lists.

After a few days of thinking I managed to come up with a pretty nice solution. I flatten the binary tree to a list-like structure, meanwhile watching for cycles. Cycle detection, tree flattening and in-order traversal in one piece!

It starts at the root node as its current. In every iteration it either
1) gets it left child ("top") and the predecessor element ("bottom"), then move THE ENTIRE LEFT SUBTREE above the current, preserving the in-order sequence of nodes, then of course moves its current pointer to traverse the newly discovered nodes (okay, this is basically two cases but handled similarly).
2) if it has no left subtree then it moves to the next node in the right subtree that indeed has one, visiting nodes in-order.

The effect of these two steps is flattening the tree. It also incorporates Floyd's cycle detection algorithm at two places where it is possible to get in a loop. One is where it searches for the predecessor node, the other is where it searches for a node with a left subtree. Every single cycle will get caught in one of these parts sooner or later.

Every time it executes a moving of a left subtree, it trades a "left-child relation" to a "right-child relation", and it arguably moves all left subtrees. I also think it visits all edges at most twice but I'm not sure, it would need heavier proof.

+ Show Spoiler [Example code] +


#include <cstdio>
#include <iostream>
#include <queue>

#define null NULL
#define int32 int

using namespace std;

/**
* Binary tree node class
**/

template <class T>
class Node
{
public:

/* Public Constructors */

Node () :
left (null),
right (null),
value ()
{}

explicit Node (T x) :
left (null),
right (null),
value (x)
{}

/* Public Attributes */

Node* left;
Node* right;
T value;

};

/**
* This exception is thrown when the flattener & cycle detector algorithm encounters a cycle
**/

class CycleException
{

public:

/* Public Constructors */

CycleException () {}
virtual ~CycleException () {}

};

/**
* This functions flattens an alleged binary tree, throwing a new CycleException when encountering a cycle. Returns the root of the flattened binary tree.
**/

template <class T>
Node<T>* flatten (Node<T>* current)
{
// Count steps (well, kinda) to determine runtime
int32 steps = 0;
// Keep track of the root node so the tree is not lost
Node<T>* root = current;
// Keep track of the parent of the current node since it is needed for insertions
Node<T>* parent = null;

// Loop while there are subtrees to process
while( current->left != null or current->right != null ){

steps++;

// There is a left subtree, so current has a predecessor, which we will call "bottom" of the subtree
if( current->left != null ){
Node<T>* top = current->left;
Node<T>* bottom;
// The top and the bottom is one and the same
if( top->right == null ){
bottom = top;
}
// The bottom is buried in the right subtree of top
if( top->right != null ){
// Find it using Floyd's cycle detection algorithm applied to right childs
Node<T>* turtle = top;
Node<T>* hare = top->right;
while( hare->right != null ){
if( turtle == hare ){
throw new CycleException();
}
if( hare->right != null ){
steps++;
hare = hare->right;
}
if( hare->right != null ){
steps++;
hare = hare->right;
}
turtle = turtle->right;
}
bottom = hare;
}
// Remove subtree from current
current->left = null;
// Insert subtree between the current node and its parent, if there is any
if( parent != null ){
parent->right = top;
}
bottom->right = current;
// If the current node is the root then the top is the new root
if( root == current ){
root = top;
}
// Step up to process the top, parent remains the same
current = top;
continue;
}

// There is only a right subtree, Floyd's cycle detection algorithm must be applied to find a node that has a left subtree
if( current->left == null and current->right != null ){
cout << "Visited " << dec << current->value << " @ 0x" << hex << reinterpret_cast<int32>(current) << endl;
Node<T>* hare = current->right;
Node<T>* hareParent = current;
Node<T>* turtle = current;
while( hare->left == null and hare->right != null ){
if( turtle == hare ){
throw new CycleException();
}
if( hare->left == null and hare->right != null ){
cout << "Visited " << dec << hare->value << " @ 0x" << hex << reinterpret_cast<int32>(hare) << endl;
steps++;
hare = hare->right;
hareParent = hareParent->right;
}
if( hare->left == null and hare->right != null ){
cout << "Visited " << dec << hare->value << " @ 0x" << hex << reinterpret_cast<int32>(hare) << endl;
steps++;
hare = hare->right;
hareParent = hareParent->right;
}
turtle = turtle->right;
}
current = hare;
parent = hareParent;
continue;
}

}

cout << "Visited " << dec << current->value << " @ 0x" << hex << reinterpret_cast<int32>(current) << endl;
cout << "Steps taken: " << dec << steps << endl;

// there are no more subtrees to process, we are finished, the tree does not contain cycles
return root;

}

template <class T>
void traverseFlat (Node<T>* current)
{
while( current != null ){
cout << dec << current->value << " @ 0x" << hex << reinterpret_cast<int32>(current) << endl;
current = current->right;
}
}

template <class T>
Node<T>* makeCompleteBinaryTree (int32 maxNodes)
{
Node<T>* root = new Node<T>();
queue<Node<T>*> q;
q.push(root);
int32 nodes = 1;
while( nodes < maxNodes ){
Node<T>* node = q.front();
q.pop();
node->left = new Node<T>();
q.push(node->left);
nodes++;
if( nodes < maxNodes ){
node->right = new Node<T>();
q.push(node->right);
nodes++;
}
}
return root;
}

template <class T>
void inorderLabel (Node<T>* root)
{
int32 label = 0;
inorderLabel(root, label);
}

template <class T>
void inorderLabel (Node<T>* root, int32& label)
{
if( root == null ){
return;
}
inorderLabel(root->left, label);
root->value = label++;
inorderLabel(root->right, label);
}


int32 main (int32 argc, char* argv[])
{
if(argc||argv){}

typedef Node<int32> Node;

// Make binary tree and label it in-order
Node* root = makeCompleteBinaryTree<int32>(1 << 16);
inorderLabel(root);

// Try to flatten it
try{
root = flatten(root);
}catch(CycleException*){
cout << "Oh noes, cycle detected!" << endl;
return 0;
}

// Traverse its flattened form
traverseFlat(root);

}


http://www.fimfiction.net/user/Treasure_Chest
Typhon
Profile Joined July 2009
United States387 Posts
September 12 2011 16:43 GMT
#1534
I haven't examined the solution that closely, but isn't mutating the original tree kind of cheating the O(1) space requirement?
Frigo
Profile Joined August 2009
Hungary1023 Posts
Last Edited: 2011-09-12 17:21:05
September 12 2011 16:57 GMT
#1535
I doubt it. It does not create new edges, only rearranges them, unlike Morris traversal, and it can be argued even Morris is O(1). I can not think of any sensible storage method that would incur any overhead due to this. Definitely not the common Node structure with left and right pointers.

By the way, the "inorderLabel" function is there only to demonstrate that it indeed does print nodes out in-order. It is not part of the algorithm.
http://www.fimfiction.net/user/Treasure_Chest
Typhon
Profile Joined July 2009
United States387 Posts
September 12 2011 17:33 GMT
#1536
I mean, Morris traversal restores the original state of the tree afterwards, so while it isn't thread-safe, it keeps the tree intact. Your algorithm seems to leave the tree in a flattened state.
catamorphist
Profile Joined May 2010
United States297 Posts
Last Edited: 2011-09-12 17:37:31
September 12 2011 17:36 GMT
#1537
I agree with Typhon, I don't think it's fair if you don't count the time spent to make the ("alleged") binary tree a binary tree again!

But it's a neat idea, and I definitely can't think of a better way to accomplish it in constant space.
http://us.battle.net/sc2/en/profile/281144/1/catamorphist/
Clank
Profile Joined April 2011
United States548 Posts
September 13 2011 01:59 GMT
#1538
ok, im in high school and looking for some good extracurriculars for colleges. I have limited knowledge in programming, as I've only taken 2 classes, one intro to basic at school, and then an intro to python. I did very well in those classes and enjoyed them , but still, im quite nooby. Basically what im wondering is, do you think it would be possible for me to try and learn how to make a very basic app for the app store? And if that would be too challenging, do you have any suggestions to try and incorporate programming into a fun, good extracurricular?
catamorphist
Profile Joined May 2010
United States297 Posts
September 13 2011 04:26 GMT
#1539
On September 13 2011 10:59 Clank wrote:
ok, im in high school and looking for some good extracurriculars for colleges. I have limited knowledge in programming, as I've only taken 2 classes, one intro to basic at school, and then an intro to python. I did very well in those classes and enjoyed them , but still, im quite nooby. Basically what im wondering is, do you think it would be possible for me to try and learn how to make a very basic app for the app store? And if that would be too challenging, do you have any suggestions to try and incorporate programming into a fun, good extracurricular?


No, you could do it in a couple weeks worth of evenings. Go do it!
http://us.battle.net/sc2/en/profile/281144/1/catamorphist/
Frigo
Profile Joined August 2009
Hungary1023 Posts
Last Edited: 2011-09-13 06:51:07
September 13 2011 05:33 GMT
#1540
On September 13 2011 02:33 Typhon wrote:
I mean, Morris traversal restores the original state of the tree afterwards, so while it isn't thread-safe, it keeps the tree intact. Your algorithm seems to leave the tree in a flattened state.


On September 13 2011 02:36 catamorphist wrote:
I agree with Typhon, I don't think it's fair if you don't count the time spent to make the ("alleged") binary tree a binary tree again!

But it's a neat idea, and I definitely can't think of a better way to accomplish it in constant space.


Well if the problem specification requires the immutability of the tree then yeah, it requires O(n) space to store the original tree (Edit: how to copy an alleged tree with cycles anyway?). It is not possible to restore it solely from the in-order traversal / flattened form.

However it might be possible to modify the algorithm such that instead of flattening, it reduces the tree to some kind of zig-zag form, storing enough information to reconstruct the tree. It sure as hell would be difficult to construct such an algorithm
http://www.fimfiction.net/user/Treasure_Chest
Prev 1 75 76 77 78 79 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 4h 47m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
mouzHeroMarine 537
IndyStarCraft 113
UpATreeSC 99
BRAT_OK 61
JuggernautJason34
MindelVK 29
StarCraft: Brood War
Britney 23316
Calm 3706
ggaemo 236
Soma 218
Dewaltoss 91
Aegong 34
sSak 31
Backho 25
Movie 16
ajuk12(nOOB) 9
Dota 2
XaKoH 447
monkeys_forever208
Counter-Strike
pashabiceps2682
Heroes of the Storm
Liquid`Hasu336
Other Games
Grubby5355
B2W.Neo1695
Liquid`RaSZi1164
FrodaN1111
Beastyqt753
qojqva735
shahzam261
C9.Mang0222
DeMusliM171
KnowMe124
Hui .83
Mew2King63
elazer53
Trikslyr52
Organizations
Other Games
BasetradeTV415
Dota 2
PGL Dota 2 - Main Stream39
StarCraft 2
angryscii 20
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 20 non-featured ]
StarCraft 2
• Reevou 10
• Dystopia_ 2
• Kozan
• Migwel
• sooper7s
• AfreecaTV YouTube
• intothetv
• IndyKCrew
• LaughNgamezSOOP
StarCraft: Brood War
• HerbMon 31
• 80smullet 18
• Michael_bg 5
• RayReign 2
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
League of Legends
• imaqtpie1424
Other Games
• WagamamaTV452
• Scarra338
• Shiphtur284
Upcoming Events
PiGosaur Cup
4h 47m
GSL
14h 17m
Classic vs Cure
Maru vs Rogue
GSL
1d 14h
SHIN vs Zoun
ByuN vs herO
OSC
1d 15h
OSC
1d 17h
Replay Cast
2 days
Escore
2 days
The PondCast
2 days
WardiTV Invitational
2 days
Zoun vs Ryung
Lambo vs ShoWTimE
OSC
3 days
[ Show More ]
Replay Cast
3 days
CranKy Ducklings
3 days
RSL Revival
3 days
SHIN vs Bunny
ByuN vs Shameless
WardiTV Invitational
3 days
Krystianer vs TriGGeR
Cure vs Rogue
uThermal 2v2 Circuit
3 days
BSL
3 days
Replay Cast
4 days
Sparkling Tuna Cup
4 days
RSL Revival
4 days
Cure vs Zoun
Clem vs Lambo
WardiTV Invitational
4 days
BSL
4 days
GSL
5 days
Afreeca Starleague
5 days
Monday Night Weeklies
5 days
Afreeca Starleague
6 days
CranKy Ducklings
6 days
Liquipedia Results

Completed

Proleague 2026-05-02
WardiTV TLMC #16
Nations Cup 2026

Ongoing

BSL Season 22
ASL Season 21
CSL 2026 SPRING (S20)
IPSL Spring 2026
KCM Race Survival 2026 Season 2
Acropolis #4
SCTL 2026 Spring
RSL Revival: Season 5
2026 GSL S1
BLAST Rivals Spring 2026
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026

Upcoming

YSL S3
Escore Tournament S2: W6
KK 2v2 League Season 1
BSL 22 Non-Korean Championship
Escore Tournament S2: W7
Escore Tournament S2: W8
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
Maestros of the Game 2
2026 GSL S2
Stake Ranked Episode 3
XSE Pro League 2026
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
IEM Atlanta 2026
Asian Champions League 2026
PGL Astana 2026
TLPD

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

Advertising | Privacy Policy | Terms Of Use | Contact Us

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