• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 08:55
CET 14:55
KST 22:55
  • 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
TL.net Map Contest #21: Winners11Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10[ASL20] Finals Preview: Arrival13TL.net Map Contest #21: Voting12[ASL20] Ro4 Preview: Descent11
Community News
[TLMC] Fall/Winter 2025 Ladder Map Rotation4Weekly Cups (Nov 3-9): Clem Conquers in Canada4SC: Evo Complete - Ranked Ladder OPEN ALPHA8StarCraft, SC2, HotS, WC3, Returning to Blizzcon!45$5,000+ WardiTV 2025 Championship7
StarCraft 2
General
[TLMC] Fall/Winter 2025 Ladder Map Rotation Mech is the composition that needs teleportation t Weekly Cups (Nov 3-9): Clem Conquers in Canada Craziest Micro Moments Of All Time? SC: Evo Complete - Ranked Ladder OPEN ALPHA
Tourneys
Constellation Cup - Main Event - Stellar Fest Tenacious Turtle Tussle Sparkling Tuna Cup - Weekly Open Tournament $5,000+ WardiTV 2025 Championship Merivale 8 Open - LAN - Stellar Fest
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 499 Chilling Adaptation Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened Mutation # 496 Endless Infection
Brood War
General
BW General Discussion FlaSh on: Biggest Problem With SnOw's Playstyle Terran 1:35 12 Gas Optimization BGH Auto Balance -> http://bghmmr.eu/ [ASL20] Ask the mapmakers — Drop your questions
Tourneys
[BSL21] RO32 Group D - Sunday 21:00 CET [BSL21] RO32 Group C - Saturday 21:00 CET [ASL20] Grand Finals [Megathread] Daily Proleagues
Strategy
Current Meta PvZ map balance How to stay on top of macro? Soma's 9 hatch build from ASL Game 2
Other Games
General Games
Nintendo Switch Thread Stormgate/Frost Giant Megathread Should offensive tower rushing be viable in RTS games? Path of Exile Dawn of War IV
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
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine Canadian Politics Mega-thread The Games Industry And ATVI
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
[Manga] One Piece Anime Discussion Thread Movie Discussion! Korean Music Discussion Series you have seen recently...
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List
Blogs
Dyadica Gospel – a Pulp No…
Hildegard
Coffee x Performance in Espo…
TrAiDoS
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Reality "theory" prov…
perfectspheres
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1347 users

The Big Programming Thread - Page 87

Forum Index > General Forum
Post a Reply
Prev 1 85 86 87 88 89 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.
Frigo
Profile Joined August 2009
Hungary1023 Posts
Last Edited: 2011-10-20 19:15:37
October 17 2011 19:58 GMT
#1721
Yay, I made what might be the most simple FFT ever

public static void FFTInplace (final Complex[] v, final double sign)
{
// check whether the array length is power of two
final int n = v.length;
if( (n & (n - 1)) != 0 ){
throw new IllegalArgumentException("Not power of two");
}
// main loop
for( int m = n; m > 1; m /= 2 ){
Complex root = Complex.cis(sign * 2.0 * Math.PI / m);
Complex twiddle = new Complex(1.0, 0.0);
for( int i = 0; i < m / 2; i++ ){
for( int x2 = i + m / 2; x2 < n; x2 += m ){
int x1 = x2 - m / 2;
Complex e = v[x1];
Complex f = v[x2];
v[x1] = e.add(f);
v[x2] = e.sub(f).mul(twiddle);
}
twiddle = twiddle.mul(root);
}
}
// bit reversal
int p = Integer.numberOfLeadingZeros(n - 1);
for( int i = 0; i < n; i++ ){
int j = Integer.reverse(i) >>> p;
if( i < j ){
Complex t = v[i];
v[i] = v[j];
v[j] = t;
}
}
}


Edit: Optimized code a bit by swapping the nested loops and adjusting the indexing accordingly.
http://www.fimfiction.net/user/Treasure_Chest
Zeke50100
Profile Blog Joined February 2010
United States2220 Posts
October 17 2011 21:10 GMT
#1722
I'm just posting here as a tribute to Dennis Ritchie. Sad month for great computer visionaries (Steve Jobs and Ritchie), and it's terrible to see them go. I don't do much stuff in C, mainly dealing with C++, but I know that Ritchie played a huuuge role in the development of technology, programming, and pretty much everything else we see on our computers (he was also co-developer of Unix, essentially the heart that all modern operating systems have utilized/replicated). I'm just hoping we won't have to see anybody else go so soon (Bjarne, Gates, etc.).

C hwaiting!
Dezzimal
Profile Joined April 2009
United States148 Posts
Last Edited: 2011-10-17 21:24:01
October 17 2011 21:20 GMT
#1723
On October 14 2011 16:17 shinarit wrote:
Hey guys! I have a Python question. What is the nicest/shortest/wittiest code to create something iterable (order is not important) of tuples of integer coordinates with the format of ([0 - MaxX-1], [0 - MaxY-1])?
I tried some generators, but all have some issues, and now im working with a one liner, but not sure its the best.

What i tired:

>>> [((x, y) for x in range(n)) for y in range(n)]
[<generator object <genexpr> at 0x7f1318670f50>, <generator object <genexpr> at 0x7f13168c4050>]
>>> ([(x, y) for x in range(n)] for y in range(n))
<generator object <genexpr> at 0x7f13168c40a0>
>>> [[(x, y) for x in range(n)] for y in range(n)]
[[(0, 0), (1, 0)], [(0, 1), (1, 1)]]


And i went with the third one, connected with the itertools library.


itertools.chain.from_iterable([[(x, y) for x in range(sizex)] for y in range(sizey)])


But there must be some nicer, more effective way, i know it.


Think you might be looking for itertools.product().


>>> coordTuples = []
>>> for i in itertools.product(range(0, MaxX-1), range(0, MaxY-1)):
>>> coordTuples.append(i)


You don't need to append everything into a list if you don't want, and can just put your code in that for loop.

Sample Output:
+ Show Spoiler +


>>> import itertools
>>> MaxX = 3
>>> MaxY = 4
>>> for i in itertools.product(range(0, MaxX-1), range(0, MaxY-1)):
... print repr(i)
...
(0, 0)
(0, 1)
(0, 2)
(1, 0)
(1, 1)
(1, 2)

tofucake
Profile Blog Joined October 2009
Hyrule19151 Posts
October 17 2011 21:31 GMT
#1724
I knew you weren't dead. Get back to work!
Liquipediaasante sana squash banana
Millitron
Profile Blog Joined August 2010
United States2611 Posts
Last Edited: 2011-10-17 23:48:04
October 17 2011 23:32 GMT
#1725
Quick question, why is the following code throwing a syntax error?

+ Show Spoiler +
File file = new File(fileName);
Scanner scan = new Scanner(file);
String thisLine = scan.nextLine();
StringTokenizer token = new StringTokenizer(thisLine);
int alphabet;
int states;
int acceptNum;

//Parses first line of text file
states = Integer.parseInt(token.nextToken());
alphabet = Integer.parseInt(token.nextToken());
acceptNum = Integer.parseInt(token.nextToken());

//Parses second line of text file
int[acceptNum] tempArray;
accepting = tempArray;

Spoilered cause it's large, but the syntax error is right here according to my IDE: int[acceptNum] tempArray;

All I'm trying to do is have an array with a variable size. I don't mean variable in that it grows as the program runs, I mean variable as in I don't hardcode a size, it's defined based on the file I read.

Edit: NVM, it was a stupid mistake, I solved it on my own. Thanks anyways TL.
Who called in the fleet?
Easytouch1500
Profile Joined July 2011
United States66 Posts
October 18 2011 04:08 GMT
#1726
Hey, I'm looking for a programmer that would make a pretty rudimentary program for me. What I want it to do is to be a larvae inject learning tool. Most larvae inject tools just have a timer that goes off every 40 seconds. What I think would be cool is if someone made a program that after every time someone performed a certain keystroke pattern it would reset the timer. This keystroke pattern could be customized per user and would correspond to his/her's inject keystrokes. This way about every 40 seconds the player would be reminded that all his larvae popped. Will pay $5 for this to be done. Pm me please!
"He sees my 8 stalkers and my giant e-penis, and he's gonna make sentries" -Alejandrisha
ArcticVanguard
Profile Blog Joined August 2010
United States450 Posts
Last Edited: 2011-10-18 06:03:31
October 18 2011 05:54 GMT
#1727
Does anyone know of a way to generate a square wave in Python? I'm trying to make a tuner, for lack of a better description. I've already got a square wave generator (that I made using PyGame), but the quality is horrible and every time it loops, there's a clicking sound that can be heard immediately when it starts playing. Since it only generates a second or so, there's this constant *click click click* sound that's driving me insane.

@Easytouch: Couldn't such a thing get you in trouble for cheating?
"When I became a man I put away childish things, including the fear of childishness and the desire to be very grown up." ~C.S. Lewis
mmp
Profile Blog Joined April 2009
United States2130 Posts
October 18 2011 06:10 GMT
#1728
On October 18 2011 14:54 ArcticVanguard wrote:
Does anyone know of a way to generate a square wave in Python? I'm trying to make a tuner, for lack of a better description. I've already got a square wave generator (that I made using PyGame), but the quality is horrible and every time it loops, there's a clicking sound that can be heard immediately when it starts playing. Since it only generates a second or so, there's this constant *click click click* sound that's driving me insane.

@Easytouch: Couldn't such a thing get you in trouble for cheating?

It's not cheating, and Blizzard doesn't own his computer.
I (λ (foo) (and (<3 foo) ( T_T foo) (RAGE foo) )) Starcraft
mmp
Profile Blog Joined April 2009
United States2130 Posts
October 18 2011 06:13 GMT
#1729
On October 18 2011 06:10 Zeke50100 wrote:
I'm just posting here as a tribute to Dennis Ritchie. Sad month for great computer visionaries (Steve Jobs and Ritchie), and it's terrible to see them go. I don't do much stuff in C, mainly dealing with C++, but I know that Ritchie played a huuuge role in the development of technology, programming, and pretty much everything else we see on our computers (he was also co-developer of Unix, essentially the heart that all modern operating systems have utilized/replicated). I'm just hoping we won't have to see anybody else go so soon (Bjarne, Gates, etc.).

C hwaiting!

From NYT.

October 13, 2011
Dennis Ritchie, Trailblazer in Digital Era, Dies at 70
By STEVE LOHR
Dennis M. Ritchie, who helped shape the modern digital era by creating software tools that power things as diverse as search engines like Google and smartphones, was found dead on Wednesday at his home in Berkeley Heights, N.J. He was 70.

Mr. Ritchie, who lived alone, was in frail health in recent years after treatment for prostate cancer and heart disease, said his brother Bill.

In the late 1960s and early ’70s, working at Bell Labs, Mr. Ritchie made a pair of lasting contributions to computer science. He was the principal designer of the C programming language and co-developer of the Unix operating system, working closely with Ken Thompson, his longtime Bell Labs collaborator.

The C programming language, a shorthand of words, numbers and punctuation, is still widely used today, and successors like C++ and Java build on the ideas, rules and grammar that Mr. Ritchie designed. The Unix operating system has similarly had a rich and enduring impact. Its free, open-source variant, Linux, powers many of the world’s data centers, like those at Google and Amazon, and its technology serves as the foundation of operating systems, like Apple’s iOS, in consumer computing devices.

“The tools that Dennis built — and their direct descendants — run pretty much everything today,” said Brian Kernighan, a computer scientist at Princeton University who worked with Mr. Ritchie at Bell Labs.

Those tools were more than inventive bundles of computer code. The C language and Unix reflected a point of view, a different philosophy of computing than what had come before. In the late ’60s and early ’70s, minicomputers were moving into companies and universities — smaller and at a fraction of the price of hulking mainframes.

Minicomputers represented a step in the democratization of computing, and Unix and C were designed to open up computing to more people and collaborative working styles. Mr. Ritchie, Mr. Thompson and their Bell Labs colleagues were making not merely software but, as Mr. Ritchie once put it, “a system around which fellowship can form.”

C was designed for systems programmers who wanted to get the fastest performance from operating systems, compilers and other programs. “C is not a big language — it’s clean, simple, elegant,” Mr. Kernighan said. “It lets you get close to the machine, without getting tied up in the machine.”

Such higher-level languages had earlier been intended mainly to let people without a lot of programming skill write programs that could run on mainframes. Fortran was for scientists and engineers, while Cobol was for business managers.

C, like Unix, was designed mainly to let the growing ranks of professional programmers work more productively. And it steadily gained popularity. With Mr. Kernighan, Mr. Ritchie wrote a classic text, “The C Programming Language,” also known as “K. & R.” after the authors’ initials, whose two editions, in 1978 and 1988, have sold millions of copies and been translated into 25 languages.

Dennis MacAlistair Ritchie was born on Sept. 9, 1941, in Bronxville, N.Y. His father, Alistair, was an engineer at Bell Labs, and his mother, Jean McGee Ritchie, was a homemaker. When he was a child, the family moved to Summit, N.J., where Mr. Ritchie grew up and attended high school. He then went to Harvard, where he majored in applied mathematics.

While a graduate student at Harvard, Mr. Ritchie worked at the computer center at the Massachusetts Institute of Technology, and became more interested in computing than math. He was recruited by the Sandia National Laboratories, which conducted weapons research and testing. “But it was nearly 1968,” Mr. Ritchie recalled in an interview in 2001, “and somehow making A-bombs for the government didn’t seem in tune with the times.”

Mr. Ritchie joined Bell Labs in 1967, and soon began his fruitful collaboration with Mr. Thompson on both Unix and the C programming language. The pair represented the two different strands of the nascent discipline of computer science. Mr. Ritchie came to computing from math, while Mr. Thompson came from electrical engineering.

“We were very complementary,” said Mr. Thompson, who is now an engineer at Google. “Sometimes personalities clash, and sometimes they meld. It was just good with Dennis.”

Besides his brother Bill, of Alexandria, Va., Mr. Ritchie is survived by another brother, John, of Newton, Mass., and a sister, Lynn Ritchie of Hexham, England.

Mr. Ritchie traveled widely and read voraciously, but friends and family members say his main passion was his work. He remained at Bell Labs, working on various research projects, until he retired in 2007.

Colleagues who worked with Mr. Ritchie were struck by his code — meticulous, clean and concise. His writing, according to Mr. Kernighan, was similar. “There was a remarkable precision to his writing,” Mr. Kernighan said, “no extra words, elegant and spare, much like his code.”


Can any of us mere coders aspire to greater praise than "elegant and spare?"
I (λ (foo) (and (<3 foo) ( T_T foo) (RAGE foo) )) Starcraft
ArcticVanguard
Profile Blog Joined August 2010
United States450 Posts
October 18 2011 06:21 GMT
#1730
On October 18 2011 15:10 mmp wrote:
Show nested quote +
On October 18 2011 14:54 ArcticVanguard wrote:
Does anyone know of a way to generate a square wave in Python? I'm trying to make a tuner, for lack of a better description. I've already got a square wave generator (that I made using PyGame), but the quality is horrible and every time it loops, there's a clicking sound that can be heard immediately when it starts playing. Since it only generates a second or so, there's this constant *click click click* sound that's driving me insane.

@Easytouch: Couldn't such a thing get you in trouble for cheating?

It's not cheating, and Blizzard doesn't own his computer.

Easy, it was just a question. I didn't mean to suggest that they did, I was just concerned such a program could get him in trouble on the ladder.
"When I became a man I put away childish things, including the fear of childishness and the desire to be very grown up." ~C.S. Lewis
Easytouch1500
Profile Joined July 2011
United States66 Posts
Last Edited: 2011-10-18 14:00:40
October 18 2011 14:00 GMT
#1731
I'm not sure if blizzard would consider it a third party program because it doesn't interact with the game itself, only your keystrokes and such. I'm not really sure though, haven't looked into it too indepth. Just really want to use it as a practice tool on my smurf account anyways.
"He sees my 8 stalkers and my giant e-penis, and he's gonna make sentries" -Alejandrisha
ArcticVanguard
Profile Blog Joined August 2010
United States450 Posts
October 18 2011 15:57 GMT
#1732
On October 18 2011 23:00 Easytouch wrote:
I'm not sure if blizzard would consider it a third party program because it doesn't interact with the game itself, only your keystrokes and such. I'm not really sure though, haven't looked into it too indepth. Just really want to use it as a practice tool on my smurf account anyways.

*shrugs* Might make for a good exercise. I'll give it a shot, though no promises. Picky on language? It might be easier on Python, but I'm not sure.
"When I became a man I put away childish things, including the fear of childishness and the desire to be very grown up." ~C.S. Lewis
Frigo
Profile Joined August 2009
Hungary1023 Posts
October 19 2011 20:26 GMT
#1733
Today I saw a compilation with 26000 warnings. My eyes still hurt.
http://www.fimfiction.net/user/Treasure_Chest
EscPlan9
Profile Blog Joined December 2006
United States2777 Posts
Last Edited: 2011-10-19 22:26:43
October 19 2011 22:26 GMT
#1734
On October 20 2011 05:26 Frigo wrote:
Today I saw a compilation with 26000 warnings. My eyes still hurt.


Compiles with warnings and no run-time issues related? Work done. :D
Undefeated TL Tecmo Super Bowl League Champion
japro
Profile Joined August 2010
172 Posts
Last Edited: 2011-10-19 23:06:24
October 19 2011 22:51 GMT
#1735
pfft, 26k warnings? I can do that with only 25 lines of code:

#ifndef WRECURSE
#define WRECURSE 10
#endif

//compile with -Wall -DWRECURSE=<some number>

template<int depth, int id>
struct lots_of_warnings {
lots_of_warnings<depth-1,id> a;
lots_of_warnings<depth-1,id+1<<depth-1> b;
void operator()() { 1; a(); b(); }
};

template<int id>
struct lots_of_warnings<0, id> {
void operator()() { 1; }
};

int main(int argc, char *argv[])
{
lots_of_warnings<WRECURSE,0> foo;
foo();
return 0;
}

gives metric craptons of warnings for large enough values of WRECURSE (anyone an idea what kind of warning i could use to get around requiring "-Wall"?)

Edit: I guess something like "unsigned x = -1;" would be better to produce warnings than just "1;"...
Snuggles
Profile Blog Joined May 2010
United States1865 Posts
October 20 2011 18:55 GMT
#1736
Hey guys I'm having some trouble trying to do some simple beginner coding in C. I'm trying to write a program to do a little subtraction program. It seems like the output comes out with the correct answer to the subtraction problem but the character string comes out all jumbled. I can't seem to get it to come out without and issues.

Here's the code:


#include <stdio.h>

int main()
{
int value1,value2,sum;

value1 = 87;
value2 = 15;
sum = value1 - value2;

printf ("The difference between i% and i% is i%\n", value1, value2, sum);

return 0;
}



The output program would come out as:

 The difference between i 0x0.0000f0p-1022nd i 72s i

Process returned 0 (0x0) execution time : 0.007 s
Press any key to continue.


What I want to have as an output is something more like this:

+ Show Spoiler +
The difference between 87 and 15 is 72.

Press any key to continue.


yeah... what did I do wrong?
AcrossFiveJulys
Profile Blog Joined September 2005
United States3612 Posts
Last Edited: 2011-10-20 19:06:23
October 20 2011 19:01 GMT
#1737
You are using the wrong printf flag: replace i% with %d.

Notice that the flag indicator '%' comes before the letter. so make sure you do %d and not d%. You can see the result of reversing them in your current output.
Snuggles
Profile Blog Joined May 2010
United States1865 Posts
October 20 2011 19:10 GMT
#1738
Thanks that fixed it. What's the difference between '%' coming before or after the letter? The book I'm reading so far has only taught me about 'i%' for this kind of program. It works fine for addition problems but not so much for subtraction.
AcrossFiveJulys
Profile Blog Joined September 2005
United States3612 Posts
Last Edited: 2011-10-20 19:25:20
October 20 2011 19:19 GMT
#1739
When you put a '%' in your input string, printf looks for the next character to pair with it. This is the behavior I've always known with printf, so I don't know why your book has it before.

Btw, you might learn something by trying to understand why your first attempt's output came out exactly the way it did.
Frosticles
Profile Joined May 2010
United States50 Posts
October 20 2011 19:31 GMT
#1740
I'm having trouble with a line of code. I cannot get the program to correctly calculate current balance for all 4 lines in the txt file, instead it only calculates the current balance for the first line, and then gives me random numbers for the next 3 lines, I'm confused as to why this is....


The Source Code
+ Show Spoiler +

#include <iostream>
#include <fstream>
#include <string>
#include <cstdlib>
using namespace std;

int main()
{
string filename = "inventory.txt";
ifstream inFile;
string partnum;
double intialamnt;
double qntysold;
double minamnt;
double currentbalance = 0;
double minlevel;




inFile.open(filename.c_str()); //opens the file

if (inFile.fail())
{
cout << "The file was not successfuly opened" << endl;
exit(1);
}

inFile >> partnum >> intialamnt >> qntysold >> minamnt;
while (inFile.good())
{
currentbalance = (intialamnt - qntysold);
cout << partnum << " " << currentbalance << " " << qntysold << " " << minamnt << endl;
inFile >> partnum >> currentbalance >> qntysold >> minamnt;

}

inFile.close();

return 0;

}



The txt file
+ Show Spoiler +

QA310 95 47 50
CM145 320 162 200
MS514 34 20 25
EN212 163 150 160


The current output of the program
+ Show Spoiler +

QA310 48 47 50
CM145 -67 162 200
MS514 75 20 25
EN212 -55 150 160
Prev 1 85 86 87 88 89 1032 Next
Please log in or register to reply.
Live Events Refresh
Kung Fu Cup
12:00
2025 Monthly #3: Day 1
Reynor vs GuMihoLIVE!
ByuN vs ShoWTimE
RotterdaM523
TKL 182
Rex146
IntoTheiNu 103
SteadfastSC88
Liquipedia
OSC
11:30
Mid Season Playoffs
Cure vs SpiritLIVE!
Krystianer vs Percival
WardiTV446
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RotterdaM 523
Reynor 227
TKL 182
Rex 146
SteadfastSC 88
StarCraft: Brood War
Calm 4495
Rain 2923
Bisu 2701
Hyuk 2015
Horang2 1304
Flash 797
Soma 464
Backho 369
Stork 340
Rush 261
[ Show more ]
Pusan 197
Last 133
Soulkey 115
JulyZerg 104
Barracks 79
hero 58
sSak 33
zelot 31
Aegong 28
sas.Sziky 24
Killer 23
Terrorterran 11
Noble 9
Hm[arnc] 7
Dota 2
Gorgc2155
qojqva1591
Dendi1136
XcaliburYe181
BananaSlamJamma86
Counter-Strike
olofmeister911
allub158
Super Smash Bros
Mew2King127
Other Games
B2W.Neo990
hiko295
DeMusliM285
Pyrionflax260
Sick170
Fuzer 164
Hui .86
QueenE46
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• Adnapsc2 9
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• C_a_k_e 1641
• WagamamaTV400
League of Legends
• Nemesis1689
• TFBlade702
Upcoming Events
Tenacious Turtle Tussle
9h 5m
The PondCast
20h 5m
RSL Revival
20h 5m
Solar vs Zoun
MaxPax vs Bunny
Kung Fu Cup
22h 5m
WardiTV Korean Royale
22h 5m
PiGosaur Monday
1d 11h
RSL Revival
1d 20h
Classic vs Creator
Cure vs TriGGeR
Kung Fu Cup
1d 22h
CranKy Ducklings
2 days
RSL Revival
2 days
herO vs Gerald
ByuN vs SHIN
[ Show More ]
Kung Fu Cup
2 days
IPSL
3 days
ZZZero vs rasowy
Napoleon vs KameZerg
BSL 21
3 days
Tarson vs Julia
Doodle vs OldBoy
eOnzErG vs WolFix
StRyKeR vs Aeternum
Sparkling Tuna Cup
3 days
RSL Revival
3 days
Reynor vs sOs
Maru vs Ryung
Kung Fu Cup
3 days
WardiTV Korean Royale
3 days
BSL 21
4 days
JDConan vs Semih
Dragon vs Dienmax
Tech vs NewOcean
TerrOr vs Artosis
IPSL
4 days
Dewalt vs WolFix
eOnzErG vs Bonyth
Wardi Open
4 days
Monday Night Weeklies
5 days
WardiTV Korean Royale
5 days
The PondCast
6 days
Liquipedia Results

Completed

Proleague 2025-11-07
Stellar Fest: Constellation Cup
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
YSL S2
BSL Season 21
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual

Upcoming

SLON Tour Season 2
BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
RSL Revival: Season 3
META Madness #9
BLAST Bounty Winter 2026
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 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.