Showing items from Web and Mobile Technology

post-thumb

Gemini, but the other one

Since the end of 2023, there has been constant talk about Google Gemini and its potential importance in the IT landscape. So I thought I should take an interest in Gemini, but since I don’t like to do things like everyone else, I’m going to focus on a Gemini that I’ve had on my radar for a few years: The Gemini Protocol, and you’ll see… it has nothing to do with Google.

Read more Details

How to build a dynamic micro-frontend architecture in React?

First of all, what is this Micro-frontend thing?

Alright, let’s get into it – Micro-Frontend Architecture, a game-changer in web development. Say goodbye to those bulky monolithic structures we’re all tired of. Micro-Frontend Architecture breaks down the frontend into smaller, more manageable chunks. It’s like breaking a big rock into smaller stones – easier to handle, right?

Read more Details
post-thumb

Flutter: native cross-platform framework for desktop, mobile and web

Introduction

Nowadays, apps are everywhere and we can find an app for almost everything. These apps can run on mobile, on the web browser or on the desktop. We can find apps that target a single system and ones that run on multiple systems. On the developer’s side, targeting multiple systems can be achieved in different ways: write an app for each targeted system using the native SDKs, create a progressive web app (PWA) or use a cross-platform framework. The second and third ways allow to share a single codebase, and thus, reduce the quantity of code and technologies to learn. The main different between a PWA and a cross-platform app is that the former has access to only the browser’s API while the latter has access to the APIs provided by the native SDKs. Among the many cross-platform frameworks available, one seems to attract a lot of developers, which is Flutter .

Read more Details