Skip to main content

The complete GCI Journey


A summary of my experience this year...


The GCI 2017 - 18 opened up arms for teenagers on 27th of November, 2017 for students to attempt tasks encompassing of coding, outreach, quality assurance and user interface problems. The competition comprised of organizations who had an open - source structure.

I started my journey a month late, on 27th December, but I still managed to attempt a fair few number of tasks. Many of them for a great organization like LibreHealth, Mifos and Liquid Galaxy Project. I spent the highest fraction of my time, working with a great Health IT company called LibreHealth. My main goal was to expand on my sector of design. This included wireframe generation, web component designs, presentation, and artworks. I really enjoyed it, I never thought I would design mockups or dashboards for a proper company :)







There were parts where things did not seem too good … Over my GCI participation was also a load for exam preparation. A rigorous schedule had to be maintained in order to balance them both but, to be honest, I spent more time working on GCI tasks :)

A big chunk of the GCI experience has been the conversations with the Mentors. To be able to converse with an experienced programmer or designer across the globe transcends the participant's capabilities to a different level. The prizes were also something to thrive for :P and because I am only 14, it’s a great deal of excitement having competed in this competition.

Another Great point was the streamlined and easy experience google had provided us with. The whole UI of the site was appealing and life was made easy by conversing directly with the mentors and the ease of project uploads. The community was really great and helpful. I was a member of the LibreHealth community and the whole interaction was fun and VERY HELPFUL. Any problem with the task could be asked on the chat group and within minutes meaningful replies from both contestants and mentors chipped in. It was like you’re a part of this big family where each member helps out the other.

After a fun and great learning affair, the GCI is slowly concluding and closing it’s curtains for the year, leaving a good taste in the mouth. After what I have experienced this year, I would surely come back to it every year till I am eligible to compete. I really want to thank Google and LibreHealth for the opportunities they have given us. See you next year GCI!

Comments

Post a Comment

Popular posts from this blog

Impact of Chatbots on Human Driven sectors of business

Chatbots are Machine Learning and Deep Learning powered programs that can conduct meaningful conversations. Most of them use technical attributes like Natural Language Processing and Context Analysis to converse with a human or another chatbot. The bot is programmed to self-learn as it is introduced to supplementary dialogues and words. In consequence, as a chatbot receives new voice or textual dialogues, the number of inquiries that it can reply and the accuracy of each response it gives increases. A Chabot can converse with the user through self-embedded messaging platforms like Facebook Messenger or through various flagship Assistants such as Google Assistant, Siri or Amazon Alexa. Nowadays, chatbots are being deployed in fields where their use clearly seemed to be obvious. Firms engaging in Financial Planning, Investment Management and Expense Tracking could reap a wide array of benefits when they make use of this technology. They can have a lasting impact on human-driven sec...

Recommender System using Python

Recommender systems are everywhere. Amazon recommends buys we like, google recommends searches, Youtube recommends systems and Facebook recommends people. All of these implementations describe Recommender Systems. There are 2 types of Recommender Systems. Collaborative Systems - Systems that recommend information based on what you like and what the others like. Content Based Systems- Based on what you have viewed This is a simple ML based recommender System in python. It uses the LightFM library as the dataset import numpy as np from lightfm import LightFM from fetch_lastfm import fetch_lastfm data = fetch_lastfm() model = LightFM( loss = ' warp ' ) model.fit(data[ ' matrix ' ], epochs = 30 , num_threads = 2 ) # Get recommendationns function def get_recommendations ( model , coo_mtrx , users_ids ): n_items = coo_mtrx.shape[ 1 ] for user in users_ids: # TODO create known positives # Artists the model pred...

I'm gonna be gone for a while ...

Hey Everyone, I'm sorry for keeping this blog dry for the 2 past two months, I'm a class 10 student in the CBSE Board here in India, so naturally, all my time is devoted to mundane academic preparation. This blog will not see another post till April, but before I sign off, I wanted to tell everyone my goals and plans for 2020:- Start a podcast ( most probably ), which will mainly revolve around economics, business and tech with some tidbits and updates from my life. Launch my first ever web-product called Nadia. It's already under development. Will share a snapshot of the UI :) I'm hoping to blog a lot more, hopefully, 3 posts a month Read at least 25-30 books Sketch a lot more :P Nadia in its nascent stages Will improve on this surely ...