Daily Shaarli

All links of one day in a single page.

September 21, 2023

Intel pitches the 'AI PC' at software developer event | Reuters

"Vemos la PC de IA como un momento de cambio radical en la innovación tecnológica", dijo Gelsinger.

Un nuevo Intel ( INTC.O ) el chip que vence en diciembre podrá ejecutar un inteligencia artificial generativa chatbot en una computadora portátil en lugar de tener que acceder a los centros de datos en la nube para obtener energía informática, dijo la compañía el martes.

Schedule Exact Alarms with AlarmManager on Android

Exact Alarm is essential when your app requires a time-sensitive task to execute. InExact alarm depends on system optimization and exact alarm guarantee that it will be triggered at a specific time.

From Official doc:

InExact :

When an app sets an inexact alarm, the system delivers the alarm at some point in the future.

Exact:

The system invokes an exact alarm at a precise moment in the future.

Work Manager in Android

WorkManager is a special Android component that can execute long-running tasks even when the host Android application is in the background. With WorkManager you can use different strategies to ensure successful task completion, specify various execution constraints (e.g. execute only when connected to Wi-Fi), create tasks chains and more.

In this article, I’ll describe the high-level rationale behind WorkManager and then show you how to integrate this useful component into Android application.