Table saw crosscut sleds

June 19th, 2019

Here are some links to various table saw crosscut sleds that I'm interested in:

Table saw crosscut sled (matthias)
Easy-to-Build Table Saw Crosscut Sled
Maybe the Best Table Saw Crosscut Sled Ever?

How to enable KVM (vPro/AMT) on the NUC

June 19th, 2019

This is a page detailing how to set up the built in remote KVM (vPro/AMT) on the Intel NUC (DC53427HYE)

sed tips and tricks

June 19th, 2019

Here are a couple of sed tricks that I needed recently

Use sed to remove/delete all Leading/Trailing whitespace from each line (link)

To remove all whitespace (including tabs) from left to first word, enter:
echo "     This is a test" | sed -e 's/^[ \t]*//'

To delete trailing whitespace from end of each line, enter:
$ cat input.txt | sed 's/[ \t]*$//' > output.txt

How to get everything in a file AFTER matching a text string (link)

The following will print the line matching TERMINATE till the end of the file:

$ sed -n -e '/TERMINATE/,$p'

 

How to block adblock detection

June 19th, 2019

Link back to page detailing how to block adblock detection.

ELK M1 Training

June 19th, 2019

This is a link back to ELK M1 training videos.