- Visão geral do controle de verso e git (15 mins)
- A sample git work flow (5 mins)
- Successful projects and their characteristics (5 mins)
- Recomendaçes (5 mins)
- Discussão and Q&A (15 mins)
- Git flow?
- Referências
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
JSON.stringify( | |
Object.keys(X.replace(/\n/g, ' ') | |
.split(" ") | |
.filter(x => x != "") | |
.filter(x => !['1','2','3','4','5', '6','7','8','9','0'].includes(x)).filter(x => x.length != 1) | |
.reduce((acc, word) => ({...acc, [word]: true}), {})) | |
) |
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
import { Injectable } from '@angular/core'; | |
import { HttpRequest, HttpResponse } from '@angular/common/http'; | |
import { of, throwError } from 'rxjs'; | |
import { BaseMockInterceptor, IMockResolve } from './base-mock.interceptor'; | |
// import { ClientsData } from './client-data'; | |
const AmParticipantsMockData = [{}]; | |
@Injectable() | |
export class AmParticipantsMock extends BaseMockInterceptor { |
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
// Definition for singly-linked list: | |
// function ListNode(x) { | |
// this.value = x; | |
// this.next = null; | |
// } | |
let last = false, | |
unified = false; | |
function mergeTwoLinkedLists(l1, l2, first = true) { | |
if(!l1){ |
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
var data = []; | |
permutation = (arr, prefix = []) => { | |
if(arr.length == 2){ | |
let comb1 = [...prefix], | |
comb2 = [...prefix]; | |
comb1.push(arr[0]); | |
comb1.push(arr[1]); | |
data.push(comb1); | |
comb2.push(arr[1]); | |
comb2.push(arr[0]); |
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
let info = {init: false}; | |
let run = word => { | |
info = { | |
word: word, | |
letters: word.split(''), | |
discoveries: [], | |
correct: 0, | |
errors: 0, | |
limit_errors: 5, | |
} |