wgetis installedtaris installed
If you really don't want to install Nix under /nix (or you can't) then you can install Nix
| package main | |
| import "fmt" | |
| import "bufio" | |
| import "sort" | |
| import "os" | |
| import "strings" | |
| import "strconv" |
| #compdef chunkc | |
| # Note for plugin authors: | |
| # You can make your own zsh completions, and include these by calling `_chunkc' | |
| # in the top-level function of the new completions and defining your subcommand | |
| # with syntax: _chunkc_<plugin>_<subcmd> like so: | |
| # Fake chunkc plugin | |
| # | |
| # function _chunkc_plugin_set { return } |
| # Install ARCH Linux with encrypted file-system and UEFI | |
| # The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description. | |
| # boot loaders (helpful when dual-booting): https://wiki.archlinux.org/index.php/Arch_boot_process#Boot_loader | |
| # - GRUB and rEFInd are quite popular | |
| # General recommendations (after install): https://wiki.archlinux.org/index.php/General_recommendations | |
| # Download the archiso image from https://www.archlinux.org/ | |
| # Copy to a usb-drive | |
| dd if=archlinux.img of=/dev/sdX bs=16M && sync # on linux |
| Ɠ‘© | |
| ɠø¢¡ø®’Ḃ | |
| “`ȥ)øỊm»ø“6I»ø¢ø? | |
| “ŒXɗ?»;⁸;“M»;¢ | |
| ƓRÇ€Y |
| #!/usr/bin/env bash | |
| # Author: Amar Paul | |
| # Add custom emojis to a rocketchat server. | |
| # Usage: | |
| # Expects a yaml/ dir with .yaml files, formatted as such: | |
| # - name: <name_of_emoji> | |
| # src: <src_url> | |
| # |
| diff --git a/gnulib/lib/Makefile.am b/gnulib/lib/Makefile.am | |
| index 236b996..b881059 100644 | |
| --- a/gnulib/lib/Makefile.am | |
| +++ b/gnulib/lib/Makefile.am | |
| @@ -1502,6 +1502,8 @@ EXTRA_libgnu_la_SOURCES += open.c | |
| ## end gnulib module open | |
| +libgnu_la_SOURCES += open_memstream.c | |
| + |
| diff --git a/configure b/configure | |
| index 84dce93..3de6e1f 100755 | |
| --- a/configure | |
| +++ b/configure | |
| @@ -59469,10 +59469,17 @@ fi | |
| ac_fn_c_check_header_mongrel "$LINENO" "rpc/xdr.h" "ac_cv_header_rpc_xdr_h" "$ac_includes_default" | |
| if test "x$ac_cv_header_rpc_xdr_h" = xyes; then : | |
| +else | |
| + |
| #compdef _tmux-a tmux-a | |
| # Complete attached-sessions and detached-sessions as separate tags. | |
| # function __tmux-sessions-separately { | |
| function _tmux-a { | |
| local ret=1 | |
| local -a sessions detached_sessions attached_sessions | |
| sessions=( ${${(f)"$(command tmux 2> /dev/null list-sessions)"}/:[ $'\t']##/:} ) | |
| detached_sessions=( ${sessions:#*"(attached)"} ) | |
| attached_sessions=( ${(M)sessions:#*"(attached)"} ) |
| diff --git a/sh/hivexsh.c b/sh/hivexsh.c | |
| index b925ddb..8676291 100644 | |
| --- a/sh/hivexsh.c | |
| +++ b/sh/hivexsh.c | |
| @@ -27,6 +27,9 @@ | |
| #include <unistd.h> | |
| #include <assert.h> | |
| #include <errno.h> | |
| + | |
| +#define ENOKEY 126 |