• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 03:23
CET 09:23
KST 17:23
  • 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
Behind the Blue - Team Liquid History Book15Clem wins HomeStory Cup 289HomeStory Cup 28 - Info & Preview13Rongyi Cup S3 - Preview & Info8herO wins SC2 All-Star Invitational14
Community News
ACS replaced by "ASL Season Open" - Starts 21/0218LiuLi Cup: 2025 Grand Finals (Feb 10-16)23Weekly Cups (Feb 2-8): Classic, Solar, MaxPax win2Nexon's StarCraft game could be FPS, led by UMS maker10PIG STY FESTIVAL 7.0! (19 Feb - 1 Mar)13
StarCraft 2
General
How do you think the 5.0.15 balance patch (Oct 2025) for StarCraft II has affected the game? Nexon's StarCraft game could be FPS, led by UMS maker Terran Scanner Sweep Behind the Blue - Team Liquid History Book Weekly Cups (Jan 12-18): herO, MaxPax, Solar win
Tourneys
RSL Season 4 announced for March-April LiuLi Cup: 2025 Grand Finals (Feb 10-16) PIG STY FESTIVAL 7.0! (19 Feb - 1 Mar) RSL Revival: Season 4 Korea Qualifier (Feb 14) Sparkling Tuna Cup - Weekly Open Tournament
Strategy
Custom Maps
Map Editor closed ? [A] Starcraft Sound Mod
External Content
The PondCast: SC2 News & Results Mutation # 512 Overclocked Mutation # 511 Temple of Rebirth Mutation # 510 Safety Violation
Brood War
General
[ASL21] Potential Map Candidates Gypsy to Korea Which units you wish saw more use in the game? ACS replaced by "ASL Season Open" - Starts 21/02 Liquipedia.net NEEDS editors for Brood War
Tourneys
Escore Tournament StarCraft Season 1 [Megathread] Daily Proleagues Small VOD Thread 2.0 KCM Race Survival 2026 Season 1
Strategy
Fighting Spirit mining rates Zealot bombing is no longer popular? Simple Questions, Simple Answers Current Meta
Other Games
General Games
Path of Exile Diablo 2 thread Nintendo Switch Thread Battle Aces/David Kim RTS Megathread ZeroSpace Megathread
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
Mafia Game Mode Feedback/Ideas Vanilla Mini Mafia TL Mafia Community Thread
Community
General
US Politics Mega-thread Ask and answer stupid questions here! European Politico-economics QA Mega-thread The Games Industry And ATVI Russo-Ukrainian War Thread
Fan Clubs
The IdrA Fan Club The herO Fan Club!
Media & Entertainment
[Manga] One Piece Anime Discussion Thread
Sports
2024 - 2026 Football Thread
World Cup 2022
Tech Support
TL Community
The Automated Ban List
Blogs
ADHD And Gaming Addiction…
TrAiDoS
My 2025 Magic: The Gathering…
DARKING
Life Update and thoughts.
FuDDx
How do archons sleep?
8882
StarCraft improvement
iopq
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2228 users

The Big Programming Thread - Page 836

Forum Index > General Forum
Post a Reply
Prev 1 834 835 836 837 838 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.
Silvanel
Profile Blog Joined March 2003
Poland4742 Posts
Last Edited: 2017-02-06 10:11:06
February 06 2017 10:10 GMT
#16701
Haha. As a tester a major change without visible misbehaviors makes me suspicious.
Anyway, in regards to customer satisfaction we will see what end customer will say when new cars with our software hit the market.
Pathetic Greta hater.
Acrofales
Profile Joined August 2010
Spain18214 Posts
Last Edited: 2017-02-06 10:12:56
February 06 2017 10:12 GMT
#16702
On February 06 2017 19:10 Silvanel wrote:
Haha. As a tester a major change without visible misbehaviors makes me suspicious.
Anyway, in regards to customer satisfaction we will see what end customer will say when new cars with our software hit the market.

* waits for the major news story where Polish cars go on murder spree due to alleged software bug.

But seriously, congrats! Feels great to make something that gets used
maybenexttime
Profile Blog Joined November 2006
Poland5753 Posts
February 06 2017 10:36 GMT
#16703
On February 06 2017 19:12 Acrofales wrote:
Show nested quote +
On February 06 2017 19:10 Silvanel wrote:
Haha. As a tester a major change without visible misbehaviors makes me suspicious.
Anyway, in regards to customer satisfaction we will see what end customer will say when new cars with our software hit the market.

* waits for the major news story where Polish cars go on murder spree due to alleged software bug.

But seriously, congrats! Feels great to make something that gets used


Oh, I'm sure our roads would stop those cars from a murder spree, if even US Army can't handle them (there's been several accidents since they arrived).
Hanh
Profile Joined June 2016
146 Posts
Last Edited: 2017-02-06 11:30:15
February 06 2017 11:28 GMT
#16704
On February 06 2017 18:18 maybenexttime wrote:
Thanks for your input. I am, however, not sure this is going to maintain the same functionality. In my code the dialog box has a set of default values: default_initial = {'10', '0', '10', '1', '1', '1'}. By checking the validity of each input value individually, I can either replace the default value with the valid input value (default_initial{2} = answer_initial{2}) or make the field empty (default_initial{2} = '').

    if (str2double(answer_initial{2}) >= 0) & ...
(str2double(answer_initial{2}) <= str2double(answer_initial{1}))

default_initial{2} = answer_initial{2};
else
uiwait(errordlg('Support A location outside of the beam length'));
default_initial{2} = '';
open_prompt = true;
end


If I were to put all actions in the very last if statement, then upon opening the dialog box again (in the next iteration of the while loop) the initial default values would be used, and all valid inputs would be lost.


Maybe you could do something like

values = default_values; // initialize dialog box with default values
do
inputdlg(param_names, values);
errors = ""
for i = 0 to values.length-1 do
if not check_cond[i](values[i]) then
errors += error_message[i]
values[i] = ""
if errors <> "" then uiwait(errors) // show errors if any
while (errors <> "") // loop until all ok


This isn't really matlab code but I think matlab can do that.

check_cond is an array of predicates. For ex: check_cond[0] = @(x) x > 0
Silvanel
Profile Blog Joined March 2003
Poland4742 Posts
Last Edited: 2017-02-06 12:55:58
February 06 2017 12:01 GMT
#16705
On February 06 2017 19:12 Acrofales wrote:
Show nested quote +
On February 06 2017 19:10 Silvanel wrote:
Haha. As a tester a major change without visible misbehaviors makes me suspicious.
Anyway, in regards to customer satisfaction we will see what end customer will say when new cars with our software hit the market.

* waits for the major news story where Polish cars go on murder spree due to alleged software bug.

But seriously, congrats! Feels great to make something that gets used


Yeah. Thanks.
In regards to cars there are basically two major approaches:
Google, Amazon & co. want to make driverless cars. So software is handling everything.
Old car makers want to make cars which are autonomous. So software can take some action on behalf of driver, perform some functions, assist him but not eliminate the driver.
Those two approches result in totally different software and problems to overcome. We are making the latter. And while i can imagine some critical malfunction creating dangerous situation, if driver is paying attention it should not result in accident.
Pathetic Greta hater.
Manit0u
Profile Blog Joined August 2004
Poland17660 Posts
Last Edited: 2017-02-06 12:45:52
February 06 2017 12:45 GMT
#16706
Just wanted to share some craziness with you guys. I've just discovered that one of the core Rails functions (used for url generation) has easily one of the weirdest designs I've come across in my life. You know how you have functions that can take several arguments?

Java example:

public static void main(String[] args)


Now, imagine if you had a function like that:

public static void main(String[] args, String[] args2)


I guess in Java it's easy, because you'd have to explicitly encapsulate the separate args lists in brackets (I think? I'm no good with Java). Now, good practice in Rails is not using braces for function arguments. Linters like RuboCop even show this warning if you do that:


C: Style/BracesAroundHashParameters: Redundant curly braces around a hash parameter.


This creates some bizarre forms:

link_to products_path, some_arg: 'something', some_other_arg: 123, { extra_arg: 'what?', remote: true }


So, you have implied args hash up to 123, and after that comes args2.

This has seriously rattled my brain...
Time is precious. Waste it wisely.
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
Last Edited: 2017-02-06 13:28:46
February 06 2017 13:23 GMT
#16707
--- Nuked ---
mantequilla
Profile Blog Joined June 2012
Turkey781 Posts
Last Edited: 2017-02-06 13:30:33
February 06 2017 13:27 GMT
#16708
+ Show Spoiler +
On February 06 2017 21:45 Manit0u wrote:
Just wanted to share some craziness with you guys. I've just discovered that one of the core Rails functions (used for url generation) has easily one of the weirdest designs I've come across in my life. You know how you have functions that can take several arguments?

Java example:

public static void main(String[] args)


Now, imagine if you had a function like that:

public static void main(String[] args, String[] args2)


I guess in Java it's easy, because you'd have to explicitly encapsulate the separate args lists in brackets (I think? I'm no good with Java). Now, good practice in Rails is not using braces for function arguments. Linters like RuboCop even show this warning if you do that:


C: Style/BracesAroundHashParameters: Redundant curly braces around a hash parameter.


This creates some bizarre forms:

link_to products_path, some_arg: 'something', some_other_arg: 123, { extra_arg: 'what?', remote: true }


So, you have implied args hash up to 123, and after that comes args2.

This has seriously rattled my brain...





In Java:


public static void main(String[] args)


above syntax simply declares an array parameter. Array is kind of a special object, so there's nothing special or noteworthy above. It is just like any other method with an object parameter.


public static void main(String.. args)


this on the other hand maybe what you are looking for. This means an "arbitrary number of string arguments". But its illegal to use it more than once like:


public static void someMethod(String.. args, int.. ints)


above won't compile. Multiple argument syntax is only allowed once in a method declaration, and it must be the last parameter. Like:


public void method(int someInt, String.. args)


Java is not fancy and I think non fancy is clearer sometimes No unneeded syntactical sugars.
Age of Mythology forever!
maybenexttime
Profile Blog Joined November 2006
Poland5753 Posts
February 06 2017 20:07 GMT
#16709
On February 06 2017 20:28 Hanh wrote:
+ Show Spoiler +
On February 06 2017 18:18 maybenexttime wrote:
Thanks for your input. I am, however, not sure this is going to maintain the same functionality. In my code the dialog box has a set of default values: default_initial = {'10', '0', '10', '1', '1', '1'}. By checking the validity of each input value individually, I can either replace the default value with the valid input value (default_initial{2} = answer_initial{2}) or make the field empty (default_initial{2} = '').

    if (str2double(answer_initial{2}) >= 0) & ...
(str2double(answer_initial{2}) <= str2double(answer_initial{1}))

default_initial{2} = answer_initial{2};
else
uiwait(errordlg('Support A location outside of the beam length'));
default_initial{2} = '';
open_prompt = true;
end


If I were to put all actions in the very last if statement, then upon opening the dialog box again (in the next iteration of the while loop) the initial default values would be used, and all valid inputs would be lost.


Maybe you could do something like

values = default_values; // initialize dialog box with default values
do
inputdlg(param_names, values);
errors = ""
for i = 0 to values.length-1 do
if not check_cond[i](values[i] then
errors += error_message[i]
values[i] = ""
if errors <> "" then uiwait(errors) // show errors if any
while (errors <> "") // loop until all ok


This isn't really matlab code but I think matlab can do that.

check_cond is an array of predicates. For ex: check_cond[0] = @(x) x > 0



Good idea! I partly implemented that. I still have to find out how to use an error log in errordlg (how to create several separate lines of text).
emperorchampion
Profile Blog Joined December 2008
Canada9496 Posts
February 06 2017 20:26 GMT
#16710
On February 07 2017 05:07 maybenexttime wrote:
Show nested quote +
On February 06 2017 20:28 Hanh wrote:
+ Show Spoiler +
On February 06 2017 18:18 maybenexttime wrote:
Thanks for your input. I am, however, not sure this is going to maintain the same functionality. In my code the dialog box has a set of default values: default_initial = {'10', '0', '10', '1', '1', '1'}. By checking the validity of each input value individually, I can either replace the default value with the valid input value (default_initial{2} = answer_initial{2}) or make the field empty (default_initial{2} = '').

    if (str2double(answer_initial{2}) >= 0) & ...
(str2double(answer_initial{2}) <= str2double(answer_initial{1}))

default_initial{2} = answer_initial{2};
else
uiwait(errordlg('Support A location outside of the beam length'));
default_initial{2} = '';
open_prompt = true;
end


If I were to put all actions in the very last if statement, then upon opening the dialog box again (in the next iteration of the while loop) the initial default values would be used, and all valid inputs would be lost.


Maybe you could do something like

values = default_values; // initialize dialog box with default values
do
inputdlg(param_names, values);
errors = ""
for i = 0 to values.length-1 do
if not check_cond[i](values[i] then
errors += error_message[i]
values[i] = ""
if errors <> "" then uiwait(errors) // show errors if any
while (errors <> "") // loop until all ok


This isn't really matlab code but I think matlab can do that.

check_cond is an array of predicates. For ex: check_cond[0] = @(x) x > 0



Good idea! I partly implemented that. I still have to find out how to use an error log in errordlg (how to create several separate lines of text).


You can make it multi-line by using:

errordlg({'Line 1'; 'Line 2'})
TRUEESPORTS || your days as a respected member of team liquid are over
dsyxelic
Profile Joined May 2010
United States1417 Posts
Last Edited: 2017-02-06 23:04:17
February 06 2017 22:59 GMT
#16711
Hi, is anyone familiar with android apps/android studio?

I have a group project at school for a fairly trivial class but basically long story short I'm making a basic app.

I have the register, login, and a simple SQLite database set up.

What we want is to have 2 different types of users: a regular user and user with extra privileges.

Regular users will only be allowed to browse the pages on the android app (will basically list out events on campus for the week and details on the events)

The special users, or admins, will be able to do all that + access pages that allow them to edit the details from there (for example, the time of event, description of event, delete the event as a whole, etc.)

what is a good/simple approach to do this? Note I have 0 experience with android studio and have been basically watching/reading tutorials and guides to get through this.

My (our) initial thought was to have all users sign up as regular members and have us manually switch users to have special privileges once it is confirmed they are an actual event organizer (not very practical but its ok to assume this is ok for the purpose of our class) . However as I was working on this project, I realized I have no idea how to actually do that and if it is possible (able to be done with reasonable effort) with what I have.

So key questions

1. Is it possible to have them split as regular/special members in SQLite and manually 'upgrade' them from our end? If so, how? (Links to resources are welcome)

2. Is it possible to show different pages based on their membership status? Again if so, how?

Sorry in advance if these questions are dumb, I'm actually a complete noob to android apps/databases. thanks!
TL/SKT
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2017-02-07 02:23:49
February 06 2017 23:48 GMT
#16712
I hate linear algebra so far. Basic concepts presented in 10,000 confusing ways. I probably need to know this all, but I can't wait until it gets to something more applicable.


studying stuff for me c quiz
question it asks:

what possible problems are associated with this?


int x;
scanf(“%d”, x);


I am guessing the answer it wants is that there is no ampersand before the x

ampersand means: put %d into the address of x?

but could someone explain what happens if you don't have the ampersand there?




and then another question in the study guide asks what is wrong with this:


#include <stdio.h>
void p1(int x) {
printf("%d", x);
}
void p1(float x) {
printf("%d", x);
}
int main() {
p1(2);
return 0;
}


I am guessing the problem is that you can't overload in C. but also I thought the teacher taught us that you have to use prototypes. When I try to run the code it does give error messages about the overloading, but nothing about not having the prototype.
WolfintheSheep
Profile Joined June 2011
Canada14127 Posts
February 07 2017 03:34 GMT
#16713
On February 07 2017 08:48 travis wrote:

int x;
scanf(“%d”, x);


I am guessing the answer it wants is that there is no ampersand before the x

ampersand means: put %d into the address of x?

but could someone explain what happens if you don't have the ampersand there?

Pointers.

Wouldn't be so vague normally, but this is such a critical part of C that you really should learn the ins-and-outs.

and then another question in the study guide asks what is wrong with this:


#include <stdio.h>
void p1(int x) {
printf("%d", x);
}
void p1(float x) {
printf("%d", x);
}
int main() {
p1(2);
return 0;
}


I am guessing the problem is that you can't overload in C. but also I thought the teacher taught us that you have to use prototypes. When I try to run the code it does give error messages about the overloading, but nothing about not having the prototype.

Granted, my C is quite rusty, but pretty sure this has nothing to do with prototypes. There's a time and place for those, and this doesn't look like one of them.
Average means I'm better than half of you.
Neshapotamus
Profile Blog Joined May 2006
United States163 Posts
February 07 2017 03:38 GMT
#16714
travis - Linear Algebra is the most important subject you will ever learn. Learn it carefully. It is very practical in every subject.
Hanh
Profile Joined June 2016
146 Posts
February 07 2017 07:22 GMT
#16715
On February 07 2017 08:48 travis wrote:
I hate linear algebra so far. Basic concepts presented in 10,000 confusing ways. I probably need to know this all, but I can't wait until it gets to something more applicable.


It seems basic because it's familiar. It's familiar because it's used everywhere. But it's important to master the fundamentals as other applications are derived from it. I don't know any engineering domain that isn't using it in a way or another.

Anyway,


studying stuff for me c quiz
question it asks:

what possible problems are associated with this?


int x;
scanf(“%d”, x);


I am guessing the answer it wants is that there is no ampersand before the x

ampersand means: put %d into the address of x?

but could someone explain what happens if you don't have the ampersand there?



Without the &, x would be interpreted as containing an address. So if x is an int pointer, it's all good but
since x is just an int, it will most likely trigger a segmentation fault. If you are unlucky, x contains the address of some memory in your process and you'll be trashing something. In other words, it's undefined behavior.


and then another question in the study guide asks what is wrong with this:


#include <stdio.h>
void p1(int x) {
printf("%d", x);
}
void p1(float x) {
printf("%d", x);
}
int main() {
p1(2);
return 0;
}


I am guessing the problem is that you can't overload in C. but also I thought the teacher taught us that you have to use prototypes. When I try to run the code it does give error messages about the overloading, but nothing about not having the prototype.


Besides that, in the second p1, printf expects an int (%d) but you pass a float. printf doesn't do any conversion because it doesn't know anything about the meaning of the format string (it could be only known at run time too). I guess the study guide wants to show a common pitfall associated with printf.

mantequilla
Profile Blog Joined June 2012
Turkey781 Posts
February 07 2017 12:13 GMT
#16716
+ Show Spoiler +
On February 07 2017 07:59 dsyxelic wrote:
Hi, is anyone familiar with android apps/android studio?

I have a group project at school for a fairly trivial class but basically long story short I'm making a basic app.

I have the register, login, and a simple SQLite database set up.

What we want is to have 2 different types of users: a regular user and user with extra privileges.

Regular users will only be allowed to browse the pages on the android app (will basically list out events on campus for the week and details on the events)

The special users, or admins, will be able to do all that + access pages that allow them to edit the details from there (for example, the time of event, description of event, delete the event as a whole, etc.)

what is a good/simple approach to do this? Note I have 0 experience with android studio and have been basically watching/reading tutorials and guides to get through this.

My (our) initial thought was to have all users sign up as regular members and have us manually switch users to have special privileges once it is confirmed they are an actual event organizer (not very practical but its ok to assume this is ok for the purpose of our class) . However as I was working on this project, I realized I have no idea how to actually do that and if it is possible (able to be done with reasonable effort) with what I have.

So key questions

1. Is it possible to have them split as regular/special members in SQLite and manually 'upgrade' them from our end? If so, how? (Links to resources are welcome)

2. Is it possible to show different pages based on their membership status? Again if so, how?

Sorry in advance if these questions are dumb, I'm actually a complete noob to android apps/databases. thanks!



do you have a backend server set up that, stores events and users apart from the android app? or you just have an android app?
Age of Mythology forever!
dsyxelic
Profile Joined May 2010
United States1417 Posts
February 07 2017 21:25 GMT
#16717
On February 07 2017 21:13 mantequilla wrote:
+ Show Spoiler +
On February 07 2017 07:59 dsyxelic wrote:
Hi, is anyone familiar with android apps/android studio?

I have a group project at school for a fairly trivial class but basically long story short I'm making a basic app.

I have the register, login, and a simple SQLite database set up.

What we want is to have 2 different types of users: a regular user and user with extra privileges.

Regular users will only be allowed to browse the pages on the android app (will basically list out events on campus for the week and details on the events)

The special users, or admins, will be able to do all that + access pages that allow them to edit the details from there (for example, the time of event, description of event, delete the event as a whole, etc.)

what is a good/simple approach to do this? Note I have 0 experience with android studio and have been basically watching/reading tutorials and guides to get through this.

My (our) initial thought was to have all users sign up as regular members and have us manually switch users to have special privileges once it is confirmed they are an actual event organizer (not very practical but its ok to assume this is ok for the purpose of our class) . However as I was working on this project, I realized I have no idea how to actually do that and if it is possible (able to be done with reasonable effort) with what I have.

So key questions

1. Is it possible to have them split as regular/special members in SQLite and manually 'upgrade' them from our end? If so, how? (Links to resources are welcome)

2. Is it possible to show different pages based on their membership status? Again if so, how?

Sorry in advance if these questions are dumb, I'm actually a complete noob to android apps/databases. thanks!



do you have a backend server set up that, stores events and users apart from the android app? or you just have an android app?


just an android app

TL/SKT
Acrofales
Profile Joined August 2010
Spain18214 Posts
February 07 2017 21:36 GMT
#16718
If you don't have a server, I don't think there's much point to logging in at all, but in that case I can think of 2 ways of doing this:

1) A static database that you ship with the app, in which there are predefined users (some of which are flagged as admin), and within the app some functionality is locked (invisible) if the admin flag is off.

2) Two different apps, one for regular and one for admin users.

Regarding your second question: yes. You can either lock the access (in other words, the button to access the admin stuff is simply not there for regular users), lock the functionality (the users can see the admin functionality, but it doesn't do anything) or both. The most secure option is both, the easiest to implement is just to lock access.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
February 07 2017 21:36 GMT
#16719
verifying my intuition about combinations

say you have 4 numbers, (1, 2, 3, 4)
5 letters (a, b, c, d, e)
6 colors (red, green, blue, yellow, orange, purple)

how many combinations of a single number, letter, and color can you have?

Is it correct that it is 4 * 5 * 6?

It would seem that this is the case to me by simplifying the problem

3 letters and 3 colors would be 3 * 3, pretty simply. each letter is one of 3 colors. and then if you added 3 numbers to that, then the outcome of each of the original 3 * 3 combinations would have 3 number choices added on to it, so 3 letters and 3 colors and 3 numbers would have 3 * 3 * 3 different combinations

correct?
Acrofales
Profile Joined August 2010
Spain18214 Posts
February 07 2017 22:51 GMT
#16720
Yes
Prev 1 834 835 836 837 838 1032 Next
Please log in or register to reply.
Live Events Refresh
RSL Revival
08:00
S4 Korea Server Qualifier
CranKy Ducklings78
Gemini_1927
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
SortOf 158
ProTech48
Rex 34
StarCraft: Brood War
Hyuk 1680
Leta 88
Aegong 65
Free 39
Yoon 34
soO 19
910 18
IntoTheRainbow 15
Hm[arnc] 10
ivOry 8
[ Show more ]
Shine 8
League of Legends
JimRising 626
Super Smash Bros
Mew2King131
Other Games
gofns24656
summit1g11097
tarik_tv9806
C9.Mang0404
Organizations
Counter-Strike
PGL3378
Other Games
gamesdonequick586
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 12 non-featured ]
StarCraft 2
• Adnapsc2 10
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Jankos1024
Upcoming Events
LiuLi Cup
2h 37m
Cure vs Reynor
Clem vs Maru
Rogue vs TriGGeR
ByuN vs Serral
uThermal 2v2 Circuit
3h 37m
PSISTORM Gaming Misc
8h 32m
RSL Revival
9h 37m
AI Arena Tournament
11h 37m
Replay Cast
15h 37m
Sparkling Tuna Cup
1d 1h
LiuLi Cup
1d 2h
Ladder Legends
1d 9h
Replay Cast
1d 15h
[ Show More ]
Replay Cast
2 days
Wardi Open
2 days
Monday Night Weeklies
2 days
OSC
2 days
WardiTV Winter Champion…
3 days
Replay Cast
4 days
WardiTV Winter Champion…
4 days
Replay Cast
4 days
PiG Sty Festival
5 days
The PondCast
5 days
KCM Race Survival
5 days
WardiTV Winter Champion…
5 days
Replay Cast
5 days
PiG Sty Festival
6 days
Epic.LAN
6 days
Replay Cast
6 days
Liquipedia Results

Completed

Escore Tournament S1: W8
Rongyi Cup S3
Underdog Cup #3

Ongoing

KCM Race Survival 2026 Season 1
LiuLi Cup: 2025 Grand Finals
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

Escore Tournament S1: King of Kings
[S:21] ASL SEASON OPEN 1st Round
[S:21] ASL SEASON OPEN 1st Round Qualifier
[S:21] ASL SEASON OPEN 2nd Round
[S:21] ASL SEASON OPEN 2nd Round Qualifier
Acropolis #4
IPSL Spring 2026
HSC XXIX
uThermal 2v2 2026 Main Event
Bellum Gens Elite Stara Zagora 2026
RSL Revival: Season 4
WardiTV Winter 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 Season 23
ESL Pro League Season 23
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.