- To remove a entry from Known_hosts in .ssh directory
ssh-keygen -R hostname
ssh-keygen -F myhost # shows myhosts's line in the known_hosts file
ssh-keygen -l -F myhost # additionally shows myhost's fingerprint
##Key Permissions
*OWNER:READ GROUP:READ USER:READ
chmod 0444
*OWNER:READ WRITE GROUP:READ USER:NONE
chmod 0640
*OWNER:READ-WRITE-EXECUTE GROUP:READ-WRITE-EXECUTE USER:READ-EXECUTE
chmod 0775
Show or hide hidden files AppleShowAllFiles YES. Don't forget to refresh finder. Option+Finder Icon
To remove the quarantine status of a new file on mac (as it causes problems with keys etc)
xattr -d com.apple.quarantine filename.pem FILE
to remove from all computers quarenteen files (warning as may be too large to attempt if you download a lot, and or recently)
find . | xargs xattr -d com.apple.quarantine
to clear att xattr:
| {# The easiest way to add link to home page and SVG logo is to put the SVG into the active theme directory root named logo.svg. To have default for browsers that cannot display SVG, see GIST https://gist.github.com/davebeach/064996d9b234c742642f8ca45585139a - then in the twig block just add the anchor and image elements. There is a lot of complex settings, by passing the block further down to another content file, but this makes no sense. The most difficult part is the anchor link, which just set it to /, don't try and is_front until the bugs are worked out with that functionality. #} | |
| {% block content %} | |
| <div class="container-content region-fixed-content"> | |
| <a class="logo" href="{{ '/' | page }}"> | |
| <img src="{{ logo }}" alt="{{ 'Home'|t }}"/> | |
| </a> | |
| </div> |
##svg for drupal 8 logo with png fallback.
Recommendations found at [Blog](http://thoughtfulweb.com/thoughts/on/the-best-way-to-add-an-svg-image-to-your-website/ title="SVG INLINE METHOD") [^2]
xmlns:xlink="http://www.w3.org/1999/xlink" in the svg tag.