Posts

Mastering the Art of Writing Efficient Code: Lessons from a Coding Competition

  Introduction The inter-university coding competition started in a huge lab. Many students were confident about winning, and John was also excited about his chances. An alarm indicated that the competition had begun, with a duration of one hour. All supervisors provided initial instructions to start the test, which included three questions that all students had to solve within the hour. The question paper was displayed on all the students' computers. While everyone read the questions and began trying to solve the problems, John took a different approach. He grabbed a rough sheet and jotted down some sequences and algorithms to tackle the problems. He spent the first few minutes reshaping the problems, paying attention to details, and creating the right algorithms. Once he finished his draft, he started coding. John solved all three questions in 50 minutes and completed the task. He was declared the winner, securing the first position. Efficient and well-written code is in ...

Tips to become a productive programmer.

Becoming a good programmer involves a combination of education, practice, and continuous learning. Here are some tips to help you on your journey to becoming a proficient programmer: 1. Learn the Basics:     Start with a solid foundation in the basics of programming languages, data structures, and algorithms. Understand concepts like variables, loops, conditionals, functions, and object-oriented programming. 2. Choose a Language:    Select a programming language to focus on initially. Popular choices for beginners include Python, JavaScript, or Java. The language you choose will depend on your interests and the type of applications you want to develop. 3. Practice Regularly:     Programming is a skill that improves with practice. Code regularly and work on small projects to apply what you've learned. Use online coding platforms, participate in coding challenges, and contribute to open-source projects. 4. Build Projects:     Apply your knowledge by...

List of Projects

 Ardunio Projects Arduino Home Automation Self control Rebotic Car Links: https://www.youtube.com/watch?v=hrS5MoOoH9s https://www.youtube.com/watch?v=zhwKN8mLOzE Tools: Arduino uno, Ardunio mini , hardware components, arduino programming  Android Mobile Applications Food ordering application Deaf and dump aid application Smart math mobile application Confectionary items management system Restaurant orders booking application Matrimonial application Android car manager Budget analyzer links https://www.youtube.com/watch?v=RY-1HmFx9DI https://www.youtube.com/watch?v=pyiWN7gKcoM&t=6s https://www.youtube.com/watch?v=VGY-HzcWZJw&t=12s https://www.youtube.com/watch?v=3QLg0c3iHpw&t=395s https://www.youtube.com/watch?v=1_VMXQNMAHo https://www.youtube.com/watch?v=OyAHm2YfIdg&t=337s Tools Android studio, Java SQLite,DB Browser, Firebase, JSON  Desktop Applications Face Recognition based attendance system Survey Builder, Real Time Financial Data ware house Hospital M...

Arduino Home Automation

Image

Self Controlled Robotic Car

Image

elibrary Web application Demo using jsp/servlet and my sql

Image

How to insert view update and delete data using PHP and MySQL step by step with Graphics

 How to insert view update and delete data using PHP and MySQL step by step with Graphics Step 1 : create table in mySQl using query CREATE TABLE `users` (   `userid` text NOT NULL,   `name` text DEFAULT NULL,   `password` text DEFAULT NULL,   `email` text DEFAULT NULL,   `mobile` text DEFAULT NULL,   `address` text DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; step 2: create a configuration file to connect mysql database with the php  <?php session_start(); $con = mysqli_connect('localhost','root'); mysqli_select_db($con,'fyp'); if(mysqli_connect_error()) {     die("DB Connection Failed"); } ?> Step 3: Create from for insert operation name as AddUsers.php and paste the code  <?php include 'config.php';?> <?php  if(isset($_POST['done'])) { if(!empty($_POST))  {     if(!empty($_POST['userid'])&& !empty($_POST['password'])) {           $userid = $_POST['user...