• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 05:56
CEST 11:56
KST 18:56
  • 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
[ASL22] Ro24 Preview: Summer's End9Serral wins HomeStory Cup 2915Serral wins Maestros of the Game 244ByuL, and the Limitations of Standard Play3Team Liquid Map Contest #22: Results and Winners7
Community News
Weekly Cups (August 10-16): SHIN doubles2GSTL Returns in 2026!45Weekly Cups (Aug 3-9): Protoss get shut out7RSL goes to London! 2026 Offline Finals Nov 21-2212Weekly Cups (July 27-Aug 2): SHIN's big week0
StarCraft 2
General
Geoff 'iNcontroL' Robinson has passed away SC4ALL II: SC2 Player Announcement 6/8 - Maru GSTL Returns in 2026! Balance hotfix patch 5.0.16b (July 16) Serral wins Maestros of the Game 2
Tourneys
Sparkling Tuna Cup - Weekly Open Tournament PIG STY FESTIVAL 8.0! (13 - 23 August) WORTEX 2026 - Hungarian SC2 Finals Budapest SC2 AI Tournament 2026 Fall 2026 GSTL Announcement
Strategy
[G] Having the right mentality to improve
Custom Maps
Nexus Wars 2021 GUIDE [M] (2) Industrial Park
External Content
The PondCast: SC2 News & Results Mutation # 539 Thunder Dome Mutation # 538 Media Blackout Mutation # 537 Hostile Territory
Brood War
General
Replay Review Process - What do you do? Pros React To: First 'Fastest' Map in ASL History BW General Discussion [Personal Project Share] Terran Defense v0.60 ASL22 General Discussion
Tourneys
Brood War in Budapest ! WORTEX 2026 BW Finals [ASL22] Ro24 Group C Small VOD Thread 2.0 Toronto invitational lan 22 august
Strategy
Odyssey Mineral Stack Saturation Fighting Spirit mining rates Any training maps people recommend? Simple Questions, Simple Answers
Other Games
General Games
Nintendo Switch Thread General RTS Discussion Thread Anyone here play Quakeworld back in the day? Stormgate/Frost Giant Megathread EVE Corporation
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
[TL LoL EUW IHs] Teemo shall perish TSM pausing esports and CLG Dead
Heroes of the Storm
Heroes of the Storm 2.0
Hearthstone
Deck construction bug
TL Mafia
TL Mafia Power Rank TL Mafia Community Thread NeO.D_StephenKing vs This Guy From 1 Million Dance
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Canadian Politics Mega-thread Dating: How's your luck? Artificial Intelligence Thread
Fan Clubs
The Creator Fan Club MarineLorD Fan Club The ShoWTimE Fan Club
Media & Entertainment
Movie Discussion! Anime Discussion Thread
Sports
Football (Soccer) Thread MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023 NBA General Discussion
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread Simple Questions Simple Answers FPS when play League Of Legend on laptop
TL Community
The Automated Ban List Northern Ireland Global Starcraft
Blogs
Young Players Exit Esports E…
TrAiDoS
LOCKPICKING NOOB
LUCKY_NOOB
Cathedral Of CS And NY pizza a…
FuDDx
Please support my new stand…
Peanutsc
Customize Sidebar...

Website Feedback

Closed Threads



Active: 5202 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 4m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
ProTech53
BRAT_OK 23
MindelVK 14
StarCraft: Brood War
Leta 4362
Hyuk 974
Bisu 841
BeSt 669
Killer 209
EffOrt 183
Mini 141
Pusan 138
Shuttle 119
PianO 102
[ Show more ]
Zeus 92
Yoon 92
Stork 85
Sharp 78
Mind 46
Hm[arnc] 40
Bale 23
Aegong 20
Sacsri 19
Noble 13
ZergMaN 9
IntoTheRainbow 9
Dota 2
The International174855
Gorgc10662
singsing3253
Counter-Strike
shoxiejesuss936
Super Smash Bros
Mew2King49
Other Games
Sick147
[ Show 13 non-featured ]
StarCraft 2
• StrangeGG 34
• LUISG 29
• CranKy Ducklings SOOP5
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• Migwel
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• WagamamaTV216
League of Legends
• Jankos1070
Upcoming Events
Sparkling Tuna Cup
4m
CranKy Ducklings4
PiG Sty Festival
2h 4m
Solar vs Reynor
Serral vs Maru
OSC
6h 4m
Afreeca Starleague
1d
hero vs ggaemo
Larva vs Mong
The Patches Monday
1d 6h
Afreeca Starleague
2 days
Soulkey vs PianO
JyJ vs sSak
GSL
2 days
PiGosaur Cup
2 days
Replay Cast
2 days
Afreeca Starleague
3 days
Mini vs Calm
Queen vs EffOrt
[ Show More ]
Replay Cast
3 days
The PondCast
4 days
IntoTheTV X SOOP
5 days
GSL
6 days
Replay Cast
6 days
Liquipedia Results

Completed

Escore Tournament S3: W8
CranK Gathers Season 4: BW vs SC2 Team League
Eternal Conflict S2 Finale

Ongoing

KCM Race Survival 2026 Season 3
K-JUNGMAN
ASL Season 22
Super Anchor Qualifying S3
CSL Season 22: Qualifier 1
RSL Revival: Season 6
PiG Sty Festival 8.0
META DYMY #4
Esports World Cup 2026
Esports World Cup 2026: LCQ
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
Stake Ranked Episode 3
XSE Pro League 2026
IEM Cologne Major 2026

Upcoming

CSL Season 22: Qualifier 2
CSL 2026 AUTUMN (S22)
Acropolis #5
Acropolis #5 - TRS
Blizzard Classic Cup 2026
Acropolis #5 - GSA
Acropolis #5 - GSB
HSC XXX
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
RSL Offline Finals
Calamity Invitational
Big Dog Cup 2026 Div 1
IEM Beijing 2026
Stake Ranked Episode 5
PGL Masters Bucharest 2026
Thunderpick World Champ. '26
ESL Pro League Season 24
Stake Ranked Episode 4
1win Private Club #1
Logitech G Play Connect 2026
SL StarSeries Fall 2026
FISSURE Playground #3
BLAST Open Fall 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.