Skip to content

Instantly share code, notes, and snippets.

# This is Git's per-user configuration file.
[user]
# Please adapt and uncomment the following lines:
name = José Lucas
email =
[merge]
tool = bcompare
[mergetool "bcompare"]
trustExitCode = true
[diff]
" Must come first because it changes other options
set nocompatible
" [vim-plug] Load plugins
call plug#begin()
Plug 'dracula/vim', { 'as': 'dracula' }
Plug 'junegunn/vim-easy-align'
Plug 'pangloss/vim-javascript'
Plug 'mxw/vim-jsx'
Plug 'tpope/vim-bundler'
@zevolution
zevolution / .zshrc
Last active December 28, 2020 13:06
# 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="/home/SEU-USUARIO/.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
@zevolution
zevolution / .hyper.js
Last active September 23, 2020 02:36
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
hyperTabsMove: {
moveLeft: 'ctrl+shift+pagedown',
moveRight: 'ctrl+shift+pageup'
},
@zevolution
zevolution / simple-register-api-insomnia.json
Last active February 18, 2021 18:49
This is an insomnia file to use simple-register API
{
"_type":"export",
"__export_format":4,
"__export_date":"2020-06-02T22:24:28.305Z",
"__export_source":"insomnia.desktop.app:v7.1.1",
"resources":[
{
"_id":"req_9c06effecf1a4a85b2f8be3b0fc45ace",
"authentication":{
@zevolution
zevolution / keyboards-markup.md
Created June 28, 2020 19:10
Keyboard markup format to insert in your README.md

Ctrl + Alt + F3

@zevolution
zevolution / vscode-settings.json
Last active August 6, 2021 01:37
VSCode Settings
{
"editor.fontSize": 14,
//"editor.lineHeight":24,
"editor.fontFamily":"Fira Code",
"editor.fontLigatures":true,
// Aplica linhas verticais para lembrar de quebrar linha em códigos muito grandes
"editor.rulers": [
80,
120
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+shift+down",
"command": "-editor.action.insertCursorBelow",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+up",
"command": "-editor.action.insertCursorAbove",
@zevolution
zevolution / postman-jsonpath-visualizer.html
Created July 22, 2020 17:48
Visualizer to Postman using JSONPath
let template = `
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/jsonpath.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script>
</head>
<body>
<div>
<div>
<input id="filter" style="width:450px;" type="text" placeholder="Example query: $..name.first">
@zevolution
zevolution / mirth_setup.md
Last active July 7, 2023 08:07
Configuração do servidor NextGen Connect (anteriormente conhecido como Mirth Connect)

NextGen Connect (formerly known as Mirth Connect) Server Setup

Create a VM running Ubuntu. Use a modern version.

Great thanks for the original guide: https://gist.github.com/jgautsch/9157402

# Update Ubuntu
sudo apt-get update

# Upgrade Ubuntu
sudo aptitude upgrade