Create a fresh Windows 10 Pro ISO file with Microsofts Media Creation Tool. (I created a Windows 10 Pro 64 bit German ISO image)
Save the created image on your SmartOS global zone.
cp ... /zones/Windows10_64de.iso
#+cocoa | |
(defun current-language () | |
(let ((lang (objc:with-autorelease-pool () | |
(objc:invoke-into | |
'string | |
(objc:invoke | |
(objc:invoke "NSUserDefaults" "standardUserDefaults") | |
"objectForKey:" "AppleLanguages") | |
"objectAtIndex:" 0)))) | |
;; 2019-04-29 |
#+cocoa | |
(defun current-language () | |
(let ((lang (objc:with-autorelease-pool () | |
(objc:invoke-into | |
'string | |
(objc:invoke | |
(objc:invoke "NSUserDefaults" "standardUserDefaults") | |
"objectForKey:" "AppleLanguages") | |
"objectAtIndex:" 0)))) | |
;; 2019-04-29 |
[ | |
{"name":"Keeley Bosco","email":"katlyn@jenkinsmaggio.net","city":"Lake Gladysberg","mac":"08:fd:0b:cd:77:f7","timestamp":"2015-04-25 13:57:36 +0700","creditcard":"1228-1221-1221-1431"}, | |
{"name":"Rubye Jerde","email":"juvenal@johnston.name","city":null,"mac":"90:4d:fa:42:63:a2","timestamp":"2015-04-25 09:02:04 +0700","creditcard":"1228-1221-1221-1431"}, | |
{"name":"Miss Darian Breitenberg","email":null,"city":null,"mac":"f9:0e:d3:40:cb:e9","timestamp":"2015-04-25 13:16:03 +0700","creditcard":null}, | |
{"name":"Celine Ankunding","email":"emery_kunze@rogahn.net","city":null,"mac":"3a:af:c9:0b:5c:08","timestamp":"2015-04-25 14:22:22 +0700","creditcard":"1228-1221-1221-1431"}, | |
{"name":"Dr. Araceli Lang","email":"mavis_lehner@jacobi.name","city":"Yvettemouth","mac":"9e:ea:28:41:2a:50","timestamp":"2015-04-25 21:02:11 +0700","creditcard":"1211-1221-1234-2201"}, | |
{"name":"Esteban Von","email":null,"city":null,"mac":"2d:e4:f0:dd:90:96","timestamp":"2015-04-25 21:47:09 +0700","creditcard":null}, | |
{"name":"Everette Swift","em |
You may have found many great resources on how to set up jails on latest FreeBSD, however there is scant information on how to go about creating a barebones jail with nothing but the one process that you want to isolate.
I was curious if I could contain a statically compiled web server that I wrote while learning Rust all by itself in a jail instead of having a full userland.
Not everything you want to keep in a VCS is a "project": Sometimes you have one single file which does not belong to any other files, but you still want to have it version-controlled. Assume a TODO file, an Office document or something. How well do various version control systems perform here?
Preface:
$ uname -smr
Darwin 19.3.0 x86_64
$ sccs -V
sccs schily-SCCS version 5.09 2020/01/31 (x86_64-apple-macosx19.3.0)
;; add view mode keybindings | |
(use-package view | |
:config (setq view-read-only t) ;; C-x C-q can also toggle view-mode | |
:straight nil | |
:bind (("<f13>" . view-mode) ;; remap R-Shift to F 13 | |
:map view-mode-map | |
("n" . forward-line) | |
("p" . previous-line))) | |
Here are the general instructions to install FileRun on FreeBSD or in a FreeNAS jail. For those who don't know, "jail" is the container technology used by the FreeBSD.
This guide was written while I was actually installing, and I guess it reflects the exact steps needed to accomplish the task. Anyway this guide must not be followed alone: you still need the general guide provided by the FileRun documentation. Here you will find only the relevat parts regarding the FreeBSD system.
Feel free to comment and point my mistakes, not only the technical ones but the grammar and spelling also, so I can make this guide more accurate as possible.
(in-package :cl-user) | |
(ql:quickload :cl-who) | |
(ql:quickload :spinneret) | |
(defpackage :html-test | |
(:use :cl :cl-who :spinneret)) | |
(in-package :html-test) |
https://stackoverflow.com/questions/8874615/how-to-replace-a-running-function-in-common-lisp | |
http://readevalprint.tumblr.com/post/101841449553/its-alive-the-path-from-library-to-web-app | |
https://stackoverflow.com/questions/46499463/hot-debug-and-swap-in-common-lisp | |
http://lisp-univ-etc.blogspot.com/2013/06/free-lisp-hackers-ebook.html | |
https://mitpress.mit.edu/sicp/ | |
http://www.ymeme.com/ | |
https://google-styleguide.googlecode.com/svn/trunk/lispguide.xml | |
http://stackoverflow.com/questions/5447071/lisp-importing-loading-file | |
http://programming-puzzler.blogspot.com/2010/08/racket-vs-clojure.html | |
http://stackoverflow.com/questions/11876815/common-lisp-a-lisp-n |