User:JesseW

Current UTC date and time: 07:13, 25 April 2024 (UTC)

  • Important Watchlist (http://en.wikipedia.org/w/wiki.phtml?title=Special:Recentchangeslinked&target=User%3AJesseW%2FImportantWatchlist)
  • Maintain Watchlist (http://en.wikipedia.org/w/wiki.phtml?title=Special:Recentchangeslinked&target=User%3AJesseW%2FMaintain_Watchlist)

JesseW's User page

Hello. I'm astonished and impressed with the quality of Wikipedia. I hope to help out, probably as some kind of WikiFaerie (http://c2.com/cgi/wiki?WikiFaeries). I'm also involved with various other Wiki's.

I'm a Los Angeles native, currently on leave from Reed College, in Portland, Oregon, USA. Besides working on Wikipedia, I enjoy contra dance, hacking, juggling, and science fiction, as well as various political work. I've also taken aikido from the Venice Japanese Community Center (http://www.vjcc.com/Aikido/aikido.htm) and the Oregon Ki Society (http://www.oregonki.org/). You may find this (http://netwood.net/usr/jessw/battlestar_galapagos.html) amusing, if you are familar with SF TV shows.

Hm. As of 22:26, 8 Dec 2004 (UTC) 08:49, 25 Dec 2004 (UTC) I have 1929 edits.(via Kate's Tools (http://kohl.wikimedia.org/kates-tools/count.action?user=JesseW&dbname=enwiki) <shrug>. Oh.

Other WikiMedia User pages

Missing image
Weinstein,jesse,2003.jpg
JesseW, juggling.
Contents


Useful links

My subpages

To Do

Interesting ideas

  • I found a great book called the Encyclopedia of Fire ISBN 1-57356-302-1 ; I would like to pull a lot of the facts in it and put them into Wikipedia. It has articles on the history of big fires that are facinating.
  • I've sent emails to the makers of the DEEP THOUGHT: sightings of 42 page asking if they would release their stuff under GFDL so it could be improved on Wikipedia; I hope to hear back from them. If they say yes, it will be considerable work to import and Wikifiy the pages, and then start work on finding references, cross links, and page numbers. Fun.
  • Add a picture of the collapse of the Santa Monicia Freeway in the Northridge Earthquake to the approriate article. 11:05, 8 Nov 2004 (UTC)
  • Work on a series of wikipedia pages on various commodities (apples, apparel, computer chips, etc.) listing where they are made, who makes them, how they are made, and who owns aspects of the above (means of production, intellectual property, consumers). 23:16, 1 Jan 2005 (UTC)

Funny!

Good, interesting pages

WikiOrganizations I support

My various Wiki software tools

Wiki-link bookmarklet

See Wikipedia:Wiki-Link Game. I've lost. ;-) It skips redlinks and external links.

Note: you need to change "thenum" to set it to another number than 5. Written by me on 10:07, 3 Dec 2004 (UTC)

javascript:void((function () {thenum=5; m=0; 
z=document.getElementById("bodyContent").getElementsByTagName("A"); for 
(n=0;n<z.length;n++) {if (/\/wiki\//.test(z[n].href)) {m=m+1}; if (m==thenum) 
{document.location=z[n].href}}})())

Category Browsing Tools

I've written two python scripts that together let you browse through the Wikipedia catagory system and generate pictures of the network. They can be downloaded here (http://www.reed.edu/~weinstej/wikipediacatbrowse.html). Please try them out, and complain if you can't figure out what they do, or if they break. Also, any patches or suggestions would be greatly appreciated. JesseW 11:59, 26 Oct 2004 (UTC)

If you wish to request a graph or textual list of the children and/or parents of a category, please ask on my Talk page. I'm happy to do it; I'll create them, upload them, and add them to this list(and let you know on your talk page. ;-) ) JesseW 02:51, 17 Dec 2004 (UTC)

I have now updated the code. It now makes nicer looking text output and has more documentation. JesseW 23:28, 22 Dec 2004 (UTC)

Forth release. Now the text output uses differnt headings for different depths. JesseW 05:16, 30 Dec 2004 (UTC)

Examples:

Bookmarklet

Wrote a bookmarklet to hide entries on my watchlist in which I am the last, listed, editor.

Note!! The current version of the script automatically identifies the user name, and the number of days displayed in the watchlist.

I release this script under the revised BSD license.

Sorry I couldn't get it to show up as a link. I'm working on it. JesseW 09:22, 19 Oct 2004 (UTC)

Versions

  • v2: Automatically identifies your userName
  • v3: Automatically identifies the number of days set to display in your watchlist. This should also fix the bugs where it erases other bits of screen. Please let me know.

The code

(You may need to copy the wikitext, not this text. Sorry.)

javascript:void((function () {userName=document.getElementById%28%22contentSub%22%29.innerHTML.match%28/%22%28.%2B%29%22/%29%5B1%5D; q=document.getElementsByTagName(%22ul%22); for (n=0;n<q.length;n++) {if (q[n].getAttribute(%22class%22)==%22special%22) {r=%22%22; z=q[n].childNodes; for (x=0;x<z.length;x=x+2) {LI=z[x].childNodes; if (LI[LI.length-4].innerHTML != userName && LI[LI.length-5].innerHTML != userName) {r=r+%22<li>%22+z[x].innerHTML+%22</li>\n%22}}; q[n].innerHTML=r}}})())

Bugs

User:Angela says that on Firefox 0.9.3 it erases the navigation bar rather than the watchlist entries. User:Angela says that on Wikia: it erases the sidebar rather than the watchlist entries.

I suspect both of these are because the bookmark edits all the <ul> lists in the document, and on Firefox or Wikia: it is picking up such lists in the wrong place. I will test it on these places and see if the bug shows up for me. If you also see the bug, or have any information about it, please add your comments on the Talk page, and I'll update this list. JesseW 03:53, 24 Oct 2004 (UTC)

I also use firefox but my copy erases both the bar and the watchlist entries...nice program though. [[User:BrokenSegue|BrokenSegue]] 23:51, 6 Nov 2004 (UTC)

I think both of these bugs should be fixed now. I'm identifying "ul" lists to change by their class="special" attribute now. Please let me know if this is fixed. JesseW 10:33, 8 Nov 2004 (UTC)

Emacs defun

wiktionary-get-page

 (defun wiktionary-get-page (title) (interactive "M") "" 
  (progn 
    (switch-to-buffer (get-buffer-create title))
    (erase-buffer)
    (insert (shell-command-to-string
	     (format "wget -q -O - \"%s?title=%s&action=edit\""
		     "http://en.wiktionary.org/w/wiki.phtml"
		     title)))
    (goto-char (point-min))
    (search-forward "<textarea") (search-forward ">") 
    (delete-region (point-min) (point))
    (search-forward "</textarea>") (setq pos (- (point) 11))

    (search-forward "wpEdittime")  
    (setq et (buffer-substring (- (point) 18) (- (point) 32)))
    (message "Edittime is: %s" et)
    (delete-region pos (point-max))

    (wikipedia-mode)
    (defvar wikipedia-edittime nil "*") 
    (set (make-local-variable 'wikipedia-edittime) et)))

wiktionary-submit-page

Warning! Do not use this unless you know it's not broken in some subtle way. It is only a first draft and probably is broken or does something bad, or at best, fails to work. So be careful. And send me improvements. JesseW 05:16, 23 Oct 2004 (UTC)

 (defun wiktionary-submit-page 
  (title content summary edittime 
	 &optional username password minor watch section) "" 
	 (http-post 
	  (concat "http://en.wiktionary.org/w/wiki.phtml?title=" 
		  (http-url-encode title 'iso-8859-1) 
		  "&action=submit")
	  `(("wpTextbox1" . content) 
	    ("wpSummary". summary) 
	    ("wpSave". "Save page")
	    ("wpSection" ."") ("wpEdittime" . edittime))
	  'iso-8859-1))

Awards

Missing image
WikiMedal_for_Janitorial_Services.png
WikiMedal for Janitorial Services

Creative Commons License

Template:DualLicenseWithCC-BySA-Dual

Missing articles project template

Template:Project missing articles

Notes on thing's I've already done

(Things on here may be removed whenever I feel like it. The'll be available from history...)

  • Make Billet from the source I found. - Finally done. Just a tiny job... JesseW 07:14, 21 Mar 2005 (UTC)
  • Mathias Maul, the author of the Ultra-Complete Index of HHGttG, has put it under GFDL. I've added it; now the Wikification can begin. (Moved to done on 23:16, 1 Jan 2005 (UTC))
  • Organized the various lists of sources for articles, and made a template listing the actual pages with content. The template is Template:Article_resources. Good stuff. JesseW 11:03, 18 Oct 2004 (UTC)
  • Changed my "nickname" so it references a staus template, which I can use to post messages on every page I sign. Unless I developer contacts me and says I'm personally causing major slowdown of the entire wikipedia, I'll keep it. JesseW User:JesseW/status 13:43, 18 Nov 2004 (UTC)
Removed, as I just read a thread on the VP saying it was a terrible idea. ;-) JesseW 14:03, 18 Nov 2004 (UTC)
Navigation

  • Art and Cultures
    • Art (https://academickids.com/encyclopedia/index.php/Art)
    • Architecture (https://academickids.com/encyclopedia/index.php/Architecture)
    • Cultures (https://www.academickids.com/encyclopedia/index.php/Cultures)
    • Music (https://www.academickids.com/encyclopedia/index.php/Music)
    • Musical Instruments (http://academickids.com/encyclopedia/index.php/List_of_musical_instruments)
  • Biographies (http://www.academickids.com/encyclopedia/index.php/Biographies)
  • Clipart (http://www.academickids.com/encyclopedia/index.php/Clipart)
  • Geography (http://www.academickids.com/encyclopedia/index.php/Geography)
    • Countries of the World (http://www.academickids.com/encyclopedia/index.php/Countries)
    • Maps (http://www.academickids.com/encyclopedia/index.php/Maps)
    • Flags (http://www.academickids.com/encyclopedia/index.php/Flags)
    • Continents (http://www.academickids.com/encyclopedia/index.php/Continents)
  • History (http://www.academickids.com/encyclopedia/index.php/History)
    • Ancient Civilizations (http://www.academickids.com/encyclopedia/index.php/Ancient_Civilizations)
    • Industrial Revolution (http://www.academickids.com/encyclopedia/index.php/Industrial_Revolution)
    • Middle Ages (http://www.academickids.com/encyclopedia/index.php/Middle_Ages)
    • Prehistory (http://www.academickids.com/encyclopedia/index.php/Prehistory)
    • Renaissance (http://www.academickids.com/encyclopedia/index.php/Renaissance)
    • Timelines (http://www.academickids.com/encyclopedia/index.php/Timelines)
    • United States (http://www.academickids.com/encyclopedia/index.php/United_States)
    • Wars (http://www.academickids.com/encyclopedia/index.php/Wars)
    • World History (http://www.academickids.com/encyclopedia/index.php/History_of_the_world)
  • Human Body (http://www.academickids.com/encyclopedia/index.php/Human_Body)
  • Mathematics (http://www.academickids.com/encyclopedia/index.php/Mathematics)
  • Reference (http://www.academickids.com/encyclopedia/index.php/Reference)
  • Science (http://www.academickids.com/encyclopedia/index.php/Science)
    • Animals (http://www.academickids.com/encyclopedia/index.php/Animals)
    • Aviation (http://www.academickids.com/encyclopedia/index.php/Aviation)
    • Dinosaurs (http://www.academickids.com/encyclopedia/index.php/Dinosaurs)
    • Earth (http://www.academickids.com/encyclopedia/index.php/Earth)
    • Inventions (http://www.academickids.com/encyclopedia/index.php/Inventions)
    • Physical Science (http://www.academickids.com/encyclopedia/index.php/Physical_Science)
    • Plants (http://www.academickids.com/encyclopedia/index.php/Plants)
    • Scientists (http://www.academickids.com/encyclopedia/index.php/Scientists)
  • Social Studies (http://www.academickids.com/encyclopedia/index.php/Social_Studies)
    • Anthropology (http://www.academickids.com/encyclopedia/index.php/Anthropology)
    • Economics (http://www.academickids.com/encyclopedia/index.php/Economics)
    • Government (http://www.academickids.com/encyclopedia/index.php/Government)
    • Religion (http://www.academickids.com/encyclopedia/index.php/Religion)
    • Holidays (http://www.academickids.com/encyclopedia/index.php/Holidays)
  • Space and Astronomy
    • Solar System (http://www.academickids.com/encyclopedia/index.php/Solar_System)
    • Planets (http://www.academickids.com/encyclopedia/index.php/Planets)
  • Sports (http://www.academickids.com/encyclopedia/index.php/Sports)
  • Timelines (http://www.academickids.com/encyclopedia/index.php/Timelines)
  • Weather (http://www.academickids.com/encyclopedia/index.php/Weather)
  • US States (http://www.academickids.com/encyclopedia/index.php/US_States)

Information

  • Home Page (http://academickids.com/encyclopedia/index.php)
  • Contact Us (http://www.academickids.com/encyclopedia/index.php/Contactus)

  • Clip Art (http://classroomclipart.com)
Toolbox
Personal tools