DevGuide ๐Ÿ‡ต๐Ÿ‡ธ
10.9K subscribers
2.57K photos
17 videos
127 files
3.54K links
Join our channel for top-notch programming hacks, epic discussions, and brilliant career moves. ๐Ÿš€

โšก๏ธ Stay connected with me: linktr.ee/AliSamir

๐Ÿ“ To advertise on the channel: https://telega.io/c/the_developer_guide
Download Telegram
Joins In SQL ๐Ÿ”บ
โค9
ููŠ ุนุงู„ู… ุงู„ุณูˆูุชูˆูŠุฑ ู‡ุชู‚ุงุจู„ ุฃู†ู…ุงุท ุชุตู…ูŠู… ุฒูŠ MVC ูˆ MVP ูˆ MVVM ูˆ MVI.

ุฎู„ูŠู†ุง ู†ุฏุฑุฏุด ุดูˆูŠุฉ ุนู† ูƒู„ ูˆุงุญุฏ ููŠู‡ู… ูˆู†ุดูˆู ุฅูŠู‡ ุงู„ูุฑู‚ ุจูŠู†ู‡ู… ูˆุฅุฒุงูŠ ูƒู„ ูˆุงุญุฏ ุจูŠุฃุซุฑ ุนู„ู‰ ุทุฑูŠู‚ุฉ ูƒุชุงุจุฉ ุงู„ูƒูˆุฏ ูˆุชู†ุธูŠู…ู‡.

https://www.linkedin.com/posts/dev-alisamir_softwaredeveloper-softwaredevelopment-programming-activity-7248978308028125184-z3_e
โค6
ู…ู† ุทุฑู‚ ุชุญุณูŠู† ุฅู…ูƒุงู†ูŠุฉ ุงู„ูˆุตูˆู„ ู„ู„ู…ุณุชุฎุฏู…...(Accessibility)
.
.
ุชุจุงูŠู† ุงู„ุฃู„ูˆุงู† ููŠ ุงู„ู…ูˆู‚ุน ุฃูˆ ุงู„ุชุตู…ูŠู… ุจูŠู„ุนุจ ุฏูˆุฑ ูƒุจูŠุฑ ููŠ ุชุญุณูŠู† ุงู„ู€ Accessibility ู„ู„ู…ุณุชุฎุฏู…ูŠู†ุŒ ุนู„ุดุงู† ูƒุฏู‡ ู„ุงุฒู… ุชุชุฃูƒุฏ ุฅู†ู‡ ู…ู†ุงุณุจ ู„ูƒู„ ุงู„ู†ุงุณ ูˆู…ุชูˆุงูู‚ ู…ุน ู…ุนุงูŠูŠุฑ ุงู„ู€ Accessibility. ๐Ÿ’ฏ

โ€”โ€”โ€”-

https://www.linkedin.com/posts/dev-alisamir_webdeveloper-webdevelopment-accessibility-activity-7249381038563508226-x_MY
โค2
ู…ุฌู…ูˆุนุฉ ู…ุดุงุฑูŠุน ู…ูุชูˆุญุฉ ุงู„ู…ุตุฏุฑ ู…ุจู†ูŠุฉ ุจุงุณุชุฎุฏุงู… ุฅุทุงุฑ ุงู„ุนู…ู„ Laravel ุชู‚ุฏุฑ ุชุณุงู‡ู… ููŠู‡ุง ูˆุชุถูŠูู‡ุง ุงู„ู€ CV ๐Ÿ”ป

10 Large Open-Source Projects Built with Laravel

https://laraveldaily.com/post/large-laravel-open-source-projects
ู‚ู†ูˆุงุช ูŠูˆุชูŠูˆุจ ู‡ุชููŠุฏูƒ ุฌุฏู‹ุง ูƒู€ ู…ู‡ู†ุฏุณ ุจุฑู…ุฌูŠุงุช ๐Ÿ”ป

https://www.linkedin.com/posts/dev-alisamir_softwareengineer-softwareengineering-programming-activity-7249693933469921281-dY0z
Career Guru99 helps you get your Dream Job

https://career.guru99.com
Big O Notation: The Secret to Writing Efficient Algorithms ๐Ÿ”ป

From simple array operations to complex sorting algorithms, understanding the Big O Notation is critical for building high-performance software solutions.

O(1)

This is the constant time notation. The runtime remains steady regardless of input size. For example, accessing an element in an array by index and inserting/deleting an element in a hash table.

O(n)

Linear time notation. The runtime grows in direct proportion to the input size. For example, finding the max or min element in an unsorted array.

O(log n)

Logarithmic time notation. The runtime increases slowly as the input grows. For example, a binary search on a sorted array and operations on balanced binary search trees.

O(n^2)

Quadratic time notation. The runtime grows exponentially with input size. For example, simple sorting algorithms like bubble sort, insertion sort, and selection sort.

O(n^3)

Cubic time notation. The runtime escalates rapidly as the input size increases. For example, multiplying two dense matrices using the naive algorithm.

O(n logn)

Linearithmic time notation. This is a blend of linear and logarithmic growth. For example, efficient sorting algorithms like merge sort, quick sort, and heap sort

O(2^n)

Exponential time notation. The runtime doubles with each new input element. For example, recursive algorithms solve problems by dividing them into multiple subproblems.

O(n!)

Factorial time notation. Runtime skyrockets with input size. For example, permutation-generation problems.

O(sqrt(n))

Square root time notation. Runtime increases relative to the inputโ€™s square root. For example, searching within a range such as the Sieve of Eratosthenes for finding all primes up to n.
โค3๐Ÿ”ฅ2
ู…ุณุงุฑุงุช ุชุนู„ู… ุดุงู…ู„ุฉ ููŠ ู…ุฌุงู„ุงุช ุงู„ุจุฑู…ุฌุฉ ๐Ÿ”ป

ุงู„ู…ุณุงุฑุงุช ุฏูŠ ู‡ุชุณุงุนุฏูƒ ุชุฎุทุท ุฑุญู„ุฉ ุงู„ุชุนู„ู… ุฎู„ุงู„ ุงู„ู€ 12 ุดู‡ุฑ ุงู„ุฌุงูŠูŠู† (ุฃูˆ ุฃูƒุชุฑ ููŠ ู…ุฌุงู„ ุงู„ูˆูŠุจ)ุŒ ูˆุฏู‡ ู…ู† ุบูŠุฑ ู…ุง ุชุถูŠุน ูˆู‚ุชูƒ ููŠ ุงู„ุจุญุซ ุนู† ุฅูŠู‡ ุงู„ู„ูŠ ุงู„ู…ูุฑูˆุถ ุชุชุนู„ู…ู‡ ููŠ ูƒู„ ู…ุฌุงู„. โœ…

โ€”โ€”โ€”

https://www.linkedin.com/posts/dev-alisamir_softwaredeveloper-softwaredevelopment-roadmap-activity-7250153662952456192-IM-C
๐Ÿ‘4โค3๐Ÿ”ฅ1
DATABASE IN SQL โšก๏ธ
โค5