View Resumo webinar AWS
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. |
View Design Android.txt
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 |
View Podcast e Blogs TI.txt
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/ | |
View gist:9a49bc9ada200ee21f1b00b342f423b8
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") | |
}}) | |
View gist:c6f7ae74743de103143e899f463429f3
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 |
View Links sobre Dev Mobile
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 | |
View gist:03d171b5672d72654277d4d8e6824bd8
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(); | |
} |
View Forma rápida para leitura de um arquivo - Java
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. |
View designer.html
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> |
View designer.html
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