• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 08:08
CEST 14:08
KST 21:08
  • 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
Serral wins HomeStory Cup 2914Serral wins Maestros of the Game 243ByuL, and the Limitations of Standard Play3Team Liquid Map Contest #22: Results and Winners7Code S Season 2 (2026): RO4 and Finals Preview12
Community News
Balance hotfix patch 5.0.16b (July 16)44Reynor: GSL Loss Wasn't About Preparation Format16[IPSL] Spring 2026 Grand Finals - This Weekend!5Weekly Cups (July 6 - 12): Protoss strike back12BSL Season 22 Full Overview & Conclusion8
StarCraft 2
General
Balance hotfix patch 5.0.16b (July 16) [D] Wireframe Casting Removed Clem: "I don't have that much hope in Blizzard" Reynor: GSL Loss Wasn't About Preparation Format Is the larve respawn broken?
Tourneys
Master Swan Open (Global Bronze-Master 2) WardiTV Summer Cup 2026 GSL CK #5 Race War RSL Revival: Season 6 - Qualifiers and Main Event HomeStory Cup 29
Strategy
[G] Having the right mentality to improve
Custom Maps
New Map Maker - Looking for Advice - Love or Hate Work In Progress Melee Maps [D]RTS in all its shapes and glory <3
External Content
The PondCast: SC2 News & Results Mutation # 534 Burning Evacuation Mutation # 533 Die Together Mutation # 532 Nuclear Family
Brood War
General
ASL22 General Discussion BW General Discussion Pros Debate: Zerg Unfairly Nerfed? (ASL S22 map) Etiquete rules in Asl? Recent recommended BW games
Tourneys
Escore Tournament - Season 3 [Megathread] Daily Proleagues Small VOD Thread 2.0 [IPSL] Spring 2026 Grand Finals - This Weekend!
Strategy
Fighting Spirit mining rates Simple Questions, Simple Answers Creating a full chart of Zerg builds Relatively freeroll strategies
Other Games
General Games
Path of Exile General RTS Discussion Thread Nintendo Switch Thread Beyond All Reason Stormgate/Frost Giant Megathread
Dota 2
Looking for a Dota Mentor 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
TL Mafia
TL Mafia Power Rank NeO.D_StephenKing vs This Guy From 1 Million Dance TL Mafia Community Thread Vanilla Mini Mafia
Community
General
US Politics Mega-thread The Games Industry And ATVI Russo-Ukrainian War Thread UK Politics Mega-thread YouTube Thread
Fan Clubs
The IdrA Fan Club The HerO Fan Club!
Media & Entertainment
Anime Discussion Thread Movie Discussion! [Req][Books] Good Fantasy/SciFi books Series you have seen recently...
Sports
2024 - 2026 Football Thread MLB/Baseball 2023 McBoner: A hockey love story Tennis[sport] Formula 1 Discussion
World Cup 2022
Tech Support
Simple Questions Simple Answers FPS when play League Of Legend on laptop How to clean a TTe Thermaltake keyboard?
TL Community
Northern Ireland Global Starcraft The Automated Ban List
Blogs
Poker (part 2)
Nebuchad
The Experiences We Want and …
TrAiDoS
An Exploration of th…
waywardstrategy
ramps on octagon
StaticNine
Funny Nicknames
LUCKY_NOOB
Evil Gacha Games and the…
ffswowsucks
StarCraft improvement
iopq
Customize Sidebar...

Website Feedback

Closed Threads



Active: 7687 users

The Big Programming Thread - Page 249

Forum Index > General Forum
Post a Reply
Prev 1 247 248 249 250 251 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.
ambikalx
Profile Joined September 2011
United States30 Posts
February 17 2013 00:14 GMT
#4961
On February 16 2013 14:38 mcc wrote:

Just a small idea, maybe change the representation to prefix or postfix notation if allowed by the assignment So something like : 5(5AB)(1(4AB)(4BA)). Infix notation is terrible, I have no idea why it is used everywhere, it is so unfriendly for us programmers

But of course you can parse the infix notation also to create the expression tree recursively or without recursion. Just realize what are the invariants at each step. When you are examining (sub)formula there are 3 possibilities
1) it starts with 0 so 0X
- just put the 0 at the root of the expression tree and parse X and put it as a subtree
2) it is in the form of (X)
- well parse X and you have a tree
3) it is in the form of X{1/2/3/4/5}Y
- put the number as the root of the expression tree and parse X and Y and put it as its two subtrees

Note that I assumed that every subformula is in brackets. If it is not the case, you have to make it more complex and possibly include operator priorities.


Thanks for the suggestions! I figured out how to recursively parse the function and create the expression tree.. after writing the string manipulation implementation that I had mentioned. So yeah, I pretty much had to rewrite everything. Oh well
phar
Profile Joined August 2011
United States1080 Posts
Last Edited: 2013-02-17 00:22:02
February 17 2013 00:16 GMT
#4962
Yes, java has the same ternary operator common in most languages, that works just fine.

Unless you properly define what "num" is for us, then fabiano's code my fail, but if "num" is an array of int, then it's spot on.
Who after all is today speaking about the destruction of the Armenians?
Kambing
Profile Joined May 2010
United States1176 Posts
Last Edited: 2013-02-17 01:39:20
February 17 2013 01:35 GMT
#4963
On February 17 2013 03:35 BADBADNOTGOOD wrote:
Show nested quote +
On February 17 2013 03:10 Kambing wrote:
On February 17 2013 02:54 BADBADNOTGOOD wrote:
I'm looking to start learning the .NET Framework ( C++ and/or C# ), starting out with building basic console applications. For a while now I've been trawling around the MSDN site looking for ANYTHING about include libraries, DLL Pre-Build commands ect but I can't find any info on using a .NET class in VC++ 2010 / VC# 2010.

I have no idea how to even get these .NET classes recognised by Visual Studios.

It's probably me being stupid but I am clearly missing something, maybe I'm not understanding how development with .NET works?

Any suggestions/ input would be appreciated.


If you are learning the .NET framework, then you should be restricting yourself to C#. What do you mean by getting VS to recognize your classes? The library-and-build model for C# (to a first-order approximation) is much saner and cleaner than native code (which is sounds like where you are coming from). Can you give a concrete example of what you'd like to do as your initial statement is rather vague.


Lets say I literally only want access to the System namespace (http://msdn.microsoft.com/en-gb/library/system.aspx)

What headers do I need to use? What libraries do I need to use? How do you set up a VS project to recognise this .NET Framework namespace?

I'm sure I'm just completely overlooking something or missed the page on Getting Started where it mentions this but everyone who talks about using .NET seems to skip mentioning any of this.

Hope that's clearer.


Within the .NET framework and the .NET languages (e.g., C#, VB, V#, and IronPython), the fundamental code unit is the assembly which takes the form of either a .NET executable (traditionally with a .exe extension) or a .NET library (traditionally with a .dll extension). Assemblies contain code (in the CIL format) and metadata which are the types that the assembly exposes to the outside world. In contrast, native libraries only contain code but no metadata regarding their contains. Thus in the native code (specifically C/C++) world, you use header files that specify what types and functions are exposed by a given library. The difference is that there is no strong connection between the types defined in a header file and the code of a native library whereas with an assembly, the two are (rightfully) strongly tied together.

That being said, to use an assembly in your own code, you reference it during the compilation process which exposes the types in the assembly to the compiler. Your resulting program then has a corresponding dependence on that assembly at run time. In the MSDN documentation, each class tells you the assembly it comes from, e.g., the generic List<T> class

http://msdn.microsoft.com/en-us/library/6sh2ey19.aspx

comes from mscorlib.dll which is the .NET framework core library. It is implicitly referenced in every project.

Note that the documentation also mentions the namespace in which List<T> exists (the System.Collections.Generic namespace). In the .NET framework, namespaces have no special relationship to assemblies. Namespaces merely provide a scope to names. Furthermore, multiple assemblies may contribute to the same namespace. For example, the XmlElement class:

http://msdn.microsoft.com/en-us/library/system.xml.xmlelement.aspx

Is declared in the System.Xml namespace but exists within the System.Xml assembly. If you needed to use this class, you would need to add a reference to System.Xml.dll in your project (right-click References -> Add References and look under Framework).

Thus, the fully qualified name that you would use to reference a List<T> is really System.Collections.Generic.List<T>. However, this is a pain to use, so languages offer different ways of eliding fully-qualified names when there are no ambiguities. In C#, this is accomplished via the using declaration:


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
// This declaration is possible because we (implicitly)
// reference mscorlib.dll where List<T> exists.
System.Collections.Generic.List<int> list1 =
new System.Collections.Generic.List<int>();
// This declaration is possible because we use the using
// declaration above.
List<int> list2 = new List<int>();
}
}
}


So the likely short answer to your question is that you need (1) make sure that you are referencing the appropriate assembly that contains the classes you want to use in your project and (2) use using declarations to reference those classes.

The long answer is appropriate because how code is organized in the .NET framework is one of its key features is and very easy to misunderstand if you are coming from a different background.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2013-02-17 02:05:31
February 17 2013 01:59 GMT
#4964
Okay, this is JavaScript code for long division which I found here - http://weblog.bocoup.com/long-division-in-javascript/

+ Show Spoiler +


function longDivision(n,d){
var num = n + "",
numLength = num.length,
remainder = 0,
answer = '',
i = 0;

while( i < numLength + 3){
var digit = i < numLength ? parseInt(num[i]) : 0;

if (i == numLength){
answer = answer + ".";
}

answer = answer + Math.floor((digit + (remainder * 10))/d);
remainder = (digit + (remainder * 10))%d;
i++;
}
return parseFloat(answer);
}

longDivision(356,8);


I've tried to make it work in Java, and this is what I have so far:

+ Show Spoiler +


public class test {
public static double longDivision(int d, int n) {
String[] num = new String[1000];
num[0] = "" + n;
int numLength = num.length;
int remainder = 0;
String answer = "";
int i = 0;

while (i < numLength + 3) {
int digit = i < numLength ? Integer.parseInt(num[i]) : 0;

if (i == numLength){
answer = answer + ".";
}

answer = answer + Math.floor((digit + (remainder * 10))/d);
remainder = (digit + (remainder * 10))%d;
i++;
}

return Double.parseDouble(answer);
}

public static void main (String[] args) {
System.out.printf("%f\n", longDivision(356,8));
}
}


I have 2 problems though:
1. 'var' in JavaScript is so ambigious, I'm left to guess what data type to use in Java.
2. I'm still not sure what to do with the num array which probably causes the whole program not to work as it should.

Edit: Nevermind, ternary isn't touched here, but the num array looks rather messy.

And yeah, I get this error:

+ Show Spoiler +


Exception in thread "main" java.lang.NumberFormatException: null
at java.lang.Integer.parseInt(Unknown Source)
at java.lang.Integer.parseInt(Unknown Source)
at test.longDivision(test.java:11)
at test.main(test.java:26)


NumberFormatException: null at the line of declaring 'digit'.
phar
Profile Joined August 2011
United States1080 Posts
Last Edited: 2013-02-17 04:09:02
February 17 2013 03:42 GMT
#4965
Write more documentation detailing what you're trying to do at each step. I think you would be able to catch many of the problems if you just tried to understand what each line of code is doing.

Some problems with your code:

1) You switched the order of the numerator and denominator
2) The algorithm you are copying from returns a quotient and remainder. The problem you described several pages back explicitly needs high decimal precision. You fail to account for this at all.
3) You declare an array of strings, assign the first value, never assign the ith value, and then try to repeatedly access the ith value.
4) You stick the entire numerator (or what would be the numerator once you fix the issue in #1) into a single string, when I think you're trying to separate out the digits. It's not clear.

Those are the main quick 4 things I see wrong, there are probably more but it's not worth debugging because those 4 will completely fuck up all the rest of the function.

Who after all is today speaking about the destruction of the Armenians?
phar
Profile Joined August 2011
United States1080 Posts
February 17 2013 03:49 GMT
#4966
More detail on the problems I described above:

+ Show Spoiler +
2) You are just using the wrong long division algorithm. See if you can't work through the steps of long division from wikipedia yourself and write out the pseudocode. Use an algorithm that actually generates decimal points instead of a remainder. You will also need to include code for catching infinite loops, because many fractions repeat for infinity.

3) What I mean is you are doing this:

String[] num = new String[1000];
num[0] = "12345";
// ... some more stuff happens, but nothing using num
Integer.parseInt(num[0]) // ok.

// ... Some more stuff happens, but nothing using num
Integer.parseInt(num[1])
// this blows up because num[1] was never assigned.
// you only assigned num[0] and then tried to access num[1].



int foo[] = new int[10];
foo[0] = 5;
int bar = foo[1]; // This also blows up.


If you still don't understand what I mean with #3, you need to crack open a basic tutorial on arrays. This is a good start, but there are probably more things you can learn: http://docs.oracle.com/javase/tutorial/java/nutsandbolts/arrays.html

By the way what happens when you get more than 1000 digits? You need to handle that case as well.


4) You need to get the individual characters of the string and use each digit. Look at String.charAt() or something. Also you should probably use an int[] (or List really, just stop using arrays altogether) instead of string[].


Who after all is today speaking about the destruction of the Armenians?
MiyaviTeddy
Profile Blog Joined October 2008
Canada697 Posts
February 17 2013 05:45 GMT
#4967
Hey guys, I need some help/clarification on an assignment I'm doing.

One of the problems require me to write a member function that compares two strings.

A member function “CompareStrings” that would compare two strings (similar to strcmp “C” library function but do not use strcmp function) that returns 1 when the first string is grater (in lexicographical order) than the second one, 0 if the two strings are equal and -1 otherwise.


My issue is, what is lexicographical order? I've been trying to google it up but I have no clue what it exactly means.

If I compare two string like "abcdefg" and "abcdegh" or "Hello" and "Bye", how do I compare them in lexicographical order?
Aiyeeeee
phar
Profile Joined August 2011
United States1080 Posts
Last Edited: 2013-02-17 05:50:40
February 17 2013 05:49 GMT
#4968
http://en.wikipedia.org/wiki/Lexicographical_order

basically means just alpahbetical


They probably want you to compare the ascii char values of each individual point in the string. Keep going until you find a non-match, use that result (careful about running off the end of the string).
Who after all is today speaking about the destruction of the Armenians?
MiyaviTeddy
Profile Blog Joined October 2008
Canada697 Posts
February 17 2013 06:05 GMT
#4969
On February 17 2013 14:49 phar wrote:
http://en.wikipedia.org/wiki/Lexicographical_order

basically means just alpahbetical


They probably want you to compare the ascii char values of each individual point in the string. Keep going until you find a non-match, use that result (careful about running off the end of the string).


I'm not quite sure how to go about it. Do I add the ascii char values of each point and compare the sum of one string versus another?

also, I also need some clarification of the second function:

A member function that returns the number of occurrences of a character in an input string (both passed as formal parameters).


I'm just not sure what it means.

2 of the 4 functions I need to write I'm perfectly fine with. The lexicographical and this one is the two member functions I need help with.
Aiyeeeee
phar
Profile Joined August 2011
United States1080 Posts
February 17 2013 07:09 GMT
#4970
It means like


aa comes before aaa comes before aab

aa
aaa
aab
b
bb
bba
bbb

etc

you need to step through both strings at the same time and compare each individual character. so look at the first character in both strings, compare them, make a decision to return bigger, less than, or go on. Put that in a loop, handle the cases of one or both strings running out, and you're done.
Who after all is today speaking about the destruction of the Armenians?
phar
Profile Joined August 2011
United States1080 Posts
February 17 2013 07:11 GMT
#4971
For the second one, you just need a single loop over the input string.

Do you know how char works in C?

char x = 'a';
char y = 'b';

x == y -> false
x > y -> false
x < y -> true
Who after all is today speaking about the destruction of the Armenians?
Chillton
Profile Joined January 2011
Canada85 Posts
February 17 2013 17:12 GMT
#4972
I started taking this course online, does this seem to cover the basics for Python? I want to finish this, and move onto something more advanced. Maybe visual basics? Or Java?

http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-00sc-introduction-to-computer-science-and-programming-spring-2011/index.htm
Terran Fo' Life - Now Swarm Fo' Life :D
Joefish
Profile Joined July 2010
Germany314 Posts
February 17 2013 17:20 GMT
#4973
On February 18 2013 02:12 Chillton wrote:
I started taking this course online, does this seem to cover the basics for Python? I want to finish this, and move onto something more advanced. Maybe visual basics? Or Java?

http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-00sc-introduction-to-computer-science-and-programming-spring-2011/index.htm


I don't know this course, but rather than an introduction to Python it seems to be an introduction to computer sciene and programming.
So it doesn't matter what programming language is used there. It is about the fundamentals and to understand how to do stuff.
If you're done you can apply the principles in any programming language you like to learn.
JKholodnov
Profile Joined March 2011
66 Posts
Last Edited: 2013-02-18 02:25:15
February 18 2013 02:24 GMT
#4974
Hey guys,
I'm working on a program for my c++ uni class, and am trying to figure out how to initialize n sets of arrays.
For example if the input n = k, I need to initialize "k" arrays.
What I've got right now is this:
+ Show Spoiler +

while (i<n)
{
int arrayName+i; // I want this to return arrayName1 on the first run, arrayName2 on the second, etc.
i++;
}

Where i is initialized to 1 and n is inputted earlier in the program.
Any ideas to make it work?
Much appreciated.
phar
Profile Joined August 2011
United States1080 Posts
Last Edited: 2013-02-18 03:15:45
February 18 2013 03:15 GMT
#4975
On February 18 2013 11:24 JKholodnov wrote:
Hey guys,
I'm working on a program for my c++ uni class, and am trying to figure out how to initialize n sets of arrays.
For example if the input n = k, I need to initialize "k" arrays.
What I've got right now is this:

You mean an array of arrays? Or a std::set?

Have no idea what you mean by n = k. But if you just want to initialize an array of arrays:


// For an array of k arrays of n ints
void foo(int[][] bar, int k, int n) {
for (int i = 0; i < k; ++i) {
bar[i] = new int[n];
}
}
Who after all is today speaking about the destruction of the Armenians?
JKholodnov
Profile Joined March 2011
66 Posts
February 18 2013 03:43 GMT
#4976
That isn't exactly it. I meant the program is inputted an int n earlier in the program, and then must make that many arrays.
If n = 2 then I need 2 arrays created. If n =3 then 3 etc.
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
Last Edited: 2013-02-18 03:58:48
February 18 2013 03:50 GMT
#4977
On February 18 2013 12:43 JKholodnov wrote:
That isn't exactly it. I meant the program is inputted an int n earlier in the program, and then must make that many arrays.
If n = 2 then I need 2 arrays created. If n =3 then 3 etc.


I'm a bit rusty on my C++,


#include <vector>

int main ()
{
std::vector<int> outside_vector;
for (int i=1; i<=n; i++)
{
std::vector<int> inside_vector;
outside_vector.push_back(inside_vector);
}

...

return 0;
}


Why do you need to use an array? As far as I know, arrays can't be dynamically allocated so what you're describing is impossible. From what I can tell as well, your solution to this problem doesn't seem to be optimal, so if you want to describe it in another way some of us might be able to suggest a better alternative. Vectors inside vectors are most of the time a big no no.
There is no one like you in the universe.
obesechicken13
Profile Blog Joined July 2008
United States10467 Posts
Last Edited: 2013-02-18 04:45:58
February 18 2013 04:12 GMT
#4978
--NUKED-- I don't know what I'm talking about.
I think in our modern age technology has evolved to become more addictive. The things that don't give us pleasure aren't used as much. Work was never meant to be fun, but doing it makes us happier in the long run.
phar
Profile Joined August 2011
United States1080 Posts
Last Edited: 2013-02-18 04:18:49
February 18 2013 04:16 GMT
#4979
Yea you're right, my C++ is equally rusty, my code may not compile. Or maybe it would, I can't remember how the new operator works. Essentially what you need is the C++ equivalent of

foo[i] = (int *) malloc(k * sizeof(thing)), which I think the 'new' operator gets you for free.

At least I think that's what new int[n] is supposed to do for you.
Who after all is today speaking about the destruction of the Armenians?
obesechicken13
Profile Blog Joined July 2008
United States10467 Posts
February 18 2013 04:46 GMT
#4980
Does anyone else have trouble learning programming when they're near a computer? Like I keep getting distracted. What helps?
I think in our modern age technology has evolved to become more addictive. The things that don't give us pleasure aren't used as much. Work was never meant to be fun, but doing it makes us happier in the long run.
Prev 1 247 248 249 250 251 1032 Next
Please log in or register to reply.
Live Events Refresh
WardiTV Invitational
12:00
Summer Cup 2026 - Group A
WardiTV171
LiquipediaDiscussion
CranKy Ducklings
10:00
Master Swan Open #105
CranKy Ducklings63
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Ryung 904
Lowko417
SortOf 153
Rex 120
BRAT_OK 66
MindelVK 27
RushiSC 17
StarCraft: Brood War
Calm 5879
Rain 2516
Shuttle 1711
firebathero 849
Jaedong 679
Horang2 530
Hyuk 463
BeSt 403
Mini 309
Larva 185
[ Show more ]
Stork 176
Rush 153
Last 151
ZerO 146
Hyun 125
hero 89
Killer 75
ggaemo 71
Pusan 70
Sharp 65
Mong 62
Free 45
JYJ 40
Aegong 35
ZergMaN 34
JulyZerg 32
soO 32
sorry 29
Shine 27
Movie 21
HiyA 17
Barracks 17
yabsab 16
Hm[arnc] 15
ajuk12(nOOB) 12
IntoTheRainbow 9
Noble 9
Dota 2
Gorgc4730
XcaliburYe270
League of Legends
Doublelift2310
Counter-Strike
byalli1428
allub6
Heroes of the Storm
Trikslyr23
Other Games
gofns14835
singsing1674
B2W.Neo884
Happy220
RotterdaM193
XaKoH 123
ZerO(Twitch)5
Organizations
Other Games
gamesdonequick2511
BasetradeTV158
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 16 non-featured ]
StarCraft 2
• epiclan17
• Adnapsc2 13
• CranKy Ducklings SOOP7
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• Pr0nogo 3
• FT.aCt)Sony2
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Jankos2327
Upcoming Events
Epic.LAN
52m
IPSL
3h 52m
Dragon vs Hawk
RSL Revival
20h 52m
Classic vs Trap
herO vs SHIN
Sparkling Tuna Cup
21h 52m
OSC
1d
IPSL
1d 3h
Bonyth vs Ret
WardiTV Weekly
1d 22h
Monday Night Weeklies
2 days
PiGosaur Cup
3 days
The PondCast
3 days
[ Show More ]
Replay Cast
4 days
CrankTV Team League
4 days
Replay Cast
5 days
CrankTV Team League
5 days
Korean StarCraft League
6 days
RSL Revival
6 days
Liquipedia Results

Completed

Escore Tournament S3: W3
HSC XXIX
Eternal Conflict S2 E2

Ongoing

IPSL Spring 2026
Acropolis #4
YSL S3
CSL 2026 Summer (S21)
KCM Race Survival 2026 Season 3
RSL Revival: Season 6
CranK Gathers Season 4: BW vs SC2 Team League
SCTL 2026 Spring
Stake Ranked Episode 3
XSE Pro League 2026
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026

Upcoming

Escore Tournament S3: W4
ASL S22 SEASON OPEN Day 2
Escore Tournament S3: W5
CSLAN 4
Blizzard Classic Cup 2026
HSC XXX
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
Light Tournament 2026
Eternal Conflict S2 Finale
Eternal Conflict S2 E3
Logitech G Connect 2026
StarSeries Fall 2026
FISSURE Playground #5
BLAST Open Fall 2026
Esports World Cup 2026
BLAST Bounty Summer 2026
BLAST Bounty Summer 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 © 2026 TLnet. All Rights Reserved.