Skip to content

Instantly share code, notes, and snippets.

View MuhammadQuran17's full-sized avatar

Muhammad Umar MuhammadQuran17

  • DanAds
View GitHub Profile

1️⃣ Обычная база данных (OLTP)

Представь твой Laravel-проект. В базе данных происходят операции постоянно:

  • пользователь регистрируется → INSERT
  • обновляет профиль → UPDATE
  • смотрит список машин → SELECT
  • удаляет объявление → DELETE
@MuhammadQuran17
MuhammadQuran17 / statistics_wd.md
Created March 6, 2026 12:14
Wisdom of Statistics

In the name of God

  1. Mean = $\frac{\sum x_i}{n}$ - Used for symmetric data without extreme outliers, as it utilizes all data points for a more precise, mathematical average
  2. Median - Sort numbers in order and select middle.
  3. Standart deviation - measures data dispersion around the mean, calculated as the square root of variance.

Population Standard Deviation formula

When you have all data.

$\sigma = \sqrt{\frac{1}{N} \sum_{i=1}^{N}(x_i - \mu)^2}$

@MuhammadQuran17
MuhammadQuran17 / customize_vendor_for_composer_packagist.sh
Created February 23, 2026 05:48
Change Vendor Name for Composer or Packagist
#!/bin/bash
echo "==================================================="
echo "PPP Stripe - Vendor Name Customization Script"
echo "==================================================="
echo ""
# Check if vendor name is provided
if [ -z "$1" ]; then
echo "Error: Vendor name is required"
echo "Usage: bash customize-vendor.sh <MuhammadQuranName>"

Runway - how much we have money so we can be alive , (for 10 month, for 3 month) Typically, CFOs begin looking for new investments or loans when their cash reserves fall below 12 months

Cash Balance - Balance on the account - Остаток денег на счетy.

EBITDA CASH - This is operating profit before taxes and depreciation, but focused on cash flow. - Это операционная прибыль до вычета налогов и амортизации, но сфокусированная на движении «живых» денег.

Gross Margin (Валовая маржинальность) — Shows how much profit remains from each (or crown) earned after paying the cost price. - Показывает, сколько прибыли остается с каждого заработанного рубля (или кроны) после оплаты себестоимости.

@MuhammadQuran17
MuhammadQuran17 / advertisement_math.md
Created February 18, 2026 06:42
Advertisement Wisdom

To show ad there is Auction

It happens incredibly fast—usually, the entire process takes between 100 and 200 milliseconds (that’s faster than the blink of an eye). When you open an app or a webpage, a whole technological drama unfolds behind the scenes. 🎭

This process is called RTB (Real-Time Bidding).

The Main Players 🏟️

To make millions of auctions work, a specific infrastructure exists:

@MuhammadQuran17
MuhammadQuran17 / tg_bot_cheat.md
Created February 16, 2026 05:51
Telegram Bot creation
  1. I have used botman php, and it is pretty good
  2. Set webhook via sending post api to tg api
  3. If you have start conversation make sure that you are using persistant cache driver
@MuhammadQuran17
MuhammadQuran17 / general.md
Created January 14, 2026 08:44
General_things

Docusaurus

To add copy for LLM feature:

npm install docusaurus-plugin-copy-page-button

in docusaurus config file add

plugins: ["docusaurus-plugin-copy-page-button"],

@MuhammadQuran17
MuhammadQuran17 / windows_ssh.md
Last active December 30, 2025 13:44
Connect to Windows SSH server
@MuhammadQuran17
MuhammadQuran17 / seo_cheat.md
Last active February 7, 2026 20:14
SEO & Google

SEO helper

Build community

Increase engagement

  1. Create a call to action, poll ask for feedback to improve quality
  2. add share buttons with Social media to your posts
  3. Add comments section for ypur posts page (optional)
  4. Interact with other bloggers
@MuhammadQuran17
MuhammadQuran17 / docs_cheetsheat.md
Created December 24, 2025 13:57
Documentation writing

Example: git stash [push [-p | --patch] [-S | --staged]

  1. Square brackets [ ]: Indicate that the parameter is optional. The command will work without it.