persi

- friends
113 link karma
13 comment karma
send messageredditor for
what's this?

TROPHY CASE


  • One-Year Club

SBCL 1.0.56 released by blue1_in lisp

[–]persi 1 point2 points ago

How about we organize a 24 hour, across the globe, SBCL bughunt festival. Any volunteers for the dunking booth? I can man the ring toss.

Spellcheck your docstrings... by persiin lisp

[–]persi[S] 0 points1 point ago

It's ok, but when you have 100's of files in your system, its too much manual labor. Added to the fact that you're just going to get a lot of false positives due to the nature of the text being spellchecked, it's nice to just get a single long list to quickly scan for the obvious mistakes, which are generally, for me, english words with simple typos.

pedantic-if by persiin lisp

[–]persi[S] 2 points3 points ago

There is no 'void'. Every expression has to return something.

Not entirely true. You may be forgetting (values) which is eq to NIL but not the same thing.

* (eq nil (values))
T

* (equal (multiple-value-list nil) (multiple-value-list (values))
NIL

pedantic-if by persiin lisp

[–]persi[S] 1 point2 points ago*

You two seem to imply that adhering to style doesn't have concrete advantages. The advantage is that it decreases the mental effort required for a human to parse and understand the code. In this case, if adhered to, every IF you see will always have an else clause. You can count on it. Ignore this style and every time you see an IF you wont know until you read further in the code. A definite advantage and valuable.

Some interesting and educational commits. by persiin lisp

[–]persi[S] -2 points-1 points ago*

Whimsical!

Some interesting and educational commits. by persiin lisp

[–]persi[S] -4 points-3 points ago

☮ ☘ ☁ ❄ ☃ ✈ ☳ ☠ ✝ ✡ ☯ ☥ ♁ ♛ ⚅ ⚛ ⌚ ☄ ䷊

Some interesting and educational commits. by persiin lisp

[–]persi 0 points1 point ago

☮ ☘ ☁ ❄ ☃ ✈ ☳ ☠ ✝ ✡ ☯ ☥ ♁ ♛ ⚅ ⚛ ⌚ ☄ ䷊

Loop: yes or no? And why? by crowfeatherin lisp

[–]persi 0 points1 point ago

Do you have an example of things that ITERATE generates less efficient code than LESS?

SBCL to soon get SSE intrinsics! by persiin lisp

[–]persi[S] 1 point2 points ago

sorry, this has been archived and can no longer be voted on

On reddit downtime... by Tiomaidhin lisp

[–]persi 11 points12 points ago

sorry, this has been archived and can no longer be voted on

Would you please care to elaborate?

Text processing in lisp for a newbie? by KDallas_Multipassin lisp

[–]persi 2 points3 points ago

sorry, this has been archived and can no longer be voted on

Completely depends on the data. The data could be simple and the lisp program could be a one liner. Or...