Skip to content

Instantly share code, notes, and snippets.

Name: Flash
Serial: eNrzzU/OLi0odswsqnHLSSzOqDGoca7JKCkpsNLXLy8v1ytJTczVLUotKNFLzs8FAJHYETc=
if anyone wants to thank ETH: 0x527c2aB55b744D6167dc981576318af96ed26676
Thank you!
private void processARTAccessData(JSONObject jsonObject,Patient patient){
HashMap conceptsCaptured = getARTAccessRecordsConcepts();
UserService userService = Context.getUserService();
User user = userService.getUserByUuid("9bd6584f-33e0-11e7-9528-1866da16840d");
Set<Obs> obsList =new HashSet<>();
try {
String visit_date = getJSONObjectValue(jsonObject.getJSONObject("0"), "visit_date");
String dateFormat = ugandaEMRSyncService.getDateFormat(visit_date);
@dbaluku
dbaluku / MySql-5.6-installation guide.md
Created November 29, 2022 07:08 — forked from vinodpandey/MySql-5.6-installation guide.md
Install MySQL 5.6.xx on Ubuntu 18.04 & Ubuntu 20.04

MySQL Download URL

https://dev.mysql.com/get/Downloads/MySQL-5.6/mysql-5.6.46-linux-glibc2.12-x86_64.tar.gz

Open the terminal and follow along:

  • Uninstall any existing version of MySQL
sudo rm /var/lib/mysql/ -R