Jump to content

User talk:Jtmorgan: Difference between revisions

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
Content deleted Content added
m Archiving 1 discussion(s) to User talk:Jtmorgan/Archive 7) (bot
No edit summary
Line 26: Line 26:
|[[File:Wiknic logo.svg|right|100px]]
|[[File:Wiknic logo.svg|right|100px]]
|}
|}

== Hi. I'd like my content back up ==
I'd appreciate you stop your malicious removal of my content. Thanks. The content is relevant to the subject and has links to prove it. If something needs to be changed or added to fit your approval, you can just tell me and stop being rude about it. I realize computer screen anonymity makes you feel powerful, but kindness is still a good trait to have. If you'd like to call me and have a chat, I'd love it. So, give me an email to send a number to.



== Thanks, I am sooo new to this whole thing, it's fun but pretty hard! lol ==
== Thanks, I am sooo new to this whole thing, it's fun but pretty hard! lol ==

Revision as of 18:29, 6 July 2017


Welcome to my talk page! Drop me a line.

  • If you're here because you got an invitation to visit something called the Teahouse from someone called HostBot: double welcome! I run HostBot.
  • If you have a question about editing. Please ask it at the Teahouse Q&A board. You'll get better answers there, and you'll get them faster.
  • If you have a question about HostBot itself, or want to report a bug: please leave a detailed message and I'll respond as quickly as possible.

Seattle Wiknic 2015

In the Seattle area? You are invited to the Seattle Wiknic 2015 on Sunday, July 5, 2015, 11am to 2pm at the Washington Park Arboretum, in the meadow area to the south of the Graham Visitors Center, approximately at 47°38′15″N 122°17′38″W / 47.637435°N 122.293986°W / 47.637435; -122.293986. Click here for more details!

Hi. I'd like my content back up

I'd appreciate you stop your malicious removal of my content. Thanks. The content is relevant to the subject and has links to prove it. If something needs to be changed or added to fit your approval, you can just tell me and stop being rude about it. I realize computer screen anonymity makes you feel powerful, but kindness is still a good trait to have. If you'd like to call me and have a chat, I'd love it. So, give me an email to send a number to.


Thanks, I am sooo new to this whole thing, it's fun but pretty hard! lol

Thanks for your warm welcome, HostBot!

Thanks for thinking of me good friend Jtmorgan! All hail HostBot! Will try not to be too loud in the the Teahouse! [whispers] Best. - Asdiprizio (talk) (UTC)

I must have done something Very Very awful to you because I never thought I would be called names when I preview things as browser. Things like last edited by an annoying person to be nice. I am managing partner of a very generous Corp. with 211 employees most work from home. That said I have just been trying to learn how to do new things on computers on my own and as a Gen X guy it can be difficult. however, I taught myself a lot over a year and I figured I could try writing on Wikipedia and not bother anyone no matter how long I work at it. so yesterday Invite to take an adventure while learning but I didn't understand the idea or what was happening. I waisted so much time doing as told went to the tea shop everything but it ran me in circles. I was so mad I had our legal counsel here at six am along with local employees to see what would happen well the names came faster. so I sent someone there the name and phone number of our law firm. then my history was changed or deleted friends saw different things with my name on it and in the same house the screens are different. I hope it's a freak thing because I don't feel good after presenting four attorneys to young smart people that I thought you were. all done maybe venting will help.

Seattle Wiknic 2016

In the Seattle area? You are invited to the Seattle Wiknic 2016 on Saturday, July 16, 2016, noon to 3pm at the Washington Park Arboretum, in the meadow area to the south of the Graham Visitors Center, approximately at 47°38′15″N 122°17′38″W / 47.637435°N 122.293986°W / 47.637435; -122.293986. Click here for more details!

Teahouse archival: coming up...

Hi!

If you remember the archival notification bot thing, I have a good chunk of code already done, as well as the template that the bot should substitute.

If you have time to review the code / make any comments, I would welcome it. The most simple test case is python3 find_and_notify.py > test.log which creates a list of entries user talk page -> text to add via the template (pull the repo, move to /scripts, run the command, check out the warnings in command line and inspect test.log). From what I could see, there are a few false negatives No matches for the creation of the following thread: which I believe are caused by a size limitation of how much history the API accesses in one go.

I still haven't made heads or tails of pywikibot's means to authenticate and post to pages, so I haven't coded the notification process itself (but it should be fairly quick once I understand what is going on). Once that is done, I think the bot request is good to go.

Also, I have trouble to access block info for IP editors via the API, if you know how it is done I am all ears.

All the best, TigraanClick here to contact me 20:55, 18 June 2017 (UTC)[reply]

Hi Tigraan! I replied on the MediaWiki thread with a solution to getting block status for IP users that should work. In terms of authentication, I know of two ways to do it. The first is to just make a POST request to the API with your normal user credentials. There's an example of that here (see the login_request, token_request, and publish functions). That should work for testing the scripts. For running HostBot, I use OAuth directly, via requests-oauthlib, rather than going through PyWikiBot (I can never make heads or tails of PWB either). You can see my implementation here, if that's helpful. The documentation for setting up your bot to use OAuth is a bit confusing. I don't remember the details of how I did it, or exactly why it's necessary/preferred, but it's worth looking into once you've got the bot tested and ready to go.
I took a quick look at you code and watched the repo. I probably won't have time to test it directly, but if there are any pieces you'd like another set of eyes on let me know. J-Mo 21:03, 19 June 2017 (UTC)[reply]