[Ubuntu] How to build LAMP server 1 of 3 – Server

LAMP server used to be installed as default. For 18.04 and 20.04, LAMP server can be installed as below. For 22.04, Apache and MySQL server gets installed for LAMP server as below. Update It is often recommended to run sudo apt-get update and sudo apt-get upgrade before installing packages. You can run sudo unattended-upgrade for […]

[AWS] RDS Instance changes in the cluster with no (much less?) Downtime.

(Source: https://stackoverflow.com/questions/54708210/how-to-change-aws-rds-instance-type-without-downtime) Instead of changing the instance type of the current instance, Add a new instance first. Then, you can delete the old instance in the cluster. There is no way to add the writer instance, So. In order to change the type of a writer instance. This way you will have nearly no downtime. […]

[Qualtrics] How to use Regular Expression for field validation

Qualtrics provides many built in options for field validations. However, it is required to apply more sophisticated validation than default options. Regular Expression can be used for this kind of situation. First, if you need to allow only alphabet characters with spaces. You can select “Custom Validation” for Validation Type. Then, you can add regular […]

[Qualtrics] How to limit input text box size

It is possible to limit the size of text box by setting “maxlength” attribute of input text box JavaScript is used for this purpose to be precise it is jQuery script. jQuery can be inserted for each question by clicking gear shape icon. It will give you the option for “Add JavaScript”. The code below […]

[Qualtrics] How to set the maxlength for input text

When Custom Validation is used. It can be confusing for users because error messages do not show the exact reason for the error. The JavaScript code below can stop a respondent to type further than intended. The maximum length of the input text box below is set to 19. Javascript code can be inserted as […]