| advertise add site services publishers database health videos | ![]() | about toolbar stats live show health store more stuff JOIN/LOGIN |
Talking Watch, Talking Watches, Talking Clock, Talking Bible, Talking... independentliving.com | Herb Talk Herbal Remedies User Discussion Forum herbalremediesinfo.com | Braces and More | Orthodontist in Sunnyvale, CA (California) | People... shimizu-orthodontics.com |
Write a new message. I will reply on this page, under your post. Archive: 1 2 3 4 5 6 7 8 9 10 11 12 13 [edit] Gauss–Newton algorithmI found R very useful. I would appreciate if you could improve the readability, but its nice to have a working computer example as a basis for coding. Please don't remove, but feel free to improve. —Preceding unsigned comment added by 216.165.95.64 (talk) 18:19, 8 September 2008 (UTC)
[edit] hihi oleg. I am interested in non-linear differential equations. Is there a thread on this anywhere? Bruce rout (talk) 22:43, 17 September 2008 (UTC)
[edit] Square root of sum of squares?Hi Oleg, I am trying to implement Gauss Newton, based on the Wikipedia article: http://en.wikipedia.org/wiki/Gauss%E2%80%93Newton_algorithm and I thought that I should at least make sure that I can do the example. I used an Excel spread sheet to duplicate the algorithm given in the article. (It is amazing how poor the Excel math routines are!) In the example section, near the bottom, it says: "The sum of squares of residuals decreased from the initial value of 1.202 to 0.0886 after the fifth iteration." When I calculate the initial value for "sum of squares of residuals", I get 1.445497... I have to take the "square root" of that value to get the same number as stated in the article. (Then I get 1.202288.) Is the article wrong, or am I wrong? Thanks, Mike --68.148.148.75 (talk) 20:15, 20 September 2008 (UTC)
[edit] Mathbot missing?I was trying to manually update the list of old open AfDs, and got an error stating that "The requested URL /~mathbot/cgi-bin/wp/afd/afd.cgi was not found on this server." Did something happen to Mathbot? ···日本穣? · Talk to Nihonjoe 19:13, 4 October 2008 (UTC)
[edit] Typoes in Mathbot's edit summariesIn Wikipedia:Articles for deletion/Old, Mathbot says "There are 0 open discusions in 1 days". The word "discusion" should be "discussion" with the extra "s", and it should probably say "1 day" instead of "1 days". Graham87 16:03, 24 October 2008 (UTC)
[edit] Gandalf's anticsHi Oleg, user Gandalf found it fit to recommend my new article Ghosts of departed quantities for incorporation on the day it was created, and is now giving me a hard time at Uniform continuity based on a mathematical error. Could you please comment? Katzmik (talk) 10:07, 27 October 2008 (UTC)
[edit] Nice exponential function graph!Hi. Excellent work with Image:Exp_series.gif! I feel it truly adds to the Taylor series article as it makes it much easier to understand. Keep up the good work! Greetings from Athens, Greece. --dionyziz (talk) 14:43, 30 October 2008 (UTC).
[edit]Hi - I posted the section with the same name on my talk page. Could you take part in discussion ? User: Shotwell suggested (on my talk page) "I would endorse a WP:EXPERTADVICE page that outlined the wikipedia policies and goals for researchers in a way that enticed them to edit here in an appropriate fashion. Perhaps a well-maintained list of expert editors with institutional affiliation would facilitate this sort of highly informal review process. I don't think anyone would object to a well-maintained list of highly-qualified researchers with institutional affiliation (but then again, everyone seems to object to something)." We could start with that if you would agree ... - could you help to push his idea through Wikipedia bureaucracy ? Cheers, Apovolot (talk) 15:47, 1 November 2008 (UTC) [edit] Arbcom Elections 2008Good afternoon, Oleg. It's a slow day for me today, so I'm running through my checklist of Arbcom Election items for next month's voting. I know Mathbot has updated voting data for the last three elections, and I wanted to check and see if you planned to run it again this time around. If that's the case, is there any assistance I can provide in formatting vote pages / setting up templates / etc? Thanks in advance, UltraExactZZ Claims ~ Evidence 18:12, 4 November 2008 (UTC)
You had asked for a reminder before voting opens - so Ping! The only changes to the voting page are two parserfunctions that add warning boxes before and after voting, to prevent early and late votes - everything else should match last year. Thanks again! UltraExactZZ Claims ~ Evidence 18:56, 30 November 2008 (UTC) [edit] WP 1.0 botI ran into a problem with the bot today. On the lists of articles, it was transcluding the comments subpages. If one of those pages trips the spam filter (because of a link that has been added to the filter after the comments were edited) then the bot is unable to save the list page. It would retry over and over and then die. I made the bot no longer transclude the comments as a workaround. I discussed the problem with some mediawiki devs on IRC and they don't have any better solution. Just keeping you up to date, — Carl (CBM · talk) 04:11, 13 November 2008 (UTC)
[edit] RfD nomination of Manual of Style (mathematics)I have nominated Manual of Style (mathematics) (edit|talk|history|links|watch|logs) for discussion. Your opinions on the matter are welcome; please participate in the discussion by adding your comments at the discussion page. Thank you. MBisanz talk 04:06, 18 November 2008 (UTC) [edit] Linear least squaresI've replaced Image:Linear least squares2.png with one that had normally distributed errors instead of uniformly distributed ones. The fact that they were uniformly distributed just glared at you at looked ridiculous. But there are problems with the size of the image. Is there a quick easy way to fix that? Michael Hardy (talk) 04:13, 1 December 2008 (UTC) ... and now I see that it looks OK on your talk page, but not in the linear least squares article. Michael Hardy (talk) 04:15, 1 December 2008 (UTC) PS: Here's the adapted code: % Illustration of linear least squares. function main() % KSmrq's colors red = [0.867 0.06 0.14]; blue = [0, 129, 205]/256; green = [0, 200, 70]/256; yellow = [254, 194, 0]/256; white = 0.99*[1, 1, 1]; gray = 0.1*white; % Set up the grid and other parameters N = 100; A = -2.2; B = 2; X = linspace(A, B, N); C=-4; D = 4; % Set up the figure lw = 5; % linewidth lw2 = lw/2; fs = 22; % font size figure(1); clf; hold on; set(gca, 'fontsize', fs); set(gca, 'linewidth', lw2) hold on; grid on; % random numbers s=0.16; a = 1.2; b = 3; c = 1; p = 1; q = 6.5; r = 1.3; M = 50; p = s*p; q = s*q; r = s*r; XX=linspace(A, B, M+1); YY = p+q*XX+r*XX.^2; Xr = 0*(1:M); Yr = Xr; for i=1:M rd=rand(1); Xr(i) = XX(i)*rd+XX(i+1)*(1-rd); Yr(i) = p+q*Xr(i)+r*Xr(i)^2 + erfinv(2*rand(1) - 1) end myrad = 0.05; for i=1:length(Xr) ball(Xr(i), Yr(i), myrad, red); end axis equal; % least squares fitting Yr = Yr'; Xr=Xr'; Mat = [(0*Xr+1) Xr Xr.^2]; V=Mat'*Yr; V=(Mat'*Mat)\V; pe = V(1); qe = V(2); re=V(3); plot(X, pe+qe*X+re*X.^2, 'b', 'linewidth', lw); grid on; set(gca, 'GridLineStyle', '-', 'xcolor', gray); set(gca, 'GridLineStyle', '-', 'ycolor', gray); set(gca, 'XTick', [-2 -1 0 1 2]); plot([-2 2], [3.5 3.5], 'linewidth', lw2, 'color', gray); axis equal; axis([-2, 2, -1.5, 3.5]); saveas(gcf, 'Linear_least_squares2.eps', 'psc2'); % save as eps %plot2svg('Linear_least_squares.svg'); % save as svg function ball(x, y, r, color) Theta=0:0.1:2*pi; X=r*cos(Theta)+x; Y=r*sin(Theta)+y; H=fill(X, Y, color); set(H, 'EdgeColor', 'none') Hi Michael. You'll need to convert the eps to png with more care, to make sure the picture is not pixelated. I removed your picture for now as it is not pretty (sorry). I'll try to fix it when I find time while following your request for normally distributed points. Oleg Alexandrov (talk) 00:08, 2 December 2008 (UTC)
[edit] List of probability topicsHi Oleg, Less than two years after your initial greeting :) I have a question. A lot of articles are listed on Talk:List of probability topics#A: Articles missing from the List of probability topics. Do they just wait for anyone to insert them all to List of probability topics? (I could try.) Or should it be made selectively? Boris Tsirelson (talk) 09:52, 2 December 2008 (UTC)
That can be easily fixed. Take the line: [http://tools.wikimedia.de/~mathbot/cgi-bin/wp/lists/lists.pl.cgi?Talk:List_of_probability_topics Refresh the above lists] Paste it on the talk page of the desired list, at the top. Rename there Talk:List_of_probability_topics with the appropriate name for that list. And click on the link. The bot will hopefully create an initial project on that talk page. Follow the instructions and fill in the categories in the appropriate section. Again click on the link. The bot will most likely start suggesting articles. It was not used in other pages because there need to be willing editors. Oleg Alexandrov (talk) 22:08, 3 December 2008 (UTC)
[edit] Re: synergetics coordinatesI forgot if I succeeded to explain these for you, and weeks or months ago the article was marked 'needs expert attention' (maybe because I removed 'expert' from my user page that already says I major in mathematics/algorithmics.) This was my new explanation: Three axes are 3 dimensions, but synergetics axes are rays (only having '0' or positives) thus defining less than 3-dimensional Euclidean space. Three rays separated by 120° are R+∪0 and allow 'triangular' coordinates (ordered triples with elements '0' or positive.) They define Cartesian 2-space: any triangle (2-d simplex) or non-degenerate polygon can. Wolfram's Mathworld defines coordinate systems that use simplices as 'synergetics.' Equilateral triangle graph paper is a 2-d one. Do you know any other geometry or undergraduate level math articles needing work?--Dchmelik (talk) 15:44, 7 December 2008 (UTC)
[edit] Proposed changes to Template:RfASee Template_talk:RfA#Add_.22nomination.22_heading_to_the_top. davidwr/(talk)/(contribs)/(e-mail) 03:18, 15 December 2008 (UTC)
[edit] Mahalanobis distanceDear User. You contributed to the Mahalanobis distance article. Some of its content lacks citations for verification, has been challenged and may be removed. Please help improve this article by adding reliable references.Calimo (talk) 10:24, 15 December 2008 (UTC) [edit] WP 1,0bot webform is removed ?This webform is unavailable -- Tinu Cherian - 15:37, 17 December 2008 (UTC)
[edit] Heat equation illustrationHi Oleg, is the following description of the image at the right factually correct? What does the decline of the height at certain points codify? Just to be sure... Thanks, Jakob.scholbach (talk) 21:03, 17 December 2008 (UTC)
[edit] Wannabekate in RfA talk pagesYou may want to have a look at Wikipedia:Help_desk#Edit counters and Wikipedia talk:Requests for adminship#Possible problem with Interiot edit counts which discuss how Wannabekate is now an inaccurate editcounter due to the Image: -> File: namespace change. Because Mathbot uses Wannabekate, I though I should give you the heads up and suggest rectifying this problem. Happy editing! Foxy Loxy Pounce! 03:10, 22 December 2008 (UTC)
[edit] 2006 Rose Bowl logo
[edit] Is Log(x) analytic?Hi Oleg, I was wondering if Log(x) is an analytic function. I wrote my question on the discussion page for Analytic_function but I'll copy and paste here in case it's hard to find: I was reading this article on Analytic Functions and I noticed that in the Examples section, the logarithm function was given as an example of an analytic function. Let's consider f(x) = Log(x) on the set of real numbers R. Now pick x0 = 0. Then we can't find a power series representation of Log(x). Can we? So is the logarithm function not analytic then? Siyavash2 (talk) 09:15, 24 December 2008 (UTC)
[edit] Image for nomination.Just wanted you to know that your image Snells law wavefronts.gif Has been nominated for Featured Picture. Happy new year! —Clarknova (talk) 07:13, 1 January 2009 (UTC)
[edit] Progress?Hello. Those bot issues are still issues (since December 23rd). Any updates on that? Amazing how the world's mathematics hangs by this particular thread [OK, there might just be an element of hyperbole in this sentence]. Michael Hardy (talk) 22:49, 4 January 2009 (UTC)
It sounds as if you don't use the "current activity" page every day. Michael Hardy (talk) 16:17, 5 January 2009 (UTC)
[edit] Another bot needed?Hi Oleg, If you like the Catalog_of_articles_in_probability_theory page then maybe you'll help me with a bot. The page is generated by a program, as you surely guess, from a source file that looks as follows: (a,b,0) class of distributions spd (1:D) Abstract Wiener space Gau Adapted process (U:G) ... Wishart distribution spd (F:C) Zeta distribution spd (1:D) Zipf's law spd (1:D) The program, written by me in Python, works on my computer. Without it, other editors can make only small changes to that page. It would be nicer to put the source file into Wikipedia (which I am able to do myself) and provide a special bot that processes it (which I cannot do myself). What do you think? Boris Tsirelson (talk) 20:08, 5 January 2009 (UTC)
You can use the Wikipedia toolserver, see here. Try applying for an account, sometimes they take a while to approve, if they approve at all. In the meantime, your school could be a good temporary location (that's how I was doing things when I was at school, now I don't have a dedicated server anymore, save for the bot account on the toolserver). You need to tell me more details about how the code should be run, and perhaps even show me the code. For now, I can say that you need to set up the main bot script as a cgi routine, the way http://toolserver.org/~mathbot/cgi-bin/wp/lists/lists.pl.cgi?Talk:List_of_probability_topics is done. Setting up a cgi routine is not that hard, especially if your bot does nothing fancy. What is harder is to upload your content to Wikipedia automatically. You can try using the pywikipedia framework, since you program in python. In short, here are a few things to think about:
After these issues are clear, we'll see how to proceed. Oleg Alexandrov (talk) 02:53, 6 January 2009 (UTC)
[edit] Wikipedia:Featured picture candidates/Snells law wavefronts
[edit] AfD scriptJust a heads up that when I went to use http://toolserver.org/~mathbot/cgi-bin/wp/afd/afd.cgi I received the following error message:
[edit] Deletion without AfD?"11:27, 14 January 2009 Jimfbleak (Talk | contribs) deleted "Ani-Monday" (G4: Recreation of a page that was deleted per a deletion discussion)" Jimfbleak (talk · contribs · blocks · protections · deletions · moves · rights) apparently deleted the page Ani-Monday arbitrarily. There never was any AfD to my knowledge. Please look into this. JRSpriggs (talk) 18:12, 14 January 2009 (UTC)
[edit] Riemann–HilbertThis edit created the plural title Riemann–Hilbert problems while the singular Riemann–Hilbert problem redirected to something other than the plural. I've moved it to the singular. Michael Hardy (talk) 05:15, 23 January 2009 (UTC)
[edit] Confusedhttp://en.wikipedia.org/wiki/Wikipedia:Version_1.0_Editorial_Team/Indonesia_articles_by_quality/1 - I used to be able to click on one of the bot generators to get this moving. It hasnt been started by anything since the 15th of January - and I was wondering is there a link to something that works? I have removed earlier versions of bot starters from my user page - as they longer link to anything - hope you can help - cheers SatuSuro 14:37, 27 January 2009 (UTC)
[edit] Archived discussions linkSorry for removing the archive link on /Old (I did it three times by accident :S), in future please feel free to tell me when I cock things up like that, esp. when I do them multiple times. :) — neuro(talk) 03:39, 29 January 2009 (UTC)
[edit] Trees (structure)I see that articles tagged Category:Trees (structure) do not get added to the list of mathematics articles. Did you decide to exclude it, or has it never come to your attention? Michael Hardy (talk) 17:41, 30 January 2009 (UTC)
If it means "tree" in the sense of graph theory, then it belongs in math. Should (or do) we have another tree category for those? Michael Hardy (talk) 19:15, 30 January 2009 (UTC) ...Oh: we do: Category:Trees (graph theory). Michael Hardy (talk) 19:15, 30 January 2009 (UTC) ........but that's a subcategory. Do subcategories make the list in some cases where main categories don't? If not, the should in this case, both with Category:Trees (graph theory) and Category:Trees (set theory). Michael Hardy (talk) 19:18, 30 January 2009 (UTC)
[edit] Chicago and Illinois project statsNeither the WP:CHICAGO nor WP:ILLINOIS stats have run this month.--TonyTheTiger (t/c/bio/WP:CHICAGO/WP:LOTM) 08:48, 9 February 2009 (UTC) [edit] Typo redirect Barlow's FormulaHello, this is a message from an automated bot. A tag has been placed on Barlow's Formula, by another Wikipedia user, requesting that it be speedily deleted from Wikipedia. The tag claims that it should be speedily deleted because Barlow's Formula is a redirect page resulting from an implausible typo (CSD R3). [edit] I've disputed the factual accuracy of your workAs far as I know we don't have a factual-accuracy-dispute template for images, so at linear regression, I've typed my own factual accuracy dispute notice into the caption of the picture at the beginning of the article. A while back you objected to my replacing your image with something that didn't look ridiculous and misleading—apparently it didn't satisfy some stylistic criterion you had in mind. Since you don't want me to do it, can you replace the picture with something reasonable-looking? The one there looks as if both the x-values and the errors are uniformly distributed. If you made the x- and y-values jointly normally distributed it at least wouldn't look childish. Michael Hardy (talk) 00:09, 18 February 2009 (UTC)
Well, a few weeks back I attempted this and you didn't like the way I'd done it and reverted. I'm not all that adept at programming details, so your reversion of my attempt isn't all that encouraging. Michael Hardy (talk) 22:18, 18 February 2009 (UTC) ....You may also be missing some points:
Michael Hardy (talk) 00:43, 20 February 2009 (UTC)
[edit] various topicsThanks for the welcome last year (I joined the welcome committee) and many articles that have helped: I award you E=mc² Barnstar (for mathematics or science.) I asked a question on Template_talk:Portals because portal instructions step 8 say to add a link to {{tl:main portals}} and then Portal:Browse. 'Part a' looks like a technical page: not somewhere to make a link, but I made a link on the (not very active) talk page and did part 'b.' Is that alright?--Dchmelik (talk) 11:28, 27 February 2009 (UTC) I re-edited Synergetics coordinates. I still sometimes have a hard time reading long math notation myself, but all that one needs is a picture of equilateral triangle graph paper; all the coordinates are in 2-d is the plane of unit equilateral triangles... that is not hard to understand. I asked someone for permission to use a picture but have not heard back yet. Also, is there any way to archive part of my talk page (instead of deleting,) or does it just happen when it gets big?--Dchmelik (talk) 11:28, 27 February 2009 (UTC)
[edit] Is the edit summary checker broken?Hi there. I tried to check my edit summary usage and it tells me "Edit summary usage for SoWhy: 0% for major edits and 0% for minor edits. Based on the last 0 major and 0 minor edits in the article namespace." Could the script be broken? Regards SoWhy 17:40, 28 February 2009 (UTC)
[edit] Photo-tagging?Hi: I've been going through and adding pictures to mathematician bio articles. It would help a lot if a bot could go through all mathematician articles and put a {{reqphoto}} tag on the ones that don't have any photos on them. Then I could use the lists over at Wikipedia:Pages needing attention/Mathematics/Lists to identify pages instead of going through them manually. Is this possible? Thanks, RayTalk 23:33, 13 March 2009 (UTC)
[edit] triple torusI like your triple torus surface (http://en.wikipedia.org/wiki/File:Triple_torus_illustration.png), is there somewhere I can read about how that was created? —Preceding unsigned comment added by 146.6.203.178 (talk) 14:42, 17 March 2009 (UTC)
O O O
[edit] No current activity?Once again Wikipedia:WikiProject Mathematics/Current activity show no new article for several days. Could it be that they're not getting added to the list of mathematics articles? Michael Hardy (talk) 17:54, 22 March 2009 (UTC)
[edit] PeridynamicsCan you take a look at the page on Peridynamics? I think it is serious POV-pushing. I small group of people (2-3) have created the page based on their own research, cite their own work in references, put links to it in other articles, and keep removing criticisms. Thanks. Cj67 (talk) 11:31, 24 March 2009 (UTC)
[edit] Adjusting Mathbot for AfDHi Oleg. Following this discussion, AfD discussions now go for seven days rather than five. Would you be able to adjust MathBot to take this into account? Regards SilkTork *YES! 16:47, 12 April 2009 (UTC)
[edit] Kandidat naukHi Oleg, there seems to be consensus for move at Talk:Kandidat nauk to Candidate of Sciences, but it requires an administrator because of the existing redirect. Would you be interested? Thanks. Jmath666 (talk) 21:06, 25 April 2009 (UTC)
Thanks. Indeed, also per the article. Jmath666 (talk) 08:12, 26 April 2009 (UTC) [edit] Category:Topical indexesHi. I was wondering if you could update Mathbot to change its output category, from Category:Topical indexes to Category:Indexes of articles (which it has been replaced by/renamed as). Thanks :) -- Quiddity (talk) 20:36, 31 May 2009 (UTC)
[edit] Diophantus II.VIIIHello Oleg Dates back a bit but did you ever resolve your query about the article on Diophantus II.VIII ? I wrote this article because there is such a lot of 'spin' on Pythagorean triples.Diophantus provides a perfectly clear and comprehensive method of generating any of the infinity of such triples. All triples are rational multiples of the form which we may derive from presenting Diophantus' method in algebraic form - that is what I have done on this page. What especially intrigues me is Fermat's note stating there are no rational solutions to a^n + b^n = c^n for n>2. He must have had at very least a substantive intuition to make this statement and since the conjecture was written next to Diophantus II.VII in Fermat's copy of Arithmetica, we must assume his intuition would have been drawn from same article. Neil Parker (talk) 10:55, 1 June 2009 (UTC)
Good idea to split the historical from a modern interpretation thereof. Neil Parker (talk) 07:49, 2 June 2009 (UTC) [edit] WP 1.0 botFYI: WP 1.0 bot got stuck half way through WP:Germany today. Agathoclea (talk) 10:54, 3 June 2009 (UTC)
This says Forbidden You don't have permission to access /cgi-bin/wp/wp10/run_wp10.html on this server. -- Tinu Cherian - 05:19, 8 June 2009 (UTC)
[edit] Probability metric (presently Lukaszyk-Karmowski metric)Dear Oleg, I write to you as you were the first with whom I discussed the article that I created in March 2007: Probability metric (presently Lukaszyk-Karmowski metric). As you see the article is now considered for deletion (after I was compelled to change its name to a narrower yet a bit unfortunate one as now it suggest that I am self-promoting myself. (Wikipedia:Editor_assistance/Requests#Notability_issue_on_Lukaszyk-Karmowski_metric). It is like I was asking for your help, but it's not true. I shall accept the decision of the community though it is not based on any essential grounds (No one proved that the concept is wrong, alleged WP:NOR and WP:Notability. I simply appreciate if you browse the subject and take your position. It's like a put a needle in the ant's nest :) —Preceding unsigned comment added by Guswen (talk • contribs) 07:15, 4 June 2009 (UTC)
[edit] Wikipedia:Articles for deletion/Crimson timebombMathbot doesn't seem to recognize that Wikipedia:Articles for deletion/Crimson timebomb has been closed, and it keeps adding it back to the Wikipedia:Articles for deletion/Old list. I can't see anything immediately apparent which would cause this. Can you see something? ···日本穣? · Talk to Nihonjoe 00:29, 6 June 2009 (UTC)
[edit] Inappropriate moving of articleJamesBWatson (talk · contribs) has unilaterally moved Newton's method to Newton–Raphson method. This is contrary to our policy of using the most common name in English. JRSpriggs (talk) 10:45, 23 June 2009 (UTC)
[edit] WP 1.0 bot questionIn this edit, the bot removed the additional sections I had added so WikiProject Japan could more easily keep track of tagged articles and other pages. Is there a way to have the bot not do this, and also update the sections I added? Thanks! ···日本穣? · 投稿 · Talk to Nihonjoe 05:56, 1 July 2009 (UTC)
[edit] Happy Oleg Alexandrov's Day!
For a userbox you can add to your userbox page, see User:Rlevse/Today/Happy Me Day! and my own userpage for a sample of how to use it. — Rlevse • Talk • 00:51, 7 July 2009 (UTC)
[edit] WP 1.0 bot: CategoriesCould you please include categories in the Wikipedia:Version 1.0 Editorial Team/Video game articles by quality statistics table? Thanks. SharkD (talk) 04:27, 12 July 2009 (UTC)
[edit] Threefolds?Is Category:Threefolds one of the categories whose articles show up automatically in the list of mathematics articles? (I think the list may have missed an article I just did some edits on.) Michael Hardy (talk) 05:58, 14 July 2009 (UTC)
[edit] Is there a name for this interative method of numerical integration?Link to description of algorithm: Jeffareid (talk) 00:50, 18 July 2009 (UTC)
[edit] Wikipedian of the Day Congratulations, Oleg Alexandrov! For your kindness to others, your hard work around the wiki, and for being a great user, you have been awarded the "Wikipedian of the Day" award for today, July 20, 2009! Keep up the great work! Note: You could also receive the "Wikipedian of the Week award for this week! Happy editing!
[edit] Re: Andean Volcanic BeltHi Oleg - It's standard practice to multi-stub in that way. SouthAm-geo-stub is no longer used - it is on no articles whatsoever and redirects (or more precisely upmerges) to the base geography stubs category so that anything which does get marked with it can quickly be sorted using more appropriate stub types (the same is done with a couple of other deprecated stub templates). Yes, wikipedia is primarily for readers, but stub templates serve the other part of Wikipedia - editors - the part without which articles won't expand beyond stub level. Yes it looks ugly - that's half the point. The uglier it looks, the more likely it is that someone will actually expand it. And the most likely people to expand it are those working on articles about the geography of those countries, which is why that's the best place to categorise this article. Grutness...wha? 00:24, 21 July 2009 (UTC) [edit] Move Diophantus II.VIII ?Hi Oleg Just wondering whether perhaps the best thing to do with Diophantus_II.VIII is to move it entirely to the page on Pythagorean triplets. Readership stats to not seem to support a standalone article whereas it is historically relevant to PTs because in essence Diophantus provides an early - if not the earliest - algorithm for generating rational triples. Your opinion would be appreciated. Neil Parker (talk) 05:45, 22 July 2009 (UTC)
[edit] Wikipedian of the Week Congratulations, Oleg Alexandrov! For your kindness to others, your hard work around the wiki, and for being a great user, you have been awarded the "Wikipedian of the Week" award for this week! Keep up the great work! Note: You could also receive the top award, "Wikipedian of the Month" for this month! Happy editing! [midnight comet] [talk] 00:31, 25 July 2009 (UTC)
[edit] Template:Afd topHi, I have modified {{afd top}} to allow discussions to be collapsed when transcluded in the log pages. Please see Template talk:Afd top#Proposal. (I am notifying you as requested in the documentation.) -- King of ♥ ♦ ♣ ♠ 21:08, 29 July 2009 (UTC) [edit] WP 1.0 bot blockingOleg, the bot is behaving rather badly on the AFOD project. It has replaced the name of the project rather than the preferred abbreviation, causing the project page to look poor. I tried blocking the bot, but apparently that is only available to admins. Could you please block it from the AFOD project. Thanks.Tobit2 (talk) 05:09, 31 July 2009 (UTC)
[edit] "Social movement"Any idea why social movement belongs in the list of mathematics articles? I've also noticed some other strange recent additions within the past week or so. Michael Hardy (talk) 17:58, 5 August 2009 (UTC)
After I posted this, it appeared that someone put the Category:Group actions tag on it. That's an ambiguous phrase. Michael Hardy (talk) 22:27, 7 August 2009 (UTC) [edit] Diophantus II.VIII and Plimpton 322Hi Oleg Could you please check out: User:Neil_Parker/Sandbox/Plimpton#Diophantus_II.VIII_and_Plimpton_322 and let me know if you think it is ok to publish on the Plimpton 322 page. Thanks. Neil Parker (talk) 18:42, 12 August 2009 (UTC)
Hello again Thanks for having a look at my 'ruminations' which may however be checked for mathematical consistency. Eg row 5 of Plimpton. Robson's reciprocal pairs are 2:15 and 26:40 sexagesimal respectively. Well 2:15 in decimal is 2.25 and as a fraction that is 9/4. Assuming reciprocal 26:40 sexagesimal is 26/60 + 40/60^2 or 4/9. There in the reciprocal fractions sit the very generating numbers 4 and 9 the existence of which her thesis denies. Is this something that needs to be pointed out or am I missing something ?? Robson's thesis can be read at: [2] Neil Parker (talk) 08:22, 14 August 2009 (UTC) Ok - I've removed the 'ruminations'. Could I prevail on you to have another look and see if it now seems reasonable for posting? I think the key point of the submission is the similarity with Diophantus_II.VIII rather than the challenge to Robson's thesis - can leave that out altogether if needs be. Neil Parker (talk) 16:08, 21 August 2009 (UTC)
[edit] Sorry about the mass links - can I get the codes back?Hello - could you undelete these pages or help me get the codes back? I was in the middle of getting contributions from some other authors about the motivation and stories behind these books, and re-writing the material. I didn't realize mass linking would get me kicked.:
Yhkhoo (talk) 05:20, 19 August 2009 (UTC) [edit] Mathbot inquiryHi. It appears that List of mathematics articles (A-C) and its associated series of three letter list pages that merely transclude the single-letter list pages are used exclusively for the operations of your bot. Since they rather pointlessly (for actual humans) duplicate the single-letter pages in article-space, is there any reason they couldn't be moved into either your bot's userspace or the Math WikiProject's project-space? --Cybercobra (talk) 10:18, 3 September 2009 (UTC)
[edit] A proposed move that may (or may not) affect your bot[edit] link to disambig pageHi Oleg, it looks like your bot won't allow the removal of the link to Convex from List of mathematics articles (C). Convex is a disambig page, and all the math-related links from the Convex dab are already listed in List of mathematics articles (C). Could you remove Convex from the bot's list please? Thanks, --JaGatalk 11:50, 15 September 2009 (UTC)
[edit] POTD notificationHi Oleg, Just to let you know that the Featured Picture File:Snells law wavefronts.gif is due to make an appearance as Picture of the Day on September 22, 2009. If you get a chance, you can check and improve the caption at Template:POTD/2009-09-22. howcheng {chat} 04:07, 22 September 2009 (UTC)
[edit] MailHi Oleg. Did you get my recent email? Paul August ☎ 17:12, 24 September 2009 (UTC)
[edit] More mailHi Oleg. More mail ;-) Paul August ☎ 13:47, 25 September 2009 (UTC) [edit] File:220px-UCLA Bruin.jpgOleg, I've tagged this image with {{non-free 3d art}}. Freedom of panorama does not exist in the United States for works of 3d art. Thus, the copyright holder of this work retains rights to derivative works, such as photographs. --Hammersoft (talk) 13:22, 30 September 2009 (UTC)
[edit] Removing Category:Markov modelsHi Oleg, I'm not entirely sure I agree with your removal of the 'Markov models' category from some of the pages you visited. Aren't you taking the category a little too literally? For example, you're 100% correct that Anders Krogh is not a Markov model, but he was one of the first researchers to apply HMMs to the field of biology. This was a hugely significant advance for the field, so surely visitors to the category page would want to see things like this. I know I would. Likewise, the softwares HMMER and Xrate make extensive use of Markov models and the database Pfam distributes thousands of HMMs for classifying protein sequences. So whilst I agree these pages aren't literally Markov models I do think they still have a place in that category. Just my 2p. --Paul (talk) 09:44, 19 October 2009 (UTC)
[edit] Comments subpages (Village pump discussion)I was following a discussion at one of the village pumps about the comments subpages used by some articles, and having a vague memory that WP:WP 1.0 started them, I went looking for the old discussions that started them and found these: 1, 2, 3 (May to July 2006). You were one of the five main participants at those discussions, so I'm notifying all five of you so that some input from when this all started can be obtained for the current discussion, as I'm not sure the full picture is being presented there so far. I'll leave a note at the Village Pump discussion saying who I notified. I also left a note at the WP:WP 1.0 talk page, but not sure how much you each follow that page now, hence the user talk page note. Carcharoth (talk) 19:10, 20 October 2009 (UTC) [edit] Talkback[edit] Notice of a discussion which may concern youHello. You may want to comment on this discussion: Help talk:Edit summary#Requested move. -- Ϫ 06:21, 29 October 2009 (UTC) [edit] NowCommons: File:Westwood Village Memorial Park Cemetery view to southeast.jpgFile:Westwood Village Memorial Park Cemetery view to southeast.jpg is now available on Wikimedia Commons as Commons:File:Westwood Village Memorial Park Cemetery view to southeast.jpg. This is a repository of free media that can be used on all Wikimedia wikis. The image will be deleted from Wikipedia, but this doesn't mean it can't be used anymore. You can embed an image uploaded to Commons like you would an image uploaded to Wikipedia, in this case: [[File:Westwood Village Memorial Park Cemetery view to southeast.jpg]]. Note that this is an automated message to inform you about the move. This bot did not copy the image itself. --Erwin85Bot (talk) 00:56, 10 November 2009 (UTC) [edit] Question...why did you delete the article on sneeze fetishism? Coffeegalatea (talk) 17:48, 13 November 2009 (UTC)
[edit] RE: Wikipedia:Version 1.0 Editorial Team/Bristol articles by quality statisticsHi - firstly thank you for this bot. I do have a query regarding recent updates to the above. The bot is consistently showing one artcile as being un-assessed for importance, yet there are no unassessed articles in the Category:Unknown-importance Bristol articles? Jezhotwells (talk) 23:44, 17 December 2009 (UTC)
|
| ↑ top of page ↑ | about thumbshots |