Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

122 total results found

ImageMagick

Linux

Use ImageMagick to create, edit, compose, and convert digital images. Resize an image, crop it, change its shades and colors, add captions, and more. Resizing files in a directory nice -n 19 mogrify -path . -filter Triangle -define filter:support=2 -unsharp ...

Single Arm Heavy Club Mill

Weight training

This page is a work in progress.       Single Arm Inside Circle - Like Single Arm Outside Circle - For balance Shield Cast - Basic throwing pattern   Combine Single Arm Mill Prep Inside circle goes with the shield cast (goes past your opposite ear)...

Steel Mace Rotational Mills

Weight training

Steel Mace Rotational Mills   #end

Wildman Mace Training

Weight training

  Mace 101 , part 101 of a instructional basic mace videos Mace 102 - same side single arm 360 also called same side single arm shield cast Mace 103 - reverse near side single arm 360   #end

Junctions

Microsoft

Finding junctions / reparse points # return all reparse points on the C: volume DIR C:\ /S /AL Checking reparse points fsutil reparsepoint query [dir/file]     #end

Searching Postfix logs

Postfix Logging

Status messages # find all log entries where the status is other than sent grep status= /var/log/mail.log | grep -v status=sent # make sure there aren't eny other status messages grep status= /var/log/mail.log | grep -v -e status=sent -e status=bounced -...

Python Snippets

Python

Useful Python3 snippets as I come across them.     Using xmltodict on the command line with ipset Use ipset to dump a set list via xml, then convert that to json. ipset list observed-unathorized -output xml | python3 -c 'import xmltodict, sys, json; json....

Knots

Hammocking

    Prussik knot (friction hitch) The Worlds Most Reliable Knot: The Prusik Hitch Marlin spike hitch Soft shackle Soft shackle with prussik (as seen in picture below)  

Tarp ridgeline

Hammocking

     

Linux Performance Observability

Linux

https://www.brendangregg.com/linuxperf.html #end

Port Mirror / Monitor

Networking

      Ubiquiti EdgeSwitch monitor session 1 destination interface 0/10 monitor session 1 source interface 0/1 monitor session 1 source interface 0/2 monitor session 1 source interface 0/3 monitor session 1 source interface 0/4 monitor session 1 source...

Windows Network Management from the command line

Microsoft PowerShell

Get interface metrics # IPv4 - Display interfaces sorted by metric and alias Get-NetIPInterface -AddressFamily IPv4 | Sort InterfaceMetric,InterfaceAlias # IPv6 - Display interfaces sorted by metric and alias Get-NetIPInterface -AddressFamily IPv...

Snippets

Microsoft PowerShell

    While a file exists or not # while a file exists While (Test-Path C:\Temp\File_I_Want_Gone.txt -ErrorAction SilentlyContinue) { # Do something here while the file exists } # while a file doesn't exists While (!(Test-Path C:\Temp\File_I_Want_Gone....