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
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' | |
")); | |
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
#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." |
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
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>'); | |
}); |
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
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) { |
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
// this also works : | |
$feed = array( | |
4000, | |
3500, | |
3000, | |
2000, | |
1000, | |
100, | |
0, |
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
{ | |
"folders": | |
[ | |
{ | |
"path": "/Users/andrew/Projects/inuit", | |
"folder_exclude_patterns": [".sass-cache"], | |
"file_exclude_patterns": [".*", "*.md", "watch", "LICENSE", "*.sublime-*", "*.txt"] | |
} | |
] | |
} |
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
Show hidden characters
{ | |
"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": |
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
SELECT * FROM DBPREFIX_posts where post_type = 'OLD_CPT' | |
UPDATE DBPREFIX_posts SET post_type = 'NEW_CPT' where post_type = 'OLD_CPT' |
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
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" |
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
sass --compass --sourcemap --watch ./:../ --style compressed |
OlderNewer