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
/* jshint evil:true */ | |
var fs = require('fs'); | |
var _ = require('lodash'); | |
var marked = require('marked'); | |
var renderer = new marked.Renderer(); | |
var model = fs.readFileSync('model.md').toString(); |
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
➜ gulp-angular gulp test | |
[12:27:08] Using gulpfile ~/Workspace/Sandbox/gulp-angular/gulpfile.js | |
[12:27:08] Starting 'tsd:init'... | |
[12:27:08] Finished 'tsd:init' after 8.21 ms | |
[12:27:08] Starting 'tsd:install'... | |
[12:27:11] Definition file written: angularjs/angular-animate.d.ts | |
[12:27:11] Definition file written: jquery/jquery.d.ts | |
[12:27:11] Definition file written: angularjs/angular-resource.d.ts | |
[12:27:11] Definition file written: angularjs/angular-route.d.ts | |
[12:27:11] Definition file written: angularjs/angular.d.ts |
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
'use strict'; | |
module.exports = function(config) { | |
config.set({ | |
logLevel: config.LOG_INFO, | |
frameworks: ['jasmine'], | |
browsers : ['PhantomJS'], |
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
/* tslint:disable:no-unused-variable */ | |
// import { By } from '@angular/platform-browser'; | |
// import { DebugElement } from '@angular/core'; | |
import { async, inject } from '@angular/core/testing'; | |
import { TestComponentBuilder, ComponentFixture } from '@angular/compiler/testing'; | |
import { HomeComponent } from './home.component'; |
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
var localStorageMock = /* ... some mock code ... */ | |
Object.defineProperty(window, 'localStorage', { | |
value: localStorageMock | |
}); | |
import './app/index.module'; | |
import 'angular-mocks'; | |
import './app/mock/utils'; |
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 (config) { | |
config.set({ | |
basePath: '../', | |
singleRun: true, | |
autoWatch: false, | |
files: [ | |
'node_modules/angular/angular.js', | |
'node_modules/angular-mocks/angular-mocks.js', | |
'src/app/mock/utils.js', | |
'src/index.spec.js' |
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
<div class="main-container"> | |
<fountain-header></fountain-header> | |
<main class="main"> | |
<fountain-title></fountain-title> | |
<fountain-techs></fountain-techs> | |
</main> | |
<fountain-footer></fountain-footer> | |
</div> |
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
628408: HTTP2_SESSION | |
localhost:8443 (DIRECT) | |
Start Time: 2018-03-22 09:00:43.870 | |
t=1298705 [st=0] +HTTP2_SESSION [dt=?] | |
--> host = "localhost:8443" | |
--> proxy = "DIRECT" | |
t=1298705 [st=0] HTTP2_SESSION_INITIALIZED | |
--> protocol = "h2" | |
--> source_dependency = 628407 (SOCKET) |
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
import styled from "styled-components"; | |
const Container = styled.div` | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
height: calc(100vh - 2 * 8px); | |
`; |
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
const white = alpha => `rgba(255, 255, 255, ${alpha})`; | |
const BB8 = styled.div` | |
background-image: | |
radial-gradient(circle at 58px 32px, ${white(0.9)} 2px, transparent 3px) | |
`; |
OlderNewer