Skip to content

Instantly share code, notes, and snippets.

View stevenventimiglia's full-sized avatar

Steven Ventimiglia stevenventimiglia

  • ABLE-UI, LLC
  • Davie, FL
View GitHub Profile
@stevenventimiglia
stevenventimiglia / index.html
Created April 27, 2022 20:04
List of Elements
<div id="mainContainer">
<div id="page" class="wrapper">
<h2>List of Elements</h2>
<div id="list"></div>
<!--
<ul>
<li id="1">List Item 001</li>
<li id="2">List Item 002
<ul>
<li id="1">List Item 001</li>
@stevenventimiglia
stevenventimiglia / commits.json
Created January 31, 2020 19:04
Conventional Commit Types
{
"types": {
"feat": {
"description": "A new feature",
"title": "Features"
},
"fix": {
"description": "A bug fix",
"title": "Bug Fixes"
},
@stevenventimiglia
stevenventimiglia / .exportCommits
Last active August 12, 2018 03:13
Bash script for exporting all files included within a series of commits, retaining the directory structure.
#!/bin/bash
# Scripted by Steven E. Ventimiglia
# Copyright 2018 ABLE-UI, LLC
firstCommit=$1
lastCommit=$2
timestamp=`date +%Y-%m-%d_%H:%M:%S`
export_dir="_exports/${timestamp}/"
@stevenventimiglia
stevenventimiglia / index.html
Created August 14, 2017 19:47
[Vanilla JS, JSON, SCSS] Treehouse Profile/Badges
<div id="mainContainer">
<div class="page">
<div class="wrapper">
<div class="content">
<div id="treehouse"></div>
</div>
</div>
</div>
</div>