This post is about XML validation against more than one related XSDs – one XSD is included into the main XSD.
Android Dagger2 greenDAO ORM With Service And DAO Layers
This post shows how to create a sample Android app that uses Dagger2 and greenDAO ORM. The codes are also organized in service and DAO layers. Previously, we touched briefly on greenDAO ORM for SQLite. This time we’re using the
Android greenDAO ORM For SQLite Example
This post shows how to use greenDAO ORM for SQLite in Android using a demo app. We start with a simple Android project in the Android Studio, create a few entities, save to and read data from the database. Requirements
Log In As Different User To pgAdmin 4 Web UI
This post shows how to log in as another user to pgAdmin 4 accessible via a web browser.
DOWNLOAD Videos SHARED On Google Photos
This post shows how to download videos shared on Google Photos to another Gmail account. Meaning, the files are not publicly accessible via links, and another Gmail account to access them is needed. This may also be applicable for photos,
Rust Find Duplicate Files With The Same Digests
This post shows how to find duplicate files in Rust with the same digests. The codes display list of duplicate files under the same digest. Personal Use Case I have a lot of files stored in Google Drive. I plan
JavaScript – Convert Function to String and Back
This post demonstrates how to convert a JavaScript function to string and using the same string to declare and execute a method dynamically.
Execute specific unit test in Maven using Eclipse
Okay, your project has hundreds of unit tests, but you only need to execute one or perhaps only all tests from a JUnit test file. Maven allows for that, and Eclipse makes it more convenient. Eclipse JUnit Run Configuration With
List PostgreSQL Configuration Files Using SQL Select
SQL statement to list all locations of configuration files.
DockerFile – Build a Ubuntu 18.04 Docker Image And Update It
There may be hundreds of custom Ubuntu 18.04 Docker images on Docker Hub that have our favorite development tools. However, many of us would rather create our Ubuntu 18.04 Docker image as base image for our various container needs. This