Introduce yourself here!

Hello world!

I'm a real human who uses the ODK suite as key tools.

I'm based in the Philippines and working on rice research. I got involved in the ODK community when I started working with a project already using ODK tools.

In my spare time, I usually update myself with the newest innovations in the realms of science and technology.

FUN FACT

Did you know that camelCased XLSForm field names will become SNAKE_CASED MySQL table attributes?

When you design an XLSForm and your naming convention for the field names is camelCase, on the back-end part, the generated MySQL table attributes will be rendered upper cased snake_case.

Example

This structure of XLSForm,

+------+-----------+------------+
| type | name      | label      |
+------+-----------+------------+
| text | firstName | First name |
| text | lastName  | Last name  |
+------+-----------+------------+

will become like so in the MySQL database table structure

+------------+--------------+
| Name       | Type         |
+------------+--------------+
| FIRST_NAME | varchar(255) |
| LAST_NAME  | varchar(255) |
+------------+--------------+
14 Likes