Skip to content

Instantly share code, notes, and snippets.

View rcoproc's full-sized avatar
🙏
I pray to God for our great protection in these difficult times!

Ricardo Oliveira rcoproc

🙏
I pray to God for our great protection in these difficult times!
View GitHub Profile

My VIM superfast Commands

Search and Replace

  1. Search and replace an entire file:
:%s/search/replace/g
:%s/search/replace/gc          # with confirm options
:%s/Kang\|Kodos/alien/gc       # search many terms(Kang or Kodos)
:'<,'>s/foo/bar/g              # search within visual selection
@rcoproc
rcoproc / cheatsheet-elasticsearch.md
Created February 25, 2020 20:19 — forked from ruanbekker/cheatsheet-elasticsearch.md
Elasticsearch Cheatsheet : Example API usage of using Elasticsearch with curl
import Vue from 'vue';
const Api = require('./api');
document.addEventListener("DOMContentLoaded", () => {
var app = new Vue({
el: '#app',
components: {
'task': {
props: ['task'],
import axios from 'axios';
export function listTasks() {
return axios.get('/tasks.json')
.then(function(response){
return response.data;
})
}
export function createTask(task) {
@rcoproc
rcoproc / Colorpicker.js
Last active February 24, 2020 06:00
Exemplo de um componente React com o componente react-color(ColorPicker)
import React from "react"
import PropTypes from "prop-types"
import { SketchPicker } from "react-color"
class Colorpicker extends React.Component {
constructor(props) {
super(props);
@rcoproc
rcoproc / Article.js
Last active February 24, 2020 05:59
Exemplo de um componente(com auto refresh) React com parâmetros Rails
import React from "react"
import PropTypes from "prop-types"
import Timestamp from "react-timestamp"
class Article extends React.Component {
render () {
return (
<React.Fragment>
<div className="article-title">
<a href={this.props.path}>{this.props.title}</a>
@rcoproc
rcoproc / helpful-docker-commands.sh
Created February 23, 2020 06:35 — forked from garystafford/helpful-docker-commands.sh
My list of helpful docker commands
###############################################################################
# Helpful Docker commands and code snippets
###############################################################################
### CONTAINERS ###
docker stop $(docker ps -a -q) #stop ALL containers
docker rm -f $(docker ps -a -q) # remove ALL containers
docker rm -f $(sudo docker ps --before="container_id_here" -q) # can also filter
# exec into container
@rcoproc
rcoproc / docker-help.md
Created February 23, 2020 06:33 — forked from bradtraversy/docker-help.md
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@rcoproc
rcoproc / Dockerfile
Created February 23, 2020 06:25 — forked from nicbet/Dockerfile
Elixir 1.9 Releases Alpine Linux Docker Multi-Stage Build
# ---- Build Stage ----
FROM erlang:22-alpine AS app_builder
# Set environment variables for building the application
ENV MIX_ENV=prod \
TEST=1 \
LANG=C.UTF-8
# Fetch the latest version of Elixir (once the 1.9 docker image is available you won't have to do this)
RUN set -xe \