• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 00:08
CET 06:08
KST 14:08
  • 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
StarCraft Evolution League (SC Evo Biweekly) RSL Offline Finals Info - Dec 13 and 14! RSL Offline FInals Sea Duckling Open (Global, Bronze-Diamond) $5,000+ WardiTV 2025 Championship
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 502 Negative Reinforcement Mutation # 501 Price of Progress Mutation # 500 Fright night Mutation # 499 Chilling Adaptation
Brood War
General
BW General Discussion Which season is the best in ASL? Data analysis on 70 million replays BGH Auto Balance -> http://bghmmr.eu/ [ASL20] Ask the mapmakers — Drop your questions
Tourneys
[BSL21] RO16 Group D - Sunday 21:00 CET [BSL21] RO16 Group A - Saturday 21:00 CET [Megathread] Daily Proleagues [BSL21] RO16 Group B - Sunday 21:00 CET
Strategy
Current Meta Game Theory for Starcraft How to stay on top of macro? PvZ map balance
Other Games
General Games
ZeroSpace Megathread Stormgate/Frost Giant Megathread Nintendo Switch Thread The Perfect Game Path of Exile
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Mafia Game Mode Feedback/Ideas TL Mafia Community Thread
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War 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: 1436 users

The Big Programming Thread - Page 330

Forum Index > General Forum
Post a Reply
Prev 1 328 329 330 331 332 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.
tec27
Profile Blog Joined June 2004
United States3702 Posts
July 25 2013 05:55 GMT
#6581
On July 25 2013 05:54 Yoshi- wrote:
Show nested quote +
On July 25 2013 05:44 tofucake wrote:
There are a bunch of php websocket libraries. socketo.me is probably the most well known. And even without that PHP still supports sockets (I made a bnet bot in php+ajax almost a decade ago).


Yea I know I already realized that and removed that part.

Show nested quote +
On July 25 2013 05:43 fdsdfg wrote:

Isn't google chat (chat from the gmail web interface) done using ajax?


Just did a quick check doesn't look like ajax, or at least the firebug console doesn't show any ajax request that could be related to it.
Yea, they use long polling or httpstreaming for it: http://stackoverflow.com/questions/2440135/is-long-polling-the-most-efficient-way-to-create-a-web-real-time-app/2440150#2440150
They arguably uses "Ajax", but not the same way how OP does

Google Talk uses comet/long-polling/whatever you want to call it, and believe it or not, this *is* AJAX and its not really arguable Google Talk's usage of long-polling should by no means be seen as an endorsement of long-polling, as there are many factors at play in why they chose it, almost none of which probably apply to any personal project. Certainly websockets or server-sent events are more well-suited, if you don't need to support older browsers.
Can you jam with the console cowboys in cyberspace?
HardlyNever
Profile Blog Joined July 2011
United States1258 Posts
July 25 2013 06:26 GMT
#6582
On July 25 2013 13:45 Fawkes wrote:
Let me rewrite this to the simplest way possible.


$sql = "select achievement from achievement_list";

$sql = $sql." where achievement_id = 1";

//$sql = $sql." where achievement_id = ".$achievementsel;


$sql = "select achievement from achievement_list";

//$sql = $sql." where achievement_id = ".$achievementsel;

$sql = $sql." where achievement_id = 1";


These two chunks of code, are not doing the same thing for me and I have no idea why.

+ Show Spoiler [frustration x1000000000000] +


//$sql = "select achievement from achievement_list";

//$sql = $sql." where achievement_id = ".$achievementsel;

//$sql = $sql." where achievement_id = 1";

$sql = "select achievement from achievement_list where achievement_id = 1";
echo "$sql<br>";



$sql = "select achievement from achievement_list where achievement_id = 1";

//$sql = "select achievement from achievement_list";

//$sql = $sql." where achievement_id = ".$achievementsel;

//$sql = $sql." where achievement_id = 1";

echo "$sql<br>";


The first chunk of code prints "select achievement from achievement_list where achievement_id = 1". Second does nothing.
For the record, the code after these lines just perform the query using $sql.


Wow this is so inconsistent, I don't even know what is going on anymore.


I'm a bit confused as to why you just don't use the first one if it is working the way you want (since they both appear to do the exact same thing). The only thing that stands out as a little weird is that the comments are ending in semi-colons; you don't need to do that for php comments. It shouldn't affect anything if they are commented out properly, though.
Out there, the Kid learned to fend for himself. Learned to build. Learned to break.
Release
Profile Blog Joined October 2010
United States4397 Posts
July 25 2013 06:40 GMT
#6583
Code copy pasted from Oreilly textbook:
<?php // authenticate.php
require_once 'login.php';
$db_server = mysql_connect($db_hostname, $db_username, $db_password);
if (!$db_server) die("Unable to connect to MySQL: " . mysql_error());
mysql_select_db($db_database)
or die("Unable to select database: " . mysql_error());

if (isset($_SERVER['PHP_AUTH_USER']) &&
isset($_SERVER['PHP_AUTH_PW']))
{
$un_temp = mysql_entities_fix_string($_SERVER['PHP_AUTH_USER']);
$pw_temp = mysql_entities_fix_string($_SERVER['PHP_AUTH_PW']);
$query = "SELECT * FROM users WHERE username='$un_temp'";
$result = mysql_query($query);
if (!$result) die("Database access failed: " . mysql_error());
elseif (mysql_num_rows($result))
{
$row = mysql_fetch_row($result);
$salt1 = "qm&h*";
$salt2 = "pg!@";
$token = md5("$salt1$pw_temp$salt2");

if ($token == $row[3]) echo "$row[0] $row[1] :
Hi $row[0], you are now logged in as '$row[2]'";
else die("Invalid username/password combination");
}
else die("Invalid username/password combination");
}
else
{
header('WWW-Authenticate: Basic realm="Restricted Section"');
header('HTTP/1.0 401 Unauthorized');
die ("Please enter your username and password");
}

function mysql_entities_fix_string($string)
{
return htmlentities(mysql_fix_string($string));
}

function mysql_fix_string($string)
{
if (get_magic_quotes_gpc()) $string = stripslashes($string);
return mysql_real_escape_string($string);
}
?>


When I run it, it asks for my Username and Password (in a windows security pop-up). Regardless of which username/pw combination I type, it just reloads when I click the ok button, and after the third time I click ok button, it exits and says "Please enter your username and password." on the webpage.

I used echo statements to discover that nothing in the outermost if loop runs.

Can anyone see what's wrong?
☺
Arnstein
Profile Blog Joined May 2010
Norway3381 Posts
July 25 2013 08:50 GMT
#6584
On July 24 2013 19:54 Arnstein wrote:
Show nested quote +
On July 24 2013 19:37 Morfildur wrote:
On July 24 2013 19:34 Arnstein wrote:
On July 24 2013 19:27 iaretehnoob wrote:
On July 24 2013 18:32 Arnstein wrote:
Since I don't have much to do this summer, I'm thinking of doing as many of these as I can:
https://github.com/thekarangoel/Projects

I just did the first number one, where you have to find pi to the nth digit, and this was my answer:


#include <iostream>
#include <math.h>
#include <iomanip>

using namespace std;

int main()
{
int n;
cout << "Enter how many digits you want to see: " << endl;
cin >> n;
cout << setprecision(n) << atan(1)*4 << endl;
}


Is this a bad way to do it? Is it cheating in any way? (especially using the setprecision function, which basically does the task for you)

I see two issues:
a) it rounds.
b) try it for n>15 or something.


Wow, didn't see that before now. How come the 3-4 digits are wrong on n=20? If it rounds I would expect the last one to be wrong, but not the 3-4 last ones.


Floating point numbers have limited precision, they don't work for these cases.


Okay, I guess I will find a new way then


Does anyone have an idea what the fuck I should do? I have to find a way to generate pi digit-by-digit, as I will get the wrong pi from the double anyways.
rsol in response to the dragoon voice being heard in SCII: dragoon ai reaches new lows: wanders into wrong game
Yoshi-
Profile Joined October 2008
Germany10227 Posts
Last Edited: 2013-07-25 09:09:26
July 25 2013 09:04 GMT
#6585
On July 25 2013 17:50 Arnstein wrote:
Show nested quote +
On July 24 2013 19:54 Arnstein wrote:
On July 24 2013 19:37 Morfildur wrote:
On July 24 2013 19:34 Arnstein wrote:
On July 24 2013 19:27 iaretehnoob wrote:
On July 24 2013 18:32 Arnstein wrote:
Since I don't have much to do this summer, I'm thinking of doing as many of these as I can:
https://github.com/thekarangoel/Projects

I just did the first number one, where you have to find pi to the nth digit, and this was my answer:


#include <iostream>
#include <math.h>
#include <iomanip>

using namespace std;

int main()
{
int n;
cout << "Enter how many digits you want to see: " << endl;
cin >> n;
cout << setprecision(n) << atan(1)*4 << endl;
}


Is this a bad way to do it? Is it cheating in any way? (especially using the setprecision function, which basically does the task for you)

I see two issues:
a) it rounds.
b) try it for n>15 or something.


Wow, didn't see that before now. How come the 3-4 digits are wrong on n=20? If it rounds I would expect the last one to be wrong, but not the 3-4 last ones.


Floating point numbers have limited precision, they don't work for these cases.


Okay, I guess I will find a new way then


Does anyone have an idea what the fuck I should do? I have to find a way to generate pi digit-by-digit, as I will get the wrong pi from the double anyways.

The fastest way would most probably be, to have another text file with the numbers of pi and just taking them from there.
If you want to generate pi on the fly, you should take a look at https://github.com/Mysticial/Mini-Pi or http://www.numberworld.org/y-cruncher/#Download
Or to avoid the limited precision of float, you could use a library that can handle bigger numbers https://en.wikipedia.org/wiki/Arbitrary-precision_arithmetic#Libraries
Zocat
Profile Joined April 2010
Germany2229 Posts
July 25 2013 09:16 GMT
#6586
On July 25 2013 17:50 Arnstein wrote:
Show nested quote +
On July 24 2013 19:54 Arnstein wrote:
On July 24 2013 19:37 Morfildur wrote:
On July 24 2013 19:34 Arnstein wrote:
On July 24 2013 19:27 iaretehnoob wrote:
On July 24 2013 18:32 Arnstein wrote:
Since I don't have much to do this summer, I'm thinking of doing as many of these as I can:
https://github.com/thekarangoel/Projects

I just did the first number one, where you have to find pi to the nth digit, and this was my answer:


#include <iostream>
#include <math.h>
#include <iomanip>

using namespace std;

int main()
{
int n;
cout << "Enter how many digits you want to see: " << endl;
cin >> n;
cout << setprecision(n) << atan(1)*4 << endl;
}


Is this a bad way to do it? Is it cheating in any way? (especially using the setprecision function, which basically does the task for you)

I see two issues:
a) it rounds.
b) try it for n>15 or something.


Wow, didn't see that before now. How come the 3-4 digits are wrong on n=20? If it rounds I would expect the last one to be wrong, but not the 3-4 last ones.


Floating point numbers have limited precision, they don't work for these cases.


Okay, I guess I will find a new way then


Does anyone have an idea what the fuck I should do? I have to find a way to generate pi digit-by-digit, as I will get the wrong pi from the double anyways.


http://crd-legacy.lbl.gov/~dhbailey/dhbpapers/pi-quest.pdf

This looks like a fun way. While it's (probably) not the fastest way (since you have to use the algorithm for each digit) it's certainly interesting. Also you get to practice your Base16 math
Kiante
Profile Blog Joined December 2009
Australia7069 Posts
July 25 2013 10:06 GMT
#6587
On July 25 2013 15:40 Release wrote:
Code copy pasted from Oreilly textbook:
<?php // authenticate.php
require_once 'login.php';
$db_server = mysql_connect($db_hostname, $db_username, $db_password);
if (!$db_server) die("Unable to connect to MySQL: " . mysql_error());
mysql_select_db($db_database)
or die("Unable to select database: " . mysql_error());

if (isset($_SERVER['PHP_AUTH_USER']) &&
isset($_SERVER['PHP_AUTH_PW']))
{
$un_temp = mysql_entities_fix_string($_SERVER['PHP_AUTH_USER']);
$pw_temp = mysql_entities_fix_string($_SERVER['PHP_AUTH_PW']);
$query = "SELECT * FROM users WHERE username='$un_temp'";
$result = mysql_query($query);
if (!$result) die("Database access failed: " . mysql_error());
elseif (mysql_num_rows($result))
{
$row = mysql_fetch_row($result);
$salt1 = "qm&h*";
$salt2 = "pg!@";
$token = md5("$salt1$pw_temp$salt2");

if ($token == $row[3]) echo "$row[0] $row[1] :
Hi $row[0], you are now logged in as '$row[2]'";
else die("Invalid username/password combination");
}
else die("Invalid username/password combination");
}
else
{
header('WWW-Authenticate: Basic realm="Restricted Section"');
header('HTTP/1.0 401 Unauthorized');
die ("Please enter your username and password");
}

function mysql_entities_fix_string($string)
{
return htmlentities(mysql_fix_string($string));
}

function mysql_fix_string($string)
{
if (get_magic_quotes_gpc()) $string = stripslashes($string);
return mysql_real_escape_string($string);
}
?>


When I run it, it asks for my Username and Password (in a windows security pop-up). Regardless of which username/pw combination I type, it just reloads when I click the ok button, and after the third time I click ok button, it exits and says "Please enter your username and password." on the webpage.

I used echo statements to discover that nothing in the outermost if loop runs.

Can anyone see what's wrong?

How do your if statements loop? that's probably the first problem you should investigate
Writer
Yoshi-
Profile Joined October 2008
Germany10227 Posts
July 25 2013 10:11 GMT
#6588
On July 25 2013 19:06 Kiante wrote:
Show nested quote +
On July 25 2013 15:40 Release wrote:
Code copy pasted from Oreilly textbook:
<?php // authenticate.php
require_once 'login.php';
$db_server = mysql_connect($db_hostname, $db_username, $db_password);
if (!$db_server) die("Unable to connect to MySQL: " . mysql_error());
mysql_select_db($db_database)
or die("Unable to select database: " . mysql_error());

if (isset($_SERVER['PHP_AUTH_USER']) &&
isset($_SERVER['PHP_AUTH_PW']))
{
$un_temp = mysql_entities_fix_string($_SERVER['PHP_AUTH_USER']);
$pw_temp = mysql_entities_fix_string($_SERVER['PHP_AUTH_PW']);
$query = "SELECT * FROM users WHERE username='$un_temp'";
$result = mysql_query($query);
if (!$result) die("Database access failed: " . mysql_error());
elseif (mysql_num_rows($result))
{
$row = mysql_fetch_row($result);
$salt1 = "qm&h*";
$salt2 = "pg!@";
$token = md5("$salt1$pw_temp$salt2");

if ($token == $row[3]) echo "$row[0] $row[1] :
Hi $row[0], you are now logged in as '$row[2]'";
else die("Invalid username/password combination");
}
else die("Invalid username/password combination");
}
else
{
header('WWW-Authenticate: Basic realm="Restricted Section"');
header('HTTP/1.0 401 Unauthorized');
die ("Please enter your username and password");
}

function mysql_entities_fix_string($string)
{
return htmlentities(mysql_fix_string($string));
}

function mysql_fix_string($string)
{
if (get_magic_quotes_gpc()) $string = stripslashes($string);
return mysql_real_escape_string($string);
}
?>


When I run it, it asks for my Username and Password (in a windows security pop-up). Regardless of which username/pw combination I type, it just reloads when I click the ok button, and after the third time I click ok button, it exits and says "Please enter your username and password." on the webpage.

I used echo statements to discover that nothing in the outermost if loop runs.

Can anyone see what's wrong?

How do your if statements loop? that's probably the first problem you should investigate


He runs PHP as CGI, so both PHP_AUTH_USER and PHP_AUTH_PWD are never set, you could work around this like this: http://www.sslcatacombnetworking.com/articles/http-authentication-php-cgi.html
Arnstein
Profile Blog Joined May 2010
Norway3381 Posts
July 25 2013 10:42 GMT
#6589
Thanks people, but is this the point of the challenge? To learn to import outside libraries and use them to get the right answer, or is it a way to complete this thing with only the standard libraries?

Either way, those links gave me some interesting material!
rsol in response to the dragoon voice being heard in SCII: dragoon ai reaches new lows: wanders into wrong game
Yoshi-
Profile Joined October 2008
Germany10227 Posts
July 25 2013 14:08 GMT
#6590
On July 25 2013 19:42 Arnstein wrote:
Thanks people, but is this the point of the challenge? To learn to import outside libraries and use them to get the right answer, or is it a way to complete this thing with only the standard libraries?

Either way, those links gave me some interesting material!


This should help you even more.
Tenks
Profile Joined April 2010
United States3104 Posts
July 25 2013 14:33 GMT
#6591
On July 25 2013 03:15 Denar wrote:
This thread has one of the worst atmospheres in all TL, a lot of agressive tone, dick-waving, and other never-ending battles over trivial matters.

Do you guys think this is specific to the people interacting in here, or if it is a general character aspect of the programmer to be unable to exchange in a more civilised manner ?



This is an unfortunate reason why I don't generally participate in developer forums online. The atmosphere is always acidic for simple general discussion. Which is a shame since I've been in the industry a while and a complete expert on Java but no matter what I say it will go under the microscope and will always be argued. It simply isn't worth it to me.
Wat
CornMuscles
Profile Blog Joined November 2012
United States25 Posts
July 25 2013 15:08 GMT
#6592
This is kind of a double post from a blog I just made, so apologies there in advance. It was suggested I post here in the blog so here I am.

I'm currently unemployed, but have a MS in CS from a shitty school that didn't do much for my education. 90% of my professional development experience is in COBOL. I'm curious as to what, if any, certificates you may suggest looking into getting, and suggestions on training materials for these as well.

The area I live in has nothing available in COBOL programming, so staying in that language is not currently an option.

Blog Link if curious as it has a bit more info: Blog Link
supereddie
Profile Joined March 2011
Netherlands151 Posts
July 25 2013 15:43 GMT
#6593
For those PHP people that just posted: please use parameterized queries. It pains me to see those select statements...
"Do not try to make difficult things possible, but make simple things simple." - David Platt on Software Design
tofucake
Profile Blog Joined October 2009
Hyrule19173 Posts
July 25 2013 15:50 GMT
#6594
On July 26 2013 00:08 CornMuscles wrote:
This is kind of a double post from a blog I just made, so apologies there in advance. It was suggested I post here in the blog so here I am.

I'm currently unemployed, but have a MS in CS from a shitty school that didn't do much for my education. 90% of my professional development experience is in COBOL. I'm curious as to what, if any, certificates you may suggest looking into getting, and suggestions on training materials for these as well.

The area I live in has nothing available in COBOL programming, so staying in that language is not currently an option.

Blog Link if curious as it has a bit more info: Blog Link

Are you kidding? COBOL is used by basically every bank in the world. ECommerce backends are a lot of COBOL. All sorts of networking stuff is COBOL. Look in other areas for work.
Liquipediaasante sana squash banana
Encdalf
Profile Joined February 2012
Germany66 Posts
July 25 2013 16:04 GMT
#6595
On July 25 2013 19:42 Arnstein wrote:
Thanks people, but is this the point of the challenge? To learn to import outside libraries and use them to get the right answer, or is it a way to complete this thing with only the standard libraries?

Either way, those links gave me some interesting material!

In my opinion the point of every challenge is to learn and improve.
My personal favourite is still http://projecteuler.net/ Since they are mathematical challenges you can try to solve them in as many languages as you want, learning the language.
If from solving your challenge you learned how to import libraries and using them, well that's something learned. If you think there are ways to implement it with standard libraries only, give it a try. I'm sure you'll learn something new from that aswell.
zeru
Profile Blog Joined September 2010
8156 Posts
Last Edited: 2013-07-25 16:51:02
July 25 2013 16:47 GMT
#6596
--- Nuked ---
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
July 25 2013 16:56 GMT
#6597
On July 25 2013 23:33 Tenks wrote:
Show nested quote +
On July 25 2013 03:15 Denar wrote:
This thread has one of the worst atmospheres in all TL, a lot of agressive tone, dick-waving, and other never-ending battles over trivial matters.

Do you guys think this is specific to the people interacting in here, or if it is a general character aspect of the programmer to be unable to exchange in a more civilised manner ?


This is an unfortunate reason why I don't generally participate in developer forums online. The atmosphere is always acidic for simple general discussion. Which is a shame since I've been in the industry a while and a complete expert on Java but no matter what I say it will go under the microscope and will always be argued. It simply isn't worth it to me.


Really I chalk it up to basically every programmer never getting the required amount of sleep, and eventually developing a habit of being grumpy and pretty unforgiving. Unfortunate you feel that way, but you're doing a bit of dick-waving yourself there you know.
There is no one like you in the universe.
HardlyNever
Profile Blog Joined July 2011
United States1258 Posts
Last Edited: 2013-07-25 18:46:19
July 25 2013 18:22 GMT
#6598
Nevermind, got it.
Out there, the Kid learned to fend for himself. Learned to build. Learned to break.
CornMuscles
Profile Blog Joined November 2012
United States25 Posts
July 25 2013 18:45 GMT
#6599
On July 26 2013 00:50 tofucake wrote:
Are you kidding? COBOL is used by basically every bank in the world. ECommerce backends are a lot of COBOL. All sorts of networking stuff is COBOL. Look in other areas for work.


In the current area I live, there is not much COBOL going on. Trust me I am still looking for COBOL jobs. I may be moving to Phoenix next year though and I know there is more COBOL in that area.

Thanks for the help though folks!
Arnstein
Profile Blog Joined May 2010
Norway3381 Posts
Last Edited: 2013-07-25 19:55:03
July 25 2013 19:54 GMT
#6600
Edit: Sorry, thought this was high thread.
rsol in response to the dragoon voice being heard in SCII: dragoon ai reaches new lows: wanders into wrong game
Prev 1 328 329 330 331 332 1032 Next
Please log in or register to reply.
Live Events Refresh
Replay Cast
00:00
WardiTV Mondays #62
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RuFF_SC2 201
trigger 54
StarCraft: Brood War
Tasteless 159
Shine 145
Bale 46
NaDa 34
Icarus 6
Dota 2
monkeys_forever684
NeuroSwarm125
League of Legends
JimRising 768
Counter-Strike
Coldzera 1487
Super Smash Bros
C9.Mang0377
Other Games
summit1g12538
shahzam539
WinterStarcraft456
ViBE170
Mew2King63
Organizations
Other Games
gamesdonequick998
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 16 non-featured ]
StarCraft 2
• Hupsaiya 104
• Berry_CruncH54
• practicex 19
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• RayReign 19
• Azhi_Dahaki3
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Lourlo808
Upcoming Events
The PondCast
4h 52m
OSC
10h 52m
Demi vs Mixu
Nicoract vs TBD
Babymarine vs MindelVK
ForJumy vs TBD
Shameless vs Percival
Replay Cast
18h 52m
Korean StarCraft League
1d 21h
CranKy Ducklings
2 days
WardiTV 2025
2 days
SC Evo League
2 days
BSL 21
2 days
Sziky vs OyAji
Gypsy vs eOnzErG
OSC
2 days
Solar vs Creator
ByuN vs Gerald
Percival vs Babymarine
Moja vs Krystianer
EnDerr vs ForJumy
sebesdes vs Nicoract
Sparkling Tuna Cup
3 days
[ Show More ]
WardiTV 2025
3 days
OSC
3 days
BSL 21
3 days
Bonyth vs StRyKeR
Tarson vs Dandy
Replay Cast
4 days
Wardi Open
4 days
StarCraft2.fi
4 days
Monday Night Weeklies
4 days
Replay Cast
4 days
WardiTV 2025
5 days
StarCraft2.fi
5 days
PiGosaur Monday
5 days
StarCraft2.fi
6 days
Tenacious Turtle Tussle
6 days
Liquipedia Results

Completed

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

Ongoing

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

Upcoming

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

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

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.