Cebjyre

2,038
Reputation
155 views

Registered User

Name Cebjyre
Member for 1 year
Seen 17 hours ago
Website
Location AU
Age 29
Nov
18
answered Why does Perl’s autovivification work in this case?
Nov
3
awarded  Popular Question
Oct
30
awarded  Popular Question
Oct
28
answered How to make own file upload using HTML and javascript
Oct
26
comment Input change event on blur
Have you tried the onchange handler on the field itself - w3.org/TR/html401/… ?
Sep
23
accepted How to update ‘git log’ after ‘git svn fetch’ on a bare repo?
Sep
15
answered How to update ‘git log’ after ‘git svn fetch’ on a bare repo?
Sep
14
accepted What’s wrong with the MySQL DATE() function?
Sep
2
comment How do I find a date which is three days earlier than a given date in Perl?
If you are going to do this, I would suggest using a time in the middle of the day as input to mktime, rather than sec,min,hour=0 to avoid any chance of problem with daylight savings, leap seconds etc, then throw away the time component from localtime
Sep
1
answered MySQL Query with some type of join? Not sure.
Aug
25
comment What’s wrong with the MySQL DATE() function?
Thanks - it also looks like I can have WHERE due IS NOT NULL AND ... instead of the subquery, but I'm a bit hesitant to use DATE at all now.
Aug
25
answered What’s wrong with the MySQL DATE() function?
Aug
24
revised What’s wrong with the MySQL DATE() function?
Another response to a comment
Aug
24
revised What’s wrong with the MySQL DATE() function?
Answered some queries in the comments
Aug
24
asked What’s wrong with the MySQL DATE() function?
Aug
18
awarded  Yearling
Aug
5
comment SHA1 C# method equivalent in Perl?
My reading of the question is that the asker has the C# code and wants equivalent Perl code, in which case using the CPAN module is a much better idea that writing new code (with some exceptions - learning about stuff being one reason to rewrite it)
Aug
4
accepted Why does MySql allow “group by” queries WITHOUT aggregate functions?
Aug
4
revised Why does MySql allow “group by” queries WITHOUT aggregate functions?
typo, formatting
Aug
4
answered Why does MySql allow “group by” queries WITHOUT aggregate functions?
Jul
31
comment Regular expression to find and remove duplicate words
How about "it can can't it"? \b picks up the boundary between letters and apostrophes in Perl-land, but we've already established that rules are different there :)
Jul
31
accepted How to undo removal of a file in svn
Jul
31
comment How to undo removal of a file in svn
It depends on how the older revision of the file is added - if Ivo just copied a version of the file from somewhere else and added it as a new file, then svn blame would treat every line as coming from that addition, rather than the original revision it was entered.
Jul
31
answered How to undo removal of a file in svn
Jul
30
answered How can I split a string along a user-provided string separator in Perl?
Jul
24
answered SQL to determine minimum sequential days of access?
Jul
23
comment How do I do tab completion in Perl’s Term::Shell?
Same here: sh[tab] expands to show
Jul
7
comment Why doesn’t this Perl regex work?
It's probably worth pointing out to the original asker that the spaces in this regex are essentially ignored due to the x flag
Jul
7
answered Why doesn’t this Perl regex work?
Jun
27
answered What is the scope of $1 through $9 in Perl?
Jun
24
accepted How can I convert all line endings to CRLF, LF, or CR during SVN operations
Jun
23
comment Open source vs Microsoft technologies as a career foundation.
As well as the ease/cheapness of acquiring open source tools privately, you probably have more options to make a recognisable impact in your own time with open source projects than with MS ones. As one example your options for a Google App Engine demo piece are currently limited to Python and Java - these options will probably widen over time, but if/when .Net enters the stack is anyone's guess