User Pistos - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T09:58:21Zhttp://stackoverflow.com/feeds/user/28558http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1794162/ruby-web-spider-search-engine-library0Ruby web spider & search engine libraryPistos2009-11-25T01:51:35Z2009-11-25T09:52:57Z
<p>I'm looking for a Ruby library or gem (or set of gems) which will not only do spidering, but also collect the data into, say, a database, and allow basic searches on the data (i.e. a typical web search).</p>
<p>I've found several spidering libraries, so that part seems well covered (I was going to try Anemone first), but I can't find anything that will take the spidered data and allow querying on it. For lack of an existing one, I was going to write something myself with Anemone.</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/257992/how-can-i-detect-gnome-terminal0How can I detect Gnome Terminal?Pistos2008-11-03T05:32:18Z2009-11-22T19:07:17Z
<p>I am writing a console application which makes use of the F1 key (for help). Unfortunately, while Konsole (of KDE) doesn't use this key, Gnome Terminal does, so the F1 key becomes inaccessible to my application. I don't think there's a way to detect whether the F1 key is already mapped in the GUI side of things (Gnome Terminal), but if there is, the answer to that will obviate this question. :)</p>
<p>Ergo, my next best bet is to try to detect whether I am running inside Gnome Terminal. Is there some way to do that? I'm primarily interested in gleaning this from within Ruby, but if it can be done via shell or environment variables, or virtual filesystem (/proc, /dev, etc.) then that will suffice.</p>
<p>I'm hoping for a reliable way to do this, but I can settle for "best guess" approaches like grepping the environment variables for clues that can let me reasonably assume that Gnome Terminal is the wrapping terminal.</p>
<p>Extra info: other keys are also "stolen" by Gnome Terminal. I intend to display some sort of informative message about alternative keys for Gnome users.</p>
http://stackoverflow.com/questions/1768337/php-understanding-code-via-function-or-file-tracing-without-xdebug0PHP: Understanding code via function or file tracing (without XDebug)Pistos2009-11-20T04:26:35Z2009-11-20T14:18:45Z
<p>I have inherited a moderately large PHP codebase. In order to better understand how it works, I'd like to be able to print to logs a function or file trace whenever I hit a page, so I can correlate pages with source code. Are there any tools I can install? I have root on the server, and so have the ability to install anything as far as Apache or PHP add-ons goes.</p>
<p>I have heard about XDebug, but when reading up on installation, I've discovered that it is not compatible with Zend Optimizer. Unfortunately, this codebase requires Zend Optimizer, so XDebug does not appear to be an option for me at this time.</p>
<p>I'm developing under Linux.</p>
http://stackoverflow.com/questions/1702098/how-to-specify-different-strip-p-levels-for-patch0How to specify different --strip (-p) levels for patch?Pistos2009-11-09T16:23:31Z2009-11-09T16:29:39Z
<p>If I have a diff that has paths like these:</p>
<pre><code>--- a/b/foo/bar/baz.pl
+++ c/foo/bar/baz.pl
</code></pre>
<p>Is there a way to tell the patch utility that the diff roots are at different levels? i.e. -p2 for one, yet -p1 for the other. Or is there any alternative utility that will patch in such a case?</p>
http://stackoverflow.com/questions/893995/hook-onto-the-adding-of-new-dom-elements-with-jquery-or-plain-js1Hook onto the adding of new DOM elements with jQuery (or plain JS)Pistos2009-05-21T17:06:47Z2009-10-03T05:00:02Z
<p>To be clear: I am not asking how to put existing hooks onto new DOM elements. I know about the live() function and the old livequery plugin. I am asking something else.</p>
<p>What I want to know is how to hook onto the very creation of new DOM elements. The reason I'm asking is I'm creating a third-party user JS script that doesn't have control over first-party scripts. Those first-party scripts (which are obfuscated) update the page periodically by adding new DOM elements. I want to execute code after those elements are added.</p>
<p>Using $( '...' ).bind( 'ajaxSuccess', function() ..... ) works for some additions, but not all of them.</p>
http://stackoverflow.com/questions/1475387/web-page-summary-with-ruby0Web page summary with RubyPistos2009-09-25T04:09:32Z2009-09-25T04:41:01Z
<p>Can anyone recommend a Ruby library for creating a summary of a given URL? What I have in mind is the sort of one- or two-sentence summary as seen in search engine results.</p>
http://stackoverflow.com/questions/245121/a-library-to-convert-ansi-escapes-terminal-formatting-color-codes-to-html/252452#2524525Answer by Pistos for A library to convert ANSI escapes (terminal formatting/color codes) to HTMLPistos2008-10-31T02:31:00Z2009-09-15T19:42:04Z<p>There seems to be <a href="http://search.cpan.org/perldoc?HTML%3A%3AFromANSI" rel="nofollow">an HTML::FromANSI Perl module</a>.</p>
http://stackoverflow.com/questions/1350610/ruby-mailing-list-library-or-gem0Ruby: Mailing List library or gemPistos2009-08-29T06:03:42Z2009-09-15T05:17:34Z
<p>Can anyone recommend a good gem or library for managing a mailing list with Ruby? No Rails solutions, if possible, please (I don't want to have ActionWhatever dependencies, this will most likely be done with Ramaze).</p>
<p>I just need basic features, like management of the list itself (CRUD operations on the user list), plus being able to send notifications, welcome messages, and also auto respond to basic things like subscribe and unsubscribe.</p>
<p>Optimally, people should be able to subscribe via both a Ramaze web page (i.e. I'd have Ramaze call/access the lib's API), as well as by sending an email to a specific email address. But I am willing to forego the operations by email.</p>
<p>I'm willing to entertain non-Ruby, or non-programmatic solutions, if they are good, but the ability to subscribe from a web page [under my control] is a must.</p>
<p>EDIT: Sorry, one important detail I forgot to add: This is intended to be a one-way mailing list. That is, people should be able to subscribe and unsubscribe alright, but only one person should be allowed to send to the list for broadcasting.</p>
http://stackoverflow.com/questions/1350610/ruby-mailing-list-library-or-gem/1425237#14252370Answer by Pistos for Ruby: Mailing List library or gemPistos2009-09-15T05:17:34Z2009-09-15T05:17:34Z<p>I ended up going with Google Groups. (If silky would care to add an official answer to this effect, I would gladly mark it as the official accepted answer.)</p>
<p>Google Groups lets you alter settings so that you can have a "newsletter" like I wanted (i.e. single sender, multiple recipients). It also has an embeddable HTML snippet ready to go for quick subscription from a web page under your control.</p>
http://stackoverflow.com/questions/1001040/which-ruby-orm-framework-to-use-in-a-standalone-ruby-app/1407514#14075140Answer by Pistos for Which ruby ORM framework to use in a standalone ruby app?Pistos2009-09-10T20:22:24Z2009-09-10T20:22:24Z<p><a href="http://purepistos.net/m4dbi" rel="nofollow">M4DBI</a> may also be of interest. A low-level ORM which leverages DBI to allow you to write raw SQL if you like.</p>
http://stackoverflow.com/questions/1214541/how-can-i-create-a-nested-hash-as-a-constant-in-perl1How can I create a nested hash as a constant in Perl?Pistos2009-07-31T19:54:29Z2009-08-04T17:05:37Z
<p>I want to do, in Perl, the equivalent of the following Ruby code:</p>
<pre><code>class Foo
MY_CONST = {
'foo' => 'bar',
'baz' => {
'innerbar' => 'bleh'
},
}
def some_method
a = MY_CONST[ 'foo' ]
end
end
# In some other file which uses Foo...
b = Foo::MY_CONST[ 'baz' ][ 'innerbar' ]
</code></pre>
<p>That is, I just want to declare a constant, nested hash structure for use both in the class and outside. How to?</p>
http://stackoverflow.com/questions/368744/shell-scripting-die-on-any-error3Shell scripting: die on any errorPistos2008-12-15T15:41:49Z2009-08-03T14:06:42Z
<p>Suppose a shell script (/bin/sh or /bin/bash) contained several commands. How can I cleanly make the script terminate if any of the commands has a failing exit status? Obviously, one can use if blocks and/or callbacks, but is there a cleaner, more concise way? Using && is not really an option either, because the commands can be long, or the script could have non-trivial things like loops and conditionals.</p>
http://stackoverflow.com/questions/1126500/programming-customized-tab-completion-for-zsh0Programming customized tab completion for zshPistos2009-07-14T16:21:11Z2009-07-14T17:39:24Z
<p>Sorry if my google fu is too weak, but: I simply want to adjust zsh so that I can tab complete</p>
<pre><code>someappname -s
</code></pre>
<p>using the contents (filenames) of ~/somedir</p>
<p>For example:</p>
<pre><code>someapp -s f<tab>
</code></pre>
<p>should cycle through completions based on the files starting with the letter f in ~/somedir . So I might end up with a command line like: "someapp -s foobar".</p>
http://stackoverflow.com/questions/1126500/programming-customized-tab-completion-for-zsh/1126900#11269000Answer by Pistos for Programming customized tab completion for zshPistos2009-07-14T17:39:24Z2009-07-14T17:39:24Z<p>Well, I worked this out: (<a href="http://github.com/Pistos/diakonos/blob/2a449b47cdf996d796989719abfa30f2564b4e44/%5Fdiakonos%5Fzsh%5Fcompletion" rel="nofollow">source at github</a>)</p>
<pre><code>#compdef diakonos
typeset -A opt_args
local context state line
local sessiondir
sessiondir=${HOME}/.diakonos/sessions
_arguments -n -s -S \
"-s[specify session]:session:_files -W $sessiondir" \
"*:file:_files" \
&& return 0
return 1
</code></pre>
<p>I referenced <a href="http://www.linux-mag.com/id/1106" rel="nofollow">http://www.linux-mag.com/id/1106</a> ([free] registration required to read), and got help from #zsh on freenode.</p>
http://stackoverflow.com/questions/359109/using-the-scrollwheel-in-gnu-screen/1125947#11259475Answer by Pistos for Using the scrollwheel in GNU screenPistos2009-07-14T14:54:46Z2009-07-14T14:54:46Z<p>I believe you can just add a line like this to your ~/.screenrc:</p>
<p>termcapinfo xterm* ti@:te@</p>
<p>Where "xterm*" is a glob match of your current TERM. To confirm it works, ^A^D to detach from your screen, then "screen -d -r" to reattach, then ls a few times, and try to scroll back. It works for me.</p>
http://stackoverflow.com/questions/210974/what-are-your-must-have-editor-features9What are your must-have editor features?Pistos2008-10-17T02:59:38Z2009-07-07T15:34:02Z
<p>What are the 3 killer features of your favourite text editor that you couldn't live without; the features that keep you loyal to your editor, no matter how good other people say other editors are?</p>
<p>EDIT: Sorry for what appeared to be a dishonest, or karma whore question. I honestly didn't mean it that way. I have turned it into a community/wiki question.</p>
<p>Later EDIT: FWIW (to help soothe irritated nerves), I'm not asking this for pointless discussion. I am the author of a text editor, so I am trying to tap my target audience so I can direct my development efforts in the right directions to please more users. People very often say "editor XYZ rulez!" without saying why; I want to know the why.</p>
http://stackoverflow.com/questions/250284/best-practices-many-small-functions-methods-or-bigger-functions-with-logical-pr6Best practices: Many small functions/methods, or bigger functions with logical process components inline?Pistos2008-10-30T14:09:57Z2009-07-03T10:29:26Z
<p>Is it better to write many small methods (or functions), or to simply write the logic/code of those small processes right into the place where you would have called the small method? What about breaking off code into a small function even if for the time being it is only called from one spot?</p>
<p>If one's choice depends on some criteria, what are they; how should a programmer make a good judgement call?</p>
<p>I'm hoping the answer can be applied generally across many languages, but if necessary, answers given can be specific to a language or languages. In particular, I'm thinking of SQL (functions, rules and stored procedures), Perl, PHP, Javascript and Ruby.</p>
http://stackoverflow.com/questions/987887/how-ruby-on-rails-to-build-a-basic-site/998206#9982060Answer by Pistos for How: Ruby on Rails to build a basic sitePistos2009-06-15T20:27:19Z2009-06-15T20:27:19Z<p>I must recommend <a href="http://ramaze.net" rel="nofollow">Ramaze</a>. If you already know Ruby, but don't know Rails yet, Ramaze is better suited to you because it is "closer to home" as far as Ramaze apps being pure(r) Ruby.</p>
<p>For your DB access, you get a choice of ORMs. Sequel is most popular among Ramazers, but there's also DataMapper and M4DBI.</p>
<p>As Alan Alavi already said: You should familiarize yourself with MVC, but that can be done simply by diving in and getting your hands dirty. Try out <a href="http://ramaze.net/todolist.html" rel="nofollow">the todolist tutorial</a>, as it covers many of the core aspects and processes involved in building web apps.</p>
http://stackoverflow.com/questions/928299/web-development-with-ruby-without-rails/928529#9285290Answer by Pistos for web development with ruby without rails?Pistos2009-05-29T23:21:12Z2009-05-29T23:21:12Z<p>My personal choice and recommendation is <a href="http://ramaze.net" rel="nofollow">Ramaze</a> -- it's as simple as possible, but no simpler. Clean and concise without sacrificing power. Dances well with your choice of JS lib (jQuery, Prototype, Mootools) or ORM (<a href="http://sequel.rubyforge.org/" rel="nofollow">Sequel</a>, Datamapper, <a href="http://purepistos.net/m4dbi" rel="nofollow">M4DBI</a>) or templating engine. Also, don't forget about static generators like <a href="http://nanoc.stoneship.org/" rel="nofollow">nanoc</a>.</p>
http://stackoverflow.com/questions/893995/hook-onto-the-adding-of-new-dom-elements-with-jquery-or-plain-js/894274#8942740Answer by Pistos for Hook onto the adding of new DOM elements with jQuery (or plain JS)Pistos2009-05-21T18:09:42Z2009-05-21T18:09:42Z<p>Well, I went with this pair, which seems to fire on the desired DOM updates within 20 seconds or less:</p>
<pre><code>$( '#someid' ).bind( 'ajaxSuccess', function() { ... } );
$( '#someid' ).ajaxSuccess( function( e, r, s ) { ... } );
</code></pre>
<p>I'd rather not have to slow page loading by depending on livequery, and the replacedCreateElement solution thrashed the CPU.</p>
http://stackoverflow.com/questions/226060/what-is-your-favorite-user-interface-web-application/226196#2261962Answer by Pistos for What is your favorite User Interface? (web application)Pistos2008-10-22T15:09:15Z2009-05-14T13:02:49Z<p>I think stackoverflow has done a great job in many areas in terms of usability, including colour pallete, use of whitespace, anticipating user's need for information and providing or hiding appropriately, non-intrusive JS/AJAX.</p>
<p>Minus points for these increasingly obtrusive ads, though. :P</p>
<p>Gmail is also good. Honourable mention to github.com.</p>
<p>Update: I recently got introduced to <a href="http://friendfeed.com" rel="nofollow">FriendFeed</a>. I think they have also done a fabulous job with their web UI, in terms of clean yet attractive design, plus appropriate and helpful use of Javascript and AJAX to provide for a smooth, positive user experience. Check it out.</p>
http://stackoverflow.com/questions/367377/how-can-i-make-a-ruby-gem-package-copy-files-to-arbitrary-locations2How can I make a Ruby gem package copy files to arbitrary locations?Pistos2008-12-15T03:03:22Z2009-05-03T00:10:01Z
<p>Suppose you have a software package. You want to make it a gem, because gems are the de facto standard way to distribute anything in the Ruby world. Gems are great -- for libraries. But for real applications, the Rubygems system seems lacking. Only "recently" did they introduce a way to mark executables to be placed in somewhere in the system wide executable PATH. Unfortunately, Ruby gems still seems to be wanting in other aspects of software packaging, namely putting configuration files in places like /etc, or documentation under /usr/share/doc. Or is it? My question is:</p>
<p>Can I put instructions or code in a gemspec to have configuration installed into /etc, and documentation under some sensible, standardized place (like /usr/share/doc)? Or perhaps, as a workaround, can a post-install script be run to do these things?</p>
<p>For reference: <a href="http://www.rubygems.org/read/book/4" rel="nofollow">the GemSpec specification</a>.</p>
<p>Note that rubygems.org is down at the time of this writing. Here's the Google cache of that page: <a href="http://74.125.95.132/search?q=cache:JwJO6slR4BwJ:www.rubygems.org/read/chapter/20+http://www.rubygems.org/read/chapter/20%23page85&hl=en&ct=clnk&cd=1" rel="nofollow">http://74.125.95.132/search?q=cache:JwJO6slR4BwJ:www.rubygems.org/read/chapter/20+http://www.rubygems.org/read/chapter/20%23page85&hl=en&ct=clnk&cd=1</a></p>
<p>If you examine <a href="http://rubygems.rubyforge.org/svn/trunk/lib/rubygems/specification.rb" rel="nofollow">the specification.rb file in the repo</a>, and scroll down towards the end (search for ":section: Required gemspec attributes"), you can see what appear to be the currently supported attributes. I see nothing in there that looks like what I want.</p>
http://stackoverflow.com/questions/521040/how-to-have-favicon-icon-set-when-bookmarklet-dragged-to-toolbar3How to have favicon / icon set when bookmarklet dragged to toolbar?Pistos2009-02-06T16:39:51Z2009-02-27T00:34:30Z
<p>I've made myself a bookmarklet, and it functions just fine, but when added to a toolbar in Opera or Firefox, it just takes on the default bookmark icon for the browser (a globe and a star, respectively). My site has a favicon, and the window, tab and even [site] bookmark uses the favicon I've specified. Just not my bookmarklet.</p>
<p>How can I code my site or bookmarklet so that the bookmarklet gets the favicon, too?</p>
<p>I'm aware of various manual hackery techniques users can use to set the favicon after the fact, but those are undesirable solutions.</p>
http://stackoverflow.com/questions/390564/should-i-learn-rails-or-merb/401252#4012522Answer by Pistos for Should I learn Rails or Merb?Pistos2008-12-30T19:41:08Z2008-12-30T19:41:08Z<p>If you consider yourself a Ruby newbie, then you should try <a href="http://ramaze.net/" rel="nofollow">Ramaze</a>. It is just as powerful as Rails and Merb, but you write a heck of a lot less code (just look at the hello world example on the main page), and you will learn and write "purer" Ruby than you would with Rails. I would also say that you will grasp Ramaze more quickly.</p>
<p>Some links:</p>
<ul>
<li><a href="http://antoniocangiano.com/2008/01/08/ramaze-a-ruby-framework-that-will-amaze/" rel="nofollow">Ramaze: a Ruby framework that will amaze</a></li>
<li><a href="http://blog.purepistos.net/index.php/2008/11/18/ramaze-by-example/" rel="nofollow">Ramaze by Example</a></li>
<li><a href="http://ramaze.net/screencasts" rel="nofollow">Ramaze Screencasts</a></li>
</ul>
http://stackoverflow.com/questions/400836/javascript-jquery-performance-measurement-and-best-practices-not-load-time3Javascript (jQuery) performance measurement and best practices (not load time)Pistos2008-12-30T16:59:26Z2008-12-30T18:48:48Z
<p>I'll say right off the bat that this question is NOT about load times; I know about YSlow, the Firebug profiler, and whatever best practices and tools googlage reveals about page component load times.</p>
<p>I am asking what good profiling tools or libraries or add-ons there are for measuring actual execution of Javascript (specifically jQuery), insofar as improving actual user experience goes. For example, measuring the time from click to visible result on-screen, or helping to determine why a jQuery-based hover effect has slow responsiveness.</p>
<p>We are noticing that when the page/DOM grows relatively large (say, 70kb to 150kb worth of HTML, excluding external CSS, JS and images), and/or has very deep nesting (14-25 levels from <body> to deepest tag), jQuery events fire more slowly, or the whole JS user experience gets sluggish.</p>
<p>I also have googled and learned about best practices for selectors (e.g. selecting by id is much faster than selecting with classes), I will be implementing these practices. However, once all jQuery is fully loaded, and all events hooked, we still need to improve the actual event firing and execution.</p>
<p>I have implemented some event delegation already, and I do get the sense that having fewer hooked DOM elements makes things slightly better, but the overall experience still needs improvement with large pages. I should mention that, since the site is AJAX heavy (lots is loaded via AJAX as opposed to initial HTTP hit), we are making heavy use of livequery instead of the plain jQuery event hooks. I should also mention that we are slightly more focused on IE(7+) performance, but also require good Firefox performance.</p>
<p>As I develop and make changes, I figure I need a way to measure speeds pre- and post-change, so I can have concrete numbers on whether or not a change improves anything.</p>
<p>Any tips, tools, libs, blog posts, URLs?</p>
http://stackoverflow.com/questions/400836/javascript-jquery-performance-measurement-and-best-practices-not-load-time/401085#4010851Answer by Pistos for Javascript (jQuery) performance measurement and best practices (not load time)Pistos2008-12-30T18:48:48Z2008-12-30T18:48:48Z<p><a href="http://broofa.com/Tools/JSLitmus/" rel="nofollow">JSLitmus</a> looks like something I might try out.</p>
http://stackoverflow.com/questions/367377/how-can-i-make-a-ruby-gem-package-copy-files-to-arbitrary-locations/368567#3685670Answer by Pistos for How can I make a Ruby gem package copy files to arbitrary locations?Pistos2008-12-15T14:43:17Z2008-12-15T14:43:17Z<blockquote>
<p>You should not want/need to do this... gems are designed to be used as libraries... not as applications on their own (investigate your distros application package system for that type of thing).</p>
</blockquote>
<p>You know that. And I know that. But "they" don't know that. For many moons, the regular queries and comments were: "Is there a gem?" "Can this be installed as a gem?" "Why don't you make a gem?" "I didn't install this because it's not a gem."</p>
<p>Right or not, desirable or not, Joe Rubyist expects everything to be gemified. Only old schoolers are familiar with and seem to tolerate "ruby setup.rb" type deals.</p>
<p>Anyway, my application really is a standalone application; I can hardly imagine anyone including this like a library. Maybe as part of a collection of applications, but... usage as a library seems pretty far-fetched, but if that day should ever come, I'll cross that bridge when I get to it (to help people with any conflicts which inclusion might bring).</p>
<p>And there is no "dev/test/stage/prod" distinction. It's a Plain Old App, you run it from command line.</p>
<p>Anyway, thanks for your comments, at least my assumptions are affirmed in that the Rubygems system doesn't provide a way to do this.</p>
http://stackoverflow.com/questions/329188/report-generation-in-a-ruby-web-application/330023#3300232Answer by Pistos for Report Generation in a Ruby Web ApplicationPistos2008-12-01T04:11:50Z2008-12-01T04:11:50Z<p>Perhaps <a href="http://rubyreports.org/" rel="nofollow">Ruport</a>?</p>
<blockquote>
<p>A simple, extensible reporting system built for Rubyists</p>
</blockquote>
http://stackoverflow.com/questions/325082/how-can-i-check-from-ruby-whether-a-process-with-a-certain-pid-is-running/325097#3250972Answer by Pistos for How can I check from Ruby whether a process with a certain pid is running?Pistos2008-11-28T05:23:57Z2008-11-28T05:23:57Z<p>@John T, @Dustin: Actually, guys, I perused the Process rdocs, and it looks like </p>
<pre><code>Process.getpgid( pid )
</code></pre>
<p>is a less violent means of applying the same technique.</p>
http://stackoverflow.com/questions/325082/how-can-i-check-from-ruby-whether-a-process-with-a-certain-pid-is-running1How can I check from Ruby whether a process with a certain pid is running?Pistos2008-11-28T05:11:57Z2008-11-28T05:23:57Z
<p>The question title says it all. If there is more than one way, please list them. :) I only know of one, but I'm wondering if there is a cleaner, in-Ruby way.</p>
http://stackoverflow.com/questions/439799/whats-a-good-java-curses-like-library-for-terminal-applications/439807#439807Comment by Pistos on What's a good Java, curses-like, library for terminal applications?Pistos2009-12-03T23:34:27Z2009-12-03T23:34:27ZJava Curses last release: 2002.http://stackoverflow.com/questions/211025/git-svn-rebase-incomplete-data-delta-source-ended-unexpectedlyComment by Pistos on git svn rebase: Incomplete data: Delta source ended unexpectedlyPistos2009-11-30T18:18:04Z2009-11-30T18:18:04Z@pvgoddijn No sorry, a resolution was never actually found. The problem just went away because they officially moved to github and abandoned svn.http://stackoverflow.com/questions/1794162/ruby-web-spider-search-engine-library/1795828#1795828Comment by Pistos on Ruby web spider & search engine libraryPistos2009-11-25T12:54:02Z2009-11-25T12:54:02ZYep, already did that search, which is how I found Anemone.http://stackoverflow.com/questions/1794162/ruby-web-spider-search-engine-library/1794240#1794240Comment by Pistos on Ruby web spider & search engine libraryPistos2009-11-25T02:35:13Z2009-11-25T02:35:13ZGreat stuff; thanks agregoire. I will read up on these.http://stackoverflow.com/questions/1768337/php-understanding-code-via-function-or-file-tracing-without-xdebug/1768353#1768353Comment by Pistos on PHP: Understanding code via function or file tracing (without XDebug)Pistos2009-11-20T13:51:39Z2009-11-20T13:51:39Z@troelskn: They have been out of the picture for many months now, and when they were around, were extremely uncooperative. Getting the full source, or getting them to explain much of it are not likely prospects. :)http://stackoverflow.com/questions/1768337/php-understanding-code-via-function-or-file-tracing-without-xdebug/1768353#1768353Comment by Pistos on PHP: Understanding code via function or file tracing (without XDebug)Pistos2009-11-20T04:40:24Z2009-11-20T04:40:24ZThey (previous developers) do have some Guarded / encrypted code. So now what are my options? :(http://stackoverflow.com/questions/1768337/php-understanding-code-via-function-or-file-tracing-without-xdebug/1768353#1768353Comment by Pistos on PHP: Understanding code via function or file tracing (without XDebug)Pistos2009-11-20T04:39:43Z2009-11-20T04:39:43ZOkay, here's where that led:
Zend Optimizer not installed
This file was encoded by the Zend Guard. In order to run it, please install the Zend Optimizer (available without charge), version 3.0.0 or later.http://stackoverflow.com/questions/1768337/php-understanding-code-via-function-or-file-tracing-without-xdebug/1768353#1768353Comment by Pistos on PHP: Understanding code via function or file tracing (without XDebug)Pistos2009-11-20T04:36:19Z2009-11-20T04:36:19ZI do have two servers already; production and development. I don't know how the Zend framework works, but I was under the impression Zend Optimizer is required for the site to run. I will investigate. Thanks for your response.http://stackoverflow.com/questions/1478622/firebug-net-monitor-options/1478652#1478652Comment by Pistos on firebug net monitor optionsPistos2009-11-19T18:52:21Z2009-11-19T18:52:21ZI've since learned that it is because it is a cross-site / cross-domain AJAX attempt. You need to use $.getJSON or $.ajax to issue a JSONP request to do cross-site.http://stackoverflow.com/questions/1478622/firebug-net-monitor-options/1478652#1478652Comment by Pistos on firebug net monitor optionsPistos2009-11-19T16:57:47Z2009-11-19T16:57:47ZYes, but... why is Firefox not GETting or POSTing?http://stackoverflow.com/questions/1702098/how-to-specify-different-strip-p-levels-for-patch/1702146#1702146Comment by Pistos on How to specify different --strip (-p) levels for patch?Pistos2009-11-09T16:39:01Z2009-11-09T16:39:01Z@Walter: Thanks. That's a good idea to try, and it makes sense.http://stackoverflow.com/questions/1702098/how-to-specify-different-strip-p-levels-for-patchComment by Pistos on How to specify different --strip (-p) levels for patch?Pistos2009-11-09T16:24:12Z2009-11-09T16:24:12ZI understand that I can move the directories around, or use symlinks, but I'm wondering if the patch util can just be smart enough to take another switch or argument to handle it.http://stackoverflow.com/questions/1214541/how-can-i-create-a-nested-hash-as-a-constant-in-perl/1214663#1214663Comment by Pistos on How can I create a nested hash as a constant in Perl?Pistos2009-11-04T14:18:58Z2009-11-04T14:18:58Z@Sinan: Thanks, but that doesn't help in my case. You might be mistaking my circumstances for those of a user on shared hosting or something. The barriers are not technical, they are social/political/managerial. :)http://stackoverflow.com/questions/449541/how-do-you-merge-selective-files-with-git-merge/1355990#1355990Comment by Pistos on How do you merge selective files with git-merge?Pistos2009-10-07T02:07:41Z2009-10-07T02:07:41ZBart J's linked article is the best approach. Clear, simple, one command. It's the one I'm about to use. :)http://stackoverflow.com/questions/1509915/converting-camel-case-to-underscore-case-in-ruby/1509957#1509957Comment by Pistos on Converting camel case to underscore case in rubyPistos2009-10-02T14:47:48Z2009-10-02T14:47:48ZBetter to have the operand as a method argument rather than to invade the core String class.