Skip to content

Instantly share code, notes, and snippets.

View fpigeonjr's full-sized avatar

Frank Pigeon Jr. fpigeonjr

View GitHub Profile
@fpigeonjr
fpigeonjr / BookGuide.md
Last active November 18, 2017 06:59
Borden Book Guide

Borden Book Guide

Book Detail page

The html of the book detail page is important for laying out the page properly. This consists primarily of wrapping contents in a <div id="book_detail"> and adding the appropriate ids to the books components as shown below in the code snippet.

html code snippet

@fpigeonjr
fpigeonjr / bookTemplate.html
Last active March 19, 2021 13:42
Borden Books Template
<div id="book_detail">
<h2 id="bookTitle">My Awsome Title</h2>
<img src="https://via.placeholder.com/350x150" alt="book image" id="bookImage">
<p><a href="#" id="epubLink">My Awesome epub link</a></p>
<p><a href="#" id="mobiLink">My Awesome mobi link</a></p>
<h4>Contents</h4>
<p>My Awesome Content</p>
</div>
@fpigeonjr
fpigeonjr / link.md
Last active November 15, 2017 20:26
link to a SharePoint List and return back to serving page
@fpigeonjr
fpigeonjr / StaffandStudentResources.md
Created November 13, 2017 16:59
Review sites/apps on the page and ensure we have a consistent look and feel.

Staff and Student Resources

Review sites/apps on the page and ensure we have a consistent look and feel.

AMEDDCS Links

  • AMEDDCS Public page
    • needs complete redesign
    • add Bootstrap
  • CL3
@fpigeonjr
fpigeonjr / gaSetup.md
Last active November 9, 2017 19:16
Google Analytics Setup

Google Analytics (GA) Getting Started

  • Create a Google Account with your .mil email address
  • Create or sign in to your Analytics account
  • Set up a property in your Analytics account. A property represents your website or app, and is the collection point in Analytics for the data from your site or app.
  • Optional Set up a reporting view in your property. Views let you create filtered perspectives of your data; for example, all data except from your company’s internal IP addresses, or all data associated with a specific sales region.
  • Follow the instructions to add the tracking code to your website or mobile app so you can collect data in you Analytics property.
@fpigeonjr
fpigeonjr / .gitconfig
Created October 6, 2017 03:51
dot files
# This is Git's per-user configuration file.
[user]
# Please adapt and uncomment the following lines:
# name = Frank Pigeon
# email = fpigeon@salvage.local
[user]
email = frank.pigeonjr@gmail.com
name = Frank Pigeon Jr.
@fpigeonjr
fpigeonjr / .zshrc
Created July 27, 2017 05:52
zshell config for Pure zshell
# Path to your oh-my-zsh installation.
export ZSH=/Users/fpigeon/.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 ohmy-zsh is loaded.
ZSH_THEME=""
# Uncomment the following line to use case-sensitive completion.
@fpigeonjr
fpigeonjr / settings.json
Created July 27, 2017 05:50
VS Code config
// Place your settings in this file to overwrite the default settings
{
"editor.fontFamily": "Operator Mono, Fira Code",
"editor.fontSize": 18,
"editor.lineHeight": 29,
"editor.tabSize": 2,
"editor.fontLigatures": true,
"files.trimTrailingWhitespace": true,
"files.autoSave": "onFocusChange",
"editor.renderIndentGuides": false,
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// default font size in pixels for all tabs
fontSize: 18,
// font family with optional fallbacks
@fpigeonjr
fpigeonjr / contentManager.html
Created March 22, 2017 19:11
moving elements
<div id="source">
<!-- Source content here -->
</div>