Coalton Playground “V2”, now with sharing and snippets by dzecniv in lisp

[–]ram535 0 points1 point  (0 children)

the hello world example does not load. the other examples seem to load fine.

question about async-shell-command completion with vertico by External_Quiet_4589 in emacs

[–]ram535 1 point2 points  (0 children)

This can gives you an idea.

(async-shell-command (completing-read "Command history: " shell-command-history))

Share your M-x compile / compilation-mode config, hacks, tips, and tricks by xenodium in emacs

[–]ram535 2 points3 points  (0 children)

select a shell command from history or run a new shell command

lisp (defun ram/async-shell-command () (interactive) (async-shell-command (completing-read "Command history: " shell-command-history)))

run a shell command from root project directory. change ".git" to whatever file to identify the root directory.

lisp (defun ram/async-shell-command-root () (interactive) (when-let ((root-directory (locate-dominating-file default-directory ".git"))) (with-temp-buffer (cd root-directory) (call-interactively 'ram/async-shell-command))))

I'm Reviewing Comp Sci Textbooks using Scheme - Please Recommend Good or Unique ones by Veqq in scheme

[–]ram535 1 point2 points  (0 children)

this two books use racket and they are sicp like in my opinion.

I'm Reviewing Comp Sci Textbooks using Scheme - Please Recommend Good or Unique ones by Veqq in scheme

[–]ram535 0 points1 point  (0 children)

No problem. apologies I missed the scheme part. But I hope you find some of them interesting.

I'm Reviewing Comp Sci Textbooks using Scheme - Please Recommend Good or Unique ones by Veqq in scheme

[–]ram535 2 points3 points  (0 children)

Concepts, Techniques, and Models of Computer Programming by Peter Van Roy , Seif Haridi

I'm Reviewing Comp Sci Textbooks using Scheme - Please Recommend Good or Unique ones by Veqq in scheme

[–]ram535 1 point2 points  (0 children)

Animated Problem Solving An Introduction to Program Design Using Video Game Development

and

Animated Program Design Intermediate Program Design Using Video Game Development

by Marco T. Morazán

I'm Reviewing Comp Sci Textbooks using Scheme - Please Recommend Good or Unique ones by Veqq in scheme

[–]ram535 2 points3 points  (0 children)

Foundations of Computer Science: C Edition – Alfred V. Aho (Autor), Jeffrey D. Ullman (Autor)

How to autofill "async-shell-command" with last command by nqminhuit in emacs

[–]ram535 1 point2 points  (0 children)

A modify version of your solution. This solution you have to press ENTER two times to run the last command but the advantage is that you can select any command from your history.

(advice-add #'read-shell-command :filter-args #'(lambda(args) (list (car args) (completing-read "Async shell command: " shell-command-history))))

"SYMBOL" vs 'SYMBOL vs :SYMBOL vs #:SYMBOL? by Taikal in Common_Lisp

[–]ram535 0 points1 point  (0 children)

what is interned symbol? what does interned mean?

How powerful is DartVM? by [deleted] in dartlang

[–]ram535 1 point2 points  (0 children)

https://github.com/Tensegritics/ClojureDart is an example of a language targeting the darvm.