Skip to content

Instantly share code, notes, and snippets.

View capitalJT's full-sized avatar

Jabal Torres capitalJT

View GitHub Profile
# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases
#
# Sections:
# 1. Environment Configuration
# 2. Make Terminal Better (remapping defaults and adding functionality)
# 3. File and Folder Management
# 4. Searching
# 5. Process Management
@capitalJT
capitalJT / bash_profile
Last active November 16, 2022 21:05
My Bash Profile
source ~/.profile
export PATH=/usr/local/bin:$PATH
# This is the bash profile for the machine at work.
# Custom BASH profile
# Add MAMP path to our path
PATH=/Applications/MAMP/bin/php/php5.6.7/bin:/Applications/MAMP/Library/bin:$PATH
export PATH
@capitalJT
capitalJT / Sublime-keymap.snippets
Created December 12, 2015 10:19
Sublime user key bindings
[
{ "keys": ["ctrl+shift+w"], "command": "toggle_setting", "args": {"setting": "word_wrap"}}
]
@capitalJT
capitalJT / index.html
Last active February 5, 2016 23:37
ww-poll-demo
<div class="content">
<div class="img-wrapper">
<span>
<img src="http://placehold.it/400x300&text=reset" alt="" />
</span>
</div><!-- end img-wrapper -->
<div class="poll-wrapper">
<div class="poll-two-result-bar-wrap">
<div class="two-line-result">
<div class="results-text"></div>
@capitalJT
capitalJT / jt-data.json
Last active March 21, 2016 02:43
Some test data
{
"thumbnails": [
{ "client" : "Digital Meaning",
"description" : "Digital Meaning",
"role": "UI Design, Web Development",
"imgSrc" : "http://jabaltorres.com/assets/img/thumbnails/Digital-Meaning-thumbnail.png",
"linkHref" : "http://www.jabaltorres.com/digital-meaning/",
"extLink" : false
},
<script>
jQuery(function( $ ){
// using gist as a temporary bandaid
$.getJSON('https://gist.githubusercontent.com/capitalJT/ca53e151727f781fee85/raw/7d09da686dc73a1007abf93518aa391034f70e9b/jt-demos-listing.json', function(data) {
var items = [];
$.each(data, function(idx, obj){
$.each(obj, function(key, value){
// check for external link
var aTarget = null;
@capitalJT
capitalJT / adaptive-mega-menu.html
Last active September 6, 2016 15:07
Adaptive Insights Mega Menu
<button type="button" data-toggle="collapse" data-target="#navbar-collapse-1" class="navbar-toggle">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div id="navbar-collapse-1" class="navbar-collapse collapse">
<ul class="nav navbar-nav yamm menu-wrapper">
<li class="ai-list-item nav-link-products dropdown yamm-fw"><a href="/products/adaptive-suite" data-toggle="dropdown" class="dropdown-toggle">Products & Solutions</a>
<ul class="dropdown-menu">
@capitalJT
capitalJT / Adaptive-Utility-Nav-Translated.html
Last active March 9, 2017 21:56
Adaptive Utility Nav Translated
<!-- US -->
<ul id="utilityNav">
<li><a class="narrow lang-link" href="/free-trial">Free Trial</a></li>
<li class="uPhone"><a href="tel:8003036346">800.303.6346</a></li>
<li class="uContact"><a href="/about/contact">Contact Us</a></li>
<li class="utilityNav-dropdown uLanguage">
<i class="fa fa-globe" aria-hidden="true"></i>
<span class="location">United States</span>
<ul class="utilityNav-dropdown-list ulangList">
<li><a href="/uk">United Kingdom</a></li>
@capitalJT
capitalJT / Contract Killer 3.md
Created May 27, 2017 04:48 — forked from malarkey/Contract Killer 3.md
The latest version of my ‘killer contract’ for web designers and developers

Contract Killer

The popular open-source contract for web professionals by Stuff & Nonsense

  • Originally published: 23rd December 2008
  • Revised date: March 15th 2016
  • Original post

@capitalJT
capitalJT / cta-snippets.html
Last active July 26, 2017 16:36
CTA snippets
<!-- Free Trial Button -->
<p><a class="btn btn-default btn-trial" href="/planning-consolidation-trial">Free Trial</a></p>
<!-- Free Trial Demo -->
<p><a class="btn btn-default btn-demo" href="/financial-planning-demo">Watch a Demo</a></p>