Nullexia For Programming @nullexia Channel on Telegram

Nullexia For Programming

@nullexia


< مُحتوى برمجي />

قناة اليوتيوب
www.youtube.com/@NULLEXIA

للأسئلة أو للتواصل (تيليجرام)
@NullexiaChat

رابط الموقع:
m3md69.github.io/NULLEXIA

المالك:
@m3md69

Nullexia For Programming (Arabic)

تعتبر قناة Nullexia For Programming مكانًا مثاليًا لكل من يهوى البرمجة ويرغب في تعلم المزيد في هذا المجال المثير. يقدم المالك الإبداعي @m3md69 محتوى برمجي متميز على هذه القناة على تليجرام، حيث يشارك المشتركين بأحدث التقنيات والأدوات في عالم البرمجة.

بالإضافة إلى ذلك، تحتوي القناة على روابط مفيدة لموقع اليوتيوب الخاص بـNullexia، حيث يمكنك مشاهدة مقاطع الفيديو التعليمية والشروحات البرمجية بكل يسر وسهولة. كما يمكنك التواصل وطرح الأسئلة من خلال قناة الدردشة الخاصة بالمالك @NullexiaChat.

لا تفوت الفرصة لزيارة الموقع الرسمي لـ Nullexia For Programming على الرابط التالي m3md69.github.io/NULLEXIA للاطلاع على المزيد من المواد التعليمية والمقالات الشيقة.

إذا كنت من عشاق البرمجة أو ترغب في دخول عالم البرمجة بكل ثقة ومهارة، فإن Nullexia For Programming هي الوجهة المثالية لك. انضم الآن واستمتع بتطوير مهاراتك البرمجية بصحبة خبراء المجال.

Nullexia For Programming

03 Jan, 02:27


تعريفات وأمثلة
على انتهاك وتحقيق
مفهوم الـ SOLID Principles

Nullexia For Programming

01 Dec, 06:40


# CSS Units

## **Relative Units**

These units are relative to another value or context:

- **`em`**: Relative to the font size of the parent element.
- **`rem`**: Relative to the font size of the root element (`<html>`).
- **`%`**: Relative to the parent element (e.g., width or height).
- **`vw`**: 1% of the width of the viewport.
- **`vh`**: 1% of the height of the viewport.
- **`vmin`**: 1% of the smaller dimension of the viewport (width or height).
- **`vmax`**: 1% of the larger dimension of the viewport (width or height).
- **`ch`**: The width of the "0" character in the current font.
- **`ex`**: The height of the "x" character in the current font.
- **`lh`**: Relative to the line height of the element.

## **Absolute Units**

These units are fixed and not relative:

- **`px`**: Pixels (the most common unit).
- **`cm`**: Centimeters.
- **`mm`**: Millimeters.
- **`in`**: Inches (1 inch = 2.54 cm).
- **`pt`**: Points (1 point = 1/72 of an inch).
- **`pc`**: Picas (1 pica = 12 points).

## **Time Units**

Used to define durations:

- **`s`**: Seconds.
- **`ms`**: Milliseconds (1 ms = 1/1000 of a second).

## **Angle Units**

Used with transformations and rotations:

- **`deg`**: Degrees (0 to 360).
- **`rad`**: Radians.
- **`grad`**: Gradians (400 units in a circle).
- **`turn`**: Full rotations (1 turn = 360 degrees).

## **Frequency Units**

Used for properties related to sound:

- **`Hz`**: Hertz.
- **`kHz`**: Kilohertz.

## **Resolution Units**

Used to define display resolution:

- **`dpi`**: Dots per inch.
- **`dpcm`**: Dots per centimeter.
- **`dppx`**: Dots per pixel (1 dppx = 96 dpi).

Nullexia For Programming

25 Oct, 09:28


■ الفرق بين طباعة الـ Interleavings والـ Permutations يكمن في طبيعة كل منهما وكيفية ترتيب العناصر

Nullexia For Programming

02 Sep, 22:24


https://youtu.be/DfXxz-IHX8k?si=P6eveIcEweQprRrX

Nullexia For Programming

28 Aug, 22:46


ℹ️ شرح تسمية معالجات Intel Core ⬇️

Nullexia For Programming

02 Jul, 20:53


⏹️ احجام انواع البيانات في لغة Java ☕️

⏺️ Integer
➡️ byte (1 byte)
➡️ short (2 bytes)
➡️ int (4 bytes)
➡️ long (8 bytes)

⏺️ Float
➡️ float (4 bytes)
➡️ double (8 bytes)

⏺️ Boolean
➡️ false, true (1 byte)

⏺️ Character
➡️ char (2 bytes)

⏺️ String
ℹ️ If String length = 1
➡️ UTF-8 (1 byte)
➡️ ISO-8859-1 (1 byte)
➡️ US-ASCII (1 byte)
➡️ UTF-16LE (2 bytes)
➡️ UTF-16BE (2 bytes)
➡️ UTF-16 (4 bytes)
➡️ UTF-32 (4 bytes)

Nullexia For Programming

06 May, 06:27


⏹️ لو عندك ملف نوعه من الانواع التالية:
➡️ JSON
➡️ YAML
➡️ CSV
➡️ XML
➡️ TOML

⏹️ و تريد القيام بالأتي:
⬅️ تَصوّر
⬅️ مقارنة
⬅️ بحث
⬅️ تعديل
⬅️ تنزيل على هيئة صورة رسم توضيحي

⏺️ فا الموقع دا حل للمشاكل اللي تم ذكرها بإذن الرحمن 🤝🏻💚
➡️ jsoncrack.com

Nullexia For Programming

26 Apr, 05:57


◂ عناوين مهمة جداً في البرمجة، يجب تعلم جزء كبير منها في الزمن الحالي
1. Basics
2. Testing
3. Handling
4. OOP (Object Oriented Programming)
5. Data Structures
6. Algorithms
7. DSA (Data Structures and Algorithms)
8. Database
9. Network
10. OOD (Object Oriented Design)
11. Design Patterns
12. Solid Principles
13. Best Practices

◂ اسماء مواقع لحل المسائل والمشكلات بلغات البرمجة
1. Codeforces
2. LeetCode
3. HackerRank
4. TopCoder
5. AtCoder
6. HackerEarth
7. Codewars
8. W3Schools
9. W3Resource
10. Satr
11. CoderHub

Nullexia For Programming

25 Feb, 12:48


Channel name was changed to «Nullexia For Programming»

Nullexia For Programming

25 Feb, 12:47


Channel photo updated

3,051

subscribers

52

photos

3

videos