A Site I Can Follow

I recently came across the site Bearing Drift, a Virginia conservative site. Unlike the clickbaity and sensational sites I’ve seen this is actually good! Though I don’t consider myself conservative.

They acknowledge and cover unjustified shooting issues, and abortion issues, too:

…but is this a fight worth fighting?  The argument is simple: every human being has the basic right to exist.  No amount of social justice or government programs, no amount of job creation or education reform is worth a damn unless we defend and define the right to exist for every Virginian.


Pipe JSON Data into Node.js via Command Line

I was trying to pipe JSON data into node.js as an object. I came across an answer on StackOverflow, which was about something else, but led me in the right direction.

I was able to do it via cat and node using the following command:

cat ./example.json | node <<< "var o = $(cat); console.log(o);"

Worked like a charm.