• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 07:34
CEST 13:34
KST 20:34
  • 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
Code S Season 1 - RO12 Group A: Rogue, Percival, Solar, Zoun9[ASL21] Ro8 Preview Pt1: Inheritors16[ASL21] Ro16 Preview Pt2: All Star10Team Liquid Map Contest #22 - The Finalists20[ASL21] Ro16 Preview Pt1: Fresh Flow9
Community News
2026 GSL Season 1 Qualifiers25Maestros of the Game 2 announced92026 GSL Tour plans announced15Weekly Cups (April 6-12): herO doubles, "Villains" prevail1MaNa leaves Team Liquid25
StarCraft 2
General
Code S Season 1 - RO12 Group A: Rogue, Percival, Solar, Zoun Team Liquid Map Contest #22 - The Finalists Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool MaNa leaves Team Liquid Maestros of the Game 2 announced
Tourneys
GSL Code S Season 1 (2026) WardiTV Spring Cup RSL Revival: Season 5 - Qualifiers and Main Event SEL Masters #6 - Solar vs Classic (SC: Evo) $5,000 WardiTV TLMC tournament - Presented by Monster Energy
Strategy
Custom Maps
[D]RTS in all its shapes and glory <3 [A] Nemrods 1/4 players [M] (2) Frigid Storage
External Content
The PondCast: SC2 News & Results Mutation # 523 Firewall Mutation # 522 Flip My Base Mutation # 521 Memorable Boss
Brood War
General
[TOOL] Starcraft Chat Translator ASL21 General Discussion JaeDong's ASL S21 Ro16 Post-Review Missed out on ASL tickets - what are my options? BGH Auto Balance -> http://bghmmr.eu/
Tourneys
Korean KCM Race Survival 2026 Season 2 [ASL21] Ro8 Day 2 [ASL21] Ro8 Day 1 [BSL22] RO16 Group Stage - 02 - 10 May
Strategy
Fighting Spirit mining rates Simple Questions, Simple Answers What's the deal with APM & what's its true value Any training maps people recommend?
Other Games
General Games
Stormgate/Frost Giant Megathread Daigo vs Menard Best of 10 Nintendo Switch Thread Dawn of War IV Diablo IV
Dota 2
The Story of Wings Gaming
League of Legends
G2 just beat GenG in First stand
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
Vanilla Mini Mafia Mafia Game Mode Feedback/Ideas TL Mafia Community Thread Five o'clock TL Mafia
Community
General
US Politics Mega-thread European Politico-economics QA Mega-thread Russo-Ukrainian War Thread 3D technology/software discussion Canadian Politics Mega-thread
Fan Clubs
The IdrA Fan Club
Media & Entertainment
[Manga] One Piece Anime Discussion Thread [Req][Books] Good Fantasy/SciFi books Movie Discussion!
Sports
2024 - 2026 Football Thread Formula 1 Discussion McBoner: A hockey love story
World Cup 2022
Tech Support
streaming software Strange computer issues (software) [G] How to Block Livestream Ads
TL Community
The Automated Ban List
Blogs
Sexual Health Of Gamers
TrAiDoS
lurker extra damage testi…
StaticNine
Broowar part 2
qwaykee
Funny Nicknames
LUCKY_NOOB
Iranian anarchists: organize…
XenOsky
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2134 users

The Big Programming Thread - Page 433

Forum Index > General Forum
Post a Reply
Prev 1 431 432 433 434 435 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.
bangsholt
Profile Joined June 2011
Denmark138 Posts
January 24 2014 16:38 GMT
#8641
On January 24 2014 08:57 obesechicken13 wrote:
Show nested quote +
On January 24 2014 08:00 ghrur wrote:
Just thought I'd put this here because it's an awesome story about programming and math :
http://www.wired.com/wiredscience/2014/01/how-to-hack-okcupid/

Oh that's pretty cool.

Has anyone had any experience with leveldb?
https://code.google.com/p/leveldb/

I have to use it for a course and my TA is saying that I have to "install" it?
I can make leveldb just fine with the default make file but I'm supposed to use a specific make file and two other files.


CC = g++
OPTS = -I $(LEVELDB_DIR)/include -lpthread $(LEVELDB_DIR)/libleveldb.a

all: read write

read: read.cc
$(CC) -o read read.cc $(OPTS)

write: write.cc
$(CC) -o write write.cc $(OPTS)

clean:
rm -rf read write leveldb_dir

test: all
./write
./read

I have read.cc and write.cc in the same folder as the makefile. Every time I run make, I get an error message:
g++  -o read read.cc -I /include -lpthread /libleveldb.a
g++: error: /libleveldb.a: No such file or directory
make: *** [read] Error 1


wut do?

nvm I'm getting it slowly.


Two things you can do:

1) Drop it into an existing folder that are included by default in your linker, like this

ldconfig -v 2>/dev/null | grep -v ^$'\t'


And drop your .a file into one of those folders, or

2) Add the folder in which the library is in to your makefile with the -L<path_to_library> switch.

Should fix your problem
nunez
Profile Blog Joined February 2011
Norway4003 Posts
January 24 2014 17:01 GMT
#8642
On January 24 2014 08:57 obesechicken13 wrote:

CC = g++
OPTS = -I $(LEVELDB_DIR)/include -lpthread $(LEVELDB_DIR)/libleveldb.a

all: read write

read: read.cc
$(CC) -o read read.cc $(OPTS)

write: write.cc
$(CC) -o write write.cc $(OPTS)

clean:
rm -rf read write leveldb_dir

test: all
./write
./read

I have read.cc and write.cc in the same folder as the makefile. Every time I run make, I get an error message:
g++  -o read read.cc -I /include -lpthread /libleveldb.a
g++: error: /libleveldb.a: No such file or directory
make: *** [read] Error 1


wut do?

nvm I'm getting it slowly.


alternatively make sure the LEVELDB_DIR variable is set correctly.
note how your $(LEVELDB_DIR)/libleveldb.a resolves to just /libleveldb.a, meaning LEVELDB_DIR is not set at all.
make sure LEVELDB_DIR is set to the folder libleveldb.a resides in.


[nunez@gimli src]$ export TEAM='liquid'
[nunez@gimli src]$ echo $TEAM
liquid
[nunez@gimli src]$

conspired against by a confederacy of dunces.
obesechicken13
Profile Blog Joined July 2008
United States10467 Posts
January 24 2014 17:20 GMT
#8643
Yeah, the instructions on the course page are not great. I should have gone to the first tutorial though.
I think in our modern age technology has evolved to become more addictive. The things that don't give us pleasure aren't used as much. Work was never meant to be fun, but doing it makes us happier in the long run.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2014-01-24 17:24:03
January 24 2014 17:23 GMT
#8644
Do you guys use a GUI builder for Java? If not, any tutorial/ebook that you'd recommend?
obesechicken13
Profile Blog Joined July 2008
United States10467 Posts
January 24 2014 19:16 GMT
#8645
On January 25 2014 02:23 darkness wrote:
Do you guys use a GUI builder for Java? If not, any tutorial/ebook that you'd recommend?

The IDE I used at work was eclipse though netbeans is also used.
I think in our modern age technology has evolved to become more addictive. The things that don't give us pleasure aren't used as much. Work was never meant to be fun, but doing it makes us happier in the long run.
enigmaticcam
Profile Blog Joined October 2010
United States280 Posts
January 24 2014 23:25 GMT
#8646
Any recommendations on good Object Oriented design books? I mostly do C#.net, though I don't think that should matter.
SacredCoconut
Profile Joined October 2010
Finland121 Posts
January 24 2014 23:35 GMT
#8647
Would someone have article or forum post about enum, define, const for c++. They seem to work same in most cases, so i would like to know if there is any big reason to use one over another. Or is the difference only cosmetic?

For example is there something wrong with way i use them?
+ Show Spoiler +
/* Array sizes */
const int HEIGHT = 200;
const int WIDTH = HEIGHT;
const int PLAYERINFORMATIONS = 9;
const int UNITINFORMATIONS = 5;

/* Positions of the game on command line */
const int SCREENPOSITION1 = 0;
const int SCREENPOSITION2 = 20;

/* Stage txt files */
const string STAGE1 = "map1.txt";
const string STAGE2 = "map2.txt";

/* Unit/Player array usage */
enum{
VERTICAL,
HORIZONTAL,
OLDVERTICAL,
OLDHORIZONTAL,
UNITCODE,
KEYUP,
KEYRIGHT,
KEYLEFT,
SCREENPOSITION
};

/* Different game components */
enum{
PLAYER1 = '1',
PLAYER2 = '2',
ENEMY = 'V',
GROUND = 'M',
EMPTY = '_',
GOAL = 'G'
};

/* Unit movements */
enum{
UP = -1,
DOWN = 1,
RIGHT = 1,
LEFT = -1
};

/* Defines for keyboard keys */
#define VK_1 0x31 // Keyboard key 1
#define VK_W 0x57 // Keyboard key W
#define VK_D 0x44 // Keyboard key D
#define VK_A 0x41 // Keyboard key A
I apologize for possible grammar errors.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
January 25 2014 00:36 GMT
#8648
#define identifier replacement-list
    The #define directives define the identifier as macro, that is instruct the compiler to replace all successive occurrences of identifier with replacement-list, which can be optionally additionally processed. If the identifier is already defined as any type of macro, the program is ill-formed.
source

enum name { enumerator = constexpr , enumerator = constexpr , ... }
    An enumeration is a distinct type whose value is restricted to one of several explicitly named constants ("enumerators"). The values of the constants are values of an integral type known as the underlying type of the enumeration.
source

cv (const-volatility) specifiers and qualifiers
    Appear in any type specifier, including decl-specifier-seq of declaration grammar, to specify constness or volatility of the type being declared.

          const - defines that the type is constant.
source

so a #define is a preprocessor macro!
an enum is a type!
and const is a type qualifier!

i think you should avoid #defines, and choose either an enum or a const numeric type!
conspired against by a confederacy of dunces.
phar
Profile Joined August 2011
United States1080 Posts
January 25 2014 01:07 GMT
#8649
On January 24 2014 02:11 RoyGBiv_13 wrote:
EDIT: It may also be the case that the programmer implemented both ways in order for you to use whichever one makes your program easier to understand. My guess is that the Builder pattern was implemented in order to avoid the long list of arguments for the Gson constructor.

An advantage of doing it this way (having many arguments in the constructor, having the builder just call .build()/.create()/etc, instead of passing the builder to the object's constructor):

testability!

It's much easier to mock arguments directly into the constructor when need be. Much more annoying to have to use deep mocks, or create test container objects. And when you don't need to use mocks ('cus you shouldn't if you can avoid it), you can just pass the object directly, instead of having to ball it up inside a builder in your test.
Who after all is today speaking about the destruction of the Armenians?
mishimaBeef
Profile Blog Joined January 2010
Canada2259 Posts
January 25 2014 02:34 GMT
#8650
An article you might find interesting: http://catb.org/~esr/faqs/hacker-howto.html
Dare to live the life you have dreamed for yourself. Go forward and make your dreams come true. - Ralph Waldo Emerson
Housemd
Profile Joined March 2010
United States1407 Posts
January 26 2014 05:07 GMT
#8651
Need a little bit of help here:

int array [] = {15, 26, 27, 74, 65, 36, 73, 46, 73, 29, 30};
Scanner scan = new Scanner (System.in);
System.out.print("Please input a number");
int SearchValue = scan.nextInt();
for (int i = 0; i < array.length; i++){
if (SearchValue == array[i]){
break;
}
}
System.out.println("Found");
}
}

The assignment is to use a linear search in order to find a value inside an array. If the value is found, then we print found, if not, then we print not found.

The code above works fine for values that are found. However, when I input suppose 100, it keeps giving me that it was found, when it is obviously not in array. Any ideas?
Fantasy is a beast
mishimaBeef
Profile Blog Joined January 2010
Canada2259 Posts
Last Edited: 2014-01-26 05:14:30
January 26 2014 05:13 GMT
#8652
On January 26 2014 14:07 Housemd wrote:
Need a little bit of help here:

int array [] = {15, 26, 27, 74, 65, 36, 73, 46, 73, 29, 30};
Scanner scan = new Scanner (System.in);
System.out.print("Please input a number");
int SearchValue = scan.nextInt();
for (int i = 0; i < array.length; i++){
if (SearchValue == array[i]){
break;
}
}
System.out.println("Found");
}
}

The assignment is to use a linear search in order to find a value inside an array. If the value is found, then we print found, if not, then we print not found.

The code above works fine for values that are found. However, when I input suppose 100, it keeps giving me that it was found, when it is obviously not in array. Any ideas?


?? You print found after the loop?
Dare to live the life you have dreamed for yourself. Go forward and make your dreams come true. - Ralph Waldo Emerson
Chocolate
Profile Blog Joined December 2010
United States2350 Posts
Last Edited: 2014-01-26 05:25:48
January 26 2014 05:20 GMT
#8653
On January 26 2014 14:07 Housemd wrote:
Need a little bit of help here:

int array [] = {15, 26, 27, 74, 65, 36, 73, 46, 73, 29, 30};
Scanner scan = new Scanner (System.in);
System.out.print("Please input a number");
int SearchValue = scan.nextInt();
for (int i = 0; i < array.length; i++){
if (SearchValue == array[i]){
break;
}
}
System.out.println("Found");
}
}

The assignment is to use a linear search in order to find a value inside an array. If the value is found, then we print found, if not, then we print not found.

The code above works fine for values that are found. However, when I input suppose 100, it keeps giving me that it was found, when it is obviously not in array. Any ideas?

Put System.out.println("Found"); right before the break to fix it temporarily. Right now you are just running a search and then printing "found" regardless.

Since you want to be able to print out "not found" (which the above fix does not change) I would use a while loop. Go for it, and think a little more than you did for what you just posted. You could alternatively use your current structure and add just like three lines or so...
Housemd
Profile Joined March 2010
United States1407 Posts
January 26 2014 05:27 GMT
#8654
On January 26 2014 14:13 mishimaBeef wrote:
Show nested quote +
On January 26 2014 14:07 Housemd wrote:
Need a little bit of help here:

int array [] = {15, 26, 27, 74, 65, 36, 73, 46, 73, 29, 30};
Scanner scan = new Scanner (System.in);
System.out.print("Please input a number");
int SearchValue = scan.nextInt();
for (int i = 0; i < array.length; i++){
if (SearchValue == array[i]){
break;
}
}
System.out.println("Found");
}
}

The assignment is to use a linear search in order to find a value inside an array. If the value is found, then we print found, if not, then we print not found.

The code above works fine for values that are found. However, when I input suppose 100, it keeps giving me that it was found, when it is obviously not in array. Any ideas?


?? You print found after the loop?


Shit, I didn't notice that and I worded my question terribly wrong. That wasn't the intention of my question:

So I fixed that code like this:

int array [] = {15, 26, 27, 74, 65, 36, 73, 46, 73, 29, 30};
Scanner scan = new Scanner (System.in);
System.out.print("Please input a number");
int SearchValue = scan.nextInt();
for (int i = 0; i < array.length; i++){
if (SearchValue == array[i]){
System.out.println("Found");
break;

So now, I need to print "Not Found" for let us just say 100. Should I just use an else statement?

Sorry for dumb questions, I'm a newbie
Fantasy is a beast
Housemd
Profile Joined March 2010
United States1407 Posts
January 26 2014 05:29 GMT
#8655
On January 26 2014 14:20 Chocolate wrote:
Show nested quote +
On January 26 2014 14:07 Housemd wrote:
Need a little bit of help here:

int array [] = {15, 26, 27, 74, 65, 36, 73, 46, 73, 29, 30};
Scanner scan = new Scanner (System.in);
System.out.print("Please input a number");
int SearchValue = scan.nextInt();
for (int i = 0; i < array.length; i++){
if (SearchValue == array[i]){
break;
}
}
System.out.println("Found");
}
}

The assignment is to use a linear search in order to find a value inside an array. If the value is found, then we print found, if not, then we print not found.

The code above works fine for values that are found. However, when I input suppose 100, it keeps giving me that it was found, when it is obviously not in array. Any ideas?

Put System.out.println("Found"); right before the break to fix it temporarily. Right now you are just running a search and then printing "found" regardless.

Since you want to be able to print out "not found" (which the above fix does not change) I would use a while loop. Go for it, and think a little more than you did for what you just posted. You could alternatively use your current structure and add just like three lines or so...


Just to clarify, I need to use a for loop. Would your suggestion of a while loop eliminate the for loop or just add on to the current code?
Fantasy is a beast
Chocolate
Profile Blog Joined December 2010
United States2350 Posts
Last Edited: 2014-01-26 05:33:15
January 26 2014 05:32 GMT
#8656
On January 26 2014 14:29 Housemd wrote:
Show nested quote +
On January 26 2014 14:20 Chocolate wrote:
On January 26 2014 14:07 Housemd wrote:
Need a little bit of help here:

int array [] = {15, 26, 27, 74, 65, 36, 73, 46, 73, 29, 30};
Scanner scan = new Scanner (System.in);
System.out.print("Please input a number");
int SearchValue = scan.nextInt();
for (int i = 0; i < array.length; i++){
if (SearchValue == array[i]){
break;
}
}
System.out.println("Found");
}
}

The assignment is to use a linear search in order to find a value inside an array. If the value is found, then we print found, if not, then we print not found.

The code above works fine for values that are found. However, when I input suppose 100, it keeps giving me that it was found, when it is obviously not in array. Any ideas?

Put System.out.println("Found"); right before the break to fix it temporarily. Right now you are just running a search and then printing "found" regardless.

Since you want to be able to print out "not found" (which the above fix does not change) I would use a while loop. Go for it, and think a little more than you did for what you just posted. You could alternatively use your current structure and add just like three lines or so...


Just to clarify, I need to use a for loop. Would your suggestion of a while loop eliminate the for loop or just add on to the current code?

Just think: how could you use a boolean here?

If you were a bit newer I would just tell you but since this is an assignment for what is probably a second semester class you should be able to figure this out yourself.
Housemd
Profile Joined March 2010
United States1407 Posts
January 26 2014 05:41 GMT
#8657
On January 26 2014 14:32 Chocolate wrote:
Show nested quote +
On January 26 2014 14:29 Housemd wrote:
On January 26 2014 14:20 Chocolate wrote:
On January 26 2014 14:07 Housemd wrote:
Need a little bit of help here:

int array [] = {15, 26, 27, 74, 65, 36, 73, 46, 73, 29, 30};
Scanner scan = new Scanner (System.in);
System.out.print("Please input a number");
int SearchValue = scan.nextInt();
for (int i = 0; i < array.length; i++){
if (SearchValue == array[i]){
break;
}
}
System.out.println("Found");
}
}

The assignment is to use a linear search in order to find a value inside an array. If the value is found, then we print found, if not, then we print not found.

The code above works fine for values that are found. However, when I input suppose 100, it keeps giving me that it was found, when it is obviously not in array. Any ideas?

Put System.out.println("Found"); right before the break to fix it temporarily. Right now you are just running a search and then printing "found" regardless.

Since you want to be able to print out "not found" (which the above fix does not change) I would use a while loop. Go for it, and think a little more than you did for what you just posted. You could alternatively use your current structure and add just like three lines or so...


Just to clarify, I need to use a for loop. Would your suggestion of a while loop eliminate the for loop or just add on to the current code?

Just think: how could you use a boolean here?

If you were a bit newer I would just tell you but since this is an assignment for what is probably a second semester class you should be able to figure this out yourself.


I'm taking AP Computer Science. We are doing searches and this was extra credit work.
Fantasy is a beast
Chocolate
Profile Blog Joined December 2010
United States2350 Posts
January 26 2014 05:43 GMT
#8658
So am I brother
Housemd
Profile Joined March 2010
United States1407 Posts
January 26 2014 06:53 GMT
#8659
Update on Program:

int array [] = {15, 26, 27, 74, 65, 36, 73, 46, 73, 29, 30};
Scanner scan = new Scanner (System.in);
boolean x = true;
System.out.print("Please input a number");
int SearchValue = scan.nextInt();
for (int i = 0; i < array.length; i++){
if (x == true){
SearchValue = array [i];
break;
}
}
if (x){
System.out.println("Found");
}
else
{
System.out.println("Not Found");
}
}
}


Works perfectly fine for values that are in the array. For values that are not, it still prints out found. I believe that I have a small syntax error (in the last if-else statement?) but I cannot spot it. I tried to use Chocolate's suggestions of booleans and it looks promising.
Fantasy is a beast
Housemd
Profile Joined March 2010
United States1407 Posts
January 26 2014 07:01 GMT
#8660
NVM I GOT IT WOOOOOOOOOOOT
Fantasy is a beast
Prev 1 431 432 433 434 435 1032 Next
Please log in or register to reply.
Live Events Refresh
GSL
09:30
2026 Season 1: Ro12 Group B
Cure vs BunnyLIVE!
TriGGeR vs TBD
Ryung 280
IntoTheiNu 193
CranKy Ducklings SOOP55
Rex27
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Ryung 280
mouzHeroMarine 243
Lowko239
herO (SOOP) 29
Rex 27
StarCraft: Brood War
Sea 2357
HiyA 1185
Jaedong 938
Hyuk 384
EffOrt 258
Stork 233
actioN 229
Zeus 199
Soma 193
Light 150
[ Show more ]
Last 137
Snow 134
ToSsGirL 127
ZerO 96
Soulkey 95
Rush 94
ggaemo 76
Pusan 65
sSak 62
Sharp 44
hero 38
sorry 36
yabsab 35
910 35
Sea.KH 28
Sacsri 27
NaDa 26
Backho 25
Free 24
Shinee 23
Bale 18
Shine 18
soO 14
IntoTheRainbow 12
Terrorterran 12
GoRush 12
Noble 12
Movie 7
Icarus 4
Dota 2
XaKoH 630
NeuroSwarm450
XcaliburYe65
ODPixel64
BananaSlamJamma50
Counter-Strike
olofmeister2616
zeus808
x6flipin491
markeloff159
edward72
Other Games
singsing1622
B2W.Neo806
crisheroes271
DeMusliM220
ZerO(Twitch)7
Organizations
Dota 2
PGL Dota 2 - Main Stream70
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 15 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• blackmanpl 24
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• WagamamaTV249
• lizZardDota247
League of Legends
• TFBlade1273
• Jankos1201
Upcoming Events
Big Gabe
26m
mouzHeroMarine243
Replay Cast
21h 26m
Escore
22h 26m
OSC
1d 1h
Replay Cast
1d 12h
Replay Cast
1d 21h
RSL Revival
1d 22h
Classic vs GgMaChine
Rogue vs Maru
WardiTV Invitational
1d 23h
IPSL
2 days
Ret vs Art_Of_Turtle
Radley vs TBD
BSL
2 days
[ Show More ]
Replay Cast
2 days
RSL Revival
2 days
herO vs TriGGeR
NightMare vs Solar
uThermal 2v2 Circuit
3 days
BSL
3 days
IPSL
3 days
eOnzErG vs TBD
G5 vs Nesh
Patches Events
3 days
Replay Cast
3 days
Wardi Open
3 days
Afreeca Starleague
3 days
Jaedong vs Light
Monday Night Weeklies
4 days
Replay Cast
4 days
Sparkling Tuna Cup
4 days
Afreeca Starleague
4 days
Snow vs Flash
WardiTV Invitational
4 days
GSL
5 days
GSL
6 days
Liquipedia Results

Completed

Proleague 2026-04-28
WardiTV TLMC #16
Nations Cup 2026

Ongoing

BSL Season 22
ASL Season 21
CSL 2026 SPRING (S20)
IPSL Spring 2026
KCM Race Survival 2026 Season 2
StarCraft2 Community Team League 2026 Spring
2026 GSL S1
BLAST Rivals Spring 2026
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026

Upcoming

Escore Tournament S2: W5
KK 2v2 League Season 1
Acropolis #4
BSL 22 Non-Korean Championship
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
Maestros of the Game 2
2026 GSL S2
RSL Revival: Season 5
XSE Pro League 2026
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
IEM Atlanta 2026
Asian Champions League 2026
PGL Astana 2026
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2026 TLnet. All Rights Reserved.