Usuario:Fbstj/stats/only-my-edits

De La Coppermind
< Usuario:Fbstj
Revisión del 21:46 12 jun 2018 de Fbstj (discusión | contribs.) (a quick description of my evening's messing)
(difs.) ← Revisión anterior | Revisión actual (difs.) | Revisión siguiente → (difs.)
Ir a la navegación Ir a la búsqueda

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