This gist's comment stream is a collection of webdev apps for OS X. Feel free to add links to apps you like, just make sure you add some context to what it does — either from the creator's website or your own thoughts.
— Erik
#!/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 |
var args = [].slice.call(arguments, 0); |
# 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 |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>My Iframe</title> | |
</head> | |
<body> | |
<button>Botão</button> | |
<script type="text/javascript"> |
Forked from David DeSandro's Pen Isotope - masonry layout mode.
A Pen by Nelson Omuto on CodePen.
Forked from David DeSandro's Pen Isotope - layout modes.
A Pen by Nelson Omuto on CodePen.
version: '2' | |
services: | |
rancher: | |
image: rancher/server | |
container_name: rancher-server | |
restart: always | |
nginx: | |
image: nginx:1.11 | |
volumes: |