• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 09:51
CEST 15:51
KST 22:51
  • 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
[ASL20] Ro24 Preview Pt2: Take-Off7[ASL20] Ro24 Preview Pt1: Runway132v2 & SC: Evo Complete: Weekend Double Feature4Team Liquid Map Contest #21 - Presented by Monster Energy9uThermal's 2v2 Tour: $15,000 Main Event18
Community News
Weekly Cups (Aug 18-24): herO dethrones MaxPax6Maestros of The Game—$20k event w/ live finals in Paris32Weekly Cups (Aug 11-17): MaxPax triples again!13Weekly Cups (Aug 4-10): MaxPax wins a triple6SC2's Safe House 2 - October 18 & 195
StarCraft 2
General
Greatest Players of All Time: 2025 Update #1: Maru - Greatest Players of All Time A Eulogy for the Six Pool Geoff 'iNcontroL' Robinson has passed away #2: Serral - Greatest Players of All Time
Tourneys
Esports World Cup 2025 Maestros of The Game—$20k event w/ live finals in Paris Sparkling Tuna Cup - Weekly Open Tournament WardiTV Mondays RSL: Revival, a new crowdfunded tournament series
Strategy
Custom Maps
External Content
Mutation # 488 What Goes Around Mutation # 487 Think Fast Mutation # 486 Watch the Skies Mutation # 485 Death from Below
Brood War
General
No Rain in ASL20? BW General Discussion Post ASL20 Ro24 discussion. BSL Polish World Championship 2025 20-21 September BGH Auto Balance -> http://bghmmr.eu/
Tourneys
[ASL20] Ro24 Group F [Megathread] Daily Proleagues [ASL20] Ro24 Group E [IPSL] CSLAN Review and CSLPRO Reimagined!
Strategy
Muta micro map competition Simple Questions, Simple Answers Fighting Spirit mining rates [G] Mineral Boosting
Other Games
General Games
General RTS Discussion Thread Stormgate/Frost Giant Megathread Nintendo Switch Thread Dawn of War IV 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
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine The year 2050 European Politico-economics QA Mega-thread
Fan Clubs
INnoVation Fan Club SKT1 Classic Fan Club!
Media & Entertainment
Anime Discussion Thread Movie Discussion! [Manga] One Piece [\m/] Heavy Metal Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread High temperatures on bridge(s) Gtx660 graphics card replacement
TL Community
The Automated Ban List TeamLiquid Team Shirt On Sale
Blogs
How Culture and Conflict Imp…
TrAiDoS
RTS Design in Hypercoven
a11
Evil Gacha Games and the…
ffswowsucks
INDEPENDIENTE LA CTM
XenOsky
[Girl blog} My fema…
artosisisthebest
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2196 users

The Big Programming Thread - Page 207

Forum Index > General Forum
Post a Reply
Prev 1 205 206 207 208 209 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.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2012-12-02 23:25:06
December 02 2012 23:24 GMT
#4121
On December 03 2012 06:09 Fyodor wrote:
Show nested quote +
On December 03 2012 05:56 darkness wrote:
Java: Is it possible to send output across the network to every user within a linked a list? If yes, how? I've tried some google search, but I found nothing.

for each loop? I'm not sure I understand at what level your problem is.


Some users are added to a linked list. I want to deliver a msg to all of them. They're all connected. loop is ok, but how do I make sure everyone receives the message? E.g. out.println("text") doesn't ask for receiver.
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
December 02 2012 23:42 GMT
#4122
On December 03 2012 08:24 darkness wrote:
Show nested quote +
On December 03 2012 06:09 Fyodor wrote:
On December 03 2012 05:56 darkness wrote:
Java: Is it possible to send output across the network to every user within a linked a list? If yes, how? I've tried some google search, but I found nothing.

for each loop? I'm not sure I understand at what level your problem is.


Some users are added to a linked list. I want to deliver a msg to all of them. They're all connected. loop is ok, but how do I make sure everyone receives the message? E.g. out.println("text") doesn't ask for receiver.


That depends on what you want to send it through...
Arnstein
Profile Blog Joined May 2010
Norway3381 Posts
December 03 2012 09:51 GMT
#4123
What does a <> b mean in Python?
rsol in response to the dragoon voice being heard in SCII: dragoon ai reaches new lows: wanders into wrong game
Tobberoth
Profile Joined August 2010
Sweden6375 Posts
December 03 2012 09:56 GMT
#4124
On December 03 2012 18:51 Arnstein wrote:
What does a <> b mean in Python?

a does not equal b. It's like != in c-syntax.

a = 1
b = 2

a <> b => true
Thorakh
Profile Joined April 2011
Netherlands1788 Posts
December 03 2012 09:57 GMT
#4125
On December 03 2012 18:51 Arnstein wrote:
What does a <> b mean in Python?
I know nothing about Python but a simple Google search came up with the answer in half a minute...

Checks if the value of two operands are equal or not, if values are not equal then condition becomes true.
Arnstein
Profile Blog Joined May 2010
Norway3381 Posts
December 03 2012 10:17 GMT
#4126
On December 03 2012 18:57 Thorakh wrote:
Show nested quote +
On December 03 2012 18:51 Arnstein wrote:
What does a <> b mean in Python?
I know nothing about Python but a simple Google search came up with the answer in half a minute...

Checks if the value of two operands are equal or not, if values are not equal then condition becomes true.


I didn't find it with Google, because the search would not include <>. So if I searched "What does <> mean in Python?" I would get: "What does Python mean?" etc. Of course I would rather get the answer quickly from Google instead of waiting for an answer here. Thanks for the answer!

On December 03 2012 18:56 Tobberoth wrote:
Show nested quote +
On December 03 2012 18:51 Arnstein wrote:
What does a <> b mean in Python?

a does not equal b. It's like != in c-syntax.

a = 1
b = 2

a <> b => true


After checking it in Python, this is what I could conclude as well, but I just don't see the logic behind it? a < b means that a is less than b and vice versa, so it seems logical to me that a <> b means that a is less than b and b is less than a, which would return False all the time? Also, Python already have !=.
Maybe I'm just stupid? Thanks anyways for clearing up my confusion
rsol in response to the dragoon voice being heard in SCII: dragoon ai reaches new lows: wanders into wrong game
teamamerica
Profile Blog Joined July 2010
United States958 Posts
December 03 2012 10:36 GMT
#4127
On December 03 2012 08:42 Morfildur wrote:
Show nested quote +
On December 03 2012 08:24 darkness wrote:
On December 03 2012 06:09 Fyodor wrote:
On December 03 2012 05:56 darkness wrote:
Java: Is it possible to send output across the network to every user within a linked a list? If yes, how? I've tried some google search, but I found nothing.

for each loop? I'm not sure I understand at what level your problem is.


Some users are added to a linked list. I want to deliver a msg to all of them. They're all connected. loop is ok, but how do I make sure everyone receives the message? E.g. out.println("text") doesn't ask for receiver.


That depends on what you want to send it through...


Post more code! Put it on github and link for easiness.

On December 03 2012 18:51 Arnstein wrote:
What does a <> b mean in Python?


Did they just stick this in there for people coming from php (it's not exactly the same thing in php but it's close - in php it checks for !equality after implicit type conversions), or is there another language they're both getting this syntax from?
RIP GOMTV. RIP PROLEAGUE.
Tobberoth
Profile Joined August 2010
Sweden6375 Posts
December 03 2012 11:10 GMT
#4128
On December 03 2012 19:36 teamamerica wrote:
Show nested quote +
On December 03 2012 08:42 Morfildur wrote:
On December 03 2012 08:24 darkness wrote:
On December 03 2012 06:09 Fyodor wrote:
On December 03 2012 05:56 darkness wrote:
Java: Is it possible to send output across the network to every user within a linked a list? If yes, how? I've tried some google search, but I found nothing.

for each loop? I'm not sure I understand at what level your problem is.


Some users are added to a linked list. I want to deliver a msg to all of them. They're all connected. loop is ok, but how do I make sure everyone receives the message? E.g. out.println("text") doesn't ask for receiver.


That depends on what you want to send it through...


Post more code! Put it on github and link for easiness.

Show nested quote +
On December 03 2012 18:51 Arnstein wrote:
What does a <> b mean in Python?


Did they just stick this in there for people coming from php (it's not exactly the same thing in php but it's close - in php it checks for !equality after implicit type conversions), or is there another language they're both getting this syntax from?

<> Is used in both SQL and Visual basic.
Thorakh
Profile Joined April 2011
Netherlands1788 Posts
December 03 2012 11:13 GMT
#4129
I didn't find it with Google, because the search would not include <>. So if I searched "What does <> mean in Python?" I would get: "What does Python mean?" etc. Of course I would rather get the answer quickly from Google instead of waiting for an answer here. Thanks for the answer!
Searched for "python operators".
Tobberoth
Profile Joined August 2010
Sweden6375 Posts
December 03 2012 11:14 GMT
#4130
On December 03 2012 19:17 Arnstein wrote:
Show nested quote +
On December 03 2012 18:57 Thorakh wrote:
On December 03 2012 18:51 Arnstein wrote:
What does a <> b mean in Python?
I know nothing about Python but a simple Google search came up with the answer in half a minute...

Checks if the value of two operands are equal or not, if values are not equal then condition becomes true.


I didn't find it with Google, because the search would not include <>. So if I searched "What does <> mean in Python?" I would get: "What does Python mean?" etc. Of course I would rather get the answer quickly from Google instead of waiting for an answer here. Thanks for the answer!

Show nested quote +
On December 03 2012 18:56 Tobberoth wrote:
On December 03 2012 18:51 Arnstein wrote:
What does a <> b mean in Python?

a does not equal b. It's like != in c-syntax.

a = 1
b = 2

a <> b => true


After checking it in Python, this is what I could conclude as well, but I just don't see the logic behind it? a < b means that a is less than b and vice versa, so it seems logical to me that a <> b means that a is less than b and b is less than a, which would return False all the time? Also, Python already have !=.
Maybe I'm just stupid? Thanks anyways for clearing up my confusion

Think of it like this: a <> b

Is a smaller than b? Yes? Then they are not equal, so true. If not, is a bigger than b? If yes, they are not equal, so true. If both are false (when they are the same), it returns false.
Arnstein
Profile Blog Joined May 2010
Norway3381 Posts
December 03 2012 11:17 GMT
#4131
On December 03 2012 20:14 Tobberoth wrote:
Show nested quote +
On December 03 2012 19:17 Arnstein wrote:
On December 03 2012 18:57 Thorakh wrote:
On December 03 2012 18:51 Arnstein wrote:
What does a <> b mean in Python?
I know nothing about Python but a simple Google search came up with the answer in half a minute...

Checks if the value of two operands are equal or not, if values are not equal then condition becomes true.


I didn't find it with Google, because the search would not include <>. So if I searched "What does <> mean in Python?" I would get: "What does Python mean?" etc. Of course I would rather get the answer quickly from Google instead of waiting for an answer here. Thanks for the answer!

On December 03 2012 18:56 Tobberoth wrote:
On December 03 2012 18:51 Arnstein wrote:
What does a <> b mean in Python?

a does not equal b. It's like != in c-syntax.

a = 1
b = 2

a <> b => true


After checking it in Python, this is what I could conclude as well, but I just don't see the logic behind it? a < b means that a is less than b and vice versa, so it seems logical to me that a <> b means that a is less than b and b is less than a, which would return False all the time? Also, Python already have !=.
Maybe I'm just stupid? Thanks anyways for clearing up my confusion

Think of it like this: a <> b

Is a smaller than b? Yes? Then they are not equal, so true. If not, is a bigger than b? If yes, they are not equal, so true. If both are false (when they are the same), it returns false.


Ah, it makes much more sense if you think of it like that
rsol in response to the dragoon voice being heard in SCII: dragoon ai reaches new lows: wanders into wrong game
Rixxe
Profile Joined July 2011
United Kingdom136 Posts
December 03 2012 15:07 GMT
#4132

For all those that know C++:

The program i'm looking at outputs a total count of all the records within x number of files, what would stop it from displaying over a billion?
Instead of displaying a billion, it chops of the right number.
e.g.
1,000,000,123
100,000,012

Any ideas? Don't really want to post the code as there is tonnes of it, and i never use C++.


*bleep* you up in a gangsta style!
Vorenius
Profile Blog Joined December 2010
Denmark1979 Posts
December 03 2012 15:20 GMT
#4133
On December 03 2012 00:47 Recognizable wrote:
Hey, I just started coding but I keep messing up the syntax for else, elif and if statements in Python. Especially when to whitespace and where to put and, or and not. Could someone give me an example? Would be very much appreciated because I just can't figure it out :/
Also, are there other sites like CodeAcademy? I really like the "Review" parts where you have to solve these puzzles and code yourself with help ofcourse, but everything else is kinda boring to me.

Edit: Figured it out with the help of google. Still don't fully understand what whitespace does but atleast my code works. I believe I had no problems in Java with if and else statements.

Check out http://codingbat.com/. Pretty cool tutorials for both Python and Java.
AmericanUmlaut
Profile Blog Joined November 2010
Germany2577 Posts
December 03 2012 15:20 GMT
#4134
On December 04 2012 00:07 Rixxe wrote:

For all those that know C++:

The program i'm looking at outputs a total count of all the records within x number of files, what would stop it from displaying over a billion?
Instead of displaying a billion, it chops of the right number.
e.g.
1,000,000,123
100,000,012

Any ideas? Don't really want to post the code as there is tonnes of it, and i never use C++.



Is the threshhold at which the bug happens really exactly a billion? As in, it works correctly for 999,999,999 but not for 1,000,000,000? That's an odd number to have a problem with, since it's not close to the maximum value boundary for any numerical number type (int or unsigned int would freak out much earlier, and long still has lots of space), so I would guess your error is either in how you're storing the string or how you're displaying it.

Is it possible that you're outputting your value using a string that's defined as an array of characters, and you've only allocated enough space to the array to allow 9 digits?
The frumious Bandersnatch
Shenghi
Profile Joined August 2010
167 Posts
Last Edited: 2012-12-03 15:35:20
December 03 2012 15:29 GMT
#4135
On December 04 2012 00:20 AmericanUmlaut wrote:
Show nested quote +
On December 04 2012 00:07 Rixxe wrote:

For all those that know C++:

The program i'm looking at outputs a total count of all the records within x number of files, what would stop it from displaying over a billion?
Instead of displaying a billion, it chops of the right number.
e.g.
1,000,000,123
100,000,012

Any ideas? Don't really want to post the code as there is tonnes of it, and i never use C++.



Is the threshhold at which the bug happens really exactly a billion? As in, it works correctly for 999,999,999 but not for 1,000,000,000? That's an odd number to have a problem with, since it's not close to the maximum value boundary for any numerical number type (int or unsigned int would freak out much earlier, and long still has lots of space), so I would guess your error is either in how you're storing the string or how you're displaying it.

Is it possible that you're outputting your value using a string that's defined as an array of characters, and you've only allocated enough space to the array to allow 9 digits?

In this day and age virtually every int is (at least) 32 bits. Both signed and unsigned ints can easily handle a billion.
People are not born stupid, they choose to be stupid. If you made that choice, please change your mind.
Rixxe
Profile Joined July 2011
United Kingdom136 Posts
December 03 2012 15:33 GMT
#4136
On December 04 2012 00:20 AmericanUmlaut wrote:
Show nested quote +
On December 04 2012 00:07 Rixxe wrote:

For all those that know C++:

The program i'm looking at outputs a total count of all the records within x number of files, what would stop it from displaying over a billion?
Instead of displaying a billion, it chops of the right number.
e.g.
1,000,000,123
100,000,012

Any ideas? Don't really want to post the code as there is tonnes of it, and i never use C++.



Is the threshhold at which the bug happens really exactly a billion? As in, it works correctly for 999,999,999 but not for 1,000,000,000? That's an odd number to have a problem with, since it's not close to the maximum value boundary for any numerical number type (int or unsigned int would freak out much earlier, and long still has lots of space), so I would guess your error is either in how you're storing the string or how you're displaying it.

Is it possible that you're outputting your value using a string that's defined as an array of characters, and you've only allocated enough space to the array to allow 9 digits?



This is what as been defined to store the 5 different totals:


int RECTOTS[5] = { 0, 0, 0, 0, 0 }; // record totals


It's difficult to see what else could be causing the issue, as half of it isn't commented.
The error is when it becomes more than 9 digits, i can only look at output + the code. Unfortunatly i'm not able to debug it or i would.

Anything obvious that might contribute to the problem with the code below? Sorry it's not much to go on.



/*
LOG_TOT() : display totals
*/
void LOG_TOT(int VAL, char *MSTR)
{
int LN;
char FMSTR[12];

if (VAL == 0)
return; // ignore zero totals

memset(ORBf, ' ', 80);
LN = sprintf(ORBf, "%s", MSTR);
ORBf[LN] = ' ';
FMAT_NUM(VAL, FMSTR, 16);
sprintf(&ORBf[36], " = %-s\n", FMSTR);
XLOG_REC(ORBf);
return;

}
*bleep* you up in a gangsta style!
b3n3tt3
Profile Joined January 2012
595 Posts
December 03 2012 15:40 GMT
#4137
umm, divide it by ten? that way it will strip the tens digit and would not show the decimal if you had int
Shenghi
Profile Joined August 2010
167 Posts
December 03 2012 15:42 GMT
#4138
On December 04 2012 00:33 Rixxe wrote:
Show nested quote +
On December 04 2012 00:20 AmericanUmlaut wrote:
On December 04 2012 00:07 Rixxe wrote:

For all those that know C++:

The program i'm looking at outputs a total count of all the records within x number of files, what would stop it from displaying over a billion?
Instead of displaying a billion, it chops of the right number.
e.g.
1,000,000,123
100,000,012

Any ideas? Don't really want to post the code as there is tonnes of it, and i never use C++.



Is the threshhold at which the bug happens really exactly a billion? As in, it works correctly for 999,999,999 but not for 1,000,000,000? That's an odd number to have a problem with, since it's not close to the maximum value boundary for any numerical number type (int or unsigned int would freak out much earlier, and long still has lots of space), so I would guess your error is either in how you're storing the string or how you're displaying it.

Is it possible that you're outputting your value using a string that's defined as an array of characters, and you've only allocated enough space to the array to allow 9 digits?



This is what as been defined to store the 5 different totals:


int RECTOTS[5] = { 0, 0, 0, 0, 0 }; // record totals


It's difficult to see what else could be causing the issue, as half of it isn't commented.
The error is when it becomes more than 9 digits, i can only look at output + the code. Unfortunatly i'm not able to debug it or i would.

Anything obvious that might contribute to the problem with the code below? Sorry it's not much to go on.



/*
LOG_TOT() : display totals
*/
void LOG_TOT(int VAL, char *MSTR)
{
int LN;
char FMSTR[12];

if (VAL == 0)
return; // ignore zero totals

memset(ORBf, ' ', 80);
LN = sprintf(ORBf, "%s", MSTR);
ORBf[LN] = ' ';
FMAT_NUM(VAL, FMSTR, 16);
sprintf(&ORBf[36], " = %-s\n", FMSTR);
XLOG_REC(ORBf);
return;

}

What I gather from this code is that the number is formatted in FMSTR. What I gather from your earlier post is that the number includes commas (or periods) to separate thousands etc. This makes the total number of characters for 1,000,000,000 thirteen, but only eleven characters fit. Hence the weird behaviour.
People are not born stupid, they choose to be stupid. If you made that choice, please change your mind.
Rixxe
Profile Joined July 2011
United Kingdom136 Posts
December 03 2012 15:58 GMT
#4139
On December 04 2012 00:42 Shenghi wrote:
Show nested quote +
On December 04 2012 00:33 Rixxe wrote:
On December 04 2012 00:20 AmericanUmlaut wrote:
On December 04 2012 00:07 Rixxe wrote:

For all those that know C++:

The program i'm looking at outputs a total count of all the records within x number of files, what would stop it from displaying over a billion?
Instead of displaying a billion, it chops of the right number.
e.g.
1,000,000,123
100,000,012

Any ideas? Don't really want to post the code as there is tonnes of it, and i never use C++.



Is the threshhold at which the bug happens really exactly a billion? As in, it works correctly for 999,999,999 but not for 1,000,000,000? That's an odd number to have a problem with, since it's not close to the maximum value boundary for any numerical number type (int or unsigned int would freak out much earlier, and long still has lots of space), so I would guess your error is either in how you're storing the string or how you're displaying it.

Is it possible that you're outputting your value using a string that's defined as an array of characters, and you've only allocated enough space to the array to allow 9 digits?



This is what as been defined to store the 5 different totals:


int RECTOTS[5] = { 0, 0, 0, 0, 0 }; // record totals


It's difficult to see what else could be causing the issue, as half of it isn't commented.
The error is when it becomes more than 9 digits, i can only look at output + the code. Unfortunatly i'm not able to debug it or i would.

Anything obvious that might contribute to the problem with the code below? Sorry it's not much to go on.



/*
LOG_TOT() : display totals
*/
void LOG_TOT(int VAL, char *MSTR)
{
int LN;
char FMSTR[12];

if (VAL == 0)
return; // ignore zero totals

memset(ORBf, ' ', 80);
LN = sprintf(ORBf, "%s", MSTR);
ORBf[LN] = ' ';
FMAT_NUM(VAL, FMSTR, 16);
sprintf(&ORBf[36], " = %-s\n", FMSTR);
XLOG_REC(ORBf);
return;

}

What I gather from this code is that the number is formatted in FMSTR. What I gather from your earlier post is that the number includes commas (or periods) to separate thousands etc. This makes the total number of characters for 1,000,000,000 thirteen, but only eleven characters fit. Hence the weird behaviour.


Great, thankyou for the explanation.

Cheers
*bleep* you up in a gangsta style!
Recognizable
Profile Blog Joined December 2011
Netherlands1552 Posts
Last Edited: 2012-12-03 20:17:14
December 03 2012 20:04 GMT
#4140

original = raw_input('Enter a word:')
word = original.lower()
pyg = 'ay'
new_wordV = word+pyg #w/Vowel
new_wordC = original[1:]+word[0]+pyg #w/Consonant
first = original[0]
if len(original) > 0 and original.isalpha():
if first == "a" or first == "i" or first == "e" or first == "o" or first == "u" or first == "A" or first == "I" or first == "E" or first == "O" or first == "U" :
print new_wordV
else:
print new_wordC
else:
print 'empty'


Can this be made to look easier/less lines of code? If so could you give me some pointers what I could do(don't do it for me) Because I once posted something here 5+ lines and it was all done in like 2 :O. Especially the line with all the first==, it bugs me. I tried messing around a bit but nothing worked. Also I'd like to add coding yourself(mostly) is really fun, I just spent 10 minutes pressing in random words and I was amazed at how it worked haha.
Prev 1 205 206 207 208 209 1031 Next
Please log in or register to reply.
Live Events Refresh
WardiTV Summer Champion…
11:00
Playoffs Day 3
Clem vs MaxPaxLIVE!
Classic vs TBD
WardiTV980
TKL 284
IndyStarCraft 185
Rex138
IntoTheiNu 29
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Lowko291
TKL 284
IndyStarCraft 185
Rex 138
SC2_NightMare 22
mcanning 15
StarCraft: Brood War
Britney 70059
Calm 5197
Sea 2406
Jaedong 1856
Horang2 1838
Flash 1811
Bisu 1568
Rain 1533
firebathero 777
ggaemo 747
[ Show more ]
Mini 725
EffOrt 544
Larva 486
Stork 397
BeSt 389
Light 244
hero 220
Zeus 203
Snow 202
Last 171
Soulkey 160
Nal_rA 159
Soma 124
TY 114
Mong 103
NaDa 102
Hyuk 96
Mind 85
Aegong 81
Rush 76
ZerO 65
Movie 51
[sc1f]eonzerg 48
Sharp 47
JulyZerg 46
Sea.KH 41
PianO 35
Sacsri 30
Terrorterran 18
IntoTheRainbow 16
HiyA 14
scan(afreeca) 14
ajuk12(nOOB) 13
Sexy 12
Noble 12
Bale 10
ivOry 3
Dota 2
Gorgc4388
Dendi1251
qojqva1092
420jenkins261
XcaliburYe261
syndereN161
XaKoH 126
Counter-Strike
fl0m2258
olofmeister2061
byalli253
markeloff112
Other Games
singsing2143
B2W.Neo1442
hiko782
DeMusliM357
Fuzer 314
crisheroes313
Hui .248
Happy118
RotterdaM98
ArmadaUGS59
ZerO(Twitch)19
Organizations
Other Games
Algost 5
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
Dota 2
• C_a_k_e 1010
• WagamamaTV527
League of Legends
• Jankos1733
Upcoming Events
Replay Cast
10h 9m
LiuLi Cup
21h 9m
MaxPax vs TriGGeR
ByuN vs herO
Cure vs Rogue
Classic vs HeRoMaRinE
Cosmonarchy
1d 2h
OyAji vs Sziky
Sziky vs WolFix
WolFix vs OyAji
Big Brain Bouts
1d 2h
Iba vs GgMaChine
TriGGeR vs Bunny
Reynor vs Classic
Serral vs Clem
BSL Team Wars
1d 5h
Team Hawk vs Team Dewalt
BSL Team Wars
1d 5h
Team Hawk vs Team Bonyth
SC Evo League
1d 22h
TaeJa vs Cure
Rogue vs threepoint
ByuN vs Creator
MaNa vs Classic
Maestros of the Game
2 days
ShoWTimE vs Cham
GuMiho vs Ryung
Zoun vs Spirit
Rogue vs MaNa
[BSL 2025] Weekly
2 days
SC Evo League
2 days
[ Show More ]
Maestros of the Game
3 days
SHIN vs Creator
Astrea vs Lambo
Bunny vs SKillous
HeRoMaRinE vs TriGGeR
BSL Team Wars
3 days
Team Bonyth vs Team Sziky
BSL Team Wars
3 days
Team Dewalt vs Team Sziky
Monday Night Weeklies
4 days
Replay Cast
4 days
Sparkling Tuna Cup
4 days
Replay Cast
6 days
The PondCast
6 days
RSL Revival
6 days
Maru vs SHIN
MaNa vs MaxPax
Liquipedia Results

Completed

CSL Season 18: Qualifier 1
uThermal 2v2 Main Event
HCC Europe

Ongoing

Copa Latinoamericana 4
BSL 20 Team Wars
KCM Race Survival 2025 Season 3
BSL 21 Qualifiers
ASL Season 20
Acropolis #4 - TS1
CSL Season 18: Qualifier 2
SEL Season 2 Championship
WardiTV Summer 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1
BLAST.tv Austin Major 2025

Upcoming

CSL 2025 AUTUMN (S18)
LASL Season 20
BSL Season 21
BSL 21 Team A
Chzzk MurlocKing SC1 vs SC2 Cup #2
RSL Revival: Season 2
Maestros of the Game
EC S1
Sisters' Call Cup
Skyesports Masters 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
MESA Nomadic Masters Fall
Thunderpick World Champ.
CS Asia Championships 2025
Roobet Cup 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
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.