Skip to content

Instantly share code, notes, and snippets.

View kevee's full-sized avatar

Kevin Miller kevee

View GitHub Profile
@kevee
kevee / graduates.json
Last active February 9, 2019 06:25
Science Illustration
[{"id":"rec2dSE9bQVKhWHLl","fields":{"first_name":"Sarah","degrees":"B.A. (Fine Art) University of California, Santa Cruz","website":"http:\/\/www.sarahadler.design\/","class":"2008","last_name":"Adler","Images":["recbqJFVG3y8oC8xp","rec4ipFoXBBDXfQw8","recrkctb3m6vc5kW6"],"slug":"sarah-adler"},"createdTime":"2016-06-02T18:05:44.000Z"},{"id":"rectaPA8UlYk0k3Np","fields":{"first_name":"Leonardo","degrees":"B.S (Evolutionary Biology and Ecology) California State University, Northridge","website":"http:\/\/www.leonardoalannis.com\/#leonardoalannis","bio":"Born and raised in Hollywood, CA, Leonardo took an active interest in both drawing and nature since he was very young. While obtaining his undergraduate degree, he accumulated experience in fine art, cinema, animation and public radio communications. He enjoys working with both traditional media as well as digital programs like the Adobe Creative Suite and 3D modeling software. His mission is to illustrate the deep aspects of evolutionary history and bring abou
@kevee
kevee / last.json
Last active October 31, 2016 23:00
CSUMB Last Changed Stats
{"lastRun":1477954844,"sites":{"404.html":1477954821,"_headers":1477954821,"index.json":1473896529,"manifest.json":1477954821,"service-worker.js":1477954821,"dashboard":1477954821,"directory":1477954821,"my-profile":1477954821,"schedule":1477954821,"search":1477954821,"about":1477954841,"academicaffairs":1472148428,"academicpersonnel":1472148428,"academics":1472148428,"ace":1472148428,"admissions":1472148428,"aehs":1472148428,"af":1472148428,"advising":1472148428,"affairs":1472148428,"affordable":1472148428,"agscience":1472148428,"alumni":1472148428,"amws":1472148428,"as":1472148428,"asap":1472148428,"athletics":1472148428,"ati":1472148428,"bd2k":1472148428,"bet":1472148428,"bluecrue":1472148428,"business":1472148428,"calendar":1472148428,"cahss":1472148428,"camp":1472148428,"campusadvocate":1472148428,"campusplanning":1472148428,"career":1472148428,"capstone":1472148428,"cat":1472148428,"catalystcenter":1472148429,"ccows":1472148429,"chshs":1472148429,"cinearts":1472148429,"clc":1472148429,"clubs":1472148429
<html>
<head>
</head>
<body>
<p class="intro">
Budget Central is a resource for budget news and information pertaining to California State University, Monterey Bay and the California State University system. The site gives current and potential students, employees and the general public the latest information about the CSUMB budget.</p>
<h3>
CSUMB 2013-14 Budget Information</h3>
<p>
<a href="http://news.csumb.edu/sites/default/files/65/attachments/news/files/2013-14_csumb_operating_fund_budget_summary_by_division.pdf">2013-14 CSUMB Operating Fund Budget Summary by Division</a></p>
@kevee
kevee / csumb-dashboard-events.js
Created April 14, 2015 16:44
Monkey Patch 25 Live Spud
//Avert your eyes.
(function($, $Trumba) {
Drupal.behaviors.csumbDashboardEvents = {
attach: function() {
},
/**
* Monkey-patch a CSS file into the iFrame.
*/
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
(function($) {
var committed = '54e2130d0adfe0dc754d6325';
$.getJSON('/csumb/proxy?url=https://trello.com/b/fInZhDeB.json', function(data) {
$.each(data.cards, function() {
var $item = $('<li>').html(this.name);
if(this.idList == committed) {
$('#commits-deployed').append($item);
}
else {
$('#commits-testing').append($item);
@kevee
kevee / Description
Created February 6, 2015 18:06
IT Alerts
At CSUMB IT, we monitor everything from cables to websites so you can get your work done and keep studying.<br/>
<a href="http://stats.pingdom.com/qlrv6qw8nsqx">Campus websites status</a> |
<a href="http://status.getpantheon.com/">CSUMB.EDU status</a> |
<a href="http://www.google.com/appsstatus#hl=en&v=status">Google Apps status</a>
console.log('testing')
@kevee
kevee / redirects.json
Created July 14, 2014 15:14
CSUMB Redirects
{
"*": "csumb.edu",
"help.csumb.edu": "it.csumb.edu/information-technology/support",
"alerts.csumb.edu": "csumbalerts.tumblr.com",
"evaluations.csumb.edu": "cat.csumb.edu/course-evaluations",
"r25.csumb.edu": "webviewer.collegenet.com/wv3_servlet/csumb",
"textbooks.csumb.edu": "cat.csumb.edu/textbooks",
"ottermedia.net": "tat.csumb.edu/ottermedia",
"home.csumb.edu": "it.csumb.edu/home-server-offline",
"farm.csumb.edu": "caff.org/programs/farm-2-school",
@kevee
kevee / findContent.js
Created March 27, 2014 00:17
Auto-finding the content area of a page - adapted from readability
getElement : function($) {
var contentNode = false;
var $topScore = $('body');
$('p').each(function() {
var $parent = $(this).parent();
var element = $parent.get(0);
var contentScore = $parent.data('content-score') || 0;
if(!$parent.data('content-score')) {
contentScore = $parent.find('p').length;