| bio | website | vyznev.net |
|---|---|---|
| location | Helsinki, Finland | |
| age | ||
| visits | member for | 2 years, 9 months |
| seen | 1 hour ago | |
| stats | profile views | 588 |
I like programming in Perl and C. I know Java and PHP too (I'm a MediaWiki developer), but I can't really say I like them. I keep meaning to learn Python some day, but never seem to get around to it.
I'm working on a Ph.D. in biomathematics. I also like programming puzzles and cryptography.
Please consider any (original) code I post to Stack Overflow (and other Stack Exchange sites) to be released under CC-Zero unless stated otherwise. You may do whatever you want with it and don't have to credit me in any way, although of course that would be nice.
|
Apr 16 |
comment |
How to do an accent and case-insensitive search in MediaWiki database? @agim: At a guess, with a query like '%keyword%' there shouldn't be much difference, since MySQL has to do a table scan (or at least an index scan) anyway. However, a query like 'prefix%' should be much faster if the column was properly collated to begin with. |
|
Apr 15 |
comment |
Possible to create ZIM file of whole Wiki? (my own, based on mediawiki) According to this page, the Wikipedia ZIM dumps are created using "a hacked version of Mediawiki DumpHTML extension, with additional custom scripts." |
|
Apr 15 |
answered | How to do an accent and case-insensitive search in MediaWiki database? |
|
Apr 14 |
answered | Efficient computation of greatest power of 2 < x |
|
Apr 13 |
comment |
perl: assign array = smth that it will return false ... Of course, in list context, pp_stub is a no-op, and so your claim that "'no arguments' and 'empty list' mean the same thing" is literally true. What's special about return, however, is that unlike ordinary list operators, it does not always evaluate its arguments in list context. In scalar context, return and return () could behave differently; it's just a (very good) language design choice that they don't. |
|
Apr 13 |
comment |
perl: assign array = smth that it will return false @ikegami: I checked, and there indeed is an internal parsing difference between return () and just return: the former adds an extra OP_STUB to the parse tree. Of course, there's no user-visible difference, because pp_return, just as documented, explicitly checks for the case of "scalar context, no arguments" and does exactly what pp_stub would've done: pushes an undef onto the stack. Which is what I was more or less trying to say above. |
|
Apr 13 |
answered | Visual basic substitution cipher |
|
Apr 13 |
comment |
Visual basic substitution cipher These are good references if the OP wants to do real (modern, secure) encryption. If they just want to implement a substitution cipher for fun, or maybe for crypto puzzles, however, these links won't be very relevant. (Also, answers that consist of just a list of links are generally not considered very good on Stack Overflow.) |
|
Apr 13 |
answered | Redirect Website if its not specified domain in script - Protection using Javascript |
|
Apr 13 |
comment |
Redirect Website if its not specified domain in script - Protection using Javascript There are obvious syntax errors in your code (unescaped single quotes in a single-quoted string), but those are present in your "working script" too, so I assume they're just the result of incorrect de-obfuscation. They do mean that nobody else can really test your code as you've shown it, since it's not a valid short, self-contained correct example. Anyway, I assume you've tested it yourself: what happened when you tried it? |
|
Apr 13 |
comment |
perl: assign array = smth that it will return false @ikegami: The documentation for return actually does make a difference between no arguments and an empty list: "If no EXPR is given, returns an empty list in list context, the undefined value in scalar context, and (of course) nothing at all in void context." I assume this reflects an internal parsing detail; of course, the outcome is the same either way. (In fact, I'm pretty sure that return () is also parsed as "no arguments" rather than as "an expression evaluating to an empty list" anyway, but I felt that making it return +() or something would just be pointlessly confusing.) |
|
Apr 12 |
revised |
perl: assign array = smth that it will return false added 820 characters in body |
|
Apr 12 |
comment |
perl: assign array = smth that it will return false @Sinan: I read the OP's question as just asking for a way to "return something that will end while loop." You're right that, if the OP needs to distinguish between error and end-of-data conditions, it would make more sense to raise an exception for the former. |
|
Apr 12 |
revised |
Copied Wikipedia article to another wiki, infobox missing added 159 characters in body |
|
Apr 12 |
revised |
Copied Wikipedia article to another wiki, infobox missing copyedit, better title, tagging |
|
Apr 12 |
answered | Copied Wikipedia article to another wiki, infobox missing |
|
Apr 12 |
answered | perl: assign array = smth that it will return false |
|
Apr 11 |
answered | MediaWiki: Automatic font color change to wiki-specific colors |
|
Apr 11 |
comment |
What do the non-printable characters in the Perl symbol table represent? @BradGilbert: Actually, they both convert only the first character. Did you actually test my code? |
|
Apr 10 |
comment |
What do the non-printable characters in the Perl symbol table represent? @Brad: Sure, that does the exact same thing. |