Skip to content

Instantly share code, notes, and snippets.

View iammilton82's full-sized avatar

Milton Jackson iammilton82

View GitHub Profile
@iammilton82
iammilton82 / links.html
Last active September 1, 2015 12:30
Helpful AngularJS links
@iammilton82
iammilton82 / print-and-console.php
Created August 8, 2015 19:57
Print array and console
public function printIt($data){
echo "<pre>";
print_r($data);
echo "</pre>";
}
public function console($data){
$data = json_encode($data);
echo "<script type='text/javascript'>console.log($data)</script>";
}

OS X Preferences


most of these require logout/restart to take effect

# Enable character repeat on keydown
defaults write -g ApplePressAndHoldEnabled -bool false

# Set a shorter Delay until key repeat
<?php
public function getEmbedCode($url)
{
if (strpos($url, 'youtube') !== FALSE) {
$url_parts = parse_url($url);
parse_str($url_parts['query'], $segments);
return '//www.youtube.com/embed/' . $segments['v'];
} else if (strpos($url, 'vimeo') !== FALSE) {
@iammilton82
iammilton82 / MY_Upload.php
Created March 6, 2014 19:18
MultiFile Upload function in CodeIgniter
<!-- LIBRARY -->
<?
if (!defined('BASEPATH')) exit('No direct script access allowed');
class MY_Upload extends CI_Upload {
function uploadmultiple($files, $settings)
{
$uploaded = array();
@iammilton82
iammilton82 / lihe_jobs.xml
Created September 20, 2013 17:59
LatinosInHigherEd.com Sample XML File
<?xml version="1.0" encoding="UTF-8"?>
<jobs>
<job>
<id>2342342</id>
<action>add</action>
<user_id>116555</user_id>
<start>2007-08-30</start>
<expire>2007-08-30</expire>
<position>
<![CDATA[Job Title Here]]>
@iammilton82
iammilton82 / the-events-calendar.php
Created August 31, 2013 12:23
Events Loop for The Events Calendar
<?
global $post;
$events = new WP_Query();
$events->query( array('post_type'=> 'tribe_events', 'eventDisplay' => 'all', 'posts_per_page' => 3));
if ( $events->have_posts() ){
echo "<ul>";
while ( $events->have_posts() )
{
@iammilton82
iammilton82 / forcelinks.js
Created May 28, 2013 17:51
Force IOS web app links to open in same document
@iammilton82
iammilton82 / fixedcss.css
Last active December 17, 2015 11:19
Fixed scrolling navigation
/* CSS */
body { padding-top:80px; } /* be sure the padding is fron the top of the page to the top of your content */
#header { position: absolute; height:50px; width: 100%; top:20px; left:0; right:0; }
#header.fixed { position: fixed; top:0; }