You are here |
www.wilfred.me.uk | ||
| | | |
lambdaland.org
|
|
| | | | Are you tired of having a particular buffer pop open in the wrong direction? Do you wish, for example, that the Racket REPL buffer showed up on the right in a vertical split, rather than below in a horizontal one? Look no further. I give you, display-buffer-alist: (add-to-list 'display-buffer-alist '("\\*Racket REPL \\*" (display-buffer-in-direction) (direction . right))) That little snippet will make sure when you hit C-c C-k inside of a racket-mode buffer, a REPL will pop up on the right-side instead o... | |
| | | |
takeonrules.com
|
|
| | | | 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"... | |
| | | |
atilaoncode.blog
|
|
| | | | I've often heard it said that DSLs make a codebase harder to understand, because programmers familiar with the language the codebase is written in now have to learn the DSL as well. Here's my problem with that argument: every codebase is written in an embedded DSL. More often than not that DSL is ad-hoc, informally... | |
| | | |
thewomenintechshow.com
|
|
| | Test Automation is an essential component of the Software Development process. Angie Jones, Consulting Automation Engineer at Lexis Nexis, explains what Test Automation is and the process of collaboration across teams. |