Skip to content

Instantly share code, notes, and snippets.

@tomhicks
tomhicks / plink-plonk.js
Last active July 16, 2024 02:59
Listen to your web pages

Installing SBCL from source on Windows

This tutorial assumes you have installed binary version of SBCL downloaded from http://www.sbcl.org/platform-table.html

Also, it assumes you have Msys2 installed. https://www.msys2.org/ And all the tools needed for compilation are there.

On top of that I used Windows cmd started from a bat file that adds Msys2 paths.

@cornernote
cornernote / README.md
Last active January 15, 2022 17:18
Logitech G105 Keyboard - Ubuntu 18.04
@santisbon
santisbon / Update-branch.md
Last active March 21, 2024 15:50
Deploying from #Git branches adds flexibility. Bring your feature branch up to date with master and deploy it to make sure everything works. If everything looks good the branch can be merged. Otherwise, you can deploy your master branch to return production to its stable state.

Updating a feature branch

First we'll update your local master branch. Go to your local project and check out the branch you want to merge into (your local master branch)

$ git checkout master

Fetch the remote, bringing the branches and their commits from the remote repository. You can use the -p, --prune option to delete any remote-tracking references that no longer exist in the remote. Commits to master will be stored in a local branch, remotes/origin/master.

@Choonster
Choonster / ForgeGradleMod.gitignore
Last active April 1, 2023 01:57
A .gitignore file suitable for developing Minecraft Forge mods using ForgeGradle.
## Based on GitHub's Eclipse .gitignore
run/
.gradle/
build/
gradle-app.setting
## IntelliJ IDEA
.idea/
@KdotJPG
KdotJPG / OpenSimplex2S.java
Last active July 9, 2024 15:53
Visually isotropic coherent noise algorithm based on alternate constructions of the A* lattice.
/**
* K.jpg's OpenSimplex 2, smooth variant ("SuperSimplex")
*
* More language ports, as well as legacy 2014 OpenSimplex, can be found here:
* https://github.com/KdotJPG/OpenSimplex2
*/
public class OpenSimplex2S {
private static final long PRIME_X = 0x5205402B9270C86FL;
@artob
artob / mqueue.asd
Created July 14, 2013 17:21
POSIX message queues for Common Lisp.
;; This is free and unencumbered software released into the public domain.
(asdf:defsystem :mqueue
:name "mqueue"
:description "POSIX message queues for Common Lisp."
:version "0.0.0"
:author "Arto Bendiken <arto@datagraph.org>"
:depends-on (:cffi)
:serial t
:components ((:file "mqueue")))