User Aeon - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T05:40:40Zhttp://stackoverflow.com/feeds/user/13289http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/76420/best-php-ruby-python-e-commerce-solution8Best php/ruby/python e-commerce solutionAeon2008-09-16T20:12:52Z2009-12-08T20:10:52Z
<p>I'm looking for an easy to skin and customize e-commerce package. </p>
<p>I've been reading good reviews about <a href="http://magentocommerce.com/" rel="nofollow">Magento</a>, but it seems to have <a href="http://www.htmlist.com/development/magento-ecommerce-review-platform-perils-and-impressions-three-months-in/" rel="nofollow">problems with performance</a>. I've tried <a href="http://oscommerce.com/" rel="nofollow">osCommerce</a> before and found it to be pretty painful to modify, but I hear <a href="http://zencart.com/" rel="nofollow">zenCart</a> is better... but the latest release of zenCart is nearly a year old, so not sure how up to date it is at this point. </p>
<p>I tried hosted e-commerce with <a href="http://shopify.com/" rel="nofollow">Shopify</a>, and while very easy to use and template, its customization options are a bit limited (the templating language doesn't even support basic logic operations, which makes it pretty inflexible). </p>
<p>I'm almost ready to try writing my own in rails using <a href="http://activemerchant.org/" rel="nofollow">ActiveMerchant</a>, but while that will give me ultimate in customization, it's going to take much longer when I have to reinvent the wheel. </p>
<p>I'd be happy with a php, ruby or python based system, I know enough of those languages to be able to customize the system if I need to as long as it's well-organized and documented code. </p>
<p>Anybody have experience with something they'd recommend, or conversely, recommend staying away from?</p>
http://stackoverflow.com/questions/95731/why-does-an-onclick-property-set-with-setattribute-fail-to-work-in-ie5Why does an onclick property set with setAttribute fail to work in IE?Aeon2008-09-18T19:00:31Z2009-09-21T11:37:36Z
<p>Ran into this problem today, posting in case someone else has the same issue.</p>
<pre><code>var execBtn = document.createElement('input');
execBtn.setAttribute("type", "button");
execBtn.setAttribute("id", "execBtn");
execBtn.setAttribute("value", "Execute");
execBtn.setAttribute("onclick", "runCommand();");
</code></pre>
<p>Turns out to get IE to run an onclick on a dynamically generated element, we can't use setAttribute. Instead, we need to set the onclick property on the object with an anonymous function wrapping the code we want to run.</p>
<pre><code>execBtn.onclick = function() { runCommand() };
</code></pre>
<p><strong>BAD IDEAS:</strong></p>
<p>You can do </p>
<pre><code>execBtn.setAttribute("onclick", function() { runCommand() });
</code></pre>
<p>but it will break in IE in non-standards mode according to @scunliffe.</p>
<p>You can't do this at all </p>
<pre><code>execBtn.setAttribute("onclick", runCommand() );
</code></pre>
<p>because it executes immediately, and sets the result of runCommand() to be the onClick attribute value, nor can you do</p>
<pre><code>execBtn.setAttribute("onclick", runCommand);
</code></pre>
http://stackoverflow.com/questions/282758/truncate-a-string-nicely-to-fit-within-a-given-pixel-width1Truncate a string nicely to fit within a given pixel width. Aeon2008-11-12T01:42:03Z2009-08-09T15:37:39Z
<p>Sometimes you have strings that must fit within a certain pixel width. This function attempts to do so efficiently. Please post your suggestions or refactorings below :)</p>
<pre><code>function fitStringToSize(str,len) {
var shortStr = str;
var f = document.createElement("span");
f.style.display = 'hidden';
f.style.padding = '0px';
document.body.appendChild(f);
// on first run, check if string fits into the length already.
f.innerHTML = str;
diff = f.offsetWidth - len;
// if string is too long, shorten it by the approximate
// difference in characters (to make for fewer iterations).
while(diff > 0)
{
shortStr = substring(str,0,(str.length - Math.ceil(diff / 5))) + '&hellip;';
f.innerHTML = shortStr;
diff = f.offsetWidth - len;
}
while(f.lastChild) {
f.removeChild(f.lastChild);
}
document.body.removeChild(f);
// if the string was too long, put the original string
// in the title element of the abbr, and append an ellipsis
if(shortStr.length < str.length)
{
return '<abbr title="' + str + '">' + shortStr + '</abbr>';
}
// if the string was short enough in the first place, just return it.
else
{
return str;
}
}
</code></pre>
<p>UPDATE:
@some's solution below is much better; please use that. </p>
<p>Update 2:
Code now posted as a <a href="https://gist.github.com/24261/7fdb113f1e26111bd78c0c6fe515f6c0bf418af5" rel="nofollow">gist</a>; feel free to fork and submit patches :)</p>
http://stackoverflow.com/questions/86269/why-is-setinterval-calling-a-function-with-random-arguments2Why is setInterval calling a function with random arguments?Aeon2008-09-17T18:44:19Z2009-01-09T13:29:49Z
<p>So, I am seeing a curious problem. If I have a function</p>
<pre><code>// counter wraps around to beginning eventually, omitted for clarity.
var counter;
cycleCharts(chartId) {
// chartId should be undefined when called from setInterval
console.log('chartId: ' + chartId);
if(typeof chartId == 'undefined' || chartId < 0) {
next = counter++;
}
else {
next = chartId;
}
// ... do stuff to display the next chart
}
</code></pre>
<p>This function can be called explicitly by user action, in which case <code>chartId</code> is passed in as an argument, and the selected chart is shown; or it can be in autoplay mode, in which case it's called by a <code>setInterval</code> which is initialized by the following:</p>
<pre><code>var cycleId = setInterval(cycleCharts, 10000);
</code></pre>
<p>The odd thing is, I'm actually seeing the <code>cycleCharts()</code> get a <code>chartId</code> argument even when it's called from <code>setInterval</code>! The <code>setInterval</code> doesn't even have any parameters to pass along to the <code>cycleCharts</code> function, so I'm very baffled as to why <code>chartId</code> is not undefined when <code>cycleCharts</code> is called from the <code>setInterval</code>.</p>
http://stackoverflow.com/questions/224471/iframe-shimming-or-ie6-and-below-select-z-index-bug/310229#3102292Answer by Aeon for iframe shimming or ie6 (and below) select z-index bugAeon2008-11-21T21:21:47Z2008-11-21T23:10:43Z<p>in case anyone is interested, here's some IE shimming code.</p>
<pre><code>* html .shimmed {
_azimuth: expression(
this.shimmed = this.shimmed || 'shimmed:'+this.insertAdjacentHTML('beforeBegin','<iframe style="filter:progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0);position:absolute;top:0px;left:0px;width:100%;height:100%" frameBorder=0 scrolling=no src="javascript:false;document.write('+"''"+');"></iframe>'),
'inherit');
}
</code></pre>
<p>ref: <a href="http://gist.github.com/7372" rel="nofollow">this gist</a> by <a href="http://subtlegradient.com/articles/category/css" rel="nofollow">subtleGradient</a> and this <a href="http://www.zachleat.com/web/2007/04/24/adventures-in-i-frame-shims-or-how-i-learned-to-love-the-bomb/" rel="nofollow">post by Zach Leatherman</a></p>
http://stackoverflow.com/questions/130508/what-font-size-do-you-use-in-your-code-editor/130540#1305400Answer by Aeon for What font size do you use in your code editor?Aeon2008-09-24T23:15:17Z2008-09-24T23:15:17Z<p>I like small minimally aliased fonts like <a href="http://www.tobias-jung.de/seekingprofont/" rel="nofollow">Profont</a>, beacuse they stay readable at small sizes, and I can fit a decent amount of code even on a 15" laptop monitor. </p>
<p>When I have my external monitor plugged in, I have it vertically rotated and bump up the font size a bit because the monitor is farther away from me; 22" high in vertical orientation gives me a good 130 line span in the editor :)</p>
http://stackoverflow.com/questions/118487/mysql-query-select-most-recent-items-with-a-twist/118523#1185230Answer by Aeon for MySQL Query: Select most-recent items with a twistAeon2008-09-23T00:59:44Z2008-09-23T00:59:44Z<p>You probably want a <a href="http://dev.mysql.com/doc/refman/5.0/en/union.html" rel="nofollow">union</a>. Something like this should work:</p>
<pre><code> (SELECT
url, feed_id, timestamp
FROM rss_items
GROUP BY feed_id
ORDER BY timestamp DESC
LIMIT 10)
UNION
(SELECT
url, feed_id, timestamp
FROM manual_items
GROUP BY feed_id
ORDER BY timestamp DESC
LIMIT 10)
ORDER BY timestamp DESC
LIMIT 10
</code></pre>
http://stackoverflow.com/questions/118205/how-can-i-publish-a-subversion-repository-to-a-local-iis/118229#1182293Answer by Aeon for How can I publish a subversion repository to a local IIS?Aeon2008-09-22T23:31:24Z2008-09-23T00:19:08Z<p>SVN doesn't support IIS; you can however <a href="http://svn.collab.net/repos/svn/trunk/notes/windows-service.txt" rel="nofollow">run the standalone svnserve server as a windows service</a>. </p>
<p>There's the <a href="http://subversion.tigris.org/faq.html#svnserve-win-service" rel="nofollow">SVN FAQ entry</a> about it, and this blog post on <a href="http://blogs.vertigosoftware.com/teamsystem/archive/2006/01/16/Setting_up_a_Subversion_Server_under_Windows.aspx" rel="nofollow">Vertigo Software blog</a> may be helpful too.</p>
<p>UPDATE:
After your clarification, I see that what you are looking for is a way to automatically update the code on the server after it's checked in. Look into <a href="http://ccnet.thoughtworks.com/" rel="nofollow">CruiseControl.NET</a>, after looking at the <a href="http://confluence.public.thoughtworks.org/display/CCNET/Subversion+Source+Control+Block" rel="nofollow">subversion integration tutorial</a> it looks like it should do what you want.</p>
<p>UPDATE 2: This tutorial describes <a href="http://www.testearly.com/2006/05/01/integrating-ccnet-with-nant-and-subversion-on-windows/" rel="nofollow">integrating Subversion, CruiseControl.NET and Nant</a>.</p>
http://stackoverflow.com/questions/104487/mod-rewrites-on-apache-change-all-urls/104614#1046142Answer by Aeon for Mod-rewrites on apache: change all URLsAeon2008-09-19T19:07:30Z2008-09-19T19:07:30Z<p>I would do something like this:</p>
<pre><code>RewriteRule ^/?(logout|config|foo)/?$ $1.php
RewriteRule ^/?(logout|config|foo)/(new|edit|delete)$ $1_$2.php
</code></pre>
<p>I prefer to explicitly list the url's I want to match, so that I don't have to worry about static content or adding new things later that don't need to be rewritten to php files. </p>
<p>The above is ok if all sub url's are valid for all root url's (<code>book/new</code>, <code>movie/new</code>, <code>user/new</code>), but not so good if you want to have different sub url's depending on root action (<code>logout/new</code> doesn't make much sense). You can handle that either with a more complex regex, or by routing everything to a single php file which will determine what files to include and display based on the url.</p>
http://stackoverflow.com/questions/104329/performance-of-try-catch-in-php/104379#1043792Answer by Aeon for Performance of try-catch in phpAeon2008-09-19T18:36:04Z2008-09-19T18:51:20Z<p>Generally, use an exception to guard against unexpected failures, and use error checking in your code against failures that are part of normal program state. To illustrate:</p>
<ol>
<li><p>Record not found in database - valid state, you should be checking the query results and messaging the user appropriately.</p></li>
<li><p>SQL error when trying to fetch record - unexpected failure, the record may or may not be there, but you have a program error - this is good place for an exception - log error in error log, email the administrator the stack trace, and display a polite error message to the user advising him that something went wrong and you're working on it.</p></li>
</ol>
<p>Exceptions are expensive, but unless you handle your whole program flow using them, any performance difference should not be human-noticeable.</p>
http://stackoverflow.com/questions/103861/communicating-between-java-and-flash-without-a-flash-specific-server/103928#1039281Answer by Aeon for Communicating between Java and Flash without a Flash-specific serverAeon2008-09-19T17:33:26Z2008-09-19T17:33:26Z<p>Well, you can make http requests from flash to any url... so if your java server has a point where it can listen to incoming requests and process XML or JSON, your flash client can just make the request to that url. BlazeDS and Red5 just aim to make it simpler by handling the translation for you making it possible to call the server-side functions transparently.</p>
http://stackoverflow.com/questions/103583/exceptions-is-this-a-good-practice/103859#1038590Answer by Aeon for Exceptions: Is this a good practice?Aeon2008-09-19T17:22:59Z2008-09-19T17:22:59Z<p>I wouldn't throw an exception on issue not found - it's a valid state of an application, and you don't need a stack trace just to display a 404. </p>
<p>What you need to catch is unexpected failures, like sql errors - that's when exception handling comes in handy. I would change your code to look more like this:</p>
<pre><code>try {
$issue = DM_Issue::fetch($core->db->escape_string($_GET['issue']));
}
catch (SQLException $e) {
log_error('SQL Error: DM_Issue::fetch()', $e->get_message());
}
catch (Exception $e) {
log_error('Exception: DM_Issue::fetch()', $e->get_message());
}
if(!$issue) {
display_error_page($tpl, ERR_NOT_FOUND);
}
else
{
// ... do stuff with $issue object.
}
</code></pre>
http://stackoverflow.com/questions/98258/do-you-charge-for-the-first-conversation-you-have-with-a-prospective-client/98342#983422Answer by Aeon for Do you charge for the first conversation you have with a prospective client?Aeon2008-09-19T00:30:21Z2008-09-19T00:30:21Z<p>Every time a client talks to you as a new developer, he's giving you his valuable time without knowing whether you're any good, or whether he's wasting his time when he could be interviewing another candidate or coding himself. An interview is certainly an investment of time and trust on both sides - I've interviewed people who had no clue what they were doing, and I've been to interviews with companies who had no clue what they wanted.</p>
<p>Witholding information because you think that it's too valuable is not only vain - face it, most likely you're not so brilliant that your insights in an hour-long conversation are going to change the fate of their company - but also hurts you because if a developer I'm interviewing avoids every question I ask to figure out how he thinks or what his skills are, or how he would solve a given problem, I'm just going to think that he has no clue what he's talking about.</p>
http://stackoverflow.com/questions/75482/how-can-i-pre-compress-files-with-moddeflate-in-apache-2-x/75727#757271Answer by Aeon for How can I pre-compress files with mod_deflate in Apache 2.x?Aeon2008-09-16T18:59:48Z2008-09-19T00:13:26Z<p>mod_gzip compressed content on the fly as well. You can pre-compress the files by actually logging into your server, and doing it from shell.</p>
<pre><code>cd /var/www/.../data/
for file in *; do
gzip -c $file > $file.gz;
done;
</code></pre>
http://stackoverflow.com/questions/96405/deploying-to-multiple-servers/96675#966757Answer by Aeon for Deploying to multiple servers Aeon2008-09-18T20:38:37Z2008-09-18T20:38:37Z<p><a href="http://capify.org/" rel="nofollow">Capistrano</a> is pretty handy for that. There's a few people using it (<a href="http://www.simplisticcomplexity.com/2006/8/16/automated-php-deployment-with-capistrano/" rel="nofollow">1</a>, <a href="http://www.contentwithstyle.co.uk/Blog/178" rel="nofollow">2</a>, <a href="http://laurentbois.com/2008/08/05/use-capistrano-in-enterprise-for-php-and-ruby-on-rails-applications/" rel="nofollow">3</a>) for deploying PHP code as evidenced by doing a <a href="http://www.google.com/search?q=capistrano+php+deployment" rel="nofollow">quick search</a>.</p>
http://stackoverflow.com/questions/93791/are-there-many-users-of-prado-out-there/95298#952981Answer by Aeon for Are there many users of PRADO out there?Aeon2008-09-18T18:25:34Z2008-09-18T18:53:51Z<p>I think Prado never really caught on because it's an event-driven framework, which is a bit hard to wrap your head around. Especially for the many PHP developers coming from a more procedural background.</p>
http://stackoverflow.com/questions/90924/what-is-the-best-php-programming-book/95623#956232Answer by Aeon for What is the best PHP programming book?Aeon2008-09-18T18:50:42Z2008-09-18T18:50:42Z<p>Larry Ulman's <a href="http://rads.stackoverflow.com/amzn/click/0321376013" rel="nofollow">PHP5 Visual QuickPro Guide</a> is what helped me get started in my progress from a hobbyist to a professional developer some eight years back (well, it was an older edition, not this one exactly). You wouldn't expect it from the title, but it's actually well-written, very readable, and very usable for a beginner, without descending into talking-down or dumbing-down the material. Check the amazon reviews for it and subsequent editions. </p>
<p>Looking at publishers, <a href="http://www.apress.com/" rel="nofollow">Apress</a> and <a href="http://www.pragprog.com/titles" rel="nofollow">Pragmatic Programmer</a> books in general are usually pretty good, not to mention <a href="http://oreilly.com" rel="nofollow">O'Reilly</a>. I hear <a href="http://www.peachpit.com/" rel="nofollow">Peachpit Press</a> puts some good quality stuff out too, but I don't have any of their titles, so can't speak with confidence to that. </p>
<p>Oh, and <a href="http://my.safaribooksonline.com/" rel="nofollow">Safari Books</a> has a really cool subscription program where you get unlimited access to a huge number of technical books from O'Reilly and a bunch of other publishers online.</p>
http://stackoverflow.com/questions/94481/what-tools-are-available-for-a-team-leader-members-to-manage-tasks-agile-progr/94574#945743Answer by Aeon for What tools are available for a team leader & members to manage tasks (Agile programming)Aeon2008-09-18T17:16:18Z2008-09-18T17:16:18Z<p>We're using <a href="http://xplanner.org" rel="nofollow">Xplanner</a> right now, with pretty good results.</p>
http://stackoverflow.com/questions/93767/close-mootools-rokbox-through-javascript/94526#945261Answer by Aeon for Close mootools Rokbox through JavascriptAeon2008-09-18T17:08:49Z2008-09-18T17:08:49Z<p>The <code>this</code> likely refers to the rokbox instance; I don't think you need to worry about it, you're interested in the code that runs on the click event. The salient part looks to be the following:</p>
<pre><code>self.swtch=false;
self.close(e);
</code></pre>
<p><code>self</code> most likely refers to the rokbox instance, again, so assuming you instantiate it with something like </p>
<pre><code>var rokbox = new RokBox(...);
</code></pre>
<p>you should be able to just call</p>
<pre><code>rokbox.close();
</code></pre>
<p>and have it close. I haven't looked at rokbox source, so no guarantees, and not quite sure what the <code>swtch=false</code> does, so you probably will need to experiment a bit.</p>
http://stackoverflow.com/questions/94305/what-is-quicker-switch-on-string-or-elseif-on-type/94408#944081Answer by Aeon for What is quicker, switch on string or elseif on type?Aeon2008-09-18T16:52:55Z2008-09-18T16:52:55Z<p>I may be missing something, but couldn't you do a switch statement on the type instead of the String? That is, </p>
<pre><code>switch(childNode.Type)
{
case Bob:
break;
case Jill:
break;
case Marko:
break;
}
</code></pre>
http://stackoverflow.com/questions/90802/simple-free-php-blog-engine-easy-to-redesign/90926#909261Answer by Aeon for Simple, free PHP blog engine easy to redesign?Aeon2008-09-18T08:24:55Z2008-09-18T08:24:55Z<p>I hear <a href="http://chyrp.net/" rel="nofollow">Chyrp</a> is nice. <a href="http://textpattern.com/" rel="nofollow">Textpattern</a> gets some praise too.</p>
http://stackoverflow.com/questions/90584/lightweight-search-indexing-api-lbrary/90906#909062Answer by Aeon for Lightweight Search Indexing API/LbraryAeon2008-09-18T08:20:26Z2008-09-18T08:20:26Z<p>Oh, man. There's a few. In order of descending obscurity...</p>
<ul>
<li><a href="http://eigenclass.org/hiki.rb?simple+full+text+search+engine" rel="nofollow">FTSearch</a></li>
<li><a href="http://www.seg.rmit.edu.au/zettair/" rel="nofollow">Zettair</a></li>
<li><a href="http://www.sphinxsearch.com/" rel="nofollow">Sphinx</a></li>
<li><a href="http://ferret.davebalmain.com/api/files/README.html" rel="nofollow">Ferret</a></li>
<li><a href="http://lucene.apache.org/solr/" rel="nofollow">Solr</a> (lucene based though, may be too heavy)</li>
</ul>
<p>I'm sure there's a ton more out there, but these are the ones I have off the top of my head. Good luck :)</p>
http://stackoverflow.com/questions/90092/enforce-unique-rows-in-mysql/90189#901890Answer by Aeon for Enforce unique rows in MySQLAeon2008-09-18T05:08:01Z2008-09-18T05:08:01Z<p>Something seems a bit odd about this table; I would actually think about refactoring it. What do ID and OWNER_ID refer to, and what is the relationship between them? </p>
<p>Would it make sense to have </p>
<pre><code>CREATE TABLE `CLIENTS` (
`ID` int(11) NOT NULL auto_increment,
`CLIENT_NAME` varchar(500) NOT NULL,
# other client fields - address, phone, whatever
PRIMARY KEY (`ID`),
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `CLIENTS_OWNERS` (
`CLIENT_ID` int(11) NOT NULL,
`OWNER_ID` int(11) NOT NULL,
PRIMARY KEY (`CLIENT_ID`,`OWNER_ID`),
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
</code></pre>
<p>I would really avoid adding a unique key like that on a 500 character string. It's much more efficient to enforce uniqueness on two ints, plus an id in a table should really refer to something that needs an id; in your version, the <code>ID</code> field seems to identify just the client/owner relationship, which really doesn't need a separate id, since it's just a mapping.</p>
http://stackoverflow.com/questions/90121/symlink-in-windows-xp/90140#901401Answer by Aeon for Symlink in windows XPAeon2008-09-18T04:53:16Z2008-09-18T04:53:16Z<p>Back when I was on windows I used to use a hardlink shell extension. Not sure if this is the same one, but give this one a try: <a href="http://schinagl.priv.at/nt/hardlinkshellext/hardlinkshellext.html" rel="nofollow">Link Shell Extension</a>.</p>
http://stackoverflow.com/questions/87950/how-do-you-overcome-the-svn-out-of-date-error/89496#894961Answer by Aeon for How do you overcome the svn 'out of date' error?Aeon2008-09-18T02:31:40Z2008-09-18T02:31:40Z<p>Like @<a href="#88032" rel="nofollow">Alexander</a>-Klyubin suggests, do the move in the repository. It's also going to be much faster, especially if you have a large amount of data to move, because you won't have to transfer all that data over the network again.</p>
<pre><code>svn mv https://username@server/svn/old/ https://username@server/svn/new/
</code></pre>
<p>should work just fine</p>
http://stackoverflow.com/questions/88007/unit-test-for-randomized-data/88111#88111-1Answer by Aeon for Unit test for randomized dataAeon2008-09-17T21:56:20Z2008-09-17T22:09:28Z<p>You can also look into mutation testing (<a href="http://jester.sourceforge.net/" rel="nofollow">Jester</a> for Java, <a href="http://glu.ttono.us/articles/2006/12/19/tormenting-your-tests-with-heckle" rel="nofollow">Heckle</a> for Ruby)</p>
http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/78762#78762229Answer by Aeon for What do you use to keep notes as a developer?Aeon2008-09-17T00:55:35Z2008-09-17T21:44:03Z<p>Start a blog. This way, not only you benefit, but so do others who may have the same problem. There are also combination blog/wiki systems, ranging from <a href="http://drupal.org/" rel="nofollow">Drupal</a> to <a href="http://hikiwiki.org" rel="nofollow">Hiki</a>. Also, consider that having your notes on a host (with regular back ups) will ensure that they survive you dropping your laptop down a flight of concrete stairs, and that they will be available even when you're away from your primary working machine.</p>
<p>Oh, and some people really like <a href="http://en.wikipedia.org/wiki/List_of_mind_mapping_software" rel="nofollow">mind maps</a> for brainstorming and such, but I'm not sure that they're that valuable for long-term note taking/storage.</p>
<p>UPDATE: If you don't really want to run your own site, or a blog is too much of a time investment, another option is to start posting on <a href="http://refactormycode.com" rel="nofollow">RefactorMyCode</a> or <a href="http://snipplr.com" rel="nofollow">Snipplr</a>. You get a searchable database of your code snippets, plus perhaps people will comment on your code and suggest improvements. The "<a href="http://stackoverflow.com/questions/87896/">Code reviews on the web</a>" thread might have more ideas over time.</p>
http://stackoverflow.com/questions/87896/code-reviews-on-the-web-for-php-and-javascript-code/87928#879288Answer by Aeon for Code reviews on the web for PHP and JavaScript codeAeon2008-09-17T21:36:43Z2008-09-17T21:36:43Z<p><a href="http://refactormycode.com" rel="nofollow">Refactor My Code</a> comes to mind. </p>
<p><a href="http://snipplr.com/" rel="nofollow">Snipplr</a> is handy too, but is more like a web notebook rather than a dedicated code discussion site.</p>
<p><a href="http://gist.github.com" rel="nofollow">Gist</a> from the github folks is basically a versioned pastebin, which is pretty awesome in its own right, but again, more useful as a supplement to a discussion, rather than a discussion itself.</p>
http://stackoverflow.com/questions/83953/php-get-issue/85833#858330Answer by Aeon for Php $_GET issueAeon2008-09-17T17:53:17Z2008-09-17T17:53:17Z<p>It's printing just "Array" because when you say</p>
<pre><code> echo "$_GET[$field]";
</code></pre>
<p>PHP can't know that you mean <code>$_GET</code> element <code>$field</code>, it sees it as you wanting to print variable <code>$_GET</code>. So, it tries to print it, and of course it's an Array, so that's what you get. Generally, when you want to echo an array element, you'd do it like this:</p>
<pre><code>echo "The foo element of get is: {$_GET['foo']}";
</code></pre>
<p>The curly brackets tell PHP that the whole thing is a variable that needs to be interpreted; otherwise it will assume the variable name is <code>$_GET</code> by itself.</p>
<p>In your case though you don't need that, what you need is:</p>
<pre><code>foreach ($_GET as $field => $label)
{
$datarray[] = $label;
}
</code></pre>
<p>and if you want to print it, just do </p>
<pre><code>echo $label; // or $_GET[$field], but that's kind of pointless.
</code></pre>
<p>The problem was not with your flash file, change it back to how it was; you know it was correct because your $dataarray variable contained all the data. Why do you want to extract data from <code>$_GET</code> into another array anyway?</p>
http://stackoverflow.com/questions/85636/how-do-i-erase-my-disk-in-a-secure-way-ubuntu/85670#856701Answer by Aeon for How do I erase my disk? (In a secure way) (Ubuntu)Aeon2008-09-17T17:35:21Z2008-09-17T17:35:21Z<p>A large magnet plus a sledgehammer is the most secure way :)</p>
http://stackoverflow.com/questions/76438/the-best-way-to-make-a-new-site-known/76531#76531Comment by Aeon on The best way to make a new site known?Aeon2009-08-01T00:00:23Z2009-08-01T00:00:23ZThanks :) I figured, first of all a link could die, and second of all, it's less annoying if I quote the salient points and attribute, so people can go and read more if they like ;) http://stackoverflow.com/questions/636248/jquery-alphanumericplugin-copy-paste-issue/640954#640954Comment by Aeon on jQuery AlphaNumericPlugin - Copy Paste IssueAeon2009-07-31T21:12:35Z2009-07-31T21:12:35ZThis is very useful.. thanks!http://stackoverflow.com/questions/76420/best-php-ruby-python-e-commerce-solution/78675#78675Comment by Aeon on Best php/ruby/python e-commerce solutionAeon2009-05-14T17:55:41Z2009-05-14T17:55:41ZI did one shop with osCommerce since I asked this question, and I have to concur - it's got a horrible coding structure and absolutely no modularity. Thousands of add-ons, each one requiring manual editing of core files is a horrible way to work.http://stackoverflow.com/questions/282758/truncate-a-string-nicely-to-fit-within-a-given-pixel-width/283994#283994Comment by Aeon on Truncate a string nicely to fit within a given pixel width. Aeon2008-11-12T23:08:03Z2008-11-12T23:08:03ZI also added .replace(/(\s.)?\s*$/,'') to the result assignment to get rid of trailing spaces or widowed single characters.http://stackoverflow.com/questions/282758/truncate-a-string-nicely-to-fit-within-a-given-pixel-width/283994#283994Comment by Aeon on Truncate a string nicely to fit within a given pixel width. Aeon2008-11-12T19:01:14Z2008-11-12T19:01:14Zsubstring: gah, I think that was a typo, forgot the range start operator.http://stackoverflow.com/questions/282758/truncate-a-string-nicely-to-fit-within-a-given-pixel-width/283994#283994Comment by Aeon on Truncate a string nicely to fit within a given pixel width. Aeon2008-11-12T18:59:47Z2008-11-12T18:59:47Zescaping: good point! Didn't catch that...http://stackoverflow.com/questions/282758/truncate-a-string-nicely-to-fit-within-a-given-pixel-width/283994#283994Comment by Aeon on Truncate a string nicely to fit within a given pixel width. Aeon2008-11-12T18:59:06Z2008-11-12T18:59:06ZVery nice, thank you. /5 was chosen based on eyeballing it in my application (m is 10px, f is 3px). It's actually kind of crap because the font size will change depending on the styling of the div that the string will be placed into, so ideally we wouldn't be appending to body, but to that div.http://stackoverflow.com/questions/282758/truncate-a-string-nicely-to-fit-within-a-given-pixel-width/282773#282773Comment by Aeon on Truncate a string nicely to fit within a given pixel width. Aeon2008-11-12T18:54:15Z2008-11-12T18:54:15Zthe <abbr> title property will give a mouseover tooltip in all modern browsers :)
When you say binary search, what do you mean? Right now it tries to make the string shorter by the estimated number of characters that it's overlong, so it should have only 1-3 iterations no matter how long the stringhttp://stackoverflow.com/questions/282758/truncate-a-string-nicely-to-fit-within-a-given-pixel-width/282792#282792Comment by Aeon on Truncate a string nicely to fit within a given pixel width. Aeon2008-11-12T18:52:16Z2008-11-12T18:52:16ZYeah I was thinking about it, but didn't do it yet ;)http://stackoverflow.com/questions/122102/what-is-the-most-efficent-way-to-clone-a-javascript-object/122704#122704Comment by Aeon on What is the most efficent way to clone a JavaScript object?Aeon2008-09-23T20:22:34Z2008-09-23T20:22:34Zholy crap, it's John Resig!http://stackoverflow.com/questions/118423/set-up-apache-for-local-development-testing/118682#118682Comment by Aeon on Set up Apache for local development/testing?Aeon2008-09-23T20:10:51Z2008-09-23T20:10:51ZThis is the simplest approach, and the one I recommend heartily as well :)http://stackoverflow.com/questions/122954/timed-events-with-php-mysqlComment by Aeon on Timed events with php/MySQLAeon2008-09-23T20:03:49Z2008-09-23T20:03:49Zon a shared host, that's about the best you can do. If this is a major enough application that efficiency of this method is in question, you need a better host. You can get an affordable VPS that will give you root access and that you can run cron on as frequently as you like.http://stackoverflow.com/questions/118487/mysql-query-select-most-recent-items-with-a-twistComment by Aeon on MySQL Query: Select most-recent items with a twistAeon2008-09-23T01:00:15Z2008-09-23T01:00:15Zare feed id's common between both tables?http://stackoverflow.com/questions/118205/how-can-i-publish-a-subversion-repository-to-a-local-iis/118229#118229Comment by Aeon on How can I publish a subversion repository to a local IIS?Aeon2008-09-23T00:05:53Z2008-09-23T00:05:53ZAh, I think I misunderstood. In that case @puetzk's answer is absolutely right. You can also use a continuous integration toolkit for that; I'm adding that to my response.http://stackoverflow.com/questions/117931/apache-modrewrite-one-rule-for-any-number-of-possibilitiesComment by Aeon on apache mod_rewrite one rule for any number of possibilitiesAeon2008-09-22T23:35:11Z2008-09-22T23:35:11ZThat's not bloated :) You should've seen some of my apache configs. Seriously, 4 rewrite rule lines is perfectly reasonable.