User sobbayi - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T05:58:07Zhttp://stackoverflow.com/feeds/user/11190http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1720282/what-information-can-a-nokia-wrt-widget-have-access-to-on-the-device1What Information can a Nokia WRT Widget have access to on the Device?sobbayi2009-11-12T06:22:28Z2009-11-13T15:31:14Z
<p>I intend to store a unique ID on every device that accesses a web service through a Nokia Web Runtime Widget. Now I know that these Widgets cannot Read/Write files on the devices so its not possible to have that id stored on the device.</p>
<p>Is there someone who can figure a way around this? I thought of having the widget get the IMEI number as an alternative and have the users usage info stored on the Server as an alternative or something like that but I am not sure whether the widget can get this information.</p>
<p>So my other question is, what methods would you use to store persistent/session data in general while using Nokia's WRT and does the Widget have access rights to retrieve the device's IMEI?</p>
http://stackoverflow.com/questions/1610210/c-graphic-drawing-library/1610230#16102300Answer by sobbayi for C++ Graphic Drawing Librarysobbayi2009-10-22T22:01:23Z2009-10-22T22:01:23Z<p>Though meant for 3D you can get to do 2D stuff with <a href="http://www.ogre3d.org/about/features" rel="nofollow">Ogre3D</a></p>
http://stackoverflow.com/questions/1588916/get-current-date-with-php-help/1589083#15890830Answer by sobbayi for get current date with PHP helpsobbayi2009-10-19T14:44:07Z2009-10-19T14:44:07Z<p>Do something like this:</p>
<pre><code>$result = mysql_query("select CURDATE()");
$mysqlDate = mysql_result($result, 0);
</code></pre>
<p>The above will give you the date in 'yyyy-mm-dd' format, then you need to get the date from PHP.</p>
<pre><code>$phpDate = date("Y-m-d");
</code></pre>
<p>This gives the same format as above.</p>
<p>You can then do something like this</p>
<pre><code>if ( $phpDate == $mysqlDate )
$dateToDisplay = 'Today';
else
$dateToDisplay = $mysqlDate;
echo $dateToDisplay;
</code></pre>
<p>This assumes of course that the date.timezone has been set in the ini file or you can call</p>
<p><a href="http://php.net/manual/en/function.date-default-timezone-set.php" rel="nofollow">date_default_timezone_set()</a> to avoid warnings in Strict mode.</p>
http://stackoverflow.com/questions/1579532/create-from-scratch-or-build-up-on-scratch/1587015#15870151Answer by sobbayi for Create from scratch, or build up on Scratch?sobbayi2009-10-19T04:49:57Z2009-10-19T04:49:57Z<p>If you are familiar with C/C++ then its worth learning QT. It should be easy for you to pick up and get going in no time. There are also plenty of examples that come with <a href="http://qt.nokia.com/downloads" rel="nofollow">the package</a> to get you started once you install it. From there you will be able to evaluate how best it can work for you.</p>
http://stackoverflow.com/questions/4845/good-x86-assembly-book/1584830#15848300Answer by sobbayi for Good x86 assembly booksobbayi2009-10-18T13:01:27Z2009-10-18T13:01:27Z<p>Here is another nice little tutorial resource that can be found here:
<a href="http://siyobik.info/index.php?document=x86%5F32bit%5Fasm" rel="nofollow">link text</a></p>
<p>It explains in not too many words, the nuts and bolts of assembly and writing Apps from yet another different perspective. you can never get too much reading done is what I say so in addition to the other great resources, this is one to add to your bookmarks.</p>
http://stackoverflow.com/questions/1345179/how-to-draw-two-detached-rectangles-in-directx-using-the-d3dpttrianglestrip-prim2How to Draw Two Detached Rectangles in DirectX using the D3DPT_TRIANGLESTRIP Primitive Typesobbayi2009-08-28T05:29:42Z2009-09-03T11:52:44Z
<p>I am new to DirectX and I am trying to draw two rectangles in one scene using <code>D3DPT_TRIANGLESTRIP</code>. One Rectangle is no problem but two Rectangles is a whole different ball game. Yes i could draw them using four triangles drawn with the <code>D3DPT_TRIANGLELIST</code> primitive type. My curiosity is on the technic involved using <code>D3DPT_TRIANGLESTRIP</code>.
Parts of the code i am using for one Rectangle using <code>D3DPT_TRIANGLESTRIP</code> is as follows:</p>
<pre><code>CUSTOMVERTEX recVertex[] = {
{ 10.0f, 10.0f, 0.10f, 1.0f, 0xffffffff, }, // x, y, z, rhw, color
{ 220.0f, 10.0f, 0.10f, 1.0f, 0xffffffff, },
{ 10.0f, 440.0f, 0.10f, 1.0f, 0xffffffff, },
{ 220.0f, 440.0f, 0.10f, 1.0f, 0xffffffff, },
};
if( FAILED( g_pd3dDevice->CreateVertexBuffer( 4 * sizeof( CUSTOMVERTEX ),
0, D3DFVF_CUSTOMVERTEX, D3DPOOL_DEFAULT, &g_pVB, NULL ) ) )
{
return E_FAIL;
}
</code></pre>
<p>More vital code...</p>
<pre><code>VOID* precVertex;
if( FAILED( g_pVB->Lock( 0, sizeof( recVertex ), ( void** )&pGameField, 0 ) ) )
{
return E_FAIL;
}
memcpy( precVertex, recVertex, sizeof( recVertex ) );
</code></pre>
<p>then Render like so...</p>
<pre><code>g_pd3dDevice->SetStreamSource( 0, g_pVB, 0, sizeof( CUSTOMVERTEX ) );
g_pd3dDevice->SetFVF( D3DFVF_CUSTOMVERTEX );
g_pd3dDevice->DrawPrimitive( D3DPT_TRIANGLESTRIP, 0, 2 );
</code></pre>
<p>Based on this model I could easily duplicate the code change the x and y values on the Custom Vertex and create another vertex buffer and it would work. </p>
<p>Personally i feel this is not the best way to go especially considering a situation when i have to draw say 100 rectangles or something like that. The thing is, I don't have other ideas. So my question is, what is the most efficient way to draw two Rectangles with <code>D3DPT_TRIANGLESTRIP</code>? Also is there a possible way of duplicating and transforming the current rectangle?</p>
http://stackoverflow.com/questions/1347048/mysql-text-column-being-truncated/1347164#13471642Answer by sobbayi for MySQL Text Column being truncated.sobbayi2009-08-28T13:55:31Z2009-08-28T13:55:31Z<p>You've got to remember that the TEXT has a Max of 65,535 characters. If your content exceeds 64K bytes it possible you are exceeding the limit of the field charaters. I suggest changing your column type to MEDIUMTEXT or LONGTEXT and see if that solves your problem.</p>
http://stackoverflow.com/questions/1275864/is-there-any-cool-project-written-in-stl/1281512#12815121Answer by sobbayi for Is there any cool project written in STL?sobbayi2009-08-15T09:17:52Z2009-08-15T09:17:52Z<p>And to add onto Araks answer. Just like Notepad++, <a href="http://www.webyog.com" rel="nofollow">SQLyog</a>, a mySQL client is another cool App built with pure Win32 API and also has the Scintilla editing component. it is therefore super lightweight and fast. The source code is available from their website.</p>
http://stackoverflow.com/questions/1165318/why-cant-i-keep-2-languages-in-my-head-at-the-same-time/1166120#11661202Answer by sobbayi for Why can't I keep 2 languages in my head at the same time?sobbayi2009-07-22T15:30:37Z2009-07-22T15:30:37Z<p>As I answer this i feel I need to make some assumptions here based on personal experience. I write code in C++ or c# on side projects while at work am forced to dangle between php and python
There was a time i was without a steady day job and kept pretty busy on side projects.</p>
<p>When i landed my day job the enthusiasm i had for my side projects dwindled based on two major factors... Like you i was at my job 8 to 9 hrs a day. </p>
<p>2ndly i had an increased steady source of additional revenue so the motivation to code just to earn a living drastically reduced and i found myself more and more opting not to take up any new projects after work coz i jus wasnt in the mood anymore. </p>
<p>I also discovered that with this new attitude i started making rookie mistakes when coding in c++ unlike before. After changing my attitude things picked up again.</p>
<p>My best guess is that you are going through the same thing that i was going through. I suggest you find new ways to get motivated once you leave work and you will find it easier to continue programming in java.</p>
http://stackoverflow.com/questions/604917/is-qt-worth-learning/1149642#11496421Answer by sobbayi for Is Qt worth learning?sobbayi2009-07-19T10:50:29Z2009-07-19T10:50:29Z<p>QT is the way to go. I started using it months ago when i needed a cross platform port of gui app i had done before for a client on windows. With QT i was able to learn the basics and come up with the gui in one afternoon and work on the rest. I actually delivered the port way ahead of my estimate.</p>
http://stackoverflow.com/questions/1075433/mysql-monitor-replication/1131010#11310101Answer by sobbayi for MySQL Monitor Replicationsobbayi2009-07-15T12:08:47Z2009-07-15T12:08:47Z<p>This Could be the tool you are looking for its called <a href="http://www.webyog.com/en/monyog%5Ffeature%5Flist.php" rel="nofollow">MONyog</a>. It does quit a neat job as far as MySQL admin operations are concerned and has a great maintenance cycle.</p>
http://stackoverflow.com/questions/70855/how-can-one-use-multi-threading-in-php-applications2How can one use multi threading in php applicationssobbayi2008-09-16T09:56:31Z2009-07-03T14:38:19Z
<p>Is there a realistic way of implementing a multi-threaded model in php whether truly or just simulating it. Some time back it was suggested that you can force the operating system to load another instance of the php executable and handle other simultaneous processes.</p>
<p>The problem with this is that when the php code finished executing the php instance remains in memory because there is no way to kill it from within php. so if you are simulating several threads you can imagine whats going to happen. So am still looking for a way multi-threading can be done or simulated effectively from within php. Any ideas?</p>
http://stackoverflow.com/questions/1064167/php-pagination-problem-displaying-correct-content-on-additional-pages/1064445#10644451Answer by sobbayi for PHP pagination - problem displaying correct content on additional pagessobbayi2009-06-30T15:44:01Z2009-07-01T05:25:58Z<p>Just at first glance i see your query is repeating itself from the beginning every time you run it, so that means every time you run it it searches from the beggining. you need a counter to tell it where to start from on the next page. something like:</p>
<pre><code>$sql = "SELECT * FROM studies WHERE niche = '{$_GET['niche']}' limit $startPoint, $offset";
</code></pre>
<p>that way the offset is the same as the number of items you want per page and the $startPoint is the point at which the search beggins at the next iteration.</p>
<p>somehting like this would work:</p>
<pre><code>if(!$startPoint){$startPoint = 0;}else{$startPoint = {$_GET['$startPoint'];}
</code></pre>
<p>within your code pass the start point back to the query and increasing it by the offset after each iteration.</p>
<p>Please bear in mind i've not taking into consideration stuff like injection, and the fact that the variable $num doesn't seem to come from anywhere in the 1st file. I cant see where you initialized it so as to test $a against it.</p>
<p>After looking at your code more in depth i found a few things that need to be changed to get it work in the least here is the changed code:</p>
<pre><code><?php
//Include the PS_Pagination class
include('includes/ps_pagination.php');
//Connect to mysql db
$conn = mysql_connect("localhost", "root", "root");
mysql_select_db('database',$conn);
$sql = "SELECT * FROM studies";// WHERE niche = '{$_GET['niche']}'";
//Create a PS_Pagination object
$pager = new PS_Pagination($conn,$sql,4,5);
//The paginate() function returns a mysql
//result set for the current page
$rs = $pager->paginate();
//Loop through the result set
while($row = mysql_fetch_assoc($rs)) {
// $a=0;
// while ($a < $num) {
// $id=mysql_result($result,$a,"id");
// $title=mysql_result($result,$a,"title");
// $strategies=mysql_result($result,$a,"strategies");
// $client=mysql_result($result,$a,"client");
// $copy=mysql_result($result,$a,"copy");
// $thumbmedia=mysql_result($result,$a,"thumbmedia");
// $niche=mysql_result($result,$a,"niche");
$id=$row['id'];
$title=$row['title'];
$strategies=$row['strategies'];
$client=$row['client'];
$copy=$row['copy'];
$thumbmedia=$row['thumbmedia'];
$niche=$row['niche'];
echo '<div class="container"><p class="subheadred"><a href="casestudy.php?id='.$id.'">'.$title.'</a></p></div>';
echo '<div class="containerstudy"><div class="column1"><p class="subheadsmall">Strategies</p><p class="sidebarred">'.$strategies.'</p>';
echo '<p class="subheadsmall">Client</p><p class="sidebargrey">'.$client.'</p></div>';
echo '<div class="column2"><p class="bodygrey">'.substr($copy, 0, 300).'<a href="casestudy.php?id='.$id.'">...more</a></p></div>';
echo '<div class="column3"><img src="images/'.$thumbmedia.'" height="160" /></div></div>';
// $a++;
// }
}
//Display the navigation
echo $pager->renderNav();
?>
</code></pre>
<p>Notice i have commented out some part that where not necessary</p>
<p>the variable $a was meaningless as it compared to $num which doesn't exist therefore nothing would show. Now these lines:</p>
<pre><code> // $id=mysql_result($result,$a,"id");
// $title=mysql_result($result,$a,"title");
// $strategies=mysql_result($result,$a,"strategies");
// $client=mysql_result($result,$a,"client");
// $copy=mysql_result($result,$a,"copy");
// $thumbmedia=mysql_result($result,$a,"thumbmedia");
// $niche=mysql_result($result,$a,"niche");
</code></pre>
<p>where also wrong as you are trying to get the result set from $result. at no place had you put the result set into $result the class you have imported does that and puts the result set into an identifier called $rs.</p>
<p>Since you are using <code>$row = mysql_fetch_assoc($rs)</code> to read through the result set then to get the variables all you need to do is get the column row through an array like this</p>
<pre><code>$id=$row['id'];
</code></pre>
<p>and so on. once you do that then the code should work as expected. However this brings us back to this:</p>
<pre><code>$sql = "SELECT * FROM studies WHERE niche = '{$_GET['niche']}'";
</code></pre>
<p>i had to get the last part out in that this variable is not getting passed back into the query string (seeing you are using get), the other problem is the 1st time you load the page this variable 'niche' doesn't exist so the 1st time you run the code you will get a blank page, unless this script is accessed through a link that passes in this variable. at this point i have left it commented out as am not sure what you were trying to do through niche.</p>
<p>Hope that helps.</p>
http://stackoverflow.com/questions/1063522/collecting-mysql-statistics/1063911#10639110Answer by sobbayi for collecting mysql statisticssobbayi2009-06-30T14:11:43Z2009-06-30T14:11:43Z<p>That would probably depend on what is determined as being new. Is it entries entered into the database in the last five minutes or 10 minutes etc? Or is it any record past a certain Auto ID?</p>
<p>If you are looking at time based method of determining what's new, you can have a field (probably of type datetime) that records the time when the record was inserted and to get the number, you simply do a...</p>
<p><code>select count(*) from table where currentTime > 'time-you-consider-to-be-new'</code></p>
<p>If you don't want to go by recording the time, you can use an auto increment key and simply keep track of the last inserted ID and count the ones that come after that at any given time window. so if one hour ago the ID was 10000 then a number of records have been inserted since then. You will need to count all records greater than 10000 and keep track of the last insert ID and repeat whenever needed.</p>
http://stackoverflow.com/questions/962175/compiling-with-ogre-mfc-in-debug-mode/962243#9622430Answer by sobbayi for Compiling with Ogre + MFC in _DEBUG modesobbayi2009-06-07T16:32:50Z2009-06-07T16:32:50Z<p>You may need to remove the MFC debug macro rather than the Ogre one. Check this article on the Ogre Wiki here titled <a href="http://www.ogre3d.org/wiki/index.php/CommonMistakes" rel="nofollow">Common Mistakes Ogre Wiki</a></p>
http://stackoverflow.com/questions/914372/varchar-vs-mediumtext/914424#9144244Answer by sobbayi for varchar vs. mediumtextsobbayi2009-05-27T07:36:30Z2009-05-27T07:36:30Z<p>I would suggest using mediumtext rather than splitting your data into two tables. The performance difference between varchar and mediumtext great enough to warrant you to split 1000 records into two tables.</p>
<p>A properly indexed tables should do the job well enough.</p>
http://stackoverflow.com/questions/638382/hardware-based-proxy-servers-vs-software-based-proxy-servers1Hardware Based Proxy Servers Vs Software Based Proxy Serverssobbayi2009-03-12T12:24:03Z2009-03-12T12:33:54Z
<p>I am doing some sourcing and have just realized that I am having trouble googling out any meaningful results on Hardware based HTTP Proxy Servers. It got me thinking whether there are any good Hardware based Proxy Servers for Office and/or Home use.</p>
<p>My Questions is which are the known good Hardware Based HTTP Proxy Servers in production today and secondly what are the pros and cons of using a Hardware based HTTP Proxy Server as opposed to a Software Based HTTP Proxy? </p>
http://stackoverflow.com/questions/636865/whats-the-best-programming-language-to-use-on-a-sucky-computer/637622#6376221Answer by sobbayi for What's the best programming language to use on a sucky computer?sobbayi2009-03-12T07:04:36Z2009-03-12T07:04:36Z<p>Another pretty light weight A <a href="http://www.bloodshed.net/devcpp.html" rel="nofollow">free C++ IDE</a> from bloodshed I have used for many years on a pentium 3 with 128mb RAM and Windows XP and it works pretty good.</p>
http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/635056#6350561Answer by sobbayi for What real life bad habits has programming given you?sobbayi2009-03-11T15:28:53Z2009-03-11T15:28:53Z<p>was once playing grand theft auto and my niece asked me to show here how to use the dish washer. not wanting to loose full attention of my game i unknowingly and hastily told her to "COMPILE AND RUN" THE DISHES... to be sure she got the right instructions she asked "run what?" and I answered "F5... F5... F5"!!!</p>
<p>She is now a programmer so we understand each other more nowadays.</p>
http://stackoverflow.com/questions/407448/the-application-that-helped-your-programming-the-most-in-2008/414382#4143820Answer by sobbayi for The Application that helped your programming the most in 2008sobbayi2009-01-05T20:26:09Z2009-01-05T20:26:09Z<p>I have to say:</p>
<ul>
<li>Visual Studio 2008</li>
<li><a href="http://www.aptana.com/" rel="nofollow">Aptana Studio</a></li>
<li>Eclipse</li>
</ul>
http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/340289#3402891Answer by sobbayi for What real life bad habits has programming given you?sobbayi2008-12-04T11:37:17Z2008-12-04T11:37:17Z<p>I double click the remote control whenever i finally sit down to watch "tube". Ooops i meant TV.</p>
http://stackoverflow.com/questions/330756/what-programming-tools-have-you-built-for-yourself/331028#3310283Answer by sobbayi for What programming tools have you built for yourself?sobbayi2008-12-01T14:31:45Z2008-12-01T14:31:45Z<p>i recently got tired of downloading, processing and presenting statistics from the company websites for the guys in marketing. I wrote this tool which they could install on their laptops. From there they could handle the whole process at the click of only one button. That's all the tool has, one button!!! How user friendly could you get for the guys down at marketing.</p>
http://stackoverflow.com/questions/325791/which-is-the-best-way-to-bi-directionally-synchronize-dynamic-data-in-real-time-u6Which is the best way to bi-directionally synchronize dynamic data in real time using mysqlsobbayi2008-11-28T13:37:40Z2008-11-28T14:13:53Z
<p>Here is the scenario. 2 web servers in two separate locations having two mysql databases with identical tables. The data within the tables is also expected to be identical in real time. </p>
<p>Here is the problem. if a user in either location simultaneously enters a new record into identical tables, as illustrated in the two first tables below, where the third record in each table has been entered simultaneously by the different people. The data in the tables is no longer identical. Which is the best way to maintain that the data remains identical in real time as illustrated in the third table below regardless of where the updates take place? That way in the illustrations below instead of ending up with 3 rows in each table, the new records are replicated bi-directionally and they are inserted in both tables to create 2 identical tables again with 4 columns this time?</p>
<pre><code>Server A in Location A
==============
Table Names
| ID| NAME |
|-----------|
| 1 | Tom |
| 2 | Scott |
|-----------|
| 3 | John |
|-----------|
Server B in Location B
==============
Table Names
| ID| NAME |
|-----------|
| 1 | Tom |
| 2 | Scott |
|-----------|
| 3 | Peter |
|-----------|
Expected Scenario
===========
Table Names
| ID| NAME |
|-----------|
| 1 | Tom |
| 2 | Scott |
| 3 | Peter |
| 4 | John |
|-----------|
</code></pre>
http://stackoverflow.com/questions/319809/escaping-html-inside-comment-tags/319846#3198460Answer by sobbayi for escaping html inside comment tagssobbayi2008-11-26T05:36:49Z2008-11-26T05:52:18Z<p>There's no universal working way to escape those characters in html unless the - characters are in multiples of four so if you do -- it wont work in firefox but ---- will work. So it all depends on the browser. For Example, looking at Internet Explorer 8, it is not a problem, those characters are escaped properly. The same goes for Googles Chrome... However Firefox even the latest browser (3.0.4), it doesn't handle escaping of these characters well.</p>
http://stackoverflow.com/questions/220609/what-got-you-started-in-programming/221535#2215350Answer by sobbayi for What got you started in programming?sobbayi2008-10-21T11:37:18Z2008-10-21T11:37:18Z<p>It was fate. a cross between my zenith, the game Nibbles and Qbasic. I played the game so much and mastered it and just had to make it harder... well not really for me but for all the neighbors kids that kept coming home to play it. So i made the game run much faster when they played it but it was also a breeze for me with a simple cheat programmed into it.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203794#20379445Answer by sobbayi for What things didn't you know you needed but are now very glad you have?sobbayi2008-10-15T05:23:20Z2008-10-15T11:29:54Z<p>code & syntax highlighting and coloring in modern text editors and IDEs</p>
http://stackoverflow.com/questions/173212/mysqlrealescapestring-leaving-slashes-in-mysql/173234#173234-3Answer by sobbayi for mysql_real_escape_string() leaving slashes in MySQLsobbayi2008-10-06T04:57:32Z2008-10-06T04:57:32Z<p><code>mysql_real_escape_string($str);</code> is supposed to do exactly that. it is meant to add backslashes to special characters especially when you want to pass the query to mysql. Take note that it also takes into account the character set of mysql.</p>
<p>For safer coding practices it would be good to edit your code and use <code>stripslashes()</code> to read out the data and remove the slashes.</p>
http://stackoverflow.com/questions/173200/mysql-connection-problem/173218#1732181Answer by sobbayi for MYSQL connection problemsobbayi2008-10-06T04:38:45Z2008-10-06T04:38:45Z<p>You most likely havent connect to the database in the 1st place. To connect to mysql database using php with the mysql (not mysqli) extention you need to call these functions:</p>
<pre><code>mysql_connect ( $myserver , $username , $password )
</code></pre>
<p>thats as simple as it gets. then you need to select the databases like:</p>
<pre><code>mysql_select_db ( $database_name )
</code></pre>
<p>thats as simple as it gets. These funtions need to be called before attempting to use the database.</p>
<p>The reason why you are getting this error:</p>
<pre><code>'ODBC'@'localhost'
</code></pre>
<p>is because you have not connected to he database at all. You can find more documentation here <a href="http://www.php.net/manual/en/" rel="nofollow">http://www.php.net/manual/en/</a></p>
http://stackoverflow.com/questions/172975/what-kind-of-light-environment-do-you-prefer-to-work-in/173206#1732062Answer by sobbayi for What kind of light environment do you prefer to work in?sobbayi2008-10-06T04:29:59Z2008-10-06T04:29:59Z<p>When i'm at home, I prefer working n total darkness in the wee hours of the night. No phone calls, nobody knocking on my door, no ambient noise. other than that when am in the office i use natural light as i have a huge window that supplies enough night into my office.</p>
http://stackoverflow.com/questions/99406/what-is-the-easiest-flv-player-for-embedding-video-on-a-website/99607#99607-1Answer by sobbayi for What is the easiest FLV player for embedding video on a website?sobbayi2008-09-19T04:19:12Z2008-09-30T08:44:00Z<p>I have tried many FLV players and i came across Applian FLV Player. this one has got to be my best. it is light weight, its free comes with an optional audio recorder and no spyware or such. <a href="http://www.applian.com/flvplayer/" rel="nofollow">check it out here</a></p>
<p>With this however you will not be able to embed it into your regular web page.</p>
http://stackoverflow.com/questions/1719055/just-want-to-know-what-this-error-message-really-meansComment by sobbayi on Just Want to know what this error message really means!sobbayi2009-11-12T00:36:04Z2009-11-12T00:36:04ZI see you have made the correction so you are already correct unless you havent conveyed your correction wellhttp://stackoverflow.com/questions/962747/most-shameful-awesome-language-hackComment by sobbayi on Most shameful/awesome language hacksobbayi2009-10-19T04:36:56Z2009-10-19T04:36:56Zthis is awesomehttp://stackoverflow.com/questions/1586932/what-is-a-neat-way-of-breaking-out-of-many-for-loops-at-once/1586941#1586941Comment by sobbayi on What is a neat way of breaking out of many for loops at once?sobbayi2009-10-19T04:31:24Z2009-10-19T04:31:24Zi voted up though he clearly is not using PHP in his examplehttp://stackoverflow.com/questions/1475496/team-development-vs-individual-development/1475517#1475517Comment by sobbayi on Team Development Vs Individual Development sobbayi2009-09-25T06:26:39Z2009-09-25T06:26:39Zyeah. i agree with you. you have 2... well 4 eyes reviewing the code, unless you have one-eyed developers... probably ex-pirateshttp://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/76492#76492Comment by sobbayi on What is the single most effective thing you did to improve your programming skills?sobbayi2009-09-11T12:34:35Z2009-09-11T12:34:35ZI am totally with this one. i have learned a whole lot too when tutoring, especially stuff i wasnt sure about beforehttp://stackoverflow.com/questions/1397437/how-to-make-a-form-behave-like-windows-taskbar-using-c/1397452#1397452Comment by sobbayi on How to make a form behave like windows taskbar using c#sobbayi2009-09-09T04:08:56Z2009-09-09T04:08:56Znot an answer. Btw a taskbar can be locked so as not to make it resizablehttp://stackoverflow.com/questions/1392124/am-i-too-old-to-became-software-developer/1392184#1392184Comment by sobbayi on Am I too old to became software developer?sobbayi2009-09-08T08:52:54Z2009-09-08T08:52:54ZI will be at coding business for ages to come and I'll keep getting better at ithttp://stackoverflow.com/questions/1345179/how-to-draw-two-detached-rectangles-in-directx-using-the-d3dpttrianglestrip-prim/1345198#1345198Comment by sobbayi on How to Draw Two Detached Rectangles in DirectX using the D3DPT_TRIANGLESTRIP Primitive Typesobbayi2009-08-28T11:20:30Z2009-08-28T11:20:30ZOk this is what i was actually looking for. Its given me great insight. only one thing remember to change the 4 to 8 since we now have 8 vertices in the CreateVertexBuffer function.http://stackoverflow.com/questions/1317871/finished-writing-a-poker-hand-evaluator-looking-for-a-new-projectComment by sobbayi on finished writing a poker hand evaluator looking for a new projectsobbayi2009-08-23T05:56:32Z2009-08-23T05:56:32ZWhats the qestion again?http://stackoverflow.com/questions/357233/what-dead-programming-languages-do-you-know/357423#357423Comment by sobbayi on What dead programming languages do you know?sobbayi2009-08-19T06:00:23Z2009-08-19T06:00:23Zi still have a Zenith Data Systems machine with this.http://stackoverflow.com/questions/1275864/is-there-any-cool-project-written-in-stlComment by sobbayi on Is there any cool project written in STL?sobbayi2009-08-15T09:13:32Z2009-08-15T09:13:32Zmaybe the question should be any cool projects built in c++ without STL... my two centshttp://stackoverflow.com/questions/1220572/website-wont-display-on-ie-but-source-code-is-viewableComment by sobbayi on Website won't display on IE, but source code is viewable.sobbayi2009-08-03T03:39:21Z2009-08-03T03:39:21ZIt also doesnt show in my opera browser.... Switching to firefox nowhttp://stackoverflow.com/questions/1093968/what-is-a-class-and-object-in-c/1093994#1093994Comment by sobbayi on what is a Class and Object in C++?sobbayi2009-07-15T11:32:41Z2009-07-15T11:32:41Z@Jay. you an safely accept this answer already.http://stackoverflow.com/questions/1083898/preventing-buffer-overflow-in-c-cComment by sobbayi on Preventing buffer overflow in C/C++sobbayi2009-07-15T11:22:47Z2009-07-15T11:22:47ZYeah Seriously, i dont see a buffer overflow here!http://stackoverflow.com/questions/1064167/php-pagination-problem-displaying-correct-content-on-additional-pages/1064445#1064445Comment by sobbayi on PHP pagination - problem displaying correct content on additional pagessobbayi2009-07-01T04:18:43Z2009-07-01T04:18:43Zlet me recreate your scenario on my end, run it and let you know what to do.