Skip to content

Instantly share code, notes, and snippets.

View ALYREZA's full-sized avatar
😈
javascript developer

Alyreza mahmoudy ALYREZA

😈
javascript developer
View GitHub Profile
@ALYREZA
ALYREZA / README.md
Created January 4, 2026 07:34
design contract / SOW

Web & Mobile App Design Delivery Checklist (Figma)

This checklist defines the minimum acceptable deliverables for design approval. Failure to meet any required item means the design is NOT ready for development.


@ALYREZA
ALYREZA / main.py
Created June 22, 2023 15:20
create PDF file with 21 page and 21 item in each page
import os
import PyPDF2
from PyPDF2 import PageObject
from decimal import *
# Update this path to the directory containing your 48 folders
parent_directory = './files'
# Iterate over each folder
@ALYREZA
ALYREZA / index.html
Created November 7, 2019 11:19
React Native
<article itemscope="">
<h2 class="ListTitle">دوره آموزش React Native</h2>
<h3 class="CourseTitle">مقدمات آموزش React Native</h3>
<p class="CourseContent">
در دوره آموزش React Native می آموزید که چگونه Application های Cross Platform
بسازید که در سیستم عامل های Android و IOS اجرا شوند.
<br>
در دوره برنامه نویسی React Native می آموزید برنامه هایی بسازید که از
لحاظ خروجی و Peformance دقیقا Native بوده و برنامه تولید شده
@ALYREZA
ALYREZA / ffmpeg.md
Created October 15, 2017 12:55 — forked from protrolium/ffmpeg.md
using ffmpeg to extract audio from video files

ffmpeg

Converting Audio into Different Formats / Sample Rates

Minimal example: transcode from MP3 to WMA:
ffmpeg -i input.mp3 output.wma

You can get the list of supported formats with:
ffmpeg -formats

Convert WAV to MP3, mix down to mono (use 1 audio channel), set bit rate to 64 kbps and sample rate to 22050 Hz:

@ALYREZA
ALYREZA / gist:0220e6174bdab57e40635be80142a620
Created July 25, 2017 04:14 — forked from adamstac/gist:7462202
Install and configure Sendmail on Ubuntu

Install and configure Sendmail on Ubuntu

This should help you get Sendmail installed with basic configuration on Ubuntu.

  1. If sendmail isn't installed, install it: sudo apt-get install sendmail
  2. Configure /etc/hosts file: nano /etc/hosts
  3. Make sure the line looks like this: 127.0.0.1 localhost yourhostname
  4. Run Sendmail's config and answer 'Y' to everything: sudo sendmailconfig
  5. Restart apache sudo service apache2 restart