• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 05:01
CET 11:01
KST 19:01
  • 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
RSL Revival - 2025 Season Finals Preview8RSL Season 3 - Playoffs Preview0RSL Season 3 - RO16 Groups C & D Preview0RSL Season 3 - RO16 Groups A & B Preview2TL.net Map Contest #21: Winners12
Community News
Weekly Cups (Dec 15-21): Classic wins big, MaxPax & Clem take weeklies3ComeBackTV's documentary on Byun's Career !11Weekly Cups (Dec 8-14): MaxPax, Clem, Cure win4Weekly Cups (Dec 1-7): Clem doubles, Solar gets over the hump1Weekly Cups (Nov 24-30): MaxPax, Clem, herO win2
StarCraft 2
General
ComeBackTV's documentary on Byun's Career ! Team TLMC #5: Winners Announced! What's the best tug of war? The Grack before Christmas Weekly Cups (Dec 15-21): Classic wins big, MaxPax & Clem take weeklies
Tourneys
OSC Season 13 World Championship $5,000+ WardiTV 2025 Championship $100 Prize Pool - Winter Warp Gate Masters Showdow Sparkling Tuna Cup - Weekly Open Tournament Winter Warp Gate Amateur Showdown #1
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 506 Warp Zone Mutation # 505 Rise From Ashes Mutation # 504 Retribution Mutation # 503 Fowl Play
Brood War
General
BGH Auto Balance -> http://bghmmr.eu/ What are former legends up to these days? BW General Discussion How soO Began His ProGaming Dreams Klaucher discontinued / in-game color settings
Tourneys
[Megathread] Daily Proleagues [BSL21] LB SemiFinals - Saturday 21:00 CET [BSL21] WB & LB Finals - Sunday 21:00 CET Small VOD Thread 2.0
Strategy
Fighting Spirit mining rates Simple Questions, Simple Answers Game Theory for Starcraft Current Meta
Other Games
General Games
Nintendo Switch Thread Mechabellum Stormgate/Frost Giant Megathread Beyond All Reason Path of Exile
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 Survivor II: The Amazon Sengoku Mafia TL Mafia Community Thread
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Has Anyone Tried Kamagra Chewable for ED? 12 Days of Starcraft The Games Industry And ATVI
Fan Clubs
White-Ra Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece
Sports
2024 - 2026 Football Thread Formula 1 Discussion
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List TL+ Announced Where to ask questions and add stream?
Blogs
National Diversity: A Challe…
TrAiDoS
I decided to write a webnov…
DjKniteX
James Bond movies ranking - pa…
Topin
Thanks for the RSL
Hildegard
Saturation point
Uldridge
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1600 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
Poland4736 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
Spain18159 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
Poland5712 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
Poland4736 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
Poland17550 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
Poland5712 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
Spain18159 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
Spain18159 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
Next event in 1h 59m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
SortOf 75
StarCraft: Brood War
Jaedong 781
Larva 460
EffOrt 136
Sharp 114
910 96
Leta 90
ZerO 80
Shuttle 78
sorry 62
NotJumperer 60
[ Show more ]
Soma 50
Mind 42
soO 32
zelot 29
Sacsri 28
Rush 27
NaDa 26
ZergMaN 25
Barracks 20
GoRush 11
Shine 10
ajuk12(nOOB) 9
yabsab 5
Dota 2
NeuroSwarm223
Fuzer 151
League of Legends
C9.Mang0504
JimRising 446
Counter-Strike
summit1g9808
olofmeister1626
shoxiejesuss806
edward2
Other Games
ceh9509
Mew2King95
ZerO(Twitch)12
Organizations
Other Games
gamesdonequick730
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• StrangeGG 63
• naamasc250
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• iopq 1
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Jankos1771
• HappyZerGling130
Upcoming Events
Wardi Open
1h 59m
OSC
1d 1h
Solar vs MaxPax
ByuN vs Krystianer
Spirit vs TBD
OSC
4 days
Korean StarCraft League
4 days
OSC
5 days
OSC
5 days
OSC
6 days
uThermal 2v2 Circuit
6 days
Replay Cast
6 days
Liquipedia Results

Completed

CSL Season 19: Qualifier 2
WardiTV 2025
META Madness #9

Ongoing

C-Race Season 1
IPSL Winter 2025-26
BSL Season 21
eXTREMESLAND 2025
SL Budapest Major 2025
ESL Impact League Season 8
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025

Upcoming

CSL 2025 WINTER (S19)
Escore Tournament S1: W2
Escore Tournament S1: W3
BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
Bellum Gens Elite Stara Zagora 2026
HSC XXVIII
Big Gabe Cup #3
OSC Championship Season 13
Nations Cup 2026
ESL Pro League Season 23
ESL Pro League Season 23
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual
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.