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
//the next few lines strip "or Create an Account" from the log-in menu option | |
//I usually set the overall navigation to display:none; in my CSS if I know js is enabled | |
//I use Modernizr and check for the js class on the <html> tag with the style selector for my menu | |
//like: .js #navigation { display: none; } | |
//You'll want to add a class or ID to the <div> containing the log-in/log-out link | |
//usual output (with added ID): | |
//<li> | |
// <div id="log_in_options"> | |
// <a onclick="" href="[url]">Sign in</a> or <a onclick="" href="[url]">Create an account</a> |
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
//check for mobile devices | |
//modified from http://bit.ly/nMEXh4 | |
var ua = navigator.userAgent; | |
var checker = { | |
iphone: ua.match(/(iPhone|iPod)/), | |
ipad: ua.match(/(iPad)/), | |
blackberry: ua.match(/BlackBerry/), | |
android: ua.match(/Android/) |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>comment</key> | |
<string>Crafted with love and passion by Bernat Fortet, special treatment for Front End coding: HTML, CSS, LESS, JADE, JS... more coming soon </string> | |
<key>author</key> | |
<string>Bernat Fortet</string> | |
<key>name</key> | |
<string>Bernat's FrontEnd Deligh</string> |
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 //get tweets | |
function get_tweets($s) { | |
$url = 'http://search.twitter.com/search.json?q=' . urlencode($s); | |
//set up var for holding tweets | |
$local_tweets = ''; | |
//check for cache from 5 minutes ago | |
if(get_transient('bodyadorned_tweets_short')) { | |
$local_tweets = get_transient('bodyadorned_tweets_short'); | |
//if it isn't found, try to update tweets | |
} else { |
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 |
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 | |
/*-------------------------------------------------------------------------- | |
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
-- 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
# 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
<?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>'; |
OlderNewer