Skip to content

Instantly share code, notes, and snippets.

View jedseculles's full-sized avatar
:atom:
We're your growth partners.

Jed Seculles jedseculles

:atom:
We're your growth partners.
View GitHub Profile
@jedseculles
jedseculles / smart_banners.html
Created September 30, 2025 11:24
Promoting Apps with Smart App Banners
<!-- ====== HEAD (iOS Safari native smart banner) ====== -->
<!-- Replace with your iOS App Store ID and optional deep link -->
<meta name="apple-itunes-app" content="app-id=1234567890, app-argument=myapp://home">
<!-- Optional: iOS smart banner title (shown if app provides it). No tag needed if app metadata is complete. -->
<!-- ====== BODY: Banner Markup (works as fallback for Android + non-Safari iOS) ====== -->
<style>
.smartbanner {
position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999;
@jedseculles
jedseculles / .zshrc
Created November 21, 2014 04:33
.zshrc
# Path to your oh-my-zsh installation.
export ZSH=$HOME/.oh-my-zsh
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
ZSH_THEME="gallois"
# Uncomment the following line to use case-sensitive completion.
@jedseculles
jedseculles / new.html.erb
Created July 8, 2011 15:08
Re: [PhRUG:5042] Render Form
<% form_for @user do |f| %>
<fieldset id="user_information" class="user_information">
<legend>User Information</legend>
<!-- your input fields here -->
</fieldset>
<fieldset id="account_information" class="account_information">
<legend>Account Information</legend>
<!-- your input fields here -->
</fieldset>
<fieldset id="personal_information" class="personal_information">