• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 00:36
CEST 06:36
KST 13:36
  • 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] Ro24 Preview: Siren's Call8[ASL22] Ro24 Preview: Summer's End9Serral wins HomeStory Cup 2915Serral wins Maestros of the Game 244ByuL, and the Limitations of Standard Play3
Community News
Stellar Fest TWO the Moon (Dec 16-20)8Weekly Cups (August 24-30): Patches' balance mod takes over2New 3v3 BGH Ladder (and more) on ShieldBattery!40Weekly Cups (August 17-23): Zerg dominate the week6Weekly Cups (August 10-16): SHIN doubles4
StarCraft 2
General
Weekly Cups (August 10-16): SHIN doubles Nexon wins bid to develop StarCraft IP content, distribute Overwatch mobile game SC4ALL II: SC2 Player Announcement 6/8 - Maru Weekly Cups (August 24-30): Patches' balance mod takes over How would you feel about frequent/monthly balance patches for SC2?
Tourneys
2026 GSTL Announcement Stellar Fest TWO the Moon (Dec 16-20) PIG STY FESTIVAL 8.0! (13 - 23 August) Sparkling Tuna Cup - Weekly Open Tournament 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
Mutation # 541 Binary Choice The PondCast: SC2 News & Results Mutation # 540 Dodge This Mutation # 539 Thunder Dome
Brood War
General
ASL22 General Discussion BGH Auto Balance -> http://bghmmr.eu/ BW General Discussion [Personal Project Share] Terran Defense v0.60 XUN appreciation thread
Tourneys
[Megathread] Daily Proleagues BSL LAN Party - Kraków 29-30 August - OPEN SIGNUPS [ASL22] Ro24 Group F Small VOD Thread 2.0
Strategy
Replay Review Process - What do you do? Game Theory for Starcraft Odyssey Mineral Stack Saturation Fighting Spirit mining rates
Other Games
General Games
[Maplestory Hardcore] Let's Play~!! General RTS Discussion Thread Stratus: Battle for the sky now on steam Early acc Nintendo Switch Thread Stormgate/Frost Giant Megathread
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 Power Rank TL Mafia Community Thread NeO.D_StephenKing vs This Guy From 1 Million Dance
Community
General
Things Aren’t Peaceful in Palestine US Politics Mega-thread Russo-Ukrainian War Thread Canadian Politics Mega-thread European Politico-economics QA Mega-thread
Fan Clubs
MarineLorD Fan Club The Creator Fan Club The ShoWTimE Fan Club
Media & Entertainment
Movie Discussion! Anime Discussion Thread
Sports
Football (Soccer) Thread TeamLiquid Health and Fitness Initiative For 2023 MLB/Baseball 2023 NBA General Discussion
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Northern Ireland Global Starcraft
Blogs
Regacy Esports: The Bh…
regacyesports
Violent Games and Crime Rate…
TrAiDoS
LOCKPICKING NOOB
LUCKY_NOOB
Cathedral Of CS And NY pizza a…
FuDDx
Please support my new stand…
Peanutsc
Customize Sidebar...

Website Feedback

Closed Threads



Active: 6963 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 States3707 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
Hyrule19252 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
2026 GSTL: Main Stage Day 4
CranKy Ducklings163
Discussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RuFF_SC2 226
ProTech87
SortOf 3
StarCraft: Brood War
Rain 2416
GuemChi 1764
sSak 105
Noble 20
Icarus 4
Dota 2
NeuroSwarm187
League of Legends
JimRising 733
Counter-Strike
Coldzera 1097
minikerr44
Super Smash Bros
hungrybox425
Mew2King79
Other Games
summit1g5001
XaKoH 316
C9.Mang0175
Livibee129
Maynarde105
ViBE96
[ Show 11 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• Migwel
StarCraft: Brood War
• RayReign 12
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Lourlo983
Other Games
• Scarra897
Upcoming Events
The PondCast
5h 24m
OSC
17h 54m
IntoTheTV X SOOP
1d 6h
CranKy Ducklings
2 days
Sparkling Tuna Cup
3 days
OSC
3 days
Shopify Rebellion Sundays
3 days
Mixu vs TBD
Spirit vs TBD
Clem vs TBD
Afreeca Starleague
4 days
Soma vs Shuttle
BeSt vs Rush
WardiTV Weekly
4 days
Afreeca Starleague
5 days
Leta vs ggaemo
Jaedong vs Queen
[ Show More ]
GSL
5 days
PiGosaur Cup
5 days
Kung Fu Cup
6 days
Replay Cast
6 days
Liquipedia Results

Completed

Proleague 2026-09-02
PiG Sty Festival 8.0
Light Tournament 2026

Ongoing

KCM Race Survival 2026 Season 3
K-JUNGMAN
ASL Season 22
Super Anchor Qualifying S3
CSL 2026 AUTUMN (S22)
RSL Revival: Season 6
Calamity Invitational
Big Dog Cup 2026 Div 1
BLAST Open Fall 2026
Esports World Cup 2026
Esports World Cup 2026: LCQ
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
Stake Ranked Episode 3
XSE Pro League 2026
IEM Cologne Major 2026

Upcoming

Acropolis #5
Acropolis #5 - TRS
Escore Tournament S3: King of Kings
Blizzard Classic Cup 2026
Acropolis #5 - GSA
Acropolis #5 - GSB
Acropolis #5 - GSC
HSC XXX
Stellar Fest 2: Lunar Cup
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
RSL Offline Finals
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
FISSURE Playground #3
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.