Crawl out through the burnout... slowly, but surely. I'm working through my backlog, including navigating how social media might actually work (effectively) for me.
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> | |
<!-- https://www.sitemaps.org/protocol.html --> | |
<url><loc>https://catalog.lib.ncsu.edu/</loc><changefreq>always</changefreq></url> | |
<url><loc>https://catalog.lib.ncsu.edu/catalog/advanced</loc><changefreq>always</changefreq></url> | |
<url><loc>https://catalog.lib.ncsu.edu/?search_field=all_fields&q=co-design</loc><changefreq>always</changefreq></url> | |
<url><loc>https://catalog.lib.ncsu.edu/?page=2&q=co-design&search_field=all_fields</loc><changefreq>always</changefreq></url> | |
<url><loc>https://catalog.lib.ncsu.edu/trln?q=co-design&search_field=all_fields</loc><changefreq>always</changefreq></url> | |
<url><loc>https://catalog.lib.ncsu.edu/?f%5Bphysical_media_f%5D%5B%5D=Print&f%5Bresource_type_f%5D%5B%5D=Book&f%5Bsubject_topical_f%5D%5B%5D=Social+aspects&q=co-design&search_field=all_fields</loc><changefreq>always</changefreq></url> |
This file contains hidden or 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
<?php | |
function checkUserBookingRules($bookingData, $username) | |
{ | |
/* $bookingData is a new or modified booking request */ | |
$existingBooking = key_exists('code', $bookingData) ? $bookingData['code'] : null; | |
/* ... other rule checks ... */ | |
$startWindow = /* $Y days before booking date */; | |
$windowLength = /* (2 * $Y) + how far out the user can book + 2 extra days */; | |
$spanDayBookings = $this->getUserBookings($username, $startWindow, $windowLength); |
This file contains hidden or 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
body { background-color: rgba(0, 0, 0, 0); margin: 0px auto; overflow: hidden; } | |
.chat-line__message {font-weight:800; font-size:20px; color:#fff;} | |
.chat-line__status {font-weight:800; font-size:20px; color:#fff;} | |
.simplebar-scroll-content {background-color:#000;} |
This file contains hidden or 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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
require 'resolv' | |
require_relative 'puppet/mr_rogers' | |
# project settings | |
app_name = 'APPLICATION_NAME_HERE' | |
org_name = 'ORG_NAME_HERE' | |
realm_mode = false | |
puppet_stack = "#{org_name}-apache-php-#{app_name}" |
This file contains hidden or 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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
require 'resolv' | |
realm_mode = true | |
realm_key = 'KEY_HERE' | |
rhel_org = 'YOUR_ORG' | |
app_name = 'APP_NAME' | |
puppet_stack = 'apache-python-postgres' | |
vagrant_guest_path = '/vagrant' |
This file contains hidden or 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
var dst = function(){ | |
var timeZone = 'EDT'; | |
function dstDetect(dateStamp){ | |
if (typeof(dateStamp) == 'undefined') { | |
var now = new Date(); | |
dateStamp = now.getTime(); | |
} | |
var timeObject = new Date(dateStamp); | |
var month = timeObject.getMonth(); | |
var months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']; |
This file contains hidden or 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
// example of how this would get called: | |
// during bootstrap: | |
// configuration specifies a "Messenger" resource with property enabled as true/false | |
class Bootstrap { | |
protected function _initMessenger($config){ | |
Messenger_Root::init($config); // values from config are strings, hence the Saf_Filter_Truthy::filter call in ::init | |
} | |
} |
This file contains hidden or 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
/* | |
* start by getting the event data from EMS we've mapped the following values into an array | |
* | |
* 'id' => BookingID from EMS | |
* 'fullStart' => TimeEventStart from EMS converted to a timestamp | |
* 'fullEnd' => TimeEventEnd from EMS converted to a timestamp | |
* 'now' => current time time() | |
* 'title' => EventName from EMS | |
* 'location' => some combination of building/floor/room name | |
* 'description' => optional content from elsewhere with more in-depth detail |