Forked from David DeSandro's Pen Isotope - masonry layout mode.
A Pen by Nelson Omuto on CodePen.
Forked from David DeSandro's Pen Isotope - masonry layout mode.
A Pen by Nelson Omuto on CodePen.
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>My Iframe</title> | |
</head> | |
<body> | |
<button>Botão</button> | |
<script type="text/javascript"> |
# cribed from this post | |
# http://onethingwell.org/post/27835796928/remote-ssh-bact-to-my-mac | |
dns-sd -E # gets your member id for icloud | |
# SSH command | |
ssh -2 -6 [USERNAME]@[COMPUTER NAME].[account number].members.btmm.icloud.com | |
# ~/.ssh/config | |
Host mac-remote |
var args = [].slice.call(arguments, 0); |
#!/bin/sh | |
# | |
# Suggested name for this script: git-clean-stale-branches | |
# | |
# This script will help to remove "stale" branches from a remote | |
# repository (by default the "origin" repository). Stale branches | |
# are any branches that does not exist in the local repository. | |
# | |
# This script should be run in the local repository. It will print | |
# out a git command to remove all branches from the remote repository |