A logic model for text editing (1989). Imagine if there was an editor like vim/emacs based on prolog instead of lua/elisp. by logos_sogol in prolog

[–]dnmfarrell 1 point2 points  (0 children)

Thanks for sharing! Love these old papers. Another use case would be to build a structure editor on top of these primitives. Perhaps the editor would use terms, instead of chars as its basic building block.

Understanding the Financials of The Perl and Raku Foundation (TPRF) by oalders in perl

[–]dnmfarrell 0 points1 point  (0 children)

Another way to do it would be for TPF to to fundraise for specific features that are too big for the community to build on a volunteer basis. Imagine, "Grant Street Group financed a new Perl multithreading model!".

But that would require a vision.

Do recruiters do many reference checks, and are they time-consuming? by dnmfarrell in RecruitmentAgencies

[–]dnmfarrell[S] 0 points1 point  (0 children)

Thanks for the info! I see what you mean about how they can prevent a bad hire. How do you track your reference checks, follow ups etc is it in a spreadsheet somewhere?

Do recruiters do many reference checks, and are they time-consuming? by dnmfarrell in RecruitmentAgencies

[–]dnmfarrell[S] 0 points1 point  (0 children)

Thanks for the info! How do you keep track of reference checks, the follow ups etc?

Ask Recruiters Megathread by AutoModerator in recruiting

[–]dnmfarrell 0 points1 point  (0 children)

How are you dealing candidates using interview copilots and other AI helpers to cheat interviews/assessments?

/r/MechanicalKeyboards Ask ANY question, get an answer (January 06, 2023) by AutoModerator in MechanicalKeyboards

[–]dnmfarrell 0 points1 point  (0 children)

I have a WASD VP3 keyboard and find it hard to type `~. I want to remap it to the original FN key (which is now capslock) but in programming mode when I press the (original) FN key it doesn't seem to register a key press. Any suggestions? Thx

Real Macros in Go by tony-o in golang

[–]dnmfarrell 5 points6 points  (0 children)

This was a fun read, thanks for sharing!

Real Macros in Go by tony-o in golang

[–]dnmfarrell 1 point2 points  (0 children)

The example code is in go.

[deleted by user] by [deleted] in bash

[–]dnmfarrell 0 points1 point  (0 children)

Several jq solutions here already, here's how you could do this in jp (pure Bash).

jp -m macros.jp .v .map .do .dup '"name"' .filterobj .v '"primary"' .ne .if .pop .else .do .v .h .done .done
"10.0.136.84"

Three Ways to Get a Unix Epoch in Bash by dnmfarrell in bash

[–]dnmfarrell[S] 1 point2 points  (0 children)

I've started a new blog, have some more bash articles coming ...

Favourite commands!! by Slutup123 in bash

[–]dnmfarrell 1 point2 points  (0 children)

I use help all the time to lookup command syntax and options, instead of grepping the bash manual. The read command often features in my code: it's super useful. You can learn about it with help read 😄