Repositório do projeto: https://github.com/fdaciuk/conduit-api
Especificação da API: https://gothinkster.github.io/realworld/docs/specs/backend-specs/introduction
// Write a script that creates an array with 10000 random words between 3 and 5 | |
// characters, and returns the number of words that are palindromes in that | |
// array. Notes: The code needs to be in javascript You’ll need to return just | |
// the number of words. | |
console.log(main()); | |
function main() { | |
return Array.from({ length: 10_000 }) | |
.map(RandomAlphabeticString(3, 5)) |
Repositório do projeto: https://github.com/fdaciuk/conduit-api
Especificação da API: https://gothinkster.github.io/realworld/docs/specs/backend-specs/introduction
@rafaels88 perguntou no slack do trainingcenter o seguinte:
Aos programadores mais experientes, preciso da ajuda de vocês:
To afim de fazer um video sobre coisas que eu faria diferente em relação aos meus anos como programador,
profissionalmente. Quero ajudar as pessoas que estão iniciando na carreira, quero ajudar quem já tá 3
anos e tá perdido, quero ajudar quem tá ha 10 anos trabalhando mas tbm ta perdido...
@font-face { | |
font-family: SegoeUI; | |
src: | |
local("Segoe UI Light"), | |
url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/light/latest.woff2) format("woff2"), | |
url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/light/latest.woff) format("woff"), | |
url(//c.s-microsoft.com/static/fonts/segoe-ui/west-european/light/latest.ttf) format("truetype"); | |
font-weight: 100; | |
} |
Possible values for ext-name: | |
bcmath | |
bz2 | |
calendar | |
ctype | |
curl | |
dba | |
dom | |
enchant |
(function() { | |
var timeSeconds = 0; | |
var timestampDivList = document.querySelectorAll(".timestamp"); | |
for(var i = 0; i < timestampDivList.length; i++) { | |
var timestampDiv = timestampDivList[i]; |
<script type="text/javascript"> | |
PrimeFaces.locales['pt'] = { | |
closeText: 'Fechar', | |
prevText: 'Anterior', | |
nextText: 'Próximo', | |
currentText: 'Começo', | |
monthNames: ['Janeiro','Fevereiro','Março','Abril','Maio','Junho','Julho','Agosto','Setembro','Outubro','Novembro','Dezembro'], | |
monthNamesShort: ['Jan','Fev','Mar','Abr','Mai','Jun', 'Jul','Ago','Set','Out','Nov','Dez'], | |
dayNames: ['Domingo','Segunda','Terça','Quarta','Quinta','Sexta','Sábado'], | |
dayNamesShort: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'], |