• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 18:25
CET 00:25
KST 08:25
  • 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
RSL Season 3: RO16 results & RO8 bracket12Weekly Cups (Nov 10-16): Reynor, Solar lead Zerg surge1[TLMC] Fall/Winter 2025 Ladder Map Rotation14Weekly Cups (Nov 3-9): Clem Conquers in Canada4SC: Evo Complete - Ranked Ladder OPEN ALPHA12
StarCraft 2
General
RSL Season 3: RO16 results & RO8 bracket SC: Evo Complete - Ranked Ladder OPEN ALPHA RSL Season 3 - Playoffs Preview Mech is the composition that needs teleportation t GM / Master map hacker and general hacking and cheating thread
Tourneys
RSL Revival: Season 3 $5,000+ WardiTV 2025 Championship StarCraft Evolution League (SC Evo Biweekly) Constellation Cup - Main Event - Stellar Fest 2025 RSL Offline Finals Dates + Ticket Sales!
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 500 Fright night Mutation # 499 Chilling Adaptation Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened
Brood War
General
Data analysis on 70 million replays A cwal.gg Extension - Easily keep track of anyone soO on: FanTaSy's Potential Return to StarCraft [ASL20] Ask the mapmakers — Drop your questions FlaSh on: Biggest Problem With SnOw's Playstyle
Tourneys
[Megathread] Daily Proleagues Small VOD Thread 2.0 [BSL21] GosuLeague T1 Ro16 - Tue & Thu 22:00 CET [BSL21] RO16 Tie Breaker - Group B - Sun 21:00 CET
Strategy
Current Meta Game Theory for Starcraft How to stay on top of macro? PvZ map balance
Other Games
General Games
Stormgate/Frost Giant Megathread EVE Corporation Path of Exile [Game] Osu! 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
Community
General
Russo-Ukrainian War Thread The Games Industry And ATVI US Politics Mega-thread Things Aren’t Peaceful in Palestine About SC2SEA.COM
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
[Manga] One Piece Movie Discussion! Anime Discussion Thread Korean Music Discussion
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
TL Community
The Automated Ban List
Blogs
The Health Impact of Joining…
TrAiDoS
Dyadica Evangelium — Chapt…
Hildegard
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2099 users

The Big Programming Thread - Page 556

Forum Index > General Forum
Post a Reply
Prev 1 554 555 556 557 558 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.
Zocat
Profile Joined April 2010
Germany2229 Posts
Last Edited: 2014-12-14 02:08:51
December 14 2014 02:07 GMT
#11101
Overall you should always remember: "Do I get something out of working overtime to meet deadlines?"
- you can learn something (implementing stupid/fun features in school)
- better grades (school)
- more money
- additional vacation
- better chance at promotion
- doing someone a favour the person will return

If there's no reason to work overtime to meet a deadline then don't do it. You're not a code monkey, and there are plenty of jobs where you're not required to work overtime without compensation. We're still an industry where there are too few great coders, so those people can chose their job. So if overtime is regularly _expected_ of you with no compensation - get another job. Yes, this basically applies to the average game dev studio
LaNague
Profile Blog Joined April 2010
Germany9118 Posts
December 14 2014 02:53 GMT
#11102
i work in a field that has almost more open jobs than applicants, so i dont have to take the abuse that game devs have to take often.

Of course i sometimes even do voluntary work to get my ideas done, but you should not have regular overtimes just because the guy managing your work is not capable.
In the end, in a decent company, it will be figured out who is to blame when projects fail or delay. And its not because a programmer refused to work 12 hours a day.



Worry about your specific tasks at work and excell at them, it will make for a better and healthier life and you still get recognition.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
Last Edited: 2014-12-14 07:09:06
December 14 2014 06:50 GMT
#11103
i am familiarizing myself with windowing.
decided to work with xlib (also looked at sdl, glfw, and some other).
made a supersimple chalkboard (used same fsm framework as last post).

+ Show Spoiler [xlib module] +
#define XK_LATIN1
#include<X11/Xlib.h>
#include<X11/keysymdef.h>

namespace xlib{

struct application{
Display* display{XOpenDisplay(nullptr)};
Window root_window{XDefaultRootWindow(display)};
int
screen_number{XDefaultScreen(display)},
depth{XDefaultDepth(display,screen_number)},
xcoord{0},
ycoord{0};
unsigned long
black_pixel{XBlackPixel(display,screen_number)},
white_pixel{XWhitePixel(display,screen_number)},
border{white_pixel},
background{black_pixel};
unsigned int
width{640},
heigth{480},
border_width{4},
window_class{InputOutput};
GC gc{XDefaultGC(display,screen_number)};
Visual* visual{XDefaultVisual(display,screen_number)};
Window window{
XCreateSimpleWindow(display,root_window,xcoord,ycoord,width,heigth,border_width,border,background)
};
application(){
XSelectInput(
display,
window,
KeyPressMask|PointerMotionMask
);
XSetForeground(display,gc,white_pixel);
XMapWindow(display,window);
XFlush(display);
}
~application(){
XUnmapWindow(display,window);
XDestroyWindow(display,window);
XCloseDisplay(display);
}
};

}

xlib::application application;

+ Show Spoiler [chalkboard fsm engine] +
struct chalkboard
{
struct not_drawing{};
struct drawing{};
using states=seq::sequence<not_drawing,drawing>;
static constexpr not_drawing initial{};

struct close{};
struct toggle_pause{};
struct mouse_position{int x; int y;};
using symbols=seq::sequence<close,toggle_pause,mouse_position>;

bool done{false};

//transitions
//syntax: to_state operator()(const from_state&,const symbol&)

//draw a point
drawing
operator()(const drawing&,const mouse_position& m)
{ XDrawPoint(application.display,application.window,application.gc,m.x,m.y); }

template<class state>
using other_state=seq::element<states,(seq::index<states,state>()+1)%2>;

//toggle to other state
template<class state>
other_state<state>
operator()(const state&,const toggle_pause&)
{}

//notify finished
template<class state>
state
operator()(const state&,const close& c)
{ done=true; }

//catch all
template<class state,class symbol>
state
operator()(const state&,const symbol&)
{}

};

+ Show Spoiler [main loop / event processor] +

int
main(int argc,char** argv)
{
try{
fsm::machine<chalkboard> fsm;
XEvent event;
do{
XNextEvent(application.display,&event);
switch(event.type){
case KeyPress:
switch(XLookupKeysym(&event.xkey,0)){
case XK_q:
fsm|chalkboard::close{};
break;
case XK_p:
fsm|chalkboard::toggle_pause{};
break;
}
case MotionNotify:
fsm|chalkboard::mouse_position{event.xmotion.x,event.xmotion.y};
break;
}
}while(!fsm.done);
}catch(const std::exception& e){
std::cerr<<e.what()<<std::endl;
}
}


new logo for tl:
[image loading]
conspired against by a confederacy of dunces.
Ilikestarcraft
Profile Blog Joined November 2004
Korea (South)17731 Posts
December 14 2014 06:53 GMT
#11104
Lol that is awesome
"Nana is a goddess. Or at very least, Nana is my goddess." - KazeHydra
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
Last Edited: 2014-12-15 05:44:55
December 14 2014 12:51 GMT
#11105
ugh xlib ~_~

use opengl or some library imo unelss you just want to learn at that low level. xlib is pretty useless.
There is no one like you in the universe.
McDutch
Profile Joined February 2011
Netherlands184 Posts
December 14 2014 16:27 GMT
#11106
So this is not a real programming related question, but i guess you guys have the most experience with it. I'm planning on getting a laptop, just to be able to program while I'm relaxing on the couch or in my bed. I don't want to have a 17" laptop, since i feel that is just to big.

I got offered a HP Elitebook 2560P for a fairly cheap price.

Since I will just be running Visual Studio and a light weight text editor on it, the specs are fine.
The only thing I'm afraid of, is that 12.5" is to small to work on comfortably.

Do any of you guys have any experience using smaller sized laptops for programming?
naniwa, grubby, white-ra, ret
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
Last Edited: 2014-12-14 17:25:10
December 14 2014 17:24 GMT
#11107
--- Nuked ---
xboi209
Profile Blog Joined June 2011
United States1173 Posts
Last Edited: 2014-12-15 00:48:11
December 15 2014 00:43 GMT
#11108
http://www.reddit.com/r/broodwar/
FFGenerations
Profile Blog Joined April 2011
7088 Posts
Last Edited: 2014-12-15 10:28:28
December 15 2014 09:55 GMT
#11109
i got 5/10 for my problem statement....

problem statement
+ Show Spoiler +

Comparing the runtime performance of a concurrent process written using the Actor Model vs the traditional shared-state model of parallel programming.

The Actor Model is an emerging methodology that offers an alternative approach to the traditional shared-state model of parallel programming. Although much debate surrounds the usefulness of the Actor Model in real-world application, this debate tends to surround issues of architectural design rather than runtime performance. This paper aims to evaluate the performance of the Actor Model by measuring the execution time of a scalable asynchronous application and then comparing this with a similar build based on a traditional shared-state model. To achieve this a process will be built in node.js that sends an array of concurrent HTTP requests to The Internet Movie Database and listens for an XML response. The process will be iterated for accuracy and runtime will be recorded using JavaScript’s built-in getMilliseconds function. The application will be constructed two times; once with the nactor library using the Actor Model and once with the async library using traditional shared-state programming. Measured run-times in milliseconds will be compared in order to establish a conclusion.


tutors comments (make sense of this if you can)
+ Show Spoiler +

You propose an evaluation rather than a problem. You do state how you will do your evaluation and your measurable's. But the idea of this work was to investigate a problem rather than evaluate processes. Have you got the resources to conduct your testing? refine this work to an actual problem. then work from there. 5/10


my comments
+ Show Spoiler +

im not sure she understands what i wrote? "u propose an evaluation rather than a problem" doesn't make any sense? yes i listed ~7 resources.

what does it mean "But the idea of this work was to investigate a problem rather than evaluate processes."


i spent 20 mins talking to non-english friend him saying that "its not a problem" and me saying "it is a problem"
Cool BW Music Vid - youtube.com/watch?v=W54nlqJ-Nx8 ~~~~~ ᕤ OYSTERS ᕤ CLAMS ᕤ AND ᕤ CUCKOLDS ᕤ ~~~~~~ ༼ ᕤ◕◡◕ ༽ᕤ PUNCH HIM ༼ ᕤ◕◡◕ ༽ᕤ
Manit0u
Profile Blog Joined August 2004
Poland17448 Posts
Last Edited: 2014-12-15 10:37:31
December 15 2014 10:29 GMT
#11110
This paper aims to evaluate the performance


You do propose the eveluation rather than a problem...

This may help you: http://www.acsl.org/samples.htm
Time is precious. Waste it wisely.
FFGenerations
Profile Blog Joined April 2011
7088 Posts
Last Edited: 2014-12-15 10:43:34
December 15 2014 10:31 GMT
#11111
On December 15 2014 19:29 Manit0u wrote:
Show nested quote +
This paper aims to evaluate the performance


You do propose the eveluation rather than a problem...


what does that mean? i say "Although much debate surrounds the usefulness of the Actor Model in real-world application, this debate tends to surround issues of architectural design rather than runtime performance. This paper aims to evaluate the performance....."

if what you're saying is that i'm not explicit enough then i can see how that's a possibility if you suck at reading two consecutive sentences but then it doesn't seem to explain "But the idea of this work was to investigate a problem rather than evaluate processes."

can i restate that the problem is that no1 has measured the runtime performance of actor model vs other model and hence that is what i am investigating

ok so im guessing my first sentence isn't as clear as i thought it was. i say that there is debate about usefulness of actor model. i say that debate doesnt surround issues of runtime performance. i say that i am going to measure runtime performance.

i'm guessing the confusion is because that i don't clearly state that there is no research on runtime performance and that is a problem and therefore i am going to do it.

am i right or am i wrong?

edit: no i still dont understand from your link
Cool BW Music Vid - youtube.com/watch?v=W54nlqJ-Nx8 ~~~~~ ᕤ OYSTERS ᕤ CLAMS ᕤ AND ᕤ CUCKOLDS ᕤ ~~~~~~ ༼ ᕤ◕◡◕ ༽ᕤ PUNCH HIM ༼ ᕤ◕◡◕ ༽ᕤ
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
December 15 2014 10:53 GMT
#11112
On December 15 2014 19:31 FFGenerations wrote:
Show nested quote +
On December 15 2014 19:29 Manit0u wrote:
This paper aims to evaluate the performance


You do propose the eveluation rather than a problem...


what does that mean? i say "Although much debate surrounds the usefulness of the Actor Model in real-world application, this debate tends to surround issues of architectural design rather than runtime performance. This paper aims to evaluate the performance....."

if what you're saying is that i'm not explicit enough then i can see how that's a possibility if you suck at reading two consecutive sentences but then it doesn't seem to explain "But the idea of this work was to investigate a problem rather than evaluate processes."

can i restate that the problem is that no1 has measured the runtime performance of actor model vs other model and hence that is what i am investigating

ok so im guessing my first sentence isn't as clear as i thought it was. i say that there is debate about usefulness of actor model. i say that debate doesnt surround issues of runtime performance. i say that i am going to measure runtime performance.

i'm guessing the confusion is because that i don't clearly state that there is no research on runtime performance and that is a problem and therefore i am going to do it.

am i right or am i wrong?


A problem is something to solve, a reason for finding a solution. What you are proposing is basically research for the sake of research. Saying "I'm researching it because I have the problem of there not being research" is not creating a problem to solve, it's fancy wording for "I'm too lazy to find a real problem for which I could apply my 'solution'".

What is the underlying problem? Why would someone start to dig into the actor model and evaluate it's performance? Which real world high performance application for that pattern either doesn't exist and could be improved or exists and could be improved by not using that pattern?

Think of having a boss that only thinks about the business value of the time you spend. Spending 20 hours researching a pattern for the sake of it will cost your job unless you can point very specifically to why it has to be done.

Simple example (that you shouldn't use because it's too simplified):
"Our customers are complaining about poor performance of our legacy services. Those services don't allow for solving it with more hardware due to technical constraints. Since they are using a shared-state model, we could use the actor model to potentially speed it up, which would require rewriting core parts of the application. If it doesn't produce noticeable performance benefits then it's a waste of time, i.e. money, and the time might be better spent improving other parts of the code, so we have to evaluate the performance for this use-case before starting work on this code."
Vorenius
Profile Blog Joined December 2010
Denmark1979 Posts
December 15 2014 10:56 GMT
#11113
From what you have posted here the problem is that no one has evaluated this before? And to solve that problem you are going to evaluate it?

I'd tend to agree with your tutor on this one.
superDiglett
Profile Joined December 2014
Netherlands1 Post
December 15 2014 17:41 GMT
#11114
On December 15 2014 02:24 Nesserev wrote:
Show nested quote +
On December 15 2014 01:27 McDutch wrote:
So this is not a real programming related question, but i guess you guys have the most experience with it. I'm planning on getting a laptop, just to be able to program while I'm relaxing on the couch or in my bed. I don't want to have a 17" laptop, since i feel that is just to big.

I got offered a HP Elitebook 2560P for a fairly cheap price.

Since I will just be running Visual Studio and a light weight text editor on it, the specs are fine.
The only thing I'm afraid of, is that 12.5" is to small to work on comfortably.

Do any of you guys have any experience using smaller sized laptops for programming?

As long as it's not part of your primary programming environment, a small screen won't hurt. What I mean is, I hope that you have a multi-monitor desktop set up at home, or at your job, where you do most of your coding, and if you just want to use it for when you're relaxing on the couch or in bed, it's a good option.

But, if you're going to use an IDE like Visual Studio, it's probably a good idea not to go for a notebook with a 12" screen. Do you currently have a 15"-17" laptop, because if you just 'think' that a 17" laptop might be to big, you might be surprised. I use a 17" laptop for the same purposes and never thought that it was too big... in fact, I wouldn't dare to go smaller.

I think it all comes down to personal opinion and getting used to things. 12" might be too small, I consider 17" screens to be the safe option.


My gf has a 17" laptop. I just feel like it's to big to use without a desk to put it on. I used someone's 13" macbook, and i found that fine to use for a small amount of time. I agree you shouldn't use it as your primary work station, but that is what my desktop is for. But sometimes i don't feel like working on my desk all day, and want to work like 30/45min on the couch.

The problem is resolution tho. Most 12"/13" laptops do not have a full HD monitor. Unless i would buy a macbook retina i guess, but that's just money waste.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
Last Edited: 2014-12-17 16:55:55
December 17 2014 16:51 GMT
#11115
at work i had a variant of ~50 types (representing the alphabet of symbols in some language).
i had written several different binary visitations (i was in a hurry, so no time to be precise).
ergo several cases of the compiler instantiating 50*50=2500 functions with template machinery and stuffing them in an array.
really amazing that it worked (took long to compile, but not so long it was impossible to work with).

now that i got the opportunity to improve my previous work i rewrote the visitor machinery to be more general (~with more involved template machinery), but as a result the compilator started choking out because it ran out of heap space, so now i am rewriting my classes to be a bit more precise (variants hold fewer types) to ease the pain.

maybe if i was using gcc or clang i would have gotten away with it (using vs2014).
with gcc (on my workstation 8gb mem) i can instantiate 75*75=5625 functions without choking, but not a lot more.
it seems template instantiations really blow up memory-wise when you get serious with them.
dunno to what order it blows up with, but wouldn't be surprised if it was 3 or more!

been conforming to the codestyle at work, writing captial letters and camel case.
so vulgar, but it feels nice in a GuiltyPleasureKindOfWay.
conspired against by a confederacy of dunces.
theRadax
Profile Joined December 2014
1 Post
Last Edited: 2014-12-19 00:56:01
December 18 2014 09:32 GMT
#11116
-nuked

User was banned for this post.
Manit0u
Profile Blog Joined August 2004
Poland17448 Posts
December 19 2014 10:58 GMT
#11117
Latest client demands: "I want to upload .avi, .rm and .swf videos to the website and I want them all to play no problem in every browser, including mobiles."

FML
Time is precious. Waste it wisely.
ZenithM
Profile Joined February 2011
France15952 Posts
December 19 2014 12:46 GMT
#11118
On December 19 2014 19:58 Manit0u wrote:
Latest client demands: "I want to upload .avi, .rm and .swf videos to the website and I want them all to play no problem in every browser, including mobiles."

FML

Haha good stuff.
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
December 19 2014 14:17 GMT
#11119
--- Nuked ---
xtorn
Profile Blog Joined December 2013
4060 Posts
Last Edited: 2014-12-19 16:43:54
December 19 2014 16:13 GMT
#11120
On December 19 2014 19:58 Manit0u wrote:
Latest client demands: "I want to upload .avi, .rm and .swf videos to the website and I want them all to play no problem in every browser, including mobiles."

FML

ok, lets split and see

"I want to upload .avi, .rm and .swf videos to the website"
ETA 2 days

"and I want them all to play no problem in every browser, including mobiles."
ETA 90 days


Joke aside, tell him to define "all to play no problem". These... people, man. The cringe. What does that even mean? Does he want every browser known to mankind, ever since Adam and Eve ate the apple?

Does he want a shiny sparkling frame and unicorns dancing around the video?
Does he want fullscreen?
Does he want no framedrops?
Does he provide every single gadget from the category "including mobiles" to test on it?
Did he provide the mockup for the upload user interface? Does he know what a mockup is?

These fucking marketing people. Be very careful with this guy's demands, you cannot even play swf on iOS and he will most probably complain. Establish your rules on whats supported and what isnt, tell him you need 24hrs to get facts straight and a compatibility list.

Life - forever the Legend in my heart
Prev 1 554 555 556 557 558 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 8h 5m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
White-Ra 257
UpATreeSC 157
Nina 146
SpeCial 48
StarCraft: Brood War
Jaeyun 49
Leta 29
Dota 2
NeuroSwarm74
Counter-Strike
fl0m1356
Heroes of the Storm
Trikslyr62
Other Games
Grubby5967
FrodaN1484
shahzam407
Liquid`Hasu248
C9.Mang0124
ViBE83
KnowMe82
ZombieGrub35
PPMD24
Organizations
Other Games
BasetradeTV19
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 20 non-featured ]
StarCraft 2
• Hupsaiya 85
• sitaska39
• davetesta23
• Kozan
• IndyKCrew
• sooper7s
• AfreecaTV YouTube
• Migwel
• intothetv
• LaughNgamezSOOP
StarCraft: Brood War
• mYiSmile16
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota21856
League of Legends
• Doublelift3884
Counter-Strike
• Shiphtur190
Other Games
• imaqtpie1243
• Scarra921
• WagamamaTV509
Upcoming Events
RSL Revival
8h 5m
Classic vs MaxPax
SHIN vs Reynor
herO vs Maru
WardiTV Korean Royale
12h 35m
SC Evo League
13h 5m
IPSL
17h 35m
Julia vs Artosis
JDConan vs DragOn
OSC
17h 35m
BSL 21
20h 35m
TerrOr vs Aeternum
HBO vs Kyrie
RSL Revival
1d 8h
Wardi Open
1d 14h
IPSL
1d 20h
StRyKeR vs OldBoy
Sziky vs Tarson
BSL 21
1d 20h
StRyKeR vs Artosis
OyAji vs KameZerg
[ Show More ]
OSC
1d 23h
OSC
2 days
Monday Night Weeklies
2 days
OSC
2 days
Wardi Open
3 days
Replay Cast
4 days
Wardi Open
4 days
Tenacious Turtle Tussle
5 days
The PondCast
5 days
Replay Cast
5 days
LAN Event
6 days
Replay Cast
6 days
Liquipedia Results

Completed

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

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
YSL S2
BSL Season 21
CSCL: Masked Kings S3
SLON Tour Season 2
RSL Revival: Season 3
META Madness #9
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
HSC XXVIII
RSL Offline Finals
WardiTV 2025
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 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.