Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View gamezcua1's full-sized avatar
:shipit:
🧪

Gerald Amezcua gamezcua1

:shipit:
🧪
View GitHub Profile
" vim-bootstrap
f
"*****************************************************************************
"" Vim-PLug core
"*****************************************************************************
let vimplug_exists=expand('~/./autoload/plug.vim')
call plug#begin(expand('~/./plugged'))
Plug 'wakatime/vim-wakatime'
" vim-bootstrap
f
"*****************************************************************************
"" Vim-PLug core
"*****************************************************************************
let vimplug_exists=expand('~/./autoload/plug.vim')
let g:vim_bootstrap_langs = "elixir,erlang,go,haskell,html,javascript,python,ruby"
let g:vim_bootstrap_editor = "" " nvim or vim
@gamezcua1
gamezcua1 / Team1.java
Last active August 29, 2018 20:24
A simple demostration of the System class
import java.util.Properties;
import java.lang.*;
import java.io.*;
class Obj {
static boolean recicladorActivo = false;
static boolean flagSalida = false;
static int objCreados = 0;
static int objFinalizados = 0;
static int objFinalizadosConSalidaATrue = 0;
@gamezcua1
gamezcua1 / first_steps.js
Created July 30, 2018 04:04
Redux reducer explained
/**
* ¿Qué es un reducer?
* Como ya te había dicho el reducer tiene varias funciones que tiene que realizar
* 1.- Modificar el storage
* 2.- Siempre debe de regresar un estado del storage
*/
/**
* Como ya te mencioné un reducer SIEMPRE debe de regresar un estado del storage,