Habr

News from Habr


Fresh news
Other news
older that 24 hours
Habr
stelin @ Habr 1 place · 08/06/2023 23:47 EDT

Openjob 1.0.6 released, more powerful and intelligent task scheduling framework

Openjob is a new  distributed task scheduling framework based on Akka architecture. Supports multiple cronjob, delay task, workflow, lightweight distributed computing, unlimited horizontal scaling, with high scalability and fault tolerance. Also has complete management, powerful alarm monitoring, and support multiple languages Read more Read more

11

Habr
serenaryder @ Habr · 08/06/2023 16:07 EDT

Redefining the VOD OTT Experience in 2023: A Glimpse into the Future of Digital Entertainment

In the rapidly evolving landscape of digital entertainment, the year 2023 has witnessed a profound transformation in Video On Demand (VOD) Over-The-Top (OTT) platforms. These platforms have redefined how audiences access and consume content, introducing cutting-edge technologies and innovative features that have revolutionized the entertainment industry.Embracing Augmented Reality (AR) and Virtual Reality (VR)In 2023, VOD OTT platforms have embraced AR and VR technologies to provide viewers with immersive a Read more

0

Habr
Leschev @ Habr 1 place · 08/05/2023 12:54 EDT

LeetCode 2532 (Hard++, Extra Category, Amazon). Time to Cross a Bridge

Hard++, Extra Category.Amazon.Overflow checks have been taken into consideration. The maximum time to move a box is at most 4 * 1000 (four steps to move the box, each taking 1000 time). With at most 1e4 boxes, the total time is at most 4e7, ensuring the solution is safe. Read more Read more

0

Habr
humeniukd @ Habr 2 place · 08/05/2023 04:25 EDT

How to create sound cloud platform — notes

It may seem obvious but lambda has to have permission to s3/dynamodbCreate API Gateway REST API with Lambda as handlerdon’t forget to enable CORS, attach custom domain Read more Read more

0

Habr
kirill702b @ Habr 1 place · 08/03/2023 08:02 EDT

How to access real-time smart contract data from Python code (using Lido contract as an example)

Let’s imagine you need access to the real-time data of some smart contracts on Ethereum (or Polygon, BSC, etc.) like Uniswap or even PEPE coin to analyze its data using the standard data scientist/analyst tools: Python, Pandas, Matplotlib, etc. In this tutorial, I’ll show you more sophisticated data access tools that are more like a surgical scalpel (The Graph subgraphs) than a well-known Swiss knife (RPC node access) or hammer... Read more

0

Habr
princessafia @ Habr 2 place · 08/02/2023 13:01 EDT

Modular grids in UX designer's work

Most novice web designers at the beginning of their journey still in the courses hear such a concept as modular grid, and wonder what it is and how to properly customize and use this tool.From personal experience, I know that in many courses with titles "web designer from zero to pro" or " IU / UX designer in a month" this topic is either skipped, or give instructions, where they... Read more

0

Habr
pzrnqt1vrss @ Habr 1 place · 07/31/2023 09:19 EDT

Большая просьба поделиться вашим опытом о том как вы устраивались/искали/собеседовались на вашу первую работу (или если вы hr - собеседовали джуна). Джунов (привет собратьям по несчастью) тоже приглашаю в комментарии задавать вопросы (буду помещать их в UPD). Read more Read more

0

Habr
Leschev @ Habr 2 place · 07/30/2023 09:39 EDT

iOS Dev Skills. Performance Review

CTO: Balancing Leadership and Architecture.As a CTO, effective leadership goes beyond technical architecture. Conducting regular performance reviews is a crucial part of managing teams.Note: The performance review schedule may vary depending on the specificcompany's policies and guidelines.For early-stage startups, lacking CTO expertise in conducting performance reviews is common. In my experience, I've tailored grades to encompass all aspects of professional iOS development, keeping project-specific needs. Read more

0

Habr
Leschev @ Habr 2 place · 07/30/2023 05:43 EDT

LeetCode 2801 (Hard, Acceptance 14.5%). Count Stepping Numbers in Range. DP. Handles large inputs (10^9 + 7)

Given two positive integers low and high represented as strings, find the count of stepping numbers in the inclusive range [low, high].A stepping number is an integer such that all of its adjacent digits have an absolute difference of exactly 1.Return an integer denoting the count of stepping numbers in the inclusive range [low, high].Since the answer may be very large, return it modulo 10^9 + 7.Hard, Acceptance Level 14.5%.... Read more

0

Habr
deepakchauhan @ Habr 2 place · 07/29/2023 09:30 EDT

How to partition a MySQL table

Alright, folks! Get ready to dive into the world of MySQL table partitioning. In this guide, we'll cover why partitioning is so darn important for your MySQL tables. Plus, we'll dish out all the juicy benefits you can expect from partitioning a table. So, buckle up, and let's get started! Read more Read more

0

Habr
zamsisadmin @ Habr 1 place · 07/26/2023 15:59 EDT

Wie ich ein einfaches Monitoring von Kanälen mit Benachrichtigungen an Slack ohne Erfahrung gemacht habe

Arbeiten im technischen Support brachte zusätzlich zu allen Aufgaben die Pflicht mit sich, die Kommunikationskanäle zu überwachen. Dies wurde über den Grafana-Dienst realisiert, der die erforderlichen Metriken aus Zabbix bezog. Da die Art der Arbeit jedoch bedeutete, dass man nicht immer an seinem Arbeitsplatz sitzt, kam mir die Idee, dies ein wenig zu automatisieren und Benachrichtigungen auf das Telefon oder zum Beispiel in einen Messenger zu erhalten, falls ein Kommunikationskanal... Read more

0

Habr
VasylArtiushchenko @ Habr 2 place · 07/26/2023 04:20 EDT

6 Best Flutter Development Companies in the US 2023

Understanding the world of Flutter app development can be a challenging endeavor, especially for business executives seeking to create top-notch mobile applications. When it comes to choosing a Flutter development company in the US, finding a reliable and proficient partner is crucial for the success of your app. A wrong choice could result in wasted resources and a subpar app that fails to meet user expectations.Read more → Read more

0

Habr
Daryadesignux @ Habr 3 place · 07/26/2023 03:44 EDT

Выгода от обеспечения доступности сервисов

На связи Дарья Баканова-Жараспаева, ведущий проектировщик и специалист по доступности интерфейсов на Госуслугах. В этой статье поговорим о доступности и деньгах — как посчитать затраты на проекте, что мешает это сделать и сколько в цифрах даёт работа с доступностью. Читать далее Read more

0

Habr
Leschev @ Habr 1 place · 07/23/2023 03:44 EDT

LeetCode 2790 (Hard). Maximum Number of Groups With Increasing Length. Solution of the day. O(N logN). Math

Simple Swift Math Solution.Time complexity: O(N logN).The time complexity of this solution is dominated by the sorting step, making it O(N logN), where N is the length of the input array usageLimits. The rest of the operations involve simple arithmetic and comparisons, which take linear time. Therefore, the overall time complexity of the function is O(NlogN).Only 10 lines of code. Read more Read more

0

Habr
swissspear @ Habr 1 place · 07/22/2023 02:30 EDT

DAOs trends in 2023 — or why DAOs can become the leading one in web3

Against the backdrop of a sharp decline in venture investments in various traditional industries (this is clearly related to the global economic situation), but against the backdrop of certain upheavals in the crypto industry, the question arises of a driver that can become one of the «pillars» of the development of a decentralized industry. Read more Read more

0

Habr
swissspear @ Habr 2 place · 07/21/2023 05:06 EDT

Blockchain use in marketplaces — and how Account Abstraction can help it

Today, it becomes quite obvious that the situation with web3 technology is becoming similar to the situation with programmatic advertising 10-12 years ago. When programmatic-ads just started, the major market players were not very optimistic - it was much easier for them to follow the well-known paths with chains of publishers and agencies. However, once programmatic got rid of the «childhood diseases» and became simple in use, effective in attracting... Read more

0

Habr
florianmarcu @ Habr 2 place · 07/21/2023 00:34 EDT

How to Make an E-commerce App in SwiftUI

In this guide, I'm going to walk you through how to create a simple e-commerce app using SwiftUI and Firebase. The app will include basic functionalities such as product listing, shopping cart, and user authentication.Before we get started, you should have the following installed: Read more Read more

0

Habr
swissspear @ Habr 1 place · 07/18/2023 08:00 EDT

Stages of product work on the MVP of the AI course generator

When developing functional digital products, especially at the preliminary stages (from MVP to alpha versions) many teams use the «technology first» principle. This means a minimum of user convenience, a maximum of engineering competence. When evaluating the potential of a product, further efforts are already in the direction of creating ergonomic visitor paths, design and more. However, here lies the catch - since not two clients or a prospective investor... Read more

0

Habr
tommy113 @ Habr 2 place · 07/18/2023 07:11 EDT

SEO Tips to Magento 2 Product Pages

Avoid duplicate contentMany online merchants face a common challenge with multiple product variations, leading to duplicate content issues. When similar products have slightly different URLs like "?=sortby" or "?p=2", search engines may view them as duplicates, impacting your website's credibility and search rankings. To tackle this: Read more Read more

0

Habr
Andrey2008 @ Habr 3 place · 07/18/2023 05:56 EDT

Review of mini-book «60 terrible tips for a C++ developer»

I wrote a small e-book about terrible tips for C++ developers. Actually, it describes bad programming practices and explains why it's better to avoid them. However, every chapter of this mini-book starts with a terrible tip — just for fun.By the way, these tips may seem artificial but believe me, they are based on the real experience. In other words, the described terrible tips occur in developers' lives — that's... Read more

0

Most popular sources

  • You see 649 news out of 649.
  • Sources 63 out of 63.
Business Insider 52% 11
Gizmodo 12% 10
Eurogamer.net 6% 4
Tom's Hardware 5% 1
Android Authority 5% 2
View sources »

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

06.07.2024 05:49
Last update: 05:40 EDT.
News rating updated: 12:40.

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