en
Feedback
Code With MEMO

Code With MEMO

Open in Telegram

Join a community of passionate learners and builders! We dive deep into: 🔹 Machine Learning (Algorithms, Models, MLOps) 🔹 Coding Tips & Best Practices (Python, AI/ML, Automation) 🔸 collaborative problem solving (challenges ,Q&A....) @codewithmemo

Show more
The country is not specifiedTechnologies & Applications57 012
200
Subscribers
+124 hours
No data7 days
No data30 days
Posts Archive
🌟 Hey, Fam 🙌🙌 How is going on final exam? I want to take a moment to check in with all of you! Your support means the world to me, and I’m curious to know how committed you feel to my community. Your feedback will help me create even better content that resonates with you. Thank you for being part of this journey, and let’s continue to grow together! 💖 give Comments or reaction !!! Share @codewithmebrie @codewithmebrie

Task Management System Roadmap
Overview and setup ⏰ Project Overview and Requirements • Define the project scope and objectives. • List all features (User Authentication, Task Creation, Task Management, Task Status, Search Functionality).   ⏰ Technology Stack Selection • Choose technologies for:   • Frontend    • Backend .   • Database -MYSQL/SQLSERVER/FILE. ⏰ Development Environment Setup • Set up version control (Git/GitHub). • Initialize the project structure for both frontend and backend.   Core Development ⏰ User Authentication • Implement user registration and login functionality. • Set up session management. ⏰ Task Creation Feature • Develop the API for creating tasks. • Create a frontend form for task input . ⏰ Task Management Features • Implement the ability to update and delete tasks. • Create a UI for task management. ⏰ Task Status Management • Add functionality to mark tasks as complete or incomplete. • Update the UI to reflect task status changes. ⏰ Search Functionality • Implement search and filtering options for tasks. • Create a search bar in the UI. ⏰ UI/UX Enhancements • Style the application • Ensure responsiveness across devices. ⏰ Testing Core Features • Conduct unit tests for backend APIs. • Test frontend components and interactions. Finalization and Deployment ⏰ User Feedback • Gather feedback from users or peers. • Make necessary adjustments based on feedback. ⏰ Deploy the Application • Deploy both frontend and backend applications. • Verify that all features work correctly in the production environment.   ⏰ Final Review • Conduct a final review of the application. • Prepare a demo presentation    
                                                                                                                                                                              Follow Mebrie share @codewithmebrie @codewithmebrie

If you want to go far, ask those who have returned
The Chinese Proverb 🫡

Loading............ @codewithmebrie

challenges day one: Set the roadmap and select platforms . . . @codewithmebrie @codewithmebrie

Use Python, Mysql/Sqlserver/file your UI is either GUI or CLI

Project Title: Task Management System Project Overview The Task Management System is a web-based application that allows user
Project Title: Task Management System Project Overview The Task Management System is a web-based application that allows users to create, manage, and track their tasks efficiently. Users can organize their tasks into categories, set deadlines, and mark them as complete. The application aims to enhance productivity and help users stay organized. FeaturesUser Authentication: Allow users to create accounts, log in, and manage their tasks securely. • Task Creation: Users can create new tasks with titles, descriptions, deadlines, and priority levels. • Task Management: Users can update, delete, and categorize tasks based on their needs. • Task Status: Users can mark tasks as complete or incomplete. • Search Functionality: Users can search for tasks using keywords or filters     "They say procrastination is the art of keeping up with yesterday. Let's manage those tasks before they manage us!!!! Grow with together @codewithmebrie

Repost from Hanix
Summer Camp and Internships 1. INSA Cyber Talent Challenge – 2017 E.C. Tracks: Cybersecurity | Development | Embedded Systems | Aerospace Apply: Here 2.iCog Labs AI Internship – 2025 Batch 1 Tracks: AI | ML | Robotics | Bioinformatics | Blockchain Deadline: July 31 Apply:Here 3. Kuraz Technologies Hybrid Internship Type: Summer | Unpaid | Hybrid Deadline: May 31 Apply: Here 4. Tewanay Engineering Summer Internship Tracks: Front-End | Back-End | Mobile App Development Deadline: May 31 Apply: Here @HanixJourney #Internship

🌟 Hello, Code with Memo family! 🌟 I hope you're all doing great! I'm excited to continue our journey into the world of Python together. Whether you're a beginner or looking to sharpen your skills, there's always something new to learn. Let's keep coding and supporting each other! Happy coding! 🐍💻

Repost from IS LEETCODERS
🚨 Heads Up, Leet Coders 📅 Today @ 8:00 PM Join Gedion Zeyede for interesting Python live session 💻 🚀 Fast tips. Real talk
🚨 Heads Up, Leet Coders 📅 Today @ 8:00 PM Join Gedion Zeyede for interesting Python live session 💻 🚀 Fast tips. Real talk. Live coding. 📍 Be there or miss out! Let’s code, grow, and glow! ✨🔥

how do you see it?
Anonymous voting

# To convert Celsius to Fahrenheit
celsius = 25
fahrenheit = (celsius * 9/5) + 32
print(celsius, "Celsius is equal to", fahrenheit, "Fahrenheit.")

# To find the sum of n natural numbers
n = 10
sum_n = sum(range(1, n + 1))
print("The sum of the first", n, "natural numbers is:", sum_n)

# Test whether a given year is leap year or not
year = 2024

if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0):
    print(year, "is a leap year.")
else:
    print(year, "is not a leap year.")

# Circulate the value of n variables
def circulate(values):
    return [values[-1]] + values[:-1]

n_values = [1, 2, 3, 4, 5]
print("Before circulation:", n_values)
n_values = circulate(n_values)
print("After circulation:", n_values)

# Exchange the value of two variables
a = 5
b = 10
print("Before exchange: a =", a, ", b =", b)

# Swapping values
a, b = b, a

print("After exchange: a =", a, ", b =", b)

#CHECKING FIBONNACCI SERIOUS OF A NUMBER x = input("Enter an integer: ") def fibonacci(x): list1=[0,1] for i in range(2,int(x)): list1.append(list1[i-1]+list1[i-2]) return list1 print(f"FIBONACCI : {fibonacci(x)}")

#CHECKING FACTORIAL OF THE NUMBER x = input("Enter an integer: ") factorial =1 for i in range(1,int(x)+1,1): factorial*=i print(f"The factorial of the {x} is {factorial}")

#CHECKING ARMSTRONG NUMBER x = input("Enter an integer: ") digit = len(str(x)) total = 0 for i in str(x): total +=pow(int(i),digit) if total == int(x): print("the number is armstrong!!!") else: print("the number is not armstrong")

If the execution of most persons are nice, the prize is due to the time that he/she set in the comment