| bio | website | vyznev.net |
|---|---|---|
| location | Helsinki, Finland | |
| age | ||
| visits | member for | 2 years, 9 months |
| seen | 7 hours ago | |
| stats | profile views | 589 |
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 10 |
answered | Hashing Password, from broken methods to most secure now |
|
Apr 10 |
answered | What do the non-printable characters in the Perl symbol table represent? |
|
Apr 9 |
comment |
Could not find to use the common.js in Mediawiki It's really hard to tell from your description what might be going wrong. Could you maybe give us a link to your wiki so that we can see for ourselves? |
|
Apr 8 |
comment |
The most efficient way to implement an integer based power function pow(int, int) @AkhilJain: It's perfectly good C; to make it valid also in Java, replace while (exp) and if (exp & 1) with while (exp != 0) and if ((exp & 1) != 0) respectively. |
|
Apr 8 |
answered | How to permanently delete a page from a Mediawiki wiki? |
|
Apr 7 |
comment |
Web-crawler optimization @user2154731: Learn how to install Perl modules under your own home directory. You'll find it useful for far more than just WWW::Mechanize. |
|
Apr 7 |
comment |
Finding and downloading images within the Wikipedia Dump Yeah, MediaWiki's system for storing license metadata (or, rather, the lack of any such system) sucks. At least for Commons, you might be able to extract the license data from the categorylinks table dump, since all Commons license templates add the file pages they're used on to hidden categories under commons.wikimedia.org/wiki/Category:Copyright_statuses . I believe the English Wikipedia has a similar system, with the root category at en.wikipedia.org/wiki/… . |
|
Apr 6 |
answered | Can this be solved with a line sweep algorithm? |
|
Apr 6 |
comment |
Is there any secure way to allow cross-site AJAX requests? That's certainly good advice, but if I were the OP, and did not know the answer already, I'd certainly find it hard to read between the lines in your answer to tell whether it actually is or isn't safe for me to use CORS in this particular case. (As for submitting a form in an iframe... well, it's enough to carry out the exact same attack against your hypothetical money transfer script that you describe in your answer above, even without CORS.) Anyway, should we continue this in chat? |
|
Apr 6 |
comment |
Is there any secure way to allow cross-site AJAX requests? There's no user input required, it's easy for client-side JS to construct and .submit() an invisible form (possibly in an iframe) without the user even noticing. As for what you missed, the OP asked whether it's safe to use Access-Control-Allow-Origin: * for a script that looks up and returns definitions of words. You told them that it's not safe to use it for a script that performs bank transfers. Those are not the same thing. |
|
Apr 6 |
comment |
Is there any secure way to allow cross-site AJAX requests? Actually, "simple" POST requests (such as can be generated by submitting an ordinary HTML form) are vulnerable to CSRF anyway, with or without CORS. To prevent that, you need something like anti-CSRF tokens. Also, -1 for not actually addressing the OP's intended use case. |
|
Apr 6 |
answered | Is there any secure way to allow cross-site AJAX requests? |
|
Apr 6 |
comment |
Meteor uses SRP for authentication. How is it being implemented? Is it really a good idea? This question might be better suited for our sister site, security.stackexchange.com |
|
Apr 6 |
comment |
count by an element in perl @Hynek: Wrong site, we're not on codegolf.stackexchange.com :) (Besides, if we were, perl -pE'/^fan\b/&&say"count ",++$n' would be one char shorter yet.) |
|
Apr 5 |
revised |
Finding and downloading images within the Wikipedia Dump added 1800 characters in body |
|
Apr 5 |
answered | Finding and downloading images within the Wikipedia Dump |
|
Apr 5 |
answered | count by an element in perl |
|
Apr 5 |
revised |
count by an element in perl added 84 characters in body |
|
Apr 5 |
revised |
How to only allow approved users to log in to my wiki? added 1985 characters in body |
|
Apr 5 |
comment |
How to only allow approved users to log in to my wiki? Yes, you can have as many hooks per extension as you want; see edit above. |