• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 17:08
CEST 23:08
KST 06: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
RSL Season 1 - Final Week6[ASL19] Finals Recap: Standing Tall15HomeStory Cup 27 - Info & Preview18Classic wins Code S Season 2 (2025)16Code S RO4 & Finals Preview: herO, Rogue, Classic, GuMiho0
Community News
Esports World Cup 2025 - Brackets Revealed14Weekly Cups (July 7-13): Classic continues to roll8Team TLMC #5 - Submission extension3Firefly given lifetime ban by ESIC following match-fixing investigation17$25,000 Streamerzone StarCraft Pro Series announced7
StarCraft 2
General
RSL Revival patreon money discussion thread Who will win EWC 2025? The GOAT ranking of GOAT rankings Server Blocker Weekly Cups (July 7-13): Classic continues to roll
Tourneys
FEL Cracov 2025 (July 27) - $8000 live event Sparkling Tuna Cup - Weekly Open Tournament Sea Duckling Open (Global, Bronze-Diamond) RSL: Revival, a new crowdfunded tournament series $5,100+ SEL Season 2 Championship (SC: Evo)
Strategy
How did i lose this ZvP, whats the proper response
Custom Maps
External Content
Mutation # 482 Wheel of Misfortune Mutation # 481 Fear and Lava Mutation # 480 Moths to the Flame Mutation # 479 Worn Out Welcome
Brood War
General
Flash Announces (and Retracts) Hiatus From ASL BGH Auto Balance -> http://bghmmr.eu/ BW General Discussion Soulkey Muta Micro Map? [ASL19] Finals Recap: Standing Tall
Tourneys
Starcraft Superstars Winner/Replays [Megathread] Daily Proleagues Cosmonarchy Pro Showmatches CSL Xiamen International Invitational
Strategy
Simple Questions, Simple Answers I am doing this better than progamers do.
Other Games
General Games
Stormgate/Frost Giant Megathread Path of Exile Nintendo Switch Thread CCLP - Command & Conquer League Project The PlayStation 5
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
Russo-Ukrainian War Thread US Politics Mega-thread We are Ready to Testify: Emergence Things Aren’t Peaceful in Palestine Stop Killing Games - European Citizens Initiative
Fan Clubs
SKT1 Classic Fan Club! Maru Fan Club
Media & Entertainment
Movie Discussion! Korean Music Discussion [Manga] One Piece Anime Discussion Thread [\m/] Heavy Metal Thread
Sports
2024 - 2025 Football Thread Formula 1 Discussion TeamLiquid Health and Fitness Initiative For 2023 NBA General Discussion NHL Playoffs 2024
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List
Blogs
Ping To Win? Pings And Their…
TrAiDoS
momentary artworks from des…
tankgirl
from making sc maps to makin…
Husyelt
StarCraft improvement
iopq
Customize Sidebar...

Website Feedback

Closed Threads



Active: 632 users

The Big Programming Thread - Page 91

Forum Index > General Forum
Post a Reply
Prev 1 89 90 91 92 93 1031 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
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 1031 Next
Please log in or register to reply.
Live Events Refresh
Next event in 12h 52m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
ZombieGrub250
Hui .198
UpATreeSC 154
Nathanias 146
JuggernautJason68
ForJumy 20
StarCraft: Brood War
Larva 941
ZZZero.O 146
scan(afreeca) 133
Aegong 84
Dota 2
syndereN817
NeuroSwarm111
League of Legends
Grubby4510
Counter-Strike
Stewie2K573
flusha486
byalli350
oskar272
Super Smash Bros
Liquid`Ken24
Heroes of the Storm
Liquid`Hasu618
Other Games
tarik_tv8612
summit1g4309
FrodaN2806
Beastyqt782
ToD296
C9.Mang0165
Skadoodle89
Trikslyr61
Sick50
PPMD36
Organizations
Other Games
gamesdonequick2658
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 18 non-featured ]
StarCraft 2
• LUISG 13
• musti20045 10
• IndyKCrew
• sooper7s
• AfreecaTV YouTube
• intothetv
• Kozan
• Migwel
• LaughNgamezSOOP
StarCraft: Brood War
• HerbMon 2
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota22614
• Ler77
League of Legends
• TFBlade965
Other Games
• imaqtpie2161
• Shiphtur219
Upcoming Events
CranKy Ducklings
12h 52m
Epic.LAN
14h 52m
CSO Contender
19h 52m
Sparkling Tuna Cup
1d 12h
Online Event
1d 18h
Esports World Cup
3 days
ByuN vs Astrea
Lambo vs HeRoMaRinE
Clem vs TBD
Solar vs Zoun
SHIN vs Reynor
Maru vs TriGGeR
herO vs Lancer
Cure vs ShoWTimE
Esports World Cup
4 days
Esports World Cup
5 days
Esports World Cup
6 days
Liquipedia Results

Completed

JPL Season 2
RSL Revival: Season 1
Murky Cup #2

Ongoing

BSL 2v2 Season 3
Copa Latinoamericana 4
Jiahua Invitational
BSL20 Non-Korean Championship
CSL Xiamen Invitational
CSL Xiamen Invitational: ShowMatche
Championship of Russia 2025
FISSURE Playground #1
BLAST.tv Austin Major 2025
ESL Impact League Season 7
IEM Dallas 2025
PGL Astana 2025
Asian Champions League '25

Upcoming

2025 ACS Season 2
CSLPRO Last Chance 2025
CSLPRO Chat StarLAN 3
BSL Season 21
RSL Revival: Season 2
SEL Season 2 Championship
uThermal 2v2 Main Event
FEL Cracov 2025
Esports World Cup 2025
Underdog Cup #2
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 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.