Explore >> Select a destination


You are here

camdez.com
| | www.wilfred.me.uk
11.5 parsecs away

Travel
| | programming, language design, and human factors
| | takeonrules.com
7.8 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"...
| | blog.jenkster.com
7.3 parsecs away

Travel
| | The personal blog of Kris Jenkins, geek.
| | www.softdevtube.com
62.1 parsecs away

Travel
| Passing data through a pipeline of transformations is an alternative approach to classic Object-Oriented Programming (OOP). The LINQ methods in .NET are designed around this, but the pipeline approach can be used for so much more than manipulating collections. This presentation looks at pipeline-oriented programming and how it relates to functional programming, the open-closed principle,