Build Hyper-V Arch VM

A raw list of notes about putting together a Hyper-V Arch Linux VM. Take with a grain of salt.

This adds most of the stuff I use for my development.

More will be added as I still need to figure out sharing files between the host and guest.

Read more »

Comment Systems for Static Websites

(Updated 2019-12-18)

Static websites are fast and tend to be simple to maintain. But the lack of processing on the server side means that comments (and other interaction) is a bit of a hassle.

This is a list - by no means complete - of the systems for doing comments on a static website.

Read more »

Onyx Specification

Built-in Types Integral: int - 32 bit signed integer byte - 8 bit unsigned integer bigint - 64 bit signed integer May need to add a few more but they will all have form intnn (e.g. int16 or int8) There are no unsigned versions except byte. implicit conversion can only widen, but cannot narrow. Narrowing conversion can be explicitly requested. Narrowing conversion will throw an exception if the source value is out of range.

Read more »