Skip to content

Instantly share code, notes, and snippets.

View jrioscloud's full-sized avatar

Jaime Rios jrioscloud

View GitHub Profile
@jrioscloud
jrioscloud / index.js
Created August 10, 2020 21:28
For of challenge
const usersArray = [
{
"id": 1,
"name": "Leanne Graham",
"username": "Bret",
"email": "[email protected]",
"address": {
"street": "Kulas Light",
"suite": "Apt. 556",
"city": "Gwenborough",
@jrioscloud
jrioscloud / configureStore.js
Last active January 14, 2025 14:55
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)
@jrioscloud
jrioscloud / 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');
@jrioscloud
jrioscloud / Contract Killer 3.md
Created February 11, 2016 05:35
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

@jrioscloud
jrioscloud / 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>