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 / 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 / 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 / .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 / 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 / playbook.html
Last active June 2, 2016 19:22
Playbook backup
<img class="" src="https://hrcoe.amedd.army.mil/Playbook/images/org-chart_top.jpg" alt="orgchart" usemap="#org-chart" />
<map name="org-chart">
<area data-name="cg" shape="rect" coords="166,63,229,103" href="#" data-toggle="modal" data-target="#cg">
<!-- Modal cg -->
<div role=dialog tabindex=-1 id="cg" class="modal fade" aria-labelledby="cg-lbl">
<div role="document" class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button aria-label="Close" class="close" data-dismiss="modal"><span aria-hidden=true>×</span></button>
@fpigeonjr
fpigeonjr / .gitignore
Created January 17, 2016 21:59
Common gitignore for Laravel on OSX
# Created by https://www.gitignore.io/api/osx,laravel,composer,sass,elixir,sublimetext,phpstorm
### OSX ###
.DS_Store
.AppleDouble
.LSOverride
# Icon must end with two \r
Icon
@fpigeonjr
fpigeonjr / Create New Page in APT.md
Last active January 13, 2016 17:17
create a new public site

#Create a New Page in the Army Publishing Tool

  1. Create a new page at the APT
  2. Name the page something unique and follows the convention. ie.Organization_Page, Borden_Ebooks
  3. Next Validate the page by clicking and dragging from "Requested Page" to "Drag Here to Approve"
  4. On the right panel, move page under organizational unit.
  5. On the right panel, move it to "Drag here to enable"
  6. In the web page panel, copy the GUID from the new page located at the bottom of the list.
  7. Find the default page that you will save as the name of the new url. The default page is named default_public.aspx. If you wanted a page called 'ebooks', rename to ebooks.aspx
  8. You will paste the GUID you copied in step 6 in the following methods. Bind Grid and GridView1_RowDataBound.
  9. Email Ft. Detrick the new file and ask for them to upload to staging and production servers.
@fpigeonjr
fpigeonjr / sublime
Last active January 17, 2016 21:47
sublime preferences
{
"bold_folder_labels": true,
"color_scheme": "Packages/User/SublimeLinter/Facebook (SL).tmTheme",
"font_face": "Fira Code",
"font_options":
[
"gray_antialias"
],
"font_size": 15,
"indent_guide_options":
# 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="cloud"
# Uncomment the following line to use case-sensitive completion.
@fpigeonjr
fpigeonjr / reset.css
Last active August 29, 2015 14:16
common resets
.cf {
zoom: 1;
&:after {
clear: both;
}
&:before, &:after {
content: "";
display: table;
}