Skip to content

Instantly share code, notes, and snippets.

View fpigeonjr's full-sized avatar
🇺🇲
working from home

Frank Pigeon Jr. fpigeonjr

🇺🇲
working from home
View GitHub Profile
@fpigeonjr
fpigeonjr / git special clone
Created January 28, 2017 03:41
when you want to pull down a repo and all branches
# when you want to pull down a repo and all branches
git clone --bare ${github url} .git //pull downs all branches of repo
git config --bool core.bare false //convert to regular repo
git reset --hard //finishes process
@fpigeonjr
fpigeonjr / .hyper.js
Created February 5, 2017 07:36
hyper dot file
module.exports = {
config: {
// default font size in pixels for all tabs
fontSize: 17,
// font family with optional fallbacks
fontFamily: 'Fira Code, Operator Mono',
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk)
cursorColor: 'yellow',
@fpigeonjr
fpigeonjr / vscode.js
Created February 7, 2017 05:06
vsCode config
// Place your settings in this file to overwrite the default settings
{
"editor.fontFamily": "Operator Mono, Fira Code",
"editor.fontSize": 19,
"editor.lineHeight": 32,
"editor.fontLigatures": true,
"files.trimTrailingWhitespace": true,
"files.autoSave": "afterDelay",
"editor.renderIndentGuides": false,
"window.fullScreenZenMode": false,
@fpigeonjr
fpigeonjr / ConEmu.xml
Created February 13, 2017 19:42 — forked from JanDeDobbeleer/ConEmu.xml
ConEmu configuration file
<?xml version="1.0" encoding="utf-8"?>
<key name="Software">
<key name="ConEmu">
<key name=".Vanilla" modified="2016-04-29 09:13:16" build="160416">
<value name="StartType" type="hex" data="02"/>
<value name="CmdLine" type="string" data=""/>
<value name="StartTasksFile" type="string" data=""/>
<value name="StartTasksName" type="string" data="{Shells::PowerShell}"/>
<value name="StartFarFolders" type="hex" data="00"/>
<value name="StartFarEditors" type="hex" data="00"/>
@fpigeonjr
fpigeonjr / contentManager.html
Created March 22, 2017 19:11
moving elements
<div id="source">
<!-- Source content here -->
</div>
// 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 / 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,
@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 / .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 / 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.