| 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 |
Please email me if you don't get a response from me here. --AllyUnion (talk) 05:46, 12 June 2009 (UTC)
New comments to the end of the page please. Otherwise, I will ignore and/or revert your edit. -- AllyUnion I have every right to blank out your comments because this is my User page. If you have a complaint about it, too bad... deal with it. -- AllyUnion
[edit] Page blankingSorry for any confusion. I archived the page for you. Just trying to help Thedjatclubrock :) 22:06, 22 June 2007 (UTC)
O.K. I'm sorry. It said leave of absence so I was just trying to help. Sorry for any confusion. Thedjatclubrock :) 22:41, 23 June 2007 (UTC) [edit] MfD nomination of Wikipedia:BJAODN:The Next Page TitleI've nominated Wikipedia:BJAODN:The Next Page Title, a page you created, for deletion. Your opinions on the matter are welcome; please participate in the discussion by adding your comments at Wikipedia:Miscellany for deletion/Wikipedia:BJAODN:The Next Page Title and please be sure to sign your comments with four tildes (~~~~). You are free to edit the content of Wikipedia:BJAODN:The Next Page Title during the discussion but should not remove the miscellany for deletion template from the top of the page; such removal will not end the deletion discussion. Thank you. ^demon[omg plz] 14:18, 16 August 2007 (UTC) [edit] Template cleanupHello. It seems that at some point you used a bot to create a series of calendar templates for the years 2004-2025, with multiple years for every month. Would you have any objection to me deleting the templates beyond the year 2009? Here's my logic: the templates are currently non-transcluded, and essentially orphaned. They show up in the list of untranscluded templates and I've been working hard to try to clean out the Template namespace. Along the same lines that we don't have articles for far future events, I can't see any legitimate use of a template for April 2025. If you'd prefer that I archive them in some way before deleting them, I'd be happy to oblige, but I truly believe that they don't need to be in the Template namespace. Thoughts? Cheers. --MZMcBride 01:41, 5 September 2007 (UTC)
[edit] Classification of adminsHi AllyUnion. Please consider adding your admin username to the growing list at Classification of admins. Best! -- Jreferee t/c 22:55, 28 November 2007 (UTC) [edit] HelpUser:Brian0324 and Anietor continue to rollback a new paragraph I added in the article Christianity in China, and by contrast they rollback their POV. I've tagged them in their talk page, but please help me! --Xi Zhu (talk) 19:46, 18 December 2007 (UTC)
[edit] Category botHi. I found your page while look for bot that can automatically scans and moves pages from categories marked with {{categoryredirect}} to the correct category. I'm planning to run such a bot on id.wikipedia. I asked user:selket if he can share the source code, but still no answer. If I not mistake, User:NekoDaemon can also do that. Can you share the source of your bot? Thanks. (btw sorry for bad english). borgx (talk) 14:47, 19 January 2008 (UTC)
#!/usr/bin/python2.3 # -*- coding: utf-8 -*- # Version: 1.08 # 1.07 Updated comments # 1.08 Fixed comments # 1.09 Sysop only # 1.10 Point to last user edit #import sys #sys.exit(0) import os, sys if (not (sys.path[0] == '')): os.chdir(sys.path[0]) del os, sys import wikipedia, config, catlib import thread import re import time def sysopList(site): sysoplist = [] mainPath = '/w/index.php?title=Special:Listusers&group=Sysop&limit=500' RLinkToNextPage = re.compile('&offset=(.*?)&.*?>next 500</a>') sysopR = re.compile('<li><a href=".*?" title=".*?">(.*?)</a>') thisDone = False path = mainPath while not thisDone: # this loop will run until the page could be retrieved # Try to retrieve the page until it was successfully loaded (just in case # the server is down or overloaded) # wait for retry_idle_time minutes (growing!) between retries. retry_idle_time = 1 while True: try: # wikipedia.output(u'Getting sysop list...') # print path txt = site.getUrl(path) except: raise print "WARNING: There was a problem retrieving sysop list. Maybe the server is down. Retrying in %d minutes..." % retry_idle_time time.sleep(retry_idle_time * 60) # Next time wait longer, but not longer than half an hour if retry_idle_time < 32: retry_idle_time *= 2 continue break matchObj = RLinkToNextPage.search(txt) if matchObj: startFromPage = matchObj.group(1) else: thisDone = True if startFromPage: path = mainPath + '&offset=' + startFromPage for item in sysopR.findall(txt): sysoplist.append(item) return sysoplist if __name__ == "__main__": notDone = 'The following are a list categories not acted upon by [[User:NekoDaemon|]] as of ~~~~~:\n\n' mysite = wikipedia.getSite() sysops = sysopList(mysite) if len(sysops) == 0: sys.exit(2) neko = catlib.Category(mysite, 'Wikipedia category redirects') cl = neko.catlist(purge = True) templateR = re.compile('{{([Tt][Ee][Mm][Pp][Ll][Aa][Tt][Ee]:)*[Cc]ategory.?redirect\|(.*?)}}', re.UNICODE) comment = '' for nekoneko in neko.subcategories(): try: history = nekoneko.getVersionHistory() lastuser = history[0][1] if sysops.count(lastuser) == 1: nekopage = nekoneko.get() m = templateR.match(nekopage) if m: nekomove = m.group(2) comment = u'Robot: [[Cat#Communication|Nyaa]]! [[Template talk:Categoryredirect|Categoryredirect]]: ' + nekoneko.aslink() + ' â [[Category:' + nekomove + ']]. Requested change by [[User:' + lastuser + '|]]' articles = nekoneko.articles(recurse = 0) if len(articles) == 0: wikipedia.output(u'There are no articles in category ' + nekoneko.title()) else: for article in articles: thread.start_new_thread(catlib.change_category, (article, nekoneko, nekomove, comment)) subcategories = nekoneko.subcategories(recurse = 0) if len(subcategories) == 0: wikipedia.output(u'There are no subcategories in category ' + nekoneko.title()) else: for subcategory in subcategories: thread.start_new_thread(catlib.change_category, (subcategory, nekoneko, nekomove, comment)) else: notDone += '* [[:%s]] (%d articles, %d subcategories)\n' % (nekoneko.title(), len(nekoneko.articles(recurse = 0)), len(nekoneko.subcategories(recurse = 0))) except wikipedia.IsRedirectPage: continue except KeyboardInterrupt: raise wikipedia.Page(mysite, 'User:NekoDaemon/categoryredirect log').put(notDone, 'Robot: [[User:NekoDaemon|]] [[User talk:AllyUnion|(talk)]] [[Special:Contributions/NekoDaemon|contributions]]: Unpatrolled categories log update.') [edit] Redirect of Dark PokémonHello, this is a message from an automated bot. A tag has been placed on Dark Pokémon, by another Wikipedia user, requesting that it be speedily deleted from Wikipedia. The tag claims that it should be speedily deleted because Dark Pokémon is a redirect to a non-existent page (CSD R1). [edit] SandbotIs there a "master copy" for what the sandbox and, specifically, the template sandboxes get reset to? A change has been requested that would seem to require this to be altered. —Random832 16:58, 18 February 2008 (UTC)
[edit] NotificationBot & AFD BotI was going over the list of bots and noticed that NotificationBot (talk · contribs) & AFD Bot (talk · contribs) has not edited in a very long time. Is this bot still active and if not, would you object to it being de-flagged? Please post your comments to Wikipedia_talk:Bots/Requests_for_approval#Dead_bots since this is a rather widely-posted message. MBisanz talk 20:16, 7 March 2008 (UTC) [edit] Bot activityI was going over the list of bots and noticed that Kurando-san (talk · contribs) has not edited in a very long time. Is this bot still active and if not, would you object to it being de-flagged? Please post your comments to Wikipedia_talk:Bots/Requests_for_approval#Dead_bots since this is a rather widely-posted message. MBisanz talk 06:46, 13 March 2008 (UTC) [edit] Bot activity 2I was going over the list of bots and noticed that NekoDaemon (talk · contribs) has not edited in a very long time. Is this bot still active and if not, would you object to it being de-flagged? Please post your comments to Wikipedia_talk:Bots/Requests_for_approval#Dead_bots since this is a rather widely-posted message. MBisanz talk 01:07, 14 March 2008 (UTC) [edit] Various proposalsJust so I don't make things bad. Do you want users to respond under the proposals at Wikipedia_talk:Bots/Requests_for_approval#Proposal:_Problematic_bots_should_use_the_RFC_process or just at the end in their own bulleted section? MBisanz talk 07:36, 21 March 2008 (UTC)
[edit] Re: BetaCommand 2 RfAHi -- I just read your comments on this RfA, & wanted to tell you that I believe you've stated the problem (or at least one of them) accurately & succinctly. I've worked off & on for the last few years as a contractor at a major semiconductor manufacturing corporation that you may have heard of (hint: they're a competitor with AMD), most recently supporting a set of software performance tools written by developers for developers, & what you have said is true. Although many developers do not fit in any manner the stereotype, I can attest it can be a challenge on one hand to get a developer as a user to provide a reproducable test case to troubleshoot, while on the other convincing a developer to actually fix a proven bug -- or providing crucial information for understanding what is going on in the code! (Although this was not the only problem here, which is why I'm considering commenting in this RfA.) -- llywrch (talk) 16:40, 24 March 2008 (UTC) [edit] California photo requests now by CountyI saw your name at Wikipedia:Wikipedians/Photographers. I just spent the past few days moving all the California photo requests into County categories to make it easier for photographers to locate requests in the locations where they take photos. Please consider monitoring and adding your name to the list at Category:Wikipedia requested photographs in Los Angeles County, California as well as the other counties in Southern California. GregManninLB (talk) 21:19, 25 March 2008 (UTC) [edit] MfD nomination of Wikipedia:WikifunWikipedia:Wikifun, a page you created, has been nominated for deletion. Your opinions on the matter are welcome; please participate in the discussion by adding your comments at Wikipedia:Miscellany for deletion/Wikipedia:Wikifun and please be sure to sign your comments with four tildes (~~~~). You are free to edit the content of Wikipedia:Wikifun during the discussion but should not remove the miscellany for deletion template from the top of the page; such removal will not end the deletion discussion. Thank you. Kesh (talk) 02:56, 7 May 2008 (UTC) [edit] Image copyright problem with Image:Cerritos City Seal (color).gifThanks for uploading Image:Cerritos City Seal (color).gif. You've indicated that the image is being used under a claim of fair use, but you have not provided an adequate explanation for why it meets Wikipedia's requirements for such images. In particular, for each page the image is used on, the image must have an explanation linking to that page which explains why it needs to be used on that page. Can you please check
This is an automated notice by FairuseBot. For assistance on the image use policy, see Wikipedia:Media copyright questions. --07:55, 17 May 2008 (UTC) [edit] VFD BotI've proposed the deflagging of VFD Bot here. BJTalk 04:50, 17 June 2008 (UTC) [edit] Wikipedia:WikiProject Articles Needing Copy EditHello there! I have begun a new WikiProject that has a very simple goal, to improve Wikipedia by dealing with the articles tagged for copy edit, and am wondering if you are interested. *smiles* This project is not a clone of the defunct League Of Copy Editors because we will not deal with requests for review (that is currently handled by our good friends over at Peer Review). I expect that this will be a relaxed, happy and casual WikiProject, because participants will be able to take things at their own pace and use the project page to ask other participants for help. A handful of people have already expressed interest at the proposal page, and if you're interested, feel free to sign up at the project page itself and discuss the project at its talk page. There are now over 4000 articles needing copy edit, and very, very few people working on them, so any help, however small, is appreciated. I am in the process of getting word out about the project, so I'm pretty sure we will be in good stead to fulfill our goals. Cheers! -Samuel Tan 03:35, 22 July 2008 (UTC) [edit] Speedy deletion of Template:28DayCalendarStartingOnMondayA tag has been placed on Template:28DayCalendarStartingOnMonday requesting that it be speedily deleted from Wikipedia. This has been done under section T3 of the criteria for speedy deletion, because it is a deprecated or orphaned template. After seven days, if it is still unused and the speedy deletion tag has not been removed, the template will be deleted. If the template is intended to be substituted, please feel free to remove the speedy deletion tag and please consider putting a note on the template's page indicating that it is substituted so as to avoid any future mistakes (<noinclude>{{transclusionless}}</noinclude>). Thanks. --MZMcBride (talk) 06:00, 12 September 2008 (UTC) [edit] Speedy deletion of Template:28DayCalendarStartingOnSundayA tag has been placed on Template:28DayCalendarStartingOnSunday requesting that it be speedily deleted from Wikipedia. This has been done under section T3 of the criteria for speedy deletion, because it is a deprecated or orphaned template. After seven days, if it is still unused and the speedy deletion tag has not been removed, the template will be deleted. If the template is intended to be substituted, please feel free to remove the speedy deletion tag and please consider putting a note on the template's page indicating that it is substituted so as to avoid any future mistakes (<noinclude>{{transclusionless}}</noinclude>). Thanks. --MZMcBride (talk) 06:00, 12 September 2008 (UTC) [edit] Speedy deletion of Template:29DayCalendarStartingOnMondayA tag has been placed on Template:29DayCalendarStartingOnMonday requesting that it be speedily deleted from Wikipedia. This has been done under section T3 of the criteria for speedy deletion, because it is a deprecated or orphaned template. After seven days, if it is still unused and the speedy deletion tag has not been removed, the template will be deleted. If the template is intended to be substituted, please feel free to remove the speedy deletion tag and please consider putting a note on the template's page indicating that it is substituted so as to avoid any future mistakes (<noinclude>{{transclusionless}}</noinclude>). Thanks. --MZMcBride (talk) 06:00, 12 September 2008 (UTC) [edit] Speedy deletion of Template:29DayCalendarStartingOnSundayA tag has been placed on Template:29DayCalendarStartingOnSunday requesting that it be speedily deleted from Wikipedia. This has been done under section T3 of the criteria for speedy deletion, because it is a deprecated or orphaned template. After seven days, if it is still unused and the speedy deletion tag has not been removed, the template will be deleted. If the template is intended to be substituted, please feel free to remove the speedy deletion tag and please consider putting a note on the template's page indicating that it is substituted so as to avoid any future mistakes (<noinclude>{{transclusionless}}</noinclude>). Thanks. --MZMcBride (talk) 06:00, 12 September 2008 (UTC) [edit] Speedy deletion of Template:29DayCalendarStartingOnTuesdayA tag has been placed on Template:29DayCalendarStartingOnTuesday requesting that it be speedily deleted from Wikipedia. This has been done under section T3 of the criteria for speedy deletion, because it is a deprecated or orphaned template. After seven days, if it is still unused and the speedy deletion tag has not been removed, the template will be deleted. If the template is intended to be substituted, please feel free to remove the speedy deletion tag and please consider putting a note on the template's page indicating that it is substituted so as to avoid any future mistakes (<noinclude>{{transclusionless}}</noinclude>). Thanks. --MZMcBride (talk) 06:00, 12 September 2008 (UTC) [edit] Wikipedia:Wikipedia Loves ArtFirst off, I apologize for the spam. You are receiving this message because you have indicated that you are in Southern California or interested in Southern California topics (either via category or WikiProject). I would like to invite you to the Los Angeles edition of Wikipedia:Wikipedia Loves Art, a photography scavenger hunt to be held at the Los Angeles County Museum of Art (LACMA) on Saturday, February 28, 2009, from 1:00 to 7:00 PM. All photos are intended for use in Wikipedia articles or on Wikimedia Commons. There will be a prize available for the person who gets the most photos on the list. If you don't like art, why not come just to meet your fellow Wikipedians. Apparently, we haven't had a meetup in this area since June 2006! If you are interested in attending, please add your name to Wikipedia:Wikipedia Loves Art#Los Angeles County Museum of Art. Please make a note if you are traveling to the area (train or plane) and need transportation, which can probably be arranged via carpool, but we need time to coordinate. Lodging is as of right now out of scope, but we could discuss that if enough people are interested. Thank you and I hope to see you there! howcheng {chat} 23:29, 9 January 2009 (UTC)
[edit] Welcome back.:) --Until It Sleeps Wake me 02:59, 12 June 2009 (UTC)
[edit] RFPPWelcome back! Please use the administrator notation templates at RFPP otherwise the archive bot will not work properly. The templates are located in the blue box on the edit page. Nakon 05:43, 12 June 2009 (UTC) | |||||
| ↑ top of page ↑ | about thumbshots |