Pheak Pheasa

Pheak Pheasa @pheak_pheasa

About: Don't talk, just do it.

Joined:
Mar 12, 2024

Pheak Pheasa
articles - 25 total

git create branch from main

Method 1: Create branch from main, then switch git branch <new-branch-name> main git...

Learn More 0 0Aug 21 '25

Git: How to Add Missing Files to Your Previous Commit

1.First Way Go back to previous commit (keep changes in working directory) git reset --soft...

Learn More 0 0Aug 5 '25

MVVM Directory Structure for Point of Sale (POS) System

Here’s a standard and scalable directory structure for a Point of Sale (POS) system using MVVM...

Learn More 0 0May 7 '25

MVVM Directory Structure for Point of Sale (POS) System

Here’s a standard and scalable directory structure for a Point of Sale (POS) system using MVVM...

Learn More 1 1May 7 '25

Document to show and sing with client before you start coding.

When working with a client, it's essential to establish clear agreements and expectations upfront....

Learn More 0 0Apr 28 '25

MVVM + RxSwift + Coordinator directory structure for your large POS system

POSApp/ ├── App/ │ ├── AppDelegate.swift │ └── SceneDelegate.swift ├── Resources/ │ ├──...

Learn More 0 0Apr 23 '25

Sandbox: rsync.samba (13105) deny(1) file-write-create, Flutter failed to write to a file [closed]

In Xcode, go to your project's Build Settings menu. In the Build Options section, set the property...

Learn More 0 0Apr 22 '25

Easy way to make swift project to using only light mode.

func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions:...

Learn More 0 0Apr 22 '25

2 Ways to save your life when you confused push any code or file to your branch.

Way 1 1. Find your committed hash by : git log Enter fullscreen mode ...

Learn More 0 0Mar 24 '25

MVVM Directory Structure for a Large Banking Mobile App Project

For a large bank mobile app using MVVM with Storyboards, here's a well-organized directory...

Learn More 0 0Jan 15 '25

how to get SSH Keys for gitlab for mac?

Generate SSH Key Run this command in your terminal to generate a new SSH key: ssh-keygen -t...

Learn More 1 0Jan 10 '25

Directory structure for building a stock system using FastAPI

This structure separates concerns, making it easier to manage as the project...

Learn More 2 0Oct 8 '24

Docker compose down with remove all everything related.

To stop and remove everything related to a Docker Compose setup (containers, networks, volumes,...

Learn More 0 1Sep 26 '24

To generate an SSH key in Ubuntu

To generate an SSH key in Ubuntu, you can follow these steps: Open the Terminal: You can do this by...

Learn More 5 0Sep 18 '24

To reset head of your branch comment

Checkout to branch you want to reset. Using command to reset: git reset --hard...

Learn More 0 0Jul 30 '24

Here are the steps to prepare before you start coding a web application.

Step 1: Define the Purpose and Goals Identify the Purpose: Clearly define what the web application...

Learn More 1 0Jun 1 '24

How to allow remote connections to PostgreSQL on Linux

Prerequisites In this instructional guide, we will be discussing how to enable remote connections to...

Learn More 21 0May 14 '24

To create a Docker network

docker network create [OPTIONS] NETWORK_NAME Enter fullscreen mode Exit fullscreen...

Learn More 0 0May 13 '24

To view the last 100 lines of logs from a Docker container and continue to follow new logs

docker logs -f <container_name_or_id> | tail -n 100 Enter fullscreen mode ...

Learn More 0 0May 13 '24

ubuntu server create database and create new user with password for there database in postgresql.

To create a new database and a new user with a password in PostgreSQL on Ubuntu Server, you can...

Learn More 0 0Apr 3 '24

Using postgresql with nuxt3 by ORM(sequelize)

Certainly! Using an ORM (Object-Relational Mapping) library can simplify database interactions by...

Learn More 7 0Mar 31 '24

Docker exec container.

docker exec -it <container-id> bash Here's a breakdown of the command: docker: This is the...

Learn More 0 0Mar 24 '24

របៀប តម្លើង Magic Mouse on Windows 11/10

How to Setup and Use Magic Mouse on Windows 11/10 ១ ភ្ជាប់ Mouse របស់​អ្នក​ជា​មួយម៉ាស៊ីកុំព្យូទ័រ។ ២...

Learn More 0 0Mar 23 '24

សម្រាប់លុបអ្វីៗទាំង អស់ ក្នុង Docker compose.

docker compose down --volumes --rmi all OR docker-compose down --rmi all -v The -v (or --volumes)...

Learn More 0 0Mar 21 '24

To init git on my directory to pull project from git repository.

Install Git: Download and install Git from Git Downloads. ...

Learn More 0 0Mar 12 '24