• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 18:16
CET 00:16
KST 08:16
  • 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
[Megathread] Daily Proleagues [BSL21] RO16 Group B - Sunday 21:00 CET [BSL21] RO16 Group C - Saturday 21:00 CET Small VOD Thread 2.0
Strategy
Game Theory for Starcraft How to stay on top of macro? Current Meta PvZ map balance
Other Games
General Games
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
Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine US Politics Mega-thread The Big Programming Thread Artificial Intelligence Thread
Fan Clubs
White-Ra Fan Club
Media & Entertainment
[Manga] One Piece Movie Discussion! Anime Discussion Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
Where to ask questions and add stream? The Automated Ban List
Blogs
James Bond movies ranking - pa…
Topin
Esports Earnings: Bigger Pri…
TrAiDoS
Thanks for the RSL
Hildegard
Saturation point
Uldridge
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1348 users

The Big Programming Thread - Page 470

Forum Index > General Forum
Post a Reply
Prev 1 468 469 470 471 472 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.
obesechicken13
Profile Blog Joined July 2008
United States10467 Posts
April 23 2014 00:34 GMT
#9381
On April 23 2014 07:41 Fawkes wrote:
Yeah Blisse, it was. I'm just so disappointed in myself, barely can even bring it up to people T.T It really sucks right now.

I had that same experience for a while. Good luck though.
I think in our modern age technology has evolved to become more addictive. The things that don't give us pleasure aren't used as much. Work was never meant to be fun, but doing it makes us happier in the long run.
Sufficiency
Profile Blog Joined October 2010
Canada23833 Posts
Last Edited: 2014-04-23 02:41:27
April 23 2014 02:37 GMT
#9382
I want to do the following with Java. I don't look for great efficiency, rather the most painless solution.

Here's basically what I want:



while (true) // because I like infinite loops
{
doTask1(); // do some stuff
doTask2(); // do some stuff
doTask3(); // do some stuff

// TODO: wait for user input for (say) 10 seconds.
// TODO: if user gives input, break the loop.
// TODO: if user gives no input in 10 seconds, continue the loop
}

https://twitter.com/SufficientStats
icystorage
Profile Blog Joined November 2008
Jollibee19350 Posts
April 23 2014 02:43 GMT
#9383
minor rant:

holy shit html emails are pain in the ass.
gmail and outlook have different ways of handling this and i just want to blow my brains off
LiquidDota StaffAre you ready for a Miracle-? We are! The International 2017 Champions!
phar
Profile Joined August 2011
United States1080 Posts
Last Edited: 2014-04-23 06:24:58
April 23 2014 06:22 GMT
#9384
On April 23 2014 11:37 Sufficiency wrote:
I want to do the following with Java. I don't look for great efficiency, rather the most painless solution.

Here's basically what I want:



while (true) // because I like infinite loops
{
doTask1(); // do some stuff
doTask2(); // do some stuff
doTask3(); // do some stuff

// TODO: wait for user input for (say) 10 seconds.
// TODO: if user gives input, break the loop.
// TODO: if user gives no input in 10 seconds, continue the loop
}



On April 23 2014 11:37 Sufficiency wrote:
I want to do the following with Java. I don't look for great efficiency, rather the most painless solution.

Here's basically what I want:



while (true) // because I like infinite loops
{
doTask1(); // do some stuff
doTask2(); // do some stuff
doTask3(); // do some stuff

// TODO: wait for user input for (say) 10 seconds.
// TODO: if user gives input, break the loop.
// TODO: if user gives no input in 10 seconds, continue the loop
}


I want to say you're looking at something like this (replace the buffered reader from a process file with stdin):

http://stackoverflow.com/questions/13808792/program-hangs-when-trying-to-read-from-childs-process-stdout

However I didn't look into it that much, and I generally loathe doing any kind of stdin in java because it is nightmare inducing.

public Optional<Character> getChar() throws EVERYTHING {
final BufferedReader input = new BufferedReader() // forgot how to get this to work with stdin

ExecutorService executor = Executors.newFixedThreadPool(2);
Callable<Character> readTask = new Callable<Character>() {
@Override
public Character call() throws Exception {
// This line is probably horribly unsafe, I dunno.
return Character.valueOf((char)input.read());
}
};
Future<Character> future = executor.submit(readTask);
char readVal = null;
try {
readVal = future.get(10L, TimeUnit.SECONDS);
} finally {
executor.shutdownNow();
}

return Optional.fromNullable(readVal);
}


That gives you a relatively expensive way to read a character from stdin, and it sort-of-kind-of doesn't block (at the very least, it doesn't burn CPU).

However this shit might not work at all if I'm forgetting something unique about java system.in behavior. Perhaps the static nature of that causes serious problems with the input.

Also you'd need to extend that to read whatever you want (if you want more than a single character, for example, you'd need to have the 10L you pass in be relative to whatever time you have left. You can use a Timer or Stopwatch for that).

Also you probably want to clean that code up to use ListenableFuture instead, I didn't look at the code to closely: https://code.google.com/p/guava-libraries/wiki/ListenableFutureExplained
And finally it's late, so everything I just wrote might be total bullshit lol.
Who after all is today speaking about the destruction of the Armenians?
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
Last Edited: 2014-04-23 07:34:36
April 23 2014 07:24 GMT
#9385
--- Nuked ---
3FFA
Profile Blog Joined February 2010
United States3931 Posts
April 23 2014 12:12 GMT
#9386
When overriding the equals method in Java,
public boolean equals(Object otherObject) 
/*to access I do something like obj1.equals(obj2)
how would I then access obj1(@param Object) in the equals method?*/
//for example
String first = (String)otherObject; //works
String second = (String)Object; //fails
"As long as it comes from a pure place and from a honest place, you know, you can write whatever you want."
Vorenius
Profile Blog Joined December 2010
Denmark1979 Posts
April 23 2014 12:26 GMT
#9387
On April 23 2014 21:12 3FFA wrote:
When overriding the equals method in Java,
public boolean equals(Object otherObject) 
/*to access I do something like obj1.equals(obj2)
how would I then access obj1(@param Object) in the equals method?*/
//for example
String first = (String)otherObject; //works
String second = (String)Object; //fails

I think 'this' should do it?
3FFA
Profile Blog Joined February 2010
United States3931 Posts
April 23 2014 12:30 GMT
#9388
On April 23 2014 21:26 Vorenius wrote:
Show nested quote +
On April 23 2014 21:12 3FFA wrote:
When overriding the equals method in Java,
public boolean equals(Object otherObject) 
/*to access I do something like obj1.equals(obj2)
how would I then access obj1(@param Object) in the equals method?*/
//for example
String first = (String)otherObject; //works
String second = (String)Object; //fails

I think 'this' should do it?

No that doesn't work.
"As long as it comes from a pure place and from a honest place, you know, you can write whatever you want."
Blitzkrieg0
Profile Blog Joined August 2010
United States13132 Posts
Last Edited: 2014-04-23 19:16:45
April 23 2014 14:55 GMT
#9389
On April 23 2014 21:30 3FFA wrote:
Show nested quote +
On April 23 2014 21:26 Vorenius wrote:
On April 23 2014 21:12 3FFA wrote:
When overriding the equals method in Java,
public boolean equals(Object otherObject) 
/*to access I do something like obj1.equals(obj2)
how would I then access obj1(@param Object) in the equals method?*/
//for example
String first = (String)otherObject; //works
String second = (String)Object; //fails

I think 'this' should do it?

No that doesn't work.


String second = this;
Note that declaring second is redundant and you can just use this wherever you were going to use second.

this should already be a String so you don't need to cast it as a String.
I'll always be your shadow and veil your eyes from states of ain soph aur.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
April 23 2014 22:57 GMT
#9390
If you have Eclipse, just generate equals() from:
 Source --> Generate equals() and hashCode() 
3FFA
Profile Blog Joined February 2010
United States3931 Posts
April 24 2014 00:23 GMT
#9391
On April 23 2014 23:55 Blitzkrieg0 wrote:
Show nested quote +
On April 23 2014 21:30 3FFA wrote:
On April 23 2014 21:26 Vorenius wrote:
On April 23 2014 21:12 3FFA wrote:
When overriding the equals method in Java,
public boolean equals(Object otherObject) 
/*to access I do something like obj1.equals(obj2)
how would I then access obj1(@param Object) in the equals method?*/
//for example
String first = (String)otherObject; //works
String second = (String)Object; //fails

I think 'this' should do it?

No that doesn't work.


String second = this;
Note that declaring second is redundant and you can just use this wherever you were going to use second.

this should already be a String so you don't need to cast it as a String.

Eclipse says it is a syntactical bug. I'll post exactly what it says tomorrow, I don't have it with me atm.
"As long as it comes from a pure place and from a honest place, you know, you can write whatever you want."
phar
Profile Joined August 2011
United States1080 Posts
Last Edited: 2014-04-24 00:36:20
April 24 2014 00:31 GMT
#9392
To be fair, reading non-blocking-ish keyboard I/O in a lot of languages doesn't look super pretty (basically any time you need to fall back to callbacks it starts to look really ugly). And there's almost certainly a cleaner way to do that, given I half copy/pasted that from something and cooked it up while half asleep.

But yea, wish it was more like Go.

On April 23 2014 21:12 3FFA wrote:
When overriding the equals method in Java,
public boolean equals(Object otherObject) 
/*to access I do something like obj1.equals(obj2)
how would I then access obj1(@param Object) in the equals method?*/
//for example
String first = (String)otherObject; //works
String second = (String)Object; //fails



@Override
public boolean equals(Object other) {
if (this == other) {
return true;
}
if (!(other instanceof MyClass)) {
return false;
}
MyClass that = (MyClass) other;
return Objects.equals(this.foo, that.foo)
&& Objects.equals(this.bar, that.bar)
.... ;
}


Also don't forget to override hashCode at the same time, otherwise hilarity ensues.


@Override
public int hashCode() {
return Objects.hashCode(foo, bar, ...);
}
Who after all is today speaking about the destruction of the Armenians?
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
April 24 2014 04:54 GMT
#9393
On April 23 2014 07:41 Fawkes wrote:
Yeah Blisse, it was. I'm just so disappointed in myself, barely can even bring it up to people T.T It really sucks right now.

Graphics and modelling just ain't up my aisle. I took a course on graphics in Uni, barely passed it. I just can't visualize the transforms and fancy math that goes on behind it. I found many people writing little libraries here and there for Android related things, but I haven't really looked into Android development...maybe I could a little bit. The only real thing I know about it is that people usually choose Java for it.


Cool! I'm there now doing Software Engineering :3 Just finished 3A (fu feedback control systems...)

Did you mean the crazy Graphics Big 3 course? Because not doing well in that class isn't something to be ashamed of, it's one of the hardest courses in Waterloo (or so I've been told).

A lot of my friends do Android for a term and then tell me they're sick of it, so they get immediately out of mobile development. What does interest you?
There is no one like you in the universe.
SilverSkyLark
Profile Blog Joined April 2008
Philippines8437 Posts
Last Edited: 2014-04-25 09:24:40
April 25 2014 08:49 GMT
#9394
Hi guys Android/Java question here. I managed to set onClickListeners for my AutocompleteTextViews (ACTV) by setting it in my Java code instead of my XML one. However, my issue now is that whenever I click on any of my ACTVs, I have to click it again before the onClickFunction fires successfully.

In my onCreate, I initialize my ACTVs as such:


brandACTV = (AutoCompleteTextView) findViewById(R.id.actvBrand);
itemACTV = (AutoCompleteTextView) findViewById(R.id.actvItemName);
partACTV = (AutoCompleteTextView) findViewById(R.id.actvPart);
barcodeACTV = (AutoCompleteTextView) findViewById(R.id.actvBarcode);

brandACTV.setOnClickListener(actvClicked);
itemACTV.setOnClickListener(actvClicked);
partACTV.setOnClickListener(actvClicked);
barcodeACTV.setOnClickListener(actvClicked);


and I create my onClickListener function as such:


OnClickListener actvClicked = new OnClickListener(){
@Override
public void onClick(View view){
switch (view.getId()) {
case R.id.actvBrand:
Log.d("Hi", "Brand pressed");
break;

case R.id.actvItemName:
Log.d("Hi", "Item name pressed");
break;

case R.id.actvPart:
Log.d("Hi", "Part pressed");
break;

case R.id.actvBarcode:
Log.d("Hi", "Barcode pressed");
break;
}
}
};


Any ideas anyone?
"If i lost an arm, I would play w3." -IntoTheWow || "Member of Hyuk Hyuk Hyuk cafe. He's the next Jaedong, baby!"
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
April 25 2014 18:35 GMT
#9395
No clue, except exactly what you trying to do with the OnClickListener? Are you sure you're not supposed to be using the OnItemClickListener?
There is no one like you in the universe.
SilverSkyLark
Profile Blog Joined April 2008
Philippines8437 Posts
Last Edited: 2014-04-26 00:45:57
April 26 2014 00:35 GMT
#9396
On April 26 2014 03:35 Blisse wrote:
No clue, except exactly what you trying to do with the OnClickListener? Are you sure you're not supposed to be using the OnItemClickListener?


What I want to do is that I'll check if the other ones have input. If so, I have to change the ArrayList of the selected one. For example, if Brand has input 3M then the user clicks on Item Name, I have to requery my database to look for all items with brand 3M and use those results instead of the one where I just give all the Item Names.

Wait, now that you mention it, I might be able to use the onItemClickListener.
"If i lost an arm, I would play w3." -IntoTheWow || "Member of Hyuk Hyuk Hyuk cafe. He's the next Jaedong, baby!"
teamamerica
Profile Blog Joined July 2010
United States958 Posts
April 26 2014 01:56 GMT
#9397
On April 26 2014 09:35 SilverSkyLark wrote:
Show nested quote +
On April 26 2014 03:35 Blisse wrote:
No clue, except exactly what you trying to do with the OnClickListener? Are you sure you're not supposed to be using the OnItemClickListener?


What I want to do is that I'll check if the other ones have input. If so, I have to change the ArrayList of the selected one. For example, if Brand has input 3M then the user clicks on Item Name, I have to requery my database to look for all items with brand 3M and use those results instead of the one where I just give all the Item Names.

Wait, now that you mention it, I might be able to use the onItemClickListener.



Hi - it's been a long time since I've even touched Android, but I thought I'd glance over the API docs to see. It seems that the Adapter you pass into "setAdapter" on a AutoCompleteTextView is supposed to implement the Filterable interface.

The AutoCompleteTextView actually will automatically ask the Adapter to filter it's result based on what you type in. You can set the threshold of actions for the filtering, but you shouldn't actually need to be listening for the ClickEvents yourself.

From my understanding, what you have is multiple of these AutoCompleteTextViews and you want the filtered result set of one to depend on the value you have in another. I think that the way to implement these is with customer adapters that implement Filterable, and count on AutoCompleteTextView to call these adapters to get the proper result set.

I made a small demo that shows how this works, but since you talk about talking to a database, you'll probably want to use CursorAdapters and the whole mess of setting up a ContentProvider. Damn all I remember that being was a lot of code, but felt super satisfying when it all worked. Also let's you hook up stuff like a SearchWidget and all.

This demo is a combination of the AutoCompleteTextView code on the Android site and some code I saw from SO.

Demo Activity
Demo Layout

You can see that I never actually listen for a click event, but if you have selected a Country in the first text view, it will automatically provide autocomplete results in the second text view.

Also note that this example won't perform any further filtering on the second AutoCompleteTextView beyond limiting the suggestions to cities from that country. This is because as you see in the "performFiltering" method, I only check the value of the mCountriesAutoCompleteTextView, and never actually the value of the constraint. If you wanted to, you'd probably filter the result array but the values that startsWith constraint.

As an aside: if you're testing on Android and don't have a device, use genymotion! It's so useful - I wish I knew about it when I actually did Android stuff for one of my classes. It gives you an Android virtual device for VirtualBox and a plugin for Eclipse/Intellij to hook up adb and all.

Hope this helps a bit!

RIP GOMTV. RIP PROLEAGUE.
SilverSkyLark
Profile Blog Joined April 2008
Philippines8437 Posts
April 26 2014 06:58 GMT
#9398
Thanks for the help guys. Actually I already felt that something was off when it takes 2 clicks for onClickListener to proc. i used onFocusChangeListener instead an it now works.
"If i lost an arm, I would play w3." -IntoTheWow || "Member of Hyuk Hyuk Hyuk cafe. He's the next Jaedong, baby!"
obesechicken13
Profile Blog Joined July 2008
United States10467 Posts
April 26 2014 08:12 GMT
#9399
On April 26 2014 15:58 SilverSkyLark wrote:
Thanks for the help guys. Actually I already felt that something was off when it takes 2 clicks for onClickListener to proc. i used onFocusChangeListener instead an it now works.

That's unfortunate. I guess it's a little detail that you find when debugging.
I think in our modern age technology has evolved to become more addictive. The things that don't give us pleasure aren't used as much. Work was never meant to be fun, but doing it makes us happier in the long run.
norlock
Profile Joined March 2010
Netherlands918 Posts
April 26 2014 08:22 GMT
#9400
On April 25 2014 17:49 SilverSkyLark wrote:
Hi guys Android/Java question here. I managed to set onClickListeners for my AutocompleteTextViews (ACTV) by setting it in my Java code instead of my XML one. However, my issue now is that whenever I click on any of my ACTVs, I have to click it again before the onClickFunction fires successfully.

In my onCreate, I initialize my ACTVs as such:


brandACTV = (AutoCompleteTextView) findViewById(R.id.actvBrand);
itemACTV = (AutoCompleteTextView) findViewById(R.id.actvItemName);
partACTV = (AutoCompleteTextView) findViewById(R.id.actvPart);
barcodeACTV = (AutoCompleteTextView) findViewById(R.id.actvBarcode);

brandACTV.setOnClickListener(actvClicked);
itemACTV.setOnClickListener(actvClicked);
partACTV.setOnClickListener(actvClicked);
barcodeACTV.setOnClickListener(actvClicked);


and I create my onClickListener function as such:


OnClickListener actvClicked = new OnClickListener(){
@Override
public void onClick(View view){
switch (view.getId()) {
case R.id.actvBrand:
Log.d("Hi", "Brand pressed");
break;

case R.id.actvItemName:
Log.d("Hi", "Item name pressed");
break;

case R.id.actvPart:
Log.d("Hi", "Part pressed");
break;

case R.id.actvBarcode:
Log.d("Hi", "Barcode pressed");
break;
}
}
};


Any ideas anyone?


your code is wrong. You can't use it on a anonymous class, you need to create a private class. example from internet.

package com.example.android.accelerometerplay;

import android.app.Activity;
import android.view.View;
import android.view.View.OnClickListener;
import android.os.Bundle;
import android.widget.Button;
import android.widget.Toast;
import android.content.Context;

public class StudentFormsActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

// To specify the actions of the Buttons
Button accept = (Button) findViewById(R.id.myButton1);
Button reject = (Button) findViewById(R.id.myButton2);

accept.setOnClickListener(clickFunction);
reject.setOnClickListener(clickFunction);
}

private OnClickListener clickFunction = new OnClickClass();

private class OnClickClass implements OnClickListener{
public void onClick(View v){
Context context = getApplicationContext();
CharSequence text;

switch(v.getId()){
case R.id.myButton1: text="accept was pushed";
break;
case R.id.myButton2: text="reject was pushed";
break;
default: text="We didn't know what was pressed :(";
}

int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context,text,duration);
toast.show();

}
}
}

Are you human?
Prev 1 468 469 470 471 472 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 44m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
PiGStarcraft223
elazer 113
CosmosSc2 28
SpeCial 8
StarCraft: Brood War
Artosis 220
Larva 143
Dota 2
syndereN916
League of Legends
C9.Mang0143
Counter-Strike
Foxcn275
Other Games
Grubby6120
tarik_tv2988
FrodaN775
Liquid`Hasu218
RotterdaM154
Maynarde107
ArmadaUGS62
ZombieGrub26
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 20 non-featured ]
StarCraft 2
• HeavenSC 57
• musti20045 44
• davetesta14
• Kozan
• Migwel
• sooper7s
• AfreecaTV YouTube
• intothetv
• IndyKCrew
• LaughNgamezSOOP
StarCraft: Brood War
• RayReign 54
• blackmanpl 9
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• Ler122
League of Legends
• Doublelift3734
• TFBlade1101
Other Games
• imaqtpie1353
• Shiphtur282
Upcoming Events
Replay Cast
44m
The PondCast
10h 44m
OSC
16h 44m
Demi vs Mixu
Nicoract vs TBD
Babymarine vs MindelVK
ForJumy vs TBD
Shameless vs Percival
Replay Cast
1d
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
[ Show More ]
Sparkling Tuna Cup
3 days
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
5 days
WardiTV 2025
5 days
StarCraft2.fi
5 days
PiGosaur Monday
6 days
StarCraft2.fi
6 days
Liquipedia Results

Completed

Proleague 2025-11-30
RSL Revival: Season 3
Light HT

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
YSL S2
BSL Season 21
CSCL: Masked Kings S3
Slon Tour Season 2
Acropolis #4 - TS3
META Madness #9
SL Budapest Major 2025
ESL Impact League Season 8
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2

Upcoming

BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
Bellum Gens Elite Stara Zagora 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
Kuram Kup
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual
eXTREMESLAND 2025
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.