• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 03:23
CEST 09:23
KST 16:23
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
Team Liquid Map Contest #22: Results and Winners7Code S Season 2 (2026): RO4 and Finals Preview12TL.net Map Contest #22 - Voting & Ladder Map Selection7Code S Season 2 (2026) - RO8 Preview8[ASL21] Finals Preview: Two Legacies21
Community News
ZeroSpace at Steam NextFest - Last free demo20Weekly Cups (June 8-14): Clem and Solar double, PTR tested0RSL: S6 Finals played at BlizzCon 202611Douyu Cup 2026: $20,000 Legends Event (June 26-28)12[BSL22] Non-Korean Championship from 13 to 28 June4
StarCraft 2
General
StarCraft II 5.0.16 PTR Patch Notes may 26th Is the larve respawn broken? Yamato Cup Series What kind of tool would you be interested in? Daily SC2 Player Grid - feedback wanted
Tourneys
Douyu Cup 2026: $20,000 Legends Event (June 26-28) GSL CK #4 20-21th June Sparkling Tuna Cup - Weekly Open Tournament Master Swan Open (Global Bronze-Master 2) Crank Gathers Season 4: BW vs SC2 Team League
Strategy
[G] Having the right mentality to improve
Custom Maps
Work In Progress Melee Maps [D]RTS in all its shapes and glory <3
External Content
The PondCast: SC2 News & Results Mutation # 531 Experimental Artillery Mutation # 530 One For All Mutation # 529 Opportunities Unleashed
Brood War
General
BGH Auto Balance -> http://bghmmr.eu/ STARCRAFT MOVIE - Last Night at the Command center BW General Discussion Battle cruiser feet vs Carrier fleet Fact based Zerg Upgrade Tier List
Tourneys
CSLAN 4 is Coming! [Megathread] Daily Proleagues Small VOD Thread 2.0 The Casual Games of the Week Thread
Strategy
Why doesn't anyone use restoration? Simple Questions, Simple Answers Relatively freeroll strategies Creating a full chart of Zerg builds
Other Games
General Games
Stormgate/Frost Giant Megathread Beyond All Reason Path of Exile ZeroSpace at Steam NextFest - Last free demo Nintendo Switch Thread
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
Vanilla Mini Mafia
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread [H]Internet/Gaming Cafe Tips and Tricks The Games Industry And ATVI UK Politics Mega-thread
Fan Clubs
The HerO Fan Club! The herO Fan Club!
Media & Entertainment
Movie Discussion! [Req][Books] Good Fantasy/SciFi books [TV/BOOK] *SPOILERS* Game of Thrones Discussion
Sports
2024 - 2026 Football Thread McBoner: A hockey love story TeamLiquid Health and Fitness Initiative For 2023 Formula 1 Discussion Cricket [SPORT]
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread Facing Challenges in Mobile App Development
TL Community
The Automated Ban List
Blogs
How To Predict Tilt in Espor…
TrAiDoS
An Exploration of th…
waywardstrategy
I'm an arrogant trash talke…
FlaShFTW
Gauntlet SC2: A Retrospectiv…
Ctone23
Why RTS gamers make better f…
gosubay
Customize Sidebar...

Website Feedback

Closed Threads



Active: 9422 users

The Big Programming Thread - Page 91

Forum Index > General Forum
Post a Reply
Prev 1 89 90 91 92 93 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.
IreScath
Profile Joined May 2009
Canada521 Posts
October 25 2011 18:12 GMT
#1801
On October 26 2011 03:08 fabiano wrote:
so you need to break a 1x25 table into five 1x5 tables in which each one theres some label (such as "set2 of run 4")?

if thats what you need you should code a CSV parser that identifies if the table has 25 or 60 lines and break it into five 1x5 (for the 25 lines) or fifteen 1x4 (for the 60 lines). Should be very easy to do with java, no idea about VB though.


Im trying to automate teh whole process.. I hit something or open up both the csv and excel file... start it... it seperates it, copy pasta's it all and then I just save and close... I spend like over an hour a day copy and pasting that crap
IreScath
fabiano
Profile Blog Joined August 2009
Brazil4644 Posts
Last Edited: 2011-10-25 19:00:06
October 25 2011 18:58 GMT
#1802
On October 26 2011 03:12 B00ts wrote:
Show nested quote +
On October 26 2011 03:08 fabiano wrote:
so you need to break a 1x25 table into five 1x5 tables in which each one theres some label (such as "set2 of run 4")?

if thats what you need you should code a CSV parser that identifies if the table has 25 or 60 lines and break it into five 1x5 (for the 25 lines) or fifteen 1x4 (for the 60 lines). Should be very easy to do with java, no idea about VB though.


Im trying to automate teh whole process.. I hit something or open up both the csv and excel file... start it... it seperates it, copy pasta's it all and then I just save and close... I spend like over an hour a day copy and pasting that crap


Okay, I've made in java something to automate that. Command-line only.

Download

Usage:

on prompt type:

java CSVParser your_input_file.csv your_output_file.csv

notes:
- Your prompt must be on the same directory as the CSVParser.class is
- It only works on CSV files with only 1 column (heh, lame I know)
- Do not use your input file as output file, I'vent tested if shit would happen if you did
- Backup your original files before using it
- Use at your own risk

REMEMBER TO TRY THIS ON SOME TEST FILES TO MAKE SURE IT IS IN FACT WHAT YOU WANT. ALSO, BACKUP YOUR FILES.

Heres the code, if you are interested:
+ Show Spoiler +


import java.io.*;

public class CSVParser {
public static void parse(String inFilename, String outFilename) throws IOException {
BufferedReader reader = new BufferedReader(new FileReader(inFilename));
FileWriter writer = new FileWriter(outFilename);

int lines = getNumOfLines(inFilename);
int iterations = 0;

if(lines == 25) {
while(reader.ready()) {
if(iterations == 5) {
iterations = 0;
writer.write("\n");
}

writer.write(reader.readLine() + "\n");

iterations++;
}
}
else if(lines == 60) {
while(reader.ready()) {
if(iterations == 4) {
iterations = 0;
writer.write("\n");
}

writer.write(reader.readLine() + "\n");

iterations++;
}
}

writer.flush();

reader.close();
writer.close();
}

public static int getNumOfLines(String filename) throws IOException {
BufferedReader reader = new BufferedReader(new FileReader(filename));

int lines = 0;
while(reader.ready()) {
reader.readLine();
lines++;
}

reader.close();

return lines;
}

public static void main(String args[]) {
try {
CSVParser.parse(args[0], args[1]);
}
catch(IOException e) {
e.printStackTrace();
}
}
}
"When the geyser died, a probe came out" - SirJolt
IreScath
Profile Joined May 2009
Canada521 Posts
October 25 2011 19:30 GMT
#1803
On October 26 2011 03:58 fabiano wrote:
Show nested quote +
On October 26 2011 03:12 B00ts wrote:
On October 26 2011 03:08 fabiano wrote:
so you need to break a 1x25 table into five 1x5 tables in which each one theres some label (such as "set2 of run 4")?

if thats what you need you should code a CSV parser that identifies if the table has 25 or 60 lines and break it into five 1x5 (for the 25 lines) or fifteen 1x4 (for the 60 lines). Should be very easy to do with java, no idea about VB though.


Im trying to automate teh whole process.. I hit something or open up both the csv and excel file... start it... it seperates it, copy pasta's it all and then I just save and close... I spend like over an hour a day copy and pasting that crap


Okay, I've made in java something to automate that. Command-line only.

Download

Usage:

on prompt type:

java CSVParser your_input_file.csv your_output_file.csv

notes:
- Your prompt must be on the same directory as the CSVParser.class is
- It only works on CSV files with only 1 column (heh, lame I know)
- Do not use your input file as output file, I'vent tested if shit would happen if you did
- Backup your original files before using it
- Use at your own risk

REMEMBER TO TRY THIS ON SOME TEST FILES TO MAKE SURE IT IS IN FACT WHAT YOU WANT. ALSO, BACKUP YOUR FILES.

Heres the code, if you are interested:
+ Show Spoiler +


import java.io.*;

public class CSVParser {
public static void parse(String inFilename, String outFilename) throws IOException {
BufferedReader reader = new BufferedReader(new FileReader(inFilename));
FileWriter writer = new FileWriter(outFilename);

int lines = getNumOfLines(inFilename);
int iterations = 0;

if(lines == 25) {
while(reader.ready()) {
if(iterations == 5) {
iterations = 0;
writer.write("\n");
}

writer.write(reader.readLine() + "\n");

iterations++;
}
}
else if(lines == 60) {
while(reader.ready()) {
if(iterations == 4) {
iterations = 0;
writer.write("\n");
}

writer.write(reader.readLine() + "\n");

iterations++;
}
}

writer.flush();

reader.close();
writer.close();
}

public static int getNumOfLines(String filename) throws IOException {
BufferedReader reader = new BufferedReader(new FileReader(filename));

int lines = 0;
while(reader.ready()) {
reader.readLine();
lines++;
}

reader.close();

return lines;
}

public static void main(String args[] {
try {
CSVParser.parse(args[0], args[1];
}
catch(IOException e) {
e.printStackTrace();
}
}
}


Wow thanks for the work, wasn't expecting that!

The only thing is that the start point for where it will be pasted will vary... all teh pasted lines are in the same spot relative to the first pasted cell... however that pasted cell could be on line 34, 246, etc... and not always on the same column... so just using new line will mess up the rest of the excel...

Is there a way to access individual cells in an excel file and write to that cell... that way I could just edit that code and write to specific cells based off of a start cell number I can either hard code in or enter as an argument.

Does java have such a library?
IreScath
fabiano
Profile Blog Joined August 2009
Brazil4644 Posts
October 25 2011 19:51 GMT
#1804
ah.. sorry, I didnt think of that.

Dont know if java has such library. Don't know how to solve that for now, sorry
"When the geyser died, a probe came out" - SirJolt
MisterD
Profile Blog Joined June 2010
Germany1338 Posts
October 25 2011 19:53 GMT
#1805
On October 26 2011 04:30 B00ts wrote:
Show nested quote +
On October 26 2011 03:58 fabiano wrote:
On October 26 2011 03:12 B00ts wrote:
On October 26 2011 03:08 fabiano wrote:
so you need to break a 1x25 table into five 1x5 tables in which each one theres some label (such as "set2 of run 4")?

if thats what you need you should code a CSV parser that identifies if the table has 25 or 60 lines and break it into five 1x5 (for the 25 lines) or fifteen 1x4 (for the 60 lines). Should be very easy to do with java, no idea about VB though.


Im trying to automate teh whole process.. I hit something or open up both the csv and excel file... start it... it seperates it, copy pasta's it all and then I just save and close... I spend like over an hour a day copy and pasting that crap


Okay, I've made in java something to automate that. Command-line only.

Download

Usage:

on prompt type:

java CSVParser your_input_file.csv your_output_file.csv

notes:
- Your prompt must be on the same directory as the CSVParser.class is
- It only works on CSV files with only 1 column (heh, lame I know)
- Do not use your input file as output file, I'vent tested if shit would happen if you did
- Backup your original files before using it
- Use at your own risk

REMEMBER TO TRY THIS ON SOME TEST FILES TO MAKE SURE IT IS IN FACT WHAT YOU WANT. ALSO, BACKUP YOUR FILES.

Heres the code, if you are interested:
+ Show Spoiler +


import java.io.*;

public class CSVParser {
public static void parse(String inFilename, String outFilename) throws IOException {
BufferedReader reader = new BufferedReader(new FileReader(inFilename));
FileWriter writer = new FileWriter(outFilename);

int lines = getNumOfLines(inFilename);
int iterations = 0;

if(lines == 25) {
while(reader.ready()) {
if(iterations == 5) {
iterations = 0;
writer.write("\n");
}

writer.write(reader.readLine() + "\n");

iterations++;
}
}
else if(lines == 60) {
while(reader.ready()) {
if(iterations == 4) {
iterations = 0;
writer.write("\n");
}

writer.write(reader.readLine() + "\n");

iterations++;
}
}

writer.flush();

reader.close();
writer.close();
}

public static int getNumOfLines(String filename) throws IOException {
BufferedReader reader = new BufferedReader(new FileReader(filename));

int lines = 0;
while(reader.ready()) {
reader.readLine();
lines++;
}

reader.close();

return lines;
}

public static void main(String args[] {
try {
CSVParser.parse(args[0], args[1];
}
catch(IOException e) {
e.printStackTrace();
}
}
}


Wow thanks for the work, wasn't expecting that!

The only thing is that the start point for where it will be pasted will vary... all teh pasted lines are in the same spot relative to the first pasted cell... however that pasted cell could be on line 34, 246, etc... and not always on the same column... so just using new line will mess up the rest of the excel...

Is there a way to access individual cells in an excel file and write to that cell... that way I could just edit that code and write to specific cells based off of a start cell number I can either hard code in or enter as an argument.

Does java have such a library?

like http://poi.apache.org/ for instance? (google java xls first hit :p )
Gold isn't everything in life... you need wood, too!
Phrost
Profile Blog Joined May 2010
United States4008 Posts
October 25 2011 20:24 GMT
#1806
I figured some of you might like this quote from my teacher today:

"Using static variables in functions that are called in a multi-threaded application is like playing Russian roulette with a fully loaded gun."
iamphrost.tumblr.com // http://howtobebettermagicplayer.tumblr.com // twitter @phrost_
KaiserJohan
Profile Joined May 2010
Sweden1808 Posts
October 25 2011 20:36 GMT
#1807
On October 26 2011 05:24 Phrost wrote:
I figured some of you might like this quote from my teacher today:

"Using static variables in functions that are called in a multi-threaded application is like playing Russian roulette with a fully loaded gun."


Haha yes thats bound for disaster. Not that anyone would do it save novices though
England will fight to the last American
MisterD
Profile Blog Joined June 2010
Germany1338 Posts
October 26 2011 09:35 GMT
#1808
the variables don't need to be static, static is only required if your object is used thread-exclusive. If your object is shared between multiple threads, static is totally unnecessary to play "russian roulette". So don't be fooled into thinking "i don't have static, i'm thread safe", because you are not.
Gold isn't everything in life... you need wood, too!
InRaged
Profile Joined February 2007
1047 Posts
Last Edited: 2011-10-26 10:54:05
October 26 2011 10:47 GMT
#1809
On October 26 2011 01:37 ArcticVanguard wrote:
Could someone help me break down this (small) code please, so I may understand it better?
+ Show Spoiler +
quine = 'quine = %r\r\nprint quine %% quine'
print quine % quine

I know what the flags do, but I'm having trouble understanding how they relate to print quine % quine. What does the % operator do when performed on two identical strings like that?

lol, that's pretty funny piece of code. It was made specifically to confuse beginners. But it's really simple.
quine isn't just a string in this case. It's a formatted string. And for such strings % operator works as string formatting operator (link).
Say, if you do
>>> print "2x2=%i" % 4
You will have '2x2=4' as a result, cause %i was substituted with 4 ('i' stands for integer). In your example there's a %r format used that stands for object representation and is substituted with whatever objects built-in __repr__() function returns. For strings this function returns string itself surrounded by quotation marks and stuff like \n or \t intact.
So when you do
>>> print quine % quine
The %r in quine is replaced with 'quine = %r\r\nprint quine %% quine' and the resulting string that is printed basically looks like
quine = 'quine = %r\r\nprint quine %% quine'\r\nprint quine % quine
except for the last \r\n combo that turns into new line.
Also notice that once formatting is done '%%' is replaced with '%'.
BottleAbuser
Profile Blog Joined December 2007
Korea (South)1888 Posts
Last Edited: 2011-10-26 11:43:07
October 26 2011 11:41 GMT
#1810
Fun random tidbits I learned recently:

In Java (6),

String a = "foo";
String b = "foo"
System.out.println(a==b); //prints "true"


Class A{
static void foo(){ System.out.println("foo");}
}
Class B extends A{
static void foo(){ System.out.println("bar");}
}
...
public static void main(String[] args){
A var = new B();
var.foo(); //prints "foo"
}


Also, for a lot of languages you need to synchronize your threads to be thread safe.
Compilers are like boyfriends, you miss a period and they go crazy on you.
Kambing
Profile Joined May 2010
United States1176 Posts
October 26 2011 12:57 GMT
#1811
On October 26 2011 20:41 BottleAbuser wrote:
Fun random tidbits I learned recently:

In Java (6),

String a = "foo";
String b = "foo"
System.out.println(a==b); //prints "true"


Class A{
static void foo(){ System.out.println("foo");}
}
Class B extends A{
static void foo(){ System.out.println("bar");}
}
...
public static void main(String[] args){
A var = new B();
var.foo(); //prints "foo"
}


Also, for a lot of languages you need to synchronize your threads to be thread safe.


Yup. The first is because of string interning. In Java, dynamically generated strings (e.g., those created from user input or files) are not interned by default. The second is because static methods are associated with the class rather than objects of that class type. It's a convenience that you can say var.foo() because this sugars to A.foo() where A is the static type of var.
Frigo
Profile Joined August 2009
Hungary1023 Posts
October 27 2011 18:31 GMT
#1812
Don't call static methods by instance variable, ever. It can deceive you and others in numerous ways. If you want to shorten the call, just use static import.
http://www.fimfiction.net/user/Treasure_Chest
EvanED
Profile Joined October 2009
United States111 Posts
October 28 2011 03:52 GMT
#1813
On October 28 2011 03:31 Frigo wrote:
Don't call static methods by instance variable, ever. It can deceive you and others in numerous ways. If you want to shorten the call, just use static import.

This is very good advice. I'm surprised Java even allows it, to be honest.
foom
Profile Blog Joined September 2006
United States47 Posts
October 29 2011 18:43 GMT
#1814
Does anyone else find it difficult to remember different frameworks and tool names and how they operate and compare to each other? Recently at work I've been coming across this problem. I'm finding it fairly difficult to keep all of them straight. The only solution I've found so far to remember them by is to try them all out for an extended period of time, but there are simply too many.
Millitron
Profile Blog Joined August 2010
United States2611 Posts
October 29 2011 19:09 GMT
#1815
On October 30 2011 03:43 foom wrote:
Does anyone else find it difficult to remember different frameworks and tool names and how they operate and compare to each other? Recently at work I've been coming across this problem. I'm finding it fairly difficult to keep all of them straight. The only solution I've found so far to remember them by is to try them all out for an extended period of time, but there are simply too many.

Sort of; I've been having trouble keeping the API's of all the different languages and libraries I use for my coursework straight. It'd be nice if they were all as easily accessible as Java's API, but sadly, this is not the case.
Who called in the fleet?
Isualin
Profile Joined March 2011
Germany1903 Posts
October 29 2011 19:16 GMT
#1816
hello im new in c++. i was using Convert.ToDouble(blabla) in c# but i dont know how to do this in c++. so how can i convert char '3' to double 3. i need to get values from a char array like "6-8*2+45".
| INnoVation | The literal god TY | ByuNjwa | LRSL when? |
Millitron
Profile Blog Joined August 2010
United States2611 Posts
Last Edited: 2011-10-29 19:28:49
October 29 2011 19:21 GMT
#1817
On October 30 2011 04:16 Isualin wrote:
hello im new in c++. i was using Convert.ToDouble(blabla) in c# but i dont know how to do this in c++. so how can i convert char '3' to double 3. i need to get values from a char array like "6-8*2+45".

Well, I would first get the chars to be ints, by something like this: int a = 'a' - 97. Its 97 because that is the unicode representation of the letter 'a', so 'a' as an int should be 0, 'b' should be 1, and so on. Then its trivial to get doubles from those ints, you just cast them as doubles.

NOTE:
My above method only works for systems using unicode encoding. If you want it to work on all encodings it should be something like:

int a = 'a' - 'a';
int b = 'b' - 'a';

And so on for however many characters you need. Also, this is only reasonable for single characters. I can't think of a good way to change strings to ints. For instance, the string "bb" might be 11, because 'b' = 1, but then again, 'L' is also 11. "bb" could instead be thought of as 1+1, but thats just 2, and 'c' is 2 as well, so as you can see there really isn't a good way to do this for more than a single character.
Who called in the fleet?
SRBNikola
Profile Blog Joined July 2011
Serbia191 Posts
Last Edited: 2011-10-29 19:32:12
October 29 2011 19:22 GMT
#1818
@Isualin:
Simple type cast converts it.
+ Show Spoiler +
char ch = 'A';
int i = ch;
double = (double)i;
delHospital
Profile Blog Joined December 2010
Poland261 Posts
Last Edited: 2011-10-29 19:37:33
October 29 2011 19:28 GMT
#1819
On October 30 2011 04:16 Isualin wrote:
hello im new in c++. i was using Convert.ToDouble(blabla) in c# but i dont know how to do this in c++. so how can i convert char '3' to double 3. i need to get values from a char array like "6-8*2+45".

use sscanf from stdio.h
e: or atof from stdlib.h
On October 30 2011 04:22 LionKiNG wrote:
EDIT: Sorry, this should work better:
char ch = "A";
int i = ch;
double = (double)i;

this won't even compile
SRBNikola
Profile Blog Joined July 2011
Serbia191 Posts
October 29 2011 19:33 GMT
#1820
On October 30 2011 04:16 Isualin wrote:
hello im new in c++. i was using Convert.ToDouble(blabla) in c# but i dont know how to do this in c++. so how can i convert char '3' to double 3. i need to get values from a char array like "6-8*2+45".


Do you need to sum that char array/string?
Prev 1 89 90 91 92 93 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 3h 38m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
WinterStarcraft509
Nina 121
RuFF_SC2 72
StarCraft: Brood War
Leta 166
Hm[arnc] 71
Larva 37
soO 18
Dota 2
NeuroSwarm114
League of Legends
JimRising 666
Counter-Strike
summit1g11376
Other Games
ceh9354
Happy277
KnowMe11
Organizations
Dota 2
PGL Dota 2 - Secondary Stream5534
Other Games
gamesdonequick1057
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 15 non-featured ]
StarCraft 2
• practicex 9
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Rush1731
• Jankos559
• Stunt470
• HappyZerGling105
Upcoming Events
WardiTV Weekly
3h 38m
Monday Night Weeklies
8h 38m
Sparkling Tuna Cup
1d 2h
The PondCast
2 days
Douyu Cup 2020
2 days
Oliveira vs Trap
Jieshi vs XY
soO vs FanTaSy
TY vs Coffee
Douyu Cup 2020
3 days
Neeb vs Impact
MacSed vs Cyan
Scarlett vs Kelazhur
INnoVation vs Dear
Douyu Cup 2020
4 days
Maestros of the Game
5 days
herO vs Classic
Maru vs Serral
BSL22 NKC (BSL vs China)
5 days
Douyu Cup 2020
5 days
[ Show More ]
BSL22 NKC (BSL vs China)
6 days
Online Event
6 days
RSL Revival
6 days
Liquipedia Results

Completed

Acropolis #4
WardiTV Spring 2026
Heroes Pulsing #2

Ongoing

IPSL Spring 2026
CSCL: Masked Kings S4
YSL S3
BSL 22 Non-Korean Championship
CSL Season 21: Qualifier 1
SCTL 2026 Spring
Maestros of the Game 2
Murky Cup 2026
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026
IEM Rio 2026
PGL Bucharest 2026

Upcoming

CSL Season 21: Qualifier 2
CSL 2026 Summer (S21)
CSLAN 4
Blizzard Classic Cup 2026
Kung Fu Cup 2026 Grand Finals
RSL Revival: Season 6
CranK Gathers Season 4: BW vs SC2 Team League
HSC XXIX
Douyu Cup 2026
BCC 2026
Light HT
Heroes Pulsing #3
BLAST Open Fall 2026
Esports World Cup 2026
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
Stake Ranked Episode 3
XSE Pro League 2026
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.