User talk:Oleg Alexandrov/Archive14

Latest comment: 5 months ago by MediaWiki message delivery in topic ArbCom 2023 Elections voter message

Mathbot and disambiguation pages edit

Hi, I've noticed that Mathbot adds pages to the "List of mathematics articles ..." articles based on transclusion of the {{mathdab}} template. Problem is, that leads to these articles having links to disambiguation pages. For instance, List of mathematics articles (S) links to no less than 41 disambig pages, as you can see here. This is a problem for the WP:DPL project; not only does it give us false positives for which articles need fixing, but eventually we want to use a bot to tag articles with excessive number of dablinks (the {{dablinks}} template that was on the article a few days ago); this would lead to a once-a-day edit war as one bot adds the tag and the other removes it.

Since all of these dablinks are intentional, there's an easy solution: WP:INTDABLINK. It's a convention we use to identify dablinks that don't need "fixing", and our Toolserver scripts are instructed to ignore links with the INTDABLINK format.

For instance, say you have a link to [[Secant]]. To mark it as intentional, pipe it through the (disambiguation) redirect: [[Secant (disambiguation)|Secant]].

The logic is, if you're linking directly to a (disambiguation) page, it must be intentional. (For instance, the {{otheruses}} template.) So we tell our reports - the same ones that will eventually be used by the bot - to ignore links like this. This works even when you link to a redirect with (disambiguation) in its title.

Do you think you could modify your bot to use this syntax when you get articles that transclude the {{mathdab}} template? Thanks, --JaGatalk 03:33, 14 January 2011 (UTC)Reply

I don't think that would work. I routinely use this page to do joins in the toolserver database: the canonical way to get a list of all mathematics pages is to make a list of pages linked directly from one of the subpages of list of mathematics articles. If we changed so that it doesn't link to the dab pages, then those dab pages won't show up in our lists based on pagelinks.
I appreciate the maintenance script problem, but it would probably be simpler to just tell the tool that lists pages with too many dablinks to skip the lists of mathematics articles, since we know they will have lots of dablinks. — Carl (CBM · talk) 03:14, 15 January 2011 (UTC)Reply
It would still link to the dab page; Secant (disambiguation) redirects to the dab page. --JaGatalk 03:27, 15 January 2011 (UTC)Reply
So... any decisions made about this? --JaGatalk 04:59, 5 February 2011 (UTC)Reply
It won't work to link to a redirect instead of linking to the page itself, because that will not put the correct entry into the pagelinks table in the mediawiki database. The actual target of the link matters here, not just the eventual destination you would get to by clicking on the link. The best solution is to have the maintenance script skip any page whose title starts with "List of mathematics articles". These pages are intended to link to dab pages if the dab pages are in the scope of the math project. — Carl (CBM · talk) 14:37, 5 February 2011 (UTC)Reply
I'm not going to hard-code article titles into the scripts, for obvious maintenance reasons. I've got a Toolserver account myself. Could you let me know more about what you're doing? I could probably write a solution for you. BTW, why are you answering instead of Oleg? --JaGatalk 17:37, 5 February 2011 (UTC)Reply
I help maintain the bot that updates the list of math articles. It runs from the 'wpmath' multi-mainatainter project on toolserver. Oleg is not as active anymore, although it's usually possible to get him by email. So it's faster for me to respond.
The bot goes through a list of mathematics categories and makes a list of all articles in those categories. The list is useful for people who want to browse through math articles, and also useful for maintenance.
In its maintenance capacity, I use queries something like this, which makes a list of all math articles that have prod tags on them:
select art.page_title
from page as art 
join categorylinks on art.page_id = cl_from 
join pagelinks on pl_title = art.page_title  and art.page_namespace = 0
and pl_namespace = 0 
join page as src on src.page_id = pl_from 
where src.page_namespace = 0 
and src.page_title regexp '^List_of_mathematics_articles' 
and cl_to = 'All_articles_proposed_for_deletion'
order by art.page_len asc;
If the list of math articles linked to a redirect instead of linking directly to the article, this query would fail to find those articles, because the necessary entries in the pagelinks table for the third join wouldn't be there.
I use similar queries for many other things, for example to make a list of all non-free images on math articles. The key point is that if you join the pagelinks table against all the subpages of List of mathematics articles, you get a complete list of mathematics articles that can itself be joined with other tables in the database.
This is an example of a time when it is perfectly correct to link to the dab pages, because we want the links to the dab pages to be in the pagelinks table.
I don't see it as worth a significant amount of effort to completely redesign our system simply to avoid linking to dab pages. It's trivial to just skip the lists of math articles in a dab-fixing tool. Or not; if someone changes them accidentally, the math bot will fix it the next time it runs, no real harm done. — Carl (CBM · talk) 12:56, 6 February 2011 (UTC)Reply

(Sorry for the long absence.) I started looking at the data today, and noticed there are already many redirects on these pages. For instance, List of mathematics articles (M) has 39 redirects that I can see (for instance, Mann's theorem and Metra Potential Method). I'm still going to take a stab at the query, I just wanted to let you know it would be an improvement beyond its usefulness to the WP:DPL project, since there are already redirects on these pages that are slipping through your queries. --JaGatalk 20:37, 18 April 2011 (UTC)Reply

OK, here's the new query:

SELECT art.page_title AS title,
       art.page_len AS len
FROM page AS art
JOIN categorylinks ON art.page_id = cl_from 
JOIN pagelinks ON pl_title = art.page_title
AND art.page_namespace = 0
AND art.page_is_redirect = 0
AND pl_namespace = 0 
JOIN page AS src ON src.page_id = pl_from 
AND src.page_namespace = 0 
AND src.page_title REGEXP '^List_of_mathematics_articles' 
AND cl_to = 'All_articles_proposed_for_deletion'

UNION

SELECT art.page_title AS title,
       art.page_len AS len
FROM page AS art
JOIN categorylinks ON art.page_id = cl_from 
JOIN redirect AS red ON art.page_title = red.rd_title
AND art.page_namespace = 0
JOIN page AS r ON r.page_id = red.rd_from
AND red.rd_namespace = 0
JOIN pagelinks ON pl_title = r.page_title
AND r.page_namespace = 0
AND r.page_is_redirect = 1
AND pl_namespace = 0 
JOIN page AS src ON src.page_id = pl_from 
AND src.page_namespace = 0
AND src.page_title REGEXP '^List_of_mathematics_articles' 
AND cl_to = 'All_articles_proposed_for_deletion'

GROUP BY title
ORDER BY len ASC;

It looks like a lot of changes, but there's really little to it. I'd be happy to rewrite all your queries if that would help. Also, I'd recommend you use queries like this regardless of whether you decide to support WP:INTDABLINK or not; as it stands, the many redirects already on the bot-maintained pages slip through the original query. --JaGatalk 06:51, 20 April 2011 (UTC)Reply

The reason that redirects such as Mann's theorem are on the list is because the redirect pages themselves are categorized; see [1]. Provided that each page is categorized correctly, the redirects that appear on the list are exactly the redirects that should be there. On the other hand, redirects that are not categorized won't be added to the list by the bot. — Carl (CBM · talk) 11:25, 8 May 2011 (UTC)Reply

The Signpost interview edit

Mathbot and Wikipedia:Articles for deletion/Old edit

I just had to revert mathbot's last edit to this page because it showed no open AFDs which is incorrect. It probably has something to do with the recent upgrades. --Ron Ritzman (talk) 14:30, 16 February 2011 (UTC)Reply

I'll take a look soon. Oleg Alexandrov (talk) 17:32, 16 February 2011 (UTC)Reply
Uh, the html code of the AFD page changed dramatically. This won't be a simple fix. It may take a few days for me to fix it. Mathbot (talk) 04:41, 18 February 2011 (UTC)Reply
I think I fixed the bot. It was a somewhat big change, so there is some likelihood that I may have missed something. If you notice something odd then please let me know.
Thank you for acting as mathbot in the meantime, that was a lot of counting to do. :) Oleg Alexandrov (talk) 04:43, 22 February 2011 (UTC)Reply

On an unrelated note, the bot is listing arbitrary breaks in AfDs as separate open AfDs. Any way to prevent that from happening? Logan Talk Contributions 00:16, 1 March 2011 (UTC)Reply

Thanks. I fixed this. Oleg Alexandrov (talk) 18:06, 1 March 2011 (UTC)Reply

Would you take a look at Beeblebrox (talk · contribs)'s concern at Wikipedia talk:Articles for deletion/Old#I don't like the new interface? Thank you, Cunard (talk) 05:05, 6 March 2011 (UTC)Reply

I commented there. Oleg Alexandrov (talk) 17:06, 7 March 2011 (UTC)Reply
Thank you for the revision. Cunard (talk) 10:30, 9 March 2011 (UTC)Reply

Mathbot seems to be glitching now for titles with parentheses in them. It replaces them with random numbers, causing the articles to display as red links. Any ideas why? Logan Talk Contributions 01:59, 9 March 2011 (UTC)Reply

Logan is referring to this version of Wikipedia:Articles for deletion/Old, which links to Wikipedia:Articles for deletion/Frank M .28Martinez.29 instead of Wikipedia:Articles for deletion/Frank M (Martinez). A second issue is that #5 in the 1 March log links to Wikipedia:Articles for deletion/Carryl Varley, a 2007 AfD, instead of Wikipedia:Articles for deletion/Carryl Varley (3rd nomination), the current AfD. Would you also test to see if AfDs with special characters in their titles (e.g. Wikipedia:Articles for deletion/漫画, Wikipedia:Articles for deletion/دانشگاه امام رضا, and Wikipedia:Articles for deletion/Ελληνική Μειονότητα Κωνσταντινούπολη) will show up properly? Thank you for the time you have spent and spend in operating and maintaining this bot. Cunard (talk) 10:30, 9 March 2011 (UTC)Reply
I fixed this (hopefully). This is due to the fact that Wikipedia handles special characters inconsistently. It sometimes encodes "(" to ".28", but in other contexts it fails to recognize this as as an encoding of "(". Please let me know if there other problems. Thank you for monitoring the tool. Oleg Alexandrov (talk) 01:24, 11 March 2011 (UTC)Reply
Will do soon the "Carryl Varley" bug as well (here article name is not the same as AfD subpage name). Oleg Alexandrov (talk) 01:29, 11 March 2011 (UTC)Reply
Fixed that one too. link Oleg Alexandrov (talk) 07:17, 11 March 2011 (UTC)Reply

How to award a barnstar? edit

Hi Oleg, I have a simple question on how to award a barnstar to the guys who have added the fields "mr" and "zbl" to the {{Citation}} template: did you know them? Who are them? Thank you for your help. Daniele.tampieri (talk) 12:36, 23 March 2011 (UTC)Reply

I guess you can look at the edit history of Template:Citation to see who added the fields. To award the barnstar, there is no formal procedure, just paste the text/picture on their page. Oleg Alexandrov (talk) 18:36, 23 March 2011 (UTC)Reply

How to report a possible conflict of interests? edit

Hi Oleg, I'm disturbing you again since I have placed in the "Solomon Mikhlin" entry a link to his MacTutor biography which is authored by Vladimir Maz'ya, Tatyana O. Shaposhnikova and myself. I remember that in such cases it is safe to report a possible conflict of interests, but I don't know how to do. Can you help me? Daniele.tampieri (talk) 06:51, 11 April 2011 (UTC)Reply

I think a conflict of interest is something worse than that. :) You have nothing to gain personally from linking from one article partially authored by you on Wikipedia to another article partially authored by you on another web site. And the external article is relevant to the Wikipedia article. So I think everything is OK. Oleg Alexandrov (talk) 16:00, 11 April 2011 (UTC)Reply
Thank you very much. Precise and helpful as ever. :D Daniele.tampieri (talk) 18:18, 11 April 2011 (UTC)Reply

Colors of animation for Heat Equation article edit

Oleg, hello. I was just doing some minor proofreading fixes to the Heat Equation article, when I noticed that your nice animation is actually showing a 2D system, and that the caption for the animation did not match the system being simulated. I made some changes to the caption, which I think now better explains what is going on.

Along the way I realized that in the animation right now green=hot and red=cold. This is opposite to the more usual coloring, where red typically means hot. The pictures would be easier for a beginner to understand, I think, if that assignment of colors could be changed, maybe using blue for cold, red for hot.

I see your Matlab code to generate the pictures. I would try to change the coloring myself, but I don't have Matlab. So I was wondering how you might feel about making that change and re-uploading the animation -- or maybe suggesting some way I could run Matlab online, or something like that.

Thank you.

Regards,

Ralph Dratman Dratman (talk) 15:54, 21 April 2011 (UTC)Reply

Thanks. I'll reverse the colors one of these days. Oleg Alexandrov (talk) 16:16, 21 April 2011 (UTC)Reply
I think you just have to change the colormap from Autumn to Jet. Dratman (talk) 22:36, 21 April 2011 (UTC)Reply
I reversed the colors (Image:Heat eqn.gif). Thanks for the suggestion. Oleg Alexandrov (talk) 20:00, 24 April 2011 (UTC)Reply

Can you redraw image? edit

Hi! I see that on 16 July 2007 you did a revision for the colors in the image File:Kepler-first-law.svg  . I wonder if you could alter the image to make it more accurate. Right now the foci are drawn way too far apart from each other for the ellipse shown. This can easily be seen by looking at the point at the top of the minor axis: the sum of its distances to the two alleged foci is obviously much greater than twice the semi-major axis. Could you move both foci so that each one is at least twice as close to the center as they are now? Thanks very much! Duoduoduo (talk) 19:08, 22 April 2011 (UTC)Reply

You are right. I am short of time now, but I'll get to it in a couple of days. Oleg Alexandrov (talk) 17:34, 24 April 2011 (UTC)Reply
Surprisingly enough, the image is correct. I measured the distances in Inkscape. The equation of an ellipse is   In this picture   Then the distance from the center of symmetry of the ellipse to any of the two focii is   What I measured was 84 or so. So all it takes is a little squashing of an ellipse for its focii to diverge a lot. Oleg Alexandrov (talk) 03:39, 28 April 2011 (UTC)Reply
Thanks for looking into it -- you're right. Now I've used a ruler to measure the sum of distances to the foci from the top of the minor axis, and it does indeed equal twice the semi-major axis. It really doesn't look that way to me -- if you take the segment from the sun to the top of the minor axis, and slide its right endpoint down to the center while sliding its left endpoint to the left, it looks to me like the left endpoint ends up well outside the ellipse; but that's not true. An interesting optical illusion, apparently! Duoduoduo (talk) 14:11, 28 April 2011 (UTC)Reply

Article rescue: Rexer survey edit

Hello. I am new to Wikipedia and would like to dispute the notability tag added by User:Melcombe to the Rexer's Annual Data Miner Survey article. Can you help? Thanks. --Luke145 (talk) 20:31, 22 April 2011 (UTC)Reply

Try posting this at Wikipedia talk:WikiProject Statistics. That way hopefully we'll have a few opinions about whether the article is notable. Oleg Alexandrov (talk) 17:33, 24 April 2011 (UTC)Reply
Will do. Thanks! Luke145 (talk) 20:03, 6 May 2011 (UTC)Reply

MathBot April 22 edit

I found an AfD listed that is no longer open. I attempted to remove it manually, and your bot seems to think I am mistaken. CycloneGU (talk) 23:55, 22 April 2011 (UTC)Reply

(talk page stalker)Actually there's no need to manually update the number of open discussions. Mathbot does that periodically. However, if for some reason you need it done now then you can kick him. (shown as "Refresh the number of open discussions") If after kicking mathbot it still show closed discussions as "open" then we have a problem. --Ron Ritzman (talk) 17:33, 23 April 2011 (UTC)Reply
Yes, I think this was when I asked it to update as it had been a few hours. It put the closed discussion back out as open per the edit above. I thought it quirky myself. =) CycloneGU (talk) 20:21, 25 April 2011 (UTC)Reply
The bot was confused by the fact that Wikipedia:Articles for deletion/Log/2011 April 11 had a section which was not an AfD, see "Proposed Compromise involving MLB Rivalry page" in there. I refined a bit bot's search pattern to distinguish this from a true AfD. Parsing html is inherently error-prone, hopefully there could be a better solution at some point. Thanks for the bug report. Oleg Alexandrov (talk) 06:07, 27 April 2011 (UTC)Reply

Please teach your bot to stop adding redundant disambig links to lists of mathematics articles edit

Please teach your bot to stop adding redundant disambig links to lists of mathematics articles. Thank you. bd2412 T 02:03, 8 May 2011 (UTC)Reply

The List of mathematics articles and its subpages may have links to disambiguation pages. The method you used here can't be used because the list needs to link directly to each math article for maintenance purposes. If we link to a redirect page, then there is no entry in the pagelinks table for the page itself. If you use a tool to look for links to disambig pages, please filter out the lists of math articles from your tool. The lists of math articles are maintained by automated tools; if you edit the pages manually, the bot may overwrite your edits at any time. — Carl (CBM · talk) 11:19, 8 May 2011 (UTC)Reply
No article should ever link directly to a disambig page. This is policy, because the only way to keep intentional links from showing up on the "what links here" pages, which is the primary means of finding errant links used by disambiguators, is by routing those links through "foo (disambiguation)" redirects. I'm not sure why disambig pages need to be included on these lists at all, since they are not actually "articles", but merely directories, much like categories (which are also not included). I also don't see why a means can not be figured out to isolate disambig pages and link to them through the "Foo (disambiguation)" redirects. Linking directly to them is simply not an option. bd2412 T 02:03, 9 May 2011 (UTC)Reply
"No article should ever link directly to a disambig page" is wrong. Zillions of pages have hatnotes that say This article is about John Xmith, the omphalologist. For other persons named John Xmith, see John Xmith (disambiguation). Such hatnotes are a normal part of our way of doing things. (And also, of course, there are redirects to disambiguation pages.) Michael Hardy (talk) 20:17, 10 May 2011 (UTC)Reply
That is why the link goes through the "Foo (disambiguation)" redirect, something which no other project has found difficult to accomplish. bd2412 T 23:51, 10 May 2011 (UTC)Reply
Until we can figure out a way for these edits to comply with policy, I am denying bot editing of these lists. I'm sure something will be figured out quickly. Cheers! bd2412 T 02:06, 9 May 2011 (UTC)Reply
How about this: we take disambig pages out of these lists entirely, teach the bot to just ignore them, and create a separate list of mathematics-related disambiguation pages, which can be kept up manually. bd2412 T 03:40, 9 May 2011 (UTC)Reply
It's sort of essential that these lists be bot-maintained, since among other things they are critical for the proper functioning of Wikipedia:WikiProject Mathematics/Current activity, which is monitored by many editors. I like the suggestion of creating a separate list of mathematics disambiguation pages, but I don't think it should be maintained manually. If necessary, it can be moved into the WP:WPM project namespace. Since these lists are important for the day-to-day functioning of WP:WPM, I think the {{nobots}} templates should be removed, the other edits that you made reverted, and we should instead try to pursue a mutually satisfactory solution. I don't think dab links need to be urgently removed, especially not at the expense of productive areas of the project, even if they are technically not permitted under the Manual of Style. Sławomir Biały (talk) 11:42, 9 May 2011 (UTC)Reply
The bot does not worry about nobots on these pages anyway. Nobots is for bots that go around finding pages to edit. This bot is explicitly supposed to edit these list pages, and the pages are supposed to be edited by the bot, so it's somewhat meaningless to use a nobots tag here, and the bot has never implemented any detecton of the tag (the entire nobots system is optional for bots). The bot was not designed to remove the nobots tag, either, but because it was put at the bottom of the page the bot will probably remove it the next time it runs, just as the bot would remove any other stray wikitext put in there. — Carl (CBM · talk) 12:35, 9 May 2011 (UTC)Reply
It's not a policy, it's a guideline. And its text says there are exceptions. Tijfo098 (talk) 09:35, 9 May 2011 (UTC)Reply
Frankly your tone here strikes me as belonging to another MOS warrior. Tijfo098 (talk) 09:38, 9 May 2011 (UTC)Reply

The main points here are:

  • These lists are a case where we do want to link directly to some disambiguation pages. The MOS page about it does not prohibit all links whatsoever; the box at the top of that page explicitly says there will be exceptions.
  • These lists and the bot go hand in hand. The bot has never followed the "nobots" thing, which is always optional for bots to implement. The bot will continue to update the lists. It has been updating the lists for years, and the lists are intended to be updated by the bot, not to be "cleaned up" at whim. The bot will remove stray wikitext from the bottom of the lists when it edits them; categories, templates, and such have to go near the top to remain in the list. Again, these lists are meant to be edited by the bot. The bot is designed to accept it if someone manually adds a new item to the list, but it will clean up many other manual edits as a side-effect of updating the list.
  • If these pages bother you or confuse one of your tools, please simply filter them out of your tool. This cannot be very hard in any programming language. — Carl (CBM · talk) 12:18, 9 May 2011 (UTC)Reply

Now let me point out the reason that we normally don't link to dismbiguation pages is that we want readers to go somewhere useful when they click a link when reading an article. That reason does not apply to this list: readers are not looking for the meaning of a word, they are expecting to go to a page that has a category marking it as a mathematics article. The organization of the list is that it contains redirects only if those redirects are themselves categorized as mathematics articles (and some are). Otherwise, the list simply links directly to the page, be it an article, list, disambiguation page, etc.

Because of the manual additions of pages like [2], someone will have to manually remove these from the list. Because they are not categorized as math articles, they are should not be listed (the bot tries to keep manually-added articles on the theory that people will add articles that the bot misses for some exceptional reason). On the other hand, the reason that A_posteriori_probability is added by the bot is that it is categorized in the "Applied statistics" and "Statistical terminology" categories, both of which are in the List of mathematics categories. As long a page is in any of those categories, it should be listed on the list of mathematics articles. — Carl (CBM · talk) 12:51, 9 May 2011 (UTC)Reply

I think part of the problem here arises from disambiguation choices. A posteriori probability is at least a WP:TWODABS situation and likely should not exist as a disambiguation page at all on that basis alone. If a page addresses different but related uses of mathematical terminology, as it appears many of these pages do, then it likely should be an article on the term per WP:DABCONCEPT, and not a disambiguation page. On the other hand, I wonder why, for example, the list for "U" includes Unification, which has no math terminology tag on the page (I guess maybe it had one in the past).
I am well aware of the reason why we don't normally link to disambiguation pages, but nevertheless the encyclopedia contains hundreds of thousands of these bad links, and the number swells each day, only to be beaten back by a very hard-working crew of disambiguators. The job of fixing those links is complicated by intentional links, and although I can ignore these pages in my searches, they can not be filtered from the "what links here" page for the general disambiguator. I still do not see why these lists can not just use "foo (disambiguation)" redirects. I also see no reason why this bot can not be taught to ignore disambig links, or to post them up with a pipe through the disambig redirect, or to collect disambig links on a separate page (since they are not, in fact, actual articles about anything). If none of these options are available, we could simply move all of these disambig pages to their "Foo (disambiguation)" titles. That would also run against the MOS, but at least it would do so in a way that makes fixing errant links easier. I see from the discussion at the top of this page that I am not the first disambiguator to address this problem, and surely there will be others after me - let's find a solution that keeps it from generating this circular dilemma. bd2412 T 14:53, 9 May 2011 (UTC)Reply
I would not mind moving them to the "(disambiguation)" titles as a compromise. I would also be happy to go through the list of them manually and remove any, like Unification, that should not be there any more.
The reason that we cannot use "Foo (disambiguation)" links is that then we would not have the right links in the pagelinks table ("what links here"). What we want is this:
  • Every article categorized as math is linked to directly from the list
  • Other articles are not linked to directly from the list
This is necessary, for example, for the "RecentChangesLinked" ("Related changes") tool to work correctly. That tool does not bypass redirects. For example, this page [3] does not show the edit I made to Unification just now, because the page that is being used (User:CBM/Sandbox) does not link directly to the edited page. Compare [4].
I think that the best solution (apart from cleaning up any outdated entries in the lists) would be to educate disambiguators that the lists of mathematics articles are not like ordinary articles and are an exception to the general principle not to link to disambiguation pages. The MOS makes it clear that there are exceptions. — Carl (CBM · talk) 15:14, 9 May 2011 (UTC)Reply
Unfortunately, disambiguators - like most Wikipedians - are not a monolithic group, and intermitant or incoming participants in that project would require constant "reeducation". That's why I am here having this discussion now, having come here unaware that this dispute had been raised before by others. Having thought it over, I now think the best solution for all would be to generally move these pages to their "Foo (disambiguation)" titles. It will be far easier to educate the much smaller group of people who attend to malplaced disambig pages, and to instruct the bots that generate those lists to ignore {{mathdab}} pages. However, I would also suggest taking a very careful look at these pages and determining what terms are really "ambiguous" and what are really just variations of the same concept, or could be handled in other ways. For example, a page like Carathéodory's theorem need not be a disambig at all; it could changed into a short article at List of theorems associated with Constantin Carathéodory, providing a bit more context as to each item on the list; or it could redirect to Constantin Carathéodory#Works, which already duplicates the list currently found on the disambig page. There is probably a great deal that could be done to whittle down the collection to those terms which are truly ambiguous in the sense of the same word or phrase referring to completely unrelated concepts. bd2412 T 16:27, 9 May 2011 (UTC)Reply
Actually, I somewhat like the idea of making things like Carathéodory's theorem into lists, but I know there are concerns with notability and with maintenance. The advantage of disambiguation pages is that they are easy to keep pruned and there are no notability concerns.
In the short term, though, I think that renaming them would solve the problem. And if we do it manually, it will give people a chance to check which of these disambig pages should still be listed on the list of math articles in the first place. Do you have a sense of how many there are? — Carl (CBM · talk) 19:33, 9 May 2011 (UTC)Reply
There are 260 articles with the {{mathdab}} tag, which is probably a good place to start. Also, non-notable information should definitely not be in disambig pages any more than it should be in any other articles. In fact, there should be nothing on a disambig page that is not either an article itself, or discussed in an article. bd2412 T 01:19, 10 May 2011 (UTC)Reply

I think the root problem here is that these lists are maintenance pages doubling as articles. Is there a reason (other than the amount of work involved in setting it up) that these two functions could not be separated? That is, the maintenance pages (more-or-less in their current form) going in the Wikipedia namespace, and the current location being occupied by list articles that do not have hidden talk page links or direct links to disambiguation pages without "(disambiguation)". Nobody would worry about the links to disambiguation pages if they weren't in article namespace (though neither JaGa nor BD2412 seems to have made this very clear). --Zundark (talk) 16:13, 9 May 2011 (UTC)Reply

That is also correct. We are unconcerned with links in project space, and many projects do maintain lists like these in project space rather than article space. That would definitely solve the problem from the perspective of the disambiguator. bd2412 T 16:29, 9 May 2011 (UTC)Reply
Project space would be good. Moving all mathdabs to (disambiguation) would be problematic since you should only use the (disambiguation) qualifier in the title if there's a WP:PRIMARYTOPIC per WP:DABNAME. --JaGatalk 21:27, 9 May 2011 (UTC)Reply
Using the "(disambiguation)" titles would be a compromise to help the people who are confused by the fact that these lists are supposed to link to dab pages. The problem is not the lists being in mainspace; they have been there since at least 2004 (in different locations) and are useful for browsing articles by title, not just for maintenance. The issue is editors who have a inner need to remove links to dab pages even when those links are intentional and appropriate. Now there is no universal policy against linking to dab pages; the MOS page on it even says there will be times when it is desired. But I willing to moving some dab pages to have the word "disambiguation" in their title, thus making use of an exception to a different MOS page, if that makes things easier for people who want to blindly replace links to dab pages. — Carl (CBM · talk) 23:54, 9 May 2011 (UTC)Reply
That these lists have been in mainspace for so long doesn't mean they belong there. You could, with no more effort than adding an additional instruction for the bot, maintain two sets of lists, one in mainspace listing only unambiguous titles of substantive articles, and one in project space indiscriminately listing everything in any math category for maintenance purposes. Regarding the "inner need to remove links to dab pages", this is a function of the need to parse through a thicket of hundreds of thousands of errant links that do require fixing. If we didn't have editors constantly making bad links, it would be less of a concern - and even {{mathdab}} pages do have a collection of bad links made to them. bd2412 T 01:49, 10 May 2011 (UTC)Reply
I suppose that in principle we could maintain five lists. But there's no reason to do that; the lists themselves are fine. The difficulty here is entirely with the perceived difficulty for people who remove links to dab pages.
Here is a question: the MOS makes it clear that there are exceptions (such as these pages) to the general principle not to link to dab pages directly. Is there no way that you keep track of pages that are intentionally linking to disambiguation pages other than to force those pages to be named "disambiguation"? The problem here seems to be that the MOS on linking to dab pages assumes it is acceptable to link to redirects, which it isn't for these lists. It seems easier to me to simply realize that these pages are exceptions to the general rule (as the MOS explicitly says there will be). — Carl (CBM · talk) 02:00, 10 May 2011 (UTC)Reply
The MOS acknowledges that there will be instances when it is correct to link intentionally to a disambig page; it also says how to do this. Disambiguators use a wide variety of tools, but the most common is simply clicking on the "what links here" button to see what links are coming into a particular page. Do you have any particular objection to having two sets of lists? I'd be glad to copy them over to project space and cull the disambig links from the lists in article space. bd2412 T 03:09, 10 May 2011 (UTC)Reply
Linking to a redirect is not the same as linking to the dab page, and sometimes it is actually necessary to link to the dab page, in order to get that link into "what links here" to make the related changes tool work. How do you propose that people who edit disambig links should handle these exceptions?
Nobody can simply move the lists to project space; the bot also needs to be updated, or it will simply recreate them in the present locations. People at the math project are also discussing moving the lists to project space (and updating the bot). But it seems like a pity to me to do that simply to make it easier for some people to edit disambig links without thinking about what they are doing, which seems to be the main justification for doing it. It's not hard to simply ignore these lists when replacing dab links. — Carl (CBM · talk) 11:00, 10 May 2011 (UTC)Reply
There is no need to insult disambiguators by suggesting that its "a pity" that we are trying to edit "without thinking about" what we are doing. We are only trying to improve the encyclopedia by attacking an endemic pattern of errors. Wikipedia has bots that remove vandal additions of vulgar terms from articles without "thinking" about it, and the bot at issue in this discussion is inidiscriminately adding links to lists without "thinking" about it; making it possible to automate or semi-automate processes to the greatest degree possible is a logical and beneficial trajectory for the encyclopedia. We have not encountered a problem like this with any other wikiproject, despite the widespread use of maintenence bots in this fashion, so clearly it is possible to use bots to maintain lists without making direct links to disambiguation pages in article space. bd2412 T 13:23, 10 May 2011 (UTC)Reply
@Carl: What are you doing with related changes that makes it impossible to implement WP:INTDABLINK? And considering that these pages already link to hundreds of non-disambig redirects, why is that not a problem? --JaGatalk 20:32, 10 May 2011 (UTC)Reply
Read my comments above, and compare these links: [5] [6]. — Carl (CBM · talk) 17:48, 11 May 2011 (UTC)Reply

As I see it, the main purpose of the list of mathematics articles is browsing. Navigating is at most a secondary purpose. When you're browsing you're not looking for some particular thing; you're trying to find things you don't expect to find. If you didn't know that Xology is a concept with six distinct meanings in mathematics, each with its own article, then you would find out when you come across it in the list of mathematics articles and click on it. People who are browsing would be deprived of that opportunity if disambiguation pages were not listed there. Michael Hardy (talk) 20:38, 10 May 2011 (UTC)Reply

This can be accommodated with WP:INTDABLINK. Someone has apparently been working on it already; for instance, List of mathematics articles (S) lists both Sampling theory and Sampling theory (disambiguation). If we can remove Sampling theory and leave Sampling theory (disambiguation), everything works. --JaGatalk 21:19, 10 May 2011 (UTC)Reply
That's not true. First, the list should only have pages that are categorized as math pages. Second, the related changes tool does not bypass redirects. — Carl (CBM · talk) 17:50, 11 May 2011 (UTC)Reply
Furthermore, if there is some maintenance purpose that demands linking directly to the disambig page, that can be done with a page in project space. I have yet to hear a sound reason why the bot can't maintain two lists, with no additional labor required of any human editor. I'll go one further on that and promise you that any work needed to set up the second set of lists, I'll do myself. If figuring out how to code the bot to do the job is a problem, we have many talented bot-makers and runners on our project who can help out with that. bd2412 T 21:58, 10 May 2011 (UTC)Reply
There is no reason the bot cannot maintain two lists, or five, or twenty, but no good reason has been presented to do it, either. The lists are fine, and in compliance with policy, which explicitly envisions exceptions. The people who update disambiguation pages just need to develop a way to whitelist the lists, I think. — Carl (CBM · talk) 17:48, 11 May 2011 (UTC)Reply

Okay, I went ahead and took care of this:

Now all you need to do is direct the maintenance bot to use these indiscriminate lists for its maintenance tasks. I will be glad to improve the organization of the alternate lists remaining in mainspace. Cheers! bd2412 T 23:52, 10 May 2011 (UTC)Reply

As I said above, "Nobody can simply move the lists to project space; the bot also needs to be updated, or it will simply recreate them in the present locations." If you look at the page histories, you'll see the bot is still editing the lists, as it does automatically. Worse, it looks like you just did a cut and paste move. There is no way that anyone without access to the bot source code can "take care" of anything. It seems like you are trying to force your preferred solution through. — Carl (CBM · talk) 17:48, 11 May 2011 (UTC)Reply

Perhaps you folks could start a discussion at a public place somewhere, such as the math wikiproject. I'll be happy to implement whatever consensus solution emerges. Oleg Alexandrov (talk) 18:03, 11 May 2011 (UTC)Reply

A discussion is underway at Wikipedia talk:WikiProject Mathematics#Mathbot has been blocked from editing "List of mathematics articles". There seems to be some technical confusion as to whether Mathbot would be capable of performing maintenance tasks using a list in project space while also maintaining a list in article space that piped links to disambig pages. It seems like a simple enough thing to me, but I'm no programmer. Cheers! bd2412 T 22:35, 11 May 2011 (UTC)Reply

I am preparing a proposal to resolve this situation. In the interim, please note that there are now two sets of lists of mathematics articles, one in article space and one in project space, linked above. If it is not inconvenient, please have Mathbot update both sets of lists until this situation is resolved. It may take a few more weeks to parse through all the possibilities and arrive at an ultimate resolution. Cheers! bd2412 T 01:05, 22 May 2011 (UTC)Reply

Mathbot not working on AFD edit

Looking at Wikipedia:Articles for deletion/Old/Open AfDs, it's clear that Mathbot no longer recognizes when AFDs are closed, as it continually says they are open (for example, it said there were 50 open and 8 closed on the 8th even after i looked and saw most of them were closed; the update did nothing.) This needs to be looked into. Wizardman Operation Big Bear 00:45, 12 May 2011 (UTC)Reply

I'll take a look soon. Oleg Alexandrov (talk) 21:18, 13 May 2011 (UTC)Reply
The underlying html format changed again, and that was confusing the bot. I put in a fix. Thanks for the report. Oleg Alexandrov (talk) 05:52, 14 May 2011 (UTC)Reply

need help with Random Matrix article edit

Hi Oleg,

I need some general advise if that's OK. I have tried to make a major revision in the random matrix article, which was a BIG MESS (a mixture of serious things and ref-s to some articles which appeared on arxiv a month ago, in the style of applications to radio transmitting on high frequency). I rewrote it completely, but, unfortunately, it seems that I have offended several users who made previous contributions (though I tried to add an explanation on the comments page both before and after I made the changes, and also on their personal talk pages suggesting a more serious discussion). So now the article is an even bigger mess (the new version into which arbitrary pieces of the old one have been inserted in arbitrary order).

Is there a standard wiki-way to manage a discussion about a major revision? If there is a procedure of this kind, I think it would also be great if an administrator would supervise it for a while (e.g. check that the revision is not too aggressive, and also to keep some order). I would also be grateful for any general advise (on how to make major revisions in "popular" articles without creating an even bigger mess).

Thank you very much!

Sasha (talk) 04:50, 30 May 2011 (UTC)Reply

There is no standard way to manage a discussion, and there is nothing an administrator can do.
The way it usually works is that editors discuss on the talk page, and hopefully some consensus arrives.
If you need feedback, try asking at Wikipedia talk:WikiProject Mathematics for people's views. I myself have quite little time and the topic is too strange to me to be able to comment. Oleg Alexandrov (talk) 15:28, 30 May 2011 (UTC)Reply
thanks!
I guess my question itself was not well-posed. I did not mean to ask a general question about life to which obviously there can be no answer -- rather, to ask an experienced editor for comments on the specific article ( r.m.), since I am not sure myself whether my revision has done more harm than good. Sasha (talk) 18:43, 30 May 2011 (UTC)Reply

Straw poll closed with a consensus to move the lists of mathematics articles to project space. edit

The straw poll has closed with a consensus to move the lists of mathematics articles to project space. I intend to implement this consensus later on tonight, but if you need more time to prepare Mathbot to work from project space instead of article space, please let me know. Cheers! bd2412 T 22:41, 2 June 2011 (UTC)Reply

You may need to do some thorough work, such as checking which pages link to the lists, looking at redirects, etc. And I believe they have to be real page moves, rather than copy&paste. Once you are done, let me know. It won't be much work on bot's side.
I turned off the bot in the meantime so that it does not mess anything. Oleg Alexandrov (talk) 23:08, 2 June 2011 (UTC)Reply
I will implement the changes now - I'll take care to catch everything incoming. Cheers! bd2412 T 01:26, 3 June 2011 (UTC)Reply
All the page moves have been done. I am temporarily retargeting all redirects to the new page location; these cross-namespace redirects will eventually be deleted, unless the project opts to set up some non-maintenance lists at the original article titles. Other than that, the soup is ready for cooking. Cheers! bd2412 T 01:52, 3 June 2011 (UTC)Reply
I switched mathbot to the new lists. Apparently all is well. Oleg Alexandrov (talk) 06:15, 3 June 2011 (UTC)Reply
Great - thanks! bd2412 T 11:13, 3 June 2011 (UTC)Reply

Help with WP 1.0 bot edit

Hello Oleg, I'm creating a new task force for Asian Games under WikiProject Multi-sport events, for this I need an "assessment statistic" page, but I've tried very hard but still I don't have this User:WP 1.0 bot/Tables/Project/Asian Games page, would you please help me on this, thanks and regards. — Bill william comptonTalk 17:27, 22 June 2011 (UTC)Reply

I have not been involved in this for a while, but try following the instructions at Wikipedia:Version 1.0 Editorial Team/Using the bot. If that does not work, try contacting CBM who runs the bot. Oleg Alexandrov (talk) 18:05, 22 June 2011 (UTC)Reply
Thanks for your prompt reply, I've sorted it out, merci encore. — Bill william comptonTalk 19:21, 22 June 2011 (UTC)Reply

About a the merge proposal Hartogs'lemma -> Hartogs' extension theorem' edit

Hi Oleg. I am writing you since I would like to start the merging of the entry "Hartogs' lemma" into the entry "Hartogs' extension theorem", as proposed by the Set theorist (talk). I discussed the matter in the talk page of the target entry, and also I discussed the matter with Charles Matthews on his talk page, who was the creator of the former one: he agrees on the merge (he also note that the exposition should be improved. :D ) and I produced evidence that the two topics dealt coincide. Is WP:Merge the only guideline I must follow or is there a need for an administrator, in order to do operations not described there? Thank you very much for your help. Daniele.tampieri (talk) 07:22, 26 June 2011 (UTC)Reply

I think no admin help is necessary. Thanks for doing the work. Oleg Alexandrov (talk) 16:12, 26 June 2011 (UTC)Reply
Ok, I'll work it next week. Maybe I'll ask your opinion after the merge. Again, thank you for your help and politeness. Daniele.tampieri (talk) 17:57, 26 June 2011 (UTC)Reply

A question about wikilinks in the "See also" section of an entry edit

Hi Oleg, that's me again. This time I have a question about the wikilinks which can be included in the section "See also". Recently an editor has removed several meaningful wikilinks from that section of the entry Francesco Faà di Bruno motivating it by saying "wlink already included in the main article": I tried to find a style motivation on the WP:MOS but I did not find anyting. Is this a rule of style in Wikipedia? It seems strange to me such a way of including or not wlinks: if this were a rule, the link "Sobolev space" should not be placed in the "See also" section of the entry "Sergey Sobolev, therefore a visitor willing only to search a reference to the results of Sobolev in the entry, without reading it will be disappointed. Daniele.tampieri (talk) 17:59, 29 June 2011 (UTC)Reply

I think that editor is right. But I am not sure if this is a strong policy. If you feel some links are important enough to be included in "see also" even if they are in the main article anyway then I guess it is OK to add them. Oleg Alexandrov (talk) 18:24, 29 June 2011 (UTC)Reply
Personally, I do not see the value of that rule. I would revert the deletion of a link from "See also" if the link in the main text is not readily apparent, for example, if the link in the main text were [[Sobolev embedding theorem|his work on weak derivatives]]. JRSpriggs (talk) 00:40, 30 June 2011 (UTC)Reply

Thank you all for your advice, Oleg and JRSpriggs. I am seriously thinking of proposing a discussion on such a topic: is the Wikipedia talk:Manual of Style the right place to do so? Daniele.tampieri (talk) 19:45, 1 July 2011 (UTC)Reply

P.S. I still have to do the move Hartogs' lemma -> Hartogs' extension theorem, but I'll do it as soon as possible.Daniele.tampieri (talk) 18:04, 29 June 2011 (UTC)Reply

mathbots need not exaggerate death edit

Harold Neville Vazeille Temperley seems to be alive, so could we please let him be? See List of mathematicians (T). Unless you know more... Megadeff (talk) —Preceding undated comment added 14:00, 2 July 2011 (UTC).Reply

He's almost a hundred years old. Time to go ... :)
The bot got this info from the Harold Neville Vazeille Temperley article, at the bottom it says "Category:2007 deaths". I just removed that, and the bot will not consider him dead anymore. Oleg Alexandrov (talk) 16:37, 2 July 2011 (UTC)Reply

Mathbot seems to be obsessed with death. Can you re-educate it? Same problem. Megadeff (talk) 13:00, 5 July 2011 (UTC)Reply

Same problem. Please regulate mathbot. Megadeff (talk) 10:24, 7 July 2011 (UTC)Reply

I am on vacation and traveling. I'll look into it perhaps within 4-5 days. Oleg Alexandrov (talk) 06:28, 15 July 2011 (UTC)Reply
(Very belately.) The bot was not updating the pages properly since the format of Wikipedia's html changed and that confused it. I put in a fix I think. I have it running now, I'll check later if it works. Oleg Alexandrov (talk) 04:49, 28 July 2011 (UTC)Reply
It works. Oleg Alexandrov (talk) 17:02, 28 July 2011 (UTC)Reply

Bot removing my edits to article categories edit

See User_talk:Mathbot#Wikipedia:WikiProject_Mathematics.2FList_of_mathematics_articles. -- Alan Liefting (talk) - 07:48, 8 July 2011 (UTC)Reply

(copying all discussion here from mathbot's page).

Wikipedia:WikiProject Mathematics/List of mathematics articles 

Can you get your bot to not add the Wikipedia:WikiProject Mathematics/List of mathematics XX articles to article categories. See this as an example. Cheers. -- Alan Liefting (talk) - 05:25, 7 July 2011 (UTC)Reply

Why would that be wrong? Those are lists of mathematics articles, they should be in math categories, even if they are in the Wikipedia namespace I would think. Oleg Alexandrov (talk) 06:31, 15 July 2011 (UTC)Reply

List of mathematicians (A) edit

Regarding your revert at List of mathematicians (A):

  1. Franz Alt recently died;
  2. your formatting of year ranges contradicts WP:YEAR, MOS:ENDASH and MOS:HYPHEN.

I have partly reverted your edit. -- Michael Bednarek (talk) 10:14, 27 July 2011 (UTC)Reply

Did you look at the page history? The edit was made by a bot, not by Oleg personally. That bot has been maintaining the lists of mathematicians since 2006, so it knows what it is doing. In particular, you cannot simply change the formatting of the dashes on a whim; the bot would need to be updated to change it. The bot will probably change the formatting again the next time it runs, as well. There are not a lot of pages that are maintained in that sort of way, where a bot takes care of updating the list along with human editors, so you may never have seen one before. — Carl (CBM · talk) 11:16, 27 July 2011 (UTC)Reply
The bot's talk page advises readers to leave comments here.
Having two details for ranges of years disregarding three elements of Wikipedia manuals of style needs to be addressed, regardless of how long the bot has done it the wrong way. Michael Bednarek (talk) 12:46, 27 July 2011 (UTC)Reply
PS: And what's with the description in that list after Shimshon Amitsur? -- Michael Bednarek (talk) 12:52, 27 July 2011 (UTC)Reply
Let me summarize, you want the ndash (–) and the keyword "born", is that right? Oleg Alexandrov (talk) 04:54, 28 July 2011 (UTC)Reply
I understand that the guidelines mentioned above specify an unspaced ndash for year ranges: yyyy–yyyy.
The style "born yyyy" instead of "yyyy–" is used at MOS:BIO and certainly favoured in disambiguation pages of people, but tables and lists have probably more latitude, although to me the style "yyyy–" seems unnecessarily terse. Michael Bednarek (talk) 05:27, 28 July 2011 (UTC)Reply
I'll implement these two suggestions, hopefully later today. Oleg Alexandrov (talk) 17:02, 28 July 2011 (UTC)Reply
I am done with the "born" part. I'll do the ndash thing soon. Oleg Alexandrov (talk) 01:36, 30 July 2011 (UTC)Reply
Thank you very much for changing the bot – much appreciated. All the best, Michael Bednarek (talk) 10:20, 31 July 2011 (UTC)Reply

Thanks edit

Hello, I'd just like to thank you for creating "File:Snells law wavefronts.gif", as it has helped me finally understand the refraction of light. This is a nice little example of how online collaborative communities like Wikimedia can help people. DrJimothyCatface (talk) 12:27, 7 August 2011 (UTC)Reply

Glad to hear it was helpful. The idea was not mine however, I saw a similar picture somewhere and made it into an animation for Wikipedia. Oleg Alexandrov (talk) 04:37, 9 August 2011 (UTC)Reply

LaTeX to wiki translation preview not working edit

Hi Oleg I tried the LaTeX to wiki translation tool we worked on few years back. Your preview script still submits the page to Wikipedia but it gets instantly deleted. I tried to change the page name to subpage in my user space but it still gets deleted. I think it was deleted before also but it would show the wikicode; now it does not do even that. Any ideas? Thanks! Jmath666 (talk) 05:49, 15 August 2011 (UTC)Reply

Uh. Try looking at the logic in the functions named print_head nad print_foot in the source code of your script. I tried to emulate there how a redlinked Wikipedia page would look like, to bootstrap its preview function. Compare that html code there with the html code of an actual redlinked page. Perhaps the html format changed in the meantime.
I am not sure what else I can suggest. I tried accessing your script but apparently that page is down. See if what I suggest above makes any sense. If not, perhaps we could try something else. Oleg Alexandrov (talk) 01:33, 16 August 2011 (UTC)Reply

Please try again the server is online now. Jmath666 (talk) 04:45, 16 August 2011 (UTC)Reply

I was able to reproduce what you mention when I was not logged in. After logging in, however, the preview worked just fine. I tried logging in as my bot, to see if perhaps my admin privileges have something to do with it, but it still works.
Were you logged in to Wikipedia beforehand? Did you try to perhaps change slightly the name of the article? If these two don't work, I am not sure what to do. Oleg Alexandrov (talk) 04:57, 16 August 2011 (UTC)Reply

I see now it is working when I log in normally but not when I am logged in by https (I switched to secure login a while ago). Thanks! Jmath666 (talk) 05:22, 16 August 2011 (UTC)Reply

categories....... edit

I just edited generalized quaternion interpolation. It bore the following three category tags but did not appear in the list of mathematics articles:

(I added Category:Applied mathematics, so maybe it will now get added to the list.) I don't recall whether it's your bot or Jitse's that handles this. It seems to me that things in those three categories should appear on the list. Michael Hardy (talk) 16:02, 1 September 2011 (UTC)Reply

The article generalized quaternion interpolation was in Wikipedia:WikiProject Mathematics/List of mathematics articles (G) for a while. Oleg Alexandrov (talk) 16:32, 1 September 2011 (UTC)Reply
Omigod..... That thing is now in neither the article space nor the portal space but somewhere else. That explains why I didn't see it in "what links here". Michael Hardy (talk) 18:58, 3 September 2011 (UTC)Reply
This move to the Wikipedia namespace was discussed perhaps a few months ago. Some people objected to these auto-genrated lists being in the main article namespace. Oleg Alexandrov (talk) 22:09, 3 September 2011 (UTC)Reply

EOM edit

Hi,

I have a stupid question, perhaps you know the answer or you could direct me to someone who knows it. Once there was a template "eom" for Encyclopaedia of math. Apparently, today it was moved to SpringerEOM. For some reason, it was done in such a way that

"A posteriori distribution", Encyclopedia of Mathematics, EMS Press, 2001 [1994]

appears instead of

"A posteriori distribution", Encyclopedia of Mathematics, EMS Press, 2001 [1994]

So the questions are:

  • does this look like a bug or a feature?
  • if the former, whom should I ask to fix it?
  • if the latter, is there a nice bot owner whom I could ask to fix all the places where the old template was used?

Thank you very much, Sasha (talk) 00:03, 8 September 2011 (UTC)Reply

PS I think I see the problem. Someone moved Template:eom to SpringerEOM (rather than Template:SpringerEOM), and apparently I do not have the permissions to fix this. If I understand the problem correctly, could you fix this please? Sasha (talk) 00:07, 8 September 2011 (UTC)Reply
PPS After some more reflection, now that I understand the problem I better ask the one who did it to fix it:) so please ignore all the above. Sasha (talk) 00:13, 8 September 2011 (UTC)Reply
No prob. Oleg Alexandrov (talk) 00:21, 8 September 2011 (UTC)Reply

Mathbot should probably be stopped... edit

...until the 1.18 change is compatible with it, as it's misreading the numbr of AfDs in the "old" AfD section, at least. - The Bushranger One ping only 05:16, 6 October 2011 (UTC)Reply

The format of the html changed again, quite drastically actually. I put in a fix. The ideal solution is for the bot to parse the wiki code rather than the auto-generated html, I don't know when I'll get to that. Oleg Alexandrov (talk) 05:40, 7 October 2011 (UTC)Reply
  The Technical Barnstar
For quick work getting MathBot back on its feet! Many thanks. The Bushranger One ping only 16:18, 7 October 2011 (UTC)Reply

Advice on two probable cases of self-promotion edit

Hi, Oleg. I'm writing you again to ask for an advice regard two edits that appear self promotion (at least to me):

  1. Mohsen.soltanifar has added a section on the "Bounded variation" entry just to describe his work and place a reference to an undergraduate paper written by him. This would be good if the contents of the paper (his work) were of some scientific interest: however, the actual "Algebraic Operations with BV Functions" section is a (fortunately short) mere collection of trivial facts: the space of BV functions is a vector space, therefore is closed under subtraction and addition, and is an algebra as already stated in the Wikipedia article, therefore is also closed under multiplication. The quotient of two functions of such space could not belong to the same space, as the trivial example  BV([ , ]) and  BV([ , ]), and also the closure under composition is trivially false. I'd like to straightly remove it, but I would like to listen to your advice since you are surely more used than me to such matters. It is also interesting to note that this user's contributions all aim to promote his papers published in various undergraduate research journals, as I personally checked.
  2. Shazux has added a short statement and a reference to a paper to the "Stefan problem" entry: I moved it in the separate section "Applications" (created for this purpose). His statement is ambiguous, but since the work he refers to is published by the Begell House which is a publisher very active in the field of heat transfer theory, I would like to give him a chance to explain it by contacting him at his talk page. Am I doing the right thing?

Thank you very much for your help. Daniele.tampieri (talk) 18:38, 30 October 2011 (UTC)Reply

P.S. I still have to work on the Hartogs' extension theorem/Hartogs' lemma stuff: I was very busy up till now, but I'do it, I promise. :-D

One option would be to simply revert/adjust those changes with a very informative edit summary. If you also want to contact Shazux, that should be OK too. If any of the users persist, we can have a wider discussion at WT:WPM. Oleg Alexandrov (talk) 23:10, 30 October 2011 (UTC)Reply

new template edit

Hi, I developed a new AfD template header (to be used in conjunction with the current one), it is currently awaiting a consensus on whether or not it should be used. If other editors decide it should, would it be difficult to have Mathbot also start putting this on the pages it initializes? Thanks,  M   Magister Scientatalk (21 November 2011)

Should not be a problem. Write to me again once there is a consensus for using it. Oleg Alexandrov (talk) 23:39, 21 November 2011 (UTC)Reply
I will, thank you very much.  M   Magister Scientatalk (21 November 2011)

AFDs edit

You might want to read this discussion regarding your bot and the AFD logs. Ten Pound Hammer(What did I screw up now?) 16:07, 24 November 2011 (UTC)Reply

I replied there. Please ping me back here when you want me to comment further in case I forget. Oleg Alexandrov (talk) 20:11, 24 November 2011 (UTC)Reply

New AfD Template edit

Hi Oleg, so after over a week, the response to the idea of having a new AfD template added to all new AfD pages have been a bit minimal. Yet, there was a 3-0 consensus that the template should be used, more importantly, nobody really had problem with it. Now that the template has gained support, can you please have MathBot start initializing it to all new AfD pages. For example of what the page would like see here. Thanks, Magister Scientatalk (Editor Review) 23:40, 2 December 2011 (UTC)Reply

Done. See here. Oleg Alexandrov (talk) 06:00, 3 December 2011 (UTC)Reply
Thanks, very much appreciated. Magister Scientatalk (Editor Review) 14:08, 3 December 2011 (UTC)Reply

Mathbot edit

Mathbot doesn't seem to understand that this AFD has been closed. I tried re-closing it to see if that made any difference, then going through your code to see what parameter it looks for, but everything checks out - Mathbot just refuses to remove that from the list of opened AFDs. Thought I'd let you know - not sure how to fix. m.o.p 07:33, 4 December 2011 (UTC)Reply

The bot got confused by the fact that this section had a subsection. I put in a fix. Thank you for the note. Oleg Alexandrov (talk) 06:39, 5 December 2011 (UTC)Reply
Ah, I see. Thanks for the quick response! Cheers, m.o.p 07:12, 5 December 2011 (UTC)Reply

template:Mactutor edit

Hi Oleg,

could you please join the discussion at Template_talk:MacTutor#A_proposal? I think there is consensus (see the discussion here :), now we need an admin.

Thanks, Sasha (talk) 17:54, 14 December 2011 (UTC)Reply

Your proposal seems to be uncontroversal. But it would be good to have a wider discussion at Wikipedia talk:WikiProject Mathematics (or at least a notification) so that other mathematicians are also aware of that, I think. Oleg Alexandrov (talk) 15:54, 15 December 2011 (UTC)Reply
done Sasha (talk) 16:13, 15 December 2011 (UTC)Reply
Good. If there are no objections, just let me know what the text of the modified template should be, and I'll paste it in. Oleg Alexandrov (talk) 01:05, 16 December 2011 (UTC)Reply
thanks! but I think I will need more help. Is there a way to make the default author what it is now (actually, two authors), with the possibility to specify another one (or two or three...) instead of them? So that if the template is used without the author field, it will behave as now, and if one or more authors are specified, they will appear instead. Thanks again (sorry for trivial questions, this is the first time I need to change anything in a template), Sasha (talk) 02:27, 16 December 2011 (UTC)Reply
I wish I could tell you I knew something about templates, I don't. :) See if the folks at Wikipedia talk:WikiProject Templates could be of any help. You can state the problem in the terms they could understand, that is, you have a template, you want some arguments, you want them optional, there should be defaults, or something like that. Oleg Alexandrov (talk) 15:49, 16 December 2011 (UTC)Reply
sure, thanks! I will start with asking Daniele, then go on to Wikipedia talk:WikiProject Templates. Sasha (talk) 16:44, 16 December 2011 (UTC)Reply

math article classification edit

Peace be with you, Oleg, Thanks for welcoming me years ago... possibly I said that earlier. I started 'synergetics coordinates,' and I am pretty sure you helped me on it. The place I read about them, listed on the talk page, defines polysign numbers, i.e. numbers in which one axis is positive, and the two others that go from the origin through the vertices of a regular triangle each have a different sign: negative, and half-positive/half-negative. I would like to start or request an article, but I do not know how to classify this in WikiProject Mathematics. Do you know, or know where to ask? I used to be pretty skeptical about the numbers, and though they can be converted to Cartesian coordinates, I guess with those three axes there really must be three signs. --dchmelik (t|c) 11:32, 29 December 2011 (UTC)Reply

You can try Wikipedia:Requested articles/Mathematics. This looks to me like an exotic concept. Oleg Alexandrov (talk) 16:11, 29 December 2011 (UTC)Reply
I tried to say I went to the page but did not know what section to put it in. It seems no more exotic than other non-Cartesian systems, but polysign numbers apart from the space are exotic. If I recall correctly, the numbers are equivalent to the complex ones. I will put it in Complex Analysis (let me know if that seems wrong.)--dchmelik (t|c) 18:23, 29 December 2011 (UTC)Reply

Helmholtz decomposition editing edit

Dear Oleg Alexandrov!

I hope on your help for editing of “Helmholtz decomposition” http://en.wikipedia.org/wiki/Talk:Helmholtz_decomposition (See new section “Helmholtz decomposition is wrong”). Alexandr--94.27.70.57 (talk) 11:56, 26 January 2012 (UTC)Reply

I added a metacomment there. I wish I had more time to actually discuss things. Oleg Alexandrov (talk) 16:23, 26 January 2012 (UTC)Reply

1. Thanks for a quick reply! However it is not clear what account you mean? 2.After my reply Unexplained removal of formatting happens http://en.wikipedia.org/wiki/Talk:Helmholtz_decomposition . Please, help to correct. Alexandr--94.27.69.94 (talk) 10:09, 27 January 2012 (UTC)Reply

I mean, make yourself an user account (there should be a link at the top of the page). Oleg Alexandrov (talk) 16:11, 27 January 2012 (UTC)Reply


As you can see your offer has appeared very useful! http://en.wikipedia.org/wiki/Wikipedia_talk:WikiProject_Mathematics#Helmholtz_decomposition_is_wrong --Alexandr (talk) 18:14, 8 February 2012 (UTC)Reply

Possible Mathbot bug at AfD edit

See Wikipedia_talk:Articles_for_deletion#Deletion_discussions_not_transcluded_to_this_page. Apparently, the bot failed to recognize an open AfD from a month ago, leading to the discussion still being open over a month it was started. You might want to take a look at this. Also, if one slipped through the cracks here, it's possible others even older might have, so it might be worth figuring out a way to check all AfDs to locate any others that have slipped through in a similar fashion. jcgoble3 (talk) 02:02, 29 January 2012 (UTC)Reply

I commented there. Oleg Alexandrov (talk) 06:38, 29 January 2012 (UTC)Reply

MSU Interview edit

Dear Oleg Alexandrov,

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 24.11.206.39 (talk) 03:39, 21 February 2012 (UTC)Reply

Help edit

Please see, and please help : ) - jc37 02:17, 11 March 2012 (UTC)Reply

Why zero minor edits? edit

http://toolserver.org/~mathbot/cgi-bin/wp/rfa/edit_summary.cgi?user=Josh%20Parris&lang=en reports "100% for major edits and 0% for minor edits. Based on the last 150 major and 0 minor edits in the article namespace." Why zero minor edits?

Also, the link to edit summary from http://toolserver.org/~mathbot/wp/rfa/edit_summary.html ought to be to Help:Edit summary Josh Parris 00:54, 15 March 2012 (UTC)Reply

Invitation to events in June and July: bot, script, template, and Gadget makers wanted edit

I invite you to the yearly Berlin hackathon, 1-3 June. Registration is now open. If you need financial assistance or help with visa or hotel, then please register by May 1st and mention it in the registration form.

This is the premier event for the MediaWiki and Wikimedia technical community. We'll be hacking, designing, teaching, and socialising, primarily talking about ResourceLoader and Gadgets (extending functionality with JavaScript), the switch to Lua for templates, Wikidata, and Wikimedia Labs.

We want to bring 100-150 people together, including lots of people who have not attended such events before. User scripts, gadgets, API use, Toolserver, Wikimedia Labs, mobile, structured data, templates -- if you are into any of these things, we want you to come!

I also thought you might want to know about other upcoming events where you can learn more about MediaWiki customization and development, 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 the developers' days preceding Wikimania in July in Washington, DC and our other events.

Best wishes! - Sumana Harihareswara, Wikimedia Foundation's Volunteer Development Coordinator. Please reply on my talk page, here or at mediawiki.org. Sumana Harihareswara, Wikimedia Foundation Volunteer Development Coordinator 02:52, 4 April 2012 (UTC)Reply

mesh generating edit

Hi,I'm resca. Please, I need a help to generate triangular and quadrangular mesh of a cylindrical domain with different densities... Thx — Preceding unsigned comment added by 41.249.68.190 (talk) 13:10, 14 May 2012 (UTC)Reply

Thanks edit

Hey bro, thanks for the drawing in the supremum article, it was really helpful. — Preceding unsigned comment added by 190.36.208.125 (talk) 02:16, 7 July 2012 (UTC)Reply

WP 1.0 bot not functioning edit

It looks like WP 1.0 bot has not been functioning for several WikiProjects since June 30th.[7] Let me know if there's anything I can do to help. If the toolserver is totally hosed, I could help move the bot to the labs server (although it's still not entirely reliable itself yet). Kaldari (talk) 22:56, 9 July 2012 (UTC)Reply

Try notifying CBM. I have not been involved with this project for a while. Oleg Alexandrov (talk) 23:23, 9 July 2012 (UTC)Reply
Thanks. I'll do that. Kaldari (talk) 23:36, 9 July 2012 (UTC)Reply

Idea for Reaction-Diffusion recipe edit

Hey Oleg, I added a reply to a post on the talk page for Reaction Diffusion, with a roughed-out howto (in as plain-language as I could do in a short time) for actually implementing them.

I agree with the (anonymous?) poster of that section, that it would be a helpful bit of information to have on the page. I'd like to know your thoughts. Have a good one :) Danwills (talk) 17:08, 11 July 2012 (UTC)Reply

Regretfully I know little or nothing on this topic, and my involvement in that article has been quite tangential. I would suggest you add a section towards the end of the article with a brief example. It would be up to your judgement of how much detail would be appropriate, probably not as much as there would be in a textbook on the topic. Be bold! Oleg Alexandrov (talk) 17:49, 11 July 2012 (UTC)Reply

Vector potential edit

Hi Oleg, I was looking at the Vector potential article, and found it quite misleading. The reality is very simple, is it not, that if div(F) = 0 and F is defined on all of R^3, then F has a vector potential. No decay conditions required. Shouldn't this be the primary thing the article says? Maybe we should start changing it in that direction. Thanks, Kier07 (talk) 15:12, 8 August 2012 (UTC)Reply

I think the assumption of decay comes in when you start proving that F has a vector potential. I guess the proof does not work without that assumption, and I am not sure if the statement of that theorem will even hold for non-decaying F. Oleg Alexandrov (talk) 16:09, 8 August 2012 (UTC)Reply
I'm no expert, but I'm pretty sure decay conditions aren't necessary for the existence of a vector potential. Only that particular choice may not work if you don't have enough decay... 165.124.136.170 (talk) 18:56, 8 August 2012 (UTC)Reply

actually when ever you take square roots you have to get positives and negatives of that quantity......so same is the cadse here when multiply right hand with + and - we will get the same results for both....plz let me know if i am wrong. — Preceding unsigned comment added by Ghalibabbas110 (talkcontribs) 07:38, 21 September 2012 (UTC)Reply

Mathbot edit

Hi Oleg. I posted a question at User talk:Mathbot. -- Uzma Gamal (talk) 10:06, 29 October 2012 (UTC)Reply

I replied there. Oleg Alexandrov (talk) 16:15, 31 October 2012 (UTC)Reply

Mathbot problem on List of mathematicians (V) edit

Mathboot is overiding a MOS issue onList of mathematicians (V). Bgwhite (talk) 00:49, 4 November 2012 (UTC)Reply

I put in a fix. Oleg Alexandrov (talk) 02:50, 4 November 2012 (UTC)Reply
Thank you. Bgwhite (talk) 06:39, 4 November 2012 (UTC)Reply

Send me some code? edit

Hi Oleg. Could you please email me the code for /~mathbot/cgi-bin/wp/wp10/gen_cats.cgi? It looks like it needs some rewriting (perhaps the new login mechanism is what's confusing it?).Thanks much. —Theopolisme 14:57, 21 December 2012 (UTC)Reply

You can find the code for all that in ~wpmath on the toolserver (that is where MathBot runs now, and the code for that script was written as part of MathBot. Actually WP 1.0 Bot started as a fork of MathBot). But the old code is somewhat difficult to work with, because of the way it was laid out in different files in different directories. It would probably be easier to simply write a new script from scratch using the current Mediawiki::API library that the WP 1.0 bot uses, rather than to trying to fix the login and edit methods in that old code. — Carl (CBM · talk) 15:08, 21 December 2012 (UTC)Reply
Sounds good. Thanks. —Theopolisme 16:23, 21 December 2012 (UTC)Reply

Proposed deletion of Christmas in the Park (San Jose) edit

 

The article Christmas in the Park (San Jose) has been proposed for deletion because of the following concern:

Local event, not notable beyond the local area

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 {{proposed deletion/dated}} 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 {{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. Gtwfan52 (talk) 00:32, 30 December 2012 (UTC)Reply

No one said it is minor. What I said was that it wasn't notable beyond the local (metro SF) area, and I hold to that. I doubt highly you can find any reference to it beyond affiliated websites and local newspapers. 150,000 people attended the Kalamazoo/Battle Creek International Air Shows back in the 80's, and that was a one day event. It wouldn't be notable either, because it wasn't of interest beyond the local area. Gtwfan52 (talk) 01:02, 30 December 2012 (UTC)Reply
This event has been taking place each year for at least 30 years. And again, it is attended by about 450,000 visitors yearly. I'll spend more time expanding it (give me a day), and then, if you wish, you can post it for deletion using the regular WP:AFD process. Thanks. Oleg Alexandrov (talk) 01:06, 30 December 2012 (UTC)Reply

Nomination of Christmas in the Park (San Jose) for deletion edit

 

A discussion is taking place as to whether the article Christmas in the Park (San Jose) is suitable for inclusion in Wikipedia according to Wikipedia's policies and guidelines or whether it should be deleted.

The article will be discussed at Wikipedia:Articles for deletion/Christmas in the Park (San Jose) until a consensus is reached, and anyone is welcome to contribute to the discussion. The nomination will explain the policies and guidelines which are of concern. The discussion focuses on high-quality evidence and our policies and guidelines.

Users may edit the article during the discussion, including to improve the article to address concerns raised in the discussion. However, do not remove the article-for-deletion template from the top of the article. Gtwfan52 (talk) 01:14, 30 December 2012 (UTC)Reply

Christmas in the Park (San Jose) edit

Hi! I notice you have been around here a long time and have made many valuable contributions in the field of math. Thanks for your contributions. Writing about social things is very different than writing about science. Notability for articles on places, things and events is established by citing third-party references such as newspapers, magazines and books. Basically, the standards are that the world has to have noticed it before it can be in Wikipedia. I looked in the category "Christmas" and there are no articles whatsoever on Christmas festivals. I am guessing these are covered in the article on the settlement in which they occur. My suggestion to you would be to look for some references of the type I have mentioned above. There is a large Christmas festival in Wabash, Indiana that I know has been covered in the AAA magazine for Michigan, Michigan Living. If you could find any coverage like that, from away from the SF/SJ area, that would go a long way toward showing notability.

Secondly, your argument at the AfD is not at all an effective one. SeeWP:OTHERSTUFFEXISTS. I think we put way too much emphasis on Pokemon and the like, too. But, like it or not, things like that have their own notability standard. Schools, or at least high schools, are considered definitively notable. There are many arguments for that, mostly centering on the percentage of time in one's life that is spent there. An effective argument would be based in policy, or using defense of your sources.

I hope you can find more and more appropriate sources for your article. I will look too. But, I have to say, I wouldn't have nominated the article if I thought there was much hope of that. Happy Editing and thanks for all you do! Gtwfan52 (talk) 20:49, 30 December 2012 (UTC)Reply

Thank you for your carefully worded message. I happen to think the event described in the article is notable, although perhaps not critically so. Let's see what the community decides. Oleg Alexandrov (talk) 00:31, 31 December 2012 (UTC)Reply

Great Circle-distance formula is missing the radius edit

Greetings,

hmmmm, I see what you mean about citing a unit sphere.

For a consistent article, is it more appropriate to drop the "r" from the following equation since it equals one too?

   d = r \Delta\widehat{\sigma}.\,\! 

That gives d = the central angle in radians.

I think people would find the article more useable in the general case.

By the way, I am new to editing Wikipedia pages. On reflection, is there a strategy to leaving mistakes in web pages to force people to think about what they are using? Trip up students? Give a learning experience to the unwary?

Best regards, Richard.Talbott@jhuapl.edu

Talbott3709 (talk) 22:17, 11 February 2013 (UTC)Reply

MathBot AfD tool edit

Hello! It looks like http://tools.wikimedia.de/~mathbot/cgi-bin/wp/afd/afd.cgi is not updating the AfD totals correctly any more? It returns zero discussions, zero open, zero closed for every day. Thanks, Black Kite (talk) 18:57, 8 May 2013 (UTC)Reply

I put a fix. The html renderer changed again, that's what confused the bot.
Note that for Wikipedia:Articles for deletion/Log/2013 May 1 the bot lists 43 discussions, while the TOC itself shows 45. The bot is right here, two sections are spurious "References" sections. Oleg Alexandrov (talk) 03:52, 9 May 2013 (UTC)Reply
Thanks, that's excellent. Black Kite (talk) 05:56, 9 May 2013 (UTC)Reply

Images for Classification_of_discontinuities edit

Dear Oleg Alexandrov,

in the three images, the value of the function at   is indicated by a black circle. Some users missunderstood the images, because the circle is black and not blue like the rest of the function. They thougth, the function is not defined at  . Could you modify the images, that the circle will be blue? Here we had already some discussions about that: [8]

best regards, --Van Tuile (talk) 13:37, 4 June 2013 (UTC)Reply

Will do. Oleg Alexandrov (talk) 15:16, 4 June 2013 (UTC)Reply
Done. Very belately. Oleg Alexandrov (talk) 04:19, 11 July 2013 (UTC)Reply

Mathbot and Wikipedia:Articles for deletion/Old edit

Mathbot keeps showing that there are no open AfDs. That is inaccurate, there ARE open AfDs. Please fix pbp 01:45, 19 July 2013 (UTC)Reply

Must again be some changes to the html generated by the server. Unfortunately I can't login to to the mathbot account to fix it, perhaps I did not renew it in time. Once that's solved I'll login and put a fix. Thanks for the report. Oleg Alexandrov (talk) 03:10, 21 July 2013 (UTC)Reply
Still in negotiations with the toolsever folks to let me log in. I probably misplaced my ssh key and that's why can't login. Hopefully they won't take much longer. Oleg Alexandrov (talk) 04:17, 30 July 2013 (UTC)Reply
Thank you for your patience. I got my access back yesterday. I rewrote the script to not rely on parsing html, as the wiki server always changes its format. So the bot now parses wiki text, which is much more stable. Oleg Alexandrov (talk) 05:04, 2 August 2013 (UTC)Reply

Note on Mathbot AfD process edit

I noticed that Mathbot wasn't removing one of the AfD listings for 8 September, even though it was closed. After checking further, the nominator erroneously made a "2nd nomination" page for the request, then after noticing this, redirected it back to the standard nomination page. Apparently, Mathbot didn't notice the redirection and thought the discussion was still open. Bypassing the redirect fixed the problem [9]. That would come up so rarely that I doubt it would be worth fixing, but thought you might want to know in case it ever comes up. Seraphimblade Talk to me 19:52, 21 September 2013 (UTC)Reply

Thanks! If this ever becomes a recurring problem I could put a fix. Oleg Alexandrov (talk) 01:42, 22 September 2013 (UTC)Reply

Mathbot edit

I just simply want to say that, I think Mathbot is pretty neat. I personally feel you're doing a great job at running him. Thanks! — Preceding unsigned comment added by Goldguy81 (talkcontribs) 03:02, 27 September 2013 (UTC)Reply

Pmform and PlanetMath Books edit

(BTW, I just sent a similar note to your email...)

We're working on a proposal that we hope would allow us to so something similar to what you achieved with the "PlanetMath Exchange". Could you help by tracking down and sharing your Pmform source code?

Details of the proposal are here: meta:Grants:IdeaLab/PlanetMath_Books_Project.

It would also be quite meaningful if you could add an endorsement to the project page! Best, Arided (talk) 20:25, 29 September 2013 (UTC)Reply

PS. Please share with others who may be interested! Arided (talk) 20:28, 29 September 2013 (UTC)Reply

Most wanted redlinks edit

How do you do?

Do you think you can update User:Mathbot/Most wanted redlinks?

-- Taku (talk) 23:33, 7 October 2013 (UTC)Reply

That is very old and dusty code. And it required some manual handling as well. Not likely I'll get to it soon. Oleg Alexandrov (talk) 03:10, 9 October 2013 (UTC)Reply

Template:Afd top edit

FYI, I removed the "metadata" class from Template:Afd top because it breaks mobile view. Jackmcbarn (talk) 02:49, 9 October 2013 (UTC)Reply

I reflected this in the code. Hopefully nothing breaks. Oleg Alexandrov (talk) 03:09, 9 October 2013 (UTC)Reply

Speedy deletion nomination of Complex infinity edit

 

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 Complex infinity, requesting that it be speedily deleted from Wikipedia. This has been done under section G1 of the criteria for speedy deletion, because the page appears to have no meaningful content or history, and the text is unsalvageably incoherent. If the page you created was a test, please use the sandbox for any other experiments you would like to do.

If you think this page should not be deleted for this reason, you may contest the nomination by visiting the page and clicking the button labelled "Click here to contest this speedy deletion". This will give you the opportunity to explain why you believe the page should not be deleted. However, be aware that once a page is tagged for speedy deletion, it may be removed without delay. Please do not remove the speedy deletion tag from the page yourself, but do not hesitate to add information in line with Wikipedia's policies and guidelines. Bill Cherowitzo (talk) 22:22, 13 October 2013 (UTC)Reply

I made it back into a redirect. The complex infinity is a well-defined concept, and it is explained in the Riemann sphere article. Oleg Alexandrov (talk) 15:34, 14 October 2013 (UTC)Reply
Hey there, I was the one who deleted it. I actually tried to restore your redirect, and it was like gremlins - it would say it was restored, but every time I refreshed the page, it would go back to the crap. Finally, I gave up and deleted it. I figured your redirect back in 2006 was a good faith redirect (although I had no idea you were an administrator), but, well, rather go into the rest of the details, see this discussion on my talk page. If you think Riemann sphere is better than the other editor's suggestion, that's fine. I'll leave it in your hands. Sorry for all the trouble.--Bbb23 (talk) 16:47, 14 October 2013 (UTC)Reply
I commented on your talk page. I agree that Infinity#Complex_analysis is a better redirect (that place explains well how this infinity fits on the Riemann sphere). I made that redirect myself now. Oleg Alexandrov (talk) 18:03, 14 October 2013 (UTC)Reply
Great. I'm glad it's all straightened out.--Bbb23 (talk) 18:08, 14 October 2013 (UTC)Reply

Gradient Descent / Steepest Descent edit

This image on the page for Steepest Descent does not seem to show orthogonal search directions, which may be confusing.

http://en.wikipedia.org/wiki/File:Gradient_descent.svg — Preceding unsigned comment added by 108.168.65.229 (talk) 08:04, 23 October 2013 (UTC) The search directions are not supposed to be orthogonal to each other. They must be orthogonal to the contour lines, which they appear to be. Oleg Alexandrov (talk) 15:30, 23 October 2013 (UTC)Reply


" The method of Steepest Descent approaches the minimum in a zig-zag manner, where the new search direction is orthogonal to the previous."

http://trond.hjorteland.com/thesis/node26.html — Preceding unsigned comment added by 108.168.65.229 (talk) 16:26, 23 October 2013 (UTC)Reply

As that page says later, "This implementation of the Steepest Descent method are often referred to as the optimal gradient method.". The original steepest descent method does not find an optimal value for lambda_k, and then nothing guarantees perpendicularity. Oleg Alexandrov (talk) 22:39, 23 October 2013 (UTC)Reply
Also notice later on that page a second picture, where each direction is no longer perpendicular to the previous one. That is, that page is correct, but the caption of the first figure is not completely right. Oleg Alexandrov (talk) 22:40, 23 October 2013 (UTC)Reply


You are right, I see what you mean. I think the confusion is that the other pictures on the Wikipedia page are using optimal step sizes, and so show search directions which are orthogonal. Perhaps the captions could be changed to add something along the lines of "using optimal step length" or "using fixed or non-optimal step length"? — Preceding unsigned comment added by 108.168.65.229 (talk) 23:12, 23 October 2013 (UTC)Reply

Seeking a Lift of my Permanent Block, Can You Help edit

Hi, Mr Alexandrov, I am looking for an administrator with the time and thoughtfulness to look into my claim that I am wrongly blocked for sockpuppetry. I decided to ask an administrator with username beginning "O" and come to you secondly after "Orlady" who turned me down. I was no-warn/no-diffs/no-discussion blocked in May 2012 by Timotheus Canens who only clicked his Twinkle or Pop-Ups button that generated an hyperlink to WP:SOCK. I am a long-time Wikipedia editor (since 2005 or 2006) who has authored several articles and substantially contributed to many more. Early last year I switched to a new account for privacy reasons. This is authorized by the policy WP:CLEANSTART. Timotheus used the fact that I had a prior account to accuse me of "socking." He mischaracterized "switched to new account and never went back" as "using alternate accounts abusively."

He never said much more than that but several people (five or six) from WP:AN/ANI descended on my talkpage to criticize me and make allegations against me. I didn't handle it well. I didn't know who was administrator, who was not. I was inexperienced in responding to blocking. I was a bit angered because I took "sock" as an attack on my honesty.

Orlady told me "no, I will not help you, you must convince him that blocked you." But Timotheus Canens will not speak to me and has never spoken to me. Plus I feel his or any no-warn/no-diffs/no-discussion block is obviously an abuse of his or any administrator's powers. It was done out of irritation and a click of his mouse button.

There is a lot more to the story. I can answer your questions and tell you what you need to know to make a just decision about unblocking. The best way that I know of to begin is if you unblock merely my talkpage, and we have a conversation. My talkpage was blocked to me by Spartaz after Beeblebrox whispered in his ear. Spartaz claimed I was using it as a "pulpit." That is a shaky rationale, also without warning, and talkpage blocks are supposed to be used for truly egregious behavior. I state that I will not mislead you. I certainly state that I never socked, I switched accounts, and never went back. You can see I told the truth about that in my first edit. I see, Mr. Alexandrov, that it is not the kind of thing you usually do, but that really makes you more suited to it in my mind than a WP:AN/ANI regular. You just need to learn about it and apply rules to evidence. Lastly I am "block evading" right now, by signing my username to a raw IP edit. I know that is against the rules but I feel I've no other way to proceed.

C . C
o . o
l . s
t . m
o . i
n . c — Preceding unsigned comment added by 174.226.67.35 (talk) 12:22, 9 November 2013 (UTC)Reply

PS: I knew a young woman from Moldova once. Her name was, or she went by, "Virginia." Took her to lunch at a fried fish place but it went pretty awful. I mean the food was okay quality, just too much fried stuff. Our conversation was pretty awkward. She related better to a friend of mine. I don't know if she went back to Moldova, my friend keeps up with her I'll have to ask (we all moved away from each other). — Preceding unsigned comment added by 174.226.67.35 (talk) 12:30, 9 November 2013 (UTC)Reply

Manual of Style (mathematics) listed at Redirects for discussion edit

 

An editor has asked for a discussion to address the redirect Manual of Style (mathematics). Since you had some involvement with the Manual of Style (mathematics) redirect, you might want to participate in the redirect discussion (if you have not already done so). John Vandenberg (chat) 02:17, 13 January 2014 (UTC)Reply

Mathbot having trouble edit

Trying to update Wikipedia:Articles for deletion/Old which uses a Mathbot script, the response from Mathbot is a "No webservice" error. Thanks in advance for taking a look, and it is a very helpful tool. Dralwik|Have a Chat 21:30, 17 March 2014 (UTC)Reply

Thanks. Apparently there is some kind of tool migration going on,
https://tools.wmflabs.org/tools-info/migration-status.php
Hopefully things will come back to normal, I will check in the next several days. In the meantime I've set up a cron job to run mathbot hourly, as the server can still be accessed via ssh. Oleg Alexandrov (talk) 05:00, 18 March 2014 (UTC)Reply
It works now. Oleg Alexandrov (talk) 06:33, 22 March 2014 (UTC)Reply
Yes, although there is a smaller bug lingering. If a deletion discussion is withdrawn, mathbot will keep listing it. At Wikipedia:Articles for deletion/Old, the second discussion on March 12 is an example. I'm not sure what is tripping the bot up; admin-closed discussions are removed normally. Dralwik|Have a Chat 14:20, 24 March 2014 (UTC)Reply
Thanks. The bot was thinking only in terms of black or white, open or closed. Now it understands the {{archivetop}} tag as well, which took care of it. Oleg Alexandrov (talk) 15:46, 24 March 2014 (UTC)Reply
Thanks for such a quick fix. Dralwik|Have a Chat 16:07, 24 March 2014 (UTC)Reply

Mathbot, Category Trees, Talk links on List of Mathematics Articles edit

  • I really admire your work with Mathbot. Is it being used on other subjects besides Mathematics? I would like to learn more about it. I am mainly interested in classification, so your lists of articles and categories for mathematics are good material. I would like to run mathbot on other subjects. Is that possible?
  • I have been looking at the category tree for Category:Mathematics to see if it could be improved, and how. I added the category tree boxes at the top of that page, because I think that particular tool could make it easier to navigate. It is faster to scroll down the tree, opening categories where appropriate, than to click through all the individual category pages. That way there is only one main page for Category:Mathematics -- you never leave it. I have also tried a few parent trees, starting from the bottom, but that is in worse shape. A little work could make category trees a very useful tool for wikis. I would even go so far as to suggest that a better category tree could be placed on every article, and do away with category pages altogether.
  • I was trying to think of a way to automatically open a category tree for mathematics and trace the categories to a particular page - highlighting in red, for instance. Just a thought. Or start from an article and trace the way to mathematics.
<a href="/wiki/A_Beautiful_Mind_(book)" title="A Beautiful Mind (book)">A Beautiful Mind (book)</a>
<a href="/wiki/Talk:A_Beautiful_Mind_(book)" title="Talk:A Beautiful Mind (book)"></a>
A Beautiful Mind (book)

RC711 (talk) 03:29, 13 June 2014 (UTC)Reply

Greetings.

  • The tool is not used on other projects. What exists however, is a cgi script, which make suggestions for which articles to add to a list. See Talk:List of numerical analysis topics for an example.
  • You are welcome to use the tool on other subjects. It should be easy to tweak. The code is public. But note that the code is written in Perl which is not the most readable language (I would write it in python if I had to start from scratch). See https://code.google.com/p/mathbot/. You are welcome to use it.
  • This tool requires supervision, in the form of dedicated users who examine its output and weed out articles categorized by mistake or borderline relevant ones.
  • Regarding the links to the empty talk pages, there used to be some reason for that, something about tracking both articles and talk pages from the list of recent changes. I am not sure how relevant that is anymore.
Oleg Alexandrov (talk) 06:38, 13 June 2014 (UTC)Reply
  • I looked at the code, and it is hard to read. If I had to start from scratch, it seems to take the list of mathematics category pages, extract all the links to article talk & categories, maybe portal, maybe foreign wikis, maybe templates. If there are new categories or pages or namespaces, notify someone. Write the article names to the list of names (A-Z). Write the category names to the list of categories. Make the article names list available to the random page in subject tool. Make the category tree data available to others. Manually update the master lists according to human input.
  • The problem, for a new subject, it to build the original list of categories. That can be done automatically by doing a supervised search of the category tree for a main category from the top, and searching articles and categories for keywords in the subject. A few iterations and a pretty clean list comes out. I can do this manually now. I am trying to automate steps.
  • It is possible to do an exhaustive list of all the article and category links in all the category and article pages for a given starting list, (going inside each page and looking at all wikipedia links) then manually classify the resulting links to produce a category tree dataset that can be used for navigating. I have experimented with this a few times, and get decent results. I have manually classified 100,000 links to assign useful classes, but there are probably 30,000*40= 1,200,000 links in the mathematics pages. Many are duplicates, and most point within the core mathematics area, so maybe 100,000 links to classify? Just thinking...
  • What do you think of the Template:Category tree all examples at Category:Mathematics? They are rough, but useful even now. I see opportunities to improve them.
  • I extracted the page and category links from the list of math articles A-Z and got 22673 articles, 19322 talks, and 1284 categories, not counting redlinks. I do not know how this matches with your numbers; but, if I write my own, we should be able to compare numbers at some point. I left out the 0-9 pages for now. The 0-9 yields 502 talk and 502 articles, some red links.
RC711 (talk) 13:15, 13 June 2014 (UTC)Reply
The code is messy indeed. I have not been involved in any work involving categories or scripting for many years. The hardest part of the whole process is that user judgement is required at many steps. A big dump won't make for a very useful list. Wish you a lot of luck! Oleg Alexandrov (talk) 20:16, 13 June 2014 (UTC)Reply

Mathbot seems to have missed a day in the lists of old AFDs edit

Hi,

I started a topic at Wikipedia_talk:Articles_for_deletion#August_30th_is_missing_from_lists_of_open_AFDs about August 30th being missing from Wikipedia:Articles for deletion/Old and Wikipedia:Articles for deletion/Old/Open AfDs. I don't know if Mathbot messed up somehow or if something else went wrong, but I figured you should know about it. Calathan (talk) 20:48, 10 September 2014 (UTC)Reply

I replied there. Oleg Alexandrov (talk) 05:20, 11 September 2014 (UTC)Reply

Afd log and Cent edit

I was curious why Mathbot adds {{Cent}} to the new AfD log for each day. There's some discussion on streamlining transclusions on the page to reduce load times or avoid the transclusion limit and while cent is just a single transclusion on the page I'm not sure it is useful. Thanks. Protonk (talk) 15:15, 19 September 2014 (UTC)Reply

  • I usually check the daily AfD logs and this is the main way that I get to see those centralised discussions. If I didn't see them there, I'm not sure where I'd get to see them instead. So, while the connection between them isn't obvious, I'd oppose changing this without having a good alternative in place. Andrew (talk) 15:24, 19 September 2014 (UTC)Reply

Speedy deletion nomination of Grohe edit

 

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 Grohe, requesting that it be speedily deleted from Wikipedia. This has been done under section G11 of the criteria for speedy deletion, because the page seems to be unambiguous advertising which only promotes a company, product, group, service or person and would need to be fundamentally rewritten in order to become encyclopedic. Please read the guidelines on spam and Wikipedia:FAQ/Organizations for more information.

If you think this page should not be deleted for this reason, you may contest the nomination by visiting the page and clicking the button labelled "Click here to contest this speedy deletion". This will give you the opportunity to explain why you believe the page should not be deleted. However, be aware that once a page is tagged for speedy deletion, it may be removed without delay. Please do not remove the speedy deletion tag from the page yourself, but do not hesitate to add information in line with Wikipedia's policies and guidelines. If the page is deleted, and you wish to retrieve the deleted material for future reference or improvement, then please contact the deleting administrator, or if you have already done so, you can place a request here. Jimfbleak - talk to me? 07:48, 3 October 2014 (UTC)Reply

Permission edit

Dear Mr. Alexandrov,

My name is Miklos Horvath, I'm a professor in the College of Dunaujvaros in Hungary. Now one of my duty to develop an e-learning teaching material on Engineering physics. I've found on the wikipedia website your very good and expressive gif about the damped ocscillation. Now I would like to ask your permission to reuse your gif in the e-learning matter. Naturally if You give the permission, I will mention Your name and that You are the author of the gif. Waiting for your answer,

                               Sincerely:
                                                     dr. Miklos Horvath
                                                         head of dept.
                                                Department of Natural Sciences
                                                      
                                                   College of Dunaujvaros, Hungary

— Preceding unsigned comment added by Hmik48 (talkcontribs) 09:45, 29 October 2014 (UTC)Reply

Dear Miklos. You are very welcome to use that gif and any other Wikipedia media for your purpose. Wikipedia's license allows such use, even without contacting the authors for permission. Oleg Alexandrov (talk) 15:33, 29 October 2014 (UTC)Reply

Johanson3 edit

Dear Oleg Alexandrov can you help me to close discussion that is already for 15 days live. Nominator of the discussion has real attempt to violent the article without any visible reasons.Also during this 15 days article didnt have any important comments.Thank you so much for your help Julia Williams123 — Preceding undated comment added 20:52, 5 November 2014 (UTC)Reply

I hope for your help to reach a consensus edit

Dear Oleg Alexandrov!

I hope for your help. Please discuss the situation with the editors involved and help me to reach a consensus on the talk page http://en.wikipedia.org/wiki/Talk:Navier%E2%80%93Stokes_existence_and_smoothness#Yet_another_solution_proposed.3F http://en.wikipedia.org/wiki/Talk:Navier%E2%80%93Stokes_existence_and_smoothness#Attempt_at_solution.5Bedit.5D

Happy New Year! Alexandr. --93.74.76.101 (talk) 21:02, 7 January 2015 (UTC)Reply

Applied mathematics and mathematical physics edit

Hi, Oleg! As an applied mathematician, how do you see the relation between applied math and mathematical physics? Is there mathematical physics included in applied math?--5.15.185.216 (talk) 21:59, 18 January 2015 (UTC)Reply

List of math red-links is out of date edit

Dear Oleg: Could you please have Mathbot update User:Mathbot/List of mathematical redlinks. Mark L MacDonald (talk · contribs) complained to me about it being out-of-date and thus having a large fraction of blue-links (and perhaps missing red-links). Mathbot appears to have last updated it in 2007. JRSpriggs (talk) 15:42, 6 March 2015 (UTC)Reply

JRSpriggs, yours is a valid request and I am glad the list is still being considered helpful. That being said, the amount of metaphorical dust on that code and the amount of time with a rested mind that I have is such that probably it will take some while before I can revisit this issue. Oleg Alexandrov (talk) 05:27, 25 March 2015 (UTC)Reply
I am glad that you are still around, even if relatively inactive. I hope you will keep this request in mind for when you have some spare time. Thanks. JRSpriggs (talk) 00:51, 26 March 2015 (UTC)Reply

Bot question edit

Hi Oleg,

We haven't interacted in a while, but hopefully you still remember me.

A company I used to work for, SimilarWeb, is trying to get their bot accepted to Wikipedia, for displaying information from their analytics platform. So far they haven't managed to get it approved.

Is there any help or guidance you can give on this matter? I figured your experience with Mathbot would be handy.

Thanks! -- Meni Rosenfeld (talk) 22:12, 24 March 2015 (UTC)Reply

Hey Meni, long time no see. I don't have any good advice here. My bot filled an existing need and there was no apparent conflict of interest. Oleg Alexandrov (talk) 05:32, 25 March 2015 (UTC)Reply
Ok, thanks! -- Meni Rosenfeld (talk) 14:59, 25 March 2015 (UTC)Reply

Merger discussion for Multiscale mathematics edit

 

An article that you have been involved in editing, Multiscale mathematics, has been proposed for merging with another article. If you are interested, please participate in the merger discussion. Thank you. Yaris678 (talk) 10:21, 29 March 2015 (UTC)Reply

Old AFDs edit

Seems to have stopped working. Thought you might appreciate being made aware of it, Thanks. Spartaz Humbug! 21:00, 16 April 2015 (UTC)Reply

Came here to say the same thing, looks like there's a Perl/library version configuration incompatibility. --j⚛e deckertalk 16:20, 18 April 2015 (UTC)Reply
Thank you. Sorry for not replying earlier. It is a nasty problem. It works on the bastion login server, where I just ran it again by hand. It does not work on the web server, but there when I try to compile it it complains about missing SSL or such. I will get to it by the end of the day today (PST). Oleg Alexandrov (talk) 23:21, 18 April 2015 (UTC)Reply
I put a fix. The whole issue was probably triggered by some migration or upgrade or something. Hopefully won't break again for a while. Oleg Alexandrov (talk) 06:16, 19 April 2015 (UTC)Reply

You have got mail from Martijn.Berger--Martijn.Berger (talk) 12:15, 5 May 2015 (UTC)Reply

Mathbot Most linked math articles: edit

I had a look at User:Mathbot/Most linked math articles: (and page 2 and so) but then noticed that these pages are fairly old (No I know I am older) can they be updated (or otherwise be removed) WillemienH (talk) 20:21, 21 May 2015 (UTC)Reply

Hello! Oleg

   Could you use "mathematica" to make a general manipulator for drawing mathematical object "Amoeba"?  I donot understand some steps in what you wrote down about generating the picture of Amoeba through MatLab and C++. If the coefficients of the polynomial also rely on some parameter, eg t, How could you make adjustments?  — Preceding unsigned comment added by 195.88.192.148 (talk) 17:23, 3 June 2015 (UTC)Reply 

Drum orbitals edit

Dear Oleg,

I am interested in using your drum orbitals in teaching quantum chemistry (https://en.wikipedia.org/wiki/Atomic_orbital). I wish to learn how to construct them on matlab. Can you please share the code for matlab. Best regards Noureddine — Preceding unsigned comment added by 193.95.32.201 (talk) 09:26, 10 August 2015 (UTC)Reply

Each picture should have the code under it already. Let me know if any of them is missing it. Oleg Alexandrov (talk) 12:57, 10 August 2015 (UTC)Reply

Wikipedia:Articles for deletion/Old/Open AfDs edit

Hi, thanks for updating this via Mathbot. A suggestion: integrate the link to trigger a manual update into the output? Thanks,  Sandstein  10:44, 26 September 2015 (UTC)Reply

Talkback edit

 
Hello, Oleg Alexandrov. You have new messages at Mathbot's talk page.
Message added 18:33, 9 October 2015 (UTC). You can remove this notice at any time by removing the {{Talkback}} or {{Tb}} template.Reply

Sam Walton (talk) 18:33, 9 October 2015 (UTC)Reply

Mathbot problems edit

Please see User talk:Mathbot#Bot linking to page with the wrong language. --Redrose64 (talk) 13:55, 11 October 2015 (UTC)Reply

Thanks. I replied there. Oleg Alexandrov (talk) 06:08, 12 October 2015 (UTC)Reply

Category:Unassessed-Class articles edit

Category:Unassessed-Class articles, 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. Ricky81682 (talk) 06:13, 27 October 2015 (UTC)Reply

ArbCom elections are now open! edit

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) 12:53, 23 November 2015 (UTC)Reply

Nice catch at The Revenant before the week-end. edit

Thanks for your good catch at the film article for The Revenant. Another editor also tried to change the Pawnee Indians, which you corrected, to another tribe which appears in the book version but not in the film version which identifies the Pawnee Indians in the captions included in the film. I fixed it again this morning to your correct version.

I orignially wrote the short Plot summary there before the week-end to get things started. It seemed to get alot of good responses. By this morning, however, I found that the article appeared to have been tag bombed, and the Plot section expanded to almost two times the MoS recommended length of 700 words. I spent a good deal of time on rewrites this morning and correcting the tag bombing issues, and I started a Talk page section for it as well. Can you offer a little help since the 35,000 daily page count is likely to get much, much higher when the general release of the film goes world-wide right after the New Year. May I request a short-term partial page protection for a two week period, only to get through the week of the big general release. I think its ok for regular editors but I don't think I will be able to keep up with all the unestablished accounts from the daily 35,000 page counts. If you prefer me to make the formal request for the page request then that's ok as well. Thanks for you edit on the "Pawnee Indians" from last week. Cheers. Fountains-of-Paris (talk) 16:37, 28 December 2015 (UTC)Reply

Greetings. I was just a random visitor on that page. I do understand that it is not easy to deal with so many edits/people. Things should calm down at this article after a while. Oleg Alexandrov (talk) 17:47, 28 December 2015 (UTC)Reply

D-ale noastre edit

Salutare.
Plăcut surprins să văd un moldovean prin rândurile administratorilor Wikipediei engleze. Felicitări! De fapt "te-am descoperit" mai demult, dar fără un motiv serios n-am venit aici să fac flood.
Am observat că robotul tău e scris în Perl și de aceea aș vrea să te întreb dacă ai putea modifica și adapta acest script al lui Anomie pentru a fi folosit la un job cross-wiki: să recupereze referințe din en.wiki pentru a le introduce în ro.wiki? În ro:Categorie:Pages with reference errors sunt 1300+ de articole cu referințe defecte (de regulă ref-tag scurt cu nume, fără o referință-mamă cu conținut definit), majoritatea din care ar putea fi recuperate din versiunile actuale (sau anterioare) ale articolelor corespondente din en.wiki. Ca atare e un task one time run, dar, cine știe, în decurs de jumătate de an sau un an s-ar mai putea acumula ceva articole cu această problemă. --XXN, 00:02, 20 January 2016 (UTC)Reply

Salut! Eu am mult mai putin timp in ultimii ani pentru Wikipedia de cat cu vreo 6-10 ani in urma. Dar multumesc de mesaj, si ma bucur ca mi-ai scris. Oleg Alexandrov (talk) 00:13, 20 January 2016 (UTC)Reply

History merge and bot update edit

Mathbot should check and edit Wikipedia:WikiProject Mathematics/List of mathematics articles (0–9) rather than Wikipedia:WikiProject Mathematics/List of mathematics articles (0-9). Also, since you are an admin, you should history merge the latter page into the former page to prevent any further confusion. The former page has not been edited since the latter was moved to it. GeoffreyT2000 (talk) 02:55, 22 March 2016 (UTC)Reply

Done. Thank you. I don't think it is worth merging histories, as the latter page is just a bunch of bot edits over two years. Oleg Alexandrov (talk) 22:19, 27 March 2016 (UTC)Reply

List of math articles without math rating template edit

Could user:mathbot also make and maintain a list of math articles that don't have an template:math rating template on their talk page? (then we can go through them and add them where possible) Maybe an idea to list them by category so that editors allready have an idea to which field they belong.WillemienH (talk) 10:00, 28 March 2016 (UTC)Reply

Thank you for your suggestion. I have been regretfully quite inactive on Wikipedia for very many years, and the little time I have is barely enough to still maintain occasionally some of my existing scripts. Oleg Alexandrov (talk) 15:07, 28 March 2016 (UTC)Reply

File:Oleg sock.jpg listed for discussion edit

 

A file that you uploaded or altered, File:Oleg sock.jpg, has been listed at Wikipedia:Files for discussion. 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. ᛒᚨᛊᛖ (ᛏᚨᛚᚲ) 23:29, 16 April 2016 (UTC)Reply

API change will break your bot edit

Hello,

I noticed that Mathbot has been using http:// to access the API, rather than https:// This is going to break soon, because of changes to the API. You can find more information in this e-mail message. If you need help updating your code to use https:// , then you might be able to find some help at w:en:Wikipedia:Bot owners' noticeboard or on the mailing list. Good luck, Whatamidoing (WMF) (talk) 23:18, 19 May 2016 (UTC)Reply

Please see Wikipedia:Bot_owners'_noticeboard#Last_chance_to_fix_these_bots. — xaosflux Talk 18:45, 9 June 2016 (UTC)Reply
Thanks. I put a fix. Let's hope it works. Oleg Alexandrov (talk) 03:28, 10 June 2016 (UTC)Reply

File permission problem with File:Oleg sock.jpg edit

 

Thanks for uploading File:Oleg sock.jpg. I noticed that while you provided a valid copyright licensing tag, there is no proof that the creator of the file has agreed to release it under the given license.

If you are the copyright holder for this media entirely yourself but have previously published it elsewhere (especially online), please either

  • make a note permitting reuse under the CC-BY-SA or another acceptable free license (see this list) at the site of the original publication; or
  • Send an email from an address associated with the original publication to permissions-en@wikimedia.org, stating your ownership of the material and your intention to publish it under a free license. You can find a sample permission letter here. If you take this step, add {{OTRS pending}} to the file description page to prevent premature deletion.

If you did not create it entirely yourself, please ask the person who created the file to take one of the two steps listed above, or if the owner of the file has already given their permission to you via email, please forward that email to permissions-en@wikimedia.org.

If you believe the media meets the criteria at Wikipedia:Non-free content, use a tag such as {{non-free fair use}} or one of the other tags listed at Wikipedia:File copyright tags#Fair use, and add a rationale justifying the file's use on the article or articles where it is included. See Wikipedia:File copyright tags for the full list of copyright tags that you can use.

If you have uploaded other files, consider checking that you have provided evidence that their copyright owners have agreed to license their works under the tags you supplied, too. You can find a list of files you have created in your upload log. Files lacking evidence of permission may be deleted one week after they have been tagged, as described on criteria for speedy deletion. You may wish to read Wikipedia's image use policy. If you have any questions please ask them at the Media copyright questions page. Thank you. Steel1943 (talk) 12:50, 20 May 2016 (UTC)Reply

Update needed to User:Mathbot/Changes to mathlists edit

The header of User:Mathbot/Changes to mathlists needs changing as the page it links to is inactive. I tried changing it manually but the bot just changed it back, so presumably has its own idea what the page should look like. Can this be updated, so it points to Wikipedia:WikiProject Mathematics/Article alerts instead?--JohnBlackburnewordsdeeds 10:17, 20 June 2016 (UTC)Reply

Mathematical reasoning edit

Hi, Oleg! I see that you have a background in applied mathematics and in this context I ask you how do you view the more or less stringent need to (partially) source statements based on followings from mathematical definitions like what is done in molality, mole fraction, apparent molar property, mixing ratio, etc articles along the lines of WP:CALC?--5.2.200.163 (talk) 14:16, 21 July 2016 (UTC)Reply

Help:Wikipedia:Edit summary listed at Redirects for discussion edit

 

An editor has asked for a discussion to address the redirect Help:Wikipedia:Edit summary. Since you had some involvement with the Help:Wikipedia:Edit summary redirect, you might want to participate in the redirect discussion if you have not already done so. Pppery 14:38, 18 September 2016 (UTC)Reply

Extended confirmed protection edit

Hello, Oleg Alexandrov. This message is intended to notify administrators of important changes to the protection policy.

Extended confirmed protection (also known as "30/500 protection") is a new level of page protection that only allows edits from accounts at least 30 days old and with 500 edits. The automatically assigned "extended confirmed" user right was created for this purpose. The protection level was created following this community discussion with the primary intention of enforcing various arbitration remedies that prohibited editors under the "30 days/500 edits" threshold to edit certain topic areas.

In July and August 2016, a request for comment established consensus for community use of the new protection level. Administrators are authorized to apply extended confirmed protection to combat any form of disruption (e.g. vandalism, sock puppetry, edit warring, etc.) on any topic, subject to the following conditions:

  • Extended confirmed protection may only be used in cases where semi-protection has proven ineffective. It should not be used as a first resort.
  • A bot will post a notification at Wikipedia:Administrators' noticeboard of each use. MusikBot currently does this by updating a report, which is transcluded onto the noticeboard.

Please review the protection policy carefully before using this new level of protection on pages. Thank you.
This message was sent to the administrators' mass message list. To opt-out of future messages, please remove yourself from the list. 17:49, 23 September 2016 (UTC)

User:Mathbot/Changes to mathlists edit

The bot seems to have stopped updating User:Mathbot/Changes to mathlists; it normally does so daily but the last update was October 26th.--JohnBlackburnewordsdeeds 08:36, 2 November 2016 (UTC)Reply

Thank you. I will look at this before the end of the week. Oleg Alexandrov (talk) 05:59, 3 November 2016 (UTC)Reply
The bot is now doing its thing now. I honestly don't know what happened. Maybe the server had a bad day. I see below that AfD was malfunctioning as well. Thank you for letting me know. Oleg Alexandrov (talk) 21:28, 5 November 2016 (UTC)Reply

Mathbot skipped days on AFD edit

Hi!

I noticed that the days 26 October (Wednesday), 27 October (Thursday), and 28 October (Friday) were missing from the list of old articles for deletion. I looked at Wikipedia:Articles for deletion/Administrator instructions out of curiosity (I'm not an admin) due to the missing days on the Old AFD page. On that page, under the Closing out an AfD log page heading I clicked the "here" (http://tools.wikimedia.de/~mathbot/cgi-bin/wp/afd/afd.cgi) external link ("If all deletion discussions on an AfD log page have been closed, then please go to Wikipedia:Articles for deletion/Old and remove that AfD log page (which Mathbot can do automatically by clicking here)" which ran Mathbot's script (although I wasn't aware that was what the link would do - sorry if I did anything wrong). It updated the number of open discussions for 25 October (Tuesday) - 18 October (Tuesday), and added 28 October (Friday) to the top of the Old discussions list and to this page: Wikipedia:Articles for deletion/Old/Open AfDs, but skipped 27 October (Thursday) and 26 October (Wednesday), despite the fact that there are still open discussions from both of those days. I then tried clicking on the Refresh the number of open discussions external link (http://tools.wmflabs.org/mathbot/cgi-bin/wp/afd/afd.cgi) on the Wikipedia:Articles for deletion/Old page, to see if it helped, but it did not.

I would add the missing days in manually, but the edit tab of Wikipedia:Articles for deletion/Old says "Admins: New days are added by Mathbot normally, and should NOT be added manually. Please don't remove the very last day when it has reached 0 open, as the format is specific and must be maintained." I am not an admin and don't want to mess anything up (further) but did want to bring the problem to someone's attention. I just looked at Mathbot's contributions and it looks like there weren't any for November 3rd - 4th on AFD related pages. Note: I also posted this on the Old Articles for Deletion talk page before I realized this would be a better place to post it. Thanks! Scatter89 (talk) 05:59, 5 November 2016 (UTC)Reply

Edited to add - I just looked at Wikipedia:Articles for deletion/Administrator instructions again on the Old AFD page. It says: "Closing out an AfD log page

Every day, the AfD log page (e.g. Wikipedia:Articles for deletion/Log/2024 May 6) that is more than seven days old should be moved to Wikipedia:Articles for deletion/Old (currently, this is automatically done by User:Mathbot). With few exceptions (e.g., an AFD-nominated article that qualifies for Wikipedia:Speedy keep or deletion under WP:CSD), the decision to keep or delete a page is to be implemented only after this move has been performed. If all deletion discussions on an AfD log page have been closed, then please go to Wikipedia:Articles for deletion/Old and remove that AfD log page (which Mathbot can do automatically by clicking here). Then, go to Wikipedia:Archived deletion discussions and paste that AfD log page at the top in the appropriate month (currently, this is also automatically done by Mathbot)." However on the Wikipedia:Archived deletion discussions page, achieved discussions are listed under October 2016 for October 1 - 18, and then October 19 - 25 are not listed (they aren't missing; those days still have open discussions), and then October 26 and 27 are listed in list of archived deletion discussions despite having open discussions.) Odd. Hope that helps! Scatter89 (talk) 06:47, 5 November 2016 (UTC)Reply

Scatter89, thanks. I don't know what happened, but now it looks as if things are back on track. You can let me know if the bot misbehaves again. Oleg Alexandrov (talk) 20:33, 5 November 2016 (UTC)Reply
Yes, it seems to be working well now. Thanks! Scatter89 (talk) 06:07, 6 November 2016 (UTC)Reply

Mathbot down? edit

Hi Oleg. Mathbot appears to be down, having not edited in 2 days. Could you take a look? Thanks. Sam Walton (talk) 21:09, 11 November 2016 (UTC)Reply

Thank you for letting me know. Last time I did not dig deep enough. The Tools server is being upgraded, and my dependencies needed to be rebuilt. Done now. I hope it works. Oleg Alexandrov (talk) 03:55, 12 November 2016 (UTC)Reply

Is Mathbot down again? I'm trying to "Refresh the number of open [AFD] discussions", using this link [10], and I get an error.

Software error:

[Mon Nov 28 17:06:42 2016] afd.cgi: Perl API version v5.18.0 of Crypt::SSLeay does not match v5.14.0 at /data/project/mathbot/public_html/wp/modules/lib/perl5/x86_64-linux-gnu-thread-multi/Crypt/SSLeay.pm line 17.

[Mon Nov 28 17:06:42 2016] afd.cgi: Compilation failed in require at /data/project/mathbot/public_html/wp/modules/MediaWiki/Bot.pm line 93.

[Mon Nov 28 17:06:42 2016] afd.cgi: BEGIN failed--compilation aborted at /data/project/mathbot/public_html/wp/modules/MediaWiki/Bot.pm line 93.

[Mon Nov 28 17:06:42 2016] afd.cgi: Compilation failed in require at /data/project/mathbot/public_html/wp/modules/bin/perlwikipedia_utils.pl line 7.

[Mon Nov 28 17:06:42 2016] afd.cgi: BEGIN failed--compilation aborted at /data/project/mathbot/public_html/wp/modules/bin/perlwikipedia_utils.pl line 7.

Compilation failed in require at /data/project/mathbot/public_html//cgi-bin/wp/afd/afd.cgi line 17.

Thanks, Natg 19 (talk) 17:09, 28 November 2016 (UTC)Reply

Natg 19, thank you. The problem is due to the fact that the Tools web server runs an older version of Ubuntu than the main system. Unfortunately I spent quite some time on this and could not figure out how to connect to an old Ubuntu system that also has a compiler that would compile that dependency causing the error above. I will keep on digging. It may take up to a week as I have quite limited free time. Thank you for letting me know. Oleg Alexandrov (talk) 07:02, 29 November 2016 (UTC)Reply
I could not make it work, due to the fact that I was unable to find an Ubuntu 12 development machine on the toolserver to compile the dependency. I'll have to turn off the cgi script. The bot will still run, I set it now to doing it every hour, but the user won't be able to click on the link to refresh the bot. This will be temporary. Per https://wikitech.wikimedia.org/wiki/Tools_Precise_deprecation in a few months all of the tools servers will run the newer Ubuntu, then I will bring back the link to the CGI script. Oleg Alexandrov (talk) 07:33, 5 December 2016 (UTC)Reply

Two-Factor Authentication now available for admins edit

Hello,

Please note that TOTP based two-factor authentication is now available for all administrators. In light of the recent compromised accounts, you are encouraged to add this additional layer of security to your account. It may be enabled on your preferences page in the "User profile" tab under the "Basic information" section. For basic instructions on how to enable two-factor authentication, please see the developing help page for additional information. Important: Be sure to record the two-factor authentication key and the single use keys. If you lose your two factor authentication and do not have the keys, it's possible that your account will not be recoverable. Furthermore, you are encouraged to utilize a unique password and two-factor authentication for the email account associated with your Wikimedia account. This measure will assist in safeguarding your account from malicious password resets. Comments, questions, and concerns may be directed to the thread on the administrators' noticeboard. MediaWiki message delivery (talk) 20:33, 12 November 2016 (UTC)Reply

A new user right for New Page Patrollers edit

Hi Oleg Alexandrov.

A new user group, New Page Reviewer, has been created in a move to greatly improve the standard of new page patrolling. The user right can be granted by any admin at PERM. It is highly recommended that admins look beyond the simple numerical threshold and satisfy themselves that the candidates have the required skills of communication and an advanced knowledge of notability and deletion. Admins are automatically included in this user right.

It is anticipated that this user right will significantly reduce the work load of admins who patrol the performance of the patrollers. However,due to the complexity of the rollout, some rights may have been accorded that may later need to be withdrawn, so some help will still be needed to some extent when discovering wrongly applied deletion tags or inappropriate pages that escape the attention of less experienced reviewers, and above all, hasty and bitey tagging for maintenance. User warnings are available here but very often a friendly custom message works best.

If you have any questions about this user right, don't hesitate to join us at WT:NPR. (Sent to all admins).MediaWiki message delivery (talk) 13:48, 15 November 2016 (UTC)Reply

ArbCom Elections 2016: Voting now open! edit

Hello, Oleg Alexandrov. 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

Romanian history - aviator Constantin Cantacuzino edit

Oleg,

Did you know Cantacuzino rescued 1274 American prisoners of war held in Romania?

I decided to share this with you because just one day after editing the Wikipedia entry for Mr. Cantacuzino, I learned that you are my assigned contact on Wikipedia and that you are Romanian. So I thought you might be interested in this small piece of Romanian history. I realize how poorly the Wehrmacht treated its Romanian conscripts (e.g., using them as cannon fodder at the battle of Stalingrad. So it was nice to learn about Cantacuzino's valor.

https://en.m.wikipedia.org/wiki/Constantin_Cantacuzino_(aviator)

I edited the page by replacing what I felt was an irrelevant fact (how long it took to fly from Romania to Italy) with a more relevant fact (the number of American POWs rescued and the number and type of planes - B-17s - used to transport them out of Romania). I cited my source. Regards, David19 (talk) 17:19, 8 January 2017 (UTC)Reply

Administrators' newsletter - February 2017 edit

News and updates for administrators from the past month (January 2017). This first issue is being sent out to all administrators, if you wish to keep receiving it please subscribe. Your feedback is welcomed.

  Administrator changes

  NinjaRobotPirateSchwede66K6kaEaldgythFerretCyberpower678Mz7PrimefacDodger67
  BriangottsJeremyABU Rob13

  Guideline and policy news

  Technical news

  • When performing some administrative actions the reason field briefly gave suggestions as text was typed. This change has since been reverted so that issues with the implementation can be addressed. (T34950)
  • Following the latest RfC concluding that Pending Changes 2 should not be used on the English Wikipedia, an RfC closed with consensus to remove the options for using it from the page protection interface, a change which has now been made. (T156448)
  • The Foundation has announced a new community health initiative to combat harassment. This should bring numerous improvements to tools for admins and CheckUsers in 2017.

  Arbitration

  Obituaries

  • JohnCD (John Cameron Deas) passed away on 30 December 2016. John began editing Wikipedia seriously during 2007 and became an administrator in November 2009.

13:38, 1 February 2017 (UTC)

Running on Beta edit

If if it's not too much trouble, could you configure MathBot to also do the 'Initializing a new AfD day' task on https://en.wikipedia.beta.wmflabs.org/ (same page names as production)? We do QA testing for PageTriage there before it hits production, and that would save a bit of time. Mattflaschen-WMF (talk) 00:03, 7 February 2017 (UTC)Reply

Done. You can see the bot contribs. Hopefully you will mirror the exact convention which already exists on this (non-beta) en.wikipedia, then the bot will simply do the same thing on beta as here. Oleg Alexandrov (talk) 05:55, 7 February 2017 (UTC)Reply
Thanks! I appreciate it. It does indeed use the same AfD page name conventions, and it should use all the same other conventions (there is on-wiki JS config which has to be manually synced currently). I won't ask you to do anything different on Beta. If we ran into an inconsistency, that would just indicate we need to re-sync some part of the Beta config or templates. Mattflaschen-WMF (talk) 01:12, 8 February 2017 (UTC)Reply

Today's Wikipedian 10 years ago edit

Awesome
 
Ten years!

--Gerda Arendt (talk) 08:03, 20 May 2017 (UTC)Reply

Gerda Arendt (talk · contribs), very sweet, thank you. I must honestly say though that, in retrospect, I should have sank a little less of my young life into fixing typos and chasing vandals. :) Oleg Alexandrov (talk) 19:10, 20 May 2017 (UTC)Reply
I understand, I think ;) - both are things I rarely do, - I wanted to fill one red link, stress on one, and it created another, and that another ... no end in sight. I also "inherited" the Precious list which Phaedriel started, - pure pleasure! And so easy to spread a bit of joy on a daily basis. I admire Phaedrials choice of poems! I do it the simple way ;) - 7 July 2019 is your next anniversary, DYK? --Gerda Arendt (talk) 19:51, 20 May 2017 (UTC)Reply
... which is today --Gerda Arendt (talk) 07:47, 7 July 2019 (UTC)Reply
Thank you. I can't even remember my password anymore. :) Wish you a lot of fun editing. :) 24.6.174.30 (talk) 16:15, 7 July 2019 (UTC)Reply

Survey Invite edit

I'm working on a study of political motivations and how they effect editing. I'd like to ask you to take a survey. The survey should take 5 minutes. Your survey responses will be kept private. Our project is documented at https://meta.wikimedia.org/wiki/Research:Wikipedia_%2B_Politics.

Survey Link: http://uchicago.co1.qualtrics.com/jfe/form/SV_80J3UDCpLnKyWTH?Q_DL=1R1zIzg92FHco4d_80J3UDCpLnKyWTH_MLRP_4ILSSxVZwgUVHMh&Q_CHL=gl

I am asking you to participate in this study because you are a frequent editor of pages on Wikipedia that are of political interest. We would like to learn about your experiences in dealing with editors of different political orientations.

Sincere thanks for your help! Porteclefs (talk) 16:54, 24 June 2017 (UTC)Reply

Nomination for deletion of Template:Welcome/Proposed version 1 edit

 Template:Welcome/Proposed version 1 has been nominated for deletion. You are invited to comment on the discussion at the template's entry on the Templates for discussion page. Ten Pound Hammer(What did I screw up now?) 05:52, 28 June 2017 (UTC)Reply

Mathbot down? edit

Hi there. I noticed Mathbot has not been running since 3 am (UTC) and has not generated the old AFD logs. Is it down? Regards SoWhy 14:57, 20 July 2017 (UTC)Reply

I checked, and it looks to be working. Thank you for the notification. I put back the link which allows users to run the bot interactively on AfD/Old. That was broken for a while due to system issues on the server, but now it is working again. Oleg Alexandrov (talk) 21:56, 22 July 2017 (UTC)Reply

File:Composite trapezoidal rule illustration.svg edit

Hi, Oleg Alexandrov. Thanks for your image commons:File:Composite trapezoidal rule illustration.svg. I notice that one of the vertical lines in this image is solid when I believe you intended it to be dashed. Would you be able to update that image to fix it? I could probably do it manually but I see you are using illustrator and you probably wish to fix your own personal master copy. Jason Quinn (talk) 18:15, 27 July 2017 (UTC)Reply

Jason Quinn, thank you. I believe I made the SVG image right, and it exported right to png, as you can see at commons:File:Composite trapezoidal rule illustration.png. However, the SVG rendered badly, it could have been a bug in inkscape back then. I fixed it now using an online editor (a very nifty one, btw, http://www.drawsvg.org/drawsvg.html). Oleg Alexandrov (talk) 01:26, 30 July 2017 (UTC)Reply

Invitation to Admin confidence survey edit

Hello,

Beginning in September 2017, the Wikimedia Foundation Anti-harassment tool team will be conducting a survey to gauge how well tools, training, and information exists to assist English Wikipedia administrators in recognizing and mitigating things like sockpuppetry, vandalism, and harassment.

The survey should only take 5 minutes, and your individual response will not be made public. This survey will be integral for our team to determine how to better support administrators.

To take the survey sign up here and we will send you a link to the form.

We really appreciate your input!

Please let us know if you wish to opt-out of all massmessage mailings from the Anti-harassment tools team.

For the Anti-harassment tools team, SPoore (WMF), Community Advocate, Community health initiative (talk) 20:56, 14 September 2017 (UTC)Reply

Possible merger candidate? edit

You are a major contributor to two articles:

A reader contacted Wikimedia (ticket:2017072510014582) suggesting that there was enough overlap in material that these two article should be merged. Do you have thoughts on this proposal?--S Philbrick(Talk) 16:44, 10 October 2017 (UTC)Reply

User:Sphilbrick, the standard way I recall of doing this kind of thing is to put a proposed merge note on top of the articles in question. I happen to think they should not be merged. It is true that a unitary operator is also a unitary transform, but unitary operators are a very important special case, much more studied than unitary transforms, from what I know, and with a lot more interesting properties. The analogy here would be between the article on cars, and the one on electric cars, for example. Certainly the latter deserves its own article. Oleg Alexandrov (talk) 03:42, 11 October 2017 (UTC)Reply
I'll be happy to defer to your judgement. I pointed the reader to this discussion, so they may weigh in. Thanks for responding.--S Philbrick(Talk) 12:52, 11 October 2017 (UTC)Reply

ArbCom 2017 election voter message edit

Hello, Oleg Alexandrov. 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

Photo Credit edit

Hi Oleg! I am using a few of your Public Domain images in the newest edition of Hiking the San Francisco Bay Area (Falcon Guides). I have credited you as the photographer with just your name: Oleg Alexandrov. Do you wish me to include any kind of web address in the credit? If so, could you please write me back to let me know the verbiage to include.

Thanks for your lovely photos and making them Public Domain to share them with the world!

Sincerely, Linda Hamilton Author — Preceding unsigned comment added by Storiestolast (talkcontribs) 19:46, 12 December 2017 (UTC)Reply

Linda, thank you for letting me know. There is no need for anything extra in the credits. I am glad you find the pictures useful. Oleg Alexandrov (talk) 21:03, 12 December 2017 (UTC)Reply

Afd bottom edit

I edited {{Afd bottom}}. The appearance is unchanged. —Anomalocaris (talk) 16:25, 30 March 2018 (UTC)Reply

Spelling reform edit

User:Mathbot/Recent changes, because it is not a regular article, probably should not be in Category:English-language spelling reform advocates. Or is this a list of people who advocated such spelling reform? In that case you could put the articles on said people into said category.--Solomonfromfinland (talk) 21:41, 15 April 2018 (UTC)Reply

You are so right. :) I think that was because of a bot bug. I fixed it now. I hope it won't come back. Oleg Alexandrov (talk) 22:38, 15 April 2018 (UTC)Reply

Notice of Mathbot related question edit

Please see User talk:Mathbot/Changes to mathlists#Context needed and reply there. Thanks. - dcljr (talk) 20:26, 23 April 2018 (UTC)Reply

Point-source wave interference -- sent you an email Oleg edit

Hello Oleg,

I sent you a Wiki email message about these interference patterns for my research and would be glad if you have time to respond.

best, Dr. DP Davip7 (talk) 10:34, 25 April 2018 (UTC)Reply

I will. :) Oleg Alexandrov (talk) 17:59, 25 April 2018 (UTC)Reply

Proportion edit

Hi, Oleg Alexandrov! As a mathematician, could you chime in Talk:Proportion. Thanks. Mikus (talk) 17:35, 26 April 2018 (UTC)Reply

You can raise this on Wikipedia talk:WikiProject Mathematics, if you wish. Oleg Alexandrov (talk) 17:44, 26 April 2018 (UTC)Reply

Would you like acknowledgement for your animated stretched membrane? edit

 

This file allowed me to explain quantum entanglement without advanced quantum mechanics. See v:Draft:A card game for Bell's theorem and its loopholes/Narrow tube quantum entanglement#Non-interacting_particles_in_a_narrow_tube

Would you like me to acknowledge you in the paper?--13:27, 15 May 2018 (UTC)

You don't have to. I am glad this is useful. Oleg Alexandrov (talk) 17:25, 15 May 2018 (UTC)Reply

USA and US edit

Can you change Mathbot to use US rather than USA on the List of Mathematicians pages, please? This is what the Manual of Style suggests.

All the best: Rich Farmbrough, 21:37, 26 August 2018 (UTC).Reply

List of mathematicians edit

I modified all these articles yesterday to add a DEFAULTSORT, so that they would list correctly in Category:Mathematics-related lists, but Mathbot has removed all those changes. Why? Colonies Chris (talk) 17:38, 21 September 2018 (UTC)Reply

Looking for Category expert help edit

Greetings Oleg Alexandrov, In addition to doing article assessments, I've been contributing input for daily WP 1.0 bot assessment processing.

There are on-going issues with the bot stalling, repeating WP deadlocks, not creating daily log files.

Details are at Wikipedia talk:Version 1.0 Editorial Team/Index#Conflicting project tags.

Hoping you are able to help solve the complex issue of Conflicting project tags. Regards, JoeHebda (talk) 01:08, 24 October 2018 (UTC)Reply

ArbCom 2018 election voter message edit

Hello, Oleg Alexandrov. 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

Wikipedia:List of mathematics articles listed at Redirects for discussion edit

 

An editor has asked for a discussion to address the redirect Wikipedia:List of mathematics articles. Since you had some involvement with the Wikipedia:List of mathematics articles redirect, you might want to participate in the redirect discussion if you have not already done so. UnitedStatesian (talk) 18:07, 22 December 2018 (UTC)Reply

Mathbot is down edit

Hasn't edited since December 20. Galobtter (pingó mió) 13:11, 24 December 2018 (UTC)Reply

My guess is that the issue is the bot's password is less than 10 characters long, as the error when running the bot manually is "Error is: Can't log in in as Mathbot! Result was '1'." (the WMF recently changed the requirements for bot password lengths and deployed it on the Thursday December 20) Galobtter (pingó mió) 13:13, 24 December 2018 (UTC)Reply

Thank you. I changed the password. It works now. Oleg Alexandrov (talk) 18:37, 24 December 2018 (UTC)Reply

Source code for Snell's law illustration edit

Hello Oleg Alexandrov,

I really liked your animated illustration of Snell's Law at https://commons.wikimedia.org/wiki/File:Snells_law_wavefronts.gif

Would it be possible to upload all the Matlab code for this? There seems to just be a fragment at https://commons.wikimedia.org/wiki/File:Snells_law_wavefronts.gif#Source_code

For instance you have uploaded Matlab source code for your related figure at https://commons.wikimedia.org/wiki/File:Spherical_wave2.gif

Thanks!

2606:FA00:800:1041:18C3:7B8B:9F2C:C7F5 (talk) 18:58, 24 January 2019 (UTC)Reply

Howdy. The code is there. I think recently they added a scrollbar feature which makes it hard to see what is going on. If the scrollbar on the right does not work for you, you can just edit that page (without saving it) and the code will show up. Let me know if it works. Oleg Alexandrov (talk) 19:29, 10 February 2019 (UTC)Reply

User:Mathbot/Recent changes edit

This page is not about a critic of Judaism, but it is still in the category Category:Critics of Judaism because the bot adds that category to that page.

It should handle categories differently: it should add [[:Category:Critics of Judaism]] and not [[Category:Critics of Judaism]]. That way, the page contains a link to the category instead of being in the category. --Hob Gadling (talk) 15:52, 3 April 2019 (UTC)Reply

Hob Gadling (talk · contribs), thanks a lot. I put a fix for this. Oleg Alexandrov (talk) 16:24, 3 April 2019 (UTC)Reply

ArbCom 2019 special circular edit

 
Administrators must secure their accounts

The Arbitration Committee may require a new RfA if your account is compromised.

View additional information

This message was sent to all administrators following a recent motion. Thank you for your attention. For the Arbitration Committee, Cameron11598 02:23, 4 May 2019 (UTC)Reply

Mathbot error page edit

I'm receiving an error page on attempting to use Mathbot to refresh open AfD discussions. It returns a 503 with the following error text:

No webservice

The URI you have requested, /mathbot/cgi-bin/wp/afd/afd.cgi, is not currently serviced.

If you have reached this page from somewhere else... This URI is part of the mathbot tool, maintained by Oleg Alexandrov .

That tool might not have a web interface, or it may currently be disabled.

If you're pretty sure this shouldn't be an error, you may wish to notify the tool's maintainers (above) about the error and how you ended up here.

Is Mathbot for AfD broken or not longer usable? Seraphimblade Talk to me 06:02, 4 May 2019 (UTC)Reply

Seraphimblade (talk · contribs), thank you for the report. The bot is doing fine, just the access to it has been stopped for some reason. I filed a report (https://phabricator.wikimedia.org/T222547). Let us hope they get back to us. Oleg Alexandrov (talk) 20:36, 5 May 2019 (UTC)Reply

Administrator account security (Correction to Arbcom 2019 special circular) edit

ArbCom would like to apologise and correct our previous mass message in light of the response from the community.

Since November 2018, six administrator accounts have been compromised and temporarily desysopped. In an effort to help improve account security, our intention was to remind administrators of existing policies on account security — that they are required to "have strong passwords and follow appropriate personal security practices." We have updated our procedures to ensure that we enforce these policies more strictly in the future. The policies themselves have not changed. In particular, two-factor authentication remains an optional means of adding extra security to your account. The choice not to enable 2FA will not be considered when deciding to restore sysop privileges to administrator accounts that were compromised.

We are sorry for the wording of our previous message, which did not accurately convey this, and deeply regret the tone in which it was delivered.

For the Arbitration Committee, -Cameron11598 21:04, 4 May 2019 (UTC)Reply

Wikipedia:Articles for deletion/Old edit

Hi there. On Wikipedia:Articles for deletion/Old, there is a handy link that is supposed to trigger Mathbot to refresh the number of open AfDs listed on the page. However, clicking on that link only seems to bring up a page with a bunch of seemingly meaningless text, and does not trigger the bot to refresh the page outside of its hourly update schedule. Any idea what's caused that link to break? ‑Scottywong| verbalize _ 02:19, 30 July 2019 (UTC)Reply

Howdy. This is discussed a couple of sections earlier. Basically the web server on which the cgi script runs when triggered by the user uses a different perl version than the sever on which this script runs on its own every hour. I cannot access the web server to debug this, and nobody seems willing to help. Hence I turned off the ability for the user to run the cgi script manually (and I also cleaned the meaningless text). Hence, one will have to wait for the bot to run each hour on its own. Sorry I can't be of more help. Oleg Alexandrov (talk) 16:50, 30 July 2019 (UTC)Reply

Happy number edit

Hi, if you have time can you check a recent string of edits to the above article? I'm not great at maths. Many thanks, Denisarona (talk) 08:20, 21 August 2019 (UTC)Reply

Those edits look reasonably legit. You are always welcome to bring this up at Wikipedia talk:WikiProject Mathematics. Oleg Alexandrov (talk) 15:32, 21 August 2019 (UTC)Reply

"Help:Wikipedia:Edit summary" listed at Redirects for discussion edit

 

An editor has asked for a discussion to address the redirect Help:Wikipedia:Edit summary. Since you had some involvement with the Help:Wikipedia:Edit summary redirect, you might want to participate in the redirect discussion if you wish to do so. UnitedStatesian (talk) 05:18, 28 October 2019 (UTC)Reply

ArbCom 2019 election voter message edit

 Hello! Voting in the 2019 Arbitration Committee elections is now open until 23:59 on Monday, 2 December 2019. 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 2019 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) 00:04, 19 November 2019 (UTC)Reply

Discussion of Mathbot Linter errors edit

In case you do not look at your notifications, please see this Mathbot-related discussion. Thanks. – Jonesey95 (talk) 00:24, 25 January 2020 (UTC)Reply

I put a fix and commented on that page. Thanks. Oleg Alexandrov (talk) 20:31, 26 January 2020 (UTC)Reply

Bot page renamed edit

Could you please update your bot for Wikipedia talk:Archived deletion discussions#Requested move 1 April 2020? * Pppery * it has begun... 01:03, 17 May 2020 (UTC)Reply

I don't see any consensus on that. Just two people commented. This is a large change. You may want to bring this up where the deletion community hangs out. Oleg Alexandrov (talk) 06:14, 17 May 2020 (UTC)Reply
The requested move was closed by King of Hearts with consensus to move. You could take this to Move Review if you want to, but you should not be unilaterally vetoing changes that clearly follow the established processes. * Pppery * it has begun... 14:48, 17 May 2020 (UTC)Reply
This is a bot page which I don't know if anybody even uses. Either way, more discussion is welcome. I am not vetoing anything. It is good to give more folks a chance to discuss things. I put a note at Wikipedia_talk:Articles_for_deletion asking for comments. Oleg Alexandrov (talk) 18:30, 17 May 2020 (UTC)Reply
Since Oleg is the one who would have to do the work, he has a right to veto it. Or has the thirteenth amendment been repealed? JRSpriggs (talk) 20:09, 17 May 2020 (UTC)Reply
That is a bit dramatic. :) It is a bot page. The new name looks marginally better, if perhaps overly verbose. There is some work in testing such things, that is why I am asking for a bit of input. Oleg Alexandrov (talk) 21:06, 17 May 2020 (UTC)Reply

It appears nobody else cares, given that your post has received no response despite being present for over two weeks. * Pppery * it has begun... 16:06, 4 June 2020 (UTC)Reply

I renamed the page and updated the bot. The issue is minor, obviously, and I don't know if anybody uses that page to start with, but I agree that the new name is slightly better. Oleg Alexandrov (talk) 16:27, 4 June 2020 (UTC)Reply

"Division algorithm for integers" listed at Redirects for discussion edit

  A discussion is taking place to address the redirect Division algorithm for integers. The discussion will occur at Wikipedia:Redirects for discussion/Log/2020 June 9#Division algorithm for integers until a consensus is reached, and anyone, including you, is welcome to contribute to the discussion. 1234qwer1234qwer4 (talk) 22:58, 9 June 2020 (UTC)Reply

"Continuous linear functional" listed at Redirects for discussion edit

  A discussion is taking place to address the redirect Continuous linear functional. The discussion will occur at Wikipedia:Redirects for discussion/Log/2020 June 19#Continuous linear functional until a consensus is reached, and anyone, including you, is welcome to contribute to the discussion. 1234qwer1234qwer4 (talk) 10:04, 19 June 2020 (UTC)Reply

High WP 1.0 bot login rate edit

Hello!

Your bot is logging into Wikimedia projects over 13K times in a 48H period, which is excessive, and shouldn't be necessary.

See https://phabricator.wikimedia.org/T256533#6261565

Can you do anything about this?

https://www.mediawiki.org/wiki/API:Login#Additional_notes

>If you are sending a request that should be made by a logged-in user, add assert=user parameter to the request you are sending in order to check whether the user is logged in. If the user is not logged-in, an assertuserfailed error code will be returned.

Reedy (talk) 14:27, 27 June 2020 (UTC)Reply

Actually WP 1.0 bot has not been mine for a while. Ask its current operators. My own bot, mathbot is still on the list but is a little better behaved. I will take a look at some point soon. Oleg Alexandrov (talk) 18:46, 27 June 2020 (UTC)Reply
I reduced the numbers of logins somewhat. You can see if there is any change. Yet I am suspicious of the numbers you posted. It should have been a few dozen attempts at logging in per day, not thousands. I looked at mycode and its dependencies. Either your metric is not computed right, or something is not implemented correctly deep in the innards of the Perl MediaWiki framework that I am using. Oleg Alexandrov (talk) 23:17, 27 June 2020 (UTC)Reply

Help with MFEM page edit

Dear Oleg Alexandrov,

Apologies for contacting you out of the blue.

We are looking for help with improving the accuracy and neutrality of the page for MFEM, an open-source finite element software library for solving partial differential equations similar to other projects on List_of_finite_element_software_packages.

Do you know somebody that can help with that?

For relevant discussion see the MFEM talk page, Talk:MFEM#Help_us_improve_the_MFEM_page, and this conversation: User_talk:MrOllie#Edits_of_MFEM_page.

Thank you in advance for your help!

Tzanio (talk) 02:00, 10 July 2020 (UTC)Reply

Mathbot still has some problems edit

Hi Oleg, I just wanted to report a slight hiccup in Mathbot. It's been reporting the same three mathematicians added for the past five days. Thanks for the work you have put into this. --Bill Cherowitzo (talk) 21:32, 14 July 2020 (UTC)Reply

Thank you for letting me know. I did not have time to look at this last week. Will try to get to it this week. Oleg Alexandrov (talk) 16:37, 20 July 2020 (UTC)Reply
I put a fix. Sorry it took so long. Oleg Alexandrov (talk) 01:19, 10 August 2020 (UTC)Reply

Mathbot/AfD uses D M rather than M D edit

I noticed that Mathbot created AfD log pages wherein the header links to prior and future logs as "12 October" and "14 October" (example) whereas all the other XfD venues use "October 12" and "October 14" (TfD, CfD, FfD, RfD). I was planning on making some templates for these should a bot ever go down, but do you think AfD's header should match the others? That would make sense to me. ~ Amory (utc) 10:54, 13 October 2020 (UTC)Reply

Good observation. I guess many years ago when I started the bot I just copied whatever preexisting format there was. Fixed now. See Wikipedia:Articles_for_deletion/Log/2020_October_17. Thanks. Oleg Alexandrov (talk) 16:15, 13 October 2020 (UTC)Reply

"Continuously differentiable function" listed at Redirects for discussion edit

  A discussion is taking place to address the redirect Continuously differentiable function. The discussion will occur at Wikipedia:Redirects for discussion/Log/2020 October 17#Continuously differentiable function until a consensus is reached, and anyone, including you, is welcome to contribute to the discussion. 𝟙𝟤𝟯𝟺𝐪𝑤𝒆𝓇𝟷𝟮𝟥𝟜𝓺𝔴𝕖𝖗𝟰 (𝗍𝗮𝘭𝙠) 21:21, 17 October 2020 (UTC)Reply

Category:Lists of mathematics articles edit

  Moved from User talk:Mathbot

Hi! I created this category yesterday to tidy up Category:WikiProject Mathematics and populated it, but your bot reverted me. Is there any chance you could get it to use the new category (and sort key)? Thanks — Martin (MSGJ · talk) 14:55, 15 October 2020 (UTC)Reply

@Oleg Alexandrov: — Martin (MSGJ · talk) 17:10, 15 October 2020 (UTC)Reply
@MSGJ:: Yeah, the bot has its own thinking. Not sure about adding the new Category:Lists of mathematics articles, as the parent category was not so big. You can try asking at Wikipedia_talk:WikiProject_Mathematics what the sensible thing to do is, and then write on my talk page. That way I get an email. The "ping" method is less reliable of reaching folks who are not present here each day. Oleg Alexandrov (talk) 17:48, 16 October 2020 (UTC)Reply

There is agreement that a subcategory is warranted, and some further discussion on possible names. Please see Wikipedia talk:WikiProject Mathematics#Category:Lists of mathematics articles. I will leave it a few more days to reach agreement. In the meantime it would be great if you could get your bot to stop edit warring with me :) Could it leave the categories alone and just update the content on the page? — Martin (MSGJ · talk) 11:59, 20 October 2020 (UTC)Reply

Well, the poor bot is doing what it's got to do. When the final names are decided you can let me know. I agree with the point that they should be in the Wikipedia: namespace rather than in the main namespace. Oleg Alexandrov (talk) 16:14, 20 October 2020 (UTC)Reply
There have been no further comments / suggestions. Please use Category:WikiProject Mathematics list of articles, but can you change the sortkey (example), otherwise everything gets sorted under "M". Thanks — Martin (MSGJ · talk) 21:33, 22 October 2020 (UTC)Reply
@MSGJ:: Done, for both mathematics and mathematician articles. Not sure why the former are in the Wikipedia: namespace and the latter in the main namespace. Oleg Alexandrov (talk) 18:04, 24 October 2020 (UTC)Reply
I was going to ask you about that :) I think they should be in project space. What would the bot do if I moved them? — Martin (MSGJ · talk) 20:01, 25 October 2020 (UTC)Reply
The bot is not too smart, as you may guess. You may want to ask on the math wikiproject page again. Those lists have been around almost since Wikipedia's founding. Oleg Alexandrov (talk) 04:43, 26 October 2020 (UTC)Reply
The proposal is already there, but I'll leave it a few days in case anyone wants to comment — Martin (MSGJ · talk) 12:44, 26 October 2020 (UTC)Reply

Mathematicians edit

I have a similar request to the above with List of mathematicians (A), etc. I tried to categorise these into Category:Lists of mathematicians which seems more logical, but again was reverted by the bot. — Martin (MSGJ · talk) 12:02, 20 October 2020 (UTC)Reply

See above. Oleg Alexandrov (talk) 23:17, 24 October 2020 (UTC)Reply

Please can we:

  1. Move the articles to Wikipedia:WikiProject Mathematics/List of mathematicians (A), etc.
  2. Put them in a new category Category:WikiProject Mathematics list of mathematicians, which will be a subcategory of Category:WikiProject Mathematics list of articles
  3. Use a sortkey of A, B, etc.

I can do number 1 if that would help. Thanks — Martin (MSGJ · talk) 23:15, 28 October 2020 (UTC)Reply

@MSGJ: Sorry for the delayed response. I changed the categories. The rename will be a pain. I guess you dearly want this done so you can go ahead with it. It is good we coordinate on this. I can turn off the bot while you do the renames (do let me know a day when you plan that), and then I can restart the bot with the new names. Otherwise the bot will likely do something unpredictable. Oleg Alexandrov (talk) 03:51, 4 November 2020 (UTC)Reply
Okay I will do it tomorrow then. Thanks! — Martin (MSGJ · talk) 14:05, 4 November 2020 (UTC)Reply
@MSGJ:: I turned off the bot for now. When you are done I will resume it on the new pages. Oleg Alexandrov (talk) 06:42, 5 November 2020 (UTC)Reply
All done. Thanks for helping with this — Martin (MSGJ · talk) 20:47, 5 November 2020 (UTC)Reply
@MSGJ: I updated the bot. One may want to fix also Template:MathTopicTOC and take a closer look at the redirects. Oleg Alexandrov (talk) 17:50, 6 November 2020 (UTC)Reply
I have updated the template. I wasn't sure what to do about the redirects. I suspect they are all orphaned now, but WP:R2 doesn't apply. — Martin (MSGJ · talk) 22:40, 7 November 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:19, 24 November 2020 (UTC)Reply

Need new bot password for WP 1.0 Bot edit

Hello Oleg, I (along with Kelson) am the current maintainer of the WP 1.0 Bot. We've made a lot of progress with the bot over the past two years, but long story short: we need your help. I accidentally leaked the "bot password" of the bot on Github. I don't have access to the login password for the bot, but the bot password was revoked and we need to log in and create a new one. According to the discussion on this phabricator ticket, the bot's email address is your email. Can you help me login and create a new bot password? Thanks! audiodude (talk) 23:51, 8 December 2020 (UTC)Reply

I tried to reset my password, but I am not getting an email with instructions saying how I should reset it, and I waited at least 5 minutes. I don't even recall if I am still the owner of this account, so if it is my email address that figures on the record, as I passed on the responsibility for it a long time ago.
Even if I was able to reset the password, I don't know how I can share that with you folks in a way which is safe and guaranteed to go to the right people.
Can the Wikipedia system folks take care of this somehow? Oleg Alexandrov (talk) 00:16, 9 December 2020 (UTC)Reply
Thanks for the quick reply, and for trying to reset the password. As stated on the Phabricator task, the email is a .edu email address, if that helps. I'm crafting a reply on Phabricator right now and will let you know if there's anything else you can do. Thanks! audiodude (talk) 01:47, 9 December 2020 (UTC)Reply
The only address I ever used on anything Wikipedia-related is my gmail address, so at gmail.com.
Likely you going around asking previous operators is not the best way of doing it. I'd think the bot password should be declared unreachable and the right folks who deal with such issues should be notified. Oleg Alexandrov (talk) 02:08, 9 December 2020 (UTC)Reply

Mathbot not working for a few hours edit

Just poking you about Mathbot, which hasn't run on AfD since 11:00 UTC yesterday. Do you know what's up? Vaticidalprophet (talk) 00:52, 17 February 2021 (UTC)Reply

Thank you for the report. I connected to the server and it seems to run fine. There was a gap, indeed, I don't know why. If it does not run again for another day I can take a further look. Oleg Alexandrov (talk) 05:11, 18 February 2021 (UTC)Reply

"Unbounded" listed at Redirects for discussion edit

  A discussion is taking place to address the redirect Unbounded. The discussion will occur at Wikipedia:Redirects for discussion/Log/2021 February 25#Unbounded until a consensus is reached, and anyone, including you, is welcome to contribute to the discussion. 𝟙𝟤𝟯𝟺𝐪𝑤𝒆𝓇𝟷𝟮𝟥𝟜𝓺𝔴𝕖𝖗𝟰 (𝗍𝗮𝘭𝙠) 21:39, 25 February 2021 (UTC)Reply

"Rod (shaft)" listed at Redirects for discussion edit

  A discussion is taking place to address the redirect Rod (shaft). The discussion will occur at Wikipedia:Redirects for discussion/Log/2021 March 9#Rod (shaft) until a consensus is reached, and anyone, including you, is welcome to contribute to the discussion. Adumbrativus (talk) 06:09, 9 March 2021 (UTC)Reply

Mathbot is down edit

Mathbot has not operated for about 2.5 days. Thanks, Dralwik|Have a Chat 02:52, 10 October 2021 (UTC)Reply

As suggested at ANI, this may be caused by mw:MediaWiki 1.37/Deprecation of legacy API token parameters. – Rummskartoffel 20:44, 12 October 2021 (UTC)Reply
Thank you for the notification and suggestion. I tried to fix it but I ran into some issues with upgrading the Perl module which handles talking to the server. I will put a fix within a couple of days. (Any interest in maintaining a perl-based bot is also welcome.) Oleg Alexandrov (talk) 16:37, 13 October 2021 (UTC)Reply
This turned out to be a lot of work. After some more testing tomorrow it should be back. Oleg Alexandrov (talk) 04:51, 17 October 2021 (UTC)Reply
The AfD bot is working now, once per hour though it is slow. Some more work needs to be done to make the mathlists bot works.
What happened here is that server-side changes broke the old and crusty Perl software I used for talking to Wikipedia. I moved to Pywikibot, but my code is still in Perl, so wrappers need to be written for logic for fetching and submitting articles and querying categories. (I hope there's nothing else, which would be more work.) All this takes time. Hopefully the math lists logic will be back by the end of the next weekend. Oleg Alexandrov (talk) 01:28, 18 October 2021 (UTC)Reply
The math lists bot is almost back. Today did some tentative edits. This is taking long because it is all more work than what I thought or have time for. Oleg Alexandrov (talk) 02:51, 24 October 2021 (UTC)Reply

ArbCom 2021 Elections voter message edit

 Hello! Voting in the 2021 Arbitration Committee elections is now open until 23:59 (UTC) on Monday, 6 December 2021. 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 2021 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) 00:06, 23 November 2021 (UTC)Reply

Administrators will no longer be autopatrolled edit

A recently closed Request for Comment (RFC) reached consensus to remove Autopatrolled from the administrator user group. You may, similarly as with Edit Filter Manager, choose to self-assign this permission to yourself. This will be implemented the week of December 13th, but if you wish to self-assign you may do so now. To find out when the change has gone live or if you have any questions please visit the Administrator's Noticeboard. 20:06, 7 December 2021 (UTC)

How we will see unregistered users edit

Hi!

You get this message because you are an admin on a Wikimedia wiki.

When someone edits a Wikimedia wiki without being logged in today, we show their IP address. As you may already know, we will not be able to do this in the future. This is a decision by the Wikimedia Foundation Legal department, because norms and regulations for privacy online have changed.

Instead of the IP we will show a masked identity. You as an admin will still be able to access the IP. There will also be a new user right for those who need to see the full IPs of unregistered users to fight vandalism, harassment and spam without being admins. Patrollers will also see part of the IP even without this user right. We are also working on better tools to help.

If you have not seen it before, you can read more on Meta. If you want to make sure you don’t miss technical changes on the Wikimedia wikis, you can subscribe to the weekly technical newsletter.

We have two suggested ways this identity could work. We would appreciate your feedback on which way you think would work best for you and your wiki, now and in the future. You can let us know on the talk page. You can write in your language. The suggestions were posted in October and we will decide after 17 January.

Thank you. /Johan (WMF)

18:13, 4 January 2022 (UTC)

New administrator activity requirement edit

The administrator policy has been updated with new activity requirements following a successful Request for Comment.

Beginning January 1, 2023, administrators who meet one or both of the following criteria may be desysopped for inactivity if they have:

  1. Made neither edits nor administrative actions for at least a 12-month period OR
  2. Made fewer than 100 edits over a 60-month period

Administrators at risk for being desysopped under these criteria will continue to be notified ahead of time. Thank you for your continued work.

22:53, 15 April 2022 (UTC)

Scotchlok redirect edit

Apparently you reverted Scotchlok. Did you actually look at the provided ref? Scotchlok is absolutely *not* a type of twist-on wire connector, it's an IDC connector, a completely different type of splice. 82.24.247.127 (talk) 23:54, 4 May 2022 (UTC)Reply

That was not me, if you look at the history. Oleg Alexandrov (talk) 00:02, 5 May 2022 (UTC)Reply
You're right. My apologies, I got confused because you name appeared on the line and you created the page. 82.24.247.127 (talk) 00:10, 5 May 2022 (UTC)Reply

Nomination for deletion of Template:Irrational numbers edit

 Template:Irrational numbers has been nominated for deletion. You are invited to comment on the discussion at the entry on the Templates for discussion page. Gonnym (talk) 08:21, 20 May 2022 (UTC)Reply

"Closed linear operator" listed at Redirects for discussion edit

  An editor has identified a potential problem with the redirect Closed linear operator and has thus listed it for discussion. This discussion will occur at Wikipedia:Redirects for discussion/Log/2022 June 29#Closed linear operator until a consensus is reached, and anyone, including you, is welcome to contribute to the discussion. 1234qwer1234qwer4 18:02, 29 June 2022 (UTC)Reply

Nomination of Neato Robotics for deletion edit

 
A discussion is taking place as to whether the article Neato Robotics is suitable for inclusion in Wikipedia according to Wikipedia's policies and guidelines or whether it should be deleted.

The article will be discussed at Wikipedia:Articles for deletion/Neato Robotics until a consensus is reached, and anyone, including you, is welcome to contribute to the discussion. The nomination will explain the policies and guidelines which are of concern. The discussion focuses on high-quality evidence and our policies and guidelines.

Users may edit the article during the discussion, including to improve the article to address concerns raised in the discussion. However, do not remove the article-for-deletion notice from the top of the article until the discussion has finished.

Amon Stutzman (talk) 23:53, 4 July 2022 (UTC)Reply

Afd Old not updated edit

Mathbot hasn't updated Wikipedia:Articles for deletion/Old since 16 October. It was reported at Wikipedia:Help desk#Old AFD only has listings for October 8, 2022. PrimeHunter (talk) 13:24, 20 October 2022 (UTC)Reply

Thank you. I will take a look in the evening. Oleg Alexandrov (talk) 15:00, 20 October 2022 (UTC)Reply
The bot malfunctioned, likely because something changed in authentication. It will take me time to straighten this out, likely during the weekend.
I also welcome any help maintaining it. If any energic bot writer wants to get involved I'd be happy to share the load. Oleg Alexandrov (talk) 02:09, 21 October 2022 (UTC)Reply
There was a slow-acting bug in my code which eventually resulting in the bot malfunctioning. I think I put a fix. I will keep on checking on it the next several days. The bot is back in business. Thank you for letting me know. Oleg Alexandrov (talk) 00:42, 23 October 2022 (UTC)Reply

RfA template edit

Per the notice on the talk page, please see {{RfA}} and {{RfA/warn}}. Also the edit request. Best to you! P.I. Ellsworth , ed. put'r there 10:23, 22 November 2022 (UTC)Reply

ArbCom 2022 Elections voter message edit

Hello! Voting in the 2022 Arbitration Committee elections is now open until 23:59 (UTC) on Monday, 12 December 2022. 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 2022 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) 00:26, 29 November 2022 (UTC)Reply

Mathbot not updating old AfDs edit

It appears that Mathbot has not updated the old AfD listings since 3 April. Seraphimblade Talk to me 01:06, 6 April 2023 (UTC)Reply

I put a a fix, thanks. It was some sever setting which made it malfunction. Oleg Alexandrov (talk) 02:21, 7 April 2023 (UTC)Reply
Well, I'm afraid the celebration may have been premature. It looks like it did update once yesterday morning, but after that has not updated since. Seraphimblade Talk to me 06:39, 8 April 2023 (UTC)Reply
It looks that a zombie process running this job was preventing new jobs to start on the Toolsever queue. I think I took care of that. Thank you for keeping an eye on things. Oleg Alexandrov (talk) 17:14, 8 April 2023 (UTC)Reply
Seems to be working great now. Thank you again! Seraphimblade Talk to me 13:05, 10 April 2023 (UTC)Reply

Update the page edit

There is a page named "Mr Broken Heart Music" On Wikipedia, currently it was under deletion so review it and undelete it CaptainK404 (talk) 09:09, 25 May 2023 (UTC)Reply

"Abstract vector space" listed at Redirects for discussion edit

  The redirect Abstract vector space has been listed at redirects for discussion to determine whether its use and function meets the redirect guidelines. Anyone, including you, is welcome to comment on this redirect at Wikipedia:Redirects for discussion/Log/2023 June 24 § Abstract vector space until a consensus is reached. Hildeoc (talk) 00:59, 24 June 2023 (UTC)Reply

  The redirect Definitive Solution to the Counterfeit Coin Problem has been listed at redirects for discussion to determine whether its use and function meets the redirect guidelines. Anyone, including you, is welcome to comment on this redirect at Wikipedia:Redirects for discussion/Log/2023 July 2 § Definitive Solution to the Counterfeit Coin Problem until a consensus is reached. Jay 💬 08:09, 2 July 2023 (UTC)Reply

"Locally pathwise-connected" listed at Redirects for discussion edit

  The redirect Locally pathwise-connected has been listed at redirects for discussion to determine whether its use and function meets the redirect guidelines. Anyone, including you, is welcome to comment on this redirect at Wikipedia:Redirects for discussion/Log/2023 November 4 § Locally pathwise-connected until a consensus is reached. 1234qwer1234qwer4 19:24, 4 November 2023 (UTC)Reply

ArbCom 2023 Elections voter message edit

Hello! Voting in the 2023 Arbitration Committee elections is now open until 23:59 (UTC) on Monday, 11 December 2023. 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 2023 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) 00:21, 28 November 2023 (UTC)Reply