Search Results

Found 12 results for "3874f6573c3e5998fa5fc5fafc0d2be0" across all boards searching md5.

Anonymous /a/280827641#280833257
7/23/2025, 8:30:02 AM
what causes this?
Anonymous /a/280591396#280592248
7/15/2025, 2:50:44 PM
Anonymous /a/280510722#280511113
7/13/2025, 1:12:41 AM
Anonymous /g/105787706#105787873
7/3/2025, 2:19:08 PM
>>105787706
not much to it, its called systems of trust, if you can invent one that is powered by moral goodness you have basically solved humanity. even religion didn't really work.
Anonymous ID: /yVATiPL/biz/60572395#60572829
7/2/2025, 6:23:46 PM
The NKE movement just encapsulates how fucking retarded this market is:
>Pumps because of vague Trump tweet about a Vietnam deal
>Dumps below opening price 10 minutes later when it turns out that the deal still involves large tariffs
>Starts pumping again after another 10 minutes because stocks must go up
Anonymous /a/280143665#280167212
7/2/2025, 5:04:16 AM
Anonymous /a/280074577#280092550
6/29/2025, 6:34:34 PM
Off we go...
Anonymous /vg/528676747#528712301
6/25/2025, 3:29:11 AM
*joins lumu only to cart*
*leaves*
Anonymous /a/279930535#279930575
6/24/2025, 5:55:04 AM
Anonymous /vg/527964956#527966435
6/19/2025, 4:32:40 AM
>bad ratings on google
>bad reviews on steam

when do we get free shit?
Anonymous /g/105527756#105543006
6/10/2025, 12:17:22 AM
>>105540524
>Can Lisp ever be a efficient as C or is it destined to be slower due to the way it was designed?
(define (compile term table reg)
(match term
[(? number? n)
(let ([a (reg)])
(format #t "mov r~a, #~a~%" a n)
a)]
[(? symbol? s)
(let ([a (reg)])
(format #t "mov r~a, r~a~%" a (cdr (assoc s table)))
a)]
[('+ left right)
(let ([a (compile left table reg)]
[b (compile right table reg)])
(format #t "add r~a, r~a, r~a~%" b b a)
b)]
[('let binds scope)
(let* ([syms (map car binds)]
[vals (map cdr binds)]
[n (length binds)]
[regs (iota n)])
(format #t "~:{mov r~a, #~a~%~}" (map cons regs vals))
(set! reg (counter (- n 1)))
(compile scope (append (map cons syms regs) table) reg))]))

(define-syntax test
(syntax-rules ()
[(test program)
(compile 'program '() (counter 0))]))
(test
(+ 2 (+ 3 5)))
mov r1, #5
mov r2, #3
add r1, r1, r2
mov r3, #2
add r1, r1, r3
(test
(let ([a 2]
[b 3])
(+ a (+ b 5))))
mov r0, #2
mov r1, #3
mov r2, #5
mov r3, r1
add r2, r2, r3
mov r4, r0
add r2, r2, r4
screw c i'm already as fast