cjm

5,698
Reputation
239 views

Registered User

Name cjm
Member for 1 year
Seen yesterday
Website
Location Dallas, TX
Age 38
Nov
25
comment With a utf8-encoded Perl script, can it open a filename encoded as GB2312?
I think you should use utf8; at the top, and then skip the decode step. The utf8 pragma tells Perl that your source code (including string literals) is already UTF-8.
Nov
23
comment Perl regex replacement string special variable
The last $store is redundant, though; assignment returns the value assigned.
Nov
18
answered How can I debug a Perl CGI script?
Nov
3
accepted Using Win32::OLE to execute macro in Access 2007
Oct
27
revised Should I use common::sense or just stick with `use strict` and `use warnings`?
It's = it is
Oct
27
revised What is your best programmer joke?
moved to tinypic.com
Oct
13
revised Locale-aware Perl regular expressions (matching word boundaries)
don't link to specific version
Oct
10
revised What’s the best way to deep copy a hash of hashes in Perl?
edited title
Oct
7
answered What is the best way to gunzip files with Perl?
Oct
7
revised Does Perl have something similar to PHP’s constant()?
add advanced version
Oct
6
comment Does Perl have something similar to PHP’s constant()?
Your read_constant is doing an awful lot of work to avoid saying no strict 'refs'. See my answer for a shorter version. (stackoverflow.com/questions/1526859/…)
Oct
6
answered Does Perl have something similar to PHP’s constant()?
Oct
5
revised How can I create a TCP server daemon process in Perl?
link to examples
Oct
5
accepted How can I create a TCP server daemon process in Perl?
Oct
5
answered How can I create a TCP server daemon process in Perl?
Oct
5
comment How can I create a TCP server daemon process in Perl?
What sort of server? There are modules for implementing HTTP servers, SMTP servers, ...
Oct
1
revised How can I force Perl to run the module from the test directory only?
add notes
Oct
1
accepted How do I start a new Perl module distribution?
Oct
1
answered How can I force Perl to run the module from the test directory only?
Sep
30
comment Should a Perl constructor return an undef or a “invalid” object?
Check out Exception::Class as a handy way of throwing objects as exceptions. (search.cpan.org/perldoc?Exception::Class)
Sep
30
answered How do I start a new Perl module distribution?
Sep
29
revised Why is Perl the best choice for most string manipulation tasks?
don't link to specific version
Sep
27
revised Why does my Perl print show HASH(0x100a2d018)?
fixed formatting and wording
Sep
23
revised How do I add RIFF header to MP3 files programatically?
don't link to specific version
Sep
22
answered Setting Access permissions on Semaphore?
Sep
21
comment How to make elements of vector unique? (remove non adjacent duplicates)
Other than that (now corrected) thinko, I like this algorithm.
Sep
21
comment How to make elements of vector unique? (remove non adjacent duplicates)
Using find and then insert is inefficient. tmpset.insert(*r).second will be true if the value was inserted, and false if the value was already in the set.
Sep
20
comment How do I emulate vim’s ‘softtabstop’ in emacs?
This is complicated by the fact that it looks like you're writing Perl, and cperl-mode (the best Perl mode for Emacs) already binds backspace to cperl-electric-backspace. (Although that function doesn't do anything critical, so you could get by without the behavior it provides.)
Sep
18
revised How do I create a CSV file using Perl?
don't link to specific maintainer
Sep
18
awarded  
Sep
17
revised What’s the difference between ‘eq’ and ‘=~’ in Perl?
typo; mention escaping backslashes
Sep
17
awarded  Nice Answer
Sep
16
comment How can I call a Perl class with a shorter name?
I think you missed the point that he's writing the module and wants to provide an alias for it. He's not writing the code that uses the module. So while aliased is a pointer in the right direction, it's not really the answer.
Sep
16
comment Is there a Perl function to turn a string into a regexp to use that string as pattern?
See stackoverflow.com/questions/297034/…
Sep
16
revised How do I send data to a network printer with Perl on Win32?
link to module
Sep
16
answered How do I send data to a network printer with Perl on Win32?
Sep
16
comment Schaum’s code not working!
Can you be more specific about "it didn't work"? What does happen?
Sep
16
revised How can I call a Perl class with a shorter name?
show example of package
Sep
16
accepted How can I call a Perl class with a shorter name?
Sep
16
comment How can I call a Perl class with a shorter name?
That was the third option in my answer.
Sep
16
answered How can I call a Perl class with a shorter name?
Sep
16
revised How to find the amount of physical memory occupied by a hash in Perl?
don't link to specific version
Sep
16
awarded  Yearling
Sep
15
revised How can I test Perl applications using a changing system time?
use BEGIN; address comments
Sep
15
accepted How can I check for the existence of UTF-16 filenames in Perl?
Sep
15
awarded  Nice Answer
Sep
15
revised How can I use Solaris::Kstat on Solaris 5.10?
don't link to specific version
Sep
15
answered Good C++ directory and file library?
Sep
14
revised Is there something equivalent to Sonar for Perl?
don't link to specific versions
Sep
14
revised Writing to shared memory
explain why file was altered