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
// Sprite for Flags | |
// ----------------- | |
// HTML markup is the following | |
// <i class="flag flag-ireland"></i> | |
// PNG: http://bit.ly/15TFoM1 | |
// SVG: http://bit.ly/196OmcM | |
.flag{ |
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
/* @font-face: Proxima Nova */ | |
/* Black */ | |
@font-face { | |
font-family: 'Proxima Nova'; | |
src: url('fonts/ProximaNova-Black-webfont.eot'); | |
src: url('fonts/ProximaNova-Black-webfont.eot?iefix') format('eot'), | |
url('fonts/ProximaNova-Black-webfont.woff') format('woff'), | |
url('fonts/ProximaNova-Black-webfont.ttf') format('truetype'), |
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
[23:49:49] Using gulpfile ~/Code/macxim.github.com/assets/gulpfile.js | |
[23:49:49] Starting 'default'... | |
[23:49:49] Finished 'default' after 57 ms | |
events.js:72 | |
throw er; // Unhandled 'error' event | |
^ | |
TypeError: Cannot read property '_autoprefixerDisabled' of undefined | |
at Processor.disabled (/Users/macuser/Code/macxim.github.com/assets/node_modules/gulp-cssnext/node_modules/cssnext/node_modules/autoprefixer-core/lib/processor.js:133:15) | |
at Processor.disabled (/Users/macuser/Code/macxim.github.com/assets/node_modules/gulp-cssnext/node_modules/cssnext/node_modules/autoprefixer-core/lib/processor.js:151:50) |
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
// See https://github.com/Hiswe/gulp-svg-symbols/ | |
var gulp = require('gulp'); | |
var filter = require('gulp-filter'); | |
var cssFilter = filter('**/*.css'); | |
var svgFilter = filter('**/*.svg'); | |
gulp.task('svgsymbol', function () { |
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 moonWalkers = [ | |
"Neil Armstrong", | |
"Buzz Aldrin", | |
"Pete Conrad", | |
"Alan Bean", | |
"Alan Shepard", | |
"Edgar Mitchell", | |
"David Scott", | |
"James Irwin", | |
"John Young", |
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
# editorconfig.org | |
root = true | |
[*] | |
end_of_line = lf | |
charset = utf-8 | |
trim_trailing_whitespace = true | |
insert_final_newline = true | |
indent_style = space | |
indent_size = 2 |
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
{ | |
"drivers": [ | |
{ | |
"name": "Vettel", | |
"surname": "Sebastian", | |
"ranking": 1, | |
"points": 392, | |
"lastRace": 2, | |
"wins": 11, | |
"poles": 15, |
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
Verifying that "macxim.id" is my Blockstack ID. https://onename.com/macxim |
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
/** | |
* Scrape data from https://london.wtm.com/en/exhibitor-directory-2017/2017-Products | |
* | |
* Usage: $ node index.js | |
*/ | |
var Nightmare = require('nightmare'); | |
var vo = require('vo'); | |
var fs = require('fs'); |
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
import Ember from 'ember'; | |
const { isBlank } = Ember; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle', | |
names: ['one', 'two', 'three', 'four'], | |
}); |
OlderNewer