Habr hasn't published any news in the last 24 hours.
Habr

News from Habr


Week's most reacted
16.09.2024 − 22.09.2024
Habr
dev_family @ Habr 1 place · 09/20/2024 05:27 EDT

React Native Splash Screen — support for different themes

Hi all! The dev.family team is in touch. In this article, we are sharing a short guide on how to install Splash Screen in a cross-platform app written in React Native with support for multiple themes.Splash screen is the first screen that users see before loading into the main application. This screen is perhaps the best way to make the name of your app, and in general, its entire name,... Read more ›

0

Fresh news
Other news
older that 24 hours
Habr
Makeman @ Habr 2 place · 03/28/2022 00:00 EDT

RIDDLES OF THE FAST FOURIER TRANSFORM

• The method of phase-magnitude interpolation (PMI)• Accurate measure of frequency, magnitude and phase of signal harmonics• Detection of resonancesThe Fast Fourier Transform (FFT) algorithm is an important tool for analyzing and processing signals of various nature.It allows to reconstruct magnitude and phase spectrum of a signal into the frequency domain by magnitude sample into the time domain, while the method is computationally optimized with modest memory consumption.Although there is... Read more ›

0

Habr
igorHab @ Habr 1 place · 03/26/2022 02:59 EDT

How does Rust treat Strings and Vectors internally

In Rust strings can be represented in two ways:a)       String type b)      String sliceString type:String type is defined as a struct of the following structure:Depending on arch (in my case x86 64bit it is 24byte){   pointer to the address where string characters are stored (8b)   capacity (8b)   length (8b)} Read more Read more ›

0

Habr
MasteR_GeliOS @ Habr 2 place · 03/25/2022 11:21 EDT

Enabling Apache Camel metrics in Spring Boot Actuator Prometheus

In this article I have described problems I have faced during integration Apache Camel with Spring Boot Actuator Prometheus for collecting metrics and my solution to solve this problem (which I haven't found over the internet). Read more Read more ›

0

Habr
Fotei @ Habr 3 place · 03/25/2022 09:05 EDT

Traffic mirroring through HPE Virtual Connect

In this article I'd like to describe different traffic mirroring options for HPE Virtual Connect modules. I try to answer two questions: "What options work and why?" and "How different traffic mirroring cases can be implemented?" Read more Read more ›

0

Habr
engineerdoc @ Habr 1 place · 03/16/2022 11:47 EDT

Creating a Weather Predictions App Using Flutter

This article describes how to develop a real-time weather prediction app in Flutter using the Tomorrow.io Weather API. The app consists of a single screen that displays the current weather and a 4-day daily forecast for a specific location. We’re creating this prediction app on Flutter because it is an open-source UI development kit, which means it can be integrated beautifully into desktop and mobile apps across various platforms, making... Read more ›

0

Habr
UWA4d @ Habr 1 place · 03/12/2022 20:24 EDT

In-depth Analysis of Unity Loading Module â…¡: Shader

Free Tutorials & GuidesContinuing from the previous article of In-depth Analysis of Loading Modules, in which we focused on the loading performance of mesh resources, we will discuss about the loading efficiency of Shader resources for you today.Resource Loading Performance Test CodeLike the test code proposed in the previous article, we will use the same one for the loading performance analysis of Shader resources. At the same time, we will... Read more ›

0

Habr
radneck @ Habr 2 place · 03/12/2022 02:40 EDT

Even shell scripts require unit tests

Once a upon a time I moved to brand new project. And without much thought, I decided to take DevOps responsibilities (after a long period of Frontend). Huge mono-repository (Angular and Node.js) gives rise to many specific problems. And this project was no exception. At the very beginning CI/CD duration was about 1.5h. And that was the biggest problem to take care of.But at first, I want to talk about... Read more ›

0

Habr
UWA4d @ Habr 1 place · 03/10/2022 22:41 EDT

Analysis of UE5 Rendering Technology: Nanite

After Epic released the UE5 technology demo at the beginning of 2021, the discussion about UE5 has never stopped. Related technical discussions mainly centered on two new features: global illumination technology Lumen and extremely high model detail technology Nanite. There have been some articles [1 ][2] analyzing Nanite technology in more detail. This article mainly starts from the RenderDoc analysis and source code of UE5, combined with some existing technical... Read more ›

0

Habr
brutto @ Habr 2 place · 03/10/2022 07:24 EDT

dwferqwfg

erwgwet g3rtbh Читать далее Read more ›

0

Habr
Boozlachu @ Habr 1 place · 03/09/2022 01:00 EDT

Introducing into calamares bootloader

OverviewSometimes all of us need to make a graphical installer for one's own linux distro. It goes without saying that you are able to use a distro-specific installer like Anaconda for RedHat-based or DebianInstaller for debian-based. On the other hand Calamares is a graphical installer which is not aligned with only one package manager.I want to share my experience how to make a universal install solution with GUI. I did... Read more ›

0

Habr
UWA4d @ Habr 1 place · 03/07/2022 22:18 EDT

UE5 Lumen Implementation Analysis

Lumen is UE5’s GI system, it is different from the traditional real-time GI which only includes the contribution of indirect diffuse reflection. It also includes indirect diffuse reflection and indirect highlight, providing a new set of complete indirect lighting. Lumen supports both hardware-based RTX and software-based Trace algorithms. The starting point of this article is that Lumen GI uses the process, algorithm, and data structure analysis of indirect diffuse reflection... Read more ›

0

Habr
Carduelis @ Habr 2 place · 03/07/2022 05:29 EDT

[Translation] URL Search Params

Somehow I saw code in the project of a neighboring team that generated a string with URL parameters for subsequent insertion into the iframesrc attribute.This article may seem superfluous, obvious or too simple, but since this occurs in wildlife, you should not be silent about it, but rather share best-practices. Read more Read more ›

0

Habr
UWA4d @ Habr 1 place · 03/03/2022 02:30 EDT

Unity Performance Optimization â…¥: Resource Memory Leak

Today, we will share some knowledge points related to resource memory leak. A memory leak is the most common issue that we continuously see and also are afraid of. What is the reason behind it? Because we can’t predict the extent of the leak before we locate the leak bottleneck, we had no idea whether it will burst out at a certain moment on the line. We have received feedback... Read more ›

0

Habr
miti1777 @ Habr 1 place · 02/24/2022 09:16 EDT

Alternate of Packed-Binary Time Format

The Real-Time Clock (RTC) Calendar Registers in STM32 microcontrollers implemented in Binary Code Decimal format (BCD) i. e., every two digits are represented by one byte (low digit in 0-3 bits and high digit 4-7 bits). At least there are 5 bytes required to store date and time data in a such format. There are cases when memory allocation for time stamp might become critical, e. g., the events log... Read more ›

0

Habr
ENCRY @ Habr 2 place · 02/23/2022 10:25 EDT

The Cryptocurrency Bandwagon

The spread of cryptocurrencies contributed to the development of many solutions based on a distributed ledger technology (blockchain). Although the scope of these solutions varies, most of them have the same basic set of security services, i.e. confidentiality, authenticity, and integrity. These features are granted by the practical applications of public key cryptography, in particular,  digital signature (DS). But unlike many other applications of public key cryptography, cryptocurrency networks do... Read more ›

0

Habr
kaze_no_saga @ Habr 2 place · 02/23/2022 08:00 EDT

[Translation] Queries in PostgreSQL. Statistics

In the last article we reviewed the stages of query execution. Before we move on to plan node operations (data access and join methods), let's discuss the bread and butter of the cost optimizer: statistics.Dive in to learn what types of statistics PostgreSQL collects when planning queries, and how they improve query cost assessment and execution times. Read more Read more ›

0

Habr
ykopylovski @ Habr 1 place · 02/18/2022 19:33 EDT

Enterprise Identity Management Processes. Part I: Employee on-boarding

This is the first in series of articles dedicated to detailed overview of processes and components of enterprise identity and access management (IAM). These articles are designed to help technical architects and system designers to better understand what is involved in complex business processes which drive identity management and provide detailed review of all critical components.Solid understanding of identity management business processes before implementation of a new IAM system very... Read more ›

0

Habr
Andrey2008 @ Habr 2 place · 02/18/2022 09:23 EDT

How PVS-Studio prevents rash code changes, example N4

If you regularly use a static code analyzer, you can save time on guessing why the new code doesn't work as planned. Let's look at another interesting error — the function broke during refactoring, and no one noticed that. No one — except for PVS-Studio that can automatically scan the project and email the report to us. Read more → Read more ›

0

Habr
miti1777 @ Habr 3 place · 02/18/2022 05:04 EDT

Monocrystalline solar cell simulation

In the green energy field, the solar panels composed of bendable solar cells tend to significantly increase in popularity last time. The difficulty during the designing of the different devices (such as solar chargers, MPPT-controllers) emerges because of the strong lack of technical information about this kind of solar cell.  In this article, the equivalent scheme of the bendable solar produced by the Sunpower company - Maxeon gen 5 and... Read more ›

0

Habr
foto_shooter @ Habr · 02/18/2022 02:14 EDT

Why does my app send network requests when I open an SVG file?

You decided to make an app that works with SVG. Encouraged by the enthusiasm, you collected libraries and successfully made the application. But suddenly you find that the app is sending strange network requests. And data is leaking from the host-machine. How so? Read more → Read more ›

0

Most popular sources

  • You see 414 news out of 414.
  • Sources 63 out of 63.
Business Insider 63% 22
CNET 6% 1
GSMArena.com 6% 5
Mashable 4% 3
Tom's Hardware 4% 0
View sources »

LIKE us on Facebook so you won't miss the most important news of the day!

29.09.2024 01:29
Last update: 01:05 EDT.
News rating updated: 08:20.

What is Times42?

Times42 brings you the most popular news from tech news portals in real-time chart.
Read about us in FAQ section.


Times42 © 2024