User:Fbstj/stats/only-my-edits

From The Coppermind
Jump to navigation Jump to search

To find only my edits visit here (warning: slow to load) to view my first 5000 contributions to (main namespace) articles that are the latest edit. this loads up aprox 3k lines.

The following js will remove all redirects from the list which reduces it to about 1400 lines:

for (const li of $$('.mw-contributions-list li'))
  if (li.querySelector('.mw-redirect'))
    li.parentElement.removeChild(li)

This next js will remove all the links to pages with more than just my contributions (they have rollback links):

for (const li of $$('.mw-contributions-list li'))
  if (li.querySelector('.mw-rollback-link'))
    li.parentElement.removeChild(li)

this final list leaves ~340 articles in which I am the sole contributor

an extension to this would sort the list by creation-date to find the earliest articles I created and am still the sole contributor. such examples are probably Nelda, Makkek, Took and Ironsway, as 2012-12-08 seems to be the earliest I have found page creations by myself