Struggling with binary

This week, I am working on retrieving binary data from the session storage. Even though the data I retrieved are in elf, but I couldn’t proceed to handle the data because the data are corrupted. Hence, I started to find out which method corrupts the binary data. After testing, I found out that the binary data are fine before the Ajax request but when I log the data I got from the response, it is not the same as the Read more

The Wall

Last week, I spent time learning up on MSPI so that I am able to understand how the protocol works so that my drivers would be compatible. Moreover, despite finishing to format and verifying the it on S3LAKU, Dr. Shawn has shed light and helped me understand that this only verifies the DATA side and doesn’t necessary mean the ADDRESS side is correct. Therefore, I have hit a figurative wall in my understanding and have spend the past 4 days Read more

Exploring GDB

When I was trying to simulate the codes line by line, I found out that the logging file for GDB does not contain the information I was expecting. At first, I suspected that there were some mistakes in the source code. However, after testing and understanding the code, I knew I made the wrong assumption. Apparently, things went wrong when I run the GDB. I forgot to add the debugging information to the ELF file I’ve generated. Hence the debugger Read more

Venturing into the Hardware Abyss

After a brief hiatus from work, I met Dr. Shawn on Sunday who gave a short briefing about my subsequent project which was to implement some features for the PIC32 on the board. He then provided me with reading materials to be read in the coming week which were divided into understanding how an RTOS works, familiarising myself with the Harmony library and working with MPLABX. However he told me that the programmer and the boards were all currently with Read more

Last Bug ?

After I finished fixing the last bug , Dr Shawn asked me to do some testing to double check that everything is working properly. He told me to use it like it is not supposed to be used so that I can see whether there are still any bugs that need to be fixed. The bug that I found was users can enter past date when they want to schedule or reschedule the patients. I fixed the bug however in Read more

Mistakes + Http Client Request and Response + Caching

I made a few silly mistakes this week and as a result of this my progress had been dragged down. For example, rdbuf function actually emptied the content of the variable(works like cut and paste) and dumping the information from the variable second time would give an empty info. At first, I thought the problem of the empty content has something to do with misusage of request and response handling but apparently it’s not. Besides this, I also made some Read more

3 months in AESTE

This week is my 12th weeks in AESTE. In the website that I working on there are a few users that have different accessibility. Before this I more focus on Admin role. But this week I have to fix something that related to Field User and Sales User roles. Like I said in my last blog I need to sorted the data accordingly. To be exact what I need to do is when the users log in into the Schedule Read more

Develop the REST API to interact with another REST API

I think I’m nearly done with the REST API except for caching and testing the entire code. This week is quite an interesting week for me because there are two main things that I have to do: make a http request from the code itself to the Dropbox API, and upload a zipped file into the cloud storage. At first, I used Witty to make a http request but it turned out that POCO library is much easier as you Read more

Sort things out

This week I have fixed the last bug left in the website. After a few days I managed to fix it and after that I screenshots the things that I have done and send it to Dr Shawn to ask whether I am doing the right things or not. Then Dr Shawn list a few mistakes that I have done and need to be fix. One of them is the data in one of the pages need to be sorted Read more

Event handling

This week, I am working with javaScript. When I was trying to detect a double click event on the gutter, I made some mistakes but I also learned a lot from that. Mainly, I learn that I should never attach a single click handler and a double click handler to the same object because it is hard to tell which one is fired up. Hence the behavior is not guaranteed. After that, I studied about throttle. As debouncer is closely Read more