Posts
Daniel Padua Blog
Cancel

Hosting a static website in Azure via Portal

In this article I’ll show how easy is to host and deploy a static web application (that doesn’t require server-side processing) to Azure’s infraestructure making use of Azure Storage and deliver...

Understanding Protocol Buffers — protobuf

Intro Protocol Buffers (protobuf) is a method of serializing structured data which is particulary useful to communication between services or storing data. It was designed by Google early 2001 (but...

Introduction to Azure Functions + Vscode

Intro As a developer I was able to notice some significant transformation in the IT market, for instance: A big migration movement from structured to object oriented programming paradigm. Mor...

Using Homebrew for macOS

Intro MacOS is an operational system based on Unix kernel, and despite Apple provides an AppStore like some sort of package manager, it lacks a lot of important stuff, specially if you are an adva...

Using Chocolatey for Windows

Intro Well, let’s begin with the basic question: “What would Chocolatey be?”. Just as simple as the question, is the answer: “It is a package manager developed for Windows”. Yes, we have now (not...

Java Spring Boot + IntelliJ IDEA

Intro To those who develop in java nowadays, it’s almost impossible to miss Spring framework and more specifically Spring Boot. Using this development stack, we gain more productivity and agility f...

Java Spring Boot + Eclipse

Intro To those who develop in java nowadays, it’s almost impossible to miss Spring framework and more specifically Spring Boot. Using this development stack, we gain more productivity and agility ...

Java + Lombok

Intro I always heard comments from other developers things like: “Java is a very verbose language”, or Hello World line count comparison between Java vs Other X Language. And I also think that this...

Java Spring Boot + Vscode

To learn how to configure a development environment for .NET core with vscode see: Vscode + ASP.NET Core: Setup development environment. Intro I’ve been work a lot with Java lately and as most of...

EFCore: Implementing a multi-environment DesignTimeDbContextFactory

Intro For those who already worked with Entity Framework Core using Code-First approach, knows that Migrations was a really good way to “version” the database structure of your project or service....