Skip to content

Instantly share code, notes, and snippets.

@jdcauley
jdcauley / .gitignore
Created March 12, 2015 17:27
WP Gitignore
# ignore all files starting with .
.*
wp-config.php
# track this file .gitignore (i.e. do NOT ignore it)
!.gitignore
# track .editorconfig file (i.e. do NOT ignore it)
!.editorconfig
# -----------------------------------------------------------------
# .gitignore for WordPress
# Bare Minimum Git
# http://ironco.de/bare-minimum-git/
# ver 20150227
#
# This file is tailored for a WordPress project
# using the default directory structure
#
# This file specifies intentionally untracked files to ignore
@jdcauley
jdcauley / stack
Created February 18, 2015 16:32
tech stack
also...here's the current tech stack:
Web Tier
Presentation Tier - AJAX, Javascript, jQuery, BootStrap, Knockout, Raphael JS and Popcorn JS, Flowplayer
Business Tier - Grails, Spring, NodeJS
Persistence - Hibernate, GORM
Application Servers - Apache Tomcat, JBoss, NodeJS
Databases - MongoDB, Postgresql
Cloud - Amazon EC2
Integration Services - Webservices (NodeJS)
Languages - Groovy, Java
/*
(function() {
// var app = angular.module('archiveCards', ['ngRoute', 'ngResource', 'simplePagination']);
var app = angular.module('archiveCards', ['ngRoute', 'ngResource']);
// set up configuration variables
.listing-img-inner {
float: left;
display: block;
position: relative;
width: 100%;
// height: 100px;
background: @stone-blue;
overflow: hidden;
.small-up(@screen-tablet {
@jdcauley
jdcauley / app.css
Created February 5, 2015 13:30
SD Update
/* This */
.content ul{
margin-bottom: 20px;
}
/* To This */
.content ul,
.content ol{
@jdcauley
jdcauley / app.less
Created January 14, 2015 14:18
dude
.listing-top {
margin: 25px -10px 20px -10px;
.desktop(@screen-desktop {
height: 480px;
});
.tabs-outer {
@jdcauley
jdcauley / app.js
Last active August 29, 2015 14:12
updated
var App = Ember.Application.create({
rootElement: '#ember-app'
});
App.Store = DS.Store.extend();
App.ApplicationAdapter = DS.RESTAdapter.extend();
DS.RESTAdapter.reopen({
@jdcauley
jdcauley / layout.ejs
Created January 2, 2015 19:04
template
<script type="text/x-handlebars">
<div class="container main-wrap">
<div class="content row">
<div class="facets-outer">
<div class="row facets-inner">
<nav class="navbar navbar-facets" role="navigation">
<div class="container-fluid">
@jdcauley
jdcauley / app.js
Created January 2, 2015 19:00
ember app
/*
function emberUp(data){
var Properties = Ember.Application.create({
rootElement: '#ember-app'
});