Skip to content

Instantly share code, notes, and snippets.

View adilsoncarvalho's full-sized avatar

Adilson Carvalho adilsoncarvalho

View GitHub Profile
@adilsoncarvalho
adilsoncarvalho / create-xlsx.js
Created May 27, 2018 12:17
Creating a xlsx file using the package xlsx
// More at: https://github.com/SheetJS/js-xlsx/blob/master/demos/server/express.js
import XLSX from 'xlsx';
// create a new workbook
const workbook = XLSX.utils.book_new();
// create a new worksheet
const worksheet = XSLX.utils.json_to_sheet([{ a: 1, b: false }]);
@adilsoncarvalho
adilsoncarvalho / LICENSE
Last active March 20, 2018 01:30
Goes back to master while pulling from origin and removing the local branches deleted on origin
MIT License
Copyright (c) 2018 Adilson Luiz Carvalho
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
@adilsoncarvalho
adilsoncarvalho / install.sh
Created February 26, 2018 13:58
All the Node lint packages for Visual Studio Code
#!/bin/bash
npm install -g \
eslint \
eslint-config-airbnb eslint-config-airbnb-base \
eslint-plugin-import eslint-plugin-jsx-a11y eslint-plugin-react \
babel-eslint
@adilsoncarvalho
adilsoncarvalho / README.md
Last active August 22, 2022 12:00
Deploying a firebase function from Bitbucket pipelines

Deploying functions from Bitbucket Pipelines

It's quite easy and the same process applies to all Firebase features with minor changes.

Acquire a deployment token

In order to deploy you'll need a deployment token (I named it FIREBASE_TOKEN) and it can be acquired by using the following command

firebase login:ci

@adilsoncarvalho
adilsoncarvalho / keybase.md
Created September 20, 2017 13:36
keybase.md

Keybase proof

I hereby claim:

  • I am adilsoncarvalho on github.
  • I am adilson (https://keybase.io/adilson) on keybase.
  • I have a public key ASDJwuIJbFAMN6GIf7DwlZMoUMAwePS1OWsUGdDSaIAPzwo

To claim this, I am signing this object:

@adilsoncarvalho
adilsoncarvalho / nginx.conf
Last active August 7, 2017 02:33
letsencrypt.org: forwarding acme challenge to another server
upstream target_service {
server [TARGET SERVICE NAME/IP AND PORT];
}
server {
# ... other stuff ...
location /.well-known/acme-challenge {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
@adilsoncarvalho
adilsoncarvalho / docker-compose.yml
Created August 4, 2017 16:46
Quick'n'dirty compose to run ruby & mysql
version: '3'
services:
app:
image: ruby:2.2.7
volumes:
- .:/app
ports:
- "3000:3000"
depends_on:
@adilsoncarvalho
adilsoncarvalho / bitbucket-pipelines.yml
Last active April 16, 2024 12:03
Bitbucket Pipelines deployment to a Google Container Engine configuration
options:
docker: true
pipelines:
branches:
master:
- step:
image: google/cloud-sdk:latest
name: Deploy to production
deployment: production
caches:
@adilsoncarvalho
adilsoncarvalho / Dockerfile
Created June 22, 2017 17:06
Dockerfile: multi-stage
# ---- Base Node ----
FROM ubuntu AS base
# install the core dependencies
RUN apt-get install -y my package list
# set working directory
WORKDIR /app
# copy project file
COPY Gemfile .
COPY Gemfile.lock
{
"extends": "airbnb-base"
}