Rasoi

🔗 Github repo Rasoi A social media for recipes 🍳. Logo Source Note: all of the specifications given below are not finalized, may change if required. Note: running and setting up backend is complex, follow the README.md inside backend/ . Folder Structure backend: fastapi backend server, ml stuff and database seeding code. docs: documentations like diagrams, progress report etc. frontend: NextJs and Tailwind, Mobile app using React Native res: random generated resources from web like icons, fonts etc (to be used in app and web both)....

3 November, 2023 · 3 min · 613 words

portfolio

🔗 Github repo portfolio This is my portfolio site. I try to keep it as updated as possible. I used Hugo (cuz, I am too lazy) and this theme . Also, I don’t do frontend work primarily. The projects and blogs are all auto-generated (see generate_projects.py and generate_blogs.py). The public folder contains the resultant build files (static HTML and styles) after I invoke hugo. It is present at github.io repository. This repo is used by github to actually host the site....

9 February, 2023 · 2 min · 283 words

chlorophyll

🔗 Github repo chlorophyll A simple Plant disease detector APP, using image classification (Machine Learning) technique. Original paper URL: https://arxiv.org/abs/1511.08060 Dataset URL: https://data.mendeley.com/datasets/tywbtsjrjv/1 https://www.tensorflow.org/datasets/catalog/plant_village

17 November, 2022 · 1 min · 24 words

sonic

🔗 Github repo sonic A super fast code judging system, which compiles and runs programs locally. NOTE: This app has been developed with the assumption that it will be used in a controlled lab environment, so security is not so tight. How to run Follow the instructions given in sonic_server and sonic_client directories. You should start the server first, then the client. The client is to be deployed in every machines of the lab, the server needs to be placed in any one pc, and make sure of their connectivity....

18 July, 2022 · 1 min · 90 words

quiz

🔗 Github repo quiz A simple quiz app in React Native and TypeScript How to run You must have nodejs , and yarn installed. Run “yarn” in project’s root folder, then run “yarn start”. Then, use the expo go app to run this React Native project. You may also open this app in a web browser. Just follow the instructions in the terminal.

12 April, 2022 · 1 min · 63 words

ChitChat

🔗 Github repo ChitChat A simple chat application, with chat rooms. Live demo Mainly used react for the frontend and django , and django channels for the backend. Thanks to the open source libraries and websites like: framer-motion , tailwindcss , animista , djangochannelsrestframework (although I haven’t used this in the final app) etc… To install dependencies, use: pip install -r requirements.txt or just: pip install Django channels daphne python-decouple...

8 January, 2022 · 1 min · 127 words

Currency Exchange

🔗 Github repo Currency Exchange A simple react app, mainly to learn react, mui and css. Thanks to this repo for the API. This project was bootstrapped with Create React App . Live demo Steps to run In the project directory, you can run: yarn install To install the libraries used here. yarn start Runs the app in the development mode. Open http://localhost:3000 to view it in your browser. The page will reload when you make changes....

18 December, 2021 · 1 min · 113 words

AI plays-python

🔗 Github repo AI plays-python A simple flappy bird game, written in Python, where the player is AI. A flock of birds will try to survive in this game (rather environment), the best ones will continue, rest will die. Much like our evolution :) It uses the concept of Evolutionary artificial neural networks (EANNs), or Evolving Neural Networks. I did this project mainly to get some idea of neural networks, machine learning in a somewhat interesting way....

9 November, 2021 · 2 min · 278 words

spaceapps-2021

🔗 Github repo spaceapps-2021 Code repository for the NASA Space Apps challenge 2021 spaceapps-2021 Code repository for the NASA Space Apps challenge 2021 PASSCODE FOR AUTHENTICATION CODE IN LOGIN: beepb33p PROJECT LuCon A solution for the challenge “ Lunar Surface Operation : Real- time collaboration by team “Hello, Moon!” NASA Space App Challenge 2021 A real-time console log for communication and event logging between between mission control and astronauts for upcoming lunar missions like ARTEMIS program....

2 October, 2021 · 3 min · 493 words

snake

🔗 Github repo snake A simple Snake game in C++, using the SFML library. How to run: Grab the latest stable compiled binaries here (scroll down, and check the Assets) How to compile: I generally use an ubuntu-based distro, I use this command to compile: g++ src/*.cpp -Wall -Wextra -Wpedantic -O3 -o build/game -I lib/SFML-2.5.1/include -L lib/SFML-2.5.1/lib -Wl,-rpath,./lib/SFML-2.5.1/lib -lsfml-graphics -lsfml-window -lsfml-system Please place the SFML-2.x.x library under lib directory, I have added this directory specifically for putting libraries....

30 May, 2020 · 1 min · 153 words

gameOfLifeJS

🔗 Github repo gameOfLifeJS The Conway’s_Game_of_Life in Javascript. Live demo!

26 May, 2020 · 1 min · 10 words

tanks

🔗 Github repo tanks A simple tanks war game, written in GO . Source of the resources I used: tank image (from a github user) OLD tank image bullet imge explosion animation sprite sheet (I forgot from where I got the sound effects, although I remember I used this site to get the sound effects) The resources I used in this project are not original, I have edited some of them I used the go-sdl2 library here....

2 April, 2020 · 3 min · 489 words