This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="case-study-gallery"> | |
<h1 class="title">CASE STUDIES</h1> | |
<p>This is an example of a portfolio gallery. It has some simple hover transitions and is pretty rad.</p> | |
<div class="case-study study1"> | |
<figure> | |
<img class="case-study__img" src="http://static.squarespace.com/static/51b79838e4b0b8b55c75cf91/t/51c4b688e4b03003ea9f1a63/1371846281755/Hexxis+Logo+White.png" alt="" /> | |
</figure> | |
<div class="case-study__overlay"> | |
<h2 class="case-study__title">Developing Hexxis</h2> | |
<a class="case-study__link" href="#">View Case Study</a> |
rsync notes
rsync -av --delete [source] [destination]
rsync [options] source destination sftp://198.101.206.164//home/klru/klru.org rsync -e ssh -avz AllReviews \
The -e ssh option tells rsync to use the secure shell connection. The -a option does an archive and preserves access modes (permissions, owner and group), the -v option means verbose (returns details about the copy process), and the -z option compresses the files using gzip.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tap "eddieantonio/eddieantonio" | |
tap "github/gh" | |
tap "homebrew/bundle" | |
tap "homebrew/cask" | |
tap "homebrew/cask-drivers" | |
tap "homebrew/cask-fonts" | |
tap "homebrew/core" | |
tap "instrumenta/instrumenta" | |
tap "mongodb/brew" | |
tap "nektos/tap" |
A curated list of arrrrrrrrr!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en" > | |
<head> | |
<meta charset="UTF-8"> | |
<title>Portfolio Gallery Filter With Pagination Responsive</title> | |
<link rel="stylesheet" href="./style.css"> | |
<link href="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/magnific-popup.css" rel="stylesheet"> | |
<link href="https://fonts.googleapis.com/css?family=Parisienne&display=swap" rel="stylesheet"> | |
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap" rel="stylesheet"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
echo "Running..." | |
PROG=$0 | |
RSYNC="/usr/bin/rsync" | |
SCRIPT_MOUNTED='false' | |
MOUNT_VOLUME="/Volumes/Qdownload" | |
SRC="$MOUNT_VOLUME/transmission/completed/" | |
DST="/Users/tom/Dumping Ground/Qnap Downloads" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Document</title> | |
<style>@import "bourbon"; | |
/*---- NUMBER OF SLIDE CONFIGURATION ----*/ | |
$num-of-slide: 5; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="cb"> | |
<div class="row a"> | |
<div class="gray-light"></div> | |
<div class="yellow"></div> | |
<div class="blue-light"></div> | |
<div class="green"></div> | |
<div class="pink"></div> | |
<div class="red"></div> | |
<div class="blue"></div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Images from Craig Henry's Dribbble profile: http://dribbble.com/craighenry --> | |
<ul class="slider"> | |
<li> | |
<input type="radio" id="slide1" name="slide" checked> | |
<label for="slide1"></label> | |
<img src="https://dribbble.s3.amazonaws.com/users/322/screenshots/872485/coldchase.jpg" alt="Panel 1"> | |
</li> | |
<li> | |
<input type="radio" id="slide2" name="slide"> |