• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 20:46
CET 02:46
KST 10:46
  • 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
Chinese SC2 server to reopen; live all-star event in Hangzhou 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
Tourneys
RSL Offline FInals Sea Duckling Open (Global, Bronze-Diamond) $5,000+ WardiTV 2025 Championship Constellation Cup - Main Event - Stellar Fest RSL Revival: Season 3
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
BW General Discussion Which season is the best in ASL? Data analysis on 70 million replays BGH Auto Balance -> http://bghmmr.eu/ [ASL20] Ask the mapmakers — Drop your questions
Tourneys
[BSL21] RO16 Group D - Sunday 21:00 CET [BSL21] RO16 Group A - Saturday 21:00 CET [Megathread] Daily Proleagues [BSL21] RO16 Group B - Sunday 21:00 CET
Strategy
Current Meta Game Theory for Starcraft How to stay on top of macro? PvZ map balance
Other Games
General Games
ZeroSpace Megathread Stormgate/Frost Giant Megathread Nintendo Switch Thread The Perfect Game Path of Exile
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
Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread 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: 1604 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
Replay Cast
00:00
WardiTV Mondays #62
CranKy Ducklings126
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
PiGStarcraft500
elazer 141
Nathanias 68
CosmosSc2 44
StarCraft: Brood War
Artosis 678
Larva 182
Bale 31
Noble 24
Dota 2
monkeys_forever904
NeuroSwarm62
League of Legends
C9.Mang0335
JimRising 61
Counter-Strike
Foxcn271
Other Games
summit1g12968
tarik_tv5100
FrodaN1404
Day[9].tv772
shahzam509
Maynarde112
Mew2King91
ViBE49
ToD26
Organizations
Other Games
gamesdonequick805
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 16 non-featured ]
StarCraft 2
• Hupsaiya 66
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• RayReign 44
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• Ler51
League of Legends
• Doublelift4759
Other Games
• imaqtpie1522
• Day9tv772
Upcoming Events
The PondCast
8h 14m
OSC
14h 14m
Demi vs Mixu
Nicoract vs TBD
Babymarine vs MindelVK
ForJumy vs TBD
Shameless vs Percival
Replay Cast
22h 14m
Korean StarCraft League
2 days
CranKy Ducklings
2 days
WardiTV 2025
2 days
SC Evo League
2 days
BSL 21
2 days
Sziky vs OyAji
Gypsy vs eOnzErG
OSC
2 days
Solar vs Creator
ByuN vs Gerald
Percival vs Babymarine
Moja vs Krystianer
EnDerr vs ForJumy
sebesdes vs Nicoract
Sparkling Tuna Cup
3 days
[ Show More ]
WardiTV 2025
3 days
OSC
3 days
BSL 21
3 days
Bonyth vs StRyKeR
Tarson vs Dandy
Replay Cast
4 days
Wardi Open
4 days
StarCraft2.fi
4 days
Monday Night Weeklies
4 days
Replay Cast
4 days
WardiTV 2025
5 days
StarCraft2.fi
5 days
PiGosaur Monday
5 days
StarCraft2.fi
6 days
Tenacious Turtle Tussle
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...

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 © 2025 TLnet. All Rights Reserved.