Skip to content

Instantly share code, notes, and snippets.

View mamadaliev's full-sized avatar
👨‍💻
Coding...

Sherzod Mamadaliev mamadaliev

👨‍💻
Coding...
View GitHub Profile
@mamadaliev
mamadaliev / 01_getting_started_with_sql.md
Created March 27, 2024 08:53
SQL Basics for Beginners

SQL

TODO

@mamadaliev
mamadaliev / 01_getting_started_with_kafa.md
Created March 27, 2024 07:33
Kafka Basics for Beginners

Kafka

TODO

@mamadaliev
mamadaliev / 01_getting_started_with_docker.md
Created March 27, 2024 07:29
Docker Basics for Beginners

Docker

TODO

Spring Core

TODO

@mamadaliev
mamadaliev / 01_mock_server_getting_started.md
Created February 29, 2024 10:18
React + Mock Server example.

Mock Server

To create mock server, install json-server:

npm install -g json-server

Add existing items with your structure:

{
 "tickets": [
@mamadaliev
mamadaliev / 000_getting_started_with_java.md
Last active February 27, 2024 06:10
Java Basics Tutorial for Beginners
@mamadaliev
mamadaliev / c_lang_commands.md
Last active February 11, 2024 13:21
Simple installation commands and examples to work with C in Windows

C

1. Installation

Install following packages:

choco install mingw
choco install make
choco install GnuWin

After that open mingw and install following packages:

@mamadaliev
mamadaliev / kill_already_use_port.md
Last active February 11, 2024 13:25
Fix "Web server failed to start. Port 8080 was already in use" in Windows

Kill port

1. Find busy port

Open terminal on Windows and enter:

netstat -ano|findstr "PID :8080"

2. Kill process by PID

  1. After that, kill the task by process identifier:
@mamadaliev
mamadaliev / change_docker_image_storage_path.md
Last active February 18, 2024 22:16
Change docker image storage path

Docker

Change docker image storage path.

1. Stop docker service

sudo systemctl stop docker

2. Move existing docker directory to new location

@mamadaliev
mamadaliev / .i3_setup.md
Last active August 23, 2023 21:18
i3 setup

TBD