Материалы по теме 'learning' | DevsDay.ru

IT-блоги Материалы по теме 'learning'

IT-блоги Материалы по теме 'learning'


Разработка dev.to 19 мая 2024 г. 19:49

I am an absolute beginner with Jest, and I've been learning a lot every day. In this article, I'll jot down five things I've recently learned about Jest testing in Next.js. Whether it's about mocking or setting up the test environment, I'll write...... читать далее

jest testing nextjs react

Разработка dev.to 19 мая 2024 г. 19:39

I have heard a lot of (mostly) good things about the Rust programming language. Recently, I decided to give it a try and learn Rust basics myself. When learning something, I am always curious how things work inside. It is no different this time; I k...... читать далее

rust programming

Разработка dev.to 19 мая 2024 г. 19:20

In the past, I haven't been one to publicly document my journeys about much of anything, but I've come to realize that documenting is an enriching experience for both the reader and the writer. It's also a way of keeping myself accountable so I decid...... читать далее

Разработка dev.to 19 мая 2024 г. 19:17

Lets see what are the services which can be integrated with ACM (AWS Certificate Manager). This could be one of the interview question so lets learn the services together with some basic details about ACM:- What is ACM AWS Certificate Manager (ACM)...... читать далее

cloudsecurity awscloud cloudcomputing security

Разработка dev.to 19 мая 2024 г. 19:01

In this tutorial, you will learn how I increased the flexibility and performance of my Astro-powered blog by integrating Couchbase. We will walk through the step-by-step process in transforming your Astro static blog into one that leverages a NoSQL d...... читать далее

tutorial webdev database

Разработка dev.to 19 мая 2024 г. 17:49

Table of Contents for Article on Kubernetes 1. Introduction to Kubernetes Overview of container orchestration Benefits of using Kubernetes 2. Kubernetes Architecture Master and Worker Nodes Control Plane Components Data Plane Components 3...... читать далее

beginners kubernetes devops networking

Разработка dev.to 19 мая 2024 г. 17:36

Introduction Have you ever hovered over a navigation link on a site, and all the other navigation links fade out except the link you’re hovering over? Well, you’ll learn how to create this effect with a few lines of JavaScript. The HTML...... читать далее

webdev javascript beginners tutorial

Разработка dev.to 19 мая 2024 г. 17:33

SOLID principles are a set of guidelines for writing clean, maintainable, and scalable object-oriented code. By applying these principles to your Flutter development, you can create well-structured applications that are easier to understand, modify,...... читать далее

development principles flutter mobile

Разработка dev.to 19 мая 2024 г. 17:15

Event-driven wallet system all piggybacked on top MongoDB atlas service trigger support. You will learn how triggers in MongoDB work, transaction handling in MongoDB and little bit of JS PS - the title was not easy to choose since it manages wallets...... читать далее

javascript node systemdesign startup

Разработка dev.to 19 мая 2024 г. 16:52

You Need a Computer Science Degree Many believe a formal degree is essential, but numerous successful developers are self-taught or come from bootcamps. Coding is All About Math While logical thinking is crucial, most coding tasks involve prob...... читать далее

beginners career webdev discuss

Разработка dev.to 19 мая 2024 г. 16:40

Exploring AWS !! Day 69 Amazon OpsWorks What is configuration Management? main purpose is to automate server management. What is OpsWorks? configuration management tool that lets you configure and operate applications on cloud. you have the...... читать далее

aws cloud cloudcomputing beginners

Разработка dev.to 19 мая 2024 г. 16:16

The Rise of Doppelgangers: How Face Similarity Algorithms are Changing the Game In recent years, the concept of doppelgangers, or look-alikes, has gained significant attention due to the advancements in face similarity algorithms. These algorithms,...... читать далее

Разработка dev.to 19 мая 2024 г. 16:00

In this series I'll share my progress with my self-imposed programming challenge: build a Battlesnake in as many different programming languages as possible. Check the first post for a short intro to this series. You can also follow my progress on...... читать далее

programming challenge javascript

Разработка dev.to 19 мая 2024 г. 15:07

This is what I've learned from reading the article 'Reverte doch einfach!' (author: Lars Kölpin-Freese) in the magazine Javamagazin (in German language, 3rd issue of 2024). Table of contents Abstract Upward migration Stateless apps Tra...... читать далее

gitops git devops cicd

Разработка dev.to 19 мая 2024 г. 14:42

Learning and understanding HTML is like building the foundation and structure of a house, HTML is the foundation of building up webpages and is the key tool for website development. It is almost impossible to discuss HTML without discussing CSS as bo...... читать далее

Разработка dev.to 19 мая 2024 г. 13:04

Hi everyone, Hudy here! Today, I'm excited to share my open-source project manager with you all. I built this from the ground up with the goal of keeping operational costs under $15 per month. Before I deciding to build it, I tried Trello, Jira an...... читать далее

nextjs javascript node

Разработка dev.to 19 мая 2024 г. 12:52

Databases are crucial for storing and managing data. In this article, you'll learn to create and interact with MySQL database in Python. Installing PyMySQL PyMySQL is a MySQL client library written in Python that allows you to create and...... читать далее

mysql python database programming

Разработка dev.to 19 мая 2024 г. 12:14

Hey Java Folks! Welcome to another deep dive into the exciting world of Java development. Today, we're exploring some of the top frameworks used in Java development, diving into their unique features, and comparing them with the ever-popular Spring...... читать далее

webdev java backend microservices

Разработка dev.to 19 мая 2024 г. 12:12

Table of Contents Outline What is jest Features How does it work? What does it do? Snapshot testing Implementing Snapshot testing with jest Updating Reference Snapshot Implementing Inline Snapshots Conclusion Outline There...... читать далее

testing javascript react programming

Разработка dev.to 19 мая 2024 г. 11:44

In this article, we will talk about the Stack memory in .NET. The Stack is the part of the memory in .NET that belongs to a thread. In a simple term, each thread has its own memory that acts as a stack (last in first out). Note: The article does no...... читать далее

stackmemory dotnet csharp stackoverflow