Sorting By Md. Babul Hasan (NoYoN) 02 Dec, 2024 Post a Comment def selection_sort ( lst ): for i in range ( len ( lst )): min_index = i for j in range ( i + 1 , l…
web Understanding JWT Token Authentication and Authorization Based on Django By Md. Babul Hasan (NoYoN) 11 Oct, 2024 Post a Comment Security is one of the most important aspects of modern web applications. Authentication and authorization are two…
cse Understanding Django Model Fields: A Complete Reference for Developers By Md. Babul Hasan (NoYoN) 10 Oct, 2024 Post a Comment In Django, models are Python classes that subclass django.db.models.Model . Each model corresponds to a database table,…
research LATEX Thesis Template Mainly for PSTU-CSE By Md. Babul Hasan (NoYoN) 02 Oct, 2024 Post a Comment Official project/thesis template with detailed guidelines for formatting and documentation. First, copy the project, th…
research How to Add Citations in LaTeX using Overleaf By Md. Babul Hasan (NoYoN) 01 Oct, 2024 Post a Comment Learn how to easily add citations in LaTeX using Overleaf with the IEEE conference format, explained in Bengali. This s…
research How to write a research paper in LaTeX using Overleaf - IEEE Format By Md. Babul Hasan (NoYoN) 01 Oct, 2024 Post a Comment Creating a research paper in LaTeX using Overleaf, particularly in IEEE format, is a structured process. Below is a …
Programming & Tech Support By Md. Babul Hasan (NoYoN) 01 Oct, 2024 Post a Comment Welcome to Programming & Tech Support, your go-to resource for insightful articles, tips, and tutorials on coding, …
trick How to Read Research Papers for Free Using Sci-Hub: A Step-by-Step Guide By Md. Babul Hasan (NoYoN) 30 Sep, 2024 Post a Comment Accessing academic research papers is crucial for students, researchers, and professionals across various fields. Howev…
cse WSGI vs ASGI: Choosing the Right Protocol for Your Python Web Application By Md. Babul Hasan (NoYoN) 30 Jun, 2024 Post a Comment In the world of Python web development, choosing the right protocol can significantly impact the performance, scalabili…
cse Understanding MVC Architecture in Django By Md. Babul Hasan (NoYoN) 29 Jun, 2024 Post a Comment Model-View-Controller (MVC) is a design pattern that separates an application into three interconnected components. Thi…
RDMS Understanding Many-to-Many Relationships in System Design By Md. Babul Hasan (NoYoN) 11 Jun, 2024 Post a Comment Many-to-Many Relationships A many-to-many relationship occurs when multiple records in one table are associated with mu…
cse What is Cloud Computing? By Md. Babul Hasan (NoYoN) 04 Jun, 2024 Post a Comment Cloud computing is changing the way we use technology, making it easier, cheaper, and more efficient to handle data and…