Explore >> Select a destination


You are here

hackmd.io
| | smallcultfollowing.com
6.0 parsecs away

Travel
| |
| | theincredibleholk.org
6.8 parsecs away

Travel
| | One of the major goals for the Rust Async Working Group is to allow async fn everywhere fn is allowed, especially in traits. In this post, I'd like to distill s...
| | theincredibleholk.org
6.0 parsecs away

Travel
| | As I've written about before, one of the major features we're working on adding to Rust is to allow async functions in traits. Today we have support in nightly ...
| | takeonrules.com
74.2 parsecs away

Travel
| Last month I wrote Creating an Emacs Command to Rename Files per Denote File Naming Schema. Ive been using it in a one-off situation. And yesterday I wrote a wrapping function to call in dired. The source code for jf/dired-rename-files-to-denote-schema. (defun jf/dired-rename-files-to-denote-schema () "Rename marked files in `dired-mode'." (interactive) (when (seq-find (lambda (file) (member (file-name-nondirectory file) '("." ".."))) (dired-get-marked-files)) (user-error "Can't rename "." or ".." files"...