User talk:Ilmari Karonen

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia

Archives: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 (last archive transcluded on this page)

Thanks - Fisher-Yates[edit]

Ilmari, hello
Just wanted to say thanks for all the great work you've done on Fisher-Yates!
Superb!
u r ugly Dav!dB (talk) 21:09, 24 October 2010 (UTC)[reply]

Name[edit]

Just curious about "Ilmari" — I read the Kalevala some time ago (in English translation; I know nothing of Finnish) and remember Ilmarinen. Is Ilmari derived from Ilmarinen, and is it a very common name?

Also, I was quite interested in "Normally humans have five digits on each hand{{fact}}"; perhaps you should add the edit summary for the edit when the tag was removed  :-) Nyttend (talk) 02:01, 21 October 2008 (UTC)[reply]

Fairly common, yes: according to the Finnish Population Register Centre, it's the tenth most common male first name overall in Finland. (Although it wasn't quite as popular when I was born — it was very common in my parents' generation, and has been gaining popularity again over the last decade, but it was somewhat out of fashion for several decades in between. Anyway, I inherited it from a relative.) It does share an etymology with Ilmarinen, and was popularized during the national romantic period in Finland (late 19th and early 20th century) along with several other Kalevala-inspired names. We even have an article on it, though it's little more than a disambiguation page; the Finnish Wikipedia does have a bit more information. —Ilmari Karonen (talk) 15:35, 21 October 2008 (UTC)[reply]

rev:41876 breaks things like:

{{#ifeq:{{FULLPAGENAMEE}}|{{ns:3}}:{{BASEPAGENAMEE}}

by outputting (essentially):

{{#ifeq:User_talk:Ilmari_Karonen|User talk:Ilmari_Karonen

Kind of a bad breaking change for a bit of consistency, no? This will break a lot of templates both on WMF wikis and on other installs of MediaWiki. (And wasn't it you who was recently kvetching about things like canonical names changing... ;-) What do you think about reverting it? --MZMcBride (talk) 07:26, 26 October 2008 (UTC)[reply]

The reason I changed it is that the former output of {{ns:}} matched neither {{NAMESPACE}} (which uses spaces instead of underscores) nor {{NAMESPACEE}} (which URL-encodes non-ASCII characters) in all cases. I figured that, since we were messing with namespace names anyway, I might as well slip in a fix so that {{#ifeq:{{NAMESPACE}}|{{ns:3}}|...}} works consistently even on non-English wikis. For a demonstration, see e.g. fi:Keskustelu käyttäjästä:Ilmari Karonen/nstest. Yes, this is a breaking change, and I probably should've advertised it better, but the fix is pretty simple: just drop the final "E" from any magic words you're comparing with {{ns:}}. The "E" hack never worked properly on non-English wikis anyway. —Ilmari Karonen (talk) 18:17, 26 October 2008 (UTC)[reply]
Anyway, thanks for letting me know that the change is live now. I've somewhat belatedly posted an announcement at the Village pump. —Ilmari Karonen (talk) 19:00, 26 October 2008 (UTC)[reply]

Main Page redesign[edit]

The Main Page Redesign proposal is currently conducting a straw poll to select five new designs, before an RFC in which one will be proposed to replace the Main Page. The poll closes on October 31st. Your input would be hugely appreciated! Many thanks, PretzelsTalk! 10:20, 28 October 2008 (UTC)[reply]

A quick note[edit]

Hi there. Does this licencing looks OK? I don't think its right. I'm not good in the copyright issues anyways. Cheers Wiki San Roze †αLҝ 17:49, 28 October 2008 (UTC)[reply]

You're right, it's not. Even if the image had been Madan lmg's own work (as the bogus license claimed), rather than obviously from ISRO, Harsha850 would've had no right to release it on Madan lmg's behalf. Only the copyright holder, or someone explicitly authorized by the copyright holder, can do that. —Ilmari Karonen (talk) 19:42, 28 October 2008 (UTC)[reply]

In my current browser (Mozilla Firefox 3.0.something) the thumbnail came up with the 'grey warning screen' that it was not able to be rendered due to technical problems. I don't have any problems with the reset- as long as it's rendering correctly! SkierRMH (talk) 15:59, 29 October 2008 (UTC)[reply]

Sorry - should have explained it a bit clearer - the odd part was that in Firefox it wouldn't give me the full sized version when I clicked on the date. Gave the "unable to render..." message on the "big" image -and on the thumbnail. I've switched it IE7 on a different computer, and the image seems to render fine on it, but still gives an error message on my other Firefox usin' computer! When I get back to that computer later I'll see if it's possibly a problem with the specific version/build of Firefox, as it doesn't seem to be an issue with IE7. Skier Dude (talk) 21:55, 29 October 2008 (UTC)[reply]

Long edit summaries[edit]

Hello, about your script, User:Ilmari Karonen/longeditsummary.js, there is a far nicer way to do this:

//prevents wpSummary from cheating you out of those last few characters
addOnloadHook(function()
{
    var wpSummary = document.getElementById("wpSummary")
    if (wpSummary)
    {
        wpSummary.onkeyup = function()
        {
            wpSummary.setAttribute("maxlength", 250 - encodeURI(wpSummary.value).split("%").length + 1)
        }
    }
})

This script simply adjusts the maxlength of wpSummary as you type to allow you the maximum number of characters without being able to run off the edge, even if multibyte characters are used. What do you think? —Remember the dot (talk) 21:39, 3 November 2008 (UTC)[reply]

That's clever. At a glance, though, I don't think the math's quite correct: you're subtracting the number of URL-encoded bytes from the length, even though a) encodeURI() encodes even some single-byte characters, and b) what you really should be subtracting is the number of encoded bytes minus the number of characters.
Hmmm... I think it would work if you replace split("%") with split(/%[89AB]/i), though. Ha. I've replaced the script with a new version based on your code; it's slightly more complicated to deal with some rare corner cases, but the basic idea is the same. Thanks! —Ilmari Karonen (talk) 05:34, 4 November 2008 (UTC)[reply]
Siisti! I wouldn't have thought of doing that.
One problem I've noticed with both my original script and your improved version of it is that when you preview, everything beyond 200 characters is sliced off by the maxlength parameter that is sent with the document. Maybe what we could do is get the developers to increase maxlength to 250 and then include this script in MediaWiki itself.
That's odd, it doesn't do that for me. I think it may be a browser compatibility issue. I don't think raising the default maxlength to 250 is necessarily a good idea, since the 50-character margin is still good to have for users with javascript disabled. Hmm... of course, if MediaWiki were to reject attempts to save with an overlong summary, rather than truncating it silently... —Ilmari Karonen (talk) 05:39, 5 November 2008 (UTC)[reply]
Interesting. Firefox 2 slices the characters, Firefox 3 does not. I suppose it's not a big deal; we can just encourage Firefox 2 users to upgrade. Oh, and the script doesn't appear to work at all in Internet Explorer. —Remember the dot (talk) 03:57, 6 November 2008 (UTC)[reply]
Also, if a user pastes a bunch of characters in and exceeds the limit, it would probably be better to cut off the excessive characters from the end rather than reverting the entire paste.
I tried that, but it behaves somewhat badly if the addition that pushes it over the limit is somewhere in the middle of the summary. I suppose there might be ways to do it "right", either by taking a simple diff between the new and old strings or checking the cursor position, but both would add yet more complexity. —Ilmari Karonen (talk) 05:39, 5 November 2008 (UTC)[reply]
The main problem I see is that when the script modifies the edit summary box, the cursor jumps back to the beginning instead of to wherever the user happened to be typing. And on top of that, reverting means that none of the paste goes through, instead of as much as possible of the paste as the user expects.
I think the best thing to do would be to try to prevent the user from going off the edge, and in the rare case that the user does go off the edge inform them in an unobtrusive manner. I wrote up code to do this and left it below. —Remember the dot (talk) 03:57, 6 November 2008 (UTC)[reply]
By the why, what corner cases might your script not work with? And why is it that all UTF-8 continuation bytes start with "10"? [1] It seems inefficient to me, although it is really useful for scripts like this. —Remember the dot (talk) 20:43, 4 November 2008 (UTC)[reply]
The main difference to your version is simply the revert if the length is exceeded. I wasn't actually thinking mainly about pastes when I added it, but simply about the case where the user tries to type a non-ASCII character when only one byte of space is left. As for the continuation bytes starting with 0b10, that's a deliberate part of the design of UTF-8: in particular, along with the redundant encoding of the sequence length in the first byte, it ensures that no valid UTF-8 character can be a substring of another valid character, which makes things safer and easier when doing things like substring matching or dealing with data that might be truncated in the middle of a multi-byte character. —Ilmari Karonen (talk) 05:39, 5 November 2008 (UTC)[reply]
Ah, that makes sense. Thanks for the explanation! —Remember the dot (talk) 03:57, 6 November 2008 (UTC)[reply]
Code
// LIMIT EDIT SUMMARIES TO EXACTLY 250 UTF-8 BYTES
// see EditPage::importFormData() in MediaWiki source for the source of the limit
// new, simpler and improved version, thanks to [[User:Remember the dot]] for the idea
 
addOnloadHook(function () {
    var wpSummary = document.getElementById("wpSummary")
    if (wpSummary)
    {
        var adjustMaxLength = function ()
        {
            // subtract the number of UTF-8 continuation bytes (0x80-0xBF) from the maxlength
            var maxLength = 250 - encodeURI(wpSummary.value).split(/%[89AB]/i).length + 1
            wpSummary.setAttribute("maxlength", maxLength)
 
            // the last character or group might've pushed us over; if so, inform the user
            var errorMessage = document.getElementById("editSummaryTooLong")
            if (wpSummary.value.length > maxLength)
            {
                if (!errorMessage)
                {
                    wpSummary.style.border = "3px solid red"
                    document.getElementById("wpSave").disabled = true
                    var editSummaryTooLong = document.createElement("div")
                    editSummaryTooLong.id = "editSummaryTooLong"
                    editSummaryTooLong.style.color = "red"
                    editSummaryTooLong.style.fontWeight = "bold"
                    editSummaryTooLong.textContent = "Your edit summary is too long."
                    var wpMinoredit = document.getElementById("wpMinoredit")
                    wpMinoredit.parentNode.insertBefore(editSummaryTooLong, wpMinoredit)
                }
            }
            else
            {
                if (errorMessage)
                {
                    wpSummary.style.border = ""
                    document.getElementById("wpSave").disabled = false
                    errorMessage.parentNode.removeChild(errorMessage)
                }
            }
            oldValue = wpSummary.value
        }
        addHandler(wpSummary, "keyup", adjustMaxLength)
        addHandler(wpSummary, "change", adjustMaxLength)
        adjustMaxLength()
    }
})

Remember the dot (talk) 03:57, 6 November 2008 (UTC)[reply]

Image:Florent_Gheeraert.jpg[edit]

Hello Ilmari Karonen, I temporarily restored the image as requested by you on my Dutch talk page (see nl:Image:Florent_Gheeraert.jpg). I hope that will help you to solve the problem. Please inform me when the local version is no longer needed so it can again be deleted. - Robotje (talk) 17:43, 12 November 2008 (UTC)[reply]

Whitman and Newbie error[edit]

Sorry about that. But FYI, the information is wrong in the photo about being used in a court case. It is a crime scene photo only. Since Whitman was killed on the tower, what court could have heard a case, except a Probate Court to determine damages and distribution of Whitman's estate, which did happen, but the photo was not used. Cheers!Victor9876 (talk) 01:48, 19 November 2008 (UTC)[reply]

HinduMeasurements.svg[edit]

I liked the way you did the Hindu measurements drawing. It made me curious about you. Also because it is the first time I have heard a name like yours.

You have accomplished a lot for one so young. Congratulations. satyask (talk) 00:54, 20 November 2008 (UTC)[reply]

Hi[edit]

Hey there. You edited my javascript page thingy. Don't worry, I'm not going to revert it as I trust your judgment. Can I ask what was wrong though? I have jvs-negative50 skills, so I have no idea a) what I meant to put in there, b) what was actually there or c) why it was a problem. Thanks! -- THE DARK LORD TROMBONATOR 20:31, 21 November 2008 (UTC)[reply]

Well, on the first line you were importing the page MonoBook (default) as a script. That means if the page existed, your browser would've executed everything on it as JavaScript. Since that's an unprotected page that anyone can edit, that's not really so good — any script put there could've hijacked your account, for example.
The rest of the code on your page wasn't JavaScript at all, it was CSS. Your browser, trying to execute it as JavaScript, probably threw a syntax error on it. You should put CSS styles on monobook.css, not monobook.js. —Ilmari Karonen (talk) 21:12, 21 November 2008 (UTC)[reply]
Oops. Thanks for catching it! I'm not even sure what I wanted the monobook to do, so I'll leave it as it is now. Thanks again. -- THE DARK LORD TROMBONATOR 21:21, 21 November 2008 (UTC)[reply]

Can you maybe make the script go to the specific page on the chosen namespace? As it is now choosing a namespace and entering the page name redirects the browser to the mainspace, but it would be more logical if it went to the specified namespace I think. -- Mentisock 17:38, 1 December 2008 (UTC)[reply]

Another thing... similar to your prefixindex.js can you create one for logs like this? It's like the inverted action of the 'logs' link in the toolbox but I think its inversion, seeing whether the user was blocked etc. is also useful. -- Mentisock 19:32, 1 December 2008 (UTC)[reply]
That's long been a known bug (or missing feature) of the multi-NS search script. It shouldn't really be that hard to fix, although there are some corner cases to consider. I'll see what I can do.
For the second thing, I believe this existing script should do what you ask. I just saved a slightly updated copy here in userspace, if you'd prefer that. The name of the link ("Page logs") may be somewhat confusing, but it accurately reflects what it does: MediaWiki logs actions by the performing user and the target page. Actions that affect a user rather than a page are simply logged as affecting the user's userpage. —Ilmari Karonen (talk) 20:12, 1 December 2008 (UTC)[reply]
Okay, I made a quick change to the searchnsmenu script. Is it better now? —Ilmari Karonen (talk) 20:23, 1 December 2008 (UTC)[reply]
Yeah although there's a slight glitch when selecting (Article) - it searches for the page along with '(Article)'. On a side note it isn't possible to search for special pages in that manner, is it?
logslink.js is nice as well... I see I wasn't the only one who thought it was useful. :-) (I wonder why they didn't implement it yet through the normal interface (but without having to go to history)? Is it because they think normal people wouldn't much need it?) Thanks. -- Mentisock 15:36, 2 December 2008 (UTC)[reply]
That's odd... it doesn't do that for me (on Firefox 3.0.4). What browser are you using?
No, it's not possible to search for special pages — the closest thing to that is the list at Special:SpecialPages. (And even that doesn't list quite all of them, though the ones left out — like Special:Blankpage or Special:Blockme — are mostly not ones you'd ever need to use. I do notice that it's missing the fairly handy Special:Mypage and Special:Mytalk, although neither of those is particularly useful on its own.)
I'm not sure why there is no link to the page logs in the toolbox by default. I suspect no-one simply ever thought to add it there, perhaps precisely because it's not that useful to casual editors. It shouldn't be too hard to do — you might want to propose it at the village pump or directly at bugzilla. —Ilmari Karonen (talk) 22:23, 2 December 2008 (UTC)[reply]
I've tried it with the latest edition of Portable Firefox, although it doesn't seem to be an interface issue, just the way the search is handled. As an example this is when 'moo' was entered, (Article) selected and go pressed. I also noticed that it doesn't work (like it does normally with just articles) when pressing enter directly, instead just searching for it (the inversion of the normal function, since enter equals go usually). -- Mentisock 18:05, 3 December 2008 (UTC)[reply]
Okay... I think I've fixed it. Try clearing your cache and see if it works now. Actually, I'm not sure why it seemed to work for me, since there was an obvious off-by-one bug. :/ —Ilmari Karonen (talk) 20:31, 3 December 2008 (UTC)[reply]
Yep, it does. Thanks! -- Mentisock 14:25, 5 December 2008 (UTC)[reply]
Hey again. Can you turn this link into something like the page logs script you have (possibly only displaying an * near page logs since it's related and with the username parameter that varies)? It seems useful to find out whether enwiki was affected by meta or such since sometimes the logs are empty here even though the effects are visible. -- Mentifisto 02:21, 31 January 2009 (UTC)[reply]
Doesn't seem like it should be too hard. In fact, looking at the script, I don't think it's even needed for what you're looking for — it's easier to just link to the correct log on meta directly. Here's a quick attempt, does it do more or less what your want? —Ilmari Karonen (talk) 02:35, 2 February 2009 (UTC)[reply]

Orphaned non-free media (Image:Peräsmies.gif)[edit]

Thanks for uploading Image:Peräsmies.gif. The media description page currently specifies that it is non-free and may only be used on Wikipedia under a claim of fair use. However, it is currently orphaned, meaning that it is not used in any articles on Wikipedia. If the media was previously in an article, please go to the article and see why it was removed. You may add it back if you think that that will be useful. However, please note that media for which a replacement could be created are not acceptable for use on Wikipedia (see our policy for non-free media).

If you have uploaded other unlicensed media, please check whether they're used in any articles or not. You can find a list of 'image' pages you have edited by clicking on the "my contributions" link (it is located at the very top of any Wikipedia page when you are logged in), and then selecting "Image" from the dropdown box. Note that all non-free media not used in any articles will be deleted after seven days, as described on criteria for speedy deletion. Thank you. BJBot (talk) 05:49, 9 December 2008 (UTC)[reply]

TUSC token fa325f47822bf8410db2c3669621900e[edit]

I am now a proud owner of a TUSC account! —Ilmari Karonen (talk) 17:12, 11 December 2008 (UTC)[reply]

Image -> File[edit]

Hi, I've noticed that the transition to using File: instead of Image: has resulted in the links at the bottom of the page showing the image categories being completely lost. The categorization still happens, though. This can't have possibly been by design, but I'm unsure as to who to report the problem to. Could you help with this? Thanks. Warren -talk- 00:32, 12 December 2008 (UTC)[reply]

Can you give a link to a page where that happens? I can't immediately see anything wrong. —Ilmari Karonen (talk) 00:41, 12 December 2008 (UTC)[reply]
File:InkBall Vista.png. The categorization on this page is done by the {{non-free software screenshot}} template, which hasn't been changed in a long time. Warren -talk- 01:00, 12 December 2008 (UTC)[reply]
Aha. The template had the expression {{#ifeq:{{NAMESPACE}}|Image|...}} in it. Fixed, thanks! —Ilmari Karonen (talk) 01:16, 12 December 2008 (UTC)[reply]

File:SecondOrderCARule242.png listed for deletion[edit]

An image or media file that you uploaded or altered, File:SecondOrderCARule242.png, has been listed at Wikipedia:Images and media for deletion. Please see the discussion to see why this is (you may have to search for the title of the image to find its entry), if you are interested in it not being deleted. Thank you. Skier Dude (talk) 05:56, 25 December 2008 (UTC)[reply]

File:Scotch regions.svg/legend, a page you substantially contributed to, has been nominated for deletion. Your opinions on the matter are welcome; please participate in the discussion by adding your comments at Wikipedia:Miscellany for deletion/File:Scotch regions.svg/legend and please be sure to sign your comments with four tildes (~~~~). You are free to edit the content of File:Scotch regions.svg/legend during the discussion but should not remove the miscellany for deletion template from the top of the page; such a removal will not end the deletion discussion. Thank you. MBisanz talk 07:43, 28 December 2008 (UTC)[reply]

Image copyright problem with File:ALE-Uniform-BOS-Green.PNG[edit]

Thanks for uploading File:ALE-Uniform-BOS-Green.PNG. You've indicated that the image is being used under a claim of fair use, but you have not provided an adequate explanation for why it meets Wikipedia's requirements for such images. In particular, for each page the image is used on, the image must have an explanation linking to that page which explains why it needs to be used on that page. Can you please check

  • That there is a non-free use rationale on the image's description page for each article the image is used in.
  • That every article it is used on is linked to from its description page.

This is an automated notice by FairuseBot. For assistance on the image use policy, see Wikipedia:Media copyright questions. --FairuseBot (talk) 06:00, 2 January 2009 (UTC)[reply]

Long edit summary code revisited[edit]

Hi again,

I noticed that you brought up User:Ilmari Karonen/longeditsummary.js on the wikitech-l mailing list. I think I've improved on it considerably; I have my own copy at User:Remember the dot/Long edit summary.js. My version only executes in response to the few DOM events that might cause a change, gives a warning if the user goes over instead of jerkily reverting the user's last change, and is compatible with Internet Explorer 7, so it should be suitable for general use. We might have to filter out Firefox < 3 though, because as we discovered before old versions of Firefox clip the edit summary no matter what. —Remember the dot (talk) 23:26, 7 January 2009 (UTC)[reply]

ifdthumbnails.js[edit]

Hi Ilmari, someone has been moving Images for Deletion to Files for Deletion breaking this script. I've copied it and tried fixing in User:Peripitus/ifdthumbnails.js and though I get no errors, I get no images. Could you help please ? - Peripitus (Talk) 01:29, 12 January 2009 (UTC)[reply]

That is a neat tool! I've updated it to work with the new name, so if you bypass your cache it should start working again. —Remember the dot (talk) 01:47, 12 January 2009 (UTC)[reply]
Thanks. :-) Seems to be working fine now. —Ilmari Karonen (talk) 07:46, 12 January 2009 (UTC)[reply]

Your edit to my talk page[edit]

[2] ??? SpinningSpark 23:43, 6 February 2009 (UTC)[reply]

The "arxiv.org/PS_cache" link points to a temporary page, which may be deleted if the article is not accessed within some period of time. I (or rather, my script) changed it to point to the official and stable URL of the article. You don't really need to worry about it; the link still works just fine. (Also, the corrected URL points to the abstract page, from which you can choose to download the full article in several formats, not just PDF. If you want to link directly to the PDF file, replace the "/abs/" in the stable URL with "/pdf/".) —Ilmari Karonen (talk) 00:01, 7 February 2009 (UTC)[reply]
Thanks for the explanation. I wouldn't have given it a second thought in article space, it just seemed strange that talk pages were being modified in this way. But obviously a good idea now I understand. SpinningSpark 10:45, 7 February 2009 (UTC)[reply]

Indefinitely blocked IPs[edit]

I'm not sure if you meant to, but you currently have two IPs blocked indefinitely ( 64.56.135.200 & 209.188.169.34 ) and as far as I can tell these weren't requested blocks. I would like to lift these blocks, since blocking policy notes that we do not typically block IPs indefinitely. Note these blocks were mentioned here. –xeno (talk) 18:27, 24 March 2009 (UTC)[reply]

Thanks for the note. I can't remember anything about either block, and couldn't find anything in my e-mail either, so I've gone ahead and unblocked them. (I made one indef schoolblock by request around that time, but it's neither of those IPs.) As usual, feel free to reblock if vandalism resumes. In general, I don't really mind anyone else undoing my blocks, either — if I'd had some specific non-obvious reason why a particular IP or user should not be unblocked, I'd have noted it in the block log. —Ilmari Karonen (talk) 02:28, 25 March 2009 (UTC)[reply]
cheers, I'll keep that in mind for the future. I'll keep an eye on these two as well. regards, –xeno (talk) 14:05, 25 March 2009 (UTC)[reply]

Cellular Automata versus a Cellular Automaton[edit]

Iimari (or is the second letter an L?), there is a problem with denying that a configuration is an automaton. GoL is a system of cellular automata (each cell has an automaton, and collectively they define the plural automata), and the patterns therein expressed are cellular automatons. An automaton is a machine of certain character. William R. Buckley (talk) 17:13, 26 March 2009 (UTC)[reply]

You may have a point there (although I don't think that usage really agrees qith established practice). But even so, I would not call a specific configuration of cell states a cellular automaton (or cellular automata) any more than I'd call a single state of a finite state automaton an automaton. A state (or a configuration of states) is something an automaton (or a system of automata) has, not what it is. —Ilmari Karonen (talk) 19:49, 26 March 2009 (UTC)[reply]
It is not the state which is important. Rather, the important component is the finite state automaton that is found in each cell of a system of cellular automata. Moreover, each configuration constitutes an abstract machine, which is itself a cellular automaton. It is often the case that established practice is fraught with error. For instance, it is common for American's to refer to the rearing of children by the term *raise*; Man raises vegetables, and rears children. The commonality of error does not yield correctness. William R. Buckley (talk) 21:22, 26 March 2009 (UTC)[reply]
The discussion was about whether "a configuration is an automaton". A configuration, such as the "breeder" in GoL, is a specific arrangement of cell states evolving under the rules of a particular cellular automaton. It is no more an automaton itself than a program is a computer; yes, there is a sense in which both statements are true, but it's still generally useful to maintain the distinction. (Oh, and I'd have to disagree with your claim that a common error cannot become correct, at least as far as natural language is concerned. Remember that what you're writing here is the bastard offspring of bad Norse and worse Latin. A native speaker of, say, Middle English would consider our bastardization of that fine language corrupted beyond all hope.) —Ilmari Karonen (talk) 23:04, 26 March 2009 (UTC)[reply]
Your view would change, were the cells actual physical units which could be agglomerated to form larger physical structures. On such demonstration, your claim that configurations are not machines would fail. Such systems are in the offing. Also, I am happy if you choose to raise your children, as opposed to rearing them, iff it happens that you would be satisfied should your children turn out to be intellectually little more than vegetables. William R. Buckley (talk) 15:58, 27 March 2009 (UTC)[reply]
I don't see why. Indeed, I'm sure any half-way competent electronics student could design a single-GoL-cell-on-a-chip and have enough of them fabbed to run, say, the breeder. That doesn't change the fact that, while the entire cell with its transition rules is indeed a machine, the state it is in at any given time (which is what makes the difference between, say, the breeder and the blinker) is merely an ephemeral feature of the machine's operation. Analogously, a bicycle is a machine, but "left pedal lower than right" or "moving forward at 20 km/h" are merely features of its possible momentary states. So is "alive with two live neighbors" for a GoL cell. —Ilmari Karonen (talk) 16:24, 27 March 2009 (UTC)[reply]
My point is not that such FSA could not be constructed, or agglomerated. The point is that such agglomerations are machines; you are focused upon each cell, not the whole configuration. So, individual FSAs agglomerate to build more complicated FSA. They are all automatons, and collectively constitute automata. Also, even if this conversation fails to yield either of us convincing the other, it is clearly more fun than working. William R. Buckley (talk) 19:15, 27 March 2009 (UTC)[reply]
Yes, the agglomorations are machines, just like their individual parts are. But they are machines capable of running any pattern (up to some size limit) under the rules they embody, not just a single one — if they were not, they wouldn't really be implementations of the cellular automaton as defined, would they? I don't call my computer a "web browser", even though it can be, and indeed currently is, running one. Nor do I call my web browser a "computer", even though it's running on one. I find this perfectly analogous to not calling a specific pattern, such as the breeder, a "cellular automaton", even though it too is running on one. A cellular automaton is more than a single pattern, just like a computer is more than a web browser. —Ilmari Karonen (talk) 21:57, 27 March 2009 (UTC)[reply]
Well, I would not argue that the cells of such an agglomeration can accept any state. Rather, the states of the cells of such agglomerations have been fixed, into a specific pattern, where only the passage of bits occurs. Typically, a right-pointing ordinary transmission state in vNCA will remain in that state, for as long as the configuration remains. This consistent behavior of the agglomeration is what makes it a specific machine, like a self-replicator. Even though biological organisms are composed of cells (which are organisms in their own right), their agglomerations are considered to also be organisms. I think my term usage is more consistent but, I recognise the concerns you have for doing likewise. Thanks for an engaging discussion. Also, is your name pronounced in the manner of "ILL" + "MARY" (and could you mention the emphasis upon the final I)? Is Karonen Finish, Swedish, ? William R. Buckley (talk) 23:04, 27 March 2009 (UTC)[reply]
It's a typically Finnish name, both halves of it. Your pronunciation is close to correct, except that the Finnish "a" is an open back unrounded vowel. And the stress, such as there is, goes on the first syllable as usual in Finnish. —Ilmari Karonen (talk) 03:50, 28 March 2009 (UTC)[reply]
Thanks for the details on pronunciation of your name. I will offer to you that most US Americans (there are two continents of Americans, and I tend to think the US attitude that they are the only Americans is manifestly wrong) would therefore pronounce your name properly were it presented in this form:
ILMAHRI
Clearly not the spelling you expect but, it conveys the open a you mention. William R. Buckley (talk) 16:38, 28 March 2009 (UTC)[reply]

Ifd thumbnails[edit]

Your ifd thumbnails script doesn't seem to be working at WP:PUF, although it's fine at WP:FFD. –Drilnoth (TC) 14:05, 12 April 2009 (UTC)[reply]

Thanks for the note. The script was still looking for the old title Wikipedia:Possibly unfree images. It should be working now. (You may need to clear your cache.) —Ilmari Karonen (talk) 17:02, 12 April 2009 (UTC)[reply]
Yep, it works now. Thanks! –Drilnoth (TC) 17:07, 12 April 2009 (UTC)[reply]

Greetings, I'm just trying to get a current feel for who is still active in the project and if anybody would object to cleaning out inactive users of the verified user list. Thank you for your time. Q T C 03:34, 20 May 2009 (UTC)[reply]

Well, I haven't really been very active on Wikipedia at all lately, so feel free to take me off the list. I can always ask to be put back if I ever decide to start doing proxy scanning again. (Perhaps it might be a good idea to add a new section to the list for inactive/former members? That way, the list could be kept up to date while still also providing historical information on who used to be active.) —Ilmari Karonen (talk) 17:52, 20 May 2009 (UTC)[reply]

Translation request[edit]

Hiya... digging through the list of names at Wikipedia:Translators available#Finnish-to-English and you're the first one who seems to be active so... <G>

Would it be possible for you to translate the short article at http://www.mtv3.fi/viihde/uutiset/muut.shtml/893031?swede_puma for me please? I have an editor who's trying to make some changes to Puma Swede's article using the Finnish language article as the basis and I want to make certain it says what he's purporting...

TIA! Tabercil (talk) 21:28, 5 June 2009 (UTC)[reply]

Here you go! It's a pretty quick and literal translation, but it should get the facts across. —Ilmari Karonen (talk) 22:01, 5 June 2009 (UTC)[reply]
The Minor Barnstar
For quick work on finding the correct photo for the above article. GeorgeLouis (talk) 06:45, 6 June 2009 (UTC)[reply]

User scripts[edit]

Thanks for making so many useful user scripts. —Preceding unsigned comment added by Syed Kazim (talkcontribs) 16:37, 2 July 2009 (UTC)[reply]

I really need the signcheck.js user script...;) --Syed Kazim | Talk 17:28, 2 July 2009 (UTC)[reply]
Nice to know it's useful. I just went and updated the script a bit: it should now work a little more reliably even on talk pages with funny titles and for users with a language other than English chosen in their preferences. —Ilmari Karonen (talk) 12:59, 3 July 2009 (UTC)[reply]



End of last archive; please add new topics below this note.


The "backwards" Fisher–Yates shuffle[edit]

Two years ago you laid out some plans in Talk:Fisher–Yates shuffle#Comments from Ilmari Karonen's talk page. Do you have access to The Stanford GraphBase? I am disappointed to see that on google books it is available only for snippet view, and I've not been able to come up with a search term to give me a relevant snippet. -- Kirk Hilliard (talk) 19:28, 27 July 2009 (UTC)[reply]

Thanks for reminding me about that. I just checked, and it turns out that the local university library does in fact have a copy, and it's even listed as available. I'll see if I can manage to pick it up later today. —Ilmari Karonen (talk) 11:45, 28 July 2009 (UTC)[reply]
Okay, I just picked up the book, and it turns out there's absolutely nothing of interest there. The only relevant thing on page 104 is the following piece of code, titled "Initialize mapping to a random permutation" and otherwise uncommented:
for (k = 0; k < n; k++) {
  j = gb_unif_rand(k + 1);
  mapping[k] = mapping[j];
  mapping[j] = k;
}
So, apparently, The Art of Computer Programming seems to be the best ref we're likely to get. :( —Ilmari Karonen (talk) 13:13, 28 July 2009 (UTC)[reply]

A discussion has arisen on whether there is a need to maintain both of these templates. As you were the contributor who had originally separated the two into different templates, I'm hoping you might be able to clarify the situation for us. Cheers, Postdlf (talk) 16:03, 4 October 2009 (UTC)[reply]

Help with family tree template[edit]

I created this family tree using your template but due to the width it stretches some screens. Anyway I can fix this proplem?-TriiipleThreat (talk) 00:10, 17 October 2009 (UTC)[reply]

I tried wrapping your tree in a <div style="overflow: auto"> block; does that help? --Ilmari Karonen (talk) 16:34, 17 October 2009 (UTC)[reply]


Orphaned non-free image (File:Kuseal.png)[edit]

⚠

Thanks for uploading File:Kuseal.png. The image description page currently specifies that the image is non-free and may only be used on Wikipedia under a claim of fair use. However, the image is currently orphaned, meaning that it is not used in any articles on Wikipedia. If the image was previously in an article, please go to the article and see why it was removed. You may add it back if you think that that will be useful. However, please note that images for which a replacement could be created are not acceptable for use on Wikipedia (see our policy for non-free media).

If you have uploaded other unlicensed media, please check whether they're used in any articles or not. You can find a list of "file" pages you have edited by clicking on the "my contributions" link (it is located at the very top of any Wikipedia page when you are logged in), and then selecting "File" from the dropdown box. Note that any non-free images not used in any articles will be deleted after seven days, as described on criteria for speedy deletion. Thank you. ZooFari 02:14, 18 November 2009 (UTC)[reply]

Proposal to make "Watchlist since" script into gadget[edit]

See WP:VPR#Minor watchlist innovation: 'changes since last page-load'. for a discussion on this. Thanks. Equazcion (talk) 20:01, 3 Feb 2010 (UTC)

The article Zelda Spellman has been proposed for deletion because of the following concern:

Fails Wikipedia's notability guidelines for fictional characters.

While all contributions to Wikipedia are appreciated, content or articles may be deleted for any of several reasons.

You may prevent the proposed deletion by removing the {{dated prod}} notice, but please explain why in your edit summary or on the article's talk page.

Please consider improving the article to address the issues raised. Removing {{dated prod}} will stop the proposed deletion process, but other deletion processes exist. The speedy deletion process can result in deletion without discussion, and articles for deletion allows discussion to reach consensus for deletion. Neelix (talk) 17:35, 27 March 2010 (UTC)[reply]

A Request for Help[edit]

Hi there Ilmari :), I noticed your username on Translators Available Finnish to English. I was wondering if you could help with updating Riaz Ahmed Gohar Shahi on the Finnish Wikipedia? Riaz Ahmed Gohar Shahi on the English Wikipedia has been majorly revamped- particularly, its being treated as a BLP now, since no ones been able to find evidence of his death. I don't really know much Finnish, so I'd really appreciate your help in this :), although I understand if you don't have the time. Thanks in advance! Omirocksthisworld(Drop a line) 07:01, 3 April 2010 (UTC)[reply]

File copyright problem with File:Principia Mathematica theorem 54-43.png[edit]

Thank you for uploading File:Principia Mathematica theorem 54-43.png. However, it currently is missing information on its copyright status. Wikipedia takes copyright very seriously. It may be deleted soon, unless we can determine the license and the source of the file. If you know this information, then you can add a copyright tag to the image description page.

If you have uploaded other files, consider checking that you have specified their license and tagged them, too. You can find a list of files you have created in your upload log.

If you have any questions, please feel free to ask them at the media copyright questions page. Thanks again for your cooperation. Sfan00 IMG (talk) 15:40, 5 May 2010 (UTC)[reply]

Tapaaminen[edit]

Hei. Huomasin että olet osallistunut keskusteluun sivulla Wikipedia:Meetup/Helsinki, joten uskon ettet koe tätä viestiä spämmiksi. Olen pohjustanut keskustelun uudestaan, ja minulla on ehdotettu tapaamispaikkakin mietittynä ihan uusiksi. Mikäli kiinnostusta vielä riittää näinkin pitkän ajan jälkeen, kannattaa käydä tutustumassa ehdotukseeni. -- Cimon Avaro; on a pogostick. (talk) 23:37, 13 May 2010 (UTC)[reply]

Thanks[edit]

For your solution here :) --Piotr Konieczny aka Prokonsul Piotrus| talk 17:34, 20 May 2010 (UTC)[reply]

Knight's tour animation[edit]

I liked your knight's tour animation so much that I nominated it as a Wikipedia featured picture: Wikipedia:Featured picture candidates/Knight's Tour. The nomination is pending, and some commenters are offering constructive criticism. Do you have any interest in changing the animation? Spikebrennan (talk) 15:25, 26 May 2010 (UTC)[reply]

Cool! You may be interested in submitting other animations as featured picture candidates. Spikebrennan (talk) 18:10, 26 May 2010 (UTC)[reply]
An image created by you has been promoted to featured picture status
Your image, File:Knight's tour anim 2.gif, was nominated on Wikipedia:Featured picture candidates, gained a consensus of support, and has been promoted. If you would like to nominate an image, please do so at Wikipedia:Featured picture candidates. Thank you for your contribution! Makeemlighter (talk) 01:52, 5 June 2010 (UTC)[reply]

Help for Translation[edit]

Hi Ilmari Karonen! We are looking for someone who could translate into Finnish (and possibly upload on Finnish WP) a page about an artistic movement founded in Italy in 2007: http://en.wikipedia.org/wiki/IMMAGINE%26POESIA

Could help us or suggest what to do ? Thanks for your help!--Aeron10 (talk) 16:47, 23 June 2010 (UTC)[reply]

A tag has been placed on File:Fetus.gif requesting that it be speedily deleted from Wikipedia. This has been done under section I2 of the criteria for speedy deletion, because it is an image page for a missing or corrupt image or an empty image description page for a Commons-hosted image.

If you think that this notice was placed here in error, you may contest the deletion by adding {{hangon}} to the top of the page that has been nominated for deletion (just below the existing speedy deletion or "db" tag - if no such tag exists then the page is no longer a speedy delete candidate and adding a hangon tag is unnecessary), coupled with adding a note on the talk page explaining your position, but be aware that once tagged for speedy deletion, if the page meets the criterion, it may be deleted without delay. Please do not remove the speedy deletion tag yourself, but don't hesitate to add information to the page that would render it more in conformance with Wikipedia's policies and guidelines. Mcmatter (talk) 03:17, 2 July 2010 (UTC)[reply]

Nomination for deletion of Template:Stars[edit]

Template:Stars has been nominated for deletion. You are invited to comment on the discussion at the template's entry on the Templates for discussion page. Thank you. —Justin (koavf)TCM☯ 15:40, 10 August 2010 (UTC)[reply]

If this is the first article that you have created, you may want to read the guide to writing your first article.

You may want to consider using the Article Wizard to help you create articles.

A tag has been placed on Esoterica requesting that it be speedily deleted from Wikipedia. This has been done under section A7 of the criteria for speedy deletion, because the article appears to be about a band or musician, but it does not indicate how or why the subject is important or significant: that is, why an article about that subject should be included in an encyclopedia. Under the criteria for speedy deletion, such articles may be deleted at any time. Please see the guidelines for what is generally accepted as notable.

If you think that this notice was placed here in error, you may contest the deletion by adding {{hang on}} to the top of the page that has been nominated for deletion (just below the existing speedy deletion, or "db", tag; if no such tag exists, then the page is no longer a speedy delete candidate and adding a hang-on tag is unnecessary), coupled with adding a note on the talk page explaining your position, but be aware that once tagged for speedy deletion, if the page meets the criterion, it may be deleted without delay. Please do not remove the speedy deletion tag yourself, but don't hesitate to add information to the page that would render it more in conformance with Wikipedia's policies and guidelines. If the page is deleted, you can contact one of these administrators to request that the administrator userfy the page or email a copy to you. WuhWuzDat 15:14, 6 December 2010 (UTC)[reply]

In search of Tom from London. — Preceding unsigned comment added by CatherineHeathcliff (talkcontribs) 10:57, 7 March 2011 (UTC)[reply]

File:CrabeaterSealSkullSchematic.png listed for deletion[edit]

A file that you uploaded or altered, File:CrabeaterSealSkullSchematic.png, has been listed at Wikipedia:Files for deletion. Please see the discussion to see why this is (you may have to search for the title of the image to find its entry), if you are interested in it not being deleted. Thank you. Kelly hi! 00:03, 3 June 2011 (UTC)[reply]

Proposed Image Deletion[edit]

A deletion discussion has just been created at Category talk:Unclassified Chemical Structures, which may involve one or more orphaned chemical structures, that has you user name in the upload history. Please feel free to add your comments.  Ronhjones  (Talk) 22:54, 10 June 2011 (UTC)[reply]

File:Ilmari Karonen's test image.svg listed for deletion[edit]

A file that you uploaded or altered, File:Ilmari Karonen's test image.svg, has been listed at Wikipedia:Files for deletion. Please see the discussion to see why this is (you may have to search for the title of the image to find its entry), if you are interested in it not being deleted. Thank you. Skier Dude (talk) 01:06, 11 June 2011 (UTC)[reply]

A kitten for you![edit]

A kitten just for you!

Znc11 (talk) 19:48, 28 July 2011 (UTC)[reply]

A barnstar for you![edit]

The Barnstar of Diligence
u r special!!!!!!!!!!!!! sreeja (talk) 14:32, 24 September 2011 (UTC)[reply]

talkback[edit]

Hello, Ilmari Karonen. You have new messages at User talk:Ilmari Karonen/First link.
You can remove this notice at any time by removing the {{Talkback}} or {{Tb}} template.

rollbacksummary.js[edit]

Hi Ilmari. I've been a happy user of your rollback summary script for a while, but recently (with the software update to 1,18?) it stopped working for me. Apparently the regexp

 var rollbackRe = new RegExp (
   "^(" + serverRe + ")?" + 
   scriptRe + 
   "\\?([^#]*&)?action=rollback(&|$)");

failed to match, although I can't figure out why myself. I've made a test version at User:Future Perfect at Sunrise/test.js with this regexp reduced to

 var rollbackRe = /\baction=rollback\b/;

and that works for me again. Fut.Perf. 08:47, 16 October 2011 (UTC)[reply]

Template:Non-free currency has been nominated for deletion. You are invited to comment on the discussion at the template's entry on the Templates for discussion page. MGA73 (talk) 10:47, 28 October 2011 (UTC)[reply]

MSU Interview[edit]

Dear Llmari Karonen,

My name is Jonathan Obar user:Jaobar, I'm a professor in the College of Communication Arts and Sciences at Michigan State University and a Teaching Fellow with the Wikimedia Foundation's Education Program. This semester I've been running a little experiment at MSU, a class where we teach students about becoming Wikipedia administrators. Not a lot is known about your community, and our students (who are fascinated by wiki-culture by the way!) want to learn how you do what you do, and why you do it. A while back I proposed this idea (the class) to the communityHERE, where it was met mainly with positive feedback. Anyhow, I'd like my students to speak with a few administrators to get a sense of admin experiences, training, motivations, likes, dislikes, etc. We were wondering if you'd be interested in speaking with one of our students.


So a few things about the interviews:

  • Interviews will last between 15 and 30 minutes.
  • Interviews can be conducted over skype (preferred), IRC or email. (You choose the form of communication based upon your comfort level, time, etc.)
  • All interviews will be completely anonymous, meaning that you (real name and/or pseudonym) will never be identified in any of our materials, unless you give the interviewer permission to do so.
  • All interviews will be completely voluntary. You are under no obligation to say yes to an interview, and can say no and stop or leave the interview at any time.
  • The entire interview process is being overseen by MSU's institutional review board (ethics review). This means that all questions have been approved by the university and all students have been trained how to conduct interviews ethically and properly.


Bottom line is that we really need your help, and would really appreciate the opportunity to speak with you. If interested, please send me an email at obar@msu.edu (to maintain anonymity) and I will add your name to my offline contact list. If you feel comfortable doing so, you can post your nameHERE instead.

If you have questions or concerns at any time, feel free to email me at obar@msu.edu. I will be more than happy to speak with you.

Thanks in advance for your help. We have a lot to learn from you.

Sincerely,

Jonathan Obar --Jaobar (talk) — Preceding unsigned comment added by Chlopeck (talkcontribs) 22:54, 15 February 2012 (UTC)[reply]

Invitation to events: bot, template, and Gadget makers wanted[edit]

I thought you might want to know about some upcoming events where you can learn more about MediaWiki customization and development, extending functionality with JavaScript, the future of ResourceLoader and Gadgets, the new Lua templating system, how to best use the web API for bots, and various upcoming features and changes. We'd love to have power users, bot maintainers and writers, and template makers at these events so we can all learn from each other and chat about what needs doing.

Check out the Chennai event in March, the Berlin hackathon in June, the developers' days preceding Wikimania in July in Washington, DC, or any other of our events.

Best wishes! - Sumana Harihareswara, Wikimedia Foundation's Volunteer Development Coordinator. Please reply on my talk page, here or at mediawiki.org. Sumanah (talk) 17:06, 16 February 2012 (UTC)[reply]

It would be great to have you at the Berlin hackathon in June. Registration is now open. Sumana Harihareswara, Wikimedia Foundation Volunteer Development Coordinator 14:15, 2 April 2012 (UTC)[reply]

;;;;;;[edit]

very nice picture

Jintucool (talk) 15:44, 29 February 2012 (UTC)[reply]

Documentation for gadget authors[edit]

I saw you had done some work on gadgets. We're trying to start a library for gadget authors to use. Please check it out and post any questions or comments there — MarkAHershberger(talk) 19:12, 14 March 2012 (UTC)[reply]

--asten (talk) 17:14, 19 April 2012 (UTC) hi please talk to me you sound realy nice[reply]

User script list deprecation[edit]

Wikipedia's list of user scripts is in bad shape, in that it is disorganized and contains many non-working, unmaintained, or thoroughly obsolete entries. Cleanup has been on the to-do list since 2007, but little progress has been made. Instead, the whole list is now set to be deprecated on 1 May 2012, to be replaced with a new list. This draft list has been up for about a month, and in that time I've been soliciting script users and authors to come add scripts they know to be working and relevant.

If you know of scripts that you would like to survive this deprecation (and are confirmed working and relevant), you're welcome to add them to the new list. Note that the old list will be retained and linked from the main list, so there is no real deadline. Thanks for your help. Equazcion (talk) 00:56, 22 Apr 2012 (UTC)

File:Warrior.jpg listed for deletion[edit]

A file that you uploaded or altered, File:Warrior.jpg, has been listed at Wikipedia:Files for deletion. Please see the discussion to see why this is (you may have to search for the title of the image to find its entry), if you are interested in it not being deleted. Thank you. Stefan2 (talk) 20:13, 24 April 2012 (UTC)[reply]

File:Ambox breakage screenshot Ilmari Karonen.png listed for deletion[edit]

A file that you uploaded or altered, File:Ambox breakage screenshot Ilmari Karonen.png, has been listed at Wikipedia:Files for deletion. Please see the discussion to see why this is (you may have to search for the title of the image to find its entry), if you are interested in it not being deleted. Thank you. Cloudbound (talk) 19:00, 6 May 2012 (UTC)[reply]

The Duchess of Windsor[edit]

Hi Ilmari Karonen! I'm here to ask for help from you. I think you can help me by adding the name of The Duchess of Windsor the wife of Edward VIII to British Royal Family#Family tree of members. I know you can do it so please help me, because I can't do it. Also many other users can't do it too. I am waiting for your help. Keivan.fTalk 16:36, 29 May 2012 (UTC)[reply]

A kitten for you![edit]

they are just so cutie

mbraizer (talk) 20:09, 18 June 2012 (UTC)[reply]

A kitten for you![edit]

i love it it is so cutie wanna chat if do can you see if you can send me a messige

mbraizer (talk) 20:11, 18 June 2012 (UTC)[reply]

A barnstar for you![edit]

The Original Barnstar
nadeem.mobil.00966580089385

i love you . nb no Nadeem.00966580089385 (talk) 13:37, 24 October 2012 (UTC)[reply]

Restricted-use media list[edit]

An RfC that may interest you has been opened at MediaWiki talk:Bad image list#Restricted-use media list, so please come and include your opinion. – PAINE ELLSWORTH CLIMAX! 10:12, 19 March 2013 (UTC)[reply]

File:Klein 4-Group Graph.png listed for deletion[edit]

A file that you uploaded or altered, File:Klein 4-Group Graph.png, has been listed at Wikipedia:Files for deletion. Please see the discussion to see why it has been listed (you may have to search for the title of the image to find its entry). Feel free to add your opinion on the matter below the nomination. Thank you. Sfan00 IMG (talk) 08:02, 3 August 2013 (UTC)[reply]

Edittools help on Commons?[edit]

Hi Ilmari- You were a big help to me a few years ago when I was trying to customize my edittools. Now I'm back to pester you with a question, if you don't mind. I just tried to add a tool in Commons by creating a custom JavaScript page there by mimicking the code from my page here on en.wp. But I don't have to swim out far to be over my head, and I can't get the tool to appear. Would you have any pointers? Kiitos in advance. Eric talk 16:57, 18 November 2013 (UTC)[reply]

Hi again Ilmari- Unrelated edittools post from me here on Village pump technical in case you're interested. Eric talk 13:58, 4 December 2013 (UTC)[reply]

Dive[edit]

Dive Deep
The deep blue wonders Surfinginthewaves (talk) 20:52, 18 January 2014 (UTC)[reply]

Category:Images affected by the September 2008 image loss bug[edit]

Category:Images affected by the September 2008 image loss bug, which you created, has been nominated for possible deletion, merging, or renaming. If you would like to participate in the discussion, you are invited to add your comments at the category's entry on the Categories for discussion page. Thank you. DexDor (talk) 20:55, 28 February 2014 (UTC)[reply]

Your admin status[edit]

Hello. I'm a steward. A new policy regarding the removal of "advanced rights" (administrator, bureaucrat, etc.) was adopted by community consensus recently. According to this policy, the stewards are reviewing administrators' activity on wikis with no inactivity policy.

You meet the inactivity criteria (no edits and no log actions for 2 years) on yiwiktionary, where you are an administrator. Since yiwiktionary does not have its own administrators' rights review process, the global one applies.

If you want to keep your rights, you should inform the community of the wiki about the fact that the stewards have sent you this information about your inactivity. If the community has a discussion about it and then wants you to keep your rights, please contact the stewards at m:Stewards' noticeboard, and link to the discussion of the local community, where they express their wish to continue to maintain the rights, and demonstrate a continued requirement to maintain these rights.

We stewards will evaluate the responses. If there is no response at all after approximately one month, we will proceed to remove your administrative rights. In cases of doubt, we will evaluate the responses and will refer a decision back to the local community for their comment and review. If you have any questions, please contact us on m:Stewards' noticeboard.

Best regards, Rschen7754 05:16, 10 March 2014 (UTC)[reply]

Translation help![edit]

I'm looking for help translating the history section of https://fi.wikipedia.org/wiki/Oulunkyl%C3%A4n_rautatieasema. I've gotten from Google Translate that the place has been a railway station since 1873. And it was on the east side of the track. I can't understand what happened in 1881 and 1907. Then it says that the current station was built in 1922, from wood.

Can you please help translate the missing sections, I want to add to the article in English. Thanks Oaktree b (talk) 22:51, 10 May 2014 (UTC)[reply]

Savage Garden Album2 listed at Redirects for discussion[edit]

An editor has asked for a discussion to address the redirect Savage Garden Album2. Since you had some involvement with the Savage Garden Album2 redirect, you might want to participate in the redirect discussion if you have not already done so. Jinkinson talk to me 04:18, 16 May 2014 (UTC)[reply]

Request for comment[edit]

Hello there, a proposal regarding pre-adminship review has been raised at Village pump by Anna Frodesiak. Your comments here is very much appreciated. Many thanks. Jim Carter through MediaWiki message delivery (talk) 06:47, 28 May 2014 (UTC)[reply]

Perl Script: Getting to Philosophy[edit]

Hi, I found your userpage on the analysis of Getting to Philosophy and I'd be interested to see the current state of affairs (and possibly to modify the script to analyse which node of the central loop pages come in on). Are you willing to share the source code? SPACKlick (talk) 14:12, 12 August 2014 (UTC)[reply]

UPDATE: fixconverttosvg.js[edit]

Greetings Ilmari,

you helped me in the past. I've now made a main update of my fork. I'll use also Ajax (next version). What do you think? :-) Best regardsUser: Perhelion16:37, 24 August 2014 (UTC)[reply]

User:Ilmari Karonen/First link, a page you substantially contributed to, has been nominated for deletion. Your opinions on the matter are welcome; please participate in the discussion by adding your comments at Wikipedia:Miscellany for deletion/User:Ilmari Karonen/First link and please be sure to sign your comments with four tildes (~~~~). You are free to edit the content of User:Ilmari Karonen/First link during the discussion but should not remove the miscellany for deletion template from the top of the page; such a removal will not end the deletion discussion. Thank you. Ten Pound Hammer(What did I screw up now?) 02:43, 9 September 2014 (UTC)[reply]

Edittools on Commons[edit]

Terve, Ilmari- In case wp doesn't notify you of new messages on archived talkpages: User_talk:Ilmari_Karonen/archives/14#Customizing_monobook.js. Eric talk 20:21, 20 January 2015 (UTC)[reply]

Some baklava for you![edit]

I LIKE FODD Waleed AD 21:06, 26 February 2015 (UTC)

Updated scripts[edit]

Hi Ilmari Karonen. I edited your ifdthumbnails.js to remove the obsolete ajax framework, and adjusted it to use jQuery instead. Let me know if anything breaks. :) —Pathoschild 02:50, 17 August 2015 (UTC)

Category:Images replacing placeholders[edit]

Category:Images replacing placeholders, which you created, has been nominated for possible deletion, merging, or renaming. If you would like to participate in the discussion, you are invited to add your comments at the category's entry on the Categories for discussion page. Thank you. DexDor (talk) 20:09, 1 September 2015 (UTC)[reply]

Article upgrade assistance request (Pre-translation stage)[edit]

Seasons Greetings,

This is in reference to a relatively new umbrella article on en-wikipedia named Ceremonial pole. Ceremonial pole is a human tradition since ancient times; either existed in past at some point of time, or still exists in some cultures across global continents from north to south & from east to west. Ceremonial poles are used to symbolize a variety of concepts in several different world cultures.

Through article Ceremonial pole we intend to take encyclopedic note of cultural aspects and festive celebrations around Ceremonial pole as an umbrella article and want to have historical, mythological, anthropological aspects, reverence or worships wherever concerned as a small part.

While Ceremonial poles have a long past and strong presence but usually less discussed subject. Even before we seek translation of this article in global languages, we need to have more encyclopedic information/input about Ceremonial poles from all global cultures and languages. And we seek your assistance in the same.

Since other contributors to the article are insisting for reliable sources and Standard native english; If your contributions get deleted (for some reason like linguistics or may be your information is reliable but unfortunately dosent match expectations of other editors) , please do list the same on Talk:Ceremonial pole page so that other wikipedians may help improve by interlanguage collaborations, and/or some other language wikipedias may be interested in giving more importance to reliablity of information over other factors on their respective wikipedia.

This particular request is being made to you since your user name is listed in Wikipedia:Translators available list.

Thanking you with warm regards Mahitgar (talk) 05:35, 24 October 2015 (UTC)[reply]

Hi,
You appear to be eligible to vote in the current Arbitration Committee election. The Arbitration Committee is the panel of editors responsible for conducting the Wikipedia arbitration process. It has the authority to enact binding solutions for disputes between editors, primarily related to serious behavioural issues that the community has been unable to resolve. This includes the ability to impose site bans, topic bans, editing restrictions, and other measures needed to maintain our editing environment. The arbitration policy describes the Committee's roles and responsibilities in greater detail. If you wish to participate, you are welcome to review the candidates' statements and submit your choices on the voting page. For the Election committee, MediaWiki message delivery (talk) 13:09, 23 November 2015 (UTC)[reply]

Hi,
You appear to be eligible to vote in the current Arbitration Committee election. The Arbitration Committee is the panel of editors responsible for conducting the Wikipedia arbitration process. It has the authority to enact binding solutions for disputes between editors, primarily related to serious behavioural issues that the community has been unable to resolve. This includes the ability to impose site bans, topic bans, editing restrictions, and other measures needed to maintain our editing environment. The arbitration policy describes the Committee's roles and responsibilities in greater detail. If you wish to participate, you are welcome to review the candidates' statements and submit your choices on the voting page. For the Election committee, MediaWiki message delivery (talk) 13:33, 23 November 2015 (UTC)[reply]

Wishing a picture[edit]

Hello Ilmari, while trying to find a picture for the article de:Schreitharvester I was using this tool to find somebody living close to fi:Lusto (museo), because they seem to have such machine there. Unfortunately the two users above you don't seem to be active anymore. Therefor I'm curious if you might know somebody (e.g. from fi.wp) that might be interested in visiting the museum and taking a picture of the thing. Additionally I'm curious if there is any photographers list on fi.wp which I could connect to my tool? Thanks in advance and best regards from the Black Forest, --Flominator (talk) 20:11, 12 March 2016 (UTC)[reply]

Other edits requested changes to your page, as they have been importing it and found it useful. Feel free to revert this, since it is in your userspace! — xaosflux Talk 15:17, 13 March 2016 (UTC)[reply]

Old script[edit]

Hi. I was wondering if you could possibly take the time to do a WP:NULLEDIT on User:Vyznev Xnebara/taglostimages.js? At the moment it's stuck in the deleted Category:Images_affected_by_the_September_2008_image_loss_bug because it transcludes a template that puts it in that category (even though it's not an image...). I've changed the underlying template to use a category that actually exists, but it just needs the null edit to make that change stick. Or you can always just delete the script. <g> I ask because I'm trying to clean out Wikipedia:Database reports/Red-linked categories with incoming links and this category is one of the ones stopping me doing that. Thanks. Le Deluge (talk) 15:55, 21 March 2016 (UTC)[reply]

Thanks for the heads-up. The category should be empty now. --Ilmari Karonen (talk) 20:33, 22 March 2016 (UTC)[reply]

Wikipedia:Ц listed at Redirects for discussion[edit]

An editor has asked for a discussion to address the redirect Wikipedia:Ц. Since you had some involvement with the Wikipedia:Ц redirect, you might want to participate in the redirect discussion if you have not already done so. — Godsy (TALKCONT) 11:30, 3 October 2016 (UTC)[reply]

Orphaned non-free image File:Kansas State University seal.png[edit]

⚠

Thanks for uploading File:Kansas State University seal.png. The image description page currently specifies that the image is non-free and may only be used on Wikipedia under a claim of fair use. However, the image is currently not used in any articles on Wikipedia. If the image was previously in an article, please go to the article and see why it was removed. You may add it back if you think that that will be useful. However, please note that images for which a replacement could be created are not acceptable for use on Wikipedia (see our policy for non-free media).

Note that any non-free images not used in any articles will be deleted after seven days, as described in the criteria for speedy deletion. Thank you. Corkythehornetfan (ping me) 22:07, 15 November 2016 (UTC)[reply]

ArbCom Elections 2016: Voting now open![edit]

Hello, Ilmari Karonen. Voting in the 2016 Arbitration Committee elections is open from Monday, 00:00, 21 November through Sunday, 23:59, 4 December to all unblocked users who have registered an account before Wednesday, 00:00, 28 October 2016 and have made at least 150 mainspace edits before Sunday, 00:00, 1 November 2016.

The Arbitration Committee is the panel of editors responsible for conducting the Wikipedia arbitration process. It has the authority to impose binding solutions to disputes between editors, primarily for serious conduct disputes the community has been unable to resolve. This includes the authority to impose site bans, topic bans, editing restrictions, and other measures needed to maintain our editing environment. The arbitration policy describes the Committee's roles and responsibilities in greater detail.

If you wish to participate in the 2016 election, please review the candidates' statements and submit your choices on the voting page. MediaWiki message delivery (talk) 22:08, 21 November 2016 (UTC)[reply]

A barnstar for you![edit]

The Original Barnstar
hii aravindh 15:20, 22 February 2017 (UTC)

Nomination for merging of Template:Ahnentafel4[edit]

Template:Ahnentafel4 has been nominated for merging with Template:Ahnentafel-compact4. You are invited to comment on the discussion at the template's entry on the Templates for discussion page. Thank you.

Nomination for merging of Template:Ahnentafel5[edit]

Template:Ahnentafel5 has been nominated for merging with Template:Ahnentafel-compact5. You are invited to comment on the discussion at the template's entry on the Templates for discussion page. Thank you.

Nomination for merging of Template:Ahnentafel6[edit]

Template:Ahnentafel6 has been nominated for merging with Template:Ahnentafel-compact6. You are invited to comment on the discussion at the template's entry on the Templates for discussion page. Thank you.

Orphaned non-free image File:BluePeterBadge.jpg[edit]

⚠

Thanks for uploading File:BluePeterBadge.jpg. The image description page currently specifies that the image is non-free and may only be used on Wikipedia under a claim of fair use. However, the image is currently not used in any articles on Wikipedia. If the image was previously in an article, please go to the article and see why it was removed. You may add it back if you think that that will be useful. However, please note that images for which a replacement could be created are not acceptable for use on Wikipedia (see our policy for non-free media).

Note that any non-free images not used in any articles will be deleted after seven days, as described in section F5 of the criteria for speedy deletion. Thank you. --B-bot (talk) 18:06, 18 November 2017 (UTC)[reply]

ArbCom 2017 election voter message[edit]

Hello, Ilmari Karonen. Voting in the 2017 Arbitration Committee elections is now open until 23.59 on Sunday, 10 December. All users who registered an account before Saturday, 28 October 2017, made at least 150 mainspace edits before Wednesday, 1 November 2017 and are not currently blocked are eligible to vote. Users with alternate accounts may only vote once.

The Arbitration Committee is the panel of editors responsible for conducting the Wikipedia arbitration process. It has the authority to impose binding solutions to disputes between editors, primarily for serious conduct disputes the community has been unable to resolve. This includes the authority to impose site bans, topic bans, editing restrictions, and other measures needed to maintain our editing environment. The arbitration policy describes the Committee's roles and responsibilities in greater detail.

If you wish to participate in the 2017 election, please review the candidates and submit your choices on the voting page. MediaWiki message delivery (talk) 18:42, 3 December 2017 (UTC)[reply]

Nomination for merging of Template:Ahnentafel-compact4[edit]

Template:Ahnentafel-compact4 has been nominated for merging with Template:Ahnentafel-compact5. You are invited to comment on the discussion at the template's entry on the Templates for discussion page. Thank you.

Nomination for merging of Template:Ahnentafel-compact6[edit]

Template:Ahnentafel-compact6 has been nominated for merging with Template:Ahnentafel-compact5. You are invited to comment on the discussion at the template's entry on the Templates for discussion page. Thank you.

Nomination for merging of Template:Ahnentafel-compact4[edit]

Template:Ahnentafel-compact4 has been nominated for merging with Template:Ahnentafel-compact5. You are invited to comment on the discussion at the template's entry on the Templates for discussion page. Thank you.

You've got mail[edit]

Hello, Ilmari Karonen. Please check your email; you've got mail!
It may take a few minutes from the time the email is sent for it to show up in your inbox. You can remove this notice at any time by removing the {{You've got mail}} or {{ygm}} template.BridgeScript (talk) 10:08, 18 June 2018 (UTC)[reply]

ArbCom 2018 election voter message[edit]

Hello, Ilmari Karonen. Voting in the 2018 Arbitration Committee elections is now open until 23.59 on Sunday, 3 December. All users who registered an account before Sunday, 28 October 2018, made at least 150 mainspace edits before Thursday, 1 November 2018 and are not currently blocked are eligible to vote. Users with alternate accounts may only vote once.

The Arbitration Committee is the panel of editors responsible for conducting the Wikipedia arbitration process. It has the authority to impose binding solutions to disputes between editors, primarily for serious conduct disputes the community has been unable to resolve. This includes the authority to impose site bans, topic bans, editing restrictions, and other measures needed to maintain our editing environment. The arbitration policy describes the Committee's roles and responsibilities in greater detail.

If you wish to participate in the 2018 election, please review the candidates and submit your choices on the voting page. MediaWiki message delivery (talk) 18:42, 19 November 2018 (UTC)[reply]

Nomination for deletion of Template:September 2008 image loss[edit]

Template:September 2008 image loss has been nominated for deletion. You are invited to comment on the discussion at the template's entry on the Templates for discussion page. Gonnym (talk) 00:43, 17 February 2019 (UTC)[reply]

Notice

The file File:Stars0of5.png has been proposed for deletion because of the following concern:

unused, low-res, no obvious use

While all constructive contributions to Wikipedia are appreciated, pages may be deleted for any of several reasons.

You may prevent the proposed deletion by removing the {{proposed deletion/dated files}} notice, but please explain why in your edit summary or on the file's talk page.

Please consider addressing the issues raised. Removing {{proposed deletion/dated files}} will stop the proposed deletion process, but other deletion processes exist. In particular, the speedy deletion process can result in deletion without discussion, and files for discussion allows discussion to reach consensus for deletion.

This bot DID NOT nominate any file(s) for deletion; please refer to the page history of each individual file for details. Thanks, FastilyBot (talk) 01:01, 9 May 2019 (UTC)[reply]

Notice

The file File:Stars0.5of5.png has been proposed for deletion because of the following concern:

unused, low-res, no obvious use

While all constructive contributions to Wikipedia are appreciated, pages may be deleted for any of several reasons.

You may prevent the proposed deletion by removing the {{proposed deletion/dated files}} notice, but please explain why in your edit summary or on the file's talk page.

Please consider addressing the issues raised. Removing {{proposed deletion/dated files}} will stop the proposed deletion process, but other deletion processes exist. In particular, the speedy deletion process can result in deletion without discussion, and files for discussion allows discussion to reach consensus for deletion.

This bot DID NOT nominate any file(s) for deletion; please refer to the page history of each individual file for details. Thanks, FastilyBot (talk) 01:01, 26 August 2019 (UTC)[reply]

Nomination for merging of Template:Family tree[edit]

Template:Family tree has been nominated for merging with Template:Tree chart. You are invited to comment on the discussion at the template's entry on the Templates for discussion page. Thank you. PPEMES (talk) 17:53, 22 March 2020 (UTC)[reply]

Guideline on Medical Advice[edit]

You have been a significant contributor to Wikipedia:Reference desk/Guidelines/Medical advice. On 9 April 2020 a User took action to demote that document from a guideline to an essay. See the diff. The matter is now under discussion at Wikipedia talk:Reference desk/Guidelines/Medical advice#Marked as a guideline page. You may wish to contribute to the discussion. Dolphin (t) 13:07, 10 August 2020 (UTC)[reply]

Notice

The file File:Db-meta font size comparison Ilmari Karonen.png has been proposed for deletion because of the following concern:

Orphaned file with no obvious value in transferring to Commons

While all constructive contributions to Wikipedia are appreciated, pages may be deleted for any of several reasons.

You may prevent the proposed deletion by removing the {{proposed deletion/dated files}} notice, but please explain why in your edit summary or on the file's talk page.

Please consider addressing the issues raised. Removing {{proposed deletion/dated files}} will stop the proposed deletion process, but other deletion processes exist. In particular, the speedy deletion process can result in deletion without discussion, and files for discussion allows discussion to reach consensus for deletion. Salavat (talk) 03:32, 18 October 2020 (UTC)[reply]

ArbCom 2020 Elections voter message[edit]

Hello! Voting in the 2020 Arbitration Committee elections is now open until 23:59 (UTC) on Monday, 7 December 2020. All eligible users are allowed to vote. Users with alternate accounts may only vote once.

The Arbitration Committee is the panel of editors responsible for conducting the Wikipedia arbitration process. It has the authority to impose binding solutions to disputes between editors, primarily for serious conduct disputes the community has been unable to resolve. This includes the authority to impose site bans, topic bans, editing restrictions, and other measures needed to maintain our editing environment. The arbitration policy describes the Committee's roles and responsibilities in greater detail.

If you wish to participate in the 2020 election, please review the candidates and submit your choices on the voting page. If you no longer wish to receive these messages, you may add {{NoACEMM}} to your user talk page. MediaWiki message delivery (talk) 01:18, 24 November 2020 (UTC)[reply]

A kitten for you![edit]

love it Japhael Abraham is good person and mind safe look for good

JaphaelAbraham (talk) 17:43, 26 January 2021 (UTC)[reply]

Minecraft[edit]

Minecraft
ngf Gallmon (talk) 01:14, 1 February 2021 (UTC)[reply]

Trouted[edit]

Whack!

You've been whacked with a wet trout.

Don't take this too seriously. Someone just wants to let you know that you did something silly.

You have been trouted for: YOUR REASON HERE 31.167.41.164 (talk) 05:57, 16 March 2021 (UTC)[reply]

"Medieval(álbum)" listed at Redirects for discussion[edit]

A discussion is taking place to address the redirect Medieval(álbum). The discussion will occur at Wikipedia:Redirects for discussion/Log/2021 April 14#Medieval(álbum) until a consensus is reached, and anyone, including you, is welcome to contribute to the discussion. Regards, SONIC678 01:00, 14 April 2021 (UTC)[reply]

Category:Wikipedia bots running on the Wikimedia Toolserver has been nominated for possible deletion, merging, or renaming. A discussion is taking place to decide whether this proposal complies with the categorization guidelines. If you would like to participate in the discussion, you are invited to add your comments at the category's entry on the categories for discussion page. Thank you. * Pppery * it has begun... 04:50, 1 January 2022 (UTC)[reply]

Orphaned non-free image File:Thich Quang Duc.png[edit]

⚠

Thanks for uploading File:Thich Quang Duc.png. The image description page currently specifies that the image is non-free and may only be used on Wikipedia under a claim of fair use. However, the image is currently not used in any articles on Wikipedia. If the image was previously in an article, please go to the article and see why it was removed. You may add it back if you think that that will be useful. However, please note that images for which a replacement could be created are not acceptable for use on Wikipedia (see our policy for non-free media).

Note that any non-free images not used in any articles will be deleted after seven days, as described in section F5 of the criteria for speedy deletion. Thank you. --B-bot (talk) 18:44, 25 January 2022 (UTC)[reply]

"Hölder conjugates" listed at Redirects for discussion[edit]

An editor has identified a potential problem with the redirect Hölder conjugates and has thus listed it for discussion. This discussion will occur at Wikipedia:Redirects for discussion/Log/2022 May 11#Hölder conjugates until a consensus is reached, and anyone, including you, is welcome to contribute to the discussion. 1234qwer1234qwer4 16:14, 11 May 2022 (UTC)[reply]

Notice

The article Wolfram code has been proposed for deletion because of the following concern:

This article relies on primary sources, and the significance of the subject is unclear.

While all constructive contributions to Wikipedia are appreciated, pages may be deleted for any of several reasons.

You may prevent the proposed deletion by removing the {{proposed deletion/dated}} notice, but please explain why in your edit summary or on the article's talk page.

Please consider improving the page to address the issues raised. Removing {{proposed deletion/dated}} will stop the proposed deletion process, but other deletion processes exist. In particular, the speedy deletion process can result in deletion without discussion, and articles for deletion allows discussion to reach consensus for deletion.

This bot DID NOT nominate any of your contributions for deletion; please refer to the history of each individual page for details. Thanks, FastilyBot (talk) 09:00, 18 October 2022 (UTC)[reply]

Nomination for deletion of Template:Singtel[edit]

Template:Singtel has been nominated for deletion. You are invited to comment on the discussion at the entry on the Templates for discussion page. ಮಲ್ನಾಡಾಚ್ ಕೊಂಕ್ಣೊ (talk) 11:06, 30 November 2022 (UTC)[reply]

June 2023[edit]

Hello! I just wanted to request that you archive your user talk page. While it may not be bothersome to you, many editors have slow connections, and having a very large talk page can hamper communication. If you need help, just check out the guide over at Help:Archiving a talk page. Thanks! TheCorvetteZR1(The Garage) 21:32, 1 June 2023 (UTC)[reply]