This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Load the .bashrc configuration whenever .bash_profile (this file) is sourced | |
if [ -f ~/.bashrc ]; then | |
source ~/.bashrc | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*----------------------------------------------------------------------------------- | |
Shuffle Example - build and shuffle a deck of cards | |
This was built during a presentation for Girl Develop It! Charlotte's | |
Beginner JavaScript class on Loops, Arrays, Objects, and Functions. | |
It started as a hopefully simple example of how one could use arrays to do | |
something programmatically and then got a little out of hand. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//convert the status id returned from openweathermap.org | |
function convertWeatherID(id) { | |
var returnWeather = ''; | |
//check the ID | |
switch(id) { | |
//STORM | |
case 200: | |
case 201: | |
case 210: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
(function($) { | |
//toggle this between true and false to allow/disallow testing the app in the browser | |
window.localApp = true; | |
window.app = (function() { | |
//this object will store methods and variables that will be accessible outside of the window.app module | |
var pub = {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php if(function_exists('DIF_get_user_images')) { | |
$test = DIF_get_user_images($user_id); //replace $user_id with the ID of the user you'd like to get the feed for | |
if($test) { | |
foreach($test as $image) { | |
echo '<pre>'; | |
print_r($image); | |
echo '</pre>'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# config.ru for Pow + Wordpress, based on http://stuff-things.net/2011/05/16/legacy-development-with-pow/ | |
# added hackery to work around wordpress issues - Patrick Anderson ([email protected]) | |
# clearly this could be cleaner, but it does work | |
require 'rack' | |
require 'rack-legacy' | |
require 'rack-rewrite' | |
# patch Php from rack-legacy to substitute the original request so | |
# WP's redirect_canonical doesn't do an infinite redirect of / |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- generates xip.io url with optional port | |
-- I store this script in my ~/bin directory and then use `ln -s ~/bin/xip.io.scpt` to create a symbolic link in the folder for my current project | |
-- Here's the funciton in my ~/.bashrc file: | |
-- function xipit() { | |
-- port=$@ | |
-- if [ ! -f xip.io.scpt ]; then | |
-- ln -s ~/bin/xip.io.scpt; | |
-- fi | |
-- osascript xip.io.scpt $port; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/*-------------------------------------------------------------------------- | |
Better AJAX for WordPress | |
inspired by: | |
http:wordpress.stackexchange.com/questions/28342/is-there-a-way-to-use-the-wordpress-users-but-without-loading-the-entire-wordpre#answer-45011 | |
--------------------------------------------------------------------------*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/*-------------------------------------------------------------------------- | |
This pulls in tweets gathered from the WordPress plugin | |
ouath-twitter-feed-for-developers and converts them into | |
an <article> tag | |
It takes retweets into account and then updates links within | |
the tweet text to convert urls, tags, and hashes into anchor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/*-------------------------------------------------------------------------- | |
This function accepts any date string that str_to_time() can handle | |
and returns a relative date string | |
It can account for seconds, minutes, days, weeks, months, years, | |
decades, centuries, and millenia |
NewerOlder