Pistos

2,425
reputation
131 views

Registered User

name Pistos
member for 1 year
seen 15 hours ago
website
location Canada
age
15h
answered Making Vim ubiquitous?
Dec
11
comment Who are good web hosts for Ruby on Rails projects?
I use WebbyNode (though not for Rails). They are a good VPS host.
Dec
10
answered Something to use for graphing numbers
Dec
9
comment Inverting a diff or patch || CVS diff
We are using viewvc, but we can't really figure out how to get it to work well with branches. It only operates smoothly with HEAD material. Anyway, your temp tag solution works just fine, even if it's a bit kludgy (compared to non-CVS solutions). Thank you.
Dec
8
comment Inverting a diff or patch || CVS diff
That's one way, yes, but surely there's a better way. :) I will call this "Plan C".
Dec
8
asked Inverting a diff or patch || CVS diff
Dec
6
awarded  Mortarboard
Dec
3
comment What’s a good Java, curses-like, library for terminal applications?
Java Curses last release: 2002.
Nov
30
comment git svn rebase: Incomplete data: Delta source ended unexpectedly
@pvgoddijn No sorry, a resolution was never actually found. The problem just went away because they officially moved to github and abandoned svn.
Nov
30
awarded  Necromancer
Nov
25
comment Ruby web spider & search engine library
Yep, already did that search, which is how I found Anemone.
Nov
25
comment Ruby web spider & search engine library
Great stuff; thanks agregoire. I will read up on these.
Nov
25
asked Ruby web spider & search engine library
Nov
20
comment PHP: Understanding code via function or file tracing (without XDebug)
@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. :)
Nov
20
comment PHP: Understanding code via function or file tracing (without XDebug)
They (previous developers) do have some Guarded / encrypted code. So now what are my options? :(
Nov
20
comment PHP: Understanding code via function or file tracing (without XDebug)
Okay, 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.
Nov
20
comment PHP: Understanding code via function or file tracing (without XDebug)
I 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.
Nov
20
asked PHP: Understanding code via function or file tracing (without XDebug)
Nov
19
comment firebug net monitor options
I'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.
Nov
19
comment firebug net monitor options
Yes, but... why is Firefox not GETting or POSTing?
Nov
11
awarded  Popular Question
Nov
9
comment How to specify different --strip (-p) levels for patch?
@Walter: Thanks. That's a good idea to try, and it makes sense.
Nov
9
comment How to specify different --strip (-p) levels for patch?
I 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.
Nov
9
asked How to specify different --strip (-p) levels for patch?
Nov
4
comment How can I create a nested hash as a constant in Perl?
@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. :)
Oct
31
accepted Subversion vs CVS
Oct
24
awarded  Civic Duty
Oct
17
awarded  Yearling
Oct
9
accepted Disable Ctrl-Alt-L in KDE
Oct
7
comment How do you merge selective files with git-merge?
Bart J's linked article is the best approach. Clear, simple, one command. It's the one I'm about to use. :)
Oct
2
comment Converting camel case to underscore case in ruby
Better to have the operand as a method argument rather than to invade the core String class.
Oct
2
comment Good ruby gem sources?
See also gemcutter.org which has sprung up since you asked this question. It bills itself as "the next generation of gem hosting for the Ruby community. Instantly publish your gems and install them." (I myself don't use it [yet].)
Oct
2
comment Using the scrollwheel in GNU screen
The behaviour you describe indeed happens, even for me. It's something I live with; I just alternate between scroll wheel and Copy Mode.
Oct
1
accepted Good ruby gem sources?
Sep
25
comment Web page summary with Ruby
That sounds like a good strategy for a first stab. And I've used Nokogiri a number of times in the past; it is my lib of choice for webscraping. Thanks for your response, Mark.
Sep
25
comment Web page summary with Ruby
Consider Bing search results: bing.com/search?q=linux+console+editor The first hit has the following summary: "In this edition of Linux Explorers, we're picking your text editor for you. ... Make a new file called "tessst" by opening a console and typing this ..." I want to be able to come up with a summary like that for any arbitrary URL that I give. I have already considered webscraping search engine results, but the problem there is that sometimes a given page may not have been indexed (due to reasons such as newness, or robots.txt).
Sep
25
asked Web page summary with Ruby
Sep
17
comment Restore a deleted file in a Git repo
Agreed! The accepted answer will reapply the entire commit, but in my case, I just want to bring back one file. Thanks, Charles.
Sep
15
accepted Ruby: Mailing List library or gem
Sep
15
answered Ruby: Mailing List library or gem
Sep
11
comment Ruby: Mailing List library or gem
@silky: If you write this as an answer, I will accept it as the chosen solution. If you don't within a few days, I will write it myself.
Sep
10
answered Which ruby ORM framework to use in a standalone ruby app?
Aug
29
revised Ruby: Mailing List library or gem
Added "one way" criterion.
Aug
29
comment Ruby: Mailing List library or gem
Okay, I looked at LibreList, and it looks fabulous... except I forgot to add one important detail. See the comment I just added to my original question.
Aug
29
comment Ruby: Mailing List library or gem
Sounds good, Jörg! Thanks. I'm not against writing Python, but if it can accept a simple POST to subscribe, then that should be doable from any language.
Aug
29
comment Ruby: Mailing List library or gem
The reason I care about the language it's written in is that I want to be able to subscribe email addresses programmatically. If that can be done via some kind of specially-formulated GET or POST request, that would do, too. I'll check out Lamson; thanks for the suggestion.
Aug
29
asked Ruby: Mailing List library or gem
Aug
19
comment PHP error log and newline chars
It should also be mentioned that if the user that Apache runs as cannot write to the specified error_log file (due to permissions problems), it will also go to syslog or Apache log.
Aug
4
comment How can I create a nested hash as a constant in Perl?
Thanks, Ether. I am going to go with this syntax, since it lets me consistently use references everywhere. I would mark yours as the accepted answer, but it came a bit too late. :)
Aug
4
comment Ignore modified (but not committed) files in git?
Awesome. This is exactly what I needed to ignore files that were already in the repo, but modified.