This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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; | |
} |
Link to these links: https://git.io/vKSVZ
Module 1:
- Run jenkins from war file:
jenkins -jar jenkins.war
- Run jenkins from docker:
docker run -d \
--restart unless-stopped \
--name jenkins \
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
clear | |
__green=$(tput setaf 2) | |
__red=$(tput setaf 1) | |
__reset=$(tput sgr0) | |
# return colored actual branch | |
__getActualBranch(){ |