Posts

CSC Final Blog

Image
At the beginning, We have a question Why Computer Science fascinating people? The Beginning of my CS Interest      In the 21st century, we have noticed the fact that Computer Science is everywhere across the world. Technology and porgramming exists as small as a mobile phone in everyone's pocket, as big as the super CPU in the super Computer.      The reason why I am interested in Computer was back to high school. When I tried to build a Hugh building in My Minecraft city. I spent a lot of time trying to make my building higher and higher. My friend, However, told me that my pace was too slow. He taught me that if I want save my time, I can just simply use some special codes which helped me to  complete the entire building in a minute. I was surprised at that moment and determined that I want to study Computer Science in My University Life because it so amazing! TOO Hard!!!!!!  NO! Just calm down and read every Line!    While I don’t have any Programming experience

CSC 104 Last week discussion week 13 (Thanks All)

Image
Finally, this is the last blog for this course, in addition to my last blog I will post afterward , I want to say thanks to everyone who helped me when I have troubles and difficulties! Thanks for all the TAs, who helped me a lot when I was struggling in understanding the codes and functions. Thanks for all my friends, who helped me and encourage me to work harder. Thanks for Prof. Jacqueline, who gave me all the concept of Computer Science! I will work harder next semester on CSC 148! Thanks all

CSC 104 weekly discussion week 11,12

Image
Hi! welcome to my week 11 and week 12 discussion for CSC 104 I decided to put two weeks discussion for the week 11 and 12 because I want to discuss more on the project 2. Recently I just finished the project 2, which I think is more interesting than project 1, in Project 2, we were asked to discover a model of people getting infected in the disease on the different scenario. Eventually, there will be a finished animation at the end of the project indicates the result of the model. There are three Values in the project, Infected, immunity, and Infectable, the infectable will be represented as the blue dot in the animation. The people getting infected will be the red dot, and the immune people will be green. I think this project is interesting for me since how I notice by building up my own knowledge  I can eventually get the model of all the interesting facts.

CSC 104 weekly discussion week 10

Image
Hi, welcome to my week Discussion CSC 104 Week 10  This week we continue discussing the condition function and how it applied to different tasks. Now I have a more clear image of what condition function is and how it applied to recursion functions. Like what Prof. Jacqueline taught in the class, my thinking method and logical is similar to her (list the question, what we need to get, draw the design in our mind and finally get the code we need). The recursion function is also interesting to discover. I think a lot of interesting functions are all based on Recursions. such as limiting words characters, doing sort in a particular string, or even make the function to run again and again and ultimately achieve the answer we want. Hence, I will be more focus on recursion on the remaining semester.

CSC104 weekly discussion week 9

Image
Hi welcome to my CSC weekly discussion week 9  This week is the reading week. During the break, I reviewed everything about CSC 104 since there will be our second term test 2 after the break. I mainly focused on reviewing the condition function and the local function, which seems to be the, most challenge part of the Term test 2. Some recursion functions are tricky to follow. I discovered my own way when dealing with such questions that I always follow what the function said and copy down every single important detail in the function, After that everything should be clear. The other topic I was focused was the part which I lost the mark on the TT1. In TT1, I made a lot of half-mark mistake due to missing details. Hence, when I was doing the problem, I will try my best to write down every single step of the function. In this way, it is essential for me since when I was writing down all the step, I am also checking the answer again. Hope everyone will enjoy their reading week and

CSC 104 weekly discussion week 8

Image
Hi everyone! Welcome to my CSC weekly discussion week 8  Today I will talk about the material we've taught in class, which is very interesting for me. This week we mainly focused on the image and the how to form the image using the programming skill.  By utilizing the function (Image->Color), we can get the actual data from each pixel in the picture. Becoming Only Black and White  We can also invert the color or exchange red pixel to green, green pixel to blue as well as blue pixel to red.  I feel comfortable in this section since I always use Photoshop to change the property of the image, Now I have a clear understanding of how the photoshop works in general. If I l know more advanced functions in future, I properly can develop another software like Photoshop 🤗.

CSC 104 weekly Discussion week 7

Hello! Welcome to my CSC 104 weekly discussion!  Today I want to talk something about I learned this week, "Local Function". Lets look at the original function: (define (a some-settings)   (local [define b ......                 .......     ]     (the function that can use a and b together  ))) So this function can understand us to run the local first, then run the remaining function. If we don't have the local function, what will we do? We need to define the function ahead and then run the remaining function, which will cause some issues and space for the program. Since local function only will be defined inside the function, it will not influence other functions, which is essential and useful all the time. For a lot of my classmate, they do not understand the concept of the local function, but my strategy is that to understand what we need first (the input of the function) and then design the remaining function. Sometimes I also fou