How to Digitally Sign a PDF Using a YubiKey

Many businesses today use digital signatures to guarantee the integrity and authenticity of PDF documents. However, storing your cryptographic assets in every computer you use is sometimes inconvenient and potentially a source of security problems. So, in this post, I’ll show how easy it is to sign a PDF with PSPDFKit for iOS and the … Read more

Revolutionizing the Construction Industry with PDF Technology

Over the past few decades, there’s been an increased push toward sustainability in construction. While that often means building “greener” in terms of materials and resources, transitioning to digital workflows in the construction industry is also part of this. Paper workflows have always been standard in the construction industry, with people relying on drawings for … Read more

Migrating Our Web Codebase from Flow to TypeScript

In summer 2021, we migrated our codebase from Flow to TypeScript. There were many reasons for doing this, but the biggest ones were TypeScript’s community, project activeness, and maintainability. Additionally, Flow is no longer an actual open-source project, and it’s hard to depend on a project that deprioritizes bug fixes that aren’t a priority inside … Read more

Extracting Financial News seamlessly using Python | by Nikhil Adithyan | CodeX | Nov, 2021

A hands-on tutorial on using EOD Historical Data’s API for financial news Photo by Roman Kraft on Unsplash Table of Contents:- Introduction- Extracting Financial News with Python– Importing Packages– Basic Program for Extracting Financial News– Advanced Program for Extracting Financial News- Closing Notes It is essential for an investor to keep himself updated about the … Read more

Extracting Financial News seamlessly using Python | by Nikhil Adithyan | CodeX | Nov, 2021

A hands-on tutorial on using EOD Historical Data’s API for financial news Photo by Roman Kraft on Unsplash Table of Contents:- Introduction- Extracting Financial News with Python– Importing Packages– Basic Program for Extracting Financial News– Advanced Program for Extracting Financial News- Closing Notes It is essential for an investor to keep himself updated about the … Read more

Send Email in CodeIgniter 4 With SMTP

In this Codeigniter tutorial, we would love to share with you how to send email from localhost to server in Codeigniter 4. Sending emails in CodeIgniter to multiple recipients, sending HTML emails and using SMTP is very easy because of the new functionality. Now the stable version of the framework is available to download from the official website. … Read more

Fitting Text into a Bounding Frame on iOS

While working with text in your iOS projects, you might have encountered the following problem: Given a fixed frame, what would be the optimal font size to fit the text exactly inside that frame? Here at PSPDFKit, we’ve encountered this problem a few times and attempted a variety of solutions. In the end, we arrived … Read more