User jettero - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T03:56:11Zhttp://stackoverflow.com/feeds/user/30876http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/233013/how-does-your-favorite-language-handle-deep-recursion8How does your favorite language handle deep recursion?jettero2008-10-24T10:30:17Z2009-11-19T04:58:12Z
<p>I recently started learning Python and I was rather surprised to find a 1000 deep recursion limit (by default). If you set it high enough, about 30000, it crashes with a segmentation fault just like C. Although, C seems to go quite a lot higher.</p>
<p>(The Python folks are quick to point out that you can always convert recursive functions to iterative ones and that they're always faster. That's 100% true. It's not really what my question is about though.)</p>
<p>I tried the same experiment in Perl and somewhere around 10 million recursions it consumed all of my 4 gigs of ram and I used ^C to stop trying. Clearly Perl doesn't use the C stack, but it does use a ridiculous amount of memory when it recurses -- not terribly shocking considering how much work it has to do to call functions.</p>
<p>I tried in Pike and was completely surprised to get 100,000,000 recursions in about 2 seconds. I have no idea how it did that, but I suspect it flattened the recursion to an iterative process -- it doesn't seem to consume any extra memory while it does it. [Note: Pike does flatten trivial cases, but segfaults on more complicated ones, or so I'm told.]</p>
<p>I used these otherwise useless functions:</p>
<pre><code>int f(int i, int l) { if(i<l) return f(i+1,l); return i; }
sub f { return f($_[0]+1, $_[1]) if $_[0]<$_[1]; return $_[0] };
def f(i,l):
if i<l:
return f(i+1,l)
return i
</code></pre>
<p>I'm very curious how other languages (e.g., PHP, Ruby, Java, Lua, Ocaml, Haskell) handle recursion and why they handle it that way. Additionally, please note whether it makes a difference if the function is "tail-recursive" (see comment).</p>
http://stackoverflow.com/questions/1577719/java-sockets-bufferedreader-and-readline-hang0Java, sockets, BufferedReader, and readline hang ... :(jettero2009-10-16T12:16:53Z2009-10-16T12:42:47Z
<p>I'm not a Java programmer at all. I try to avoid it at all costs actually, but it is required that I use it for a class (in the school sense). The teacher requires that we use Socket(), BufferedReader(), PrintWriter() and various other things including BufferedReader()'s readLine() method.</p>
<p>Basically, this is the problem I'm having. The documentation clearly states that readLine should return a null at the end of the input stream, but that's not what's happening.</p>
<pre><code>Socket link = new Socket(this.address, 80);
BufferedReader in = new BufferedReader( new InputStreamReader( link.getInputStream() ));
PrintWriter out = new PrintWriter( new PrintWriter( link.getOutputStream(), true ));
out.print("GET blah blah blah"); // http request by hand
out.flush(); // send the get please
while( (s=in.readLine()) != null ) {
// prints the html correctly, hooray!!
System.out.println(s);
}
</code></pre>
<p>Instead of finishing at the end of the HTML, I get a blank line, a 0 and
another blank line and then the next in.readLine() hangs forever. Why?
Where's my null?</p>
<p>I tried out.close() to see if maybe Yahoo! was doing a persistent http
session or something (which I don't think it would without the header that
we're willing to do it).</p>
<p>All the Java sockets examples I'm finding on the net seem to indicate the
while loop is the correct form. I just don't know enough Java to debug
this.</p>
http://stackoverflow.com/questions/933844/how-can-i-use-a-c-class-from-perl/936016#9360165Answer by jettero for How can I use a C++ class from Perl?jettero2009-06-01T18:13:17Z2009-06-02T14:48:11Z<p>I would normally choose XS, like tsee, but there is also <a href="http://search.cpan.org/perldoc?Inline::C" rel="nofollow">Inline::C</a> (or <a href="http://search.cpan.org/perldoc?Inline::CPP" rel="nofollow">Inline::CPP</a> in this case). I dislike SWiG and tend to avoid packages built around it.</p>
http://stackoverflow.com/questions/910241/how-can-i-drop-privileges-in-perl/910397#9103975Answer by jettero for How can I drop privileges in Perl?jettero2009-05-26T12:19:41Z2009-05-26T16:43:53Z<p>You don't really need a module, although the one linked by Benji York looks pretty nice.</p>
<p>It's a simple matter of setting the UID via $< and $>. See perlvar for further information on these. You can also set the GID this way using $( and $).</p>
http://stackoverflow.com/questions/874262/transparently-handling-gzip-encoded-content-with-wwwmechanize/874355#8743551Answer by jettero for Transparently Handling GZip Encoded content with WWW::Mechanizejettero2009-05-17T10:51:43Z2009-05-17T10:51:43Z<p>It looks to me like you can replace it by using the $res->content( $bytes ) member.</p>
<p>By the way, I found this stuff by looking at the source of LWP::UserAgent, then HTTP::Response, then <a href="http://search.cpan.org/~gaas/libwww-perl/lib/HTTP/Message.pm" rel="nofollow">HTTP::Message</a>.</p>
http://stackoverflow.com/questions/773685/format-patch-works-reasonably-well-looking-for-a-better-way0format-patch works reasonably well, looking for a better way.jettero2009-04-21T17:30:18Z2009-04-22T16:53:30Z
<p>I have two branches that are different enough that rebasing seems to not work -- or I don't know how to do it.</p>
<p>I have a "public" branch with a bunch of files removed (using filter-branch). Even though most of the commits match up in terms of deltas, the commit ids are all different. I've tried quite a few methods to pull changes from my dev branch to my public branch... I find it hard to believe it can do what I want it to do -- but I suspect I just don't know how to do it. In any case, this works fine, but seems wrong.</p>
<pre><code>git checkout dev
git format-patch --stdout last_sync_tag > catchup.mbox
git checkout public
git am catchup.mbox
git --skip # talks about a missing file
git --skip # talks about a missing file
git --skip # talks about a missing file
</code></pre>
<p>Any tips or suggestions, which will probably include not filter-branching out files you don't want on the public branch (though, how do you then get rid of them?), are welcome.</p>
<p>My tree(s) look more or less like this:</p>
<pre><code>dev: a-b-c-d-e-f-g-h-i-j-k
pub: t-u-v-w-x
</code></pre>
<p>t ≅ a, u ≅ c, v ≅ d, w ≅ e, x ≅ g. i,j,k are new patches I'd like to move over.</p>
<pre><code>checkout pub
rebase --onto pub i # I really expected this to work
</code></pre>
http://stackoverflow.com/questions/765029/does-use-lib-work-for-unc-paths/765460#7654601Answer by jettero for Does 'use lib' work for UNC paths?jettero2009-04-19T14:02:30Z2009-04-19T14:02:30Z<p>I know I ran into trouble trying to use mapped drives and unc paths from apache because the apache user was not allowed to use network drives. That was difficult to figure out -- but it's possible to do it. That may be a related problem.</p>
http://stackoverflow.com/questions/755994/adaptation-problem-with-the-blowfish-encryption-in-c/756160#7561600Answer by jettero for Adaptation problem with the Blowfish Encryption in Cjettero2009-04-16T13:37:59Z2009-04-18T15:20:38Z<p>I have a hunch it's a dirty IV, but it's just a guess.</p>
<pre><code>for(i=0; i<8; i++) ivec[i] = 'i';
BF_cbc_encrypt(inputz, outputz, strlen(inputz), &key, ivec, BF_ENCRYPT);
// won't decrypt right:
BF_cbc_encrypt(inputz, outputz, strlen(inputz), &key, ivec, BF_DECRYPT);
// without resetting the ivec to all 'i's, the decryption will fail.
// This would work though:
for(i=0; i<8; i++) ivec[i] = 'i';
BF_cbc_encrypt(inputz, outputz, strlen(inputz), &key, ivec, BF_ENCRYPT);
for(i=0; i<8; i++) ivec[i] = 'i';
BF_cbc_encrypt(inputz, outputz, strlen(inputz), &key, ivec, BF_DECRYPT);
</code></pre>
<p>My guess is only correct if every block after the first decrypts correctly though.</p>
<p>Another big problem with strlen(inputz) is that if the strlen() doesn't fall exactly on an 8byte boundary, your decrypt will ultimately fail. I have addressed the problem rather completely as a <a href="http://gist.github.com/96410" rel="nofollow">gist on github</a>.</p>
http://stackoverflow.com/questions/736616/how-can-i-get-a-character-at-a-given-index-in-perl/737715#7377150Answer by jettero for How can I get a character at a given index in Perl?jettero2009-04-10T14:07:19Z2009-04-10T14:07:19Z<p>Corollary to the other substr() answers is that you can use it to <em>set</em> values at an index also. It supports this as lvalue or with extra arguments. It's also very similar to splice, which is the same thing, but for arrays.</p>
<pre><code>$string = "hello";
substr($string, 2, 2) = "this works?";
substr($string, 2, 2, "same thing basically");
@a = qw(s t r i n g s a n d t h i n g s);
@cut_out = splice(@a, 2, 2);
@cut_out = splice(@a, 2, 2, @replacement);
</code></pre>
http://stackoverflow.com/questions/599774/when-is-an-ambiguous-grammar-or-production-rule-ok-bison-shift-reduce-warnings2When is an ambiguous grammar or production rule OK? (bison shift/reduce warnings)jettero2009-03-01T12:56:51Z2009-04-05T13:08:18Z
<p>There are certainly plenty of docs and howtos on resolving shift/reduce errors. The bison docs suggest the correct solution is usually to just %expect them and deal with it.</p>
<p>When you have things like this:</p>
<pre><code>S: S 'b' S | 't'
</code></pre>
<p>You can easily resolve them like this:</p>
<pre><code>S: S 'b' T | T
T: 't'
</code></pre>
<p>My question is: Is it better to leave the grammar a touch ambiguous and %expect shift/reduce problems or is it better to try to adjust the grammar to avoid them? I suspect there is a balance and it's based on the needs of the author, but I don't really know.</p>
http://stackoverflow.com/questions/709433/how-can-i-remove-the-unwanted-objects-from-my-repo-after-filter-branch-subdirec2how can I remove the unwanted objects from my repo after filter-branch --subdirectory-filterjettero2009-04-02T12:05:17Z2009-04-02T12:06:29Z
<p>I'm using</p>
<pre><code>git filter-branch --subdirectory-filter dir/name -- --all
</code></pre>
<p>to build a repo that only has history relating to that dir/name. Before I do the filter, I clone the original repo (which is very much bigger) into a tmp dir. After the filter-branch, the repo looks just how I want it, with one exception: It seems to still contain all the objects from the original repo even though they're not shown in "git log."</p>
<p>How can I remove all those unwanted objects completely?</p>
<p>I've tried things like:</p>
<pre><code>git reflog expire --expire=now --all
git gc --aggressive --prune=now
</code></pre>
<p>It's clear to me that I don't know why they're still there or what it means to remove them, but I'd sure like to. A bit of possibly related information working against me is that I had done a git repack -a on my source repo a while back and it seems to copy that packfile over to the new repo. Seems like I should still be able to do what I want though.</p>
http://stackoverflow.com/questions/172186/what-programming-religious-argument-bothers-you-the-most/690615#6906151Answer by jettero for What programming religious argument bothers you the most?jettero2009-03-27T17:03:10Z2009-03-29T01:08:30Z<p>I've come to believe that "choosing the best tool for the job" is a religious argument -- and one that irritates me to no end. I mean, clearly you can't write a driver in python, or a web application in C... </p>
<p>... but the choice between perl/ruby/php/python tends to be a matter of personal taste rather than which "tool is right for the job." I wish people would realize that personal taste is ok and these tools tend to cover all the same jobs. I prefer vim over emacs too, ymmv.</p>
http://stackoverflow.com/questions/683986/how-can-i-catch-changes-to-env/685922#6859224Answer by jettero for How can I catch changes to %ENV?jettero2009-03-26T14:00:40Z2009-03-26T14:00:40Z<p>This is doable. I think there's probably a performance penalty for doing the below, and I'm sure I didn't cover all the possible cases, but this should definitely get you started.</p>
<pre><code>use strict;
use warnings;
tie %ENV, 'change_noticer', %ENV or die $!;
$ENV{PATH} .= ":test";
print $ENV{PATH}, "\n";
delete $ENV{PATH};
package change_noticer;
use strict;
use warnings;
use Carp;
use Tie::Hash;
use base 'Tie::StdHash';
sub DELETE {
my $this = shift;
carp "deleting \$ENV{$_[0]}";
$this->SUPER::DELETE(@_);
}
sub STORE {
my $this = shift;
carp "altering \$ENV{$_[0]}";
$this->SUPER::STORE(@_);
}
sub TIEHASH {
my $class = shift;
my $this = bless {}, $class;
while( my ($k,$v) = splice @_, 0, 2 ) {
$this->{$k} = $v;
}
return $this;
}
</code></pre>
http://stackoverflow.com/questions/678393/why-do-you-not-use-cpan-modules/681117#6811172Answer by jettero for Why do you not use CPAN modules?jettero2009-03-25T11:09:49Z2009-03-25T11:09:49Z<blockquote>
<p>the target machine doesn't necessarily have the needed module</p>
</blockquote>
<p>This can be valid in some environments. One of my friends works at a huge mega conglomerate spanning countries and continents. Frequently, he uses perl to make tape drives do things all over the world. The scripts must be deployed on literally thousands of machines and installing modules is a really big deal -- usually involving a committee and multiple sysadmins at each physical location. He tends to avoid them at all costs and I can't say I blame him.</p>
<p>Is there a solution for that? I really don't think there is. </p>
<p>(This above is a cut and paste from my answer to a really similar question on permonks.)</p>
<p><a href="http://perlmonks.org/?node_id=750387" rel="nofollow">http://perlmonks.org/?node_id=750387</a></p>
<blockquote>
<p>(answer, use PAR or PAR::Packer)</p>
</blockquote>
<p>I did suggest PAR to him once, but it wasn't practical at all. None of the machines are similar enough for PAR to really be useful in a general case. His options were: don't use modules or maintain 1300 PAR binaries. PAR is pretty hard to get working really well even when you definitely know the target patform, so he elected to not use modules.</p>
http://stackoverflow.com/questions/603340/what-do-you-keep-in-your-perl-toolbox/606501#6065014Answer by jettero for What do you keep in your Perl toolbox?jettero2009-03-03T14:07:46Z2009-03-03T14:07:46Z<ul>
<li><a href="http://search.cpan.org/perldoc?POE" rel="nofollow">POE</a></li>
<li><a href="http://search.cpan.org/perldoc?WWW::Mechanize" rel="nofollow">WWW::Mechanize</a></li>
<li><a href="http://search.cpan.org/perldoc?Spreadsheet::WriteExcel" rel="nofollow">Spreadsheet::WriteExcel</a></li>
<li><a href="http://search.cpan.org/perldoc?GD" rel="nofollow">GD</a></li>
<li><a href="http://search.cpan.org/perldoc?DBM::Deep" rel="nofollow">DBM::Deep</a></li>
<li><a href="http://search.cpan.org/perldoc?XML::Twig" rel="nofollow">XML::Twig</a></li>
<li><a href="http://search.cpan.org/perldoc?Net::Telnet::Cisco" rel="nofollow">Net::Telnet::Cisco</a></li>
<li><a href="http://search.cpan.org/perldoc?Net::CIDR" rel="nofollow">Net::CIDR</a></li>
<li><a href="http://search.cpan.org/perldoc?Math::BigInt" rel="nofollow">Math::BigInt</a></li>
<li><a href="http://search.cpan.org/perldoc?Math::BigFloat" rel="nofollow">Math::BigFloat</a></li>
<li><a href="http://search.cpan.org/perldoc?Math::BigRat" rel="nofollow">Math::BigRat</a></li>
<li><a href="http://search.cpan.org/perldoc?Math::Business::BollingerBands" rel="nofollow">Math::Business::BollingerBands</a></li>
<li><a href="http://search.cpan.org/perldoc?Math::Units::PhysicalValue" rel="nofollow">Math::Units::PhysicalValue</a></li>
<li><a href="http://search.cpan.org/perldoc?Statistics::Basic" rel="nofollow">Statistics::Basic</a></li>
<li><a href="http://search.cpan.org/perldoc?Net::SMTP::OneLiner" rel="nofollow">Net::SMTP::OneLiner</a></li>
<li><a href="http://search.cpan.org/perldoc?Net::IMAP::Simple::Plus" rel="nofollow">Net::IMAP::Simple::Plus</a></li>
<li><a href="http://search.cpan.org/perldoc?X11::Protocol" rel="nofollow">X11::Protocol</a></li>
<li><a href="http://search.cpan.org/perldoc?CGI::Fast" rel="nofollow">CGI::Fast</a></li>
<li><a href="http://search.cpan.org/perldoc?CGI::Session" rel="nofollow">CGI::Session</a></li>
</ul>
http://stackoverflow.com/questions/596173/why-cant-perls-par-find-the-loadable-object-for-socket-pm/596414#5964142Answer by jettero for Why can't Perl's PAR find the loadable object for Socket.pm?jettero2009-02-27T20:07:27Z2009-02-27T20:07:27Z<p>The advantage of installing an actual perl on your HPUX is that your cygwin app can then run on the hpux perl. PAR packages aren't normally going to work between any two platforms. In my mind, it's not really any different than producing the hello.exe on cygwin and trying to run it on HPUX.</p>
http://stackoverflow.com/questions/594257/when-are-schwartzian-transforms-useful/595347#5953472Answer by jettero for When are Schwartzian Transforms useful?jettero2009-02-27T15:59:37Z2009-02-27T15:59:37Z<p>I know this is technically already answered rather completely, but I had a couple relevant side notes.</p>
<p>First, I usually prefer cmpthese() to timethese() because it tells you which is better in a human readable and informative way instead of just presenting times.</p>
<p>Second, for theoretical problems like this, I usually try to avoid syscalls entirely where possible, since the kernel can make you wait forever if it's in the mood to do so -- not really a fair test.</p>
<p>Thrid, It's interesting to note that the transform is always more expensive if the list is already sorted: If you set $point_of_interest=2, the transform wins; but if you set $point_of_interest=1, the regular sort will win. I find that result quite interesting and worth mentioning.</p>
<pre><code>use strict;
use Benchmark qw(cmpthese);
my $point_of_interest = 2;
my @f = (1 .. 10_000) x $point_of_interest;
my @b;
cmpthese( 500, {
transform => sub {
@b =
map {$_->[0]}
sort {$a->[1] <=> $b->[1]}
map {[$_, expensive($_)]}
@f
},
vanilla => sub { @b = sort { expensive($a) <=> expensive($b) } @f },
});
sub expensive {
my $arg = shift;
$arg .= "_3272";
$arg += length "$arg";
$arg = $arg ** 17;
$arg = sqrt($arg);
$arg;
}
</code></pre>
http://stackoverflow.com/questions/583701/why-doesnt-this-jquery-post-work-with-perl-cgi1Why doesn't this jQuery.post work with Perl CGI?jettero2009-02-24T21:32:09Z2009-02-25T21:32:36Z
<p>I'm trying to figure out why I'm not seeing params with $.post("/url/", {wtf: 2}).</p>
<p>I'm using this perl:</p>
<pre><code>use strict;
use CGI;
my $cgi = new CGI;
print $cgi->header("text/javascript");
print "'no'";
use Data::Dumper;
warn Dumper({ (map {$_=>$cgi->param($_ )} $cgi->param), postdata=>$cgi->param("POSTDATA") });
</code></pre>
<p>When I issue a $.get("/url", {wtf: 2}), I get the results I expect and find
wtf is 2 in the logs. When I use $.post("/url/", {wtf: 2}), I don't seem
to get any params at all (just a $VAR1 = { postdata=>undef } in the logs).</p>
<p>What am I missing?</p>
<p>Firebug reveals that: Transfer-Encoding is "chunked" and Content-Type is "application/x-www-form-urlencoded; charset=UTF-8". Further, the Post tab seems to show the arguments in the request, but no joy from CGI.</p>
http://stackoverflow.com/questions/586177/platforms-for-running-memcached/586298#5862981Answer by jettero for Platforms for running memcachedjettero2009-02-25T14:57:00Z2009-02-25T14:57:00Z<p>There doesn't seem to be any technical disadvantage to running it in windows. It's mainly a cost thing. If the licenses are just sitting around unused, there's probably no disadvantage at all. I do recall problems on older windows with memory leaks in older windows APIs, particularly the TCP stuff -- but presumably that stuff is all fixed in modern windows.</p>
http://stackoverflow.com/questions/232393/do-you-eat-your-own-dogfood/232978#2329781Answer by jettero for Do you eat your own dogfood?jettero2008-10-24T10:07:26Z2008-10-24T10:07:26Z<p>If I'm not using the software I'm writing, nobody else is going to.</p>
http://stackoverflow.com/questions/229303/are-there-any-good-issue-tracking-systems-that-can-track-git-commits-branches/230514#2305140Answer by jettero for Are there any good Issue Tracking systems that can track git commits/branchesjettero2008-10-23T16:55:15Z2008-10-23T16:55:15Z<p>I wrote a <a href="http://git.or.cz/gitwiki/InterfacesFrontendsAndTools#head-6d748617e6dec3ccedd89ce22616bf1423b51971" rel="nofollow">script</a> I run from crontab so trac an interact with svn (natively) without realizing the code deltas come from git. It's a partial solution, but trac is worth using.</p>
http://stackoverflow.com/questions/1577719/java-sockets-bufferedreader-and-readline-hang/1577833#1577833Comment by jettero on Java, sockets, BufferedReader, and readline hang ... :(jettero2009-10-16T12:45:07Z2009-10-16T12:45:07ZThis makes sense. I needed to check the headers.
I'm just going to use http1.0.http://stackoverflow.com/questions/1577719/java-sockets-bufferedreader-and-readline-hang/1577740#1577740Comment by jettero on Java, sockets, BufferedReader, and readline hang ... :(jettero2009-10-16T12:38:15Z2009-10-16T12:38:15ZYeah, that makes sense and it works. In other languages I would simply close my side of the socket so the webserver knows there's only going to be one request... but when I out.close() it seems to close both sides of the link.
Is there a way to close exactly one side? Am I misinterpreting what happens?http://stackoverflow.com/questions/1577719/java-sockets-bufferedreader-and-readline-hang/1577726#1577726Comment by jettero on Java, sockets, BufferedReader, and readline hang ... :(jettero2009-10-16T12:36:01Z2009-10-16T12:36:01Z... reading from a socket, yes. I added that to the question, thanks.http://stackoverflow.com/questions/933844/how-can-i-use-a-c-class-from-perl/936016#936016Comment by jettero on How can I use a C++ class from Perl?jettero2009-06-02T14:47:36Z2009-06-02T14:47:36ZCertainly true. I wasn't personally even aware of that one.http://stackoverflow.com/questions/921559/which-mvc-framework-in-perl-has-its-own-standalone-server/921702#921702Comment by jettero on Which MVC framework in Perl has its own standalone server?jettero2009-05-28T17:05:29Z2009-05-28T17:05:29ZIt can be made to use HTTP::Server::Simple, so you could probably grow a "stand alone server" off that...
http://stackoverflow.com/questions/910241/how-can-i-drop-privileges-in-perl/910397#910397Comment by jettero on How can I drop privileges in Perl?jettero2009-05-26T16:44:57Z2009-05-26T16:44:57Zgood point. I imagined he'd just use the drop priv module, and there's really no reason not to, or I'd have provided an example. It would look much like the source for the module though.http://stackoverflow.com/questions/773685/format-patch-works-reasonably-well-looking-for-a-better-way/773841#773841Comment by jettero on format-patch works reasonably well, looking for a better way.jettero2009-04-22T22:36:25Z2009-04-22T22:36:25ZI based a cute little git command after this. Works great, thanks.http://stackoverflow.com/questions/142916/whats-your-favorite-programmable-calculator/166795#166795Comment by jettero on What's your favorite programmable calculator?jettero2009-04-22T14:41:00Z2009-04-22T14:41:00Zthat looks infix... if it's postfix, I'm going to get one on ebay come hell or high water...http://stackoverflow.com/questions/773685/format-patch-works-reasonably-well-looking-for-a-better-way/774632#774632Comment by jettero on format-patch works reasonably well, looking for a better way.jettero2009-04-22T01:19:58Z2009-04-22T01:19:58ZThat's what I woulda thought would work, but it doesn't. I made a new branch called blarg, reset --hard a few commits back and tried git rebase -v --onto blarg 80d79e3, where 80d79e3 is the correct commit on the dev branch. It just says: First, rewinding head to replay your work on top of it... Fast-forwarded blarg to blarg. with -v, it shows it's trying to rebase blarg's HEAD onto blarg.http://stackoverflow.com/questions/773685/format-patch-works-reasonably-well-looking-for-a-better-way/773841#773841Comment by jettero on format-patch works reasonably well, looking for a better way.jettero2009-04-21T18:40:57Z2009-04-21T18:40:57ZI like this. I was cherry-picking by hand a bit. this is like the next logical step.http://stackoverflow.com/questions/773685/format-patch-works-reasonably-well-looking-for-a-better-way/773974#773974Comment by jettero on format-patch works reasonably well, looking for a better way.jettero2009-04-21T18:39:23Z2009-04-21T18:39:23Ztwo problems ... git clean -dfx kills the files you're ignoring and two, the files do need tracking, just not on the public branch.http://stackoverflow.com/questions/755994/adaptation-problem-with-the-blowfish-encryption-in-c/760464#760464Comment by jettero on Adaptation problem with the Blowfish Encryption in Cjettero2009-04-18T16:08:25Z2009-04-18T16:08:25ZThere are probably export restrictions. The patent restrictions are less of a problem when your project is purely academic. When you start making money off it, ... they'll sue if applicable.
If he posted the entire program, he could probably get in trouble in the criminal sort of way -- that's what Ben Lynn was advised for his Stanford pages, where there used to be a full example.http://stackoverflow.com/questions/755994/adaptation-problem-with-the-blowfish-encryption-in-cComment by jettero on Adaptation problem with the Blowfish Encryption in Cjettero2009-04-16T13:26:28Z2009-04-16T13:26:28ZYou probably shouldn't exclude the code that tokenizes the input and populates "plain" ... it's probably relevant. In the decrypt phase, it's also probably relevant: how do you populate the IV.http://stackoverflow.com/questions/720482/how-can-i-verify-that-a-value-is-present-in-an-array-list-in-perl/720500#720500Comment by jettero on How can I verify that a value is present in an array (list) in Perl?jettero2009-04-06T10:13:21Z2009-04-06T10:13:21ZAlso, although this works and is common, some people (myself included I guess) will complain about using map in a void context. Why not $hash{$_}++ for @a instead?http://stackoverflow.com/questions/720482/how-can-i-verify-that-a-value-is-present-in-an-array-list-in-perl/720492#720492Comment by jettero on How can I verify that a value is present in an array (list) in Perl?jettero2009-04-06T10:12:02Z2009-04-06T10:12:02Zyeah, that needs to either be any {$_ eq "foo"} or any {m/^foo\z/} ...