(require 'sb-simd)
(defpackage :simd-pack-user
(:use :sb-simd-avx :cl))
(in-package :simd-pack-user)
I'm assuming you are referring to the following operation:
(defgroup ulisp-mode nil | |
"Settings for ulisp-mode Lisp source buffers." | |
:prefix "ulisp-" | |
:group 'ulisp) | |
(defcustom ulisp-port "/dev/ttyUSB0" | |
"uLisp serial port" | |
:type 'string | |
:group 'ulisp-mode) | |
(defcustom ulisp-port-speed 115200 | |
"uLisp serial port speed bps" |
try: | |
import pyaudio | |
import numpy as np | |
import pylab | |
import matplotlib.pyplot as plt | |
from scipy.io import wavfile | |
import time | |
import sys | |
import seaborn as sns | |
except: |
Disable REST Api without Plugins | |
https://rudrastyh.com/wordpress/disable-rest-api.html | |
Add featured image & alt text to WP REST API | |
https://allisontarr.com/2021/10/13/add-featured-image-alt-text-to-wp-rest-api/ | |
Allow ALL cross origin requests to WordPress REST API | |
https://github.com/Shelob9/rest-all-cors | |
WordPress theme using Rest API and Vue.js |
atom-fuzzy-grep
atom-jshint
color-picker
git-plus
highlight-selected
minimap
minimap-autohide
minimap-bookmarks
minimap-find-and-replace
minimap-git-diff
; Comments start with semicolons. | |
; Clojure is written in "forms", which are just | |
; lists of things inside parentheses, separated by whitespace. | |
; | |
; The clojure reader assumes that the first thing is a | |
; function or macro to call, and the rest are arguments. | |
; | |
; Here's a function that sets the current namespace: | |
(ns test) |
(defscreen main-screen | |
:on-show | |
(fn [screen entities] | |
(update! screen | |
:renderer (model-batch) | |
:attributes (let [attr-type (attribute-type :color :ambient-light) | |
attr (attribute :color attr-type 0.8 0.8 0.8 1)] | |
(environment :set attr)) | |
:camera (doto (perspective 75 (game :width) (game :height)) | |
(position! 0 0 3) |