• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 08:14
CEST 14:14
KST 21:14
  • 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
Team TLMC #5 - Finalists & Open Tournaments1[ASL20] Ro16 Preview Pt2: Turbulence10Classic Games #3: Rogue vs Serral at BlizzCon9[ASL20] Ro16 Preview Pt1: Ascent10Maestros of the Game: Week 1/Play-in Preview12
Community News
StarCraft II 5.0.15 PTR Patch Notes146BSL 2025 Warsaw LAN + Legends Showmatch2Weekly Cups (Sept 8-14): herO & MaxPax split cups4WardiTV TL Team Map Contest #5 Tournaments1SC4ALL $6,000 Open LAN in Philadelphia8
StarCraft 2
General
StarCraft II 5.0.15 PTR Patch Notes Why Storm Should NOT Be Nerfed – A Core Part of Pr #1: Maru - Greatest Players of All Time Team TLMC #5 - Finalists & Open Tournaments Team Liquid Map Contest #21 - Presented by Monster Energy
Tourneys
RSL: Revival, a new crowdfunded tournament series Stellar Fest KSL Week 80 StarCraft Evolution League (SC Evo Biweekly) SC2's Safe House 2 - October 18 & 19
Strategy
Custom Maps
External Content
Mutation # 491 Night Drive Mutation # 490 Masters of Midnight Mutation # 489 Bannable Offense Mutation # 488 What Goes Around
Brood War
General
Soulkey on ASL S20 ASL20 General Discussion BW General Discussion Diplomacy, Cosmonarchy Edition ASL TICKET LIVE help! :D
Tourneys
[ASL20] Ro16 Group D BSL 2025 Warsaw LAN + Legends Showmatch [ASL20] Ro16 Group C Small VOD Thread 2.0
Strategy
Simple Questions, Simple Answers Muta micro map competition Fighting Spirit mining rates [G] Mineral Boosting
Other Games
General Games
Stormgate/Frost Giant Megathread Path of Exile Borderlands 3 Nintendo Switch Thread General RTS Discussion Thread
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
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
Community
General
US Politics Mega-thread The Big Programming Thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread UK Politics Mega-thread
Fan Clubs
The Happy Fan Club!
Media & Entertainment
Movie Discussion! [Manga] One Piece Anime Discussion Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion MLB/Baseball 2023
World Cup 2022
Tech Support
Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread High temperatures on bridge(s)
TL Community
BarCraft in Tokyo Japan for ASL Season5 Final The Automated Ban List
Blogs
Too Many LANs? Tournament Ov…
TrAiDoS
i'm really bored guys
Peanutsc
I <=> 9
KrillinFromwales
A very expensive lesson on ma…
Garnet
hello world
radishsoup
Lemme tell you a thing o…
JoinTheRain
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1583 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
Poland4731 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
Spain18055 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
Poland5629 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
Poland4731 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
Poland17349 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
Poland5629 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
Spain18055 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
Spain18055 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
RSL Revival
10:00
Season 2: Playoffs Day 7
Cure vs ZounLIVE!
Tasteless1253
Crank 1116
IndyStarCraft 228
CranKy Ducklings104
Rex103
3DClanTV 46
IntoTheiNu 19
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Tasteless 1253
Crank 1116
IndyStarCraft 228
Rex 103
MindelVK 38
Railgan 26
StarCraft: Brood War
Britney 44101
Calm 7883
Rain 2649
Horang2 2266
Flash 2062
GuemChi 1160
EffOrt 818
Larva 536
BeSt 467
actioN 423
[ Show more ]
Hyuk 315
Hyun 286
Zeus 206
Last 193
firebathero 182
Soma 114
Rush 113
ZZZero.O 92
Aegong 90
Light 85
Soulkey 69
sSak 67
Sharp 65
Free 58
ajuk12(nOOB) 56
Nal_rA 46
Movie 41
Mong 39
soO 34
sas.Sziky 31
Sacsri 29
Sexy 27
ivOry 21
Icarus 17
Hm[arnc] 10
Terrorterran 4
Noble 3
Dota 2
singsing2890
Gorgc2340
qojqva1380
Dendi1218
XcaliburYe734
Fuzer 207
Counter-Strike
allub268
Heroes of the Storm
Khaldor183
Other Games
B2W.Neo1050
DeMusliM495
crisheroes374
Lowko175
Hui .144
NeuroSwarm45
Trikslyr24
Organizations
Other Games
gamesdonequick713
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 13 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Jankos1883
• Stunt552
Other Games
• WagamamaTV269
Upcoming Events
BSL Open LAN 2025 - War…
2h 46m
OSC
8h 46m
BSL Open LAN 2025 - War…
19h 46m
RSL Revival
21h 46m
Classic vs TBD
WardiTV Invitational
22h 46m
Online Event
1d 3h
Wardi Open
1d 22h
Monday Night Weeklies
2 days
Sparkling Tuna Cup
2 days
LiuLi Cup
3 days
[ Show More ]
The PondCast
4 days
CranKy Ducklings
5 days
Liquipedia Results

Completed

Proleague 2025-09-10
Chzzk MurlocKing SC1 vs SC2 Cup #2
HCC Europe

Ongoing

BSL 20 Team Wars
KCM Race Survival 2025 Season 3
BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
LASL Season 20
2025 Chongqing Offline CUP
BSL World Championship of Poland 2025
RSL Revival: Season 2
Maestros of the Game
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

Upcoming

IPSL Winter 2025-26
BSL Season 21
SC4ALL: Brood War
BSL 21 Team A
Stellar Fest
SC4ALL: StarCraft II
EC S1
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
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.