Skip to content

Instantly share code, notes, and snippets.

View lawren's full-sized avatar
🚀

lawren

🚀
View GitHub Profile

Engineering Pod Structure

This document outlines our Engineering Pod model, a structure designed to scale our engineering organization while maintaining focus, ownership, and collaboration.

Purpose

Pods enable us to scale efficiently by providing clear structure for growth, team management, and resource coordination.

Our pod structure facilitates:

@lawren
lawren / _colors.scss
Created April 4, 2016 13:39
Example of a colors page for Hologram
/*doc
---
title: Colors
name: Colors
category: Layout - colors
---
<div class="row">
<div class="collapsible collapsible-accordion">
<h4 class="collapsible-trigger">Wells Fargo 2013 Energy Symposium</h4>
<div class="collapsible-pane">
<p>Dhiaa Jamil, Duke Energy Corporation’s executive vice president and president of Duke Energy Nuclear, will participate in a panel at the Wells Fargo 2013 Energy Symposium at 8 a.m. (EST), Dec. 11, 2013.</p>
<ul>
<li><a href="/news/releases/2013120601.asp">Duke Energy nuclear executive to participate in panel discussion at New York energy symposium Dec. 11</a> </li>
<li class="webcast"><a target="_blank" href="http://cc.talkpoint.com/well001/121013a_dy/?entity=45_MYT1VQE">Webcast</a> </li>
</ul>
</div>
<h4 class="collapsible-trigger">Wells Fargo 2013 Energy Symposium</h4>
@lawren
lawren / jQuery - Event-triggered audio.js
Last active August 29, 2015 13:57
jQuery - Script for event driven audio using dukeAudio
$(function () {
$('#ding-dong-button').click(function () {
duke.audio.play('http://www.duke-energy.com/_assets/apps/hehc/sound/ding-dong.mp3');
});
})
@lawren
lawren / HTML - Basic Audio.html
Last active August 29, 2015 13:57
HTML - Markup for initializing audio with a simple trigger
<a class="audio-trigger" href="http://www.duke-energy.com/_assets/apps/dan-river-response/mp3/paul-newton-speaks.mp3">
Paul Newton speaks about incident
</a>
@lawren
lawren / jQuery-tabs-init-config.js
Created January 30, 2014 20:49
jQuery - Tabs initialization with config options
$(".tooltip-trigger").tooltip({
position: 'top center',
offset: [-120,0],
effect: 'slide'
});
@lawren
lawren / jQuery-tooltip-init.js
Created January 30, 2014 20:46
jQuery - Tooltip initialization
$(".tooltip-trigger").tooltip();
@lawren
lawren / HTML-initialize-old-tabsjs.html
Created January 15, 2014 15:11
HTML - Initialization for old tabs.js
<script src="/includes/JS/deux/tabs.js"></script>
@lawren
lawren / HTML-markup-old-tabsjs.html
Created January 15, 2014 14:51
HTML - Markup for use with deprecated tabs.js
<ul class="tabs">
<li><a href="#how-it-works">How It Works</a></li>
<li><a href="#moving-resources">Moving Resources</a></li>
<li><a href="#frequently-asked-questions">Frequently Asked Questions</a></li>
</ul>
<div class="tabs-content">
<div id="how-it-works" class="tabs-content-pane">
<!-- some content -->
</div>
<div id="moving-resources" class="tabs-content-pane">
$('ul.ss-tabs').tabs('div#ss-tabs > div');