Make sure there is at least one file in it (even just the README.md)
ssh-keygen -t rsa -C "[email protected]"
Print the last 10 lines of each FILE to standard output. | |
With more than one FILE, precede each with a header giving the file name. | |
Mandatory arguments to long options are mandatory for short options too. | |
-c, --bytes=[+]NUM output the last NUM bytes; or use -c +NUM to | |
output starting with byte NUM of each file | |
-f, --follow[={name|descriptor}] | |
output appended data as the file grows; | |
an absent option argument means 'descriptor' | |
-F same as --follow=name --retry |
;;; sleepy-cat.el --- Animate an ascii cat in Emacs -*- lexical-binding: t; -*- | |
;; Copyright (C) 2024 Arthur Miller | |
;; Author: Arthur Miller <[email protected]> | |
;; Keywords: | |
;; This program is free software; you can redistribute it and/or modify | |
;; it under the terms of the GNU General Public License as published by | |
;; the Free Software Foundation, either version 3 of the License, or |
;; no consing one iteration | |
(defun rotatel (list) | |
(let ((new (cdr list))) | |
(setf (cdr list) nil) | |
(setf new (nconc new list)))) | |
;; no consing two iterations | |
(defun rotatel (list) | |
(let ((first (pop list)) | |
(rlist (nreverse list))) |
;;; aoc-helper.el --- Gen AOC skeleton -*- lexical-binding: t; -*- | |
;; Copyright (C) 2023 Arthur Miller | |
;; Author: Arthur Miller <[email protected]> | |
;; Keywords: | |
;; This program is free software; you can redistribute it and/or modify | |
;; it under the terms of the GNU General Public License as published by | |
;; the Free Software Foundation, either version 3 of the License, or |
;;; org-capture-complete.el --- Two different ideas for org-capture via completing read -*- lexical-binding: t; -*- | |
;; Copyright (C) 2023 Arthur Miller | |
;; Author: Arthur Miller <[email protected]> | |
;; Keywords: tools, lisp | |
;; This program is free software; you can redistribute it and/or modify | |
;; it under the terms of the GNU General Public License as published by | |
;; the Free Software Foundation, either version 3 of the License, or |
;;; shell-command-with-aliases.el --- Use Bash aliases in interactive shell-comands -*- lexical-binding: t; -*- | |
;; Copyright (C) 2023 Arthur Miller | |
;; Author: Arthur Miller <[email protected]> | |
;; Keywords: | |
;; This program is free software; you can redistribute it and/or modify | |
;; it under the terms of the GNU General Public License as published by | |
;; the Free Software Foundation, either version 3 of the License, or |
;;; build-emacs.el --- Build custom Emacs from sources -*- lexical-binding: t; -*- | |
;; Copyright (C) 2022 Arthur Miller | |
;; Author: Arthur Miller <[email protected]> | |
;; Keywords: tools | |
;; This program is free software; you can redistribute it and/or modify | |
;; it under the terms of the GNU General Public License as published by | |
;; the Free Software Foundation, either version 3 of the License, or |
Make sure there is at least one file in it (even just the README.md)
ssh-keygen -t rsa -C "[email protected]"
;; An experiment for an SVG toolbar using icons from material.io | |
;; | |
;; Example usage: (toolbar 48 "black" "white" t t) | |
;; Material icons freely available (Apache 2 license) from | |
;; - https://material.io/resources/icons/?style=outline | |
;; - https://github.com/google/material-design-icons | |
(require 'xml) (require 'svg) | |
(defun toobar-item (label icon fg-color bg-color size with-icon with-label) |