Skip to content

Instantly share code, notes, and snippets.

View jalallinux's full-sized avatar
😎
ABC: Always Be Coding

JalalLinuX jalallinux

😎
ABC: Always Be Coding
View GitHub Profile
@jalallinux
jalallinux / iran-area-achareh.json
Last active May 24, 2025 06:11
مناطق شهری ایران - آچاره
[
{
"name": "فارس - شیراز",
"url": "https://api.achareh.co/v2/regions/areas/?city=1216&limit=1000&offset=0&web=true"
},
{
"name": "تهران - تهران",
"url": "https://api.achareh.co/v2/regions/areas/?city=333&limit=1000&offset=0&web=true"
},
{
@jalallinux
jalallinux / project-documents.md
Last active June 22, 2025 08:21
Types of project document

📁 مستندات پروژه – نسخه نهایی

در این سند، تمامی مستندات کلیدی پروژه به همراه توضیحات، نویسنده، تحویل‌گیرنده و زمان تولید به ترتیب منطقی آورده شده‌اند.


1. Project Brief (خلاصه پروژه)

  • معرفی کلی پروژه، هدف، دامنه، خروجی مورد انتظار، مخاطبین هدف، ریسک‌های سطح بالا.
  • ✍️ نویسنده: کارفرما / مدیر محصول
  • 📥 تحویل به: تیم توسعه و مدیر پروژه
@jalallinux
jalallinux / PaginationAndSortableAndSearchableValidator.php
Last active July 29, 2025 13:50
PaginationAndSortableAndSearchableValidator Trait
<?php
namespace Modules\General\Contracts\Request;
trait PaginationAndSortableAndSearchableValidator
{
public function page(): int
{
return intval($this->query(self::pageKey(), 1));
}