Skip to content
View poshan0126's full-sized avatar
🇳🇵
Focusing
🇳🇵
Focusing

Organizations

@NCIT-Developer-Network
Block or Report

Block or report poshan0126

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. SentiMeter_Twitter_Sentiment_Analysis SentiMeter_Twitter_Sentiment_Analysis Public

    This repository consist of a small terminal application that analyzes tweets of user given keyword and number and provides the result on their sentiment.

    Python 1

  2. E-Commerce-API---Flask E-Commerce-API---Flask Public

    This project is a mini e-commerce API built using Flask and SQLAlchemy.

    Python

  3. COVID-19-dataset-and-World-Happiness-Report-Analysis COVID-19-dataset-and-World-Happiness-Report-Analysis Public

    I performed Data Analysis on COVID 19 dataset by John Hopkins University and World Happiness Report and found really interesting results. It shows that people living in developed countries are mor…

    HTML 1 2

  4. Election-Portal-Webapp Election-Portal-Webapp Public

    Forked from Election-Portal/Election-Portal-Webapp

    Django based web app to digitize election activities in Nepal.

    JavaScript 1

  5. RealEstateNepal RealEstateNepal Public

    RealEstateNepal is a django project for selling and buying the realstate online in Nepal.

    CSS 1

  6. This Gist consist of a recursive ite... This Gist consist of a recursive iterative solution to the 8 Queen problem
    1
    def Permute(queens, row):
    2
        for i in range(8):
    3
            queens[row] = i
    4
            if Fine(queens, row):
    5
                if row == 7: