Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Clipboard thread

Name: Anonymous 2010-02-10 3:16

You know what to do.

Name: Anonymous 2010-02-10 3:36

Name: Anonymous 2010-02-10 3:39

You were the 2nd to help summon the Catapult, 8 more people are needed to summon the Catapult.

Name: Anonymous 2010-02-10 3:39

Name: Anonymous 2010-02-10 3:52

FUNC22574

Name: Anonymous 2010-02-10 4:36

Name: Anonymous 2010-02-10 6:52

Name: Anonymous 2010-02-10 7:00

As Tall As Lions

Name: Anonymous 2010-02-10 7:05

­

Name: Anonymous 2010-02-10 7:07

Name: Anonymous 2010-02-10 7:08

Name: Anonymous 2010-02-10 7:43

Name: Anonymous 2010-02-10 8:36

        }

Name: Anonymous 2010-02-10 8:44


In this golf site, all z80 program must stop by HALT. You may be surprised since the following one-instruction code outputs two '\x00' and then stops.

Name: Anonymous 2010-02-10 9:32

Bear in mind that at the time of writing this, I have known how to use syntax-rules since yesterday, but my knowledge seems to be complete enough to write a working module system

Name: Anonymous 2010-02-10 10:23

Name: Anonymous 2010-02-10 15:01

GM_registerMenuCommand('Options', options);
function options() {
  var div = document.createElement('div');
  div.setAttribute('style', 'position: fixed; top:0; right:0');
  div.innerHTML =
    '<div>Options</div>' +
    '<label>foo<input type="checkbox"></label><br>' +
    '<label>bar<input type="checkbox"></label><br>' +
    '<label>baz<input type="checkbox"></label><br>' +
    '<a>save</a> <a>cancel</a>';
  var boxes = div.getElementsByTagName('input');
  for (var i = 0, l = boxes.length; i < l; i++)
    boxes[i].checked = GM_getValue(boxes[i].previousSibling.textContent);
  var a = div.getElementsByTagName('a');
  a[0].addEventListener('click',
    function() {//save
      var div = this.parentNode;
      var boxes = div.getElementsByTagName('input');
      for (var i = 0, l = boxes.length; i < l; i++)
        GM_setValue(boxes[i].previousSibling.textContent, boxes[i].checked);
      div.parentNode.removeChild(div);
    },
    true);
  a[1].addEventListener('click',
    function() {//cancel
      var div = this.parentNode;
      div.parentNode.removeChild(div);
    },
    true);
  document.body.appendChild(div);
}

Name: Anonymous 2010-02-10 15:04

C-v:

http://www.mousegestures.org/installation/

X11 middle click:

This might surprise you, but noticing that one operator does two different things in two distinct languages isn't funny. Go and fuck yourself and your C++-level humour.

Name: Anonymous 2010-02-10 15:14

Name: Anonymous 2010-02-10 16:17

Name: Anonymous 2010-02-10 16:38

Name: Anonymous 2010-02-10 23:01

getStartSector()

Name: Anonymous 2010-02-11 2:34

Så er det taget ned !
 
Hvor hurtigt kan du hente det ?
 
Med venlig hilsen

Name: !iN.MY.aRMs 2010-02-11 4:29

initiliaseNuclearBombExplozionCalcaultion()

Name: Anonymous 2010-02-11 6:00

Language of choice correlates strongly with neckbeard length

Name: Anonymous 2010-02-11 8:59

{{disambig}}

Name: Anonymous 2010-02-11 14:09

>>23 hi Bjarne

Name: Anonymous 2010-02-11 14:21

>>26
wikipedo detected

Name: Anonymous 2010-02-11 14:28

Michele Simionato wrote:
R6RS scheme has identifier macros:

(define (list-macro lst)
  (make-variable-transformer
   (lambda (x)
   (syntax-case x (set! len)
     ((ls len) (length lst))
     (ls #`'#,lst)))))

>> (define z 1)
>> (define-syntax a (list-macro (list z 2)))

This is not very kosher.  What you want is something like:

(define-syntax define-list-macro
   (syntax-rules ()
     [(_ name value)
      (begin
        (define tmp value)
        (define-syntax name
          (make-variable-transformer
            (lambda (stx)
              (syntax-case stx (len set!)
                [(x len)             #'(length tmp)]
                [(set! x v)          #'(set! tmp v)]
                [(x e* (... ...))    #'(tmp e* (... ...))]
                [x (identifier? #'x) #'tmp])))))]))

(define-list-macro foo (list 1 2 3))

(printf "~s ~s\n" foo (foo len)) ;=> (1 2 3) 3

(set! foo (list 2 3))

(printf "~s ~s\n" foo (foo len)) ;=> (2 3) 2

(foo 1 2 3) ;=> &assertion in apply: (2 3) not a procedure.

Aziz,,,

Name: Anonymous 2010-02-11 15:19

Thu Feb 11 12:15:31 PST 2010
Thu Feb 11 12:14:44 PST 2010

Name: Anonymous 2010-02-11 15:25

????????????????????

Name: Anonymous 2010-02-11 15:41

прямой кишки

Name: Anonymous 2010-02-11 15:58

changelogshow
 
OK, about to interview @leahculver for realz this time. Let's have your questions!

Name: Anonymous 2010-02-11 16:02

Name: Anonymous 2010-02-11 16:26

>>34
There is no emoticon that accurately expresses my reaction to this.

Name: Anonymous 2010-02-11 16:38

>>35 try the "meh" one.. :\

Name: Anonymous 2010-02-11 16:53

Name: Anonymous 2010-02-11 17:26

>>34
<_<
>_>
fapfapfapfapfapfapfapfapfapfapfapfapfapfapfap

Name: Anonymous 2010-02-11 17:37

    char  szLogoffURL[256];     // Log off URL (doesn't match whole URL - just any part)

Name: Anonymous 2010-02-11 17:44

(apply + (map pi-k '(0 1 2 3 4 5)))

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List