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.
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.
Plot XY Graph in Julia Using Data Points
Plotting numbers in the XY graph in Julia can help us create the big picture. This post shows how to plot data points in a graph using the Plots and GR packages. These data points are our x-y coordinates. Install
Rust Array Size Limit To 32 No More In 1.47.0 Release
Before 1.47.0, there is the Rust array size limit size of 32. This is evident when we get the E0277 error that has the following message.
1 | arrays only have std trait implementations for lengths 0..=32 |
When Do We Get The Error? Personally, I have never encountered this error