Gregorio M

Results 7 issues of Gregorio M

https://computergraphics.stackexchange.com/questions/5105/range-of-integers-returned-by-glgenbuffers in ```cepl-context.lisp``` ```register-texture```, ```register-fbo```, and ```register-gpu-buffer``` index into an array in the cepl context object based on their opengl id, for example: ```(setf (aref fbos id) fbo)``` indexes into...

Hello! I am very interested in this project because I'm making a sort-of-web browser that uses common lisp instead of javascript. You can find the quicklisp request here: https://github.com/quicklisp/quicklisp-projects/issues/1785

![Untitled](https://user-images.githubusercontent.com/14166099/123730123-02309680-d864-11eb-9a57-8cdd08ec1154.png) `y_train[y_train[:] == 1]` and `y_train[y_train[:] == 0]` both return 537 rows.

x64 sbcl runs out of memory 2 times before compiling the project https://github.com/terminal625/cg-llvm

(defrule dressed-elegantly () (v "bar") (v "bar") (v "bar") (cap 1 foo+) (v "bar") (v "bar") (v "bar") (recap 1)) ; in: DEFRULE DRESSED-ELEGANTLY ; (ESRAP-LIQUID:CAP 1 CG-LLVM::FOO+) ; ;...

``` (define-foreign-library (glfw) (:darwin (:or ; homebrew naming "libglfw3.1.dylib" "libglfw3.dylib" ; cmake build naming "libglfw.3.1.dylib" "libglfw.3.dylib")) (:unix (:or "libglfw.so.3.1" "libglfw.so.3")) (:windows "glfw3.dll") (t (:or (:default "libglfw3") (:default "libglfw")))) (use-foreign-library glfw)...