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

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

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


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

As developers, we often face repetitive tasks when setting up new projects. Bash scripting, a powerful scripting language in Unix-like systems, allows us to automate these tasks efficiently. In this post, I'll guide you through automating the setup...... читать далее

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

Advanced Backend Communication In the real world, a primary server doesn't handle all the request & operation , it delegates some tasks to other servers. Why so? If we do all the operations on primary server then all the compute power will go i...... читать далее

backend redis pubsub queue

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

First check the Go version by running the command go version Create a folder mkdir <folder_name> Switch to created folder cd <folder_name> Initialize the go project by running the given command. You will g...... читать далее

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

Hi everybody, continuing from the previous post, which was a basic setup with Golang. In this part, we're setting up our logging in the app. THE ORIGINAL POST HAS ADDITIONAL INFORMATION. Installing the package zap https://github.com/uber...... читать далее

beginners programming tutorial

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

Laravel is a popular framework for PHP, known for making web development easier and faster. To help you get even more productive with Laravel, we’ll look at three simple strategies: using Laravel Herd as your local host, upgrading to Laravel 11, and...... читать далее

laravel webdev productivity learning

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

Introduction Laravel is a popular free and open-source PHP-based web framework used for building high-end web applications. It is renowned for its expressive and elegant syntax. In this article, we will deploy a Laravel app on a LAMP stack. LAMP sta...... читать далее

devops ubuntu bash laravel

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

Introduction Containerization is becoming commonplace in modern software development. The practice involves the development of software applications in isolated environments that mimic a desired operating system. Containerization has enabled develo...... читать далее

django docker webdev beginners

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

I’ve been trying to use VS Code’s integrated Terminal function (Ctrl+`) and one of the most annoying things was that some of my long-used keybindings in my shell (used to be bash, now zsh) were not working. Specifically: Ctrl+r – Do a reverse com...... читать далее

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

One of the most recent projects I did was an exam project for a cloud engineering program I am doing. We were asked to: Automate the provisioning of two Ubuntu-based servers, named “Master” and “Slave”, using Vagrant. On the Master node, create a b...... читать далее

linux mysql php bash

Разработка The GitHub Blog 16 мая 2024 г. 16:00

GitHub celebrates Global Accessibility Awareness Day by launching another installment of the Coding Accessibility series and sharing how we scale accessibility within GitHub and beyond. The post Scaling accessibility within GitHub and beyond appeared...... читать далее

Company accessibility Global Accessibility Awareness Day

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

Go pointers are the gift that keeps on giving. They allow you to manipulate memory efficiently, create custom data types, and work seamlessly with complex data structures. This efficiency translates to cleaner, more performant, and flexible code. Ho...... читать далее

devops aws bash cloud

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

Olá, caro leitor. Neste post você vai aprender a como instalar o PHP, Composer, MySql, Apache2 e Phpmyadmin. Essas ferramentas são essenciais para trabalhar com o desenvolvimentos de sites em Wordpress e/ou sistemas web com Laravel, entre outros...... читать далее

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

The main advantages of this way are to have independent environment for the tests running and to reduce the complexity of the test environment setup. Just load and run tests. Consider how to achieve this. You will see below how you can setup the...... читать далее

coding tutorial docker testing

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

Have you ever seen this error when you tried to deploy your Jekyll site to GitHub Pages? One of the reasons is that some of the gems in your Gemfile are not supported by GitHub Pages. There is a way to have custom gems by setting up your own conti...... читать далее

jekyll deploying ci circleci

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

Tired of juggling complex configurations and tedious deployments for your web applications? Crave the simplicity of platforms like Heroku or Netlify but want the control and flexibility of self-hosting? Look no further than Coolify, the open-source P...... читать далее

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

What is Karmada? Karmada (Kubernetes Armada) is a Kubernetes management system that enables you to run your cloud-native applications across multiple Kubernetes clusters and clouds, with no changes to your applications. By speaking Kubernetes-native...... читать далее

kubernetes karmada community aws

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

GitLab is a powerful, open-source platform that provides a complete DevOps lifecycle solution, including version control (Git), continuous integration/continuous delivery (CI/CD), issue tracking, and more. By self-hosting GitLab on an EcoStack Cloud...... читать далее

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

Introduction In this article, I'll walk through the process of setting up and troubleshooting SSH key authentication for connecting to GitHub repositories on a Windows system using Git Bash. SSH key authentication provides a secure and convenient w...... читать далее

ssh github webdev

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

Resolving the auto-upgrade issue will allow having edge gems versions with little to no effort. How could you achieve this with CI (specifically CircleCI)? Automatic update idea CircleCI provides scheduling jobs and workflows. So you...... читать далее

github circle ci rails

Разработка The Cloudflare Blog 14 мая 2024 г. 13:00

Golang 1.20 introduced support for Profile Guided Optimization (PGO) to the go compiler. This post covers the process we created for experimenting with PGO at Cloudflare, and measuring the CPU savings... читать далее

Observability Performance