• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 13:17
CET 19:17
KST 03:17
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
TL.net Map Contest #21: Winners11Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10[ASL20] Finals Preview: Arrival13TL.net Map Contest #21: Voting12[ASL20] Ro4 Preview: Descent11
Community News
StarCraft, SC2, HotS, WC3, Returning to Blizzcon!45$5,000+ WardiTV 2025 Championship7[BSL21] RO32 Group Stage4Weekly Cups (Oct 26-Nov 2): Liquid, Clem, Solar win; LAN in Philly2Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win10
StarCraft 2
General
SC: Evo Complete - Ranked Ladder OPEN ALPHA Mech is the composition that needs teleportation t TL.net Map Contest #21: Winners StarCraft, SC2, HotS, WC3, Returning to Blizzcon! RotterdaM "Serral is the GOAT, and it's not close"
Tourneys
Constellation Cup - Main Event - Stellar Fest Sparkling Tuna Cup - Weekly Open Tournament $5,000+ WardiTV 2025 Championship Merivale 8 Open - LAN - Stellar Fest Sea Duckling Open (Global, Bronze-Diamond)
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 499 Chilling Adaptation Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened Mutation # 496 Endless Infection
Brood War
General
FlaSh on: Biggest Problem With SnOw's Playstyle BGH Auto Balance -> http://bghmmr.eu/ [ASL20] Ask the mapmakers — Drop your questions BW General Discussion Where's CardinalAllin/Jukado the mapmaker?
Tourneys
[Megathread] Daily Proleagues [ASL20] Grand Finals [BSL21] RO32 Group A - Saturday 21:00 CET [BSL21] RO32 Group B - Sunday 21:00 CET
Strategy
PvZ map balance Current Meta How to stay on top of macro? Soma's 9 hatch build from ASL Game 2
Other Games
General Games
Stormgate/Frost Giant Megathread Should offensive tower rushing be viable in RTS games? Nintendo Switch Thread Path of Exile Dawn of War IV
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine Canadian Politics Mega-thread US Politics Mega-thread The Games Industry And ATVI
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
[Manga] One Piece Anime Discussion Thread Movie Discussion! Korean Music Discussion Series you have seen recently...
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List
Blogs
Learning my new SC2 hotkey…
Hildegard
Coffee x Performance in Espo…
TrAiDoS
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Reality "theory" prov…
perfectspheres
Our Last Hope in th…
KrillinFromwales
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1381 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
Wardi Open
12:00
#60
WardiTV2250
IndyStarCraft 228
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
IndyStarCraft 235
UpATreeSC 87
StarCraft: Brood War
Rain 3549
Horang2 1587
Shuttle 779
firebathero 160
scan(afreeca) 52
sSak 37
Mong 30
Aegong 22
JulyZerg 17
ivOry 6
[ Show more ]
SilentControl 5
Dota 2
Gorgc5362
qojqva3580
420jenkins277
BananaSlamJamma178
XcaliburYe153
League of Legends
rGuardiaN20
Counter-Strike
fl0m572
byalli525
Other Games
FrodaN1033
Beastyqt715
ceh9567
KnowMe280
Lowko263
Sick257
Hui .188
Mew2King150
Liquid`VortiX147
ArmadaUGS79
QueenE48
Trikslyr46
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 18 non-featured ]
StarCraft 2
• kabyraGe 105
• Reevou 1
• IndyKCrew
• LaughNgamezSOOP
• sooper7s
• AfreecaTV YouTube
• Migwel
• intothetv
• Kozan
StarCraft: Brood War
• Michael_bg 9
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• WagamamaTV218
League of Legends
• Nemesis3571
• TFBlade957
• imaqtpie471
Other Games
• Shiphtur284
Upcoming Events
Replay Cast
4h 43m
WardiTV Korean Royale
17h 43m
OSC
22h 43m
Replay Cast
1d 4h
Replay Cast
1d 14h
Kung Fu Cup
1d 17h
Classic vs Solar
herO vs Cure
Reynor vs GuMiho
ByuN vs ShoWTimE
Tenacious Turtle Tussle
2 days
The PondCast
2 days
RSL Revival
2 days
Solar vs Zoun
MaxPax vs Bunny
Kung Fu Cup
2 days
[ Show More ]
WardiTV Korean Royale
2 days
PiGosaur Monday
3 days
RSL Revival
3 days
Classic vs Creator
Cure vs TriGGeR
Kung Fu Cup
3 days
CranKy Ducklings
4 days
RSL Revival
4 days
herO vs Gerald
ByuN vs SHIN
Kung Fu Cup
4 days
BSL 21
5 days
Tarson vs Julia
Doodle vs OldBoy
eOnzErG vs WolFix
StRyKeR vs Aeternum
Sparkling Tuna Cup
5 days
RSL Revival
5 days
Reynor vs sOs
Maru vs Ryung
Kung Fu Cup
5 days
WardiTV Korean Royale
5 days
BSL 21
6 days
JDConan vs Semih
Dragon vs Dienmax
Tech vs NewOcean
TerrOr vs Artosis
Wardi Open
6 days
Monday Night Weeklies
6 days
Liquipedia Results

Completed

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

Ongoing

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

Upcoming

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