Skip to content

Instantly share code, notes, and snippets.

View birdwing's full-sized avatar

Aron Brown birdwing

  • Gateway Worship Center / Charlotte County Public Schools
  • Port Charlotte, FL
View GitHub Profile
@birdwing
birdwing / config.json
Last active August 29, 2015 14:22 — forked from anonymous/config.json
CCPS Bootstrap Config
{
"vars": {
"@gray-base": "#000",
"@gray-darker": "lighten(@gray-base, 13.5%)",
"@gray-dark": "lighten(@gray-base, 20%)",
"@gray": "lighten(@gray-base, 33.5%)",
"@gray-light": "lighten(@gray-base, 46.7%)",
"@gray-lighter": "lighten(@gray-base, 93.5%)",
"@brand-primary": "#009999",
"@brand-success": "#428bca",
@birdwing
birdwing / strposnth
Created June 27, 2014 18:26
Find String Position Of Nth Occurrence Of Needle in Haystack
<?php
/**
*
* @Find String Position of Nth occurance Needle in Haystack
*
* @param string $needle The search string
*
* @param string $haystack The string to seach
*