Posts

Showing posts from October, 2023

A New Collection of Thoughtful Learning Apps — Now Available on iOS & Android

Image
I’m excited to share a set of mobile apps I’ve recently completed and published on both the Google Play Store and the Apple App Store. These apps are designed with a simple goal in mind: to make meaningful, structured content more accessible, whether you’re studying theology or improving your English vocabulary. 📱 Now Available on Both Platforms All apps are live and available for download: Google Play Developer Page: https://play.google.com/store/apps/dev?id=5835943159853189043 Apple App Store Developer Page: https://apps.apple.com/ca/developer/q-z-l-corp/id1888794100 📖 Theology & Confession Study Apps For those interested in Reformed theology and classical Christian teachings, I’ve developed a series of apps that present foundational texts in a clean, focused reading format: The Belgic Confession Canons of Dort Heidelberg Catechism Westminster Shorter Catechism Each app is designed to provide a distraction-free experience, making it easier to read, reflect, and revisit these im...

Automate Form Filling in PDFs Using iText 5 Library in Java

Image
Have you ever needed to automatically fill out PDF forms with preset data using a Java application? In this post, we'll explore how to achieve this using the iText 5 library. iText is a popular Java library for creating and manipulating PDF documents, including form filling. We'll walk you through the steps to load an existing PDF form, access form fields, set values, and even flatten the form to make it read-only. Let's get started. Step 1: Add iText 5 Library Before we begin, ensure that you   ...

Efficient File Transfer: Pushing and Pulling Files Between a Spring Boot App and an sFTP Server

Image
Are you a developer looking to seamlessly exchange files between your Spring Boot application and an sFTP server? Whether it's pushing files from your app to the server or pulling files from the server to your app, this post will guide you through the process. In this tutorial, we'll cover the steps for both operations to make your file transfers smooth and reliable. Pushing Files from Spring Boot to sFTP Server 1. Dependency Setup: First, make sure your Spring Boot project is equipped with t   ...