• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 15:01
CEST 21:01
KST 04:01
  • 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
Serral wins HomeStory Cup 2914Serral wins Maestros of the Game 243ByuL, and the Limitations of Standard Play3Team Liquid Map Contest #22: Results and Winners7Code S Season 2 (2026): RO4 and Finals Preview12
Community News
Clem: "I don't have that much hope in Blizzard"2ZeroSpace Early Access is Now Live!20Weekly Cups (July 13-19): Terran & Protoss rise; Zerg falters2Balance hotfix patch 5.0.16b (July 16)89Reynor: GSL Loss Wasn't About Preparation Format17
StarCraft 2
General
Balance hotfix patch 5.0.16b (July 16) Reynor: GSL Loss Wasn't About Preparation Format How would you feel about frequent/monthly balance patches for SC2? Clem: "I don't have that much hope in Blizzard" Weekly Cups (July 13-19): Terran & Protoss rise; Zerg falters
Tourneys
IntoTheTV X SOOP SC2 League : Weekly & Monthly INu's Battles#18 - Cure, herO, Rogue & ByuN RSL Revival: Season 6 - Qualifiers and Main Event Master Swan Open (Global Bronze-Master 2) WardiTV Summer Cup 2026
Strategy
[G] Having the right mentality to improve
Custom Maps
[M] (2) Industrial Park New Map Maker - Looking for Advice - Love or Hate
External Content
Mutation # 535 Assembly of Vengeance The PondCast: SC2 News & Results Mutation # 534 Burning Evacuation Mutation # 533 Die Together
Brood War
General
BW General Discussion How Famous was FlaSh before his Debut? Animated Gateway BGH Auto Balance -> http://bghmmr.eu/ HORROR STARCRAFT MOVIE
Tourneys
Escore Tournament - Season 3 [Megathread] Daily Proleagues [IPSL] Spring 2026 Grand Finals - This Weekend! Small VOD Thread 2.0
Strategy
Simple Questions, Simple Answers PvT advise for noobs Fighting Spirit mining rates Creating a full chart of Zerg builds
Other Games
General Games
ZeroSpace Early Access is Now Live! Path of Exile Nintendo Switch Thread General RTS Discussion Thread Diablo IV
Dota 2
Looking for a Dota Mentor Official 'what is Dota anymore' discussion
League of Legends
TSM pausing esports and CLG Dead
Heroes of the Storm
Heroes of the Storm 2.0
Hearthstone
Deck construction bug
TL Mafia
TL Mafia Power Rank NeO.D_StephenKing vs This Guy From 1 Million Dance TL Mafia Community Thread Vanilla Mini Mafia
Community
General
US Politics Mega-thread Artificial Intelligence Thread Russo-Ukrainian War Thread How to buy a book - shipping from Korea to Europe The Games Industry And ATVI
Fan Clubs
The IdrA Fan Club The HerO Fan Club!
Media & Entertainment
Anime Discussion Thread Series you have seen recently... Movie Discussion! [Req][Books] Good Fantasy/SciFi books
Sports
2024 - 2026 Football Thread TeamLiquid Health and Fitness Initiative For 2023 Formula 1 Discussion MLB/Baseball 2023 McBoner: A hockey love story
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread Simple Questions Simple Answers FPS when play League Of Legend on laptop
TL Community
Northern Ireland Global Starcraft The Automated Ban List
Blogs
How Games can Help with Majo…
TrAiDoS
Hello guys!
LIN1s
ASL S22 English Commentary…
namkraft
Poker (part 2)
Nebuchad
An Exploration of th…
waywardstrategy
Customize Sidebar...

Website Feedback

Closed Threads



Active: 3836 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 4h 59m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
ByuN 635
mouzHeroMarine 474
BRAT_OK 102
RushiSC 34
FoxeR 33
StarCraft: Brood War
Calm 3490
ggaemo 148
Hyun 38
Noble 15
HiyA 13
Yoon 13
ajuk12(nOOB) 12
Counter-Strike
fl0m3932
byalli676
Heroes of the Storm
Liquid`Hasu236
Other Games
Grubby3610
Beastyqt578
Livibee343
B2W.Neo203
ArmadaUGS154
C9.Mang0151
UpATreeSC135
TKL 110
JuggernautJason107
Trikslyr54
KnowMe45
MindelVK2
Organizations
StarCraft 2
TaKeTV 424
Other Games
BasetradeTV210
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 17 non-featured ]
StarCraft 2
• LUISG 2
• IndyKCrew
• Migwel
• AfreecaTV YouTube
• sooper7s
• intothetv
• Kozan
• LaughNgamezSOOP
StarCraft: Brood War
• RayReign 34
• blackmanpl 16
• iopq 1
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
League of Legends
• TFBlade963
Other Games
• imaqtpie628
• Shiphtur494
Upcoming Events
Replay Cast
4h 59m
Escore
14h 59m
CrankTV Team League
15h 59m
WardiTV Summer Champion…
16h 59m
Big Brain Bouts
20h 59m
Soulspirit vs goblin
TriGGeR vs Bunny
OSC
1d 2h
Korean StarCraft League
1d 7h
Afreeca Starleague
1d 8h
RSL Revival
1d 13h
Serral vs SHIN
herO vs Solar
Online Event
1d 19h
[ Show More ]
Replay Cast
2 days
RSL Revival
2 days
Clem vs ByuN
Rogue vs Lambo
OSC
2 days
WardiTV Weekly
3 days
Sparkling Tuna Cup
4 days
INu's Battles
4 days
Cure vs herO
ByuN vs Rogue
PiGosaur Cup
5 days
The PondCast
5 days
Kung Fu Cup
5 days
Patches Events
5 days
Replay Cast
6 days
CrankTV Team League
6 days
Liquipedia Results

Completed

Proleague 2026-07-22
HSC XXIX
Eternal Conflict S2 E3

Ongoing

CSL 2026 Summer (S21)
KCM Race Survival 2026 Season 3
RSL Revival: Season 6
CranK Gathers Season 4: BW vs SC2 Team League
SCTL 2026 Spring
BLAST Bounty Summer Qual
Stake Ranked Episode 3
XSE Pro League 2026
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026

Upcoming

Escore Tournament S3: W4
ASL S22 SEASON OPEN Day 2
Escore Tournament S3: W5
ASL Season 22: Qualifier #1
ASL Season 22: Qualifier #2
CSLAN 4
ASL Season 22
HSC XXX
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
Light Tournament 2026
Eternal Conflict S2 Finale
ESL Pro League Season 24
Stake Ranked Episode 4
Logitech G Connect 2026
SL StarSeries Fall 2026
FISSURE Playground #5
BLAST Open Fall 2026
Esports World Cup 2026
BLAST Bounty Summer 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.