• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 00:48
CEST 06:48
KST 13:48
  • 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] Ro16 Preview Pt1: Fresh Flow3[ASL21] Ro24 Preview Pt2: News Flash10[ASL21] Ro24 Preview Pt1: New Chaos0Team Liquid Map Contest #22 - Presented by Monster Energy21ByuL: The Forgotten Master of ZvT30
Community News
$5,000 WardiTV TLMC tournament - Presented by Monster Energy5GSL CK: More events planned pending crowdfunding7Weekly Cups (May 30-Apr 5): herO, Clem, SHIN win0[BSL22] RO32 Group Stage5Weekly Cups (March 23-29): herO takes triple6
StarCraft 2
General
MaNa leaves Team Liquid Team Liquid Map Contest #22 - Presented by Monster Energy Quebec Clan still alive ? BGE Stara Zagora 2026 cancelled Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool
Tourneys
$5,000 WardiTV TLMC tournament - Presented by Monster Energy Sparkling Tuna Cup - Weekly Open Tournament RSL Revival: Season 5 - Qualifiers and Main Event GSL CK: More events planned pending crowdfunding Sea Duckling Open (Global, Bronze-Diamond)
Strategy
Custom Maps
[D]RTS in all its shapes and glory <3 [A] Nemrods 1/4 players [M] (2) Frigid Storage
External Content
Mutation # 521 Memorable Boss The PondCast: SC2 News & Results Mutation # 520 Moving Fees Mutation # 519 Inner Power
Brood War
General
[ASL21] Ro16 Preview Pt1: Fresh Flow JD's Ro24 review The Korean Terminology Thread so ive been playing broodwar for a week straight. ASL21 General Discussion
Tourneys
[ASL21] Ro16 Group A [Megathread] Daily Proleagues Escore Tournament StarCraft Season 2 [ASL21] Ro24 Group F
Strategy
Any training maps people recommend? Fighting Spirit mining rates Muta micro map competition What's the deal with APM & what's its true value
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread Battle Aces/David Kim RTS Megathread General RTS Discussion Thread Starcraft Tabletop Miniature Game
Dota 2
The Story of Wings Gaming Official 'what is Dota anymore' discussion
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 The China Politics Thread Trading/Investing Thread
Fan Clubs
The IdrA Fan Club
Media & Entertainment
[Manga] One Piece [Req][Books] Good Fantasy/SciFi books Movie Discussion!
Sports
2024 - 2026 Football Thread Formula 1 Discussion Cricket [SPORT] Tokyo Olympics 2021 Thread
World Cup 2022
Tech Support
[G] How to Block Livestream Ads
TL Community
The Automated Ban List
Blogs
lurker extra damage testi…
StaticNine
How Streamers Inspire Gamers…
TrAiDoS
Broowar part 2
qwaykee
Funny Nicknames
LUCKY_NOOB
Iranian anarchists: organize…
XenOsky
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1974 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
Hyrule19202 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
BSL
19:00
RO32 Group B
Sterling vs Azhi_Dahaki
Napoleon vs Mazur
Jimin vs Nesh
spx vs Strudel
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
WinterStarcraft503
RuFF_SC2 193
NeuroSwarm 164
Nina 107
StarCraft: Brood War
GuemChi 5945
Leta 169
ggaemo 70
scan(afreeca) 38
soO 27
Noble 24
Bale 18
Dota 2
ROOTCatZ288
League of Legends
JimRising 633
Counter-Strike
m0e_tv723
Super Smash Bros
C9.Mang0439
Mew2King58
Heroes of the Storm
Khaldor87
Other Games
summit1g17381
kaitlyn43
Organizations
Other Games
gamesdonequick593
Counter-Strike
PGL426
Other Games
BasetradeTV0
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• RayReign 88
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Lourlo1751
• Rush1252
• Stunt350
Upcoming Events
Replay Cast
4h 12m
Wardi Open
5h 12m
Afreeca Starleague
5h 12m
Soma vs YSC
Sharp vs sSak
Monday Night Weeklies
11h 12m
OSC
19h 12m
Afreeca Starleague
1d 5h
Snow vs PianO
hero vs Rain
WardiTV Map Contest Tou…
1d 5h
GSL
1d 7h
Replay Cast
2 days
Kung Fu Cup
2 days
[ Show More ]
The PondCast
3 days
WardiTV Map Contest Tou…
3 days
Escore
4 days
WardiTV Map Contest Tou…
4 days
Korean StarCraft League
4 days
CranKy Ducklings
5 days
WardiTV Map Contest Tou…
5 days
IPSL
5 days
WolFix vs nOmaD
dxtr13 vs Razz
BSL
5 days
Sparkling Tuna Cup
6 days
WardiTV Map Contest Tou…
6 days
Ladder Legends
6 days
BSL
6 days
IPSL
6 days
JDConan vs TBD
Aegong vs rasowy
Replay Cast
6 days
Liquipedia Results

Completed

Escore Tournament S2: W2
RSL Revival: Season 4
NationLESS Cup

Ongoing

BSL Season 22
ASL Season 21
CSL 2026 SPRING (S20)
IPSL Spring 2026
StarCraft2 Community Team League 2026 Spring
Nations Cup 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
IEM Kraków 2026

Upcoming

Escore Tournament S2: W3
Acropolis #4
BSL 22 Non-Korean Championship
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
RSL Revival: Season 5
WardiTV TLMC #16
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
IEM Rio 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.