User Kent Fredric - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T12:02:58Zhttp://stackoverflow.com/feeds/user/15614http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1814447/why-is-last-called-last-in-perl/1815301#18153010Answer by Kent Fredric for Why is last called last in Perl?Kent Fredric2009-11-29T11:32:50Z2009-11-29T11:32:50Z<p>Theres an additional reason you might want to consider: </p>
<p><strong>Last does more than just loop control.</strong></p>
<pre><code>sub hello {
my ( $arg ) = @_;
scope: {
foo();
bar();
last if $arg > 4;
baz();
quux();
}
}
</code></pre>
<p>Last as such is a general flow control mechanism not limited to loops. While of course, you can generalise the above as a loop that runs at most 1 times, the absence of a loop to me indicates "Break? What are we breaking out of?"</p>
<p>Instead, I think of "<code>last</code>" as "Jump to the position of the <strong><em>last</em></strong> brace", which is for this purpose, more semantically sensible. </p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control74Good excuses NOT to use version controlKent Fredric2008-09-25T10:32:12Z2009-11-27T19:22:48Z
<p>This question may seem backwards to all logical reasoning, but I encountered a team member who was working on a side project out of the main tree, and had decided ( rephrased )</p>
<blockquote>
<p>I'm the only developer, we don't need
version control, that's stupid</p>
</blockquote>
<p>Now personally, the idea horrifies me, and I can't for one justify it. </p>
<p>So now my stance is clear, I want some legitimate answers why somebody can excuse themselves from using version control. The default answers will of course be "there is no excuse". </p>
<p>Not what I want to see. If you can't see an excuse, then just don't post. ( Feel free to downmod excuses others post that are illegitimate/bad and give reasoning ) </p>
http://stackoverflow.com/questions/1625839/should-i-use-commonsense-or-just-stick-with-use-strict-and-use-warnings/1632319#16323192Answer by Kent Fredric for Should I use common::sense or just stick with `use strict` and `use warnings`?Kent Fredric2009-10-27T17:12:51Z2009-10-27T17:12:51Z<p>There is one bit nobody else seems to have picked up on, and that's <code>FATAL</code> in the <code>warnings</code> list.</p>
<p>So as of 2.0, <code>use common::sense</code> is more akin to:</p>
<pre><code>use strict;
use warnings FATAL => 'all'; # but with the specific list of fatals instead of 'all' that is
</code></pre>
<p>This is a somewhat important and frequently overlooked feature of warnings that ramps the strictness a whole degree higher. Instead of undef string interpolation, or infinite recursion just warning you and then keeping on going despite the problem, it actually halts.</p>
<p>To me this is helpful, because in many cases, undef string interpolation leads to further more dangerous errors, which may go silently unnoticed, and failing and bailing is a good thing. </p>
http://stackoverflow.com/questions/85816/force-https-how-is-it-possible/85888#858880Answer by Kent Fredric for Force HTTPS. How is it possible?Kent Fredric2008-09-17T17:58:15Z2009-10-19T09:23:35Z<p>You shouldn't for security reasons. Especially if cookies are in play here. It leaves you wide open to cookie-based replay attacks. </p>
<p>Either way, you should use Apache control rules to tune it.</p>
<p>Then you can test for HTTPS being enabled and redirect as-needed where needed. </p>
<p>You should redirect to the pay page only using a FORM POST (no get),
and accesses to the page without a POST should be directed back to the other pages.
(This will catch the people just hot-jumping.) </p>
<p><a href="http://joseph.randomnetworks.com/archives/2004/07/22/redirect-to-ssl-using-apaches-htaccess/" rel="nofollow">http://joseph.randomnetworks.com/archives/2004/07/22/redirect-to-ssl-using-apaches-htaccess/</a></p>
<p>Is a good place to start, apologies for not providing more. But you really <em>should</em> shove everything through SSL.</p>
<p>It's over-protective, but at least you have less worries. </p>
http://stackoverflow.com/questions/91699/php-equivalent-of-perls-use-strict-to-require-variables-to-be-initialzied-bef/91717#917176Answer by Kent Fredric for PHP equivalent of Perl's 'use strict' (to require variables to be initialzied before use)Kent Fredric2008-09-18T11:19:47Z2009-10-02T23:50:32Z<p><strong>PHP</strong> doesn't do much forward checking of things at parse time. </p>
<p>The best you can do is crank up the warning level to report your mistakes, but by the time you get an E_NOTICE, its too late, and its not possible to force E_NOTICES to occur in advance yet.</p>
<p>A lot of people are toting the "error_reporting E_STRICT" flag, but its still retroactive warning, and won't protect you from bad code mistakes like you posted.</p>
<p>This gem turned up on the php-dev mailing-list this week and I think its just the tool you want. Its more a lint-checker, but it adds scope to the current lint checking PHP does. </p>
<p><a href="http://code.google.com/p/php-initialized/wiki/Features" rel="nofollow"><strong>PHP-Initialized Google Project</strong></a></p>
<p>There's the hope that with a bit of attention we can get this behaviour implemented in PHP itself. So put your 2-cents on the PHP mailing list / bug system / feature requests and see if we can encourage its integration. </p>
http://stackoverflow.com/questions/813752/how-can-i-pre-allocate-a-string-in-perl/813981#8139815Answer by Kent Fredric for How can I pre-allocate a string in Perl?Kent Fredric2009-05-02T02:01:14Z2009-09-19T20:13:04Z<p>Perl's strings are mutable, so appending to a string does <em>NOT</em> incur string duplication penalty. </p>
<p>You can try all you want to find a "faster" way, but this smells really bad of premature optimization. </p>
<p>For an example, I whipped up a class that abstracted away the hard work. It works pefectly, but its, for all its goofy tricks, really slow. </p>
<p>Here's the result: </p>
<pre><code> Rate magic normal
magic 1.72/s -- -93%
normal 23.9/s 1289% --
</code></pre>
<p>Yes, that's right, Perl is 1200% faster than what I thought was a respectable implementation. </p>
<p>Profile your code and find what the real problems are, don't try optimising stuff that isn't even a known problem. </p>
<pre><code>#!/usr/bin/perl
use strict;
use warnings;
{
package MagicString;
use Moose;
has _buffer => (
isa => 'Str',
is => 'rw',
);
has _buffer_size => (
isa => 'Int',
is => 'rw',
default => 0,
);
has step_size => (
isa => 'Int',
is => 'rw',
default => 32768,
);
has _tail_pos => (
isa => 'Int',
is => 'rw',
default => 0,
);
sub BUILD {
my $self = shift;
$self->_buffer( chr(0) x $self->step_size );
}
sub value {
my $self = shift;
return substr( $self->{buffer}, 0, $self->{_tail_pos} );
}
sub append {
my $self = shift;
my $value = shift;
my $L = length($value);
if ( ( $self->{_tail_pos} + $L ) > $self->{_buffer_size } ){
$self->{buffer} .= (chr(0) x $self->{step_size} );
$self->{_buffer_size} += $self->{step_size};
}
substr( $self->{buffer}, $self->{_tail_pos}, $L, $value );
$self->{_tail_pos} += $L;
}
__PACKAGE__->meta->make_immutable;
}
use Benchmark qw( :all :hireswallclock );
cmpthese( -10 , {
magic => sub{
my $x = MagicString->new();
for ( 1 .. 200001 ){
$x->append( "hello");
}
my $y = $x->value();
},
normal =>sub{
my $x = '';
for ( 1 .. 200001 ){
$x .= 'hello';
}
my $y = $x;
}
});
#use Data::Dumper;
#print Dumper( length( $x->value() ));
</code></pre>
http://stackoverflow.com/questions/1338001/verifying-equivalence-of-a-secret/1338365#13383650Answer by Kent Fredric for Verifying equivalence of a secretKent Fredric2009-08-27T01:06:41Z2009-08-27T01:06:41Z<p>The most simple thing I can think of with the photos that would possibly work is as thus:</p>
<ol>
<li>Hash all the photos with a 4096 bit hash. </li>
<li>Sort the photos by hash value. ( Hashes are afterall, just a string representation of a large number )</li>
<li>using that sort order, use a streaming system to pipe, and hash, those photos, as if they were a singular file. </li>
<li>Share your hashes. </li>
<li>If the hashes match, you have the same files. ( low low risk of incorrect positive match, but at 4K hashing, its a bit unlikely )</li>
</ol>
<p>There are of course, a few weaknesses here: </p>
<ol>
<li>Don't share how many photos you have. Doing so could permit the party with the greater number of photos do intelligent permutation of the data and remove photos from the hash set they suspect likely you don't have, using the number as a guide, and find ( at great computational expense mind ) a set of images that matches your hash. </li>
<li>They can do 1 without the number, but its harder, and they're out of luck if they actually have less photos. </li>
<li>They could create a fake hash, simply with a random number generator, and send it to you, giving you the impression you had different datasets when you really had the same. </li>
</ol>
<p>The above weaknesses are also prevalent in your country code identification system, except of course, you have <em>far</em> less entropy to get in the way, and its <em>far</em> easier to fraud the system. ( and thus, far far far easier to work out who they are by sheer brute force, or have yourself worked out by brute force, regardless of how fancy your hash algorithm is )
If this were not the case, you would have already been found out by the very agencies you work for, because something that reliable and secure would be a <em>sure</em> fire way to do a secure background check.</p>
http://stackoverflow.com/questions/469150/im-new-to-stackoverflow-what-should-i-consider-before-asking-questions14I'm new to StackOverflow, what should I consider before asking questions? [closed]Kent Fredric2009-01-22T13:39:14Z2009-08-25T19:15:04Z
<p>I'm breaking one of the well known taboos about not asking questions about questions here for good reason. </p>
<p>People do it all the time, hit up search, enter 'question', you'll see a big list of meta-questions about questions and stack overflow in general which are just noise. </p>
<p>There are bundles of <strong>"first time"</strong> question mistakes that repeatedly get made for various reasons, and although to us who've been around and think there is no excuse, It is arguable that the FAQ sections are not really straight and to the point with lots of room for error in conceptual understanding, and searching for questions about questions really doesn't result in anything informative, just closed questions. </p>
<p>So this Question serves as an <em>attempt</em> to rectify that, fill it up with answers that will help people not to make first-time-question mistakes and give them simple and understandable answers about how to ask questions, and then we can all add it to our favourites and throw the link to new users when they don't get around to reading this. </p>
<p>Maybe, when this question ( hopefully ) survives a week or so without being closed/down-voted into the abyss, somebody can rewrite this section ( my question ) so its more friendly to the people we're sending here. </p>
<p>So, </p>
<p><strong>If I am new to StackOverflow, what are the things I <em>should</em> consider before asking questions?</strong></p>
<p>Thanks. </p>
http://stackoverflow.com/questions/1315789/need-for-speed-best-database-solution/1315830#13158302Answer by Kent Fredric for Need for speed: Best database solution...Kent Fredric2009-08-22T11:58:45Z2009-08-22T12:10:21Z<p>I would avoid DIY-ing it unless you know all the repocussions of what you're doing. </p>
<p>Transactional Consistency for example, is not trivial.</p>
<p>I would suggest designing your code in such a way the backend can be easily replaced later, and then run with something sane ( SQLite is a good starting choice ), develop it the most sane and rational way possible, and then try slotting in the alternative backing store. </p>
<p>Then profile the differences, and run regression tests against it to make sure your database is not worse than SQLite. </p>
<p>Exisiting database solutions tend to win because they've had years of improvement and fine tuning to get their benefits, an a naïve attempt will likely be slower, buggier, and do less, all the while <em>Increasing</em> your development load to purely <strong>MONUMENTAL</strong> proportions.</p>
<p><a href="http://fetter.org/optimization.html" rel="nofollow">http://fetter.org/optimization.html</a></p>
<blockquote>
<ol>
<li>The first rule of Optimization is, you do not talk about Optimization.</li>
<li>The second rule of Optimization is, you DO NOT talk about Optimization.</li>
<li>If your app is running faster than the underlying transport protocol, the optimization is over.</li>
<li>One factor at a time.</li>
<li>No marketroids, no marketroid schedules.</li>
<li>Testing will go on as long as it has to.</li>
<li>If this is your first night at Optimization Club, you have to write a test case.</li>
</ol>
</blockquote>
<p>Also, with databases, there is one thing you utterly <strong>MUST</strong> get ingrained. </p>
<p><strong>Speed is unimportant</strong></p>
<p>Your data <strong>being there</strong> when you need it, <em>that</em> is important.</p>
<p>When you have the assuredness that your data will always be there, then you may worry about trivial concerns like speed.</p>
<h2>Hashes</h2>
<p>You also lament that you'll be using image SHA's/MD5's etc to deduplicate images. This is a fallacious notion of its own, Hashes of files are only able to tell if the files are different, not if they're the same. </p>
<p>The logic is akin to asking 30 people to flip a coin, and you see the first one get heads, and thus decide to delete every other person who gets a head, because they're obviously the same person. </p>
<p><a href="http://stackoverflow.com/questions/405628/what-is-the-best-method-to-remove-duplicate-image-files-from-your-computer">http://stackoverflow.com/questions/405628/what-is-the-best-method-to-remove-duplicate-image-files-from-your-computer</a></p>
<p>Although you may think it unlikely you'd have 2 different files with the same hash, your odds are about as good as winning the lotto. The chances of you winning the lotto are low, but somebody wins the lotto every day. Don't let it be you.</p>
http://stackoverflow.com/questions/1283914/git-without-git-folder-a-remote-git-dir/1285587#12855872Answer by Kent Fredric for git without .git folder -- a remote git-dirKent Fredric2009-08-16T23:09:02Z2009-08-16T23:09:02Z<p>I would postulate that if you are asking this question, you may be trying to create a problem to solve. </p>
<p>Just think about <em>why</em> you would need to have a singular git repository people can read and write to directly from their own remote machines, and try add them to the question, because it seems for all the world you're trying to use Git like SVN. And that <strong>will</strong> end in agony.</p>
<p>For starters, if you don't want to make a complete deep mirror just for creating a patch for upstream, please make note of : </p>
<blockquote>
<p><code>--depth <depth></code><br />
Create a shallow clone with a history truncated to the specified number of revisions. A shallow
repository has a number of limitations (you cannot clone or fetch from it, nor push from nor into
it), but is adequate if you are only interested in the recent history of a large project with a
long history, and would want to send in fixes as patches.
( <code>git help clone</code> )</p>
</blockquote>
http://stackoverflow.com/questions/1283355/how-many-possible-bugs-are-there/1283389#12833890Answer by Kent Fredric for How many possible bugs are there?Kent Fredric2009-08-16T03:18:42Z2009-08-16T03:24:03Z<p>It depends entirely how many ways there are of doing each step. If you have a process that involves only one step, but there are multiple ways of doing that step, every step could have an associated bug. </p>
<p>There's also the misuse of functions, which you cant prevent against, which could be considered a bug. ie: </p>
<p>If a user was to think that </p>
<pre><code>rm -rf /
</code></pre>
<p>was short for </p>
<pre><code>remove media --really fast /
</code></pre>
<p>ie: eject all devices<sup>1</sup></p>
<p>I would guess that would be a potential bug. Its user error really, but its still a <em>singular</em> thing that can occur that produces results other than that were wanted. </p>
<p>You could argue the above is a bit over the top, but ultimately, there is <em>no</em> limitation on the ways users can do things wrong.</p>
<p>When users are there, assume, anything that can go wrong, will. </p>
<p>The only problem with the above reasoning, is you have to prematurely delete powerful things so users don't hurt themselves, which leads to less effective tools for those who know how to use them. Like corks on forks sort of rationale. </p>
<p>The only way to solve this concern effectively is give newbs blunt objects to learn with, and then give them an option which takes away all the foam padding once they learn the ropes, so experienced users don't have to keep working with blunt tools, and don't have to deblunten every tool themself. </p>
<p>( If there are infinite numbers of possibly ways to do 1 step, I don't even want to begin to think of the numbers of ways to do 10 steps wrong ) </p>
<p><sup>1: If you don't know, this will erase lots of your hard drive and cause much pain. Don't do it.</sup></p>
http://stackoverflow.com/questions/1251713/backup-of-github-repo/1251747#12517472Answer by Kent Fredric for Backup of github repoKent Fredric2009-08-09T16:57:22Z2009-08-09T16:57:22Z<blockquote>
<blockquote>
<p>but as far as I can tell, that doesn't allow for an easy update (I'd have to delete and recreate my local backup).</p>
</blockquote>
</blockquote>
<p>Not sure what you mean by that, updating it should be as simple as </p>
<pre><code>git fetch
</code></pre>
<p><code>git clone</code> as it is is supposed to fetch <em>all</em> refs/commits that are visible on the remote branch. </p>
<p><code>git clone --mirror</code> is also not very different to <code>git clone --bare</code> <a href="http://kerneltrap.org/mailarchive/git/2008/8/2/2793244" rel="nofollow">[source]</a></p>
<p>the only relevant difference is the shorthanded <code>git remote add --mirror</code> </p>
<p>( See <code>git help add</code> for the different behaviour ) </p>
<p>If you're really worried, you can do this: </p>
<pre><code>git clone --no-hardlinks --mirror $original $dest
</code></pre>
<p>Which will only do anything different if they were on the same filesystem anyway. </p>
<p>And if you're <em>really</em> paranoid, you can tar.(gz|bz2) the whole directory and back <em>that</em> up.</p>
http://stackoverflow.com/questions/1238749/whare-are-the-differences-using-xml-and-mysql-database-which-should-i-use/1238751#12387510Answer by Kent Fredric for Whare are the differences using xml and mysql database? Which should I use?Kent Fredric2009-08-06T10:09:32Z2009-08-06T13:07:42Z<p>I would believe it more likely they're using a Fully Fledged DBMS as a backing store, and only generating/parsing XML as an interface. </p>
<p>XML is imho far too heavy to be used for a high-data store database. </p>
<p>The Structure is too parse-heavy and even if you had some sort of server which started, parsed, and then ran based on the XML data, the initialization time would be killer, as would be the data reserialization phase every time a write was done.</p>
<p>RDBMS's benefit by having much more efficient packed data storage with predictable searching/seeking through records and multiple data-stores and multiple indicies. </p>
http://stackoverflow.com/questions/1147937/php-curly-brace-syntax-for-member-variable/1147958#11479583Answer by Kent Fredric for PHP curly brace syntax for member variableKent Fredric2009-07-18T16:32:57Z2009-07-18T16:32:57Z<p>Theres probably one big advantage of that syntax, however, its generally in the domain of hairy stuff, and things you probably want to avoid. </p>
<p>It permits you to use characters in variable names that are otherwise unpermitted. </p>
<p>ie: </p>
<pre><code>$this->object->{"hello world\0\n"}
$this->object->{"function(){ this is a truely awful name for a variable }"}
</code></pre>
http://stackoverflow.com/questions/1143874/what-is-the-difference-between-package-module-and-class-in-object-oriented-perl/1143898#114389812Answer by Kent Fredric for What is the difference between package, module and class in object oriented Perl?Kent Fredric2009-07-17T15:12:22Z2009-07-17T21:40:42Z<p>Modules are a single file, a <em>.pm</em> file that provides code. That could be no packages, a single package, or more than one package. A module doesn't really care what is in it, so it can be code that inserts itself into the same namespace, a more-traditional set of subroutines in a library, or define Perl's idea of a class.</p>
<p>A package, also known as a namespace, contains its own variables and subroutines. It's a way of segregating different parts of your program. You create the package and put your code into it:</p>
<pre><code>package SomePackage;
sub some_subroutine { ... } # really SomePackage::some_subroutine
</code></pre>
<p>You load the module to get access to the package:</p>
<pre><code>use SomePackage; # read and compile the module file
SomePackage::some_subroutine( ... );
</code></pre>
<p>A Perl class is a package and its associated behavior. The methods in a class are just normal subroutines, although when we treat the subroutines as methods, the first parameter is the thing (a package name or object, also known as the referent) that called method:</p>
<pre><code>package SomeClass;
sub class_method { my( $class, @args ) = @_; ... }
sub instance_method { my( $self, @args ) = @_; ... }
</code></pre>
<p>Since the class is just a package like any other package, and probably lives in a module, you access it the same way with <code>use</code>:</p>
<pre><code> use SomeClass;
my $i = SomeClass->class_method( ... );
</code></pre>
<p>The OO arrow syntax does some special stuff to let the <code>some_method</code> subroutine know that it's being called as a method. Perl puts the referent (the <code>SomeClass</code> in this case) as the first argument. Additionally, when using the OO syntax, Perl knows to use its inheritance features.</p>
<p>Methods called with '->' get the referent as the first parameter to the method, so this call:</p>
<pre><code> SomeClass->new('world');
</code></pre>
<p>is syntactically the if you had called it with the class name as the first parameter: </p>
<pre><code> SomeClass::new( 'SomeClass' ,'world'); # no inheritance this way
</code></pre>
<p>That works the same for objects too. When an object is the referent:</p>
<pre><code>my $i = SomeClass->new();
$i->bar( 'world');
</code></pre>
<p>the object is the first parameter as the method: </p>
<pre><code>SomeClass::bar($i, 'world');
</code></pre>
http://stackoverflow.com/questions/1143668/beginner-regular-expression-for-url/1143734#11437341Answer by Kent Fredric for Beginner: Regular Expression for URLKent Fredric2009-07-17T14:47:19Z2009-07-17T14:47:19Z<p>Generally, the best suggestion I can make for parsing URL's with a Regex is <strong>don't</strong>.</p>
<p>Your time is <em>much</em> <em>much</em> better spent finding a libary that exists for your language dedicated to the task of processing URLs.</p>
<p>It will have worked out all the edge cases, be fully RFC compliant, be bug free, secure, and have a great user interface so you can just suck out the bits you really want. </p>
<p>In your case, the suggested way to process it would be, using your URL library, extract the element s and then work explicitly on them. </p>
<p>That way, at most you'll have to deal with the path on its own, and not have to worry so much wether its </p>
<pre><code>http://site.com/
https://site.com/
http://site.com:80/
http://www.site.com/
</code></pre>
<p>Unless you really want to.</p>
<p>For the "Path" you might even wish to use a splitter ( or a dedicated path parser ) to tokenise the path into elements first just to be sure.</p>
http://stackoverflow.com/questions/1143012/what-algorithm-can-i-use-to-find-the-shortest-path-between-specified-node-types-i/1143197#11431973Answer by Kent Fredric for What algorithm can I use to find the shortest path between specified node types in a graph?Kent Fredric2009-07-17T13:15:18Z2009-07-17T14:06:17Z<p><img src="http://imgur.com/h9mKU.png" alt="alt text" /></p>
<p>This is how I presently interpret your problem.</p>
<p>Red arrows are me manually tracing the paths that conform to the given ordering constraint. </p>
<p>Costs are not provided, but it is assumed all links incur a cost, and the link costs are different.</p>
<p>If this accurately describes the scenario you are trying to solve, please say so, so that others can better answer the question. </p>
http://stackoverflow.com/questions/1125014/how-can-i-detect-the-file-type-of-image-at-a-url/1125092#11250922Answer by Kent Fredric for How can I detect the file type of image at a URL? Kent Fredric2009-07-14T12:36:36Z2009-07-14T14:05:05Z<p>You really can't make assumptions about content based on URL, or even content type headers. </p>
<p>They're only <em>guides</em> to what is being sent. </p>
<p>A handy trick to confuse things that use suffix matching to identify file-types is doing this: </p>
<pre><code> http://example.com/someurl?q=foo#fakeheheh.png
</code></pre>
<p>And if you were to arbitrarily permit that image to be added to the page, it might in some cases be a doorway to an attack of some sorts if the browser followed it. ( For example, <code>http://really_awful_bank.example.com/transfer?amt=1000000;from=123;to=123</code> )</p>
<p>Content-type based forgery is not so detrimental, but you can do nasty things if the person who controls the name works out how you identify things and sends different content types for HEAD requests as it does for GET requests. </p>
<p>It could tell the HEAD request that it's an Image, but then tell the GET request that its a <code>application/javascript</code> and goodness knows where that will lead.</p>
<p>The only way to know for <em>certain</em> what it is is downloading the file and then doing MAGIC based identification, or more (i.e., try to decode the image). Then all you have to worry about is images that are too large, and specially crafted images that could trip vulnerabilities in computers that are not yet patched for that vulnerability. </p>
<p>Granted all of the above is <em>extreme</em> paranoia, but if you know the rare possibilities you can make sure they can't happen :)</p>
http://stackoverflow.com/questions/1122886/what-do-the-square-brackets-signify-in-following-push-syntax-in-perl/1123049#112304910Answer by Kent Fredric for What do the square brackets signify in following push syntax in Perl?Kent Fredric2009-07-14T01:39:40Z2009-07-14T04:26:46Z<p>The code: </p>
<pre><code>push @data, (split//, $line);
</code></pre>
<p>pushes all items on the current line into <code>@data</code></p>
<p>and </p>
<pre><code>push @data, [split //, $line];
</code></pre>
<p>Pushes a reference to an anonymous array containing those items into <code>@data</code></p>
<p>If you're only ever processing one value of '$line' its probably more effective to use the former*<sup>1</sup> , however, if you are processing a file that contains multiple lines and you want to differentiate between the lines the content is on, the latter is more effective. </p>
<p>Consider:</p>
<pre><code>my @data;
while( my $line = <$fh> ){
push @data , ( split //, $line );
}
use Data::Dumper;
$Data::Dumper::Indent = 0;
$Data::Dumper::Terse = 1;
print Dumper( \@data );
</code></pre>
<p>This will yield all of the bytes read in as separate characters, a single
array containing them all, i.e.: </p>
<pre><code>[ "a", "b" , "c" , "\n", "d", "e", "f" ]
</code></pre>
<p>When this instead will do something entirely different:</p>
<pre><code>my @data;
while( my $line = <$fh> ){
push @data , [ split //, $line ];
}
use Data::Dumper;
$Data::Dumper::Indent = 0;
$Data::Dumper::Terse = 1;
print Dumper( \@data );
</code></pre>
<p>And will instead group lines like so:</p>
<pre><code>[ [ "a", "b", "c" , "\n" ], [ "d" , "e", "f" , "\n" ] ]
</code></pre>
<p>So you can later programmatically traverse it easier.</p>
<h2>Note:</h2>
<pre><code> push @data, ( split //, $line );
</code></pre>
<p>and </p>
<pre><code> push @data, split //, $line;
</code></pre>
<p>Are equivalent. </p>
<p>Also, </p>
<pre><code>my @other = ( 1,2,3 );
push @data, @other ;
</code></pre>
<p>and </p>
<pre><code>push @data, 1,2,3;
</code></pre>
<p>are equivalent.</p>
<p>From <code>perldoc -f push</code></p>
<pre>
push ARRAY,LIST
Treats ARRAY as a stack, and pushes the values of LIST onto the end of ARRAY. The length of ARRAY increases by the length of LIST. Has the same effect as
for $value (LIST) {
$ARRAY[++$#ARRAY] = $value;
}
but is more efficient. Returns the number of elements in the array following the completed "push".
</pre>
<p><sub>*1: actually, tbf, anyone with half a brain would probably want <code>@data = split //, $line</code> </sub></p>
http://stackoverflow.com/questions/1115022/c-using-not-on-char-for-encryption/1115267#11152672Answer by Kent Fredric for C++ using NOT (~) on char for encryption.....Kent Fredric2009-07-12T03:47:46Z2009-07-12T04:16:53Z<p>Tell me if you see what is wrong with this: </p>
<pre><code>unsigned char word;
unsigned char out;
for(i=0;i!=-1;i++)
{
inFile >> word;
if( decoding ) {
if ( even ){
out = 1 - out ;
}
out = word - entropy;
}
else {
out = word + entropy;
if ( even ){
out = 1 - out;
}
}
outFile << out;
}
</code></pre>
<p>I don't think decoding will work well when you erase its inversion.</p>
http://stackoverflow.com/questions/1115090/jquery-getting-data-from-the-getjson-method/1115126#11151262Answer by Kent Fredric for jQuery: getting data from the $.getJSON() methodKent Fredric2009-07-12T01:48:02Z2009-07-12T01:54:45Z<p>Your best bet is to stick with the callback technique. </p>
<p>There are 2 real ways to make it work, both are essentially the same.</p>
<pre><code>$.getJSON("../config/", function(data) {
SomeObject.config = data;
SomeObject.load(); # assuming load tells some-object that it now has data and to get cracking
});
</code></pre>
<p>or</p>
<pre><code>$.getJSON("../config/", function(data) {
SomeObject.load( data ); # SomeObject sets itself up and starts doing its thing
});
</code></pre>
<p>Trying to use $.getJSON in a synchronous way ( ie: having it return a value ) will only end in tears and misery for both you <em>and</em> the people using your site, because Synchronous connections have a tendency to block the entire UI. :)</p>
<p>As it stands, doing anything like this asynchronously </p>
<pre><code>var i = null; #1
$.getJSON("../config/", function(data) { #2
i = data; #3
}); #4
some_function_with(i); #5
</code></pre>
<p>Will not work, because line 5 is almost guaranteed to execute before line 3.</p>
http://stackoverflow.com/questions/1109069/git-selective-revert-local-changes-from-a-file/1109093#11090931Answer by Kent Fredric for git selective revert local changes from a fileKent Fredric2009-07-10T11:47:18Z2009-07-11T09:33:11Z<p>Looks like you want </p>
<pre><code> git revert --no-commit $REVSISON
</code></pre>
<p>You can then use </p>
<pre><code> git diff --cached
</code></pre>
<p>to see what change will be made before commiting ( as reverting is just a commit in a forwards direction that replicates the inverse of a change in the past )</p>
<p>If you were with a pure Git repository, you could possibly, depending on your goals, utilise interactive rebase (<code> git rebase -i </code>) to go back to the commit you didn't like and edit the commit retroactively so that the changes you don't like never happened, but thats generally only for if you <em>KNOW</em> you'll never want to see it again. </p>
http://stackoverflow.com/questions/1108052/page-entirely-blank-despite-having-source-code-tinymce-firefox/1108092#11080922Answer by Kent Fredric for Page Entirely Blank Despite Having Source Code! (TinyMCE, FireFox)Kent Fredric2009-07-10T07:01:19Z2009-07-10T07:25:06Z<p>Firebug reports the tag to be empty when It fires as blank, so it would appear that one of your javascripts are deleting the page content. </p>
<p>Only way to know which one it is would be disabling them and then seeing if the problem subsides.</p>
<p>Also, it could be a race condition with that document.write cruft at the bottom. I know google has its special way of doing things, but document.write is so 1995. </p>
<p>Firebug also caught an error for me in the console: </p>
<pre><code> Expected identifier or string for value in attribute selector but found '#'.
</code></pre>
<p>Where this comes from I cant tell. </p>
<p>May I also note you have a <em>LOT</em> of inline javascript, and that's generally never a good thing. </p>
<h2>Lazy Load?</h2>
<p>For an experiment, you could try lazy-loading the javascript, that is, moving all tags that are plausbile to do so with down to as low in the page as possible, so they don't stall loading and don't stall rendering, but leave your stylesheet references at the top. </p>
<h2>Problem I've seen before but can't remember when</h2>
<p>When you're streaming your javascript content gzipped with PHP, its not sending any content-length information. I have on odd occasions seen this yield odd behaviour. </p>
<p>There's a bit of magic dirt I recall using to make it possible:</p>
<pre><code>ob_start;
ob_start('ob_gzhandler');
// Gzipped code outputted here
$data = ob_get_clean;
header("Content-Length: " . strlen( $data ));
print $data;
ob_end_flush;
</code></pre>
<p>But thats probably not likely to help. </p>
http://stackoverflow.com/questions/1107984/what-is-wrong-with-my-json-data-here/1108034#11080341Answer by Kent Fredric for What is wrong with my json data here?Kent Fredric2009-07-10T06:42:40Z2009-07-10T06:47:49Z<p>You're using the wrong version of the charting software.</p>
<p>1.0 Has its own arbitrary data format like that you pasted,
and 2.0 has JSON, which is unlike that which you pasted.</p>
<p>You'll see in the <a href="http://teethgrinder.co.uk/open-flash-chart-2/tutorial.php" rel="nofollow">tutorial for 2.0</a> That there is an <a href="http://teethgrinder.co.uk/open-flash-chart-2/tutorial/data.json" rel="nofollow">example JSON code</a> which your output needs to emulate.</p>
<p>If you're stuck using 1.0 <a href="http://teethgrinder.co.uk/open-flash-chart/tutorial.php" rel="nofollow">[tutorial]</a> ,then you need to use the <a href="http://teethgrinder.co.uk/open-flash-chart/data-2.php" rel="nofollow"> 1.0 format </a></p>
http://stackoverflow.com/questions/1106480/how-can-i-construct-a-family-tree-with-perl/1107398#11073981Answer by Kent Fredric for How can I construct a family tree with Perl?Kent Fredric2009-07-10T02:26:19Z2009-07-10T06:28:40Z<p>While awaiting clarification as to what the question is, I figured seeing you're in some sort of learning institution getting given Perl related assignments, I reasoned there's no better time to introduce you to Moose and CPAN, things you really should be using in the real world. </p>
<p>It, and its various extensions, will make your life easier, and makes Object Oriented design more straight forward and maintainable.</p>
<pre><code>#!/usr/bin/perl
use strict;
use warnings;
use Data::Dumper;
use Moose::Autobox;
use 5.010;
sub Moose::Autobox::SCALAR::sprintf {
my $self = shift;
sprintf( $self, @_ );
}
{
package Son;
use Moose;
use MooseX::Types::Moose qw( :all );
use MooseX::ClassAttribute;
use MooseX::Has::Sugar 0.0300;
use Moose::Autobox;
class_has 'Ancestry' => ( isa => HashRef, rw, default => sub { {} } );
class_has 'People' => ( isa => HashRef, rw, default => sub { {} } );
has 'name' => ( isa => Str, rw, required );
has 'father' => ( isa => Str, rw, required );
sub BUILD {
my $self = shift;
$self->Ancestry->{ $self->name } //= {};
$self->Ancestry->{ $self->father } //= {};
$self->People->{ $self->name } //= $self;
$self->Ancestry->{ $self->father }->{ $self->name } = $self->Ancestry->{ $self->name };
}
sub children {
my $self = shift;
$self->subtree->keys;
}
sub subtree {
my $self = shift;
$self->Ancestry->{ $self->name };
}
sub find_person {
my ( $self, $name ) = @_;
return $self->People->{$name};
}
sub visualise {
my $self = shift;
'<ul><li class="person">%s</li></ul>'->sprintf( $self->visualise_t );
}
sub visualise_t {
my $self = shift;
'%s <ul>%s</ul>'->sprintf(
$self->name,
$self->children->map(
sub {
'<li class="person">%s</li>'->sprintf( $self->find_person($_)->visualise_t );
}
)->join('')
);
}
__PACKAGE__->meta->make_immutable;
}
my @rows = ( [ "bill", "sam" ], [ "bob", "" ], [ "jack", "sam" ], [ "jone", "mike" ], [ "mike", "bob" ], [ "sam", "bob" ], );
for (@rows) {
Son->new(
father => $_->at(1),
name => $_->at(0),
);
}
<<'EOX'->sprintf( Son->find_person('bob')->visualise )->say;
<html>
<head>
<style>
li.person {
border: 1px solid #000;
padding: 4px;
margin: 3px;
background-color: rgba(0,0,0,0.05);
}
</style>
</head>
<body>
%s
</body>
</html>
EOX
</code></pre>
http://stackoverflow.com/questions/1072171/how-do-you-remove-an-invalid-remote-branch-reference-from-git/1072178#10721788Answer by Kent Fredric for How do you Remove an Invalid Remote Branch Reference from Git?Kent Fredric2009-07-02T02:42:05Z2009-07-02T03:03:05Z<p>You might be needing a cleanup</p>
<pre><code>git gc --prune=now
</code></pre>
<p>or you might be needing a prune</p>
<pre><code>git remote prune public
prune
Deletes all stale tracking branches under <name>. These stale branches have already been removed from
the remote repository referenced by <name>, but are still locally available in "remotes/<name>".
With --dry-run option, report what branches will be pruned, but do no actually prune them.
</code></pre>
<p>However, it appears these should have been cleaned up earlier with </p>
<pre><code>git remote rm public
rm
Remove the remote named <name>. All remote tracking branches and configuration settings for the remote
are removed.
</code></pre>
<p>So it might be you hand-edited your config file and this did not occur, or you have privelage problems.</p>
<p>Maybe run that again and see what happens.</p>
http://stackoverflow.com/questions/1071560/retrying-an-operation-after-an-exception-please-criticize-my-code/1071877#10718772Answer by Kent Fredric for Retrying an operation after an exception: Please criticize my code.Kent Fredric2009-07-01T23:51:01Z2009-07-02T00:18:08Z<p>I'd probably be inclined to write retry like this:</p>
<pre><code>sub _retry {
my ( $retrys, $func ) = @_;
attempt: {
my $result;
# if it works, return the result
return $result if eval { $result = $func->(); 1 };
# nah, it failed, if failure reason is not a lock, croak
croak $@ unless $@ =~ /database is locked/;
# if we have 0 remaining retrys, stop trying.
last attempt if $retrys < 1;
# sleep for 0.1 seconds, and then try again.
sleep 0.1;
$retrys--;
redo attempt;
}
croak "Attempts Exceeded $@";
}
</code></pre>
<p>It doesn't work identically to your existing code, but has a few advantages.</p>
<ol>
<li>I got rid of the <code>*10</code> thing, like another poster, I couldn't discern its purpose.</li>
<li>this function is able to return the value of whatever <code>$func()</code> does to its caller.</li>
<li>Semantically, the code is more akin to what it is you are doing, at least to my deluded mind. </li>
<li><code>_retry 0, sub { }; </code> will still execute once, but never retry, unlike your present version, that will never execute the sub. </li>
</ol>
<p>More suggested ( but slightly less rational ) abstractions:</p>
<pre><code>sub do_update {
my %params = @_;
my @result;
$params{schema}->txn_do( sub {
@result = $params{rs}->search( @{ $params{search} } );
return unless (@result);
for my $result_item (@result) {
$result_item->update( @{ $params{update} } );
}
} );
return \@result;
}
my $data = _retry 15, sub {
do_update(
schema => $schema,
rs => $thingy_rs,
search => [ { state => 0, job_id => $job->job_id }, { rows => $self->{batchsize} } ],
update => [ { state => 1 } ],
);
};
</code></pre>
<p>These might also be handy additions to your code. ( Untested ) </p>
http://stackoverflow.com/questions/755168/perl-myths28Perl MythsKent Fredric2009-04-16T08:06:43Z2009-06-27T15:08:46Z
<p>I keep seeing people trip over common misconceptions of how Perl exists and what it does. </p>
<p>There are generally 2 types of Perl Myth. </p>
<ul>
<li>Type 1:
Things that people think about the language itself, that are not true</li>
<li>Type 2:
Behaviors people exhibit when using the language, which generally derive from lack of common sense. </li>
</ul>
<p>The first one might be a bit straight forward, the second might need a little more explanation. An example of this is the types that inevitably result in people reinventing wheels due to not understanding what CPAN is, or how it works, such as the common "I'm not allowed to install modules" argument.</p>
<p>This question is in the nature of these related Perl tips</p>
<ul>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas">perl common gotchas</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl">hidden features of perl</a>. </li>
</ul>
<p><strong>What common myths do you keep seeing in Perl?</strong></p>
<p>Due to the nature of myths requiring evidence, its probably best to use an assertion/explanation/reference format of some sort. </p>
http://stackoverflow.com/questions/1040854/customizing-trac-remove-standard-footer/1040873#10408730Answer by Kent Fredric for Customizing Trac: remove standard footerKent Fredric2009-06-24T20:43:23Z2009-06-24T20:43:23Z<p>I don't have a recent copy of trac on me at present to poke into as far as templates go, but for CSS, you want to try </p>
<pre><code>display: none;
margin: 0;
padding: 0;
</code></pre>
<p>instead of </p>
<pre><code>visibility:hidden;
</code></pre>
<p>visibility hidden items still take up space.</p>
http://stackoverflow.com/questions/993841/is-there-a-php-function-to-call-all-variables-from-a-form/993903#9939032Answer by Kent Fredric for Is there a PHP function to call all variables from a form?Kent Fredric2009-06-14T22:16:21Z2009-06-14T22:16:21Z<p>If you don't want to have hundreds of uniquely named variables and want to have arrays of data turn up client side, there is a handy form trick you may want to try. </p>
<pre><code><form>
<input name="foo[a]" type="text" />
<input name="foo[b]" type="text" />
<input name="bar[]" type="text" />
<input name="bar[]" type="text" />
</code></pre>
<p></p>
<p>Client Side:</p>
<pre><code><?php
$_POST['foo']['a'];
$_POST['foo']['b'];
$_POST['bar'][0];
$_POST['bar'][1];
?>
</code></pre>
http://stackoverflow.com/questions/1815011/why-does-my-method-print-isobjectnamescalar0x1289df0Comment by Kent Fredric on Why does my method print "isObjectName=SCALAR(0x1289df0)"?Kent Fredric2009-11-29T10:35:47Z2009-11-29T10:35:47ZNew to OOP? Check out Moose: <a href="http://search.cpan.org/dist/Moose/" rel="nofollow">search.cpan.org/dist/Moose</a>http://stackoverflow.com/questions/1635324/how-can-i-identify-and-remove-redundant-code-in-perl/1635359#1635359Comment by Kent Fredric on How can I identify and remove redundant code in Perl?Kent Fredric2009-10-28T07:18:57Z2009-10-28T07:18:57ZI like the stock-room style refactor. 1. Check code into git. 2. Make sure you have lots of tests. 3. Rename the module in entirety to something unusuable. 4. Create an empty one. 5. Copy functions back, refactoring them as you go, until tests pass again. 6. After a month of not needing to copy functions from the old module, remove it.http://stackoverflow.com/questions/1634292/can-php-5-do-request-handling-similar-to-tomcat-or-gae/1634317#1634317Comment by Kent Fredric on Can PHP 5 do request handling similar to Tomcat or GAE?Kent Fredric2009-10-27T23:41:25Z2009-10-27T23:41:25Zyou still need mod_rewrite to redirect all calls to the singular PHP script ;)http://stackoverflow.com/questions/1634042/can-i-access-a-static-method-in-a-dynamically-specified-class-in-perl/1634223#1634223Comment by Kent Fredric on Can I access a static method in a dynamically specified class in Perl?Kent Fredric2009-10-27T23:27:08Z2009-10-27T23:27:08Z+1 <code>can</code> is imo the least insane way to do it. It still incurs the whole inheritance thing that :: doesn't do, but it will let you get around the whole passing $self/$classname as $_[0] behavior.http://stackoverflow.com/questions/1625839/should-i-use-commonsense-or-just-stick-with-use-strict-and-use-warnings/1626689#1626689Comment by Kent Fredric on Should I use common::sense or just stick with `use strict` and `use warnings`?Kent Fredric2009-10-27T17:06:21Z2009-10-27T17:06:21Zeven if modern perl one day changes and breaks your code, its no different from all the other modules out there which can incur a 100% API change, become installed, and break your code. If you're a CPAN author, and you depend on stuff, be prepared to have to fix it one day if your dep changes, its life.http://stackoverflow.com/questions/1338001/verifying-equivalence-of-a-secret/1338365#1338365Comment by Kent Fredric on Verifying equivalence of a secretKent Fredric2009-08-28T17:23:09Z2009-08-28T17:23:09Z@e5, yes, I quite agree, although I mainly pointed out there is a slight strategic weakness if Bob has some idea what Charlie might be prohibited to see. But without the strategic weakness, there's still a lot of computation required to find the Hashes for each iteration, which will greatly limit the solving power anyone has with a brute-force permutation, unless they have very fast processors, or lots of free time. The country codes however, any modern computer could break in under a second.http://stackoverflow.com/questions/1338001/verifying-equivalence-of-a-secret/1338122#1338122Comment by Kent Fredric on Verifying equivalence of a secretKent Fredric2009-08-27T00:55:46Z2009-08-27T00:55:46Zthe problem here of course is, they all know all the country codes secret codes, and can just emulate which ever of the 4 they want. So they have a 25% chance of making a calculated guess at what the opposition is ( assuming the opposition sends a truthful hash ) and then faking the key, and when the opposition matches you know what they are without disclosing yourself truthfully. http://stackoverflow.com/questions/405628/what-is-the-best-method-to-remove-duplicate-image-files-from-your-computer/405661#405661Comment by Kent Fredric on What is the best method to remove duplicate image files from your computerKent Fredric2009-08-22T12:35:42Z2009-08-22T12:35:42ZThe world: 2^(infinte) combinations. Collisions: Certain.http://stackoverflow.com/questions/1283914/git-without-git-folder-a-remote-git-dirComment by Kent Fredric on git without .git folder -- a remote git-dirKent Fredric2009-08-16T10:03:44Z2009-08-16T10:03:44ZYour question is horrendously worded, and the grammar is such that I possibly know the answer, but can't make out the question.http://stackoverflow.com/questions/1283355/how-many-possible-bugs-are-there/1283389#1283389Comment by Kent Fredric on How many possible bugs are there?Kent Fredric2009-08-16T05:44:24Z2009-08-16T05:44:24ZYou stated "User". Users can cause errors well outside control of the system, like turning the power off mid-phase. If you stated an autonomous process you control, then it depends entirely on the number of forks that can occur at any step. Your question does not state that steps are only /possible/ to occur in that order or not, if you can't control the order of the steps, and at each step, there is only one choice, then capacity for bugs is very very low.http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/188482#188482Comment by Kent Fredric on Good excuses NOT to use version controlKent Fredric2009-08-15T05:17:17Z2009-08-15T05:17:17ZI use git for stuff that never leaves my computer ... its not all about sharing, some of its being able to make mistakes with your code, and rewind backwards through time to see what I did wrong without having to spend days recoding it. I also make clones of my own repositories for different tasks. It also saves your ass when you by accident truncate a file :)http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/1275760#1275760Comment by Kent Fredric on Good excuses NOT to use version controlKent Fredric2009-08-15T05:14:28Z2009-08-15T05:14:28Zoh dear, please no. Daily WTF candidacy there. http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/1280002#1280002Comment by Kent Fredric on Good excuses NOT to use version controlKent Fredric2009-08-15T05:13:01Z2009-08-15T05:13:01ZAh, but smart lazyness says use version control, so you can browse youtube instead of manually remembering what the previous codeset was and having undo a weeks worth of changes by hand :phttp://stackoverflow.com/questions/1251713/backup-of-github-repo/1251841#1251841Comment by Kent Fredric on Backup of github repoKent Fredric2009-08-09T23:50:29Z2009-08-09T23:50:29Z@Jefromi : thats essentially what git remote add --mirror does :)http://stackoverflow.com/questions/1251713/backup-of-github-repo/1251717#1251717Comment by Kent Fredric on Backup of github repoKent Fredric2009-08-09T17:01:51Z2009-08-09T17:01:51Znb: your current bundle will only bundle parents of the commit, you'd probably need to specify --all to get a complete bundle of <i>everything</i> ( branches that are descendant of master ). git bundle create /tmp/foo master ; git bundle create /tmp/foo-all --all ; git bundle list-heads /tmp/foo ; git bundle list-heads /tmp/foo-all . Small, but significant.