Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

Project

Project refers to a temporary endeavor undertaken to create a unique product, service, or result. This topic explores the various aspects of project management, including planning, executing, and closing projects, as well as the tools and techniques used to achieve project goals efficiently. It covers different methodologies like Agile, Waterfall, and Scrum, providing insights into their application across industries. This topic also discusses the challenges of project management, such as scope creep, risk management, and team coordination.

https://github.com/hsnice16/grid-of-three-cross-three

a webpage with a paragraph written on it and under which 9 buttons are placed in a 3X3 grid. The first row is for buttons labeled with colors names Red, Green, and Blue, the second row with numbers 10, 20, 30, and the third row with different font names. Click event of each of the buttons is making the appropriate change in the style of paragraph.

css3 html5 javascript project

Last synced: 11 Oct 2024

https://github.com/amruthpillai/vtu-dsce-project-report-template

VTU DSCE Project Report Template in LaTeX

latex project report vtu

Last synced: 25 Oct 2024

https://github.com/aloramercer/integral-calculation-using-reiman-sums

This project is for calculating the area under the curve of a function over a specified interval. It uses Left Hand Rule, Right Hand Rule, and Midpoint Rule to estimate the integral.

calculate-area cpp curved function integral project

Last synced: 25 Oct 2024

https://github.com/yonis-savary/clarityapp

Project template to create a new Clarity Application

framework php project template web

Last synced: 05 Nov 2024

https://github.com/myles/font

Myles Font

font project status-incubator

Last synced: 07 Oct 2024

https://github.com/shane-reall/final-project-client-server

My final project for Client Server Systems. It's a multiplayer card game called Triple Triad, where it's the player's goal to have as many tiles in their color as possible.

client-server java javafx-application project

Last synced: 12 Oct 2024

https://github.com/kadiryazadzhi/softuni---randomsentencesgenerator

πŸŽ“ Solution for the "Random Sentence Generator" practical project in the C# Fundamentals course at SoftUni πŸŽ“

charp course fundamentals project softuni

Last synced: 07 Nov 2024

https://github.com/web-dev-codi/clean-vitejs-javascript-project-scaffolding

Vite project setup using Javascript. App,jsx, index.css, App.css content deleted.

javascript project react scaffolding template-project vitejs

Last synced: 31 Oct 2024

https://github.com/contributte/doctrine-project

πŸ•ΉοΈ Minimal viable project with Doctrine to Nette (@nette) by @f3l1x

contributte doctrine example mvp nette php project

Last synced: 26 Oct 2024

https://github.com/subb98/race-results

Test task for PHP developer position at Smart Logistics

app application backend docker docker-compose example php php8 php81 project task test

Last synced: 26 Oct 2024

https://github.com/zalweny26/lab_algoritmi_unipa

Progetto per l'esame di Laboratorio di Algoritmi 23-24, UniPa, Informatica L-31

algorithms cpp project

Last synced: 04 Nov 2024

https://github.com/ujarhr/laravel_pos

Elevate Your Sales Game with this Powerful Laravel POS Application!

application laravel laravel-framework php point-of-sale pos project

Last synced: 05 Nov 2024

https://github.com/suniksha12/php_my_sql_projects

This repo collection of hands-on PHP and MySQL projects demonstrating backend development concepts through practical applications. Each project explores different aspects of web development, from basic CRUD operations to complex database management.

backend beginner-project creative-coding crud css database form helpful html innovation javascript mysql mysql-database php phpmyadmin project server web-application webdevelopment

Last synced: 01 Nov 2024

https://github.com/jaiswalchitransh/secret-code-game-in-python

This Python script implements a Secret Code Game where users choose between encoding or decoding a message. For encoding, it applies a specific pattern to each word, and for decoding, it attempts to reverse the pattern. The code includes error handling for decoding. The program concludes by thanking the user for playing the Secret Code Game.

game project python python-3 python3 secretcode

Last synced: 05 Nov 2024

https://github.com/jaiswalchitransh/snake-water-gun-game-in-python

This Python script implements a Snake, Water, Gun game where the user competes against the computer. The user inputs their choice, and the program randomly selects a choice for the computer. The game function evaluates the choices, determining the winner based on predefined rules.

game game-development project python python-3 python3 snakewatergun-game

Last synced: 05 Nov 2024

https://github.com/jaiswalchitransh/merge-pdf-files-using-pypdf2

This Python script merges all PDF files in the current directory into a single PDF file named "merged.pdf" using the PyPDF2 library. It iterates through the PDF files, appends their content to a PdfWriter object, writes the merged content to a new file, and then closes the PdfWriter object.

merge merger pdf project pypdf2 pypdf2-library python python-3 python3

Last synced: 05 Nov 2024

https://github.com/jaiswalchitransh/kaun-banega-crorepati-game-in-python

This Python script replicates the "Kaun Banega Crorepati" game, presenting users with multiple-choice questions and monetary rewards. Players can choose to answer or quit at any point, accumulating winnings based on correct answers. The game concludes with a display of the player's total earnings.

game game-development kaun-banega-crorepati project python python-3 python3

Last synced: 05 Nov 2024

https://github.com/jaiswalchitransh/python-sapi-voice-for-windows

The Python script utilizes the win32com library to interact with the Windows Speech API (SAPI), prompting the user to input text to be spoken aloud. It continuously speaks the input text using the default system text-to-speech engine until the user inputs "-1" to terminate the program.

project python python-3 python3 sapi sapi-voice text-to-speech win32 win32com windows

Last synced: 05 Nov 2024

https://github.com/jaiswalchitransh/dfs-searching-algorithm

This Python code employs the Depth-First Search (DFS) algorithm to find a path from "Arad" to "Bucharest" in the Romania map. It uses a priority queue, backtracking, and a graph representation. The DFS path is printed at the end. Skills demonstrated include graph traversal, priority queue usage, and DFS algorithm implementation.

ai artificial-intelligence depth-first-search dfs dfs-algorithm dfs-search graph priority-queue project python python-3 python3 searching searching-algorithms travesal

Last synced: 05 Nov 2024

https://github.com/jaiswalchitransh/restaurant-management-system

This Restaurant Management System is a Python application facilitating menu display, ordering, and menu management. It presents customers with a user-friendly interface to explore the menu, place orders, and provide ratings for items.

project projects python python-3 python-project python3 pythonprojects restaurant-management rms

Last synced: 05 Nov 2024

https://github.com/jaiswalchitransh/csp-map-coloring-using-backtracking

The code uses backtracking to solve the Constraint Satisfaction Problem (CSP) of map coloring. It checks if assigning colors to regions follows the constraint that no adjacent regions have the same color. The skills involved include algorithm design for backtracking, recursion, and solving CSP problems. The implementation uses Python.

ai artificial-intelligence backtracking csp map-coloring project python python-3 python3 recursion

Last synced: 05 Nov 2024

https://github.com/jaiswalchitransh/login-page

This HTML code establishes a clean login and signup page with internal CSS styling for visual appeal. The structure adheres to HTML5 standards, featuring input fields for username and password, submission and cancellation buttons, a "Remember Me" checkbox, and links for password recovery and registration.

css css3 html html5 login-page project responsive responsive-design template web-development website

Last synced: 05 Nov 2024

https://github.com/jaiswalchitransh/ucs-with-best-first-search

Implementation of UCS on Romania to find shortest distance from Arad to Bucharest based on best-first search algorithm. It uses a dictionary that stores current city mapped to (parent city, current best distance), and frontier is a priority queue to process nodes containing (node id, current city, priority value).

artificial-intelligence best-first-search heuristic-search-algorithms heuristics project python python-3 python3 searching-algorithms ucs uniform-cost-search

Last synced: 05 Nov 2024

https://github.com/jaiswalchitransh/my-first-html

This HTML document creates a personal website for Chitransh Jaiswal, featuring sections on education, hobbies, licenses, certifications, and skills. It employs images, tables, and hyperlinks for a visually organized and informative layout. The footer provides a link to the "Contact me" page, making it a comprehensive profile webpage.

css first-html first-project html html5 project web-development website

Last synced: 05 Nov 2024

https://github.com/jaiswalchitransh/html-portfolio-example

This HTML code constructs a portfolio webpage featuring the name and role ("Chitransh Jaiswal, Full Stack Web Developer") followed by two project sections. Each project includes a heading, image, and link to its respective HTML file.

css css3 html html5 porfolio portfolio-website project responsive template web-development website

Last synced: 05 Nov 2024

https://github.com/aminya/include.m

Adds folders to Matlab's path

addpath file include matlab project

Last synced: 30 Oct 2024

https://github.com/semazurek/kolkokrzyzyk

Projekt gry/programu w C na przedmiot Wprowadzenie do Informatyki (WDI)

c cli command-line mini-game project vbscript

Last synced: 11 Oct 2024

https://github.com/jaiswalchitransh/historical-stock-and-revenue-data-analysis

This project focuses on extracting and visualizing stock data using Python libraries such as yfinance for historical stock prices and web scraping techniques to gather company revenue data. It provides a comprehensive analysis by plotting both stock prices and revenues over time for companies like Tesla and GameStop.

artificial-intelligence beautifulsoup bs4 data-science gamestop jupyter jupyter-notebook machine-learning matplotlib pandas plotly project python python-3 python3 requests stock-market tesla webscraping yfinance

Last synced: 11 Oct 2024

https://github.com/s3gmentati0nfaultuni/programmazione-cpp

Progetto d'esame per il corso di Programmazione C++ tenuto dal professor Ciocca presso l'universitΓ  degli studi di Milano Bicocca

cpp datastructures-algorithms project qt

Last synced: 11 Oct 2024

https://github.com/high-five-dev/base

Easily create a barebones Craft CMS website project.

barebones composer craftcms php project vitejs website

Last synced: 31 Oct 2024

https://github.com/majamassarini/automate-sound-player-example

An example project automating a (sonos) sound player with automate-home

automate-home automation configuration home home-automation knx project sonos

Last synced: 12 Oct 2024

https://github.com/muhammadaliashraf/nextjs-todo

This repository contains a Todo application built with the MERN (MongoDB, Express.js, React.js, Node.js) stack and uses Next.js for server-side rendering and routing. Authentication is implemented using cookies.

api application expressjs mern-project mern-stack mern-stack-app next-auth next-js nextjs nextjs13 nextjstodo opensource project react-hooks reactjs ssr todolist todolist-application vercel vercel-deployment

Last synced: 10 Oct 2024

https://github.com/majamassarini/automate-curtains-example

An example project automating curtains (shutters/blinds actuators) with automate-home

automate-home automation blind blinds configuration cover curtain home-assistant home-automation knx project shutter

Last synced: 12 Oct 2024

https://github.com/nyctibiusvii/jobscalc

O JobsCalc Γ© uma aplicação de estimativa de cΓ‘lculo para projetos freelancer, onde Γ© possΓ­vel cadastrar e excluir jobs (projetos), obtendo uma estimativa de custo de cada job. AlΓ©m disso, Γ© possΓ­vel traΓ§ar o valor da hora da pessoa que estarΓ‘ usando o sistema πŸ“‹πŸ’°

calc css html jakeliny javascript jobs jobscalc maratona-discover maykbrito project rocketseat vercel

Last synced: 13 Oct 2024

https://github.com/julianolorenzato/venus

πŸŒ• A complete environment to assemble and run Venus.

assembler assembly project runtime rust virtual-machine

Last synced: 12 Oct 2024

https://github.com/sikandarjodd/kit

Simple To Do List using Svelte Js with Remove Filter

javascript json project svelte svelte-projects svelte-v3 sveltejs to-do-list

Last synced: 03 Nov 2024

https://github.com/mikebionic/dino-jump

Dino Jump - Real Jump simulator implementation for chrome game.

arduno chrome dev dino electronics handmade mechanics physics project pyautogui python serial

Last synced: 11 Oct 2024

https://github.com/leticiafreitas79/php-projetos

Projetos e Atividades realizadas durante as aulas de Execução de processos de codificação, manutenção e documentação de aplicativos computacionais para internet realizado no Curso Técnico de InformÑtica no SENAC em setembro-outubro de 2024.

aprendendo learning php project

Last synced: 17 Oct 2024

https://github.com/fmind/cookiecutter-typescript

Template to generate a TypeScript project for NodeJS

cookiecutter nodejs project template typescript

Last synced: 06 Nov 2024

https://github.com/fmind/cookiecutter-racket

Template to generate a Racket project

cookiecutter project racket raco template

Last synced: 06 Nov 2024

https://github.com/fmind/cookiecutter-haskell

Template to generate a Haskell project

cookiecutter haskell project stack template

Last synced: 06 Nov 2024

https://github.com/fmind/cookiecutter-clojure

Template to generate a Clojure projet

clojure cookiecutter leiningen project template

Last synced: 06 Nov 2024

https://github.com/dannywillems/project-list

List of projects ideas : do what you want with it.

ideas list project

Last synced: 12 Oct 2024

https://github.com/jimmy-zhening-luo/tsc

Repo/project template for TypeScript (+Svelte) projects.

eslint nodejs package-json project repository svelte sveltekit template tsconfig typescript

Last synced: 11 Oct 2024

https://github.com/vaga/vue-typing-challenge

A typing challenge in Vuejs

project vuejs

Last synced: 11 Oct 2024

https://github.com/dipak-kumawat/todolist

create a mern stack app where user can add delete and update there task in app

backend database express frontend fullstack list mern-stack mongodb mongodb-atlas nodejs project react todo todolist

Last synced: 11 Oct 2024

https://github.com/aksrug/50-grupe-mallik

Small project where I am learning HTML and CSS

css3 html5 project

Last synced: 11 Oct 2024

https://github.com/bblu9/lawwise-dictionary-app

LawWise Law Dictionary Flutter App Project

demo flutter flutter-app flutter-ui project

Last synced: 11 Oct 2024

https://github.com/nigaraylaozcanan/akakce

This repository contains automated tests written in Selenium WebDriver for testing the functionality of the Akakce.com website.

automation-testing java project selenium-webdriver software software-testing teamwork-projects

Last synced: 11 Oct 2024

https://github.com/jonathanalvares9009/web-surfer

Web Surfer is a lightweight and user-friendly toy web browser designed for learning and experimentation. It offers a simplified browsing experience while providing insights into the internal workings of web browsers.

browser frontend html-css-javascript project python socket-programming webdevelopment

Last synced: 11 Oct 2024

https://github.com/simonespa/apprenticeship-project-assessment

Contains the report and presentation of the work-based project I built during my L7 AI and Data Science apprenticeship.

ai apprenticeship artificial-intelligence data-science machine-learning ml presentation project report

Last synced: 06 Nov 2024

https://github.com/prashimpy/gyan-e

Gyan-e is an easily accessible platform designed to clear the doubt of people around the world . Here, we encourage to share the doubts and ideas of every individual for their advancement.

django-application project srcn

Last synced: 11 Oct 2024

https://github.com/jawwad-fida/data-science-salary-estimator

A tool that estimates data science salaries (MAE ~ $ 11K) to help data scientists negotiate their income when they get a job.

data-science machine-learning project scikit-learn

Last synced: 11 Oct 2024

https://github.com/aniket965/request-header-parser-microservice

api for getting client details

freecodecamp project

Last synced: 11 Oct 2024

https://github.com/nyctibiusvii/memorygame

Jogo da memΓ³ria com a temΓ‘tica de Super Mario! πŸ•ΉπŸ„

bootcamp css digital-innovation-one game html js mario memory-game project super-mario

Last synced: 13 Oct 2024

https://github.com/shubhamsoni98/project_using_knn

This project applies the K-Nearest Neighbors (KNN) algorithm to predict iPhone purchases based on customer data. Using features like age, salary, and previous purchase behavior, the KNN model classifies customers into buyers and non-buyers.

anaconda analytics data data-science eda knn knn-classification machine-learning-algorithms predict project python scikit-learn tableau

Last synced: 12 Oct 2024

https://github.com/arooming/iotcapstone

사물인터넷 μΊ‘μŠ€ν†€ λ””μžμΈ λ ˆν¬μž…λ‹ˆλ‹€.

project python

Last synced: 26 Oct 2024

https://github.com/ms8909/cloud-computing-architecture

This demonstrates how AWS or any other cloud computing platform works.

cloud-computing operating-systems project

Last synced: 13 Oct 2024

https://github.com/sgaunet/gitlab-vars

Tool to get the environment variables of a gitlab project or gitlab group.

gitlab project variables

Last synced: 07 Nov 2024

https://github.com/synthwaveblues/library-management-app

Simple prototype of Library Management System as a QT Application

cpp library-management-system oop project qt

Last synced: 11 Oct 2024

https://github.com/urfdvw/notes

My notes on all projects

note notes project

Last synced: 01 Nov 2024

https://github.com/tamizhanban-nitish-p/smart-dustbin

smart dustbin that display the level of garbage and enables automation of lid opening and closing.

adino arduino arduinouno dustbin iot iotproject iotprojects lcd lcd16x2 project servomotor smartdustbin tinkercad tinkercad-project ultrasonic-sensor

Last synced: 13 Oct 2024

https://github.com/manoelcampos/exemplo-jdbc-javase

Projeto de exemplo mostrando como usar JDBC com um banco de dados Apache H2 em uma aplicação console JavaSE

database example gitpod h2 java javase jdbc jdk maven project sample

Last synced: 13 Oct 2024

https://github.com/muzammil7866/flex

University Management System

cplusplus oop project universitymanagementsystem

Last synced: 13 Oct 2024

https://github.com/alexismartinez1913/student-management-system

A Spring MVC application using Thymeleaf for managing student records. This project allows users to view, update, delete, and add student information.

java project spring-boot spring-data-jpa spring-mvc thymeleaf-java

Last synced: 12 Oct 2024

https://github.com/mahendramahara/solving-challenges-java-se

Java SE Code Vault: a curated collection of over 100+ Java gems by Mahendra Mahara. Explore code samples, interactive resources, and projects to enhance your skills. Contribute, connect, and stay updated in the vibrant Java SE community. Unlock knowledge and shine in Java development!

java java-code java-lib java-programming java-programs java-project java-se java-swing lab-report mahendra-mahara mahendramahara project

Last synced: 13 Oct 2024

https://github.com/goel-anubhav/reactjs-textutils

Textutils stands for Text Utilities like Reversing Text, First Capital Letter, Last Capital Letter, All Text Small or Capital and etc.

anubhav bootstrap mini project reactjs

Last synced: 12 Oct 2024

https://github.com/sethsandaru/path-note-backend

Backend REST APIs for PAssing THrough Note. Built from Typescript, NestJs with love

backend nestjs nodejs note project

Last synced: 01 Nov 2024

https://github.com/bishtrishu/pizza_sales_analysis_dashboard_sql_bi

Welcome to the Pizza Sales Analysis Dashboard project! This repository contains a comprehensive guide to building an interactive and insightful dashboard for analyzing pizza sales data using SQL and Power BI.

data data-science dataanalyst datavisualization dax dax-query microsoft microsoft-azure microsoft-sql-server msexcel mysql powerbi powerquery project sql

Last synced: 12 Oct 2024

https://github.com/vroncevic/githuber

Generates setup scripts and github guideline for project

app bash docker generator github library linux macos project qnx script shell tool

Last synced: 24 Oct 2024

https://github.com/meysam81/students-binary-tree

a class of students, containing information about ID, Name & Grade, in a binary tree which has access methods to these datas

binary-trees c-plus-plus coding college-assignment data-structures programming project projects student-project students tree tree-structure

Last synced: 13 Oct 2024

https://github.com/meysam81/niblpa

A Node Influence Based Label Propagation Algorithm for Community Detection in Networks

algorithm c-plus-plus c-plus-plus-11 community-detection complex-networks label-propagation network node-influence-based project thesis

Last synced: 13 Oct 2024

https://github.com/meysam81/flight-console-app

a minor bug fix from a source of someone else; just changed some glitches so that it can work properly

assignment assignments bug bugfix c-plus-plus college college-assignment college-project debug debugging programming programming-language programming-languages project projects

Last synced: 13 Oct 2024

https://github.com/anuraganalog/pothole-detection

Software Engineering Project, Project Plan for a Real World Use case.

dataflowdiagram detection pi plan pothole project raspberry requirements usecase-diagram

Last synced: 12 Oct 2024