Skip to main content

Interesting local coding projects

I set out to learn about interesting local coding projects. We have the recently launched DHub gitlab instance but there are no public projects in there to look at. The next place I could look is github but where do I start? I decided that I should look at the top github users in Trinidad and Tobago and see what projects they are working on. If you know of interesting local coding projects I can look at please leave a comment with links to them. The problem is that I could not find a list of top github users for Trinidad and Tobago. I found this project but Trinidad and Tobago was not included. Jamaica on the other hand is there.

I then set out to create my own listing for Trinidad and Tobago. I found that github had a REST api that I could use. I could have also used GraphQL but the REST api would be easier. I have Pydroid installed on my mobile so I decided to use Python for the coding. After some Google searches and figuring out I was able to come up with a list sorted by follower count. In the future I would try to see what other metrics I could use for the listing.

This is what my python code looks like

import requests

api_url = "https://api.github.com/search/users?q=location:trinidad-and-tobago+followers:%3E40"

response = requests.get(api_url)

users=response.json()

for user in users["items"]:
    print(user["login"])
    api_url = user["url"]
    user_detail = requests.get(api_url).json()
    print(user_detail["name"])
    print(user_detail["followers"])

And this was the results as of the date of this blog post. I do not know if there is a more efficient way to do this in one api call.


I have created a nice looking html page that I shared on my github pages. The latest code on github is here. The real goal though is to find interesting local coding projects so let us know if you know of any. If I find any I would highlight them on my blog in the future. Also, it feels really nice to have done some coding after some time. There shall be more coding in the new year, God willing.

Comments

Popular posts from this blog

Coffee and a prayer

It is 245am and I have decided to write. I have no topic and no idea what to write. I am thankful for another day. I see the beauty that surrounds us. I choose to be happy. We are in the last ten nights of Ramadan. Tonight is the 23rd night. It could possibly be the night of power. I wonder if it will rain. Maybe it rained when I was sleeping. I got up and bathed and drank a strong cup of coffee. Today is also Friday the 13th. I keep thinking. Life is beautiful. Life is simple. No need to complicate things. No need to be extravagant. Believe in God. Trust in God. Be guided by God. Imagine we can pray for anything. We can ask God for anything. God is always listening. God wants to hear from us. Maybe I can turn this blog post into a prayer. My God I pray that everyone gets their prayers answered. I pray that everyone gets what they need. I pray that you light our path towards you. Guide us with what you intend for us. Keep us close to you. Soften our hearts. Keep us balanced, consistent...

Who do we serve?

It is 247am and I have decided to write. I want to write but have no topic. It has been a while since I wrote about tech. Samsung launched their latest flagship phones. Nice if you can afford these phones. What is the purpose of technology? The first thing that comes to my mind is to make our lives easier. To be more productive. Tech does the things we do not want to do. To solve problems. Tech is quite useful if I look through a noble lens. But the tech companies want to make money. They want to get rich (in my mind) no matter how they sell their aspirations. Why does everything have to be about money? What if we had a not for profit mobile phone company? Would that be any better? Tech is nice when everyone can afford it. Technology is supposed to be the servant instead it seems we have become the servants to technology. Marshall McLuhan said, "We shape our tools, and thereafter our tools shape us." Maybe the problem is not just tech companies. Maybe the problem is societal....

Humility

It is 337am and I have decided to write. I have no topic but I want to write. I was thinking. I love God a million times. One million is not the biggest number but on a scale of one to a million that is a lot. I just noticed that the word million has the word lion in it. What does it mean to be a lion in the sight of God? My friend Chatty says that from an Islamic perspective, being a lion in the sight of Allah means possessing quiet strength rooted in submission: firm iman without arrogance, self-control over the nafs, courage to stand for justice, and gentleness where mercy is required. It is strength that bows in sujood, resists ego, and remains sincere even when unseen—because Allah values the heart, intention, and consistency more than noise, numbers, or display. Resisting ego is a big one. Does that mean we should be like a mouse in the sight of God instead of a lion? Humble like a mouse. Quiet like a mouse. Soft like a mouse. I am guessing that there is probably a story of a lio...