• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 14:26
CEST 20:26
KST 03:26
  • 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
[ASL22] Ro16 Preview: Holy Diver2[ASL22] Ro16 Preview: Rough Waters10[ASL22] Ro24 Preview: Siren's Call8[ASL22] Ro24 Preview: Summer's End9Serral wins HomeStory Cup 2915
Community News
StarCraft open world shooter announced at BlizzCon74Weekly Cups (Aug 30-Sep 7): herO thrives amid growing schism10Official StarCraft website teases new content ahead of BlizzCon?172Stellar Fest TWO the Moon (Dec 16-20)9Weekly Cups (August 24-30): Patches' balance mod takes over3
StarCraft 2
General
StarCraft open world shooter announced at BlizzCon How do you feel about the StarCraft shooter announcement at BlizzCon 2026? Balance hotfix patch 5.0.16b (July 16) Team Liquid Map Contest #22: Results and Winners Weekly Cups (Aug 30-Sep 7): herO thrives amid growing schism
Tourneys
RSL goes to London! 2026 Offline Finals Nov 21-22 RSL Revival: Season 6 - Qualifiers and Main Event Sparkling Tuna Cup - Weekly Open Tournament KSL Week #92 IntoTheTV X SOOP SC2 League : Weekly & Monthly
Strategy
[G] Having the right mentality to improve
Custom Maps
Nexus Wars 2021 GUIDE [M] (2) Industrial Park
External Content
The PondCast: SC2 News & Results Mutation # 542 The Ascended Mutation # 541 Binary Choice Mutation # 540 Dodge This
Brood War
General
[ASL22] Ro16 Preview: Holy Diver Official StarCraft website teases new content ahead of BlizzCon? ASL22 General Discussion BGH Auto Balance -> http://bghmmr.eu/ Broodwar Prediction Market
Tourneys
[ASL22] Ro16 Group C [ASL22] Ro16 Group B [ASL22] Ro16 Group A Escore Tournament - Season 3
Strategy
Replay Review Process - What do you do? Simple Questions, Simple Answers Odyssey Mineral Stack Saturation Game Theory for Starcraft
Other Games
General Games
Diablo IV Nintendo Switch Thread EVE Corporation [Maplestory Hardcore] Let's Play~!! General RTS Discussion Thread
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
[TL LoL EUW IHs] Teemo shall perish TSM pausing esports and CLG Dead
Heroes of the Storm
Heroes of the Storm 2.0
Hearthstone
Deck construction bug
TL Mafia
TL Mafia Community Thread
Community
General
US Politics Mega-thread UK Politics Mega-thread Things Aren’t Peaceful in Palestine Trading/Investing Thread Russo-Ukrainian War Thread
Fan Clubs
MarineLorD Fan Club The Creator Fan Club The ShoWTimE Fan Club
Media & Entertainment
[Manga] One Piece Movie Discussion! Diablo Animated Series on Netflix
Sports
Football (Soccer) Thread TeamLiquid Health and Fitness Initiative For 2023 MLB/Baseball 2023
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Northern Ireland Global Starcraft
Blogs
Virtual Romance, Real-Life C…
TrAiDoS
Regacy Esports:Our Goa…
regacyesports
Dreaming of BW patches (mod…
c3rberUs
LOCKPICKING NOOB
LUCKY_NOOB
Customize Sidebar...

Website Feedback

Closed Threads



Active: 8184 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 4m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RotterdaM 909
Tasteless 714
mouzHeroMarine 402
IndyStarCraft 239
BRAT_OK 77
Railgan 1
StarCraft: Brood War
Britney 25186
Calm 3355
Shuttle 1058
Artosis 500
firebathero 161
Mini 160
Bonyth 94
Dewaltoss 92
Sea.KH 43
Mong 31
[ Show more ]
CosmosSc2 28
Trap 19
zelot 19
sSak 17
Dota 2
qojqva3847
canceldota50
febbydoto34
Counter-Strike
fl0m1159
byalli107
Super Smash Bros
hungrybox351
Mew2King127
Chillindude9
C9.Mang00
Heroes of the Storm
Liquid`Hasu453
MindelVK16
Other Games
Grubby5440
Liquid`RaSZi2293
summit1g1455
singsing944
B2W.Neo510
Mlord428
mouzStarbuck339
Hui .150
XaKoH 93
Organizations
Other Games
gamesdonequick2684
StarCraft 2
StarCraft2041
Other Games
EGCTV1391
StarCraft 2
ComeBackTV 776
Heroes of the Storm
Heroes of the Storm616
StarCraft: Brood War
Afreeca ASL 554
StarCraft 2
TaKeTV 172
[ Show 16 non-featured ]
StarCraft 2
• Berry_CruncH326
• EnkiAlexander 83
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• Migwel
StarCraft: Brood War
• 80smullet 11
• Azhi_Dahaki11
• Pr0nogo 4
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• C_a_k_e 3785
• masondota2687
Other Games
• Shiphtur234
Upcoming Events
BlizzCon
4m
IdrA vs MC
Afreeca Starleague
15h 34m
Light vs JyJ
Soulkey vs hero
WardiTV Weekly
16h 34m
Monday Night Weeklies
21h 34m
Afreeca Starleague
1d 15h
Snow vs Shinee
Shine vs EffOrt
GSL
1d 16h
PiGosaur Cup
2 days
The PondCast
2 days
Kung Fu Cup
2 days
Replay Cast
3 days
[ Show More ]
KCM Race Survival
3 days
IntoTheTV X SOOP
3 days
Replay Cast
4 days
IntoTheTV X SOOP
4 days
Replay Cast
5 days
GSL
5 days
Replay Cast
6 days
GSL
6 days
Shopify Rebellion Sundays
6 days
Spirit vs Mixu
Liquipedia Results

Completed

Acropolis #5 - TRS
PiG Sty Festival 8.0
Big Dog Cup 2026 Div 1

Ongoing

KCM Race Survival 2026 Season 3
K-JUNGMAN
ASL Season 22
Super Anchor Qualifying S3
CSL 2026 AUTUMN (S22)
Acropolis #5
Blizzard Classic Cup 2026
Blizzard Classic Cup 2026
Calamity Invitational
FISSURE Playground #3
BLAST Open Fall 2026
Esports World Cup 2026
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
Stake Ranked Episode 3
XSE Pro League 2026

Upcoming

Acropolis #5 - GSA
Acropolis #5 - GSB
Acropolis #5 - GSC
SC4ALL II: Brood War
HSC XXX
Stellar Fest 2: Lunar Cup
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
RSL Offline Finals
PGL Major Singapore 2026
Stake Ranked Episode 6
BLAST Rivals Fall 2026
IEM Beijing 2026
Stake Ranked Episode 5
PGL Masters Bucharest 2026
1win Private Club #2
Thunderpick World Champ. '26
ESL Pro League Season 24
Stake Ranked Episode 4
1win Private Club #1
Logitech G Play Connect 2026
SL StarSeries Fall 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.