Md. Musfiqur Rahamanmusfiqdehan.hashnode.dev·Dec 7, 2022Migrating my Django app from Heroku to RailwayHeroku is slowly closing all its free services from 28th November. My free deployments were also removed. So, let's migrate them from Heroku. What is Heroku? Heroku is one of the most popular cloud PaaS (Platform as a Service) platforms. If you are a...3 likes·207 readsHeroku
Md. Musfiqur Rahamanmusfiqdehan.hashnode.dev·Oct 21, 2022CRUD Operations in a JavaScript ArrayCRUD stands for "Create, Read, Update, and Delete," and refers to the four basic operations you can perform on data in a database or data store. These operations can also be performed on arrays in JavaScript. Here's how you can perform each of these ...27 readsJavaScript
Md. Musfiqur Rahamanmusfiqdehan.hashnode.dev·Oct 4, 2022Deleting Items from a JavaScript ArrayIn this article, we will discuss how we can delete or remove items from the start, middle, and end of a JavaScript Array. Taking an Array First, let's take an array name fruits. var fruits = ["Banana", "Orange", "Apple", "Mango"]; Now we will see di...66 readsJavaScript
Md. Musfiqur Rahamanmusfiqdehan.hashnode.dev·Jul 4, 2022Functions in PythonIn this article, we will learn about functions using Python Programming Language. What is a function? Functions are Self-contained modules of code that accomplish a specific task. Functions usually take in data, process it, and return a result. On...64 readsPython