Kent Fredric

14,276
reputation
859 views

Registered User

name Kent Fredric
member for 1 year
seen Dec 13 at 11:17
website
location New Zealand
age 24
I telecommute. I'm also hopeless at talking about myself. So, get to know me if you want to know.
I have a habit of repeatedly editing my post to try make it clearer, err corrections, and be more informative.
Also, I might just start "upgrading" code I see using old Perl styles. You'll probably thank me because it appears to get you more votes.
Dec
13
comment putting content from iframe into current DOM
P.S. Using right click is a BadIdea™ because UA's have their own right-click menu, which I have to get rid of to see yours.
Dec
13
comment putting content from iframe into current DOM
um um um. we don't have access to 'localhost'.
Dec
13
revised putting content from iframe into current DOM
s/just/also/
Dec
13
comment putting content from iframe into current DOM
and $(iframe).contents() returns nothing.
Dec
13
comment putting content from iframe into current DOM
It won't work anyway, because contentWindow is undefined.
Dec
13
answered putting content from iframe into current DOM
Dec
13
revised putting content from iframe into current DOM
syntax
Dec
13
answered How to ssh from within a bash script?
Dec
13
revised What’s the proper way to create a BUILDARGS method using MooseX::Declare?
added 44 characters in body
Dec
13
comment Python vs Groovy vs Ruby? (based on criteria listed in question)
"perl is too much punctuation/line noise" # the number 1 hallmark of somebody whos not tried it.
Dec
6
awarded  Mortarboard
Dec
5
revised Are people with certain Myers Briggs personality types drawn to careers in programming/development?
imagehosting--
Dec
4
comment What’s in your Utility Toolkit?
then it would be greq ;)
Dec
3
awarded  Nice Answer
Dec
1
awarded  Nice Question
Dec
1
revised Foundation profile and Personal profile for J2me
grammafy
Nov
29
answered Why is ‘last’ called ‘last’ in Perl?
Nov
29
revised Why does my method print “isObjectName=SCALAR(0x1289df0)”?
edited tags
Nov
29
comment Why does my method print “isObjectName=SCALAR(0x1289df0)”?
New to OOP? Check out Moose: search.cpan.org/dist/Moose
Nov
17
accepted *** glibc detected *** perl: double free or corruption (!prev): 0x0c2b7138 ***
Nov
13
awarded  Good Answer
Nov
11
awarded  Nice Answer
Nov
8
awarded  Nice Answer
Nov
4
accepted Why is this legacy code using cat on a filename in a call to open()?
Nov
4
accepted How do I serve a large file for download with Perl?
Oct
28
comment How can I identify and remove redundant code in Perl?
I 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.
Oct
27
comment Can PHP 5 do request handling similar to Tomcat or GAE?
you still need mod_rewrite to redirect all calls to the singular PHP script ;)
Oct
27
comment Can I access a static method in a dynamically specified class in Perl?
+1 can 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.
Oct
27
answered Should I use common::sense or just stick with `use strict` and `use warnings`?
Oct
27
comment Should I use common::sense or just stick with `use strict` and `use warnings`?
even 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.
Oct
23
accepted Making sense of some dprof output
Oct
23
awarded  Enlightened
Oct
23
accepted Google AppEngine: How to fetch more than 1000?
Oct
1
accepted How can I make sure a background image displays before the page loads?
Sep
25
awarded  Good Answer
Sep
18
awarded  Yearling
Sep
10
accepted jquery $.GET multiple calls
Aug
28
comment Verifying equivalence of a secret
@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.
Aug
27
answered Verifying equivalence of a secret
Aug
27
comment Verifying equivalence of a secret
the 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.
Aug
22
comment What is the best method to remove duplicate image files from your computer
The world: 2^(infinte) combinations. Collisions: Certain.
Aug
22
revised Need for speed: Best database solution…
added 796 characters in body
Aug
22
answered Need for speed: Best database solution…
Aug
22
revised Need for speed: Best database solution…
added 5 characters in body
Aug
22
revised How to start as a programmer (learning vs working)?
grammar attempt
Aug
18
accepted git without .git folder — a remote git-dir
Aug
16
answered git without .git folder — a remote git-dir
Aug
16
comment git without .git folder — a remote git-dir
Your question is horrendously worded, and the grammar is such that I possibly know the answer, but can't make out the question.
Aug
16
comment How many possible bugs are there?
You 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.
Aug
16
revised How many possible bugs are there?
added 122 characters in body