Articles with the tag « tool » :

q - Text as Data

in «tip» by Michael Beard
Tags: , , ,

Interesting tool. Haven't had a need for it yet, but I might. You never know.

q - Text as Data

Anyway, here is the blurb from their site:

q is a command line tool that allows direct execution of SQL-like queries on CSVs/TSVs (and any other tabular text files).

q …

Found an interesting software app - Karabiner-Elements -- keyboard cutomizer for MacOS

in «interesting» by Michael Beard
Tags: , , , ,

Seems interesting and could be useful, as it can map/change keys for my keyboard, and it's open source, which is nice -- Karabiner-Elements. I'll give it a try.

And, it has a Karabiner-MultitouchExtension tool that looks really interesting!

Here is an official (keyboard) rules site - will definitely take a look …

bash - remove duplicates from PATH w/o changing the declared order

in «tip» by Michael Beard
Tags: , , , , ,

Useful to put in your .bash_profile file to remove all of the churn that gets added to your PATH environment variable.

#### -------------------
#### remove any duplicates in PATH - w/o changing order
#### -- https://stackoverflow.com/questions/11650840/remove-redundant-paths-from-path-variable
#### -------------------
export PATH="$(echo "$PATH" | awk 'BEGIN{RS=":";}
{sub(sprintf("%c$",10),"");if(A[$0 …