• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 22:32
CET 04:32
KST 12:32
  • 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 3 - Playoffs Preview0RSL Season 3 - RO16 Groups C & D Preview0RSL Season 3 - RO16 Groups A & B Preview2TL.net Map Contest #21: Winners12Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10
Community News
Weekly Cups (Nov 24-30): MaxPax, Clem, herO win2BGE Stara Zagora 2026 announced15[BSL21] Ro.16 Group Stage (C->B->A->D)4Weekly Cups (Nov 17-23): Solar, MaxPax, Clem win3RSL Season 3: RO16 results & RO8 bracket13
StarCraft 2
General
Chinese SC2 server to reopen; live all-star event in Hangzhou Maestros of the Game: Live Finals Preview (RO4) BGE Stara Zagora 2026 announced Weekly Cups (Nov 24-30): MaxPax, Clem, herO win SC2 Proleague Discontinued; SKT, KT, SGK, CJ disband
Tourneys
StarCraft Evolution League (SC Evo Biweekly) RSL Offline Finals Info - Dec 13 and 14! RSL Offline FInals Sea Duckling Open (Global, Bronze-Diamond) $5,000+ WardiTV 2025 Championship
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 502 Negative Reinforcement Mutation # 501 Price of Progress Mutation # 500 Fright night Mutation # 499 Chilling Adaptation
Brood War
General
BW General Discussion Which season is the best in ASL? Data analysis on 70 million replays BGH Auto Balance -> http://bghmmr.eu/ [ASL20] Ask the mapmakers — Drop your questions
Tourneys
[BSL21] RO16 Group D - Sunday 21:00 CET [BSL21] RO16 Group A - Saturday 21:00 CET [Megathread] Daily Proleagues [BSL21] RO16 Group B - Sunday 21:00 CET
Strategy
Current Meta Game Theory for Starcraft How to stay on top of macro? PvZ map balance
Other Games
General Games
ZeroSpace Megathread Stormgate/Frost Giant Megathread Nintendo Switch Thread The Perfect Game Path of Exile
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
Mafia Game Mode Feedback/Ideas TL Mafia Community Thread
Community
General
Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread US Politics Mega-thread The Big Programming Thread Artificial Intelligence Thread
Fan Clubs
White-Ra Fan Club
Media & Entertainment
[Manga] One Piece Movie Discussion! Anime Discussion Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
Where to ask questions and add stream? The Automated Ban List
Blogs
James Bond movies ranking - pa…
Topin
Esports Earnings: Bigger Pri…
TrAiDoS
Thanks for the RSL
Hildegard
Saturation point
Uldridge
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2079 users

The Big Programming Thread - Page 337

Forum Index > General Forum
Post a Reply
Prev 1 335 336 337 338 339 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.
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
August 08 2013 02:54 GMT
#6721
Oh yeah that's totally a typo, I just typed it on the spot. Sorry about that.
Millitron
Profile Blog Joined August 2010
United States2611 Posts
Last Edited: 2013-08-08 04:17:07
August 08 2013 04:16 GMT
#6722
Alright, my google-fu has failed me, I'm pretty stumped on this one.

I'm trying to use Java to create a simple coordinate plane in an image file. Basically I want a jpeg that looks like graph paper.

I can't simply grab one off google images because I don't know exactly what size I need yet or how big each grid will be, and I'd like to be able to change these easily.

My current code is as follows:
import java.awt.image.*;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import java.awt.Color;


public class BlankMapBuilder {

/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException
{
File mapfile = new File("blankmap.bmp");
BufferedImage image = ImageIO.read(mapfile);
Color c = Color.BLACK;
for (int i = 1; i < 2000; i++)
{
for (int j = 1; j < 2000; j++)
{
if((j % 10 == 0) || (i % 10 == 0))
{
System.out.println("j: " + j + "i: " + i);
image.setRGB(j, i, c.getRGB());
}
}
}
}
}


I've got a blank bitmap image of the right size and name in the package in eclipse, and the print statement triggers exactly as it should. I get no exceptions thrown or anything like that. But the image is still blank after I run the code. "image.setRGB()" doesn't seem to be doing anything.
Who called in the fleet?
JeanLuc
Profile Joined September 2010
Canada377 Posts
August 08 2013 04:29 GMT
#6723
On August 08 2013 13:16 Millitron wrote:
Alright, my google-fu has failed me, I'm pretty stumped on this one.

I'm trying to use Java to create a simple coordinate plane in an image file. Basically I want a jpeg that looks like graph paper.

I can't simply grab one off google images because I don't know exactly what size I need yet or how big each grid will be, and I'd like to be able to change these easily.

My current code is as follows:
import java.awt.image.*;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import java.awt.Color;


public class BlankMapBuilder {

/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException
{
File mapfile = new File("blankmap.bmp");
BufferedImage image = ImageIO.read(mapfile);
Color c = Color.BLACK;
for (int i = 1; i < 2000; i++)
{
for (int j = 1; j < 2000; j++)
{
if((j % 10 == 0) || (i % 10 == 0))
{
System.out.println("j: " + j + "i: " + i);
image.setRGB(j, i, c.getRGB());
}
}
}
}
}


I've got a blank bitmap image of the right size and name in the package in eclipse, and the print statement triggers exactly as it should. I get no exceptions thrown or anything like that. But the image is still blank after I run the code. "image.setRGB()" doesn't seem to be doing anything.


See if you can draw something to the image in the simplest way possible, then work outwards from there.
If you can't find it within yourself to stand up and tell the truth-- you don't deserve to wear that uniform
Millitron
Profile Blog Joined August 2010
United States2611 Posts
August 08 2013 04:34 GMT
#6724
On August 08 2013 13:29 JeanLuc wrote:
Show nested quote +
On August 08 2013 13:16 Millitron wrote:
Alright, my google-fu has failed me, I'm pretty stumped on this one.

I'm trying to use Java to create a simple coordinate plane in an image file. Basically I want a jpeg that looks like graph paper.

I can't simply grab one off google images because I don't know exactly what size I need yet or how big each grid will be, and I'd like to be able to change these easily.

My current code is as follows:
import java.awt.image.*;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import java.awt.Color;


public class BlankMapBuilder {

/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException
{
File mapfile = new File("blankmap.bmp");
BufferedImage image = ImageIO.read(mapfile);
Color c = Color.BLACK;
for (int i = 1; i < 2000; i++)
{
for (int j = 1; j < 2000; j++)
{
if((j % 10 == 0) || (i % 10 == 0))
{
System.out.println("j: " + j + "i: " + i);
image.setRGB(j, i, c.getRGB());
}
}
}
}
}


I've got a blank bitmap image of the right size and name in the package in eclipse, and the print statement triggers exactly as it should. I get no exceptions thrown or anything like that. But the image is still blank after I run the code. "image.setRGB()" doesn't seem to be doing anything.


See if you can draw something to the image in the simplest way possible, then work outwards from there.

I have. I can't change a single pixel. If I println one of the BufferedImage's pixels, I can see that I AM changing the pixel color in the BufferedImage, I just can't seem to get the file to reflect that change.
Who called in the fleet?
JeanLuc
Profile Joined September 2010
Canada377 Posts
August 08 2013 04:38 GMT
#6725
On August 08 2013 13:34 Millitron wrote:
Show nested quote +
On August 08 2013 13:29 JeanLuc wrote:
On August 08 2013 13:16 Millitron wrote:
Alright, my google-fu has failed me, I'm pretty stumped on this one.

I'm trying to use Java to create a simple coordinate plane in an image file. Basically I want a jpeg that looks like graph paper.

I can't simply grab one off google images because I don't know exactly what size I need yet or how big each grid will be, and I'd like to be able to change these easily.

My current code is as follows:
import java.awt.image.*;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import java.awt.Color;


public class BlankMapBuilder {

/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException
{
File mapfile = new File("blankmap.bmp");
BufferedImage image = ImageIO.read(mapfile);
Color c = Color.BLACK;
for (int i = 1; i < 2000; i++)
{
for (int j = 1; j < 2000; j++)
{
if((j % 10 == 0) || (i % 10 == 0))
{
System.out.println("j: " + j + "i: " + i);
image.setRGB(j, i, c.getRGB());
}
}
}
}
}


I've got a blank bitmap image of the right size and name in the package in eclipse, and the print statement triggers exactly as it should. I get no exceptions thrown or anything like that. But the image is still blank after I run the code. "image.setRGB()" doesn't seem to be doing anything.


See if you can draw something to the image in the simplest way possible, then work outwards from there.

I have. I can't change a single pixel. If I println one of the BufferedImage's pixels, I can see that I AM changing the pixel color in the BufferedImage, I just can't seem to get the file to reflect that change.


Try looking at this:

http://stackoverflow.com/questions/12674064/how-to-save-a-bufferedimage-as-a-file

If you can't find it within yourself to stand up and tell the truth-- you don't deserve to wear that uniform
Rannasha
Profile Blog Joined August 2010
Netherlands2398 Posts
Last Edited: 2013-08-08 08:03:32
August 08 2013 05:18 GMT
#6726
On August 08 2013 13:16 Millitron wrote:
Alright, my google-fu has failed me, I'm pretty stumped on this one.

I'm trying to use Java to create a simple coordinate plane in an image file. Basically I want a jpeg that looks like graph paper.

I can't simply grab one off google images because I don't know exactly what size I need yet or how big each grid will be, and I'd like to be able to change these easily.

My current code is as follows:
import java.awt.image.*;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import java.awt.Color;


public class BlankMapBuilder {

/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException
{
File mapfile = new File("blankmap.bmp");
BufferedImage image = ImageIO.read(mapfile);
Color c = Color.BLACK;
for (int i = 1; i < 2000; i++)
{
for (int j = 1; j < 2000; j++)
{
if((j % 10 == 0) || (i % 10 == 0))
{
System.out.println("j: " + j + "i: " + i);
image.setRGB(j, i, c.getRGB());
}
}
}
}
}


I've got a blank bitmap image of the right size and name in the package in eclipse, and the print statement triggers exactly as it should. I get no exceptions thrown or anything like that. But the image is still blank after I run the code. "image.setRGB()" doesn't seem to be doing anything.


Unless this isn't your entire code, you're not writing the image to a file. You create an empty .bmp, read it in, then manipulate the image in memory and then... nothing.

Instead, try creating the image object, manipulate it and then write it to a file.

edit: Changing your loops to
for (int i = 10; i < 2000; i += 10)

(and similar for j) will reduce the number of iterations by a factor 100 and allows you to also remove the if-statement, giving an additional small speedup.
Such flammable little insects!
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
Last Edited: 2013-08-08 06:48:51
August 08 2013 06:46 GMT
#6727
On August 08 2013 07:37 RoyGBiv_13 wrote:
Show nested quote +
On August 08 2013 06:57 CecilSunkure wrote:
Funny thing about the XOR swap, in some C++ profiling I did a while ago a simple swap function in C++:

template <typename T>
void Swap( T& a, T& b )
{
T c = a;
a = b;
b = c;
}


Was actually significantly more efficient, even with integers, for some reason. The above code must have produced results the compiler knew how to optimize away. The above is also simpler and more flexible than the silly XOR trick.


protip, inline this function... or it could be that the compiler already did so, and that was why it was so fast...

In C++, the inline keyword is just a hint for the compiler. It doesn't enforce anything. Usually it's just ignored. There is __forceinline for in microsoft's compiler which should actually force it (though I wouldn't be too sure about that), and other compilers might have similar language extensions. But in general you can and should just rely on the compiler, especially when it comes to templates.

The inlining for such small templates works really well in solid C++ compilers anyways. I've used much more complicated template code in the inner loop of a simulation program that needs every little bit of performance and got identical performance compared to the copy-and-paste-inlined version (and the copy-and-paste even had minor optimizations depending on the context it was pasted in).
If you have a good reason to disagree with the above, please tell me. Thank you.
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
August 08 2013 07:20 GMT
#6728
Really the only thing I use the inline keyword for anymore is to allow particular functions to be defined in the header.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
Last Edited: 2013-08-08 08:37:24
August 08 2013 08:35 GMT
#6729
use inlining judiciously! ;>

i would inline that swap, but would rather use std::swap (which is inline).
conspired against by a confederacy of dunces.
n0ise
Profile Joined April 2010
3452 Posts
August 08 2013 09:04 GMT
#6730
Starting with Ruby on Rails, coming from java/J2EE/Spring MVC

Any quick tips/pointers or a particular piece worth reading?

Much appreciated
Millitron
Profile Blog Joined August 2010
United States2611 Posts
August 08 2013 18:34 GMT
#6731
On August 08 2013 14:18 Rannasha wrote:
Show nested quote +
On August 08 2013 13:16 Millitron wrote:
Alright, my google-fu has failed me, I'm pretty stumped on this one.

I'm trying to use Java to create a simple coordinate plane in an image file. Basically I want a jpeg that looks like graph paper.

I can't simply grab one off google images because I don't know exactly what size I need yet or how big each grid will be, and I'd like to be able to change these easily.

My current code is as follows:
import java.awt.image.*;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import java.awt.Color;


public class BlankMapBuilder {

/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException
{
File mapfile = new File("blankmap.bmp");
BufferedImage image = ImageIO.read(mapfile);
Color c = Color.BLACK;
for (int i = 1; i < 2000; i++)
{
for (int j = 1; j < 2000; j++)
{
if((j % 10 == 0) || (i % 10 == 0))
{
System.out.println("j: " + j + "i: " + i);
image.setRGB(j, i, c.getRGB());
}
}
}
}
}


I've got a blank bitmap image of the right size and name in the package in eclipse, and the print statement triggers exactly as it should. I get no exceptions thrown or anything like that. But the image is still blank after I run the code. "image.setRGB()" doesn't seem to be doing anything.


Unless this isn't your entire code, you're not writing the image to a file. You create an empty .bmp, read it in, then manipulate the image in memory and then... nothing.

Instead, try creating the image object, manipulate it and then write it to a file.

edit: Changing your loops to
for (int i = 10; i < 2000; i += 10)

(and similar for j) will reduce the number of iterations by a factor 100 and allows you to also remove the if-statement, giving an additional small speedup.

Thanks. I got it to work, though I couldn't do your idea for the for-loops. That only colored the corners of every, it did not draw the edges. I don't mind the minor efficiency cost. I doubt the images will ever be much bigger than 2000x2000, and they're not used in anything time-critical.

If anyone's curious, I'm making a simple map-editor tool so my less tech-savvy friends can help make maps for a game we'd like to make.
Who called in the fleet?
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
August 09 2013 00:08 GMT
#6732
I have been looking into java generics. I was wondering though, this method prints all elements in an array. However, how does one print N elements? E.g. 2 only instead of the full array. I did some google but everything was about printing from start to end of array.


// generic method printArray
public static < E > void printArray( E[] inputArray )
{
// Display array elements
for ( E element : inputArray ){
System.out.printf( "%s ", element );
}
System.out.println();
}
DeltaX
Profile Joined August 2011
United States287 Posts
August 09 2013 01:01 GMT
#6733

// generic method printArray
int i = 0;
public static < E > void printArray( E[] inputArray )
{
// Display array elements
for ( E element : inputArray ){
System.out.printf( "%s ", element );
}
System.out.println();
i++;
if(i >= 2){
return;
}
}


Would be one way. You could also use the normal for loop for(i = 0; i < 2; i++){stuff} as long as it has at least 2 elements so you don't get null pointer errors.

I think typically you would use your method when you want to iterate over everything in the array, but use a normal for loop if you need them in a specific order, or a specific number of elements.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2013-08-09 03:02:33
August 09 2013 02:50 GMT
#6734
Your code didn't work as I expected when I tried to execute it. I tried to make it like:


for ( E element : inputArray ) {
int i = 0;

System.out.printf( "%s ", element );

i++;

if (i < 2) {
return;
}
}


But it prints only the 1st element. It seems like "E element : inputArray" loop condition doesn't exactly iterate like normal loops we are used to.

I tried the normal loop as you said and this one works.


public static < E > void printArray( E[] inputArray )
{
for (int i = 0; i < 2; i++) {
System.out.printf("%s ", inputArray[i]);
}
}


I think elements are printed as strings here. Unfortunately, there's no array boundary checking which reminds me of a question that I want to ask. Is it a good idea to always use try/catch{} when you deal with arrays?

Edit: I think loop condition
int i = 0; i < inputArray.length; i++
is much more readable than
E element : inputArray
which I find in some tutorials. Agree?

I'm reading about generics on this website: http://www.tutorialspoint.com/java/java_generics.htm

Edit #2: The code still works for me when I replace 'E' with 'T'. Now I'm lost at the difference. When do you use T, E, K, V, etc?
phar
Profile Joined August 2011
United States1080 Posts
Last Edited: 2013-08-09 03:04:08
August 09 2013 02:59 GMT
#6735
On August 09 2013 11:50 darkness wrote:
Your code didn't work as I expected when I tried to execute it. I tried to make it like:


for ( E element : inputArray ) {
int i = 0;

System.out.printf( "%s ", element );

i++;

if (i < 2) {
return;
}
}


But it prints only the 1st element. It seems like "E element : inputArray" loop condition doesn't exactly iterate like normal loops we are used to.


Step through the code manually, you should be able to see the error.


On August 09 2013 11:50 darkness wrote:
I think elements are printed as strings here. Unfortunately, there's no array boundary checking which reminds me of a question that I want to ask. Is it a good idea to always use try/catch{} when you deal with arrays?

You should be able to do this without try/catch. try/catch introduces unnecessary overhead here, and makes things harder to read. Just manually do the bounds checking.

Alternatively, you could be using lists instead.


import com.google.common.base.collect.Joiner;

import java.util.List;

static <T> void printUpToN(List<T> stuff, int n) {
if (stuff.size() > n) {
stuff = stuff.subList(0, n);
}
System.out.println(Joiner.on(", ").join(stuff));
}
Who after all is today speaking about the destruction of the Armenians?
WolfintheSheep
Profile Joined June 2011
Canada14127 Posts
August 09 2013 03:52 GMT
#6736
On August 09 2013 11:50 darkness wrote:
Your code didn't work as I expected when I tried to execute it. I tried to make it like:


for ( E element : inputArray ) {
int i = 0;

System.out.printf( "%s ", element );

i++;

if (i < 2) {
return;
}
}


But it prints only the 1st element. It seems like "E element : inputArray" loop condition doesn't exactly iterate like normal loops we are used to.


Two problems here. One, your initializing i as 0 on every single iteration, so it will never increment. Second, you're ending the loop when i < 2...so when i is less than 2.
Average means I'm better than half of you.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2013-08-09 04:45:32
August 09 2013 04:44 GMT
#6737
On August 09 2013 12:52 WolfintheSheep wrote:
Show nested quote +
On August 09 2013 11:50 darkness wrote:
Your code didn't work as I expected when I tried to execute it. I tried to make it like:


for ( E element : inputArray ) {
int i = 0;

System.out.printf( "%s ", element );

i++;

if (i < 2) {
return;
}
}


But it prints only the 1st element. It seems like "E element : inputArray" loop condition doesn't exactly iterate like normal loops we are used to.


Two problems here. One, your initializing i as 0 on every single iteration, so it will never increment. Second, you're ending the loop when i < 2...so when i is less than 2.


Correct! Thanks everyone. I need to turnBrainOn() more often. :D
Ilikestarcraft
Profile Blog Joined November 2004
Korea (South)17731 Posts
August 09 2013 16:08 GMT
#6738
Have a quick question

In this code
while (*s++ = *t++);

I know that its copying a string but what confuses me is how does the loop actually work without what it seems to me a test condition?
"Nana is a goddess. Or at very least, Nana is my goddess." - KazeHydra
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
Last Edited: 2013-08-09 16:32:12
August 09 2013 16:16 GMT
#6739
int main(int argc, char const *argv[])
{
cout << "\\0: ";
if ('\0') {
cout << "true" << endl;
} else {
cout << "false" << endl;
}
return 0;
}


This prints false.

I believe it will take the last value of the assignment operation, which is the '\0' character in a string, and cast that to a boolean. The boolean cast of the nullchar '\0' is false. For all other characters, casting to an int is treated like a non-zero int, which evaluates to true, so the while loop continues.


edit: If we're talking about C++ strings, I don't think that will work 100% of the time because if the string pointer has gone past the string the behavior is undefined. It might just work because the space after the string is null, but if it's used, something's going to crash.
There is no one like you in the universe.
Yoshi-
Profile Joined October 2008
Germany10227 Posts
August 09 2013 16:18 GMT
#6740
On August 10 2013 01:08 Ilikestarcraft wrote:
Have a quick question

In this code
while (*s++ = *t++);

I know that its copying a string but what confuses me is how does the loop actually work without what it seems to me a test condition?


At one point the pointer *t will not point at anything anymore, this will return some from of NULL, and this most probably gets interpreted as false, and the loop ends
Prev 1 335 336 337 338 339 1032 Next
Please log in or register to reply.
Live Events Refresh
Replay Cast
00:00
WardiTV Mondays #62
CranKy Ducklings151
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Nathanias 151
RuFF_SC2 118
StarCraft: Brood War
Artosis 757
Tasteless 86
Bale 81
Shine 60
Icarus 7
Dota 2
monkeys_forever846
NeuroSwarm149
League of Legends
JimRising 620
C9.Mang0328
Counter-Strike
Coldzera 1205
Fnx 197
Other Games
summit1g13531
tarik_tv4987
shahzam569
ViBE141
Mew2King76
ToD29
CosmosSc2 24
Organizations
Other Games
gamesdonequick1075
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 13 non-featured ]
StarCraft 2
• Hupsaiya 86
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• RayReign 22
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Doublelift4440
Upcoming Events
The PondCast
6h 28m
OSC
12h 28m
Demi vs Mixu
Nicoract vs TBD
Babymarine vs MindelVK
ForJumy vs TBD
Shameless vs Percival
Replay Cast
20h 28m
Korean StarCraft League
1d 23h
CranKy Ducklings
2 days
WardiTV 2025
2 days
SC Evo League
2 days
BSL 21
2 days
Sziky vs OyAji
Gypsy vs eOnzErG
OSC
2 days
Solar vs Creator
ByuN vs Gerald
Percival vs Babymarine
Moja vs Krystianer
EnDerr vs ForJumy
sebesdes vs Nicoract
Sparkling Tuna Cup
3 days
[ Show More ]
WardiTV 2025
3 days
OSC
3 days
BSL 21
3 days
Bonyth vs StRyKeR
Tarson vs Dandy
Replay Cast
4 days
Wardi Open
4 days
StarCraft2.fi
4 days
Monday Night Weeklies
4 days
Replay Cast
4 days
WardiTV 2025
5 days
StarCraft2.fi
5 days
PiGosaur Monday
5 days
StarCraft2.fi
6 days
Tenacious Turtle Tussle
6 days
Liquipedia Results

Completed

Proleague 2025-11-30
RSL Revival: Season 3
Light HT

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
YSL S2
BSL Season 21
CSCL: Masked Kings S3
Slon Tour Season 2
Acropolis #4 - TS3
META Madness #9
SL Budapest Major 2025
ESL Impact League Season 8
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2

Upcoming

BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
Bellum Gens Elite Stara Zagora 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
Kuram Kup
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual
eXTREMESLAND 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.