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
<head> | |
<style id="course-styles"></style> | |
</head> |
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"?> | |
<root> | |
<item> | |
<name>WASD Media Keys - Audio</name> | |
<identifier>wasd_media_keys_audio</identifier> | |
<autogen> | |
__KeyToKey__ | |
KeyCode::F7, ModifierFlag::NONE, ConsumerKeyCode::MUSIC_PREV | |
</autogen> | |
<autogen> |
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
<!DOCTYPE html> | |
<head> | |
<meta charset='utf-8'> | |
<meta content='IE=edge;chrome=1' http-equiv='X-UA-Compatible'> | |
<title></title> | |
<!-- Add jQuery library --> | |
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script> | |
<!-- Add mousewheel plugin (this is optional) --> | |
<script type="text/javascript" src="javascripts/fancybox/lib/jquery.mousewheel-3.0.6.pack.js"></script> | |
<!-- Add fancyBox --> |
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
{ | |
"name": "doki", | |
"dependencies": { | |
"ember": "2.2.0", | |
"ember-cli-shims": "0.0.6", | |
"ember-cli-test-loader": "0.2.2", | |
"ember-data": "2.2.1", | |
"ember-load-initializers": "0.1.7", | |
"ember-qunit": "0.4.16", | |
"ember-qunit-notifications": "0.1.0", |
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
OVERCOMING OBSTACLES TO IMPACTFUL DESIGN | |
Good design is subjective, but often our designs don't have the impact we intend due to forces outside our control. Tough clients, unrealistic deadlines; you know the deal. These unforeseen hurdles can lead to poor work output, but often the most detrimental impacts on our work are completely self-driven. We get in our own way. | |
External conflict, internal instability, mental exhaustion—these things impact our work in unforseen ways. Let's talk real for a second. Let's examine the ways that we self-sabotage through comparision-itis, overwork, and overwhelm. And let's talk about how we can overcome these hurdles via friendship and collaboration, revealing new avenues for impactful work. |
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
{ | |
"data": [ | |
{ | |
"id": "5", | |
"type": "articles", | |
"links": { | |
"self": "http://localhost:3000/articles/5" | |
}, | |
"attributes": { | |
"title": "The Frog Catchers Field Manual", |
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
# Use UTF-8 encoding for anything served text/plain or text/html | |
AddDefaultCharset utf-8 | |
# Mime types | |
AddType video/mp4 .mp4 .mp4v .mpg4 .m4v | |
AddType video/ogg .ogv | |
AddType video/webm .webm | |
AddType image/svg+xml .svg .svgz | |
AddType text/x-vcard .vcf |
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
<configuration> | |
<system.webServer> | |
<staticContent> | |
<mimeMap fileExtension=".svg" mimeType="image/svg+xml" /> | |
</staticContent> | |
</system.webServer> | |
</configuration> |
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
module DokiCore | |
class AccessRequest | |
include ActiveModel::Validations | |
attr_accessor :business, | |
:email, | |
:how, | |
:name, | |
:subscribed |
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
/* jshint node: true */ | |
var _ = require('lodash'); | |
module.exports = function(deployTarget) { | |
var ENV = { | |
build: {} | |
}; | |
var s3 = { |