Understanding Java’s Consumer, Supplier and Predicate
Functional programming in Java in a better way.
Traveler, Full Stack Developer, Triathlete from Somewhere
Functional programming in Java in a better way.
Pandas é uma biblioteca open source, licenciada pelo BSD, que fornece estruturas de dados de alto desempenho, fáceis de usar e ferramentas de análise de dados para a linguagem de programação Python.
Como iniciar a carreira de Cientista de Dados com Python?
Python has several artithmetic operators: +
, -
, *
, /
, %
, **
, //
.
console.xxx
is a great way to debug the code. I know that we could use a debug tool, but I prefer console. So let’s see some useful hint about it.
Array instances inherit from Array.prototype
. As with all constructors, you can change the constructor’s prototype object to make changes to all Array instances. For example, you can add new methods and properties to extend all Array objects. This is used for polyfilling, for example.
If the first line of a script file starts with #!
, it is known as a “shebang” line. Linux and other Unix like operating systems have native support for such lines and they are commonly used on such systems to indicate how a script should be executed. This launcher allows the same facilities to be used with Python scripts on Windows.
O target='_blank'
é muito usado quando queremos abrir um link em outra aba. Apenas não o use sozinho por questões de segurança.
Quem nunca usou o console.log
para depurar um código e ver o valor daquela variável ou até mesmo para checar se uma função foi chamada devidamente? 🙈
Como publicar seu app JS no Firebase usando a ferramenta de Integração Contínua Travis CI
O GitHub é uma ótima ferramenta não só para repositório de código mas também para publicar nossos apps/websites. Veja como é fácil publicar lá.
O Firebase é uma plataforma para desenvolvimento mobile e web do Google. Com ela, você pode desenvolver apps de qualidade rapidamente. Neste post, vamos focar na publicação gratuita.