• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 10:24
CEST 16:24
KST 23:24
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
Code S Season 1 - RO8 Preview1[ASL21] Ro8 Preview Pt2: Progenitors8Code S Season 1 - RO12 Group A: Rogue, Percival, Solar, Zoun13[ASL21] Ro8 Preview Pt1: Inheritors16[ASL21] Ro16 Preview Pt2: All Star10
Community News
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
Code S Season 1 - RO8 Preview Behind the Blue - Team Liquid History Book Weekly Cups (April 27-May 4): Clem takes triple Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool Code S Season 1 (2026) - RO12 Results
Tourneys
GSL Code S Season 1 (2026) 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
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
BGH Auto Balance -> http://bghmmr.eu/ (Spoiler) Asl ro8 D winner interview BW General Discussion Do we have a pimpest plays list? AI Question
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
Dawn of War IV Stormgate/Frost Giant Megathread 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
European Politico-economics QA Mega-thread US Politics 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: 1351 users

The Big Programming Thread - Page 474

Forum Index > General Forum
Post a Reply
Prev 1 472 473 474 475 476 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.
Cyx.
Profile Joined November 2010
Canada806 Posts
Last Edited: 2014-05-03 02:29:25
May 03 2014 02:24 GMT
#9461
On May 03 2014 11:13 phar wrote:
First off, don't parse what is essentially xml with a regex:

http://stackoverflow.com/questions/6751105

You could probably use something like JAXP.




If you can guarantee that there are no nested tags you could probably do it with regex.


haha I like this post better

e: glorious excerpt:
dear lord help us how can anyone survive this scourge using regex to parse HTML has doomed humanity to an eternity of dread torture and security holes using regex as a tool to process HTML establishes a breach between this world and the dread realm of c͒ͪo͛ͫrrupt entities (like SGML entities, but more corrupt) a mere glimpse of the world of reg​ex parsers for HTML will ins​tantly transport a programmer's consciousness into a world of ceaseless screaming, he comes, the pestilent slithy regex-infection wil​l devour your HT​ML parser, application and existence for all time like Visual Basic
phar
Profile Joined August 2011
United States1080 Posts
May 03 2014 02:28 GMT
#9462
Ahhh yea that was the one I was looking for, but couldn't find it right away so I gave up and used another
Who after all is today speaking about the destruction of the Armenians?
Cyx.
Profile Joined November 2010
Canada806 Posts
May 03 2014 02:33 GMT
#9463
I don't even use regex or HTML ever and I loved that post so much I remembered it forever lol
berated-
Profile Blog Joined February 2007
United States1134 Posts
Last Edited: 2014-05-03 13:23:56
May 03 2014 11:26 GMT
#9464
On May 03 2014 09:09 darkness wrote:
So I had to format text recently, and give it back with no tags (and also without text/stuff inside tags), but I couldn't come up with something more than just erasing tags.

Basically it's like:


Text. <script> whatever text </script> More text.


The idea is to just return

Text. More text.


But how is this done? Regex/Pattern matching easily comes to mind, but I don't really understand it that well. I use Java, so an example for Java would be better.

String#replaceAll("\\<[^>]*>","")
only clears tags.


you need to write a HTML (assumed from example) parser if you want to do it right. as others have eluded if its viewed as good enough to use regex because some assumptions are allowed and the problems are know and accepted...do that. if not you could try to use apache tika.
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
May 03 2014 12:15 GMT
#9465
--- Nuked ---
MichaelEU
Profile Joined February 2011
Netherlands816 Posts
May 03 2014 14:47 GMT
#9466
On the topic of Automata and Languages I've only read Introduction to the Theory of Computation by Michael Sipser. I quite liked it. It's the only one I've read so I can't compare it to Hopcroft et al.
世界を革命する力を!― znf: "Michael-oniichan ( *^▽^*)ノ✩キラ✩"
phar
Profile Joined August 2011
United States1080 Posts
Last Edited: 2014-05-03 16:41:24
May 03 2014 16:40 GMT
#9467
Sipser is probably better than Hopcroft for learning, much more approachable. There's a reason it's used in much more Unis (MIT, CMU, Stanford, Hopkins, as well as big state schools like Berkely, UW, UW, UM, UM, UT, etc).
Who after all is today speaking about the destruction of the Armenians?
Vorenius
Profile Blog Joined December 2010
Denmark1979 Posts
May 04 2014 10:45 GMT
#9468
Hey, I'm having some problems with some Java code and I have no idea what is going on. While trying to set up an TCP/IP connection and opening objectstream, my program blocks. I've tried opening an outstream instead and that worked just fine, but for some reason getInputStream() doesn't seem to return at all. :s

I can't see what could possibly go wrong, the socket seems to be connected, it's working with outstream.
Let me know if you need any additional context

This is one of the Nodes trying to setup a connection

private ServerSocket listener;
private Socket socket = null;
private ObjectInputStream instream;

...

listener = new ServerSocket(PORT);
socket = listener.accept();
instream = new ObjectInputStream(socket.getInputStream());


This is an EventBus where I'm connecting to them. I have a List of Nodes and each of them are being contructed with a new socket:

private List<Node> nodes = new ArrayList<Node>();

for (int i = 0; i < ports.length; i++) {
nodes.add(new Node(topics[i], new Socket(IPs[i], ports[i])));
}


Any help would be greatly appriciated. I've been stuck on this for a while :s
berated-
Profile Blog Joined February 2007
United States1134 Posts
Last Edited: 2014-05-04 11:49:10
May 04 2014 11:46 GMT
#9469
On May 04 2014 19:45 Vorenius wrote:
Hey, I'm having some problems with some Java code and I have no idea what is going on. While trying to set up an TCP/IP connection and opening objectstream, my program blocks. I've tried opening an outstream instead and that worked just fine, but for some reason getInputStream() doesn't seem to return at all. :s

I can't see what could possibly go wrong, the socket seems to be connected, it's working with outstream.
Let me know if you need any additional context

This is one of the Nodes trying to setup a connection

private ServerSocket listener;
private Socket socket = null;
private ObjectInputStream instream;

...

listener = new ServerSocket(PORT);
socket = listener.accept();
instream = new ObjectInputStream(socket.getInputStream());


This is an EventBus where I'm connecting to them. I have a List of Nodes and each of them are being contructed with a new socket:

private List<Node> nodes = new ArrayList<Node>();

for (int i = 0; i < ports.length; i++) {
nodes.add(new Node(topics[i], new Socket(IPs[i], ports[i])));
}


Any help would be greatly appriciated. I've been stuck on this for a while :s


Have you added debug to make sure you're actually getting past the accept line?

SocketServer.accept

Is the program single threaded? You haven't really given us a lot to work with to figure out what is going on...
Vorenius
Profile Blog Joined December 2010
Denmark1979 Posts
Last Edited: 2014-05-04 13:19:31
May 04 2014 12:13 GMT
#9470
On May 04 2014 20:46 berated- wrote:
Show nested quote +
On May 04 2014 19:45 Vorenius wrote:
Hey, I'm having some problems with some Java code and I have no idea what is going on. While trying to set up an TCP/IP connection and opening objectstream, my program blocks. I've tried opening an outstream instead and that worked just fine, but for some reason getInputStream() doesn't seem to return at all. :s

I can't see what could possibly go wrong, the socket seems to be connected, it's working with outstream.
Let me know if you need any additional context

This is one of the Nodes trying to setup a connection

private ServerSocket listener;
private Socket socket = null;
private ObjectInputStream instream;

...

listener = new ServerSocket(PORT);
socket = listener.accept();
instream = new ObjectInputStream(socket.getInputStream());


This is an EventBus where I'm connecting to them. I have a List of Nodes and each of them are being contructed with a new socket:

private List<Node> nodes = new ArrayList<Node>();

for (int i = 0; i < ports.length; i++) {
nodes.add(new Node(topics[i], new Socket(IPs[i], ports[i])));
}


Any help would be greatly appriciated. I've been stuck on this for a while :s


Have you added debug to make sure you're actually getting past the accept line?

SocketServer.accept

Is the program single threaded? You haven't really given us a lot to work with to figure out what is going on...

The socket is returned properly, I tried printing the socket.toString() without problem. It's this line that blocks:
instream = new ObjectInputStream(socket.getInputStream());


The server does extend Thread, as I want to run it from another thread, but I'm testing it with just a single thread.

Here are the two appropriate classes:

TermoServer, the one that blocks:
+ Show Spoiler +

public class TermoServer extends Thread {
public static void main(String[] args) {
TermoServer ts = new TermoServer();
ts.run();
}

private final int PORT = 12345;
private ObjectInputStream instream;
private ServerSocket listener;
private Socket clientSocket = null;
private List<Double> temperatures = new ArrayList<Double>();
private double averageTemperature;

public void run() {

try {
getConnection();
while (true) {
temperatures.add(readTemperature());
averageTemperature = calculateAverage(temperatures);
System.out
.println("Average temperature: " + averageTemperature);
}
} catch (Exception e) {
System.out.println(e);
}
}

private void getConnection() throws IOException {
listener = new ServerSocket(PORT);
clientSocket = listener.accept();
instream = new ObjectInputStream(clientSocket.getInputStream());

}
private double readTemperature() throws IOException, ClassNotFoundException {
//something
}
private double calculateAverage(List<Double> marks) {
//something
}

}


EventBus, the one connecting to it:
+ Show Spoiler +

public class EventBus {
private int[] ports = { 23456, 12345 };
private String[] IPs = { "localhost", "localhost" };
private String[][] topics = { { "TemperatureReading" },
{ "TemperatureReading" } };
private List<Node> nodes = new ArrayList<Node>();

public static void main(String[] args) {
EventBus eb = new EventBus();
eb.start();
}

public void start() {
try {
addNodes();
System.out.println("Nodes added");
while (true) {
Event e = getEvent();
for (Node n : nodes) {
if (n.isSubscribingTo(e.getTopic()))
n.sendEvent(e);
}
}
} catch (Exception e) {
e.printStackTrace();
}

}

private void addNodes() throws UnknownHostException, IOException {
for (int i = 0; i < ports.length; i++) {
nodes.add(new Node(topics[i], new Socket(IPs[i], ports[i])));
}

}

private Event getEvent() throws IOException, ClassNotFoundException {
// List<ObjectInputStream> instreams = getStreams();
while (true) {
for (Node n : nodes) {
ObjectInputStream ois = new ObjectInputStream(n.getSocket()
.getInputStream());
System.out.println("test");
if (ois.available() > 1) {
System.out.println(" stream available");
Object o = ois.readObject();
if (o instanceof Event) {
System.out.println("event found");
return (Event) o;
}
}
}
}
}


Edit: I think I figured it out. The Node-constructor wasn't properly creating the outstreams. It's kinda working now... :/
aksfjh
Profile Joined November 2010
United States4853 Posts
May 04 2014 23:26 GMT
#9471
Before I start doing an in depth search for a solution to this problem, does anybody have a fast algorithm for finding/estimating the square root of a number? Or any input at all really... Trying to do some microprocessor programming and it's currently the bottleneck on performance.
phar
Profile Joined August 2011
United States1080 Posts
May 04 2014 23:33 GMT
#9472
On May 05 2014 08:26 aksfjh wrote:
Before I start doing an in depth search for a solution to this problem, does anybody have a fast algorithm for finding/estimating the square root of a number? Or any input at all really... Trying to do some microprocessor programming and it's currently the bottleneck on performance.

My memory might be a bit fuzzy because it's been awhile since I've had to do efficient microcontroller stuff, but I believe there's a super efficient way to do this using newton-raphson. It's an iterative method that converges pretty quickly.
Who after all is today speaking about the destruction of the Armenians?
aksfjh
Profile Joined November 2010
United States4853 Posts
May 05 2014 00:55 GMT
#9473
On May 05 2014 08:33 phar wrote:
Show nested quote +
On May 05 2014 08:26 aksfjh wrote:
Before I start doing an in depth search for a solution to this problem, does anybody have a fast algorithm for finding/estimating the square root of a number? Or any input at all really... Trying to do some microprocessor programming and it's currently the bottleneck on performance.

My memory might be a bit fuzzy because it's been awhile since I've had to do efficient microcontroller stuff, but I believe there's a super efficient way to do this using newton-raphson. It's an iterative method that converges pretty quickly.

Definitely a good place to start, thanks!
Ben...
Profile Joined January 2011
Canada3485 Posts
Last Edited: 2014-05-05 01:59:27
May 05 2014 01:58 GMT
#9474
On May 03 2014 23:47 MichaelEU wrote:
On the topic of Automata and Languages I've only read Introduction to the Theory of Computation by Michael Sipser. I quite liked it. It's the only one I've read so I can't compare it to Hopcroft et al.

I have Hopcroft. It is, shall we say, a little dense and obtuse at times. Some sections of it are quite good while others are incredibly unclear. This was the last year my professor was going to have it even mentioned (it was not a required text, just something we could use to supplement his notes. My prof's doctorate is in Automata and Language theory so he writes most of his own material and it is much better than any textbook or online resources I've found).

I absolutely loved my Automata and Languages class. I didn't get the best mark in it, but I felt like I learned far more from that class than two or three of my other classes combined. It really does help with understanding how certain aspects of Computer Science work.

I definitely will check Sipser out. I really like reading about this stuff.
"Cliiiiiiiiiiiiiiiiide" -Tastosis
bangsholt
Profile Joined June 2011
Denmark138 Posts
Last Edited: 2014-05-05 22:03:09
May 05 2014 22:01 GMT
#9475
On May 04 2014 21:13 Vorenius wrote:
Show nested quote +
On May 04 2014 20:46 berated- wrote:
On May 04 2014 19:45 Vorenius wrote:
Hey, I'm having some problems with some Java code and I have no idea what is going on. While trying to set up an TCP/IP connection and opening objectstream, my program blocks. I've tried opening an outstream instead and that worked just fine, but for some reason getInputStream() doesn't seem to return at all. :s

I can't see what could possibly go wrong, the socket seems to be connected, it's working with outstream.
Let me know if you need any additional context

This is one of the Nodes trying to setup a connection

private ServerSocket listener;
private Socket socket = null;
private ObjectInputStream instream;

...

listener = new ServerSocket(PORT);
socket = listener.accept();
instream = new ObjectInputStream(socket.getInputStream());


This is an EventBus where I'm connecting to them. I have a List of Nodes and each of them are being contructed with a new socket:

private List<Node> nodes = new ArrayList<Node>();

for (int i = 0; i < ports.length; i++) {
nodes.add(new Node(topics[i], new Socket(IPs[i], ports[i])));
}


Any help would be greatly appriciated. I've been stuck on this for a while :s


Have you added debug to make sure you're actually getting past the accept line?

SocketServer.accept

Is the program single threaded? You haven't really given us a lot to work with to figure out what is going on...

The socket is returned properly, I tried printing the socket.toString() without problem. It's this line that blocks:
instream = new ObjectInputStream(socket.getInputStream());


The server does extend Thread, as I want to run it from another thread, but I'm testing it with just a single thread.

Here are the two appropriate classes:

TermoServer, the one that blocks:
+ Show Spoiler +

public class TermoServer extends Thread {
public static void main(String[] args) {
TermoServer ts = new TermoServer();
ts.run();
}

private final int PORT = 12345;
private ObjectInputStream instream;
private ServerSocket listener;
private Socket clientSocket = null;
private List<Double> temperatures = new ArrayList<Double>();
private double averageTemperature;

public void run() {

try {
getConnection();
while (true) {
temperatures.add(readTemperature());
averageTemperature = calculateAverage(temperatures);
System.out
.println("Average temperature: " + averageTemperature);
}
} catch (Exception e) {
System.out.println(e);
}
}

private void getConnection() throws IOException {
listener = new ServerSocket(PORT);
clientSocket = listener.accept();
instream = new ObjectInputStream(clientSocket.getInputStream());

}
private double readTemperature() throws IOException, ClassNotFoundException {
//something
}
private double calculateAverage(List<Double> marks) {
//something
}

}


EventBus, the one connecting to it:
+ Show Spoiler +

public class EventBus {
private int[] ports = { 23456, 12345 };
private String[] IPs = { "localhost", "localhost" };
private String[][] topics = { { "TemperatureReading" },
{ "TemperatureReading" } };
private List<Node> nodes = new ArrayList<Node>();

public static void main(String[] args) {
EventBus eb = new EventBus();
eb.start();
}

public void start() {
try {
addNodes();
System.out.println("Nodes added");
while (true) {
Event e = getEvent();
for (Node n : nodes) {
if (n.isSubscribingTo(e.getTopic()))
n.sendEvent(e);
}
}
} catch (Exception e) {
e.printStackTrace();
}

}

private void addNodes() throws UnknownHostException, IOException {
for (int i = 0; i < ports.length; i++) {
nodes.add(new Node(topics[i], new Socket(IPs[i], ports[i]));
}

}

private Event getEvent() throws IOException, ClassNotFoundException {
// List<ObjectInputStream> instreams = getStreams();
while (true) {
for (Node n : nodes) {
ObjectInputStream ois = new ObjectInputStream(n.getSocket()
.getInputStream());
System.out.println("test");
if (ois.available() > 1) {
System.out.println(" stream available");
Object o = ois.readObject();
if (o instanceof Event) {
System.out.println("event found");
return (Event) o;
}
}
}
}
}


Edit: I think I figured it out. The Node-constructor wasn't properly creating the outstreams. It's kinda working now... :/


It's kinda working?...

I would suggest you read something about how an actual multithreaded server works - that may very well clear up a few problems you have (such as testing with one thread...)

Basically check this thread out and try to play a bit with the examples, then come back with actual questions rather than "why it no work"

http://stackoverflow.com/questions/12588476/multithreading-socket-communication-client-server
meatpudding
Profile Joined March 2011
Australia520 Posts
May 06 2014 07:31 GMT
#9476
On May 05 2014 08:26 aksfjh wrote:
Before I start doing an in depth search for a solution to this problem, does anybody have a fast algorithm for finding/estimating the square root of a number? Or any input at all really... Trying to do some microprocessor programming and it's currently the bottleneck on performance.


Newton's method probably is the best method, you can iterate until you reach desired accuracy. There was also a really nice hack by Carmack to approximate roots, using bit shifts. Not very accurate, but very fast. Seems to be described well here http://www.codemaestro.com/reviews/9.
Be excellent to each other.
Warri
Profile Joined May 2010
Germany3208 Posts
May 07 2014 15:40 GMT
#9477
My eclipse is broken. It doesn't recognize if a class has been imported or not anymore and the hover-popup with methods and help etc shows only a blank window.
[image loading]
Ive already reinstalled Java and redownloaded eclipse. How can i fix this?
DeltaX
Profile Joined August 2011
United States287 Posts
May 07 2014 17:19 GMT
#9478
I don't know a lot about eclipse, but I think a lot of the user settings are stored in the .metadata folder in the workspace (eclipse stores a lot of stuff there at least). Switching to a new workspace may fix it, but you may lose other settings in the process. Another thing worth trying may be to clean/refresh the project if this only happens in one, but the chances of that working is like 2%.
Warri
Profile Joined May 2010
Germany3208 Posts
May 07 2014 17:35 GMT
#9479
On May 08 2014 02:19 DeltaX wrote:
I don't know a lot about eclipse, but I think a lot of the user settings are stored in the .metadata folder in the workspace (eclipse stores a lot of stuff there at least). Switching to a new workspace may fix it, but you may lose other settings in the process. Another thing worth trying may be to clean/refresh the project if this only happens in one, but the chances of that working is like 2%.


Deleted the metadata folder and reimported all the projects. Didn't help. It also happens in all of the project. Even if i start a newly downloaded eclipse from a different folder, so im thinking this has to be caused by either windows or java somehow.
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
May 07 2014 18:36 GMT
#9480
--- Nuked ---
Prev 1 472 473 474 475 476 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 19h 6m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Ryung 791
trigger 58
StarCraft: Brood War
Britney 49462
Calm 7541
Horang2 979
BeSt 846
EffOrt 700
Soma 631
Stork 501
actioN 488
Hyuk 468
ggaemo 454
[ Show more ]
Mini 428
Larva 374
Snow 325
ZerO 268
Soulkey 220
Rush 220
hero 112
Mong 108
Mind 106
Hyun 93
Dewaltoss 77
Pusan 70
Killer 58
Backho 58
sorry 54
Shine 51
sSak 46
Aegong 41
Barracks 37
Bale 28
Sacsri 25
Rock 17
Terrorterran 17
yabsab 16
soO 14
IntoTheRainbow 14
GoRush 12
ajuk12(nOOB) 9
Noble 6
Dota 2
qojqva2583
syndereN447
monkeys_forever270
XcaliburYe52
Counter-Strike
byalli602
Other Games
singsing2043
B2W.Neo900
hiko747
Lowko360
DeMusliM268
mouzStarbuck251
ArmadaUGS148
Liquid`VortiX141
RotterdaM88
ZerO(Twitch)23
Organizations
StarCraft: Brood War
UltimateBattle 1251
Dota 2
PGL Dota 2 - Main Stream28
StarCraft: Brood War
Kim Chul Min (afreeca) 7
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 17 non-featured ]
StarCraft 2
• StrangeGG 74
• poizon28 19
• iHatsuTV 10
• Migwel
• AfreecaTV YouTube
• sooper7s
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
StarCraft: Brood War
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• lizZardDota247
League of Legends
• Jankos1552
Other Games
• WagamamaTV297
• Shiphtur78
Upcoming Events
GSL
19h 6m
SHIN vs Zoun
ByuN vs herO
OSC
20h 36m
OSC
22h 36m
Replay Cast
1d 9h
Escore
1d 19h
The PondCast
1d 19h
WardiTV Invitational
1d 20h
Zoun vs Ryung
Lambo vs ShoWTimE
OSC
2 days
Replay Cast
2 days
CranKy Ducklings
2 days
[ Show More ]
RSL Revival
2 days
SHIN vs Bunny
ByuN vs Shameless
WardiTV Invitational
2 days
Krystianer vs TriGGeR
Cure vs Rogue
uThermal 2v2 Circuit
3 days
BSL
3 days
Replay Cast
3 days
Sparkling Tuna Cup
3 days
RSL Revival
3 days
Cure vs Zoun
Clem vs Lambo
WardiTV Invitational
3 days
BSL
4 days
GSL
4 days
Afreeca Starleague
4 days
Soma vs Leta
Monday Night Weeklies
5 days
CranKy Ducklings
5 days
Afreeca Starleague
5 days
Light vs Flash
Replay Cast
6 days
Liquipedia Results

Completed

Proleague 2026-05-05
WardiTV TLMC #16
Nations Cup 2026

Ongoing

BSL Season 22
ASL Season 21
CSL 2026 SPRING (S20)
IPSL Spring 2026
KCM Race Survival 2026 Season 2
Acropolis #4
YSL S3
SCTL 2026 Spring
RSL Revival: Season 5
2026 GSL S1
BLAST Rivals Spring 2026
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026

Upcoming

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