Skip to content

Instantly share code, notes, and snippets.

View dmackerman's full-sized avatar

Dave Ackerman dmackerman

  • Kentik Technologies - @kentik
  • Tempe, AZ
View GitHub Profile
@dmackerman
dmackerman / projects.json
Last active March 24, 2020 22:27 — forked from danil-kuk/projects.json
Projects Data
[
{
"name": "ARN03",
"imports": ["CDG02", "SLC01"]
},
{
"name": "SFO01",
"imports": ["CDG02", "SEA01"]
},
{
myApp.controller('MyWidgetControl', function($scope, $controller) {
$controller('AbstractWidgetControl', {$scope: $scope});
//"Public" functions
$scope.myFunction = function() {
//...
};
//Private functions
function myPrivateFn() {
@media all and (max-width: 800px) and (orientation: portrait) {
.global-toc .global-toc-featured-story .x-innerhtml {
border: 1px solid #00F;
}
}
@dmackerman
dmackerman / mq.css
Created October 3, 2012 18:26 — forked from chriscoyier/mq.css
@media only screen and (min-width: 320px) {
/* Small screen, non-retina */
}
@media
only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 320px),
only screen and ( min--moz-device-pixel-ratio: 2) and (min-width: 320px),
only screen and ( -o-min-device-pixel-ratio: 2/1) and (min-width: 320px),