I hereby claim:
- I am dflynn15 on github.
- I am djflynn15 (https://keybase.io/djflynn15) on keybase.
- I have a public key ASC2wLi4cTUA0zb4D1uF_KTKm0wjbh1SFqDrUC_m_PK-1Qo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| { | |
| forms: [ | |
| { | |
| url: "https://pokeapi.co/api/v2/pokemon-form/1/", | |
| name: "bulbasaur", | |
| favorite: true | |
| } | |
| ] | |
| } |
| #!/bin/sh | |
| # | |
| # Pre-commit hook | |
| # Lint stuff before committing | |
| npm run perf-test |
| Class Capital | |
| attr_reader :contestants | |
| def initialize() | |
| @contestants = [] | |
| end | |
| def register(NewContestant) | |
| puts "#{NewContestant.name} has entered the game!" | |
| @contestants >> NewContestant |
| .hero { | |
| // First, styles that all brands | |
| // have in common. | |
| // (The "shared stuff") | |
| font-size: 2em; | |
| font-weight: bold; | |
| border: 1px solid; | |
| // Next, brand-specific styles. | |
| // (The "themed stuff") |
| var gulp = require('gulp'), | |
| merger = require ('lcov-result-merger'); | |
| gulp.task('merge-coverage', function() { | |
| return gulp.src('./reports/coverage/**/lcov.info') | |
| .pipe(merger()) | |
| .pipe(gulp.src('./reports/merged/')) | |
| }); |
| var gulp = require('gulp'); | |
| var jasmine = require('gulp-jasmine-phantom'); | |
| gulp.task('unitTests', function () { | |
| return gulp.src('spec/test.js') | |
| .pipe(jasmine()); | |
| }); | |
| gulp.task('integrationTests', function() { | |
| return gulp.src('spec/test.js') |
| var gulp = require('gulp'); | |
| var jasmine = require('gulp-jasmine-phantom'); | |
| gulp.task('default', function() { | |
| return gulp.src('spec/test.js') | |
| .pipe(jasmine({ | |
| integration: true | |
| })); | |
| }); |
| #!/bin/bash | |
| # Format of command: ./xampp.sh new.website.name.com projectDir path/to/project/Dir | |
| # Number of expected arguments | |
| EXPECTED_ARGS=3 | |
| function create_symbolic_link { | |
| sudo ln -s $1 /Applications/XAMPP/xamppfiles/htdocs/$2 | |
| } |
| /* | |
| * This is a LESS port of Sparkbox's module-based media queries mixin in SASS | |
| * https://github.com/sparkbox/SB-Media | |
| * | |
| * Example use: http://codepen.io/dflynn15/pen/AHadk | |
| * body{ | |
| * background-color:red; | |
| * | |
| * .sb-media(40em ,{ | |
| * background-color: blue; |