Skip to content

Instantly share code, notes, and snippets.

View papaponmx's full-sized avatar

Jaime Rios papaponmx

View GitHub Profile
@papaponmx
papaponmx / index.js
Created August 10, 2020 21:28
For of challenge
const usersArray = [
{
"id": 1,
"name": "Leanne Graham",
"username": "Bret",
"email": "Sincere@april.biz",
"address": {
"street": "Kulas Light",
"suite": "Apt. 556",
"city": "Gwenborough",
@papaponmx
papaponmx / configureStore.js
Last active June 4, 2019 02:09
Introduction to Redux Observable
import { createStore, applyMiddleware } from 'redux';
import { createEpicMiddleware } from 'redux-observable';
import { rootEpic, rootReducer } from './modules';
const epicMiddleware = createEpicMiddleware(rootEpic);
export default function configureStore() {
const store = createStore(
rootReducer,
applyMiddleware(epicMiddleware)
@papaponmx
papaponmx / test.js
Created February 19, 2018 17:15
Selenium webdriver assertion with chai and ES6.
// Require chai.js expect module for assertions
const chai = require('chai');
const expect = require('chai').expect;
// Application Server
const serverUri = '0.0.0.0:3000';
// Official selenium webdriver testing setup
const webdriver = require('selenium-webdriver');
@papaponmx
papaponmx / Contract Killer 3.md
Created February 11, 2016 05:35 — forked from malarkey/Contract Killer 3.md
The latest version of my ‘killer contract’ for web designers and developers

Contract Killer

The popular open-source contract for web designers and developers by Stuff & Nonsense

  • Originally published: 23rd December 2008
  • Revised date: October 8th 2015
  • Original post

@papaponmx
papaponmx / Typing effect with SASS
Last active February 11, 2016 03:44
Playground
<div class="cover__container">
<h1 class="cover__text">Web Designer / Front End Developer</h1>
</div>