Skip to content

Instantly share code, notes, and snippets.

@lcs-felix
lcs-felix / ack.c
Created June 3, 2020 10:26 — forked from Sebbyastian/ack.c
Ackermann function in recursive and non-recursive form
#include <assert.h>
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
int ack_recursive(int m, int n) {
if (m == 0) {
return n + 1;
}

Arquitetura

Introdução a Arquitetura

Performance Java

Java Performance the definitive guide

Java performance Tunning

Design e Qualidade do código

Clean Coder

Command Query Responsibility Segregation (CQRS)

Data Driven Design

Event Driven

Event Sourcing

@lcs-felix
lcs-felix / links.md
Created August 27, 2018 12:26 — forked from g0t4/links.md
Starting Point Files for Jenkins2 Getting Started course
@lcs-felix
lcs-felix / README.md
Created July 9, 2018 10:50 — forked from alexandreaquiles/README.md
Field selectors em uma API REST

Imagine que queremos obter nome e email de uma pessoa na API do Linkedin. Chamamos:

GET http://api.linkedin.com/v2/people/123

Teríamos como resposta:

<person uri=“urn:linkedin:v2:people/123” key=“123”>
  <id>123</id>
 Reid Hoffman
#!/bin/bash
clear
__green=$(tput setaf 2)
__red=$(tput setaf 1)
__reset=$(tput sgr0)
# return colored actual branch
__getActualBranch(){