Skip to content

Instantly share code, notes, and snippets.

View santospatrick's full-sized avatar
👽
Javascripting

Patrick Santos Bitonti Teixeira santospatrick

👽
Javascripting
View GitHub Profile
// .hyper.js
// See https://hyper.is#cfg for all currently supported options.
// After installing hyper, run the following:
// hyper i hyper-dracula hypercwd hyper-active-tab
module.exports = {
config: {
fontSize: 18,
fontFamily: '"Meslo LG M for Powerline", Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace',
fontWeight: 'normal',
@santospatrick
santospatrick / setup-mac.sh
Last active December 5, 2024 20:00
MacOSX Setup for Development
#!/usr/bin/env bash
# 1. Run this script file
# bash <(curl -Ls https://bit.ly/3swaoUr)
# Homebrew & Apps
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/$USER/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
brew update
@santospatrick
santospatrick / exercises.js
Last active September 7, 2021 21:10
Javascript simples immutable data structure exercises
// ===================
// Array Exercises
// ===================
// Reference: https://pokeapi.co/api/v2/pokemon?limit=10
const arr = [
{
name: 'bulbasaur',
url: 'https://pokeapi.co/api/v2/pokemon/1/',
base_experience: 64,
// Sagas
import { call, put } from 'redux-saga/effects'
import api from 'services/api'
export function* fetchUser(action) {
const { data } = yield call(api.get, `/user/${action.id}`)
yield put({ type: "@user/FETCH_SUCCEEDED", data })
}
// Thunks
// ------------------
// SomeComponent.js
// ------------------
function SomeComponent() {
...
const getUser = id => {
dispatch({ type: '@user/FETCH_REQUESTED', id })
}
...
}
@santospatrick
santospatrick / service.js
Created May 18, 2019 21:07 — forked from paulsturgess/service.js
An example Service class wrapper for Axios
import axios from "axios";
class HttpService {
constructor() {
const token = window.localStorage.getItem("token");
const service = axios.create({
baseURL: process.env.REACT_APP_API_URL,
headers: token
? {
Authorization: `Bearer ${token}`,
@santospatrick
santospatrick / pre-commit
Created January 4, 2019 13:49
Precommit hook for eslint (does not auto fix) on staged files (.vue, .js)
#!/bin/sh
STAGED_FILES=$(git diff --cached --name-only --diff-filter=ACM | grep -E ".vue$|.js$")
ESLINT="$(git rev-parse --show-toplevel)/node_modules/eslint/bin/eslint.js"
if [[ "$STAGED_FILES" = "" ]]; then
exit 0
fi
PASS=true
@santospatrick
santospatrick / filterList.js
Last active October 2, 2018 13:52
Filter array of objects by any attribute and return a new filtered array
// ES6
import removeAccents from 'remove-accents';
/**
* Filter {@link list} based on any attribute by {@link searchString}
* and return a new one
* @param {string} searchString
* @param {array<*>} list
* @returns {array<*>} new filtered list
*/
@santospatrick
santospatrick / AndroidFileStorage.js
Created July 1, 2018 21:39 — forked from robwalkerco/AndroidFileStorage.js
An alternative redux-persist storage for React Native Android to get around the database item size limit - https://github.com/rt2zz/redux-persist/issues/284
/**
* @flow
*/
import RNFetchBlob from 'react-native-fetch-blob'
const DocumentDir = RNFetchBlob.fs.dirs.DocumentDir
const storagePath = `${DocumentDir}/persistStore`
const encoding = 'utf8'