Skip to content

Instantly share code, notes, and snippets.

View marcuspereiradev's full-sized avatar

Marcus Pereira marcuspereiradev

  • Dimensa Tecnologia
  • Rio de Janeiro, Brazil
View GitHub Profile
@efrapp
efrapp / howto-setup-sidekiq-on-heroku.md
Last active December 12, 2023 12:32
Steps to setup Sidekiq on Heroku

Setup Sidekiq for Heroku

Install Heroku Redis Add-on

Option 1: Using the dashboard

Go to the Resources tab and in the Add-ons section type Heroku Redis in the search field. It will appear in the search list. Click on it and a modal will show up to install it, click in the Provision button to start the installation.

@diego3g
diego3g / settings.json
Last active May 23, 2024 20:46
VSCode Settings (Updated)
{
"workbench.startupEditor": "newUntitledFile",
"editor.fontSize": 14,
"editor.lineHeight": 1.8,
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.rulers": [80, 120],
"extensions.ignoreRecommendations": true,
"typescript.tsserver.log": "off",
"files.associations": {
@PurpleBooth
PurpleBooth / README-Template.md
Last active May 24, 2024 06:43
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@yoavniran
yoavniran / ultimate-ut-cheat-sheet.md
Last active May 16, 2024 13:16
The Ultimate Unit Testing Cheat-sheet For Mocha, Chai, Sinon, and Jest
@mauricioaniche
mauricioaniche / adivinhacao.c
Last active August 10, 2023 03:15
Código final do jogo de adivinhação
// incluindo as bibliotecas
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
// definindo as constantes
#define NUMERO_DE_TENTATIVAS 3
int main() {
@leocomelli
leocomelli / git.md
Last active May 23, 2024 17:31
Lista de comandos úteis do GIT

GIT

Estados

  • Modificado (modified);
  • Preparado (staged/index)
  • Consolidado (comitted);

Ajuda