Quick
index
main
eev
eepitch
maths
angg
blogme
dednat6
littlelangs
PURO
(C2,C3,C4,
 λ,ES,
 GA,MD,
 Caepro,
 textos,
 Chapa 1)

emacs
lua
(la)tex
maxima
git
agda
forth
squeak
icon
tcl
tikz
fvwm
debian
irc
contact

Links on trying to learn JavaScript

Links pra oficina de JavaScript do PC:
http://js.stamsoft.com.br/
http://js.stamsoft.com.br/0.html   <- meu

;;  (find-file "/ftp:js\\@stamsoft.com.br@stamsoft.com.br:")
(code-c-d "PC" "/ftp:js\\@stamsoft.com.br@stamsoft.com.br:")
;; (find-PCfile "")
;; (find-PCfile "hello.txt")
;; (find-PCfile "0.html")
;; http://www.stamsoft.com.br/
http://js.stamsoft.com.br/hello.txt
function docopy (df) { df.output.value =      df.input.value;  }
function doeval (df) { df.output.value = eval(df.input.value); }

myset   = function (str) { document.form2.input.value = str; }
myset0  = function () { myset("Hello"); }
myfetch = function (page, f) {
  var req =  get_XmlHttp();
  req.open("GET", page);
  req.send(null);
  req.onreadystatechange = function() {
    if (req.readyState == 4) {
      f(req.responseText);
    }
  }
}

function copyFile(serverPage, tagID) {
  // var request =  get_XmlHttp();
  var request = new XMLHttpRequest();
  request.open("GET", serverPage); //Abre o arquivo
  request.send(null);
  request.onreadystatechange = function() {
    if (request.readyState == 4) {
      // document.getElementById(tagID).innerHTML = request.responseText;
      document.form2.input.value = request.responseText;
    }
  }
}
function foo () {
  copyFile('.irbrc.html', 'conteudo')
}


docopy() doeval()


docopy() doeval()

blo blu
blo blu
to_textarea('beth','beeboo')
to_textarea('beth',from_textarea('alan'))
to_pre('carl','fooee')
to_pre('carl',from_pre('danny'))

ooo