• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 16:55
CEST 22:55
KST 05:55
  • 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 - RO8 Preview3[ASL21] Ro8 Preview Pt2: Progenitors8Code S Season 1 - RO12 Group A: Rogue, Percival, Solar, Zoun13[ASL21] Ro8 Preview Pt1: Inheritors16[ASL21] Ro16 Preview Pt2: All Star10
Community News
Maestros of The Game 2 announcement and schedule !4Weekly Cups (April 27-May 4): Clem takes triple0RSL Revival: Season 5 - Qualifiers and Main Event12Code S Season 1 (2026) - RO12 Results12026 GSL Season 1 Qualifiers25
StarCraft 2
General
Code S Season 1 - RO8 Preview Behind the Blue - Team Liquid History Book Weekly Cups (April 27-May 4): Clem takes triple Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool Code S Season 1 (2026) - RO12 Results
Tourneys
Maestros of The Game 2 announcement and schedule ! GSL Code S Season 1 (2026) Sea Duckling Open (Global, Bronze-Diamond) RSL Revival: Season 5 - Qualifiers and Main Event Sparkling Tuna Cup - Weekly Open Tournament
Strategy
Custom Maps
[D]RTS in all its shapes and glory <3 [A] Nemrods 1/4 players
External Content
Mutation # 524 Death and Taxes The PondCast: SC2 News & Results Mutation # 523 Firewall Mutation # 522 Flip My Base
Brood War
General
Do we have a pimpest plays list? BGH Auto Balance -> http://bghmmr.eu/ (Spoiler) Asl ro8 D winner interview BW General Discussion AI Question
Tourneys
Small VOD Thread 2.0 [ASL21] Ro8 Day 4 [BSL22] RO16 Group Stage - 02 - 10 May [ASL21] Ro8 Day 3
Strategy
Simple Questions, Simple Answers Fighting Spirit mining rates What's the deal with APM & what's its true value Any training maps people recommend?
Other Games
General Games
Stormgate/Frost Giant Megathread Dawn of War IV Nintendo Switch Thread OutLive 25 (RTS Game) Daigo vs Menard Best of 10
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 The Letting Off Steam Thread Russo-Ukrainian War Thread 3D technology/software discussion
Fan Clubs
The IdrA Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece [Req][Books] Good Fantasy/SciFi books
Sports
2024 - 2026 Football Thread McBoner: A hockey love story Formula 1 Discussion
World Cup 2022
Tech Support
streaming software Strange computer issues (software) [G] How to Block Livestream Ads
TL Community
The Automated Ban List
Blogs
How EEG Data Can Predict Gam…
TrAiDoS
ramps on octagon
StaticNine
Funny Nicknames
LUCKY_NOOB
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2358 users

The Big Programming Thread - Page 482

Forum Index > General Forum
Post a Reply
Prev 1 480 481 482 483 484 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.
3FFA
Profile Blog Joined February 2010
United States3931 Posts
May 19 2014 11:53 GMT
#9621
On May 17 2014 06:08 Nesserev wrote:
Show nested quote +
On May 17 2014 04:18 3FFA wrote:
Thank you so much Ben and Nesserev! Especially for explaining it to me so that now I understand the why behind all of this.

Well, just to be sure, post your 'fixed' code, so that we're sure that you understand everything completely


Here it is! A bit late, but I'll link to it in the post before yours.

String songTitle = "Pompeii";
if(music.getDownloadInfo(songTitle) == null)
System.out.println(songTitle + " was never downloaded");
else
System.out.println(songTitle + " was downloaded " + music.getDownloadInfo(songTitle).getTimesDownloaded() + " times");

songTitle = "Jingle Bells";
if(music.getDownloadInfo(songTitle) == null)
System.out.println(songTitle + " was never downloaded");
else
System.out.println(songTitle + " was downloaded " + music.getDownloadInfo(songTitle).getTimesDownloaded() + " times");
"As long as it comes from a pure place and from a honest place, you know, you can write whatever you want."
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
May 19 2014 13:53 GMT
#9622
--- Nuked ---
Release
Profile Blog Joined October 2010
United States4397 Posts
May 19 2014 14:59 GMT
#9623
+ Show Spoiler +
import java.util.concurrent.*;

public class ThreadTest2 {

private static final int FINISH = 2000000;
private static int maxDivisorCount;
private static int numberWithMaxDivsisors;
private static ArrayBlockingQueue<DivisorTask> blockingQueue;

/**
* Gets the number of threads from the user and counts primes using that many threads.
*/
public static void main(String[] args) {
int processors = Runtime.getRuntime().availableProcessors();
if (processors == 1)
System.out.println("Your computer has only 1 available processor.\n");
else
System.out.println("Your computer has " + processors + " available processors.\n");
int numberOfThreads = 0;
while (numberOfThreads < 1 || numberOfThreads > 1000) {
System.out.print("How many threads do you want to use (from 1 to 1000) ? ");
//numberOfThreads = TextIO.getlnInt();
numberOfThreads = 8;
if (numberOfThreads < 1 || numberOfThreads > 1000)
System.out.println("Please enter 1, 2, 3, 4, 5, 6, 7, or 8 !");
}
countDivisorsWithThreads(numberOfThreads);
}

private static void countDivisorsWithThreads(int numberOfThreads) {
blockingQueue = new ArrayBlockingQueue<DivisorTask>(10000);
int numTasks = 100;
int increment = FINISH/numTasks;
System.out.println("\nCounting primes between 1 and "
+ (FINISH) + " using " + numberOfThreads + " threads...\n");
long startTime = System.currentTimeMillis();
CountDivisorsThread[] worker = new CountDivisorsThread[numberOfThreads];
for (int i = 0; i < numberOfThreads; i++)
worker[i] = new CountDivisorsThread();
numberWithMaxDivsisors = 0;
maxDivisorCount = 0;
for (int i = 0; i < numTasks; i++)
try {
blockingQueue.put(new DivisorTask(i * increment + 1, (i+1) * increment));
}
catch (InterruptedException e) {

}
for (int i = 0; i < numberOfThreads; i++)
worker[i].start();
for (int i = 0; i < numberOfThreads; i++) {
while (worker[i].isAlive()) {
try {
worker[i].join();
}
catch (InterruptedException e) {

}
}
}
if (blockingQueue.isEmpty())
worker = null;

long elapsedTime = System.currentTimeMillis() - startTime;
System.out.println("\nThe number with most divisors is " + numberWithMaxDivsisors + ".");
System.out.println("\nThe number of divisors is " + maxDivisorCount + ".");
System.out.println("\nTotal elapsed time: " + (elapsedTime/1000.0) + " seconds.\n");
}

private static class CountDivisorsThread extends Thread {
public CountDivisorsThread() {

}

public void run() {
DivisorTask task = null;
// try {
// task = blockingQueue.take();
// }
// catch (InterruptedException e) {
//
// }
// while (!blockingQueue.isEmpty()) {
// task.run();
// try {
// task = blockingQueue.take();
// }
// catch (InterruptedException e) {
//
// }
// }

while (!blockingQueue.isEmpty()) {
try {
task = blockingQueue.take();
}
catch (InterruptedException e) {

}
task.run();
}
}

}

private static class DivisorTask {
int numDivisorsThread;
int numWithMostThread;
int min, max;
public DivisorTask(int min, int max) {
this.min = min;
this.max = max;
numDivisorsThread = 0;
numWithMostThread = 0;
}
public void run() {
int currentNum;
int currentDivisor;
for (int i = min; i < max + 1; i++) {
currentNum = i;
currentDivisor = countDivisors(i);
if (currentDivisor > numDivisorsThread) {
numWithMostThread = currentNum;
numDivisorsThread = currentDivisor;
}
}
System.out.println("The DIVnumber between " + min + " and " + max + " is " + numWithMostThread
+ "\n" + "The number of divisors that it has is " + numDivisorsThread + "\n"
+ "Is the task queue empty?: " + blockingQueue.isEmpty());
if (numDivisorsThread > maxDivisorCount) {
newMax(numDivisorsThread, numWithMostThread);
}
}
}

private static int countDivisors(int num) {
int count = 0;
for (int i = 1; i < Math.sqrt(num); i++) {
if (num % i == 0)
count += 2;
}
if (Math.sqrt(num) - (int)Math.sqrt(num) == 0)
count++;
return count;
}

synchronized private static void newMax(int divisors, int number) {
maxDivisorCount = divisors;
numberWithMaxDivsisors = number;
}

}


In the CountDivisorsThread, there are two sections. The commented out section, and the current working section.
When I run the commented out section, 7 thread finish, but the final thread/task does not complete and the program stops.
As it currently stands, the program finishes. Why does the commented out section not complete the program? And why does it not complete the program with 7 threads finishing and the last one not finish? Even if I use setDaemon(true) in the constructor when I initialize the thread, the program still will not finish when I use the commented out section.
☺
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
Last Edited: 2014-05-19 16:02:37
May 19 2014 15:57 GMT
#9624
--- Nuked ---
Release
Profile Blog Joined October 2010
United States4397 Posts
May 19 2014 17:08 GMT
#9625
Ok. That makes sense why the final task doesn't run.

But when the thread sees that the queue is empty, shouldn't the thread end (since the run() method completes), which causes the thread to die, and thereby cause the program to complete (since worker[lastRemaining].join() should see that the thread died) and output the final strings.
The program continues to run without outputting anything.
☺
Mindcrime
Profile Joined July 2004
United States6899 Posts
May 19 2014 20:27 GMT
#9626
I'm working on this project that lets users manipulate a database from various windows forms. Every table in the database has an associated class with functions that call the necessary stored procedures and pass them the required values.

Most of these functions are written like so:




Public Shared Function AddNew(ByVal pCustomerID As Integer, ByVal pRecordType As String, ByVal pCustomerName As String, ByVal pBillingAddressID As Integer, ByVal pShippingAddressID As Integer, ByVal pPaymentTermsID As Integer, ByVal pShippingTermsID As String) As Boolean


<snip>


sqlinsertCommand.Parameters.AddWithValue("@CustomerID", pCustomerID)
sqlinsertCommand.Parameters.AddWithValue("@RecordType", pRecordType)
sqlinsertCommand.Parameters.AddWithValue("@CustomerName", pCustomerName)
sqlinsertCommand.Parameters.AddWithValue("@BillingAddressID", pBillingAddressID)
sqlinsertCommand.Parameters.AddWithValue("@ShippingAddressID", pShippingAddressID)
sqlinsertCommand.Parameters.AddWithValue("@PaymentTermsID", pPaymentTermsID)
sqlinsertCommand.Parameters.AddWithValue("@ShippingTermsID", pShippingTermsID)

<snip>


You call the function and you pass it the values it's looking for in the correct order and it uses those to set the stored procedure's parameters. easy

Then I ran into this function in another class which is supposed to serve the same purpose:

Public Shared Function AddNewPackage(ByVal ParamArray params() As Object) As Boolean

<snip>


For Each parameter In params
oleinsertCommand.Parameters.AddWithValue("@" + parameter.Key, parameter.Value)
Next

<snip>


This requires creating an object with a separate key for each value I want to pass to the stored procedure. Additionally, the function will accept any number of arguments even though the stored procedure it calls requires exactly 26 parameters. Why would anyone do it that way?
That wasn't any act of God. That was an act of pure human fuckery.
berated-
Profile Blog Joined February 2007
United States1134 Posts
May 20 2014 01:25 GMT
#9627
How does one make enterprise android app development not suck? Has anyone found a nice alternative to native when interacting heavily with a backend rest service? Is using appcelerator worth it just for the mvc architecture? Any other ideas to deal with the asynchronous nature of android combined with calling http continuously?
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
May 20 2014 04:21 GMT
#9628
Depends on where you think your bottleneck is, the phone download speed or your backend rest service? Need a little bit more data.

In general good apps just break things down well enough and have good enough UI that the user just doesn't feel like there's a problem getting data. Like if you're downloading 50 times at once, paginate more and better, and handle cancellation better.
There is no one like you in the universe.
berated-
Profile Blog Joined February 2007
United States1134 Posts
Last Edited: 2014-05-20 10:12:11
May 20 2014 10:04 GMT
#9629
On May 20 2014 13:21 Blisse wrote:
Depends on where you think your bottleneck is, the phone download speed or your backend rest service? Need a little bit more data.

In general good apps just break things down well enough and have good enough UI that the user just doesn't feel like there's a problem getting data. Like if you're downloading 50 times at once, paginate more and better, and handle cancellation better.


It's not a performance thing its a code cleanliness thing. Using async tasks is dangerous because one can't rely on the current UI state when the async task finishes, so if you get the timing wrong the app just crashes. Using asynctaskloaders is a lot of boilerplate on every request. You could try to break everything out into services or use Dobjanschi's style of architecture, but that just feels so overly complicated.

Sorry for the lack of info, it was a half bitch / half throwing something out there and hoping for a miracle. We've picked up android dev for our warehouse and it just feels so overly complex. I've been working with web flows for quite a while now, and it's just not the easiest of transitions. It's not that you can't make it work, you just have to deal with so many considerations because android can kill your stuff when it gets backgrounded or you how you aren't supposed to make http requests from the ui thread.
Rels
Profile Joined August 2008
France13467 Posts
May 20 2014 12:36 GMT
#9630
Hello everyone! I've got a question for you all. Sorry if it has already been answered, I looked through the OP and didn't find anything like it.

First my background: I've almost finished my computer science school and I can code efficiently in C, C++ and Java. Of these 3 I prefer C++.

Now I have a project a developping a RPG video game with some friends. I looked on the web for either some engine or some framework that would help me do that. The one I saw the most was Unity, but it seemed that it seems to use a very high level language, which is not very funny! (=

This game I want to develop would be in 2D, soloplayer, for PC (mouse / keyboard) and turn base, so not a lot of efficiency is actually needed.

My question would be: Would you have any advice on what framework or engine I could / should use for my game?

Thanks in advance for any advice you could give me!
nunez
Profile Blog Joined February 2011
Norway4003 Posts
May 20 2014 12:39 GMT
#9631
maybe sdl?
conspired against by a confederacy of dunces.
Rels
Profile Joined August 2008
France13467 Posts
May 20 2014 12:43 GMT
#9632
On May 20 2014 21:39 nunez wrote:
maybe sdl?


Seems pretty nice! Low level, works natively with C++, I like that. I'll give it a try!
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
May 20 2014 14:37 GMT
#9633
--- Nuked ---
supereddie
Profile Joined March 2011
Netherlands151 Posts
May 20 2014 15:34 GMT
#9634
On May 20 2014 05:27 Mindcrime wrote:
I'm working on this project that lets users manipulate a database from various windows forms. Every table in the database has an associated class with functions that call the necessary stored procedures and pass them the required values.

Most of these functions are written like so:
*snip*

You call the function and you pass it the values it's looking for in the correct order and it uses those to set the stored procedure's parameters. easy

Then I ran into this function in another class which is supposed to serve the same purpose:
*snip*

This requires creating an object with a separate key for each value I want to pass to the stored procedure. Additionally, the function will accept any number of arguments even though the stored procedure it calls requires exactly 26 parameters. Why would anyone do it that way?

Programmers trying to be too clever or too lazy. This is just something waiting to go wrong.
"Do not try to make difficult things possible, but make simple things simple." - David Platt on Software Design
Rels
Profile Joined August 2008
France13467 Posts
May 20 2014 17:49 GMT
#9635
On May 20 2014 23:37 Nesserev wrote:
To be honest, SDL seems to be a bit overkill for his project. SFML seems like the right tool for the job, everything you need to make a 2D game.

Also, there's a 'game development' book for SFML that introduces you to some aspects of game programming, like resourceholders, adding shaders, etc. : book (You can also find it on TPB).


Thanks! I'll give it a look.
urboss
Profile Joined September 2013
Austria1223 Posts
May 20 2014 18:00 GMT
#9636
On May 20 2014 19:04 berated- wrote:
Show nested quote +
On May 20 2014 13:21 Blisse wrote:
Depends on where you think your bottleneck is, the phone download speed or your backend rest service? Need a little bit more data.

In general good apps just break things down well enough and have good enough UI that the user just doesn't feel like there's a problem getting data. Like if you're downloading 50 times at once, paginate more and better, and handle cancellation better.


It's not a performance thing its a code cleanliness thing. Using async tasks is dangerous because one can't rely on the current UI state when the async task finishes, so if you get the timing wrong the app just crashes. Using asynctaskloaders is a lot of boilerplate on every request. You could try to break everything out into services or use Dobjanschi's style of architecture, but that just feels so overly complicated.

Sorry for the lack of info, it was a half bitch / half throwing something out there and hoping for a miracle. We've picked up android dev for our warehouse and it just feels so overly complex. I've been working with web flows for quite a while now, and it's just not the easiest of transitions. It's not that you can't make it work, you just have to deal with so many considerations because android can kill your stuff when it gets backgrounded or you how you aren't supposed to make http requests from the ui thread.

A service isn't complicated at all.
I use IntentService for all my HTTP operations.
There is also a custom class called WakefulIntentService:
https://gitorious.org/kolab-android/kolab-android/source/5ed8bcb214249fd955962ccfa282524cd19e8b44:src/com/commonsware/cwac/wakeful/WakefulIntentService.java
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
May 20 2014 18:38 GMT
#9637
On May 20 2014 19:04 berated- wrote:
Show nested quote +
On May 20 2014 13:21 Blisse wrote:
Depends on where you think your bottleneck is, the phone download speed or your backend rest service? Need a little bit more data.

In general good apps just break things down well enough and have good enough UI that the user just doesn't feel like there's a problem getting data. Like if you're downloading 50 times at once, paginate more and better, and handle cancellation better.


It's not a performance thing its a code cleanliness thing. Using async tasks is dangerous because one can't rely on the current UI state when the async task finishes, so if you get the timing wrong the app just crashes. Using asynctaskloaders is a lot of boilerplate on every request. You could try to break everything out into services or use Dobjanschi's style of architecture, but that just feels so overly complicated.

Sorry for the lack of info, it was a half bitch / half throwing something out there and hoping for a miracle. We've picked up android dev for our warehouse and it just feels so overly complex. I've been working with web flows for quite a while now, and it's just not the easiest of transitions. It's not that you can't make it work, you just have to deal with so many considerations because android can kill your stuff when it gets backgrounded or you how you aren't supposed to make http requests from the ui thread.


Ohhh, code cleanliness LOL sorry misinterpreted that.
There is no one like you in the universe.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2014-05-20 21:17:27
May 20 2014 21:13 GMT
#9638
Does anyone know about agent oriented programming? What do you think of it? My lectures suggest that it can be done in an OOP language but that's kind of meh. The agent notion has some cool concepts but they seem more like theory rather than possible.
artynko
Profile Joined November 2010
Slovakia86 Posts
Last Edited: 2014-05-20 22:08:23
May 20 2014 22:07 GMT
#9639
Agents are far from theory, look at ericson / erlang and how that runs half of the worlds telecommunication switches, agents are an awesome tool when you need a highly distributed environment and using traditional locks & synchronization just doesn't cut it anymore.
I've worked on a distributed application in erlang and also in scala using akka and can't imagine how we could have done it without actors.
Release
Profile Blog Joined October 2010
United States4397 Posts
May 21 2014 06:02 GMT
#9640
In java, I cannot seem to create a generic array.

Task<T>[] t = new Task<T>[2];


however, a generic arraylist works;

ArrayList<Task<T>> t = new ArrayList<Task<T>>();


I'm not sure why as a Task<T> is just an object, and Object[] is usually a valid array declaration and Object[i] is usually a valid array of size i.
☺
Prev 1 480 481 482 483 484 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 3h 5m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
mouzHeroMarine 559
Hui .195
BRAT_OK 92
MindelVK 16
JuggernautJason8
CosmosSc2 5
StarCraft: Brood War
Calm 3286
ggaemo 152
Dewaltoss 60
NaDa 11
Dota 2
monkeys_forever366
League of Legends
Doublelift2846
Reynor63
Counter-Strike
fl0m1967
Super Smash Bros
PPMD47
Other Games
Gorgc3811
Grubby3351
Liquid`RaSZi1997
FrodaN1077
tarik_tv744
qojqva685
shahzam446
mouzStarbuck426
Liquid`Hasu271
syndereN111
Mew2King72
ArmadaUGS58
UpATreeSC54
ViBE23
Organizations
Other Games
gamesdonequick1925
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 18 non-featured ]
StarCraft 2
• musti20045 22
• Adnapsc2 17
• Reevou 1
• Kozan
• Migwel
• sooper7s
• AfreecaTV YouTube
• intothetv
• IndyKCrew
• LaughNgamezSOOP
StarCraft: Brood War
• blackmanpl 31
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• lizZardDota257
League of Legends
• imaqtpie1892
Other Games
• Scarra557
• Shiphtur340
Upcoming Events
Replay Cast
3h 5m
Escore
13h 5m
The PondCast
13h 5m
WardiTV Invitational
14h 5m
Zoun vs Ryung
Lambo vs ShoWTimE
Big Brain Bouts
19h 5m
Fjant vs Bly
Serral vs Shameless
OSC
1d 1h
Replay Cast
1d 3h
CranKy Ducklings
1d 13h
RSL Revival
1d 13h
SHIN vs Bunny
ByuN vs Shameless
WardiTV Invitational
1d 14h
Krystianer vs TriGGeR
Cure vs Rogue
[ Show More ]
uThermal 2v2 Circuit
1d 18h
BSL
1d 22h
Artosis vs TerrOr
spx vs StRyKeR
Replay Cast
2 days
Sparkling Tuna Cup
2 days
RSL Revival
2 days
Cure vs Zoun
Clem vs Lambo
WardiTV Invitational
2 days
BSL
2 days
Dewalt vs DragOn
Aether vs Jimin
GSL
3 days
Afreeca Starleague
3 days
Soma vs Leta
Wardi Open
3 days
Monday Night Weeklies
3 days
OSC
4 days
CranKy Ducklings
4 days
Afreeca Starleague
4 days
Light vs Flash
Replay Cast
5 days
Replay Cast
6 days
The PondCast
6 days
Liquipedia Results

Completed

Proleague 2026-05-05
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
Acropolis #4
SCTL 2026 Spring
RSL Revival: Season 5
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: W6
KK 2v2 League Season 1
BSL 22 Non-Korean Championship
YSL S3
Escore Tournament S2: W7
Escore Tournament S2: W8
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
Maestros of the Game 2
2026 GSL S2
Stake Ranked Episode 3
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...

Disclosure: This page contains affiliate marketing links that support TLnet.

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.