This file contains 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
-> Vantagens de uso da nuvem: | |
- Trocar investimento em ativos por custos operacionais. | |
Custos tende a ser mais aderentes aos negócios. | |
- Benefício de escala massivo. | |
Quanto maior a estrutura, maior uso de uma estrutura robusta, mais barato deve se tornar o módulo. | |
- Parar de estimar/chutar a capacidade do data center. | |
Na nuvem, pela elasticidade, poderá escalar conforme a necessidade. |
This file contains 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
https://jgilfelt.github.io/AndroidAssetStudio/index.html | |
https://romannurik.github.io/AndroidAssetStudio/index.html | |
https://designer.gravit.io | |
https://zeplin.io |
This file contains 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
http://zofe.com.br | |
https://devnaestrada.com.br | |
http://hipsters.tech/ | |
https://www.lambda3.com.br/tag/podcast/ | |
https://mundopodcast.com.br/podprogramar/ | |
http://www.grokpodcast.com/ | |
http://www.codingblocks.net/ | |
http://thisdeveloperslife.com/ | |
This file contains 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
--- Find all schedules between two dates and id | |
db.getCollection('schedules').find({deviceId:'5CCF7FD6F728', time: { | |
$gte: ISODate("2017-08-24 18:14:14.000Z"), | |
$lt: ISODate("2017-08-24 18:14:14.000Z") | |
}}) | |
This file contains 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
Link de ferramentas para gestão de projetos ágil: | |
https://startupcuritiba.com.br/medologia-agil/ferramentas-gratuitas-para-gerenciamento-agil-de-projetos |
This file contains 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
- Comparação sobre PWA e Apps Nativos: https://medium.com/dev-channel/why-progressive-web-apps-vs-native-is-the-wrong-question-to-ask-fb8555addcbb | |
This file contains 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
for (Map.Entry<String,Integer> entry : testMap.entrySet()) { | |
entry.getKey(); | |
entry.getValue(); | |
} |
This file contains 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
new String(Files.readAllBytes(Paths.get("src", aFileName)))) | |
O retorno será uma string contendo todas as linhas do arquivo. |
This file contains 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
<link rel="import" href="../topeka-elements/category-icons.html"> | |
<link rel="import" href="../core-icon/core-icon.html"> | |
<link rel="import" href="../google-map/google-map-search.html"> | |
<link rel="import" href="../core-pages/core-pages.html"> | |
<link rel="import" href="../core-icons/core-icons.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> |
This file contains 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
<link rel="import" href="../topeka-elements/category-icons.html"> | |
<link rel="import" href="../core-icon/core-icon.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; |
NewerOlder