Moved this buildlog to here
# Usage: | |
# nix-shell --command nvim | |
{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/b9ba82ef8ad6d8997840332ca3a2986e360291e3.tar.gz") { } }: | |
let | |
myNeovim = pkgs.neovim.override { | |
configure = { | |
customRC = '' | |
" here your custom configuration goes! | |
set termguicolors |
# This creates a VPC with two public subnets and two private subnets in two Availability Zones, | |
# together with a NAT Gateway and associated routing. Change the Availability Zone locations as needed. | |
# Important: this configures various AWS services and there are costs associated with these services after the Free Tier usage. | |
# Please see the AWS Pricing pages for details. You are responsible for any AWS costs incurred. | |
# No warranty is implied in this example. | |
# Usage from command line: | |
# aws cloudformation --region <<YOUR-REGION>> create-stack --stack-name vpc- --template-body file://vpc-setup.yaml | |
;; ~/.config/conjure/conjure.edn | |
{:conns | |
;; My `prepl-server` task spits out a `.socket-port` file when it starts a | |
;; prepl server. This configuration allows Conjure to find the prepl server | |
;; without needing to specify the port explicitly. | |
{:cwd {:port #slurp-edn ".socket-port"}}} |
;; ~/.config/conjure/conjure.edn | |
{:conns | |
;; My `clj -Aprepl-server` alias spits out a `.socket-port` file when it starts | |
;; a prepl server. This configuration allows Conjure to find the prepl server | |
;; without needing to specify the port explicitly. | |
{:cwd {:port #slurp-edn ".socket-port"}}} |
LVM on LUKS Arch installation with systemd-boot
Sources:
- https://wiki.archlinux.org/index.php/Installation_guide
- https://wiki.archlinux.org/index.php/Dm-crypt/Encrypting_an_entire_system
Note: If you want a simpler encryption setup (with LUKS only), you can instead use the archinstall "guided" installer included with Arch since April 2021.
;; in your project definition | |
;; [cljsjs/react-select "1.0.0-rc.1" :exclusions [cljsjs/react]] | |
;; See react-select documentation: https://github.com/JedWatson/react-select | |
(ns example.select | |
(:require [reagent.core :as r] | |
[cljsjs.react-select])) | |
(defn select |
Disclaimer: Please follow this guide being aware of the fact that I'm not an expert regarding the things outlined below, however I made my best attempt. A few people in IRC confirmed it worked for them and the results looked acceptable.
Attention: After following all the steps run gdk-pixbuf-query-loaders --update-cache
as root, this prevents various gdk-related bugs that have been reported in the last few hours. Symptoms are varied, and for Cinnamon the DE fails to start entirely while for XFCE the icon theme seemingly can't be changed anymore etc.
Check the gist's comments for any further tips and instructions, especially if you are running into problems!
Results after following the guide as of 11.01.2017 13:08:
jack-in into normal Clojure nREPL. Run:
(require '[cljs.repl :as repl] '[cljs.repl.node :as node])
(compile 'cljs.repl.node)
(cemerick.piggieback/cljs-repl (cljs.repl.node/repl-env))
#Sample code | |
#Hello world | |
"Hello world!" print | |
#Factorial | |
factorial := method(n, if(n == 1, 1, n * factorial(n - 1))) | |
99 bottles of beer |