Haris Bin Nasir
Author: Haris Bin Nasir
-
Flutter Firebase Realtime Database Tutorial
How to use Firebase Realtime Database in Flutter? In this article, we will be taking a look at how to work with Firebase Realtime Database In Flutter. Firebase is a Backend As A Service (BAAS) provided by Google and it offers services such as Real-time database, Cloud Storage, Authentication, Hosting and, some other features, that…
-
Basic Django Database Queries
In this article, we will take a look at basic Django database queries, throughout the tutorial I’ll provide you with helpful code examples that will aid your learning about basic Django database queries. Django ORM is a strong abstraction that allows you to store and retrieve data from a database without having to write your…
-
How To Reset Django Database
When working with databases, we frequently find ourselves in circumstances where we must completely reset the database. The database may have been loaded with too much useless data as a result of the addition or removal of some database tables, changes in the database design, logic and relationship concerns, or the database was populated with…
-
·
Top Flutter Interview Questions
The majority of people dread job interviews. As a result, proper preparation before an interview is critical. As a result, in this article, we’ll go over the most often asked Flutter Interview questions. Most importantly, this will increase your self-assurance during the job interview. Here are 15 of the most common Flutter interview questions 15…
-
·
Implement Progress Indicator In Flutter Snackbar
In this article, we’ll learn how to add a circular progress indicator inside a Snackbar in a Flutter application. Progress indicators inform users about ongoing activities like app launches, form submissions, or saving changes. They show the status of an app and guide users on whether they can navigate away from the current screen. Circular…
-
How to write Pandas DataFrame to CSV File
Pandas is a great tool for working with CSV files. I’ll show you how to write a Pandas DataFrame to a.csv file in Python in this post. To write a Pandas DataFrame to a .csv file, you need to use the to_csv() method. Writing a DataFrame to a .csv file Below is an example on how to…
-
Django vs Flask: Which Framework to choose?
Do you want to know which framework, Flask or Django, is superior for web development? Many Python-based web frameworks make it easy for developers to quickly create scalable apps. These frameworks can handle everything from simple to sophisticated websites. Django versus Flask is the most talked-about of the numerous popular options, and for good reason:…
-
·
Extremely Fast Python Web Scraping
A web scraper is a tool that extracts structured data from a website. Using BeautifulSoup, requests, and other Python modules, you may create an efficient web scraper. These solutions, however, are not rapid enough. In this post, I’ll show you how to use Python to create a super fast web scraping tool. Don’t use BeautifulSoup4…
-
Top Django Interview Questions
Top 25 Django Interview Questions A list of top frequently asked Django interview questions and answers are given below. 1) Explain Django. Django is a Python-based web application framework that is free and open source. It’s a server-side web framework for building secure and maintainable websites quickly. 2) What does Django mean? Django is named after Django…
-
Implement Dropdown Menu In Flutter
In Flutter, a Dropdown allows app users to select an item from a drop-down menu. This widget will display the selected item as a drop-down button and icon, indicating that the user has a selection of options to choose from. We will learn how to implement a dropdown list in Flutter during this tutorial. How…