Haris Bin Nasir
Author: Haris Bin Nasir
-
Python Caption Images: Blip Image Captioning Python
Introduction In this blog post, we will explore how to caption images using Python by leveraging the BLIP model along with the Hugging Face Transformer library. We’ll also build a simple web application using Gradio to provide a user interface for captioning images. This guide will walk you through the steps to set up the…
-
·
Flutter Launch URLs Tutorial: url_launcher Guide For Flutter
In this blog post, we will explore how to use the url_launcher package to launch various types of URLs from within a Flutter application. We will cover launching web URLs, mail URLs, and more. Let’s get started! If you prefer watching a video tutorial on how to launch URLs in flutter, here is a link…
-
·
Flutter Camera App Tutorial: Access Device Camera Flutter Guide
Introduction In this tutorial, we explore integrating the camera in a Flutter application. Learn essential steps to set up the camera, handle permissions for both Android and iOS, and implement picture-taking functionality. This guide is ideal for developers wanting detailed step-by-step instructions for integrating camera functionality in their Flutter app. If you prefer watching a…
-
·
Flutter Bottom Modal Sheet Tutorial | Bottom Sheet Flutter Guide
In this guide, we’ll walk through how to implement a bottom modal sheet in a Flutter application. By the end, you’ll have a fully functional app that displays a modal bottom sheet with an image, text, and a share button. If you prefer watching a video tutorial on Implementing a Bottom Modal Sheet in Flutter…
-
·
How To Send Email In Django
Beginner Guide To Sending Emails using Django & SMTP In this article, we’ll take a look at how to setup Django to send email using SMTP. It’s quite simple to send emails using Django. I’ll walk you through the procedures in this brief tutorial so you can set up your Django application, and start sending…
-
Setup environment variables in Django
In this article, we’ll take a look at how to setup our Django project to utilize environment variables in Python. Hence, our Django application can use environment variables to retrieve sensitive information that it requires for correct operation such as SECRET_KEY. Simply explained, environment variables are a collection of dynamically named values that are kept…
-
Sort Lists Dart & Flutter: 5 Sort Examples Dart
In this article we’ll take a look at how to sort lists in Dart (and Flutter as well) in this post, which is a typical activity that you’ll encounter in the vast majority of your projects. The examples are arranged in order of difficulty, from simple to sophisticated, and cover the majority of real-life circumstances.…
-
·
Django ModelForm – Creating Forms using Django Models
Django ModelForm is a class in a Python that converts a model into a Django form directly. If you’re creating a database-driven project, you’ll almost certainly have forms that correspond to Django models. ModelForms in Django is an utility class that lets you generate a Form class from an existing Django model. It appears to…
-
Flutter State Management Using Provider
My first Flutter project would have been a lot better if I had a solid state management solution implemented for my Flutter app. Choosing the best technology for state management , would have made my life far more easier. So in this article we’ll be taking a look at how to manage state with the…
-
·
How To: Load Asset Files Into Flutter
How to Solve Unable To Load Asset In Flutter? In this article, we will take a look at how to load asset files In Flutter. Both code and assets may be included in Flutter apps (sometimes called resources). The problem “Unable to load assets In Flutter” appears from time to time in Flutter. So, in…