• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 07:50
CET 13:50
KST 21:50
  • 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
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 Information Request Regarding Chinese Ladder
Tourneys
$5,000+ WardiTV 2025 Championship Constellation Cup - Main Event - Stellar Fest RSL Revival: Season 3 Tenacious Turtle Tussle [Alpha Pro Series] Nice vs Cure
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
BGH Auto Balance -> http://bghmmr.eu/ Data analysis on 70 million replays Which season is the best in ASL? [ASL20] Ask the mapmakers — Drop your questions BW General Discussion
Tourneys
[Megathread] Daily Proleagues [BSL21] RO16 Group B - Sunday 21:00 CET [BSL21] RO16 Group C - Saturday 21:00 CET Small VOD Thread 2.0
Strategy
Game Theory for Starcraft How to stay on top of macro? Current Meta PvZ map balance
Other Games
General Games
Stormgate/Frost Giant Megathread The Perfect Game Path of Exile Nintendo Switch Thread Should offensive tower rushing be viable in RTS games?
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
Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine 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: 1137 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
Wardi Open
12:00
Qualifier #4
WardiTV591
TKL 95
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Reynor 296
ProTech127
TKL 95
Rex 94
MindelVK 44
StarCraft: Brood War
Calm 6104
Shuttle 2076
Horang2 1905
Jaedong 1195
actioN 740
Mini 607
EffOrt 387
Hyun 316
Light 302
ZerO 276
[ Show more ]
Last 220
Snow 179
Mong 154
Pusan 154
Rush 139
Sharp 77
Zeus 72
hero 57
Killer 57
sorry 39
ToSsGirL 38
Icarus 29
Aegong 28
scan(afreeca) 20
JYJ17
soO 11
Terrorterran 6
Hm[arnc] 4
Dota 2
singsing2197
qojqva39
Counter-Strike
shoxiejesuss651
x6flipin641
allub221
oskar93
Other Games
olofmeister1351
B2W.Neo985
XaKoH 272
Fuzer 236
KnowMe80
nookyyy 26
ZerO(Twitch)11
Organizations
StarCraft: Brood War
lovetv 8
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• StrangeGG 54
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• C_a_k_e 2489
• WagamamaTV313
• lizZardDota275
Upcoming Events
StarCraft2.fi
4h 10m
Replay Cast
11h 10m
The PondCast
21h 10m
OSC
1d 3h
Demi vs Mixu
Nicoract vs TBD
Babymarine vs MindelVK
ForJumy vs TBD
Shameless vs Percival
Replay Cast
1d 11h
Korean StarCraft League
2 days
CranKy Ducklings
2 days
WardiTV 2025
2 days
SC Evo League
2 days
BSL 21
3 days
Sziky vs OyAji
Gypsy vs eOnzErG
[ Show More ]
OSC
3 days
Solar vs Creator
ByuN vs Gerald
Percival vs Babymarine
Moja vs Krystianer
EnDerr vs ForJumy
sebesdes vs Nicoract
Sparkling Tuna Cup
3 days
WardiTV 2025
3 days
OSC
4 days
BSL 21
4 days
Bonyth vs StRyKeR
Tarson vs Dandy
Replay Cast
4 days
Wardi Open
4 days
StarCraft2.fi
5 days
Replay Cast
5 days
WardiTV 2025
5 days
StarCraft2.fi
6 days
PiGosaur Monday
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.