Angular 13 ngx-cookie-service Generate Random Cookie & X-Auth Token

Angular 13 ngx-cookie-service Generate Random Cookie & X-Auth Token

July 19, 2022

In this tutorial, I'll give you an example of how to use TypeScript and Angular 13 ngx-cookie-service to generate a…

Angular 13 Material Select Dropdown with Search Input Field

September 18, 2022

In this tutorial, I will teach you how to make Angular Material Select/Dropdown with Search. We will use NgxMatSelectSearch Angular…

COVID-19 Analytics Report Using Python 3 FPDF Pandas Plotly

July 16, 2022

Python 3 FPDF script to generate COVID-19 analytics report with Charts & Maps using pandas and plotly library. Generate COVID-19…

Create PDF With CSS Styles Using Python 3 Flask weasyprint

July 16, 2022

In this tutorial, I'll give you an example source code of Python 3, Flask, and weasyprint to create PDF documents…

Create PDF Using Dynamic HTML5 Template in Python 3 Flask pdfkit

July 16, 2022

In this tutorial, you will get the full source code of the Python 3 Flask project to create a PDF…

Flutter Open URL inside Web Browser in Android & IOS

July 10, 2022

Flutter Project to Open URL inside Web Browser in Android & IOS. const url = "https://flutter.io"; if (await canLaunch(url)) await…

Flutter Build PDF Documents Viewer From URL Using Syncfusion

July 10, 2022

Flutter Tutorial to Build PDF Documents Viewer From URL Using Syncfusion Library in Android & IOS. @override Widget build(BuildContext context)…

Flutter Create Invoice PDF Template For Products & Payments

July 10, 2022

Flutter Project to Create Invoice PDF Document Template For Products & Payments in Android & IOS For Beginners. main.dart import…

Flutter Create PDF Using Syncfusion Library

July 10, 2022

Flutter Project to Create PDF Document Using Syncfusion Library and Add Text, Images & Table inside it. code.dart import 'dart:typed_data';…

PHP 7 TFPDF Add UTF-8 Fonts Inside PDF Document

July 10, 2022

index.php <?php define("_SYSTEM_TTFONTS", "../fonts"); require('tfpdf.php'); $pdf = new tFPDF(); $pdf->AddPage(); // Add a Unicode font (uses UTF-8) $pdf->AddFont('DejaVu','','DejaVuSansCondensed.ttf',true); $pdf->SetFont('DejaVu','',14); //…