Leonardo Herrera

533
reputation
56 views

Registered User

name Leonardo Herrera
member for 1 year
seen 7 hours ago
website
location Santiago
age 34
Diletante
7h
comment In Perl, how can I find the index of a given value in an array?
In the case of duplicate values you'll just get the first element that matches. This can be really useful if a long-lived array is queried more than once.
7h
comment In Perl, how can I find the index of a given value in an array?
That's Perl street cred material, thought :-)
2d
comment Why do Perl control statements require braces?
"--no dangling statements allowed" seems like an affirmation of the answer provided in a comment by Brian above.
Dec
13
comment Delphi 5 - StrToFloat results differntly on WinXP and Win2K
So, why haven't you marked this answer as "accepted"?
Dec
13
comment JSplitPane analogue for Delphi
Hm... wonder how can somebody get "tired" of using a simple TSplitter...
Dec
12
comment Delphi: Why can I link this function statically but not dynamically?
Wouldn't that be 0..14? I'm quite rusted.
Dec
12
comment Upgrade to Delphi 2010, or stick with Delphi 7 “forever”?
Are we sure of this? Nowadays I cannot find good Delphi resources and nobody wants to even learn it. I don't doubt there are Delphi developers around -heck, I'm a stubborn Delphi user- but it's not the same it used to be. The entry barriers are just too high.
Dec
12
comment Upgrade to Delphi 2010, or stick with Delphi 7 “forever”?
Yes, but the pricing is just stupid. Don't know how much of its money Embarcadero makes from this division, but if it's not a big part of the pie, they should lower their prices and open up a little bit. The Delphi community has always been very supportive and enthusiast; they aren't leveraging this.
Dec
1
comment how can i controll while loop into another while loop
cballou: I'm one of those individuals. That's not the problem in this case. Proving sample data for both tables and the expected output would have helped. Just take a look at the answers -- all of them are in the form "I don't understand what you want, but here's a guess."
Nov
30
answered Why does my Perl CGI complain about “Premature end of script headers”?
Nov
30
comment Why is ‘last’ called ‘last’ in Perl?
Okay, let's take a break. At last.
Nov
30
comment how can i controll while loop into another while loop
Your question makes no sense. Please try to explain it better, providing an example of what you want to accomplish if possible.
Nov
30
comment Drawing in wof(MsPaint)
Please don't answer your own questions; this isn't a forum. You may want to check out the FAQ section.
Nov
30
comment What’s the difference between programmer and software engineer?
In Chile, a Programmer is a person with a technical degree (2 yrs) in programming; an Engineer is somebody with an engineering degree (4 or 5 yrs.) "Software Developer" is just a job description.
Nov
27
answered Perl to Python/Ruby code translator
Nov
27
comment regex to remove prefix and another to upper case the first letter
The square brackets are part of the match also
Nov
27
comment regex to remove prefix and another to upper case the first letter
Then don't try to use the command line version -- use a script instead.
Nov
26
comment regex to remove prefix and another to upper case the first letter
I used single quotes because my shell doesn't like the '$' sign
Nov
26
comment regex to remove prefix and another to upper case the first letter
Thank you for remind me about '-p'. I'm not used to one liners.
Nov
26
revised regex to remove prefix and another to upper case the first letter
Updated to use 'p' flag
Nov
26
comment regex to remove prefix and another to upper case the first letter
Oh, you should update your question then. You want to include the square brackets?
Nov
26
answered regex to remove prefix and another to upper case the first letter
Nov
25
comment How can I make Perl’s File::Find faster?
...and accept the answer.
Nov
20
answered What is the best image manipulation library?
Nov
19
comment looking for a good documentation/tutorial for sybase
What type of work you plan to do? DB administration? Programming?
Nov
19
comment Migrating SOAP functionality from PHP to Perl using SOAP::WSDL
"Just doesn't work" is NOT an appropriate way to ask, IMHO. Can you provide more details?
Nov
19
answered Perl search and replace with variables
Nov
18
comment Perl search and replace with variables
Don't think the OP wants to have parenthesis in the replacement, thought.
Nov
18
comment Perl search and replace with variables
Why was this downvoted? for being succint?
Nov
18
comment How can I debug a Perl CGI script?
Unfortunately I left my crystal ball at home, but I would imagine the Expect script is waiting for some predefined timeout instead of matching output. Please post some code.
Nov
17
comment Why doesn’t Perl recognize my constant?
Up-voted (it is a question, after all) but you should edit and accept the first correct answer you got. And let your embarrassment serve as a lesson :-)
Nov
17
answered Are there any drawbacks to interpolation in Perl?
Nov
16
comment Perl: replace pattern from the current position until the end of a line
I agree with brian's comment above - substr($base, $+[0]) =~ s/\s/\+/g; can be used instead of lines 3, 4 and 5. Besides, substr() as an lvalue is utterly cool.
Nov
13
revised Creating and Placing Objects in the PDF using C# or perl
Link to sample result file
Nov
13
revised Creating and Placing Objects in the PDF using C# or perl
*grumble*
Nov
13
answered Creating and Placing Objects in the PDF using C# or perl
Nov
12
comment perl subroutine call
Actually, not using prototypes also solves the problem -- without having to declare the sub before using it.
Nov
11
comment Replace specific inline CSS with HTML counterpart in Perl
Glad to be of help.
Nov
10
accepted Replace specific inline CSS with HTML counterpart in Perl
Nov
10
comment Replace specific inline CSS with HTML counterpart in Perl
Check it out now. I had a problem with the way I used 'detach_content'. Also, take a look at how to build a list of all allowed nodes to parse.
Nov
10
revised Replace specific inline CSS with HTML counterpart in Perl
Fixed bad detach_content() use
Nov
10
answered Replace specific inline CSS with HTML counterpart in Perl
Nov
8
accepted How can I parse a mathematical function from user input in Perl?
Nov
5
comment What is Perl’s “standard string comparison order”?
That's a really interesting fact I didn't know. Seems like a smart design decision to me! (Obvious in hindsight, but hey, most smart decisions are.)
Nov
4
revised Python v. Perl
perl the interpreter, Perl the language.
Nov
3
answered Has anyone implemented Peter Norvig’s spellchecker in Perl?
Nov
3
answered How can I reclaim memory from perl?
Nov
2
answered How can I parse a mathematical function from user input in Perl?
Nov
2
answered Why doesn’t the match operator match anything?
Oct
22
answered How can I remove external links from HTML using Perl?