Skip to main content

Lab 8 - Contribution Goals for CDOT Telescope & LifeStyle E-Commerce

After successfully completing Hacktoberfest, we move onto bigger and better challenges in open source. By November 15th I have the following goals to complete:

1. Contribute to a bigger issue on an open-source project (no more "good-first-issue" tags).
2. Contribute to CDOT Telescope, an internal project built by my fellow classmates.

In this post I will break down my issue and goal for each goal.


External Project- LifeStyle E-Commerce 


This is a project I found in hacktoberfest and fixed a styling alignment bug for. You can find the full details of my contribution in my previous post.  If you are already familiar wit the project, you can skip the overview section.

Overview
Lifestyle E-ommerce is a front-end project for building an online store. It supplies various well designed pages for front-end developers to customize and utilize as a starting point for their e-commerce projects, whether it be for themselves or their clients. I gravitated towards this project because I've do some freelance web development on an occasional basis, and often utilize pre-designed themes like this project to speed up the process. I thought it would be fitting for me to give back to the type of work I've used in the past.

The Issue - Re-Implement the site as an Angular web app
Right now the project acts as a standard HTML website with some additional third party JS and CSS libraries. The owner created an issue suggesting the re-implementation of the site as an Angular web app to act as a theme or starting point for Angular based eCommerce projects for freelance web developers.

The Challenge
Angular supports HTML and CSS, so styling and layout won't present many problems, however the use of jQuery and other Javascript for the underlying logic of the website is where things will get challenging. Angular uses TypeScript for it's logic and programming, therefore it will take longer to re-implement various functions into the typescript. Furthermore, I will need to plan out how to 'component-ize" the website optimally, since Angular runs on a component based architecture. Finally I will have to build the routing module since Angular apps are single page web apps, the routing paths to these pages need to be manually configured and each page will be its own component. 

This is by far the largest issue I've taken on to date, and will almost certainly challenge me in unforeseeable ways as well.

Internal Project - Telescope

Overview
In short, Telescope is a website displaying "aggregated feed of blog posts" from students and/or faculty at Seneca College that are working on open-source projects. For a full overview of Telescope please read the official overview on the telescope repo.


This issue was assigned to me by a fellow student who was involved in planning out the front end for telescope. The premise behind the issue is to cap the number of blog posts to a limit, and then have the remaining show up on the next page and so on. This is to improve the UI so that they are not left with an extremely long page to scroll through. 

Up to this point, I have just been waiting for the individual who volunteered to complete the initial static HTML page to have their work merged so I can proceed from there. At this current point in time, there are sample blog posts hard coded to the front end. In this current state, I'll proceed to implement the pagination logic in the same manner, as I will have to statically hard code those sample posts in to each page since they are not being dynamically fed yet. 

Eventually once the blog posts are being dynamically generated in the web page, the pagination will also be ready by tweaking a few lines of code to replace the hard-coded sample posts. 


Stay tuned for the results of these efforts next week!






Comments

Popular posts from this blog

Micro-Note : My First Steps into Open Source

I just finished building Micro-Note, a simple web based note taking application. While it is not the most innovative app, it marks my first steps into the world of open source. Not only was I able to learn and exercise essential Git skills including the creation and operation of a repo, but also brush up on my web development basics. This involved both features found on the GitHub web app, and the Git command line interface. I found this highly useful as I am aware Git will be a part of my career moving forward, whether it be for open source or other ventures as a developer. The app is simple and fairly self explanatory.  It allows the user to input notes into the web page and save them to continue or edit them later if needed. It is built with the standard web stack, HTML5, CSS, and JavaScript. It uses the  FilerJS Browser Filesystem library to save the user input to a local file so the user can save and resume their note-taking at later time.  This was helpful as...

My First Contributions and Collaborations in Open-Source

This week I continued my journey into the world of open source by contributing to the work of others, as well as accepting contributions from others for my Micro-Note web app detailed in the previous blog post . I was able to contribute one bug fix, and one additional feature to similar applications built by other students. This was done by utilizing Git features such as posting issues, forking repositories, creating new branches, and creating/receiving pull requests. Details of my contributions are explained below. In addition to these, I also received my first pull request to review nad merge another students contributions to my own application. Fixing Another Students Bug One of my colleagues ( dbeigi ) built a note taking application called " whiteboard " that allows users to save their notes using hotkey inputs, otherwise the application is meant to automatically save the users work every 4 seconds. While I was reviewing the code, I noticed the paramter in the setInt...

Hacktoberfest - My First of Many Open Source Events

After establishing a basic foundation in open-source concepts and skills, I eagerly look forward to participating in Hacktoberfest this upcoming October, and hopefully many more to come. Hacktoberfest is hosted by Digital Ocean and it is a month long event that runs throughout the month of October and encourages contributions to a variety of projects. It is highly accessible and welcoming to individuals across all regions and skill levels globally, which is great news since I still consider myself a beginner as an open-source developer. On top of all this, they also offer the prize of a Hacktoberfest shirt for registered users that successfully complete 4 or more pull requests. After reading through all the information on the Hacktoberfest website, I proceeded to set two goals and find three issues I would like to tackle. Here are the goals I set for this event: 1 . Get involved in a project that you find interesting As a student, its often difficult to pursue personal pr...