Skip to content

Instantly share code, notes, and snippets.

View everdaniel's full-sized avatar
🏠
Working from home

Ever Daniel Barreto everdaniel

🏠
Working from home
View GitHub Profile
<?php
/*
Plugin Name: Posts 2 Posts List Widget
Plugin URI: http://friendlywebconsulting.com/
Description: Creates a widget to display posts connected via the Posts 2 Posts plugin by Scribu, found here: http://wordpress.org/extend/plugins/posts-to-posts/
Author: Michelle McGinnis
Author URI: http://friendlywebconsulting.com/
Version: 1.0.0-alpha
*/
// do the comparison between baseline and current dataset here
foreach(array('high_rva', 'mid_rva', 'low_rva') as $type) {
$si = 1;
for($i = 0; $i < count($this->baseline_dataset[$type]); $i++) {
// calculate Hydrologic Alteration Factor
$observed_frequency = $this->comparison_dataset[$type][$i];
$expected_frequency = $this->baseline_dataset[$type][$i] * ($this->years_post / $this->years_pre);
Array
(
[0] => Array
(
[high_rva] => Array
(
[0] => stdClass Object
(
[22] => 0.41666666666667
)
Array
(
[0] => Array
(
[high_rva] => Array
(
[0] => stdClass Object
(
[demand_id] => 22
[si] => 0.41666666666667
Script baseLineData execution took 0.32932496070862 seconds <br />Array
(
[1] => Array
(
[6] => Array
(
[213] => 19
[183] => 22
[184] => 22
[185] => 21
Script baseLineData execution took 0.33139801025391 seconds <br />Array
(
[1] => Array
(
[6] => Array
(
[median] => 19
[minimum] => 18
[maximum] => 22
)
Script baseLineData execution took 0.31350111961365 seconds <br />Array
(
[0] => Array
(
[0] => 21
[1] => 21
[2] => 21
[3] => 21
[4] => 21
[5] => 21
<?php
//Pull historical daily; assumes that historical has at least as many years as the generated.
$sql = "select * from verde_historical_daily where year <= :year";
$core = Core::getInstance();
$stmt = $core->dbh->prepare($sql);
$stmt->bindParam(':year', $totalYears, PDO::PARAM_INT);
try {
$stmt->execute()
require 'fileutils'
start_time = Time.now
SOURCE_DB = {
:name => 'db_name',
:user => 'db_user',
:password => 'db_pass',
:host => 'localhost'
@everdaniel
everdaniel / gist:5943969
Created July 7, 2013 16:22
JS Config Object in Header / CodeIgniter
<script type="text/javascript">
/* <![CDATA[ */
// Global My App Namespace
window.myapp = window.myapp || {};
// AJAX Namespace
myapp.ajax = myapp.ajax || {};
myapp.ajax.csrf = '98dd0f785e';
myapp.ajax.paths = {