Posts

Showing posts with the label Lab3

Getting Ready for Hacktoberfest

My Hacktober Plan (may update later) Review Vue.js Write a mini program use uni-app (the mini program is about generating arithmetic problem randomly) Figure out if there is any issue or any feature should be improve during use it Three issue I may focus on https://github.com/dcloudio/uni-app/issues/829 https://github.com/dcloudio/uni-app/issues/820 https://github.com/dcloudio/uni-app/issues/812 these three issues are about image, video and css style can not show properly, I pick them as a start. They seems like easy to fixed :) Hacktoberfest is introduced by my professor. The Open Source Development  bring me to a new world about learning and contributing.    

Assembler Lab

Image
Write at very first beginning After I finally finish all the tasks, I feel that there is a remarkable thing has been accomplished. It was hard at first, I tried hundreds of times, changed every single of element to figure out what does this syntax means. After I could read those code, the logic is simple. Everything has to be placed in its own place(address). I will choose gas, it seems more straight forward to me.   Login on x86_64 $ ssh siwen@xerxes.cdot.systems Download the code examples and unpacking the archive $ cp /public/spo600-assembler-lab-examples.tgz . $ tar xvzf spo600-assembler-lab-examples.tgz hello.c /* Hello World in traditional C using printf() */ #include <stdio.h> int main() {         printf("Hello World!\n"); } hello2.c /* Hello World with a direct write to stdout (file descriptor 1) */ #include <unistd.h> int main() {         write(1,"Hello World!\n",13); } hel...