Category: CodeWithRonny
How to Creates Professional REST Api in Laravel
Let’s see how we can creates professional Rest Api in laravel. What is Laravel Laravel is an PHP’s free open source and famous web framework, developed by Taylor Otwell to develop web application for MVC (Model View Controller) architectural patterns. It supports backend and frontend development. Laravel is an easy-to-use open-source PHP framework for developing… Continue reading How to Creates Professional REST Api in Laravel
Happy Engineers Day 2024: Wishes, Greetings, and Messages to Celebrate
India celebrates Engineers Day on 15 September every year in honor of Sir Mokshagundam Visvesvaraya. It was celebrated first time in 15 September 1968, remembering 100th birthday of M. Visvesvaraya. The day was suggested by Government of india and Prime Minister Indira Gnadhi in the remember of M. Visvesvaraya and it’s contributions to India. His… Continue reading Happy Engineers Day 2024: Wishes, Greetings, and Messages to Celebrate
How to Run JavaScript in Sublime in Ubuntu Linux
In this blog we will learn How to Run JavaScript in Sublime in Ubuntu Linux step by step. I explained in four steps only. Lot’s of people seaching on google for further help, i found it out. What is Sublime Text++ It is an Open Sources lite weighted code editor/IDE. It is made by C++… Continue reading How to Run JavaScript in Sublime in Ubuntu Linux
Write a Python program to print a specified list after removing the 0th, 4th and 5th elements
Sample List : [‘Red’, ‘Green’, ‘White’, ‘Black’, ‘Pink’, ‘Yellow’]Expected Output : [‘Green’, ‘White’, ‘Black’]
Python List 300 Coding Question Practice with Solution
Python Data Type: List – Exercises Coding Practice and Solution Read our Python List Tutorials before going to solve these below questions [An CodeWithRonny Python Compiler/Editor is available to write and execute the code. Go to the editor] 1. Write a Python program to sum all the items in a list. See Sample Solution 2.… Continue reading Python List 300 Coding Question Practice with Solution