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 pubsub = {}; | |
(function(q) { | |
var topics = {}, subUid = -1; | |
q.subscribe = function(topic, func) { | |
if (!topics[topic]) { | |
topics[topic] = []; | |
} | |
var token = (++subUid).toString(); | |
topics[topic].push({ | |
token: token, |
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 '../../../pixels/scss/common.scss'; | |
.#{$carousel-shop-the-look-class} { | |
.#{$scroller-class} { | |
position: relative; | |
display: flex; | |
flex-flow: column wrap; | |
// @include fit-in-viewport-height(2, 3, $hlwd-carousel-default-gutter, $hlwd-carousel-default-margin); | |
height: calc(100vw * #{$hlwd-image-product-aspect-values} * 2); |
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
//1. write a function whcih is able to handle 10 async calls serially | |
fun([ | |
new Promise(resolve => setTimeout(resolve(1), 5000)), | |
new Promise(resolve => setTimeout(resolve(2), 100)), | |
new Promise(resolve => setTimeout(resolve(3), 1500)), | |
new Promise(resolve => setTimeout(resolve(4), 2000)), | |
new Promise(resolve => setTimeout(resolve(5), 2500)) | |
]).then(console.log); | |
function fun(calls, cb) { |
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
#!/bin/bash #Explicitly tell shell this is a bash script | |
set -e #Exit as soon as any line in the bash script fails | |
set -x #Prints each command executed (prefix with ++) | |
#set -ex #Do both (for good practice) | |
brews=( | |
#caskroom/cask/brew-cask #for some casks like sublime-text3 - doesnt work | |
bash | |
#git | |
git-extras |
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
{ | |
"active":true, | |
"color":"grigio screziato", | |
"color_key":"color.112", | |
"first_activation":"15-10-21 13:40:49", | |
"family_sku":"HI122O03T", | |
"silhouette_code":"t_shirt_top", | |
"config_sku":"HI122O03T-C11", | |
"url_key":"hilfiger-denim-t-shirt-basic-grey-hi122o03t-c11", | |
"brand":{ |
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 { createStore, applyMiddleware } from 'redux'; | |
import thunk from 'redux-thunk'; | |
import { createTracker } from '../../redux-analytics'; | |
import eventBus from 'z-shop-event-bus'; | |
import rootReducer from '../../reducers'; | |
const TRACKING_CHANNEL = 'tracking:event'; | |
const tracker = createTracker((type, payload) => { | |
const trackingData = payload[1] || {}; |
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
{ | |
"name": "edutube", | |
"private": true, | |
"version": "0.1.4", | |
"description": "", | |
"directories": {}, | |
"scripts": { | |
"validate": "npm-run-all --parallel validate-webpack:*", | |
"validate-webpack:dev": "webpack-validator webpack.config.js --env.dev", | |
"validate-webpack:prod": "webpack-validator webpack.config.js --env.prod", |
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
Show hidden characters
{ | |
"presets": ["es2015", "react"], | |
"plugins": ["transform-object-rest-spread"] | |
} |
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
/* eslint-env node */ | |
const webpack = require('webpack'); | |
const resolve = require('path').resolve; | |
const HtmlWebpackPlugin = require('html-webpack-plugin'); | |
module.exports = env => { | |
const addPlugin = (add, plugin) => add ? plugin : undefined; | |
const ifProd = plugin => addPlugin(env.prod, plugin); | |
const removeEmpty = array => array.filter(i => !!i); |
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
/* | |
* Note. "selected size" is a Simple SKU | |
* | |
*/ | |
describe('When user first comes to /wishlist page', ()=> { | |
describe('and session header x-zalando-customer is missing', ()=> { | |
it('should be redirected to /login page', ()=> { | |
/*EX. | |
expect and evaluated result |