Skip to content

Instantly share code, notes, and snippets.

View j33n's full-sized avatar
💭
👨🏽‍💻

Jean Abayo j33n

💭
👨🏽‍💻
View GitHub Profile
@j33n
j33n / demo.gif
Last active April 28, 2023 20:59
Multi Image Upload using Remix
demo.gif
@j33n
j33n / README.md
Created July 5, 2021 01:04
Spring Initializer Unzip, Open, and Delete(start.spring.io)
@j33n
j33n / cloudSettings
Last active March 11, 2020 16:49
Visual Studio Code Settings Sync Gist
{"lastUpload":"2019-05-22T13:03:28.310Z","extensionVersion":"v3.2.9"}
@j33n
j33n / 2019_javascript_trends.md
Last active January 14, 2019 06:42
Javascript topics that might interest you in 2019
@j33n
j33n / Jean's ZSH Config
Created October 23, 2018 11:35
A Config I use for my Oh-my-zsh, requires having awesome-fontconfig, POWERLEVEL9k, iTerm
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH="/Users/jeanabayo/.oh-my-zsh"
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
@j33n
j33n / index.js
Created April 11, 2018 13:25
In case you are trying to get up and running with react-apollo
import React from "react";
import ReactDOM from "react-dom";
import { ApolloClient } from "apollo-client";
import { ApolloProvider, Query } from "react-apollo";
import { HttpLink } from "apollo-link-http";
import { InMemoryCache } from "apollo-cache-inmemory";
import gql from "graphql-tag";
import registerServiceWorker from "./registerServiceWorker";
const client = new ApolloClient({
@j33n
j33n / gist:bdc95bcbfdd61afe3787b19213e73d02
Created February 15, 2018 13:34
Testing component with Redux-persist failing
import React, { Component } from "react";
// For Routing
import { Switch, Route } from "react-router-dom";
import { Provider } from "react-redux";
import { ConnectedRouter as Router } from "react-router-redux";
import configureStore from "./instance/configureStore";
import { PersistGate } from "redux-persist/lib/integration/react";