I hereby claim:
- I am PyroLagus on github.
- I am pyrolagus (https://keybase.io/pyrolagus) on keybase.
- I have a public key whose fingerprint is 2728 CF12 DC77 54E8 74C7 2139 5626 FA71 4A69 5D88
To claim this, I am signing this object:
| #!/bin/zsh | |
| # | |
| # Trigger a command when new mail arrives on the server, using IMAP IDLE. Cf. | |
| # <http://dwm.suckless.org/scripts/email_notifier_script>. | |
| # | |
| # Note that, theoretically, fetchmail can take a comma-separated list of | |
| # multiple folders, but IDLE will only poll the first one, so if you need to | |
| # monitor multiple mailboxes, you need to run multiple monitor instances. | |
| # | |
| # Passwords are read from the password store keyring by default. |
| macro_rules! enum_with_str_representation { | |
| (enum $enum_name:ident { | |
| $($variant:ident => $nice_name:expr,)+ | |
| }) => { | |
| #[derive(Debug, PartialEq, Eq, Clone, Hash)] | |
| enum $enum_name { | |
| $($variant),+ | |
| } | |
| impl ::std::fmt::Display for $enum_name { |
I hereby claim:
To claim this, I am signing this object:
| -----BEGIN PGP SIGNED MESSAGE----- | |
| Hash: SHA512 | |
| I have changed my standard username from codehero/c0dehero to PyroLagus. | |
| As part of that change, I have created the new keybase account https://keybase.io/pyrolagus, which I will use from now on. | |
| (The old account was https://keybase.io/codehero) | |
| My official email address is now [email protected], and emails meant for me should be sent to that address. | |
| (The old email addresses were [email protected] and [email protected]) | |
| Additionally, I have generated a new pgp key and revoked the old one. | |
| I have included both my new public key and the revocation certificate for my old key below. |
| function Point(x, y) { | |
| this.x = x; | |
| this.y = y; | |
| } | |
| Point.prototype = { | |
| west: function() { | |
| return new this(this.x-1, this.y); | |
| }, | |
| east: function() { |
| splitWith :: (a -> Bool) -> [a] -> [[a]] | |
| splitWith p (x:xs) | p x = splitWith p xs | |
| | otherwise = [x] : splitWith p xs | |
| splitWith _ [] = [] |
| alsa-utils | |
| aspell | |
| autoconf | |
| automake | |
| bash | |
| bind-tools | |
| binutils | |
| bison | |
| bleachbit | |
| blender |
| { stdenv, fetchFromGitHub, cmake | |
| , wayland, pixman, libxkbcommon, udev, libinput | |
| , libX11, libxcb, x11 | |
| , mesa #nvidia_x11 | |
| , dbus, systemd | |
| }: | |
| stdenv.mkDerivation rec { | |
| name = "wlc-${version}"; | |
| version = "5453a91201"; |
| { stdenv, fetchFromGitHub, cmake, pkgconfig | |
| , wayland, xwayland, pixman, libxkbcommon, udev, libinput, libpthreadstubs | |
| , libX11, libxcb, libXdmcp, x11, libxshmfence | |
| , mesa #nvidia_x11 | |
| , dbus, systemd | |
| }: | |
| let srcs = { | |
| wlc = fetchFromGitHub { | |
| owner = "Cloudef"; |
| codehero@wheatley ~ % nix-build --show-trace ./nixpkgs -A wlc | |
| these derivations will be built: | |
| /nix/store/n0n37s7wqyhq2wvhdvmxi48k8nw0sxyc-wlc-5453a91201.drv | |
| building path(s) ‘/nix/store/vhjjk1xsxypl7h91x5ynd6f3h8hzrmda-wlc-5453a91201’ | |
| unpacking sources | |
| unpacking source archive /nix/store/c7asypsnb2dw7jhqgks77y5bpkdqdbbs-wlc-5453a91201a6b90f1f7fc093ddb578bfad18461d-src | |
| source root is wlc-5453a91201a6b90f1f7fc093ddb578bfad18461d-src | |
| 'wlc-5453a91201a6b90f1f7fc093ddb578bfad18461d-src/lib/chck/src/i2q7bgm4w3wjw42an9axw02ccbc2lyl4-chck-a11a7c064d786706269e2b9f5516d898fec10402-src' -> '/nix/store/i2q7bgm4w3wjw42an9axw02ccbc2lyl4-chck-a11a7c064d786706269e2b9f5516d898fec10402-src' | |
| patching sources | |
| configuring |