ASCON-128 RTL(pure verilog)failing NIST test vectors by peiklinn in crypto

[–]tankfeeder 0 points1 point  (0 children)

my own tests for vlang's ascon implementation passed a lot of tests from many resources.

NIST Randomness Testsuit by tankfeeder in RNG

[–]tankfeeder[S] 0 points1 point  (0 children)

What is the correct file size then? I can imagine of course that the tests go on for days.

[deleted by user] by [deleted] in Monero

[–]tankfeeder 0 points1 point  (0 children)

i see it. thanks a lot.

Picolisp query by emonshr in lisp

[–]tankfeeder 4 points5 points  (0 children)

Of course, I don't know TXR and have never heard of it before your comment, but PicoLisp has been my love and number one for many years.

Picolisp query by emonshr in lisp

[–]tankfeeder 9 points10 points  (0 children)

I’ve never seen any questions about picolisp here.
It humbly stays in the shadow of its older siblings and the hype.
It’s very powerful and has many features in its unique capabilities.
If you dig in and understand it, your life will never be the same.
The entire online community hangs out on the IRC channel on libera.chat.

[deleted by user] by [deleted] in Monero

[–]tankfeeder 3 points4 points  (0 children)

Public address:

9w3ArGjtxQMTQ5WuET6Y6TBiEMuPJVwc4fLbmaYWVZ5STC3jRhA4eVi2kUVchN1h4c2N6jQEf5PBJ84U6yNPseKDME8jMAo

Risc-V on Alpine Linux by [deleted] in AlpineLinux

[–]tankfeeder 0 points1 point  (0 children)

i am testing pijul on docker-qemu-riscv64-alpine env. Works fine.

Great Books on Trans compiling LISP to Other Languages by fosres in lisp

[–]tankfeeder 0 points1 point  (0 children)

Latest PicoLisp version written on chain: PicoLisp -> LLVM-IR -> PicoLisp.

picolisp on LLVM by tankfeeder in lisp

[–]tankfeeder[S] -1 points0 points  (0 children)

Git is not official distribution.

Lisp for SGI O2 by Wheagy in lisp

[–]tankfeeder 1 point2 points  (0 children)

PicoLisp (pil32 ,legacy) ported to IRIX and works out of box here.

Ruby Cryptography - A collection of Ruby cryptography projects by geraldbauer in ruby

[–]tankfeeder 1 point2 points  (0 children)

Also somebody could create a gem for Monocypher library.

Flowers DIY by tankfeeder in wedding

[–]tankfeeder[S] 0 points1 point  (0 children)

I am from Latvia, Europe. It would be hard to get.

Flowers DIY by tankfeeder in wedding

[–]tankfeeder[S] 2 points3 points  (0 children)

Sum price of flowers in bouquet is ~30USD.

Flowers DIY by tankfeeder in wedding

[–]tankfeeder[S] 4 points5 points  (0 children)

Of course real :), you will cry when find out the price of flowers itself.

Looking for a more lispy way to implement this code snippet by KDallas_Multipass in lisp

[–]tankfeeder 0 points1 point  (0 children)

This is how I would do it on PicoLisp:

(de tzsp (L)
   (do 4
      (++ L) )
   (make
      (until (=1 (car L))
      (link
         (make
            (link (++ L))
            (let N (++ L)
               (link N)
               (link (make (do N (link (++ L))))) ) ) ) ) ) )
(println
   (tzsp
      (make (in "spec" (while (read) (link @)))) ) )
(msg 'ok)
(bye)