Skip to content

Instantly share code, notes, and snippets.

View bigandy's full-sized avatar

Andrew Hudson bigandy

View GitHub Profile
@bigandy
bigandy / var-into-object-fail.php
Created December 15, 2011 14:43
Not working, giving an error. How to insert variable into object???
function year_sum($year) {
return $minutes_cycled_year = $wpdb->get_var($wpdb->prepare("
SELECT SUM($wpdb->postmeta.meta_value)
FROM $wpdb->postmeta, $wpdb->posts
WHERE $wpdb->postmeta.meta_key='exercise-minutes'
AND $wpdb->postmeta.post_id=$wpdb->posts.id
AND year($wpdb->posts.post_date)='$year'
"));
@bigandy
bigandy / rakefile
Created July 27, 2012 08:22
sass rakefile
#rakefile
namespace :sass do
task :sass_environment => :environment do
Sass::Plugin.on_updating_stylesheet { |template, css| puts "Building #{css} from #{template}" }
Sass::Plugin.on_not_updating_stylesheet { |template, css| puts "Skipping #{css}" }
end
desc "Forcefully updates the stylesheets generated by SASS."
@bigandy
bigandy / json-loop.js
Created November 22, 2012 14:19
JSON Milk Check
window.setInterval(function(){
jQuery.getJSON("/api/milk/single_milk/?dev=1",function(data) {
milkAmount = data['result']['milk-amount'];
console.log(milkAmount);
jQuery('#list').html('<h1>'+milkAmount+'</h1>');
});
@bigandy
bigandy / milk-solution.js
Created November 23, 2012 11:53
Solution
setInterval ( getMilk, 1000 );
var old = "";
function getMilk() {
jQuery.getJSON("/api/milk/single_milk/?dev=1",function(data) {
milkAmount = data['result']['milk-amount'];
if(old != milkAmount) {
@bigandy
bigandy / alt-solution.php
Created November 30, 2012 15:23
Array difference.
// this also works :
$feed = array(
4000,
3500,
3000,
2000,
1000,
100,
0,
{
"folders":
[
{
"path": "/Users/andrew/Projects/inuit",
"folder_exclude_patterns": [".sass-cache"],
"file_exclude_patterns": [".*", "*.md", "watch", "LICENSE", "*.sublime-*", "*.txt"]
}
]
}
@bigandy
bigandy / preferences.sublime-settings
Created April 25, 2013 16:11
Sublime Text Preferences
{
"bold_folder_labels": true,
"caret_style": "phase",
"fade_fold_buttons": false,
"font_face": "Source Code Pro",
"font_size": 16.0,
"highlight_line": true,
"highlight_modified_tabs": true,
"hot_exit": false,
"ignored_packages":
@bigandy
bigandy / rename-cpt-db.sql
Last active December 18, 2015 16:49
Rename CPT name after have changed CPT name
SELECT * FROM DBPREFIX_posts where post_type = 'OLD_CPT'
UPDATE DBPREFIX_posts SET post_type = 'NEW_CPT' where post_type = 'OLD_CPT'
require 'zurb-foundation'
# Require any additional compass plugins here.
# Set this to the root of your project when deployed:
http_path = "/"
css_path = "../"
sass_dir = "/"
images_dir = "../images"
javascripts_dir = "../javascripts"
@bigandy
bigandy / sass.txt
Created August 21, 2013 13:37
sass command line (from sass folder)
sass --compass --sourcemap --watch ./:../ --style compressed