• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 15:37
CEST 21:37
KST 04:37
  • 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
[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 Star10Team Liquid Map Contest #22 - The Finalists22
Community News
Weekly Cups (April 27-May 4): Clem takes triple0RSL Revival: Season 5 - Qualifiers and Main Event11Code S Season 1 (2026) - RO12 Results12026 GSL Season 1 Qualifiers25Maestros of the Game 2 announced9
StarCraft 2
General
Weekly Cups (April 27-May 4): Clem takes triple Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool Code S Season 1 (2026) - RO12 Results Code S Season 1 - RO12 Group A: Rogue, Percival, Solar, Zoun Team Liquid Map Contest #22 - The Finalists
Tourneys
Sparkling Tuna Cup - Weekly Open Tournament RSL Revival: Season 5 - Qualifiers and Main Event StarCraft Evolution League (SC Evo Biweekly) 2026 GSL Season 2 Qualifiers $1,400 SEL Season 3 Ladder Invitational
Strategy
Custom Maps
[D]RTS in all its shapes and glory <3 [A] Nemrods 1/4 players [M] (2) Frigid Storage
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? AI Question ASL21 General Discussion Using AI to optimize marketing campaigns [ASL21] Ro8 Preview Pt2: Progenitors
Tourneys
[ASL21] Ro8 Day 4 [ASL21] Ro8 Day 3 [Megathread] Daily Proleagues [ASL21] Ro8 Day 2
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 OutLive 25 (RTS Game) Daigo vs Menard Best of 10 Nintendo Switch Thread
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 Russo-Ukrainian War Thread 3D technology/software discussion Canadian Politics Mega-thread
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 Formula 1 Discussion McBoner: A hockey love story
World Cup 2022
Tech Support
streaming software Strange computer issues (software) [G] How to Block Livestream Ads
TL Community
The Automated Ban List
Blogs
Movie Stars In Video Games: …
TrAiDoS
ramps on octagon
StaticNine
Broowar part 2
qwaykee
Funny Nicknames
LUCKY_NOOB
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1314 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 4h 23m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
mouzHeroMarine 604
IndyStarCraft 177
UpATreeSC 119
BRAT_OK 69
JuggernautJason53
StarCraft: Brood War
Britney 21166
Calm 3512
ggaemo 245
Dewaltoss 90
Movie 26
ajuk12(nOOB) 9
Dota 2
XaKoH 496
Counter-Strike
pashabiceps2431
Super Smash Bros
Mew2King62
Heroes of the Storm
Liquid`Hasu361
MindelVK10
Other Games
Grubby5350
B2W.Neo1704
Liquid`RaSZi1151
FrodaN1130
qojqva695
shahzam404
monkeys_forever242
C9.Mang0241
KnowMe133
Hui .82
elazer56
Trikslyr52
Organizations
Other Games
BasetradeTV397
Dota 2
PGL Dota 2 - Main Stream40
StarCraft 2
angryscii 19
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 18 non-featured ]
StarCraft 2
• Reevou 7
• Kozan
• Migwel
• sooper7s
• AfreecaTV YouTube
• intothetv
• IndyKCrew
• LaughNgamezSOOP
StarCraft: Brood War
• HerbMon 25
• 80smullet 20
• RayReign 9
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
League of Legends
• imaqtpie2081
Other Games
• Scarra510
• WagamamaTV464
• Shiphtur266
Upcoming Events
PiGosaur Cup
4h 23m
GSL
13h 53m
Classic vs Cure
Maru vs Rogue
GSL
1d 13h
SHIN vs Zoun
ByuN vs herO
OSC
1d 15h
OSC
1d 17h
Replay Cast
2 days
Escore
2 days
The PondCast
2 days
WardiTV Invitational
2 days
Zoun vs Ryung
Lambo vs ShoWTimE
OSC
3 days
[ Show More ]
Replay Cast
3 days
CranKy Ducklings
3 days
RSL Revival
3 days
SHIN vs Bunny
ByuN vs Shameless
WardiTV Invitational
3 days
Krystianer vs TriGGeR
Cure vs Rogue
uThermal 2v2 Circuit
3 days
BSL
3 days
Replay Cast
4 days
Sparkling Tuna Cup
4 days
RSL Revival
4 days
Cure vs Zoun
Clem vs Lambo
WardiTV Invitational
4 days
BSL
4 days
GSL
5 days
Afreeca Starleague
5 days
Monday Night Weeklies
5 days
Afreeca Starleague
6 days
CranKy Ducklings
6 days
Liquipedia Results

Completed

Proleague 2026-05-02
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

YSL S3
Escore Tournament S2: W6
KK 2v2 League Season 1
BSL 22 Non-Korean Championship
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...

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.