This file contains 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
look: | |
- one | |
- two |
This file contains 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
" find all files and move up dir and rename | |
find */*.md | while read file; do mv $file ${file/\/index/""}; done; | |
" remove first 7 characters from all svgs | |
for x in *.svg; do mv $x `echo $x | cut -c 7-` ; done |
This file contains 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
for filename in ./*.less; do less2sass "${filename}" "_${filename/.less/.scss}"; done |
This file contains 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> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<meta name="viewport" content="width=device-width,initial-scale=1" /> | |
<title>*</title> | |
<meta name="description" content="" /> | |
<meta property="og:title" content="" /> |
This file contains 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
NSRect frame = [[NSScreen mainScreen] frame] | |
equivalent to: | |
var frame = NSScreen.mainScreen().frame() | |
[[NSPanel alloc] initWithContentRect:frame styleMask:mask backing:NSBackingStoreBuffered defer:true]; |
This file contains 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
BuySellAds.com | |
BuyAds.com | |
POF Ads | |
Clicksor | |
7Search Display | |
Criteo | |
AdEngage | |
Yabuka | |
Burst Media | |
Advertising.com |
This file contains 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
// Dump Object | |
function dump_obj(obj){ | |
log("#####################################################################################") | |
log("## Dumping object " + obj ) | |
log("## obj class is: " + [obj className]) | |
log("#####################################################################################") | |
log("obj.properties:") | |
log("#####################################################################################") | |
log([obj class].mocha().properties()) | |
log("obj.propertiesWithAncestors:") |
This file contains 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
// Core variables and mixins | |
@import "../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap/variables"; | |
@import "../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins"; | |
// Reset and dependencies | |
@import "../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap/normalize"; | |
@import "../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap/print"; | |
@import "../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap/glyphicons"; | |
// Core CSS |
This file contains 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
// | |
// Generated by class-dump 3.5 (64 bit). | |
// | |
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. | |
// | |
#pragma mark Function Pointers and Blocks | |
typedef void (*CDUnknownFunctionPointerType)(void); // return type and parameters are unknown |
This file contains 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.exports = function(grunt) { | |
grunt.initConfig({ | |
assemble: { | |
options: { | |
flatten: true, | |
layoutdir: 'templates/layouts', | |
partials: 'templates/partials/*.hbs', | |
helpers: 'templates/helpers/*.js', | |
}, |
NewerOlder