Choose OpenBSD for your Unix needs. OpenBSD -- the world's simplest and most secure Unix-like OS. A safe alternatve to the frequent vulnerabilities and overengineering of Linux and related software (NGiNX & Apache (httpd-asiabsdcon2015.pdf), OpenSSL, iptables/nftables, systemd, BIND, Postfix, Docker etc.)
OpenBSD -- the cleanest kernel, the cleanest userland and the cleanest config
;;=============== play with flow ============== | |
(require '[clojure.core.async :as async] | |
'[clojure.core.async.flow :as flow] | |
'[clojure.pprint :as pp] | |
'[clojure.datafy :as d] | |
'[clojure.walk :as w]) | |
(set! *warn-on-reflection* true) | |
(defn monitoring [{:keys [report-chan error-chan]}] |
?,Year,Title,Author,Dialect,Publisher,Series,Links,Notes | |
,1989,Proceedings of the 1st annual workshop for the ACM sigForth,ACM,,ACM,,, | |
,1984,Function Forth For The BBC Computer,"Allan, Boris",,Sunshine Books,,https://www.jupiter-ace.co.uk/downloads/books/Functional_Forth_Boris_Allan.pdf][available online, | |
,1984,FORTH Tools. Vol.1,Anderson & Tracy,,,,, | |
,1981,"Forth-79, Version 2 (Apple-II)","Anderson, Anita & Tracy, Martin",-79,MicroMotion,,https://archive.org/details/forth79-A2/FORTH-79_A2Version_ReferenceManual/][available online, | |
,1982,FORTH Encycopedia - The complete FORTH Programmer's Manual,"Baker, Linda",,Mountain View Press,,, | |
,1984,Pocket Guide Forth,"Baker, Linda & Derick, Mitch",,Addison-Wesley,,, | |
,1983,"Easy Add-on Projects for Spectrum, ZX81 & Ace","Bishop, Owen",Spectrum FORTH,Bernard Babani,,https://www.jupiter-ace.co.uk/downloads/books/Easy_add-on_Projects_for_Spectrum_ZX81_and_ACE.pdf][available online, | |
,1984,Exploring Forth,"Bishop, Owen",-79 & fig-,Granada Technical Books,,https://www.jupite |
(ns webdav | |
(:require [clojure.string :as str] | |
[clojure.data.xml :as xml] | |
[org.httpkit.server :as hk-server])) | |
;; add the XML namespace that we'll use later | |
(xml/alias-uri 'd "DAV:") | |
(defn dissoc-in | |
"Should be in the standard library..." |
John Belmonte, 2022-Sep
I've started writing a toy structured concurrency implementation for the Lua programming language. Some motivations:
- use it as a simple introduction to structured concurrency from the perspective of Lua (this article)
- learn the fundamental properties of structured concurrency and how to implement them
- share code that could become the starting point for a real Lua library and framework
So what is structured concurrency? For now, I'll just say that it's a programming paradigm that makes managing concurrency (arguably the hardest problem of computer science) an order of magnitude easier in many contexts. It achieves this in ways that seem subtle to us—clearly so, since its utility didn't reach critical mass until around 2018[^sc_birth] (just as control structures like functions, if
, and while
weren't introduced to languages until long after the first compu
This document was based on my local [GNU Guile][1]-3.0.5 setup. I'm not sure if it works as is with an older version of GNU Guile.
Because of a [dependency in Fedora][2] I had to compile GNU Guile from source release. As such, in your local setup the paths will differ. This is only relevant when defining the GUILE shell variable, and referencing the tags file in the vimrc.
Note that when building GNU Guile from source be sure that you have the readline-devel (or distro equivalent package) installed. That way the
./configure
step will pick that up, and theice-9 readline
module will be usable.
# Not Great PNG class. This is a very simple example of writing a PNG. It | |
# only supports colors from the color palette stored in `@palette`. This is | |
# meant to be example code, but I am using it in a program for visualizing | |
# heap dumps from Ruby. | |
# | |
# This is free and unencumbered software released into the public domain. | |
# | |
# Anyone is free to copy, modify, publish, use, compile, sell, or | |
# distribute this software, either in source code form or as a compiled | |
# binary, for any purpose, commercial or non-commercial, and by any |
;; Copyright (c) Mikhail Ananev, 2020. | |
;; Red Stars Systems (https://rssys.org). | |
;; | |
;; Licensed to the Apache Software Foundation (ASF) under one | |
;; or more contributor license agreements. See the NOTICE file | |
;; distributed with this work for additional information | |
;; regarding copyright ownership. The ASF licenses this file | |
;; to you under the Apache License, Version 2.0 (the | |
;; "License"); you may not use this file except in compliance | |
;; with the License. You may obtain a copy of the License at |
def json_parse(json) | |
success, index, _ws = json_parse_optional_whitespace(0, json) | |
success, index, value = json_parse_value(index, json) | |
raise "Could not parse" unless success | |
value | |
end | |
def json_parse_value(index, json) | |
%I[ | |
json_parse_null |
- Create an app following the official Shadow-CLJS Quick Start instructions.
- Modify
shadow-cljs.edn
;; shadow-cljs configuration
{:source-paths
["src/dev"
"src/main"
"src/test"]
;; ADD - CIDER middleware for nREPL (required by fireplace.vim)