I hereby claim:
- I am bobymicroby on github.
- I am bobymicroby (https://keybase.io/bobymicroby) on keybase.
- I have a public key ASC1gX04PI72E0QOcQKBISyI0Vr8rX0_8cdIO4T-ctaqWgo
To claim this, I am signing this object:
| # Redis from source, hermetically built via Nix. | |
| # | |
| # Requires: Nix with `experimental-features = nix-command flakes`. | |
| # | |
| # ── Run from a local clone ───────────────────────────────────────────── | |
| # nix build . # build → ./result/bin/redis-server | |
| # nix run . # start redis-server (forwards flags) | |
| # nix run . -- --port 7000 # e.g. on a custom port | |
| # nix run .#redis-cli -- -p 6379 ping # other binaries as apps | |
| # nix develop # shell with the build toolchain |
| #!/usr/bin/env bash | |
| set -x | |
| # The RAM amount you want to allocate for RAM disk. One of | |
| # 1024 2048 3072 4096 5120 6144 7168 8192 | |
| # By default will use 1/4 of your RAM | |
| ramfs_size_mb=2048 |
I hereby claim:
To claim this, I am signing this object:
| import XMonad | |
| import XMonad.Hooks.SetWMName | |
| import XMonad.Hooks.DynamicLog | |
| import XMonad.Hooks.ManageDocks | |
| import XMonad.Hooks.UrgencyHook | |
| import XMonad.Hooks.ManageHelpers | |
| import XMonad.Layout.NoBorders (smartBorders) | |
| import XMonad.Hooks.EwmhDesktops | |
| import XMonad.Hooks.FadeInactive | |
| import XMonad.Actions.Volume |
| import rx.Observable; | |
| import rx.Subscriber; | |
| import rx.functions.Func0; | |
| public class OnSubscribeTTLCache<T> implements Observable.OnSubscribe<T> | |
| { | |
| private final Observable<T> source; | |
| private final long ttl; | |
| private final Func0<Long> clock; |