Skip to main content

Http-Parser: my first open source project

Starting...

  Over the past 2weeks,  I have been trying to implement command-line tool for finding and reporting dead links (e.g., broken URLs) in a file. Although I had a bit of struggle at the beginning, I was able to get in track by checking Slack communication and asking professor. What I have learned from this  release 0.1, is how I can start open source project. I was not comfortable since there is no strict instruction, also, it was open choice which language I like to work on.  I just started to implement the http parser with node.js.


After 1st push...

    After I implemented the application, I realized the performance seems really slow.  Thus, I post question on slack and the professor suggested solution via git. It was actually first time for me that anyone was looking at my git, fix, and pull request.  It was great experience that I could see all changes were applied to my master once I clicked the button.

Ex)

First code look like:


Fixing code:


    Of course, there are also more changes to restrict method to header and timeout not to spend a lot of time.


Make it better

    Today, I have great experience by browsing others git repositories since they chose different  coding style and libraries and there are some I had thought about. To be honest, I am still very careful that I create an issue or contribute some because my task or view may be wrong or maybe I have some concern about judgement. Anyway, today I contribute to create issues on other's repository and even my one.



    During this parts, I have learned what is label, what is milestone and what is project which are just awesome!


Conclusion

    I was really considering if I should drop this course because I had no idea and there is no clear goal even though it was only for me. However, instead of keep silence, I tried to ask a lot about my concern and my professor said I am on right way so now I am very happy for taking this course although still I am not confident LOL.




Comments

Popular posts from this blog

Getting more difficult?

  Release 0.2.4 Now I am at almost the end of release 0.2 and I chose the telescope as the final contribution. To be honest, this is huge, well organized and great project and it is first time to take a look. Unlike my previous assignment during the previous terms, there are tons of what I have never seen. First, docker compose is great and the document for contribution is very clear. Of course, I had no idea when read it first, but every time as my professor mentioned, there was a great guy, helper?, helping me a lot to set up the project. Although I had no idea about Elastic-search and Redis-cache server, I was happy to take a time to look though the codes and to understand. Again, trying to understand an issue is always hard for me and sometimes I am really not happy when somebody does not understand my question. This happened again. The reason why I attached the picture is that I am still confused about the whole process of this project especially about why frontend didn't get ...

Working with telescope

   Starting... This lab is to help students to communicate with a big project, telescope, and understanding how to handle with the set it up. There were a lot of trouble since many of technologies are new for me such as docker, docker-compose, elastic search ladis, pino, and so on. Let's jump in the big project . Progressing... The first step I took is to install wsl 2. It is not very difficult since microsoft provides good instruction, link . Although the telescope provides very good instruction,   here , It was not really easy for me to get a concept and set it up successfully. Therefore, I needed to ask a lot of questions on slack, telescope channel. Some helped me a lot and explained so much and finally I got it work successfully.  After my server was working locally, I didn't have any issue to get the response from the url, http://localhost:3000/posts.  To communicate with the local server, actually I needed to change my code a lot since I wanted to sp...

Finally, release my first open source.

  Starting... This lab is to release my product to install easily. Instead of cloning or downloading and setting it up manually, it provides a lot of convenience for users to install it. I chose NPM since I used nodejs. NPM  is a great site to help develpers to release their git repository in the site.  Progressing... First, I signed up on npmjs.com and logged in the site on the console to release my repository. I had to set up a lot of things like 'npm init', modifying readme and package.json to be ready.  Second, I tried to release my repository by the command, 'npm publish --access public'. Unfortunately, the name, http-parser, was already taken, so I needed to change my name. I chose my name as http-checker and tried to release it again. At this time, I got 403, forbidden error. I spent a lot of time to figure out but it was actually due to not verified account. Once I got the verified email account, finally, I got the release version of my repository. Here is my...