Skip to content

Instantly share code, notes, and snippets.

@facelordgists
facelordgists / delete-git-recursively.sh
Created May 13, 2015 05:28
Recursively remove .git folders
( find . -type d -name ".git" && find . -name ".gitignore" && find . -name ".gitmodules" ) | xargs rm -rf
@facelordgists
facelordgists / php-file-date-check.php
Created August 6, 2015 01:52
PHP check if file has been modified in the past 6 months
<?php
$file = "/public/assets/snippets/ditto/classes/template.class.inc.php";
if ( file_exists($file) && filemtime($file) >= strtotime("6 months ago") ){
// do stuff if file hasn't been modified within the past 6 months
}
@facelordgists
facelordgists / php-output-buffering.php
Created January 29, 2014 22:51
PHP output buffering. Great for WordPress shortcodes
<?php
// generic usage
ob_start();
?>
<h1>Begin Content</h1>
<p>Content</p>
@facelordgists
facelordgists / After Effects Expression - Swing.js
Last active March 28, 2021 06:27
After Effects Expression - Swing
n = 0;
if (numKeys > 0) {
n = nearestKey(time).index;
if (key(n).time > time) {
n--;
}
}
if (n == 0) {
t = 0;
} else {
<script>
window.addEventListener("load", function(){
document.getElementById('product-specs-tab').click();
});
</script>
<div>
<h4 style="font-size:28px;margin-bottom:10px">Waggoner Guide Flotillas</h4>
<div>Desolation Sound is a place of extraordinary beauty. And, it is one of the Pacific Northwest’s most dreamed-about and sought-after cruising destinations. Desolation Sound offers a wilderness setting, generally easy waters, many bays and coves to explore, tranquility, and more.</div>
<div>For adventurous cruisers, try the holy grail of Pacific Northwest cruising: the Inside Passage to Alaska. The scenery is magnificent and the experience is once-in-a-lifetime. Cruise to Southeast Alaska on our yearly flotilla to Ketchikan every May.</div>
<div>Visit our website (<a href="https://waggonerguide.com/flotillas/">https://waggonerguide.com/flotillas/)</a></div>
<script>
window.addEventListener("load", function(){
document.getElementById('product-specs-tab').click();
});
</script>
<div><b>Cruisers College</b></div><div>Providing high-quality marine courses to boat owners. These courses are offered in a first-class marine training facility with the opportunity for demonstrations and hands-on activities. Cruisers College brings in expert staff to provide delivery designed courses. Find out more <a href="https://waggonerguide.com/cruisers-college/" target="_self">here</a>.</div><div><br></div><div><div><b>Waggoner Guide Seminars</b></div></div><div><div>Advance your skills with a Waggoner Guide <a href="https://waggonerguide.com/seminars/" target="_self">Seminar</a> taught by experienced instructors.</div></div><div><br></div><div><div>Disclaimer: Due to Covid some seminars and classes are subject to change or may be online only.</div></div>
<script>
window.addEventListener("load", function(){
document.getElementById('product-specs-tab').click();
});
</script>
<div>
<h4 style="font-size:28px;margin-bottom:10px">Cruising <a style="color: #007dc1; text-decoration: underline;" href="https://youtu.be/XbwKrCLJaLM">Puget Sound</a></h4>
<div style="display: flex;">
<div style="flex-basis:33.33%;">
<script>
window.addEventListener("load", function(){
document.getElementById('product-specs-tab').click();
});
</script>
@facelordgists
facelordgists / Copy RSA key to server.md
Last active October 10, 2020 00:10
Copy RSA Key to server

RSA KEYS

If you haven't already got a ~/.ssh/id_rsa.pub on your computer, you'll need to generate one.

To generate key

ssh-keygen

To copy ssh key to your clipboard on a mac: