Skip to content

Instantly share code, notes, and snippets.

View imjul1an's full-sized avatar

Julian U. imjul1an

View GitHub Profile
@imjul1an
imjul1an / pubsub-simple.js
Created July 6, 2017 22:18 — forked from fatihacet/pubsub-simple.js
Simple PubSub implementation with JavaScript - taken from Addy Osmani's design patterns book -
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,
@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);
//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) {
@imjul1an
imjul1an / env_setup.sh
Last active April 18, 2018 13:30
Setup env on a fresh machine
#!/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
@imjul1an
imjul1an / attr.js
Last active September 7, 2016 16:06
{
"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":{
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] || {};
{
"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",
{
"presets": ["es2015", "react"],
"plugins": ["transform-object-rest-spread"]
}
/* 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);
/*
* 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