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
## GAE
From GcpAppEngineServiceSample SELECT latest(flex.cpu.Utilization), latest(flex.cpu.ReservedCores) WHERE entityName LIKE 'integration-auth.%'
From GcpAppEngineServiceSample SELECT latest(system.memory.UsageBytes), latest(system.Instances) WHERE entityName LIKE 'integration-auth.%'
From GcpAppEngineServiceSample SELECT latest(system.memory.UsageBytes / 1e9), latest(system.Instances) WHERE entityName LIKE 'integration-auth.%'/B
## Transactions
From transaction select count(****) where appName = 'Integration Auth (Production)'
from transaction select count(*) where appName = 'Integration Auth (Production)' timeseries
from transaction select count(*) where appName = 'Integration Auth (Production)' timeseries compare with 1 week ago
from transaction select count(*) where appname = 'Integration Auth (Production)' timeseries facet request.method
@rcoproc
rcoproc / stimulus.md
Created July 23, 2020 14:35 — forked from mrmartineau/stimulus.md
Stimulus cheatsheet
@rcoproc
rcoproc / nginx.conf
Created June 10, 2020 01:50 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@rcoproc
rcoproc / comments_controller.rb
Created March 24, 2020 17:42 — forked from samiron/comments_controller.rb
Sample Rails Controller
class CommentsController < ApplicationController
# GET /comments
# GET /comments.json
def index
@comments = Comment.all
respond_to do |format|
format.html # index.html.erb
format.json { render json: @comments }
end
@rcoproc
rcoproc / alias_matchers.md
Created February 27, 2020 17:16 — forked from JunichiIto/alias_matchers.md
List of alias matchers in RSpec 3

This list is based on aliases_spec.rb.

You can see also Module: RSpec::Matchers API.

matcher aliased to description
a_truthy_value be_truthy a truthy value
a_falsey_value be_falsey a falsey value
be_falsy be_falsey be falsy
a_falsy_value be_falsey a falsy value
@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
@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 \
@rcoproc
rcoproc / new_rails_app.md
Created February 10, 2020 04:24 — forked from chair28980/new_rails_app.md
New rails 6 app with postgresql and heroku deployment