• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 03:34
CEST 09:34
KST 16:34
  • 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
[ASL19] Finals Recap: Standing Tall9HomeStory Cup 27 - Info & Preview18Classic wins Code S Season 2 (2025)16Code S RO4 & Finals Preview: herO, Rogue, Classic, GuMiho0TL Team Map Contest #5: Presented by Monster Energy6
Community News
Flash Announces Hiatus From ASL54Weekly Cups (June 23-29): Reynor in world title form?13FEL Cracov 2025 (July 27) - $8000 live event16Esports World Cup 2025 - Final Player Roster16Weekly Cups (June 16-22): Clem strikes back1
StarCraft 2
General
Weekly Cups (June 23-29): Reynor in world title form? The SCII GOAT: A statistical Evaluation PiG Sty Festival #5: Playoffs Preview + Groups Recap The GOAT ranking of GOAT rankings Statistics for vetoed/disliked maps
Tourneys
Korean Starcraft League Week 77 Master Swan Open (Global Bronze-Master 2) RSL: Revival, a new crowdfunded tournament series [GSL 2025] Code S: Season 2 - Semi Finals & Finals $5,100+ SEL Season 2 Championship (SC: Evo)
Strategy
How did i lose this ZvP, whats the proper response Simple Questions Simple Answers
Custom Maps
[UMS] Zillion Zerglings
External Content
Mutation # 480 Moths to the Flame Mutation # 479 Worn Out Welcome Mutation # 478 Instant Karma Mutation # 477 Slow and Steady
Brood War
General
Player “Jedi” cheat on CSL BW General Discussion Flash Announces Hiatus From ASL BGH Auto Balance -> http://bghmmr.eu/ Unit and Spell Similarities
Tourneys
[Megathread] Daily Proleagues [BSL20] Grand Finals - Sunday 20:00 CET Small VOD Thread 2.0 [BSL20] GosuLeague RO16 - Tue & Wed 20:00+CET
Strategy
Simple Questions, Simple Answers I am doing this better than progamers do.
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread Path of Exile What do you want from future RTS games? Beyond All Reason
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
US Politics Mega-thread Trading/Investing Thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread The Games Industry And ATVI
Fan Clubs
SKT1 Classic Fan Club! Maru Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece [\m/] Heavy Metal Thread
Sports
Formula 1 Discussion 2024 - 2025 Football Thread NBA General Discussion TeamLiquid Health and Fitness Initiative For 2023 NHL Playoffs 2024
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
Blogs
Culture Clash in Video Games…
TrAiDoS
from making sc maps to makin…
Husyelt
Blog #2
tankgirl
StarCraft improvement
iopq
Trip to the Zoo
micronesia
Customize Sidebar...

Website Feedback

Closed Threads



Active: 744 users

The Big Programming Thread - Page 836

Forum Index > General Forum
Post a Reply
Prev 1 834 835 836 837 838 1031 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
Silvanel
Profile Blog Joined March 2003
Poland4725 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
Spain17970 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
Poland5536 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
Poland4725 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
Poland17243 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
Turkey779 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
Poland5536 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
Turkey779 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
Spain17970 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
Spain17970 Posts
February 07 2017 22:51 GMT
#16720
Yes
Prev 1 834 835 836 837 838 1031 Next
Please log in or register to reply.
Live Events Refresh
Next event in 2h 26m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Reynor 167
StarCraft: Brood War
GoRush 23
Larva 20
Dota 2
XaKoH 469
NeuroSwarm117
XcaliburYe52
League of Legends
JimRising 653
Counter-Strike
Stewie2K1145
Heroes of the Storm
Khaldor135
Other Games
summit1g4910
WinterStarcraft744
Organizations
Other Games
BasetradeTV43
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• Berry_CruncH332
• practicex 27
• Adnapsc2 18
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Lourlo1552
• Stunt511
Upcoming Events
CranKy Ducklings
2h 26m
RSL Revival
2h 26m
ByuN vs Cham
herO vs Reynor
WardiTV European League
4h 26m
FEL
8h 26m
RSL Revival
1d 2h
Clem vs Classic
SHIN vs Cure
FEL
1d 4h
WardiTV European League
1d 4h
BSL: ProLeague
1d 10h
Dewalt vs Bonyth
Replay Cast
2 days
Sparkling Tuna Cup
3 days
[ Show More ]
WardiTV European League
3 days
The PondCast
4 days
Replay Cast
4 days
RSL Revival
5 days
Replay Cast
5 days
RSL Revival
6 days
Liquipedia Results

Completed

BSL 2v2 Season 3
HSC XXVII
Heroes 10 EU

Ongoing

JPL Season 2
BSL Season 20
Acropolis #3
KCM Race Survival 2025 Season 2
CSL 17: 2025 SUMMER
Copa Latinoamericana 4
Championship of Russia 2025
RSL Revival: Season 1
Murky Cup #2
BLAST.tv Austin Major 2025
ESL Impact League Season 7
IEM Dallas 2025
PGL Astana 2025
Asian Champions League '25
BLAST Rivals Spring 2025
MESA Nomadic Masters
CCT Season 2 Global Finals
IEM Melbourne 2025

Upcoming

2025 ACS Season 2: Qualifier
CSLPRO Last Chance 2025
2025 ACS Season 2
CSLPRO Chat StarLAN 3
K-Championship
uThermal 2v2 Main Event
SEL Season 2 Championship
FEL Cracov 2025
Esports World Cup 2025
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1
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.