Haris Bin Nasir
Author: Haris Bin Nasir
-
·
Dart Programming Introduction -Dart Language Fundamentals Guide
Dart is a versatile and powerful programming language primarily used for building mobile, desktop, server, and web applications. This post will cover the fundamentals of Dart programming, including variables, data types, strings, numbers, functions, decision-making, loops, classes & objects, maps, lists, futures, async/await, and null safety. Each section provides code examples to help you understand…
-
·
Flutter News App Tutorial | REST API Powered News Application Application Guide
In this detailed guide, we will build a news app using Flutter that fetches and displays news articles from a REST API. You will learn how to set up the Flutter project, obtain the necessary API key, and implement the core features of the app. We will also cover essential aspects like managing network requests,…
-
·
Provider State Management Flutter: provider Package Flutter Guide
In this tutorial, we’ll explore the process of implementing state management in Flutter using the Provider package. This approach helps you maintain the state of your Flutter applications efficiently, making your code more scalable and easier to maintain. If you prefer watching a video tutorial here is a link to that. Introduction to Provider in…
-
·
Shared Preferences Flutter Tutorial: shared_preferences Flutter Guide
In this tutorial, we’ll dive into implementing shared preferences in a Flutter app to persist user data across sessions. Shared preferences are essential for storing small amounts of data like user settings, login information, and other preferences that need to be retained between app launches. In this guide, we’ll walk you through creating a BMI…
-
·
Localize Flutter Application: flutter_localization Package Guide
In today’s tutorial, we’ll explore how to implement localization in a Flutter app. Localization allows your app to support multiple languages, making it accessible to a global audience. We’ll guide you through the setup process, configuring supported locales, and creating a user interface that adapts to different languages. Once you have your Flutter environment ready,…
-
·
Flutter PDF Viewer | Working with PDFs In Flutter
In this tutorial, we’ll guide you through creating a cross-platform PDF viewer using Flutter. The viewer will support features like zooming, scrolling, and navigating through pages, providing a smooth user experience on both mobile and desktop platforms. If you prefer watching a video tutorial here is a link to that. Setting Up the Project Structure…
-
Generate QRCode Using Stable Diffusion & ControlNet | Automatic 1111 QR Code Generation Guide
In this tutorial, we’ll explore how to harness the power of AI and ML with Stable Diffusion and ControlNet to create visually stunning yet functional QR codes. These QR codes can be scanned by any device without losing their encoded information. If you prefer watching a video tutorial on generating QR codes using AI and…
-
Python Age and Gender Detection Using OpenCV | Python CNN Project Age & Gender Classification
In this tutorial, you will learn how to create a Python script that uses OpenCV and pre-trained neural networks for detection of age and gender of a person in an image. This project involves setting up the necessary dependencies, loading pre-trained models, and running the script to make predictions. Follow these steps to create your…
-
·
Python RAG PDF Chat using Google Gemini – Retrieval Augmented Generation Guide Python
Learn how to build a PDF chatbot with Python using Gemini API, LangChain, and ChromaDB. This tutorial walks you through creating a chatbot that can interact with and extract information from PDF documents. If you prefer watching a video tutorial here is a link to that. Prerequisites Before we start, ensure you have the following…
-
·
Python Text To Speech Local – Coqui TTS Python Guide
In this tutorial, we will show you how to generate speech from text using Python. We’ll be using the Coqui TTS package and Gradio to create a user-friendly interface. This allows you to input any text and generate audio on your system without needing to pay for a service. The generated audio can be downloaded…