• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 22:38
CEST 04:38
KST 11:38
  • 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: Siren's Call8[ASL22] Ro24 Preview: Summer's End9Serral wins HomeStory Cup 2915Serral wins Maestros of the Game 244ByuL, and the Limitations of Standard Play3
Community News
Stellar Fest TWO the Moon (Dec 16-20)8Weekly Cups (August 24-30): Patches' balance mod takes over2New 3v3 BGH Ladder (and more) on ShieldBattery!40Weekly Cups (August 17-23): Zerg dominate the week6Weekly Cups (August 10-16): SHIN doubles4
StarCraft 2
General
Weekly Cups (August 10-16): SHIN doubles Nexon wins bid to develop StarCraft IP content, distribute Overwatch mobile game SC4ALL II: SC2 Player Announcement 6/8 - Maru Weekly Cups (August 24-30): Patches' balance mod takes over How would you feel about frequent/monthly balance patches for SC2?
Tourneys
2026 GSTL Announcement Stellar Fest TWO the Moon (Dec 16-20) PIG STY FESTIVAL 8.0! (13 - 23 August) Sparkling Tuna Cup - Weekly Open Tournament IntoTheTV X SOOP SC2 League : Weekly & Monthly
Strategy
[G] Having the right mentality to improve
Custom Maps
Nexus Wars 2021 GUIDE [M] (2) Industrial Park
External Content
Mutation # 541 Binary Choice The PondCast: SC2 News & Results Mutation # 540 Dodge This Mutation # 539 Thunder Dome
Brood War
General
ASL22 General Discussion BGH Auto Balance -> http://bghmmr.eu/ BW General Discussion [Personal Project Share] Terran Defense v0.60 XUN appreciation thread
Tourneys
[Megathread] Daily Proleagues BSL LAN Party - Kraków 29-30 August - OPEN SIGNUPS [ASL22] Ro24 Group F Small VOD Thread 2.0
Strategy
Replay Review Process - What do you do? Game Theory for Starcraft Odyssey Mineral Stack Saturation Fighting Spirit mining rates
Other Games
General Games
[Maplestory Hardcore] Let's Play~!! General RTS Discussion Thread Stratus: Battle for the sky now on steam Early acc Nintendo Switch Thread Stormgate/Frost Giant Megathread
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 Things Aren’t Peaceful in Palestine Canadian Politics Mega-thread European Politico-economics QA Mega-thread
Fan Clubs
MarineLorD Fan Club The Creator Fan Club The ShoWTimE Fan Club
Media & Entertainment
Movie Discussion! Anime Discussion Thread
Sports
Football (Soccer) Thread TeamLiquid Health and Fitness Initiative For 2023 MLB/Baseball 2023 NBA General Discussion
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Northern Ireland Global Starcraft
Blogs
Regacy Esports: The Bh…
regacyesports
Violent Games and Crime Rate…
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: 4265 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)17743 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?
ils
"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
2026 GSTL: Main Stage Day 4
CranKy Ducklings121
Discussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
WinterStarcraft448
RuFF_SC2 177
ProTech144
ViBE79
StarCraft: Brood War
Rain 2261
GuemChi 1908
Artosis 580
sSak 58
NaDa 28
Dota 2
NeuroSwarm165
League of Legends
Doublelift2487
JimRising 661
Counter-Strike
summit1g6110
minikerr41
Super Smash Bros
Mew2King99
Other Games
XaKoH 395
PiGStarcraft206
C9.Mang0187
Sick152
Livibee117
Maynarde106
[ Show 13 non-featured ]
StarCraft 2
• davetesta54
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• Migwel
StarCraft: Brood War
• RayReign 21
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• masondota22216
League of Legends
• Lourlo700
Other Games
• Scarra918
Upcoming Events
The PondCast
7h 23m
OSC
19h 53m
IntoTheTV X SOOP
1d 8h
CranKy Ducklings
2 days
Sparkling Tuna Cup
3 days
OSC
3 days
Shopify Rebellion Sundays
3 days
Mixu vs TBD
Spirit vs TBD
Clem vs TBD
Afreeca Starleague
4 days
Soma vs Shuttle
BeSt vs Rush
WardiTV Weekly
4 days
Afreeca Starleague
5 days
Leta vs ggaemo
Jaedong vs Queen
[ Show More ]
GSL
5 days
PiGosaur Cup
5 days
Kung Fu Cup
6 days
Replay Cast
6 days
Liquipedia Results

Completed

Proleague 2026-09-02
PiG Sty Festival 8.0
Light Tournament 2026

Ongoing

KCM Race Survival 2026 Season 3
K-JUNGMAN
ASL Season 22
Super Anchor Qualifying S3
CSL 2026 AUTUMN (S22)
RSL Revival: Season 6
Calamity Invitational
Big Dog Cup 2026 Div 1
BLAST Open Fall 2026
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

Acropolis #5
Acropolis #5 - TRS
Escore Tournament S3: King of Kings
Blizzard Classic Cup 2026
Acropolis #5 - GSA
Acropolis #5 - GSB
Acropolis #5 - GSC
HSC XXX
Stellar Fest 2: Lunar Cup
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
RSL Offline Finals
BLAST Rivals Fall 2026
IEM Beijing 2026
Stake Ranked Episode 5
PGL Masters Bucharest 2026
1win Private Club #2
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
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.