User Echo - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T16:57:55Z http://stackoverflow.com/feeds/user/13778 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1843219/how-to-transition-from-c-to-python/1847933#1847933 0 Answer by Echo for how to transition from c# to python? Echo 2009-12-04T16:04:51Z 2009-12-04T16:04:51Z <p>Use a good editor like emacs or vim.</p> http://stackoverflow.com/questions/1839289/why-should-functions-always-return-the-same-type/1840730#1840730 3 Answer by Echo for Why should functions always return the same type? Echo 2009-12-03T15:39:35Z 2009-12-03T15:39:35Z <p>I personally think it is perfectly fine for a function to return a tuple or None. However, a function should return at most 2 different types and the second one should be a None. A function should never return a string and list for example.</p> http://stackoverflow.com/questions/1839767/mysql-setting-that-allows-to-be-equal-to-null-or-0/1840260#1840260 0 Answer by Echo for MySql setting that allows "" to be equal to null or 0? Echo 2009-12-03T14:37:52Z 2009-12-03T14:37:52Z <p>Simply dont set the parent_id value.</p> <p><code>insert into some_table (title) values ("Some string")</code></p> http://stackoverflow.com/questions/1785986/how-to-get-amazon-seller-central-orders-programmatically 0 How to get Amazon Seller Central orders programmatically? Echo 2009-11-23T21:09:14Z 2009-11-23T21:34:38Z <p>We have been manually been keying Amazon orders into our system and would like to automate it. However, I can't seem to figure out how to go about it. Their documentation is barely there.</p> <p>There is:</p> <ul> <li>Amazon Inventory Management (AIM) API: That is supposed to manage orders and inventory</li> <li>Event Notification Service (ENS) API: Get order notifications</li> <li>Seller Central SOAP API: Upload inventory and manage orders</li> <li>Amazon Marketplace Web Service (Amazon MWS): Manage inventory and orders</li> </ul> <p>So, um, which do I use? Using REST instead of SOAP is very much preferred. Can anyone point me out some better documentation/examples?</p> http://stackoverflow.com/questions/1650627/designing-the-storage-for-a-very-large-game-world 5 Designing the storage for a very large game world. Echo 2009-10-30T15:49:22Z 2009-11-02T12:02:29Z <p>I'm starting up game programming again. 10 years ago I was making games in qbasic and I havn't done any game programming since, so I am quite rusty. I have been programming all the time though, I am web developer/DBA/admin now. I have several questions, but I'm going to limit it to one per post.</p> <p>The game I am working on is going to be large, very large world. It is going to be somewhat like <a href="http://www.jmp.fi/~smaarane/urw.html" rel="nofollow">URW</a>, but a even larger world and more like an 'RPG'.</p> <p>What I have been trying to decide, is what is the best way layout the map, save it, and access it. I thought up the idea of using sqlite to store the data. I could then even use the sqlite db as the save file for the game, nice and easy. </p> <p>Anyone have any tips about how I should go about this or ideas for other storage methods?</p> <p>Here are the requirements for my game:</p> <ul> <li>I need full random access to spot in the game world (the NPC's, monsters, animals will all be active all the time).</li> <li>I'm using Stackless Python 3.1, options are quite limited unless I do a lot of work.</li> <li>Needs to be able to handle a very large world.</li> <li>Concurrency support would be a plus, but I don't think I will need it.</li> </ul> http://stackoverflow.com/questions/1586147/how-to-generate-random-greenish-colors 16 How to generate random 'greenish' colors Echo 2009-10-18T22:00:37Z 2009-10-19T20:19:33Z <p>Anyone have any suggestions on how to make randomized colors that are all greenish? Right now I'm generating the colors by this:</p> <pre><code>color = (randint(100, 200), randint(120, 255), randint(100, 200)) </code></pre> <p>That mostly works, but I get brownish colors a lot. </p> http://stackoverflow.com/questions/1566936/easy-pretty-printing-of-floats-in-python/1566995#1566995 3 Answer by Echo for Easy pretty printing of floats in python? Echo 2009-10-14T15:15:42Z 2009-10-14T15:15:42Z <p>I believe that Python 3.1 will print them nicer by default, without any code changing. But that is useless if you use any extensions that haven't been updated to work with Python 3.1</p> http://stackoverflow.com/questions/81584/what-ide-to-use-for-python/84566#84566 1 Answer by Echo for What IDE to use for Python Echo 2008-09-17T15:34:59Z 2009-10-06T09:40:54Z <p><a href="http://dabodev.com/" rel="nofollow">Dabo</a> has its own IDE. It was decent if you wanted to use the dabo library to help with wxWidgets in Python. I stopped using it since I've moved to doing web development.</p> <p>In Windows, I use Notepad++. In Linux, I am still trying to figure out what I like the most. I'm trying out Eric4 right now.</p> http://stackoverflow.com/questions/1456166/problems-with-custom-alert-box-via-jqueryid-dialog 0 Problems with custom alert box via jqueryid dialog Echo 2009-09-21T18:50:01Z 2009-09-21T19:26:30Z <p>I've been working on a custom alert box that has the same style as the rest of the website via jquery-ui. It was working well except that it wouldn't open more than once. As I was trying to fix that, I broke the whole thing some how, and now I get this error: </p> <pre><code>Node cannot be inserted at the specified point in the hierarchy" code: "3 </code></pre> <p>Below is the code. doAlert() is a simple replacement for alert(). Later it will have more features. show_support() creates dialog box in a similar way to doAlert(), except that it works perfectly.</p> <pre><code>function doAlert(msg, title) { var alert_box = $('body').append('&lt;div id="alert_box" class="centered" style="padding:.5em;vertical-align:middle;display:none;"&gt;&lt;p&gt;' + msg + '&lt;/p&gt;&lt;/div&gt;'); title = typeof(title) != 'undefined' ? title : 'Message'; alert_box.dialog({ modal: true, title: title, width: 400, height: 150, resizable: false, overlay: { opacity: 0.5, background: 'black' }, buttons: { 'Ok': function() { $(this).dialog('close'); } }, close: function() { $(this).dialog('destroy').remove(); } }); } function show_support() { var dialog = $('body').append('&lt;div id="dialog_support" style="display:none;"&gt;&lt;/div&gt;'); $('#dialog_support').load('/supporttracker', {action:'get_dialog'}) .dialog({ modal: true, title: "Support", width: 620, height: 400, buttons: { "Send": function() { if (!$('#issue_message').val()) { doAlert('Your message cannot be blank. Please enter your message.'); return; } $.ajax({ type: 'POST', url: '/supporttracker', data: 'action=add_simple&amp;'+$('#issue').serialize(), success: function(msg){ doAlert('Thank you. We will get to your question/issue as soon as we can. Usualy within 24 hours.'); $('#dialog_support').dialog('close'); }, error: function(XMLHttpRequest, textStatus, errorThrown) { doAlert('An error accured: '+textStatus); } }); }, "Cancel": function() {$(this).dialog('close');} }, close: function() { $(this).remove(); } }); } </code></pre> <p>Anyone have any ideas of how I messed up doAlert?</p> http://stackoverflow.com/questions/1448767/help-optimizing-mysql-query 0 Help optimizing MySQL query. Echo 2009-09-19T15:27:26Z 2009-09-19T17:57:08Z <p>(Using MySQL 4.1.22)</p> <p>I can't get this query of mine to use an index on a large table(200k+ rows), it is doing a full table scan on it. The query takes about 1.2 seconds right now. I want to get it to less than .2 seconds if possible.</p> <p>Here is my query:</p> <pre><code>SELECT st_issues.issue_id, st_issues.cat_id,st_categories.name AS cat_name, st_issues.status_id,st_statuses.name AS status_name, st_issues.priority_id,st_priorities.name AS priority_name,st_priorities.color AS color, st_issues.assigned_cid,assigned_u.firstname,assigned_u.lastname,assigned_u.screenname, message, rating, created_by_email,created_by_cid,created_by_uid,by_user.firstname AS by_firstname,by_user.lastname AS by_lastname,by_user.screenname AS by_screenname, st_issues.browser,from_url,created_by_store,created,st_issues.stamp FROM st_issues JOIN st_categories ON (st_issues.cat_id=st_categories.cat_id) JOIN st_statuses ON (st_issues.status_id=st_statuses.status_id) JOIN st_priorities ON (st_issues.priority_id=st_priorities.priority_id) LEFT JOIN users AS assigned_u ON (assigned_u.cid=st_issues.assigned_cid) LEFT JOIN users AS by_user ON (by_user.uid=st_issues.created_by_uid) LEFT JOIN st_issue_changes ON (st_issues.issue_id=st_issue_changes.issue_id AND change_id=0) WHERE st_issues.assigned_cid=0 </code></pre> <p>The results of explain:</p> <pre><code>1, 'SIMPLE', 'st_issues', 'ALL', '', '', , '', 4, 'Using where' 1, 'SIMPLE', 'st_categories', 'eq_ref', 'PRIMARY', 'PRIMARY', 1, 'sg.st_issues.cat_id', 1, '' 1, 'SIMPLE', 'st_priorities', 'eq_ref', 'PRIMARY', 'PRIMARY', 1, 'sg.st_issues.priority_id', 1, '' 1, 'SIMPLE', 'assigned_u', 'ref', 'cid', 'cid', 8, 'sg.st_issues.assigned_cid', 1, '' 1, 'SIMPLE', 'st_statuses', 'ALL', 'PRIMARY', '', , '', 4, 'Using where' 1, 'SIMPLE', 'by_user', 'ALL', '', '', , '', 221623, '' 1, 'SIMPLE', 'st_issue_changes', 'eq_ref', 'PRIMARY', 'PRIMARY', 6, 'sg.st_issues.issue_id,const', 1, '' </code></pre> <p>Obviously the problem is with the join on 'by_user' since it isn't using an index.</p> <p>Here is some of the definition of the 'users' table:</p> <pre><code>CREATE TABLE `users` ( `cid` double unsigned NOT NULL auto_increment, `uid` varchar(20) NOT NULL default '', ... `firstname` varchar(20) default NULL, `lastname` varchar(20) default NULL, ... PRIMARY KEY (`uid`), ... ) ENGINE=InnoDB </code></pre> <p>Anyone have any ideas of why it is not using the primary key in the join?<br /> Anyone have any ideas or hints of how to speed up this query more?</p> <p>(I can add the table definitions of the other tables if needed/wanted)</p> <p>Edit:</p> <p>Here is the table definition for st_issues:</p> <pre><code>CREATE TABLE `st_issues` ( `issue_id` int(10) unsigned NOT NULL auto_increment, `cat_id` tinyint(3) unsigned NOT NULL default '0', `status_id` tinyint(3) unsigned NOT NULL default '0', `priority_id` tinyint(3) unsigned NOT NULL default '0', `assigned_cid` int(10) unsigned NOT NULL default '0', `rating` tinyint(4) default NULL, `created_by_email` varchar(255) NOT NULL default '', `created_by_cid` int(10) unsigned NOT NULL default '0', `created_by_uid` varchar(20) NOT NULL default '', `created_by_store` tinyint(3) unsigned NOT NULL default '0', `browser` varchar(255) NOT NULL default '', `from_url` varchar(255) NOT NULL default '', `created` datetime NOT NULL default '0000-00-00 00:00:00', `stamp` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`issue_id`), KEY `idx_create_by_cid` (`created_by_cid`), KEY `idx_create_by_uid` (`created_by_uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; </code></pre> http://stackoverflow.com/questions/378556/table-problems-with-webkit 0 Table problems with WebKit Echo 2008-12-18T17:24:55Z 2009-08-08T23:00:01Z <p>I'm having trouble getting this code to show up correctly in WebKit browsers(chrome/safari). It looks fine in IE6, IE7, and FireFox. </p> <pre><code>&lt;table width="100%"&gt; &lt;tr&gt; &lt;td rowspan="2" style="vertical-align:middle;"&gt; &lt;a href="http://http://{$smarty.const.DOMAIN}/company/a_cherry_on_top/line/gift_cards/?v=s2"&gt;&lt;img src="/i/thumbnails/acotgc25sm.gif" alt="Gift Certificate"/&gt;&lt;/a&gt; &lt;/td&gt; &lt;td style="vertical-align:middle;"&gt; &lt;a href="http://{$smarty.const.DOMAIN}/article?a=2044" target="_top"&gt;Wishlist&lt;/a&gt; &lt;/td&gt; &lt;td style="vertical-align:middle;"&gt; &lt;a href="http://{$smarty.const.DOMAIN}/article?a=2125" target="_top"&gt;Link to Us&lt;/a&gt; &lt;/td&gt; &lt;td style="vertical-align:middle;"&gt; &lt;a href="http://www.shareasale.com/shareasale.cfm?merchantID=8362" target="_blank"&gt;Affiliate Program&lt;/a&gt; &lt;/td&gt; &lt;td style="vertical-align:middle;"&gt; &lt;a href="http://{$smarty.const.DOMAIN}/article?a=1521" target="_top"&gt;Privacy&lt;/a&gt; &lt;/td&gt; &lt;td style="vertical-align:middle;"&gt; &lt;a href="http://{$smarty.const.DOMAIN}/article?a=1395" target="_top"&gt;Guarantee&lt;/a&gt; &lt;/td&gt; &lt;td rowspan="2" style="width:160px;"&gt; &lt;script src="http://www.gmodules.com/ig/ifr?url=http://www.google.com/ig/modules/translatemypage.xml&amp;up_source_language=en&amp;w=160&amp;h=60&amp;title=&amp;border=&amp;output=js"&gt;&lt;/script&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td style="vertical-align:middle;"&gt; &lt;a href="http://{$smarty.const.DOMAIN}/article?a=3069" target="_top"&gt;About Us&lt;/a&gt; &lt;/td&gt; &lt;td style="vertical-align:middle;"&gt; &lt;a href="http://{$smarty.const.DOMAIN}/article?a=1467" target="_top"&gt;Shipping&lt;/a&gt; &lt;/td&gt; &lt;td style="vertical-align:middle;"&gt; &lt;a href="http://{$smarty.const.DOMAIN}/article?a=12342383" target="_top"&gt;Why Buy From Us&lt;/a&gt; &lt;/td&gt; &lt;td style="vertical-align:middle;"&gt; &lt;a href="http://{$smarty.const.DOMAIN}/article?a=1397" target="_top"&gt;Contact Us&lt;/a&gt; &lt;/td&gt; &lt;td style="vertical-align:middle;"&gt; &lt;a href="http://{$smarty.const.DOMAIN}/help" target="_top"&gt;Help&lt;/a&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; </code></pre> <p>The problem is that WebKit makes the top row very small and the bottom row fill in the rest of the space instead of each row having an equal height.</p> <p>Anyone have any ideas of how to make it show up how I want it to in WebKit based browsers?</p> http://stackoverflow.com/questions/1121823/how-to-style-an-anchor-tag-to-look-like-a-button-with-the-same-height-as-the-butt 0 How to style an anchor tag to look like a button with the same height as the button? Echo 2009-07-13T20:23:36Z 2009-07-18T22:36:48Z <p>I am working on changing the buttons on my site to be styled by a jquery ui theme. Mostly everything is going good with it. </p> <p>But there are a few anchor tags that I wanted styled as buttons. I added the classes and it styles it how I want it except that the height is not the same. Is there any way to make the styled anchor tag have the same height as the styled button tag?</p> <p>Here is some of my css:</p> <pre><code>.mine-button { outline: 0; margin: 0 4px 0 0; padding: 0 1em; height: 2em; text-decoration: none !important; cursor: pointer; position: relative; text-align: center; -moz-border-radius: 15px; -webkit-border-radius: 15px } </code></pre> <p>An example using it on a button:</p> <pre><code>&lt;button class="mine-button ui-state-default" onclick="stuff here"&gt; &lt;img src="/i_common/basket_add_24.gif" border="0" align="absmiddle"/&gt; Add &lt;/button&gt; </code></pre> <p>An example using it on an achor:</p> <pre><code>&lt;a class="mine-button ui-state-default" href="bla"&gt; &lt;img src="/i_common/CD_down_24.gif" border="0" align="absmiddle"/&gt; Free &lt;/a&gt; </code></pre> http://stackoverflow.com/questions/869456/re-sort-orders-to-improve-warehouse-efficiency 2 Re-sort orders to improve warehouse efficiency Echo 2009-05-15T15:48:13Z 2009-05-15T20:20:15Z <p>I am trying to optimize how orders are filled at my work. Right now, an employee just grabs the latest 16 orders(sometimes 14 or 18) and fills them. </p> <p>I am trying to change it so that instead of simply going by the latest list of orders, that it orders them so each batch has order in similar locations. But I can't figure out how I should go about sorting the list. Below is a simplified example of what I want to do.</p> <p>Example Order List:</p> <ul> <li>order 1: 2 products in location E, 5 products in location Q</li> <li>order 2: 1 in location Z, 20 in location B</li> <li>order 3: 1 in location Y, 1 in location N</li> <li>order 4: 3 in location B</li> <li>order 5: 1 in location A, 10 in location E</li> <li>order 6: 1 in location A, 1 in location B, 5 in location Q</li> </ul> <p>After sorting the list, I want order 2 and 4 next to each other, 1 and 6 next to each other, etc. Something like this:</p> <ul> <li>order 1: 2 products in location E, 5 products in location Q</li> <li>order 6: 1 in location A, 1 in location B, 5 in location Q</li> <li>order 2: 1 in location Z, 20 in location B</li> <li>order 4: 3 in location B</li> <li>order 3: 1 in location Y, 1 in location N</li> <li>order 5: 1 in location A, 10 in location E</li> </ul> <p>I am using PHP, but any examples or hints in any language would be greatly helpfully.</p> <p>Edit:</p> <p>Let me try to explain this in better detail. Employees grab batches of orders and they they go fill the orders using a PDA with a barcode scanner. Our warehouse is set up so that location A is first, B is next and so on. There is no backtracking involved at all. Generally, they have to walk the whole warehouse to fill the batch of orders because on average, the 16 orders will have products from all of the locations. </p> <p>If I change the sorting of which orders are being filled next from the date of the order to the location of the products of the order, then a batch of orders might only have locations A-G and wont have to walk the whole warehouse.</p> <p><br/>Another Edit(I really need to get better at posting good details)</p> <p>Here is our current process:</p> <ol> <li>Picker grabs a cart with 16 buckets on it</li> <li>Picker scans the 16 unique bar codes from the buckets onto a webpage via a PDA(with scanner and wifi) and a 'picking ticket' is created</li> <li>The products are ordered by location (the picker only walks by any product once)</li> <li>The special webpage then tells the employee which product and how many to grab and they scan the bar code on the product</li> <li>Then it says which bucket to place the product in and they they scan the bar code on the bucket they are putting the product in</li> <li>After all the products are picked, Picker goes to the shipping station and scans in one of the buckets into a VB program (yes, eww I know. Someday that will get converted)</li> <li>Receipts are printed for all the orders in that 'picking ticket' and are placed into the correct bucket</li> <li>Each bucket is emptied and packaged up</li> <li>Picker now shipper places packaged order on a scale and scans the bar code on the receipt into a program.</li> <li>The correct postage is printed automatically and the order is marked as shipped and the customer is sent an email with tracking information</li> <li>Shipper puts postage label on the page, seals it up and puts it in the pile of finished packages</li> <li>At the end of the day, USPS and UPS pick up the shipments.</li> </ol> <p>I should also note, that a lot/most of our products are small and a 16 order 'picking ticket' can have 500-800 individual pieces. Right now, we have about 28,000 different products in stock.</p> http://stackoverflow.com/questions/674739/benchmarking-php-vs-pylons 1 benchmarking PHP vs Pylons Echo 2009-03-23T18:52:47Z 2009-03-23T19:49:18Z <p>I want to benchmark PHP vs Pylons. I want my comparison of both to be as even as possible, so here is what I came up with:</p> <ul> <li>PHP 5.1.6 with APC, using a smarty template connecting to a MySQL database</li> <li>Python 2.6.1, using Pylons with a mako template connecting the the same MySQL database</li> </ul> <p>Is there anything that I should change in that setup to make it a more fair comparison?</p> <p>I'm going to run it on a spare server that has almost no activity, 2G of ram and 4 cores.</p> <p>Any suggestions of how I should or shouldn't benchmark them? I plan on using ab to do the actual benchmarking.</p> <h3>Related</h3> <ul> <li><a href="http://stackoverflow.com/questions/77086/which-is-faster-python-webpages-or-php-webpages">Which is faster, python webpages or php webpages?</a></li> </ul> http://stackoverflow.com/questions/532520/tabs-in-html-mode-in-emacs 0 Tabs in HTML mode in emacs. Echo 2009-02-10T14:24:57Z 2009-02-10T15:06:53Z <p>So I've started using emacs and I love it. However, I'm a tab person. Unless I'm working on a project that is already using spaces, I use tabs. I mostly do php and html work. I've got tabs in php working well. But I can't figure out how to have html mode use tabs instead of two spaces.</p> <p>Here is what I have so far:</p> <pre><code>(setq c-default-style "python") (setq-default c-basic-offset 4 tab-width 4 indent-tabs-mode t) </code></pre> <p>What can I set so that html mode will use tabs?</p> <p>Edit: Using Emacs 22.3.1</p> http://stackoverflow.com/questions/77086/which-is-faster-python-webpages-or-php-webpages -2 Which is faster, python webpages or php webpages? Echo 2008-09-16T21:05:26Z 2009-02-04T06:28:30Z <p>Does anyone know how the speed of pylons(or any of the other frameworks) compares to a similar website made with php? I know that serving a python base webpage via cgi is slower than php because of its long start up every time.</p> <p>I enjoy using pylons and I would still use it if it was slower than php. But if pylons was faster than php, I could maybe, hopefully, eventually convince my employer to allow me to convert the site over to pylons.</p> http://stackoverflow.com/questions/309135/komodo-edit-and-notepad-pros-cons-python-dev/314865#314865 4 Answer by Echo for Komodo Edit and Notepad++ ::: Pros & Cons ::: Python dev Echo 2008-11-24T17:35:18Z 2008-11-24T17:35:18Z <p>I just downloaded and started using Komodo Edit. I've been using Notepad++ for awhile. Here is what I think about some of the features:</p> <p>Komodo Edit Pros:</p> <ul> <li>You can jump to a function definition, even if it's in another file (I love this)</li> <li>There is a plugin that displays the list of classes, functions and such for the current file on the side. Notepad++ used to have a plugin like this, but it no longer works with the current version and hasn't been updated in a while.</li> </ul> <p>Notepad++ Pros:</p> <ul> <li>If you select a word, it will highlight all of that word (Makes it easier to find misspellings)</li> <li>When working with HTML, when the cursor is on/in a tag, the starting and ending tags are both highlighted</li> </ul> <p>Anyone know if either of those last 2 things is possible in Komodo Edit?</p> http://stackoverflow.com/questions/302814/how-would-you-do-realtime-data-transfer-between-databases-when-data-is-updated/302857#302857 0 Answer by Echo for How would you do realtime data transfer between databases when data is updated? Echo 2008-11-19T18:21:12Z 2008-11-19T18:21:12Z <p>Are they in different physical locations? Why can't you use a single database and only allow app2 to access the subset of data that it is allowed to?</p> http://stackoverflow.com/questions/299870/how-to-center-an-image-horizontally-and-align-it-to-the-bottom-of-the-container 1 How to center an image horizontally and align it to the bottom of the container? Echo 2008-11-18T19:37:51Z 2008-11-18T20:00:34Z <p>How can I center an image horizontally and aligned to the bottom of the container at the same time? </p> <p>I have been able to center the image horizontally by its self. I have also been able to align the bottom of the container by its self. But I have not been able to do both at the same time. </p> <p>Here is what I have:</p> <pre><code>.image_block { width: 175px; height: 175px; position: relative; margin: 0 auto; } .image_block a img { position: absolute; bottom: 0; } &lt;div class="image_block"&gt; &lt;a href="..."&gt;&lt;img src="..." border="0"&gt;&lt;/a&gt; &lt;/div&gt; </code></pre> <p>That code aligns the image to the bottom of the div. What do I need to add/change to make it also center the image horizontally inside the div? The image size is not known before hand but it will be 175x175 or less.</p> http://stackoverflow.com/questions/131506/python-reporting/153914#153914 1 Answer by Echo for Python Reporting Echo 2008-09-30T16:40:03Z 2008-09-30T16:40:03Z <p>You might want to check out Dabo.</p> http://stackoverflow.com/questions/152480/python-blogs-that-you-regularly-follow/152997#152997 2 Answer by Echo for Python blogs that you regularly follow? Echo 2008-09-30T13:22:19Z 2008-09-30T13:22:19Z <p><a href="http://morepypy.blogspot.com/" rel="nofollow">The PyPy Status Blog</a></p> http://stackoverflow.com/questions/128274/incorrectly-set-up-apc-for-php 1 Incorrectly set up APC for PHP? Echo 2008-09-24T16:41:06Z 2008-09-24T17:33:26Z <p>I decided to install APC to speed up the site that I work for. Sadly, I found out that it was already installed and enabled(The developer who first worked on the servers has moved on).</p> <p>Then I decided to check the usage of it to see if it needs more memory allocated to it or not. This is when I discovered something weird. A simple file with this code:</p> <pre><code>&lt;?php print_r(apc_cache_info()); ?&gt; </code></pre> <p>It would not work when served from apache. I get <code>Error 320 (net::ERR_INVALID_RESPONSE): Unknown error.</code> And there is nothing in the error log. From the cli on the server, it works fine. But it only says that my check_apc.php file is cached(name of the script that I was running).</p> <p>So it looks like APC has not fully/correctly been set up. Any one know what the problem could be?</p> <p>Contents of /etc/php.d/apc.ini:</p> <pre><code>; Enable apc extension module extension = apc.so ; Options for the apc module apc.enabled=1 apc.shm_segments=1 apc.optimization=0 apc.shm_size=32 apc.ttl=7200 apc.user_ttl=7200 apc.num_files_hint=1024 apc.mmap_file_mask=/tmp/apc.XXXXXX apc.enable_cli=1 apc.cache_by_default=1 </code></pre> <p>The server is running CentOS</p> http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/122943#122943 0 Answer by Echo for What is the strangest/weirdest program you've ever made? Echo 2008-09-23T18:43:44Z 2008-09-23T18:43:44Z <p>A long while back(10ish years), I was working on a game, and I wanted it to have unique character names in it.</p> <p>So I created a simple name creation program in VB6. You chose the length of the name, and it would make one up from random letters. It did have some rules though. Like it wouldn't make a name with the same 3 characters in a row. </p> <p>It also had options that could be set. You could tell it which letter combinations to not accept. </p> http://stackoverflow.com/questions/117245/whats-the-best-way-to-use-svn-to-version-control-a-php-site/117344#117344 0 Answer by Echo for What's the best way to use SVN to version control a PHP site? Echo 2008-09-22T20:20:02Z 2008-09-22T20:20:02Z <p>What I do at work, is use FTP to upload changes to a test server. Then when I am finished with the section of the site that I was working on, I commit the changes and update both. Sometimes, if I am working on something and I change a lot of files in different directories, I commit it and update the test server. But I don't update the production server. But I am the only programmer here, I wouldn't recommend committing possibally buggy code if there is more than one programmer.</p> http://stackoverflow.com/questions/92257/programmers-food/92371#92371 2 Answer by Echo for Programmer's food Echo 2008-09-18T13:09:10Z 2008-09-18T13:09:10Z <p>I like to eat pretzels.</p> http://stackoverflow.com/questions/86708/what-should-be-included-in-a-programmers-code-of-ethics/86730#86730 12 Answer by Echo for What should be included in a programmer's code of ethics? Echo 2008-09-17T19:32:23Z 2008-09-17T19:32:23Z <p>Don't make a program that you know will be used for evil(spam, hacking others sites, etc).</p> http://stackoverflow.com/questions/84817/super-robust-as-chrome-c-and-portable-tips-help-comments/85097#85097 0 Answer by Echo for Super Robust as chrome c++ and portable - tips - help - comments. Echo 2008-09-17T16:34:52Z 2008-09-17T16:34:52Z <p>Build it with the idea that the only way to quit is for the program to crash and that it can crash at any time. When you build it that way, crashing will never/almost never loose any data. I read an article about it a year or two ago. Sadly, I don't have a link to it.</p> <p>Combine that with some sort of crash dump and have it email you it so you can fix the problem.</p> http://stackoverflow.com/questions/32414/force-javascript-file-refresh-on-client/84871#84871 0 Answer by Echo for Force JavaScript file refresh on client Echo 2008-09-17T16:08:08Z 2008-09-17T16:08:08Z <p>Not all browsers cache files with '?' in it. What I did to make sure it was cached as much as possible, I included the version in the filename. </p> <p>So instead of stuff.js?123, I did stuff_123.js </p> <p>I used mod_redirect(I think) in apache to to have stuff_*.js to go stuff.js</p> http://stackoverflow.com/questions/84332/what-can-prevent-an-ms-access-2000-form-from-closing/84454#84454 0 Answer by Echo for What can prevent an MS Access 2000 form from closing? Echo 2008-09-17T15:25:56Z 2008-09-17T15:25:56Z <p>That sure is weird. Do you have any timer controls on the form? If you do, try disabling it in the OnClose.</p> http://stackoverflow.com/questions/1902374/jquery-will-performance-and-download-file-size-improve-etc Comment by Echo on JQuery: Will performance and download file size improve, etc... Echo 2009-12-14T18:00:09Z 2009-12-14T18:00:09Z I was one who stared it, but I wasn't expecting any real answers. http://stackoverflow.com/questions/1785986/how-to-get-amazon-seller-central-orders-programmatically/1786158#1786158 Comment by Echo on How to get Amazon Seller Central orders programmatically? Echo 2009-11-24T14:38:25Z 2009-11-24T14:38:25Z That PDF was the best documentation I've seen so far :) Thanks. http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164583#164583 Comment by Echo on What real life bad habits has programming given you? Echo 2009-11-20T19:43:41Z 2009-11-20T19:43:41Z I did. ----------- http://stackoverflow.com/questions/143429/whats-the-least-useful-comment-youve-ever-seen/143590#143590 Comment by Echo on What's the least useful comment you've ever seen? Echo 2009-11-20T02:34:16Z 2009-11-20T02:34:16Z I've had to do strange things like that in an old VB6 project... http://stackoverflow.com/questions/1710363/what-do-you-wish-youd-known-about-when-you-started-learning-python/1710378#1710378 Comment by Echo on What do you wish you'd known about when you started learning Python? Echo 2009-11-10T20:45:24Z 2009-11-10T20:45:24Z I never wanted to know Java either. I was forced to in college. And since I have learned about it, I dislike it even more. http://stackoverflow.com/questions/1689031/overhead-of-a-round-trip-to-mysql Comment by Echo on Overhead of a Round-trip to MySql? Echo 2009-11-06T18:04:36Z 2009-11-06T18:04:36Z 500 is way to many queries for one page. Our home page has the most queries of our site(I think) and that is 57 queries. But 52 of those are cached with memcached. http://stackoverflow.com/questions/1650627/designing-the-storage-for-a-very-large-game-world/1650647#1650647 Comment by Echo on Designing the storage for a very large game world. Echo 2009-10-30T17:28:43Z 2009-10-30T17:28:43Z @S.Lott: Good ideas. I think I'll start using a regular python dict for now, and change it as needed later on. http://stackoverflow.com/questions/1650627/designing-the-storage-for-a-very-large-game-world/1650647#1650647 Comment by Echo on Designing the storage for a very large game world. Echo 2009-10-30T16:14:30Z 2009-10-30T16:14:30Z I'm not quite sure if that will work for me or not. But I will look into that, thanks. Does the shelve keep the whole 'shelf' in memory? I couldn't tell from the docs. Also, any idea how well it does with millions of things in it? http://stackoverflow.com/questions/1589524/calculate-and-count-in-smarty/1589660#1589660 Comment by Echo on Calculate and Count in Smarty Echo 2009-10-19T18:29:16Z 2009-10-19T18:29:16Z The @count function is for arrays. It won't work with an object*. http://stackoverflow.com/questions/1586147/how-to-generate-random-greenish-colors/1586157#1586157 Comment by Echo on How to generate random 'greenish' colors Echo 2009-10-18T22:46:59Z 2009-10-18T22:46:59Z Great ideas. Thanks http://stackoverflow.com/questions/1586147/how-to-generate-random-greenish-colors/1586163#1586163 Comment by Echo on How to generate random 'greenish' colors Echo 2009-10-18T22:45:53Z 2009-10-18T22:45:53Z If I could accept 2 answers, I would accept this one too. Thanks. http://stackoverflow.com/questions/1509264/php-submit-buttons-in-webpages/1509385#1509385 Comment by Echo on Php Submit buttons in webpages Echo 2009-10-02T13:31:12Z 2009-10-02T13:31:12Z Just curious, why is that bad? (If there is just one button of course) http://stackoverflow.com/questions/1448767/help-optimizing-mysql-query/1448889#1448889 Comment by Echo on Help optimizing MySQL query. Echo 2009-09-19T16:33:32Z 2009-09-19T16:33:32Z Ah, I bet that is what the problem is, thanks. http://stackoverflow.com/questions/1448767/help-optimizing-mysql-query Comment by Echo on Help optimizing MySQL query. Echo 2009-09-19T15:44:40Z 2009-09-19T15:44:40Z I just added the definition of st_issues http://stackoverflow.com/questions/1121823/how-to-style-an-anchor-tag-to-look-like-a-button-with-the-same-height-as-the-butt/1122025#1122025 Comment by Echo on How to style an anchor tag to look like a button with the same height as the button? Echo 2009-07-14T14:06:58Z 2009-07-14T14:06:58Z Thanks. Some times I'm in a hurry and I forget to fix up the old HTML that I am working with.