*ARGS.TECH | BLOG | Shakhzhakhan Maxudbek's personal blog
Loading...
BLOG


What is XML? XML mean Extensible Markup Language, which need for storing structured data and group any items. In XML markup language you may create tags with any names. The most popular examples of XML - Sitemaps and RSS feeds.


Example of XML file:

<breakfast_menu>
   <food>
       <name>Belgian Waffles</name>
       <price>$5.95</price>
       <description&g…
#http-requests #parsing #python #xml
This tutorial provide how to configure directory as network share on Linux machine. After configuration finished, you may exchange files between any operating systems (Windows, MacOS and Linux) by network. Samba will help us with this. So, what is Samba? View official page.
Samba is the standard Windows interoperability suite of programs for Linux and Unix.
Samba is an important component to seamlessly integrate Linux/Unix Servers and Desktops into Active Directory environments. It can …
#debian #folder #linux #network #samba #ubuntu
Nginx is very powerful WEB-server. The primary goal of Nginx - answering on clients' requests. It can serve html, php and static files (css, js, images, etc...). Also Nginx maybe configured as load balancer. This tutorial explain, how to configure Nginx as frontend for your web-based application (reverse proxy) and force redirect HTTP to HTTPS (HSTS - HTTP Strict Transport Security technology).

Installing Nginx from Advanced Packaging Tool (APT) package manager:
sudo apt install nginx -y

Firewall …
#http #https #nginx

PHP (recursive acronym for PHP: Hypertext Preprocessor) is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML. PHP intro whatis.

Install Nginx and PHP-FPM:

sudo apt update && sudo apt install nginx php-fpm -y


Find PHP socket file:

user@localhost:~$ file /var/run/php/php8.2-fpm.sock
/var/run/php/php8.2-fpm.sock: socket


Create directory for project:

sudo mkdir -p /var/www/your-project


Create "index.php" file in&…

#debian #linux #nginx #php #php-fpm

How to share internet via iptables? You need hardware (e. g. workstation) with two network interface cards (NIC). They are may be wired or wireless. It doesn't matter.

Names of your NICs you may see via "ip a" or "ifconfig" command.

For this example we named their "eth0" and "eth1":
- eth0 = the network adapter with internet (external or WAN).
- eth1 = the network adapter to which a second computer is attached (internal or LAN).
192.168.0.x = IP subnet for eth1.

But first we need enable packet fo…

#debian #internet #iptables #linux #network #routing #ubuntu


After deletion entries in your model relational database management systems not resetting autoincrementations and continue counting old IDs sequences. For start counting entries from 1 again you need reset sequence manually.


Django's autogenerated manage.py script have argument named "sqlsequencereset". It helps to reset autoincrement sequences for IDs in Django application after all instances in model are deleted. Documentation say:

django-admin sqlsequencereset app_label [app_label ..…
#autoincrement #backend #database #django #postgresql #reset

Docker is good solution when you want to fast deploying your applications and run in different operating systems. You don't need to install your application's runtime anywhere. Just install Docker and run anything you want. Docker build image for your application with all dependencies inside.

In this tutorial I show you how to create new Java application and run it in Docker.

Start with creating directory for project:

mkdir myproject && cd myproject


Create "Main.java" file with this code:

cl…
#debian #devops #docker #dockerfile #example #java #linux #tutorial #virtualization

If you don't set static IP in Ubuntu Server's installer he trying receive IP by DHCP protocol.

Ethernet interfaces are identified by the system using predictable network interface names. These names can appear as eno1 or enp0s25. However, in some cases an interface may still use the kernel eth# style of naming. Documentation.

# Detecting interfaces

Use "ip address" or "ip a" command for finding your network interfaces:

user@localhost:~$ ip address
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 q…
#ip-address #linux #network #ubuntu

The majority of network setup can be done via the interfaces configuration file at /etc/network/interfaces. Here, you can give your network card an IP address (or use dhcp), set up routing information, configure IP masquerading, set default routes and much more.
Remember to add interfaces that you want brought up at boot time to the 'auto' line.
See man interfaces for more options. NetworkConfiguration.

The Dynamic Host Configuration Protocol (DHCP) is a network management protocol used on Interne…

#debian #ip-address #linux #network


What is CRON? Unix-like operating systems provide utility for run periodical tasks. For example you need to run script every day at 08:00 AM. CRON read tasks from configuration file line by line and have special syntax.


Windows have their own tool named as "Windows Task Scheduler".


Open terminal and run "crontab -e" command. When you open crontab first time, you must choose editor, which is convenient for your use. Enter number of preferred editor and press "Enter":

user@localhost:~$ crontab -e
no …
#cron #debian #job #linux #schedule #task #ubuntu
Top button
© *ARGS.TECH
2025
v 2.4.0