repo
stringlengths
8
123
branch
stringclasses
178 values
readme
stringlengths
1
441k
description
stringlengths
1
350
topics
stringlengths
10
237
createdAt
stringlengths
20
20
lastCommitDate
stringlengths
20
20
lastReleaseDate
stringlengths
20
20
contributors
int64
0
10k
pulls
int64
0
3.84k
commits
int64
1
58.7k
issues
int64
0
826
forks
int64
0
13.1k
stars
int64
2
49.2k
diskUsage
float64
license
stringclasses
24 values
language
stringclasses
80 values
dunyanong/Zee
main
# Zee - Expense Management Feature for RHB Mobile Banking App Welcome to Zee, a new expense management prototype feature within the RHB mobile banking app. With its card-swiping mechanism, Zee aims to make expense categorization more efficient for users, allowing them to easily track and manage their expenses. ## Features - **Card-Swiping Mechanism**: Easily categorize expenses by simply swiping your card. - **Expense Tracking**: Keep track of all your expenses in one place. - **Expense Management**: Manage your expenses by setting budgets, creating reports, and more. ## How to Use 1. Open the RHB mobile banking app. 2. Go to the Zee feature within the app. 3. Swipe your card to categorize expenses. 4. Track and manage your expenses in the app. ## Requirements - RHB mobile banking app - Mobile device ## Availability Zee is currently only available on mobile. ## Built with * [NextJS](https://nextjs.org/) * [React](https://reactjs.org/) * [Tailwind](https://tailwindcss.com/) * [CSS](https://developer.mozilla.org/en-US/docs/Web/CSS) * [ChakraUI](https://chakra-ui.com/) ## Developers - [Eugene](https://github.com/EugeneGohh) - [Kingsley](https://github.com/haohao1029) - [KNazran](https://github.com/knazran) ## Acknowledgments - [RHB Bank](https://www.rhbgroup.com/) for providing the platform for this hackathon project. - [JomHack](https://www.jomhack.com/) for hosting the event. ## Disclaimer This project is a prototype and is not officially endorsed or supported by RHB Bank.
A new expense management prototype feature within the RHB mobile banking app.
chakra-ui,css,javascript,nextjs,react,tailwindcss
2023-01-25T11:51:59Z
2023-01-25T12:15:58Z
null
4
0
89
0
0
2
null
null
JavaScript
ValeeDS/Js-Proyecto_final
main
###### [[English]](README-en.md) # PROYECTO FINAL - JAVASCRIPT Aplicación Web creada en el marco educativo propuesto por CoderHouse. El sitio web será un simulador de facturador Los elementos de la misma serán: - Facturas. Las cuales tendrán como elementos: - Nombre del proyecto - Fecha de la factura - Cliente: - Razón Social - Documento - Condición frente a IVA - Domicilio - Email - Decripción del servicio/producto con su precio - Botón que permita agregar más o quitar elementos - Sección de impuestos - Botón que permite agregar o quitar más de un impuesto - Posibilidad de pagar en cuotas
Proyecto final para el curso de JavaScript. Se trata de una aplicación web compuesta por una ToDo App y un facturador
invoice-generator,javascript
2023-01-25T22:06:36Z
2023-03-18T23:31:50Z
null
1
0
55
0
0
2
null
null
JavaScript
Not-Minimal/JavaScript
main
null
Repositorio dedidaco a JavaScript
javascript,javascript-library
2023-01-24T01:48:17Z
2023-02-14T19:42:02Z
2023-01-29T01:08:59Z
1
4
94
0
0
2
null
null
JavaScript
DrAcula27/productStore
main
<h1 align="center">Welcome to productStore!</h1> <p> <img alt="Version" src="https://img.shields.io/badge/version-1.0.0-blue.svg?cacheSeconds=2592000" /> <img src="https://img.shields.io/badge/npm-%3E%3D9.1.2-blue.svg" /> <img src="https://img.shields.io/badge/node-%3E%3D18.12.1-blue.svg" /> <a href="https://github.com/DrAcula27/productStore#readme" target="_blank"> <img alt="Documentation" src="https://img.shields.io/badge/documentation-yes-brightgreen.svg" /> </a> <a href="https://github.com/DrAcula27/productStore/graphs/commit-activity" target="_blank"> <img alt="Maintenance" src="https://img.shields.io/badge/Maintained%3F-yes-green.svg" /> </a> <a href="#" target="_blank"> <img alt="License: ISC" src="https://img.shields.io/github/license/DrAcula27/productStore" /> </a> </p> > Per Scholas - Week 9 - Front-end, Express, and MongoDB - MODULE 2 PROJECT: Product Store > This is the second major project through my Software Engineering course at Per Scholas. It simulates an online web store / inventory management system where you can view(**read**), browse, search for, **create**, **update**, buy, and **delete** products. It combines both front-end (`HTML`, `CSS`, `JavaScript`) and back-end (`Node.js`, `Express.js`, `MongoDB`, `Mongoose`) technologies. ## Demo ![demo gif](./public/assets/productStoreDemo.gif) ### 🏠 [Homepage](https://github.com/DrAcula27/productStore#readme) ## Author 👤 **Danielle Andrews** - Github: [@DrAcula27](https://github.com/DrAcula27) - LinkedIn: [@daniellerandrews](https://linkedin.com/in/daniellerandrews) ## Project Details and Minimum Viable Product (MVP) to Pass **Navigation between pages should be done with a `navbar` (using JS to switch html files) AND/OR by clicking on things in the page (JS switches html files)** ### Pages 1. HOME page (index): - All the products are displayed. - The user can visit each product from here. - If the user clicks on the image, it links to the PRODUCT page. - There is a link to add a new product. 1. PRODUCT page: - Shows specific product and it’s details. - Has a link back to the HOME page. - Has a link to edit the product that goes to the EDIT page. - Has a delete button that deletes that specific product. - The user can also search for a specific product from this page. - Clicking the buy button should lower the remaining inventory by 1. - If the quantity of the product is zero, its product page should say 'OUT OF STOCK' instead of saying how many are remaining. - The BUY button should not be rendered if the product is out of stock. 1. EDIT page: - Allows the user to edit the data of a specific product using it’s product ID. 1. CREATE page: - Allows for the creation of new products (users will include a URL for the image). ### Redirects 1. The `create` route should redirect to HOME after creation. 1. The `delete` route should redirect to HOME after deletion. 1. The `edit` route will redirect to the edited product's PRODUCT page after the object is changed in the collection. ### Routes 1. `/get_products` - responds with all products in the collection. 1. `/get_specific_product/:product_id` - responds with one specific product from the collection. 1. `/create_product` - uses information from `req.body` to make a new product in the collection. 1. `/delete_product` - uses the product ID in the URL as a query. - Example: `/delete_product/?productId=63cd55e8b260470b1c1f2cc0` 1. `/update_product` - uses information from `req.body` to update the specific product. ### Technical Requirements 1. The app must run without syntax errors. 1. The app must contain all routes listed above. 1. The app must be styled and look like a store. 1. The app must have a well documented README file. - Add this README.md file manually, NOT through GitHub. 1. Create a video showcasing the application and code. This video needs to be in the README file. ## Tech Stack This project uses 3 of the 4 components of the MERN stack. - **M** - <img src="https://raw.githubusercontent.com/mongodb/mongo/master/docs/leaf.svg" width="20" height="20" /> [MongoDB](https://www.mongodb.com/) - **E** - <img src="https://raw.githubusercontent.com/expressjs/expressjs.com/gh-pages/images/favicon.png" width="20" height="20" /> [Express](https://expressjs.com/) - **N** - <img src="https://raw.githubusercontent.com/nodejs/nodejs.org/main/static/images/logos/js-green.svg" width="20" height="20" /> [Node](https://nodejs.org/en/) ## Future Work - Add the ability to add products to a cart and then purchase them all in one click. ## Attributions - Favicon: <a href="https://www.flaticon.com/free-icons/shop" title="shop icons">Shop icons created by srip - Flaticon</a> - Icons are from [Fontawesome](https://fontawesome.com/). - Product images are from [Unsplash](https://unsplash.com/). - Colors are official [Georgia Tech](https://www.gatech.edu/) brand colors. ## Show Your Support Give a ⭐️ if you liked this project! --- _This README was generated with ❤️ by [readme-md-generator](https://github.com/kefranabg/readme-md-generator)_
Per Scholas - Week 9 - Front-end, Express, and MongoDB - MODULE 2 PROJECT: Product Store
css,express,git,github,html,javascript,mongodb
2023-01-23T17:05:45Z
2023-02-09T22:12:53Z
null
1
0
29
0
0
2
null
null
JavaScript
hgpdev013/pokedex
main
# Getting Started with Create React App This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). ## Available Scripts In the project directory, you can run: ### `npm start` Runs the app in the development mode.\ Open [http://localhost:3000](http://localhost:3000) to view it in your browser. The page will reload when you make changes.\ You may also see any lint errors in the console. ### `npm test` Launches the test runner in the interactive watch mode.\ See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. ### `npm run build` Builds the app for production to the `build` folder.\ It correctly bundles React in production mode and optimizes the build for the best performance. The build is minified and the filenames include the hashes.\ Your app is ready to be deployed! See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. ### `npm run eject` **Note: this is a one-way operation. Once you `eject`, you can't go back!** If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own. You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it. ## Learn More You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). To learn React, check out the [React documentation](https://reactjs.org/). ### Code Splitting This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) ### Analyzing the Bundle Size This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) ### Making a Progressive Web App This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) ### Advanced Configuration This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) ### Deployment This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) ### `npm run build` fails to minify This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
Primeiro projeto desenvolvido com React.js, utilizando a PokéAPI.
css,html,javascript,reactjs
2023-01-23T15:40:22Z
2023-01-25T12:41:49Z
null
1
0
5
0
0
2
null
null
JavaScript
SweydManaf/casa-criativa
main
<h1 align="center"> <img src="public/logo.png" alt="logo" > </h1> <p align="center">:house_with_garden: Fique em casa.</p> <p align="center"> <img src="https://img.shields.io/badge/made%20by-SWEYD%20MANAF-ff5eb4?style=flat-square"> <img alt="GitHub language count" src="https://img.shields.io/github/languages/count/sweydmanaf/casa-criativa?color=ff5eb4&style=flat-square"> <img alt="Repository size" src="https://img.shields.io/github/repo-size/sweydmanaf/casa-criativa?color=ff5eb4&style=flat-square"> <a href="https://github.com/martins-rafael/sweydmanaf/commits/master"> <img alt="GitHub last commit" src="https://img.shields.io/github/last-commit/sweydmanaf/casa-criativa?color=ff5eb4&style=flat-square"> </a> <a href="https://opensource.org/licenses/MIT"> <img alt="License" src="https://img.shields.io/badge/license-MIT-ff5eb4?style=flat-square"> </a> </p> <p align="center"> <a href="#rocket-tecnologias">Tecnologias</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#computer-projeto">Projeto</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#wrench-instalação-e-uso">Instalação e uso</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#memo-licença">Licença</a> </p> <br> <div align="center"> <img src=".github/casa_criativa.png" alt="screenshot" > </div> <br> ## :rocket: Tecnologias As seguintes tecnologias foram utilizadas no desenvolvimento do projeto: ### Front-end - [HTML](https://devdocs.io/html/) - [CSS](https://devdocs.io/css/) - [Javascript](https://devdocs.io/javascript/) ### Back-end - [Node.JS](https://nodejs.org/en/) - [SQLite3](https://www.sqlite.org/index.html) - [Express](https://expressjs.com/) - [Nodemon](https://nodemon.io/) - [Nunjucks](https://mozilla.github.io/nunjucks/) <br> ## :computer: Projeto Casa Criativa é uma aplicação web, que cadastra e exibe ideias de atividades para fazer em casa durante o período de isolamento social. ### Telas ![](.github/print-1.png) ![](.github/print-2.png) ![](.github/print-3.png) <br> ## :wrench: Instalação e uso Para rodar a aplicação, você precisa ter o [Node](https://nodejs.org/en/) instalado em sua máquina e seguir os passos abaixo: 1) Abra um terminal e copie este repositório com o comando ``` git clone https://github.com/sweydmanaf/casa-criativa.git ``` ou use a opção de download. 2) Entre na pasta com ``` cd casa-criativa ``` 3) Instale as dependências ``` npm install ``` 4) Rode a aplicação: ``` npm start ``` 5) Acesse ```http://localhost:3000``` no seu navagador. <br> ## :memo: Licença Projeto desenvolvido com a **&copy;[Rocketseat](https://rocketseat.com.br/)**<br> **Instrutor: [Mayk Brito](https://github.com/maykbrito)** Esse projeto está sob a licença MIT. Veja o arquivo [LICENSE](/LICENSE) para mais detalhes.
Aplicação de cadastro de atividades para fazer em casa durante o período de isolamento social.
rocketseat,workshop-rocketseat,sqlite3,css,html,javascript,nodejs,casa-criativa
2023-01-24T09:03:38Z
2023-01-27T08:48:23Z
null
1
0
16
0
0
2
null
MIT
JavaScript
harpreet-1/Capturepoint
main
# Capturepoint Hello Everyone , WELCOME in our Brand CapturePoint ![logo (1)](https://user-images.githubusercontent.com/119473352/232507589-2eb09168-8fb8-4aba-b65b-78761750de83.png) This is the website which we created with react , bootstrap, node.js , express , mongodb,Oauth Deployed Link- https://capturepoint-hp.netlify.app/index.html This is ecommerce brand specially for women where you can find products related to "digital", "electronic", and many more This is the first glance of our website where you see the landing page. Here you can see the NAVIGATION BAR on the top which will help you to acces all pages of website. NAVIGATION BAR contain SEARCH BAR option where you can search all the item whatever you want to buy. ![Screenshot (1245)](https://user-images.githubusercontent.com/119473352/232508197-fc87759b-667c-47f4-8d8d-90d782811623.png) After moving to LOGIN & SIGNUP page you can see a beautiful and amazing animation of slide . If you are register already you can directly signin whith your ID and PASSWORD. ![Screenshot (1252)](https://user-images.githubusercontent.com/119473352/232508600-f6e95f04-e97a-44e2-acd7-1e48842763c2.png) AND lastly on landing page a little a beautiful footer where all the details about BRAND. ![Screenshot (1249)](https://user-images.githubusercontent.com/119473352/232509118-6c02b4c0-a7d5-430c-96a6-44a64c3ab647.png) ON top if you click any category or you search anything you will redirect to products page. ![Screenshot (155)](https://github.com/harpreet-1/Capturepoint/assets/119473352/293065ee-8684-42d2-a579-18970edc5486) IF you want to know about product more particularly press on that product you redirect to the product detail page. ![Screenshot (156)](https://github.com/harpreet-1/Capturepoint/assets/119473352/d2df35ce-fdc5-4933-88e7-c15db2e5caca) After click on the ADD TO CART button the product will added to your CART page. And click on cART BUTTOON ON TOP OF nAV baR YOU WILL redirect to cart page. ![Screenshot (157)](https://github.com/harpreet-1/Capturepoint/assets/119473352/c40f257c-0726-4da8-91be-74a490cc6e79) After click on Proceed to pay the page redirect you to address filling page you have to fill your address and place your order. and the cart will gone empty soon. ![Screenshot (158)](https://github.com/harpreet-1/Capturepoint/assets/119473352/097027a4-c476-4f4e-90d1-cdc1eb07b711) ADMIN SIDE. IF Admin want to access the admin side login with these credentials email --> c@gmail.com password --> 1234 And after enter right E-mail and Password Admin can access the admin data. And redirect to Login Admin Page. You can see the dashboard of ADMIN side. ![Screenshot (160)](https://github.com/harpreet-1/Capturepoint/assets/119473352/beb08981-c719-42bc-8372-8cc2dbde06a4) After click on products on Side bar you see all the products in our stock with their deatils. ![Screenshot (161)](https://github.com/harpreet-1/Capturepoint/assets/119473352/28d85e80-5029-4628-9cc6-609d29564df4) You can edit , ADD and Delete items from here from API. ![Screenshot (164)](https://github.com/harpreet-1/Capturepoint/assets/119473352/a139aff0-d946-4325-abf7-36a02564f608) ![Screenshot (163)](https://github.com/harpreet-1/Capturepoint/assets/119473352/72f56729-551b-4091-963e-4505d602d586) order deatils--> by click on orders on Side bar you see all the orders with their deatils. . and you can edit there status from here like shipped or delivered! That's all about my project ,thanks for visiting
An all-in-one destination for photo, video, and electronics with a wide selection of gear from top brands.
css,html,javascript
2023-01-17T16:37:34Z
2023-10-30T09:33:02Z
null
2
5
56
0
0
2
null
null
JavaScript
Inna-Mykytiuk/Webpack-light
main
# Webpack-light This package is designed for beginners
Webpack-light template for your projects
css,html5,javascript,sass,webpack,webpack5
2023-01-25T14:31:05Z
2023-02-26T13:55:45Z
null
1
0
17
0
0
2
null
null
SCSS
MostafaSAlem12/Forkify-App
master
<!-- PROJECT SHIELDS --> <!-- *** I'm using markdown "reference style" links for readability. *** Reference links are enclosed in brackets [ ] instead of parentheses ( ). *** See the bottom of this document for the declaration of the reference variables *** for contributors-url, forks-url, etc. This is an optional, concise syntax you may use. *** https://www.markdownguide.org/basic-syntax/#reference-style-links --> <!-- PROJECT LOGO --> <br /> <p align="center"> <a href="https://mostafa-forkify.netlify.app/"> <img src="./src/img/logo.png" alt="Logo" width="100%" height="100%"> </a> <h3 align="center">Forkify</h3> <p align="center"> A recipe search application made with javascript. <br /> <a href="#about-the-project"><strong>Explore the docs »</strong></a> <br /> <br /> <a href="https://mostafa-forkify.netlify.app/">View Demo</a> · <!-- <a href="https://github.com/PawanJS/forkify/issues">Report Bug</a> --> · <!-- <a href="https://github.com/PawanJS/forkify/issues">Request Feature</a> --> </p> </p> <!-- TABLE OF CONTENTS --> <details open="open"> <summary>Table of Contents</summary> <ol> <li> <a href="#about-the-project">About The Project</a> <ul> <li><a href="#built-with">Built With</a></li> </ul> </li> <li> <a href="#getting-started">Getting Started</a> <ul> <li><a href="#prerequisites">Prerequisites</a></li> <li><a href="#installation">Installation</a></li> </ul> </li> <li><a href="#usage">Usage</a></li> <li><a href="#roadmap">Roadmap</a></li> <li><a href="#contributing">Contributing</a></li> <li><a href="#license">License</a></li> <li><a href="#contact">Contact</a></li> <li><a href="#acknowledgements">Acknowledgements</a></li> </ol> </details> <!-- ABOUT THE PROJECT --> ## About The Project This project is a part of the course provided by jonas and owner reserved the rights. You can check the course at the below link. Forkify is a vanilla JavaScript application that interacts with the Forkify API to fetch and display recipe food data. This app uses modern JavaScript tools, such as Webpack to bundle the modules, and Babel to convert ES6, ES7 and ES8 back to ES5. The user can search for a specific recipe, and save to a favorites list via local storage. The user can easily increase or decrease servings as per his need and can view detailed directions. ### Built With This app is built with pure vanilla JavaScript along with HTML and SCSS. It uses webpack as module bundler and NPM as package manager. - [HTML](https://developer.mozilla.org/en-US/docs/Web/HTML) - [SCSS](https://sass-lang.com/) - [JavaScript](https://developer.mozilla.org/en-US/docs/Web/javascript) - [Webpack](https://webpack.js.org/) - [NPM](https://www.npmjs.com/) <!-- GETTING STARTED --> ## Getting Started To get started with project just simply fork this repo or download locally on your System. To get a local copy up and running follow these simple example steps. ### Prerequisites Start with the latest version of NPM to avoid any errors: - npm ```sh npm install npm@latest -g ``` ### Installation 1. Get a free API Key at [Forkify API_KEY](https://forkify-api.herokuapp.com/v2) 2. Clone the repo ```sh git clone https://github.com/PawanJS_/forkify.git ``` 3. Install NPM packages ```sh npm install ``` 4. Enter your API in `config.js` ```JS const KEY = 'ENTER YOUR API'; ``` <!-- USAGE EXAMPLES --> ## Usage 1. The Forkify Recipe App allows users to search for recipes. 2. Users can view the recipe along with the cook time and also increase or decrease the amount of servings they need. 3. Bookmarked recipes are stored in local storage so no database was required for this application. <!-- ROADMAP --> ## Roadmap ### Proposed features 1. Number of pages between the pagination buttons. 2. Ability to sort search results by duration or number of ingredients. 3. Ingredient validation in view, before submitting the form. 4. Improving recipe ingredient input: separate in multiple fields and allow more than 6 ingredients. 5. Shopping list feature: button on recipe to add ingredients to a list. 6. Weekly meal planning feature: assign recipes to the next 7 days and show on a weekly calendar. 7. Nutrition data on each ingredient from spoonacular API (https:// spoonacular.com/food-api) and calculate total calories of recipe. <!-- CONTRIBUTING --> ## Contributing Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are **greatly appreciated**. 1. Fork the Project 2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`) 3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`) 4. Push to the Branch (`git push origin feature/AmazingFeature`) 5. Open a Pull Request <!-- LICENSE --> ## License Distributed under the MIT License. See `LICENSE` for more information. <!-- CONTACT --> ## Contact Mostafa Salem - [Say Hie](https://www.linkedin.com/in/mostafa-salem-801004172/) Project Link: [https://mostafa-forkify.netlify.app/](https://mostafa-forkify.netlify.app/) <!-- ACKNOWLEDGEMENTS --> ## Acknowledgements - Course : (https://www.udemy.com/course/the-complete-javascript-course/) - [Img Shields](https://shields.io) - [Netlify](https://www.netlify.com/) - [Webpack](https://webpack.js.org/) - [Google Fonts](https://fonts.google.com/) <!-- MARKDOWN LINKS & IMAGES --> <!-- https://www.markdownguide.org/basic-syntax/#reference-style-links -->
Forkify App
javascript,sass,vanilla-javascript
2023-01-20T13:09:13Z
2023-01-21T15:37:21Z
null
1
0
25
0
0
2
null
null
JavaScript
Tanishq-Rathi/Web-Pages-Projects
test
# Web-Pages-Projects
This is about my whole WebDev journey
css,expressjs,html,javascript,mongodb,nodejs,reactjs,tailwindcss
2023-01-19T20:26:56Z
2024-03-22T11:48:30Z
null
1
2
97
0
0
2
null
null
HTML
sahillagad/rude-coil-884
main
<img src="https://readme-typing-svg.herokuapp.com?font=Architects+Daughter&amp;color=teal&amp;size=20&amp;lines=ONLINE+CUSTOMER+SERVICE+CENTER;" style="width: 100%;"> <h1 align="center">CALL BUDDY WEBSITE</h1> About CallBuddy - Hello world ! , The CallBuddy application provides a call facility to customers who are facing issues. In CallBuddy, customers can raise their problems, and our admin will create a department and an operator, who will solve the problem by providing a solution to the customer. # Problem Statement: - Call Centre Process: Within a call centre the main process is handling the telephone call. - If Operator can give the customer all the information, they require during the call without passing it to someone else, then this is usually known as ‘one and done’. - The more calls that can be handled as ‘one and done’ the more efficient the process can be. ## LANDING PAGE ![Landing page](https://user-images.githubusercontent.com/105967008/214357481-2623a8c3-028d-46d2-9c00-fdddcd812ab8.png) ## LOGIN PAGE ![login page](https://user-images.githubusercontent.com/105967008/214358564-44008bb2-c506-4755-9c75-1a3855b5f1e0.png) ## SIGNUP PAGE ![signup page](https://user-images.githubusercontent.com/105967008/214358765-6f34f9cc-ebbe-4af6-8ba8-efb96b94409a.png) ## ADMIN MODULE ![admin page](https://user-images.githubusercontent.com/105967008/214360666-8db31a61-248d-40c3-9cf7-617304373208.png) ## OPERATOR MODULE ![operator page](https://user-images.githubusercontent.com/105967008/214360791-c2936582-ffda-4ead-afbb-ccf3db8fd0a7.png) ## CUSTOMER MODULE ![customer page](https://user-images.githubusercontent.com/105967008/214360923-36432e99-3335-4dc4-b7f4-dc7c31e4644e.png) ## Tech Stack - **HTML** - **CSS** - **JavaScript** - **Java** - **Spring boot*** - **spring** - **Mysql** - **Hibernate** A Group project build by 4 Developers, executed in 5 Days. ## Contributers - **[sahil lagad](https://github.com/sahillagad)** - **[DEEPAK KUMAR](https://github.com/dee686)** - **[Chandra Prakash Dhaker](https://github.com/ChanduDhakad)** - **[Aman Verma](https://github.com/amanvermai30)** ### 🤝 Thanks for taking the time to view our project! We hope that you found it interesting and informative.
Call Centre Process: Within a call centre the main process is handling the telephone call.
bootstrap5,css3,hibernate,html5,java,javascript,spring-boot,spring-mvc,sql
2023-01-17T07:05:07Z
2023-06-23T07:54:35Z
null
5
33
90
0
1
2
null
null
HTML
Rafa-KozAnd/Ignite_Node.js_Challenge_02
main
<p align="center"> <img src="http://img.shields.io/static/v1?label=STATUS&message=Concluded&color=blue&style=flat"/> <img alt="GitHub language count" src="https://img.shields.io/github/languages/count/Rafa-KozAnd/Ignite_Node.js_Challenge_02"> <img alt="GitHub language count" src="https://img.shields.io/github/languages/top/Rafa-KozAnd/Ignite_Node.js_Challenge_02"> <img alt="GitHub repo file count" src="https://img.shields.io/github/directory-file-count/Rafa-KozAnd/Ignite_Node.js_Challenge_02"> <img alt="GitHub repo size" src="https://img.shields.io/github/repo-size/Rafa-KozAnd/Ignite_Node.js_Challenge_02"> <img alt="GitHub language count" src="https://img.shields.io/github/license/Rafa-KozAnd/Ignite_Node.js_Challenge_02"> </p> # Ignite_Node.js_Challenge_02 Node JS challenge done with 'Rocketseat' Ignite course. ("Desafio: Trabalhando com middlewares") ## 💻 Sobre o desafio Nesse desafio você irá trabalhar mais a fundo com middlewares no Express. Dessa forma você será capaz de fixar mais ainda os conhecimentos obtidos até agora. Para facilitar um pouco mais do conhecimento da regra de negócio, você irá trabalhar com a mesma aplicação do desafio anterior: uma aplicação para gerenciar tarefas (ou *todos*) mas com algumas mudanças. Será permitida a criação de um usuário com `name` e `username`, bem como fazer o CRUD de *todos*: - Criar um novo *todo*; - Listar todos os *todos*; - Alterar o `title` e `deadline` de um *todo* existente; - Marcar um *todo* como feito; - Excluir um *todo*; Tudo isso para cada usuário em específico. Além disso, dessa vez teremos um plano grátis onde o usuário só pode criar até dez *todos* e um plano Pro que irá permitir criar *todos* ilimitados, isso tudo usando middlewares para fazer as validações necessárias.
Node JS challenge done with 'Rocketseat' Ignite course. ("Desafio: Trabalhando com middlewares")
ignite,ignite-nodejs,ignite-rocketseat,javascript,nodejs,rocketseat
2023-01-19T00:40:27Z
2023-04-20T13:20:20Z
null
1
0
3
0
0
2
null
null
JavaScript
kilianevers/CSS_Templates
master
Not everything has been tested so there is no functional warranty please take this into consideration. If something does not work but you know how it can work so please create a pull request. In addition, I must note that some templates whose design does not always come from me but with the opinion or influence of friends of mine were created.
Free - CSS Templates (including HTML and JavaScript if required)
css,css-animations,html,html-css-javascript,javascript
2023-01-22T01:02:00Z
2023-02-09T21:12:06Z
null
1
2
34
0
0
2
null
GPL-3.0
CSS
SterlingBoom/movie-site
master
# Getting Started with Create React App This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). ## Available Scripts In the project directory, you can run: ### `npm start` Runs the app in the development mode.\ Open [http://localhost:3000](http://localhost:3000) to view it in your browser. The page will reload when you make changes.\ You may also see any lint errors in the console. ### `npm test` Launches the test runner in the interactive watch mode.\ See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. ### `npm run build` Builds the app for production to the `build` folder.\ It correctly bundles React in production mode and optimizes the build for the best performance. The build is minified and the filenames include the hashes.\ Your app is ready to be deployed! See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. ### `npm run eject` **Note: this is a one-way operation. Once you `eject`, you can't go back!** If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own. You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it. ## Learn More You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). To learn React, check out the [React documentation](https://reactjs.org/). ### Code Splitting This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) ### Analyzing the Bundle Size This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) ### Making a Progressive Web App This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) ### Advanced Configuration This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) ### Deployment This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) ### `npm run build` fails to minify This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
Movie Search App
api,javascript,react,css
2023-01-24T12:37:23Z
2023-01-24T12:34:12Z
null
1
0
2
0
0
2
null
null
JavaScript
asifaminisonline/Bookstore
dev
<a name="readme-top"></a> <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment](#triangular_flag_on_post-deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [❓ FAQ](#faq) - [📝 License](#license) <!-- PROJECT DESCRIPTION --> # 📖 [Bookstore-App] <a name="about-project"></a> > Book store app is a react based app where we can add and remove books. ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> > Following technologies have been used in this project. <details> <summary>Client</summary> <ul> <li><a href="https://react.org/">React JS</a></li> <li><a href="https://www.jsx.com/">JSX</a></li> <li><a href="https://www.w3.org/Style/CSS/current-work.en.html">CSS</a></li> <li><a href="https://www.ecma-international.org/publications-and-standards/standards/ecma-262/">JavaScript5</a></li> <li><a href="https://redux.js.org/">React Redux</a></li> <li><a href="https://reactrouter.com/">React Router</a></li> </ul> </details> <details> <summary>Server</summary> <ul> <li><a href="https://pages.github.com/">Github Pages</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> > This project is a React Single Page App. > In this project you can Add books and delete books. > This project is using React Router. > This project is using best practices with React and JavaScript. > This project follows the gitflow convention. > This is using eslint and stylelint to check errors. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo"></a> > Soon you will find a live demo link here: <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- GETTING STARTED --> ## 💻 Getting Started <a name="getting-started"></a> > This is how a new developer could make use this project. To get a local copy up and running, follow these steps. ### Prerequisites In order to run this project you need: - [ ] A PC or Mac. - [ ] An active internet connection. - [ ] Some knowledge of git and github. ### Setup Clone this repository by using the command line : git clone https://github.com/asifaminisonline/Bookstore.git ### Install Install this project with: Use npm install after cloning this project ### Usage - [ ] First you need to download this repo or clone this repo. - [ ] Open this project in your local machine. - [ ] Open Terminal in your machine. - [ ] run npm install in your terninal to install necessary required dependencies for this project. - [ ] Copy index.html file path and paste it in your browser url. - [ ] now the project will be running. ### Deployment You can deploy this project using: Github Pages. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> > Mention all of the collaborators of this project. 👤 **Author1** - GitHub: [@asifaminisonline](https://github.com/asifaminisonline) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> > Following are a few features i will add to the project in future. - [ ] I will add a database to this project in future where i can save user data. - [ ] I will add more functionality to this project like book search, author search etc. - [ ] I will update the interface and design of the project in future. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- CONTRIBUTING --> ## 🤝 Contributing <a name="contributing"></a> Contributions, issues, and feature requests are welcome! Feel free to check the [issues page](../../issues/). <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- SUPPORT --> ## ⭐️ Show your support <a name="support"></a> If you're committed to making the world a better place, please support our project. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to give credit to the following people who have inspired my codebase: - [ ] The Whole Microverse Team - thank you so much for this great learning platform. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FAQ (optional) --> ## ❓ FAQ <a name="faq"></a> - **[Question_1]** What technologies i have used in this project ? - [Answer_1]:Thanks for the question you can find the answer at the top section of this readme.md file where i have explained everything. - **[Question_2]** Have you used webpack in this project ? - [Answer_2] Yes i have used webpack 5 in this project. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](https://github.com/asifaminisonline/Bookstore/blob/Initialize/LICENSE.md) licensed. \_NOTE: we recommend using the [MIT license](https://choosealicense.com/licenses/mit/) - you can set it up quickly by [using templates available on GitHub](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). You can also use [any other license](https://choosealicense.com/licenses/) if you wish. <p align="right">(<a href="#readme-top">back to top</a>)</p>
This project is a React Single Page App. In this project you can Add books and delete books. This project is using React Router. This project is using best practices with React and JavaScript. This project follows the Gitflow convention.
gitflow,javascript,react-router,reactjs
2023-01-20T06:09:08Z
2023-01-25T16:39:52Z
null
1
7
25
0
0
2
null
MIT
JavaScript
Divinity-dev/AwesomeBokks
main
<!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment](#triangular_flag_on_post-deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [❓ FAQ (OPTIONAL)](#faq) - [📝 License](#license) <!-- PROJECT DESCRIPTION --> # 📖 [your_project_name] <a name="about-project"></a> > This is a library project for adding and removing books **[your_project__name]** is a... ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="https://reactjs.org/">Javascript</a></li> </ul> </details> <details> <summary>Server</summary> <ul> <li><a href="https://expressjs.com/">Express.js</a></li> </ul> </details> <details> <summary>Localstorage</summary> <ul> <li><a href="https://www.postgresql.org/">PostgreSQL</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> > You can add and remove books from the library - **[Add Books]** - **[remove books]** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo"></a> - [Live Demo Link]( https://divinity-dev.github.io/AwesomeBokks/) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- GETTING STARTED --> ## 💻 Getting Started <a name="getting-started"></a> > This project can be used as a library feature in any project ### Prerequisites A browser <!-- Example command: ```sh gem install rails ``` --> ### Setup Clone this repository to your desired folder: https://github.com/Divinity-dev/AwesomeBokks <!-- Example commands: ```sh cd my-folder git clone git@github.com:myaccount/my-project.git ``` ---> ### Install Install this project with: <!-- Example command: ```sh cd my-project gem install ``` ---> ### Usage To run the project, execute the following command: <!-- Example command: ```sh rails server ``` ---> ### Run tests To run tests, run the following command: <!-- Example command: ```sh bin/rails test test/models/article_test.rb ``` ---> ### Deployment You can deploy this project using: <!-- Example: ```sh ``` --> <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> 👤 **Author1** - GitHub: [@githubhandle](https://github.com/Divinity-dev) - Twitter: [@twitterhandle](https://twitter.com/twitterhandle) - LinkedIn: [LinkedIn](https://www.linkedin.com/in/divine-asiriuwa-a87227a3/) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> - [ ] **[new_feature_1]** - [ ] **[new_feature_2]** - [ ] **[new_feature_3]** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- CONTRIBUTING --> ## 🤝 Contributing <a name="contributing"></a> Contributions, issues, and feature requests are welcome! Feel free to check the [issues page](../../issues/). <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- SUPPORT --> ## ⭐️ Show your support <a name="support"></a> > Developers are welcome to improve on the project or use irt for their project If you like this project... <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> > Give credit to everyone who inspired your codebase. I would like to thank Mr Jonas Wulah who was very helpful in develping this project <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FAQ (optional) --> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](./LICENSE) licensed.
This is an app for a collection of books in a library built with html, css and javascript.
css,html,javascript
2023-01-23T08:03:28Z
2023-07-12T18:02:11Z
null
1
1
8
0
0
2
null
MIT
JavaScript
mayaif/tenzies
main
![9 1 - Copy](https://user-images.githubusercontent.com/99820280/230891890-c3700a8f-fd14-41b9-aa97-f1eae87b8794.png) To win the game, the player must roll the dice until they are all the same. By selecting a dice, the player can lock its current value, preventing it from changing in subsequent rolls. The useState() is used to define two state variables 'dice' and 'tenzies'. 'dice' stores an array of dice objects which have a value, 'isHeld' and 'id' properties. 'tenzies' is a boolean state variable that determines whether the game has been won or not. The useEffect() is used to check whether all the dice have the same value and are being held. If this is the case, tenzies state variable is set to 'true', indicating that the game has been won. The useEffect() hook is dependent on the 'dice' state variable, so it will be called every time the 'dice' state variable is updated. This allows the function to monitor changes to the dice variable and execute the necessary code when the conditions of the useEffect are met.
TENZI game built with React. Roll until all dice are the same. Click each die to freeze it at its current value between rolls
css,css-flexbox,html,javascript,react,state-management,functional-components,props-and-state-components,hooks
2023-01-25T11:27:54Z
2023-04-10T11:19:29Z
null
1
1
9
0
0
2
null
null
JavaScript
DanRodriguezdev/nlw-setup-explorer
main
<h1 align="center"> Habits </h1> <p align="center"> NLW é um evento exclusivo e gratuito, promovido pela Rocketseat para ensino de tecnologias WEB. <br/> </p> <p align="center"> <a href="#-tecnologias">Tecnologias</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-projeto">Projeto</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-layout">Layout</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#memo-licença">Licença</a> </p> <p align="center"> <img alt="License" src="https://img.shields.io/static/v1?label=license&message=MIT&color=49AA26&labelColor=000000"> </p> <br> <p align="center"> <img alt="projeto Habit" src=".github/preview.jpg" width="100%"> </p> ## 🚀 Tecnologias Esse projeto foi desenvolvido com as seguintes tecnologias: - HTML e CSS - JavaScript - Git e Github - Figma ## 💻 Projeto O Habits é um app para ajudar a rastrear os hábitos. - [Visite o projeto online](https://danrodriguezdev.github.io/nlw-setup-explorer/) ## 🔖 Layout Você pode visualizar o layout do projeto através [DESSE LINK](https://www.figma.com/community/file/1195327109778210238). É necessário ter conta no [Figma](https://figma.com) para acessá-lo. ## :memo: Licença Esse projeto está sob a licença MIT. --- Feito com ♥ by Rocketseat :wave: [Participe da nossa comunidade!](https://discord.gg/rocketseat)
Habit Tracker by NLW´s Rocktseat
css,html,javascript,figma,git,github
2023-01-21T04:06:26Z
2023-01-27T17:20:15Z
null
1
0
10
0
0
2
null
null
HTML
DevArturoOrtueta/arturo-ortueta
main
# Personal Portfolio
Personal Portfolio
html,javascript,nextui,reactjs
2023-01-18T03:03:35Z
2023-08-30T13:49:34Z
null
1
3
57
0
0
2
null
null
JavaScript
lenra-io/app-stat-us
main
<div id="top"></div> <!-- *** This README was created with https://github.com/othneildrew/Best-README-Template --> <!-- PROJECT SHIELDS --> [![Contributors][contributors-shield]][contributors-url] [![Forks][forks-shield]][forks-url] [![Stargazers][stars-shield]][stars-url] [![Issues][issues-shield]][issues-url] [![MIT License][license-shield]][license-url] <!-- PROJECT LOGO --> <br /> <div align="center"> <h3 align="center">Stat Us</h3> <p align="center"> A Lenra app to analyse stats from your social media posts. Add and edit any social media you want, e.g Reddit, Dev etc ... <br /> <br /> <a href="https://github.com/lenra-io/app-stat-us/issues">Report Bug</a> · <a href="https://github.com/lenra-io/app-stat-us/issues">Request Feature</a> </p> </div> <!-- GETTING STARTED --> ## Prerequisites To properly run this app locally, you will have to make sure that the Lenra CLI and docker with docker-compose are installed on your computer. Installation instructions can be found here https://github.com/lenra-io/lenra_cli. <p align="right">(<a href="#top">back to top</a>)</p> <!-- USAGE EXAMPLES --> ## Usage To run the app locally by running it in the Lenra dev mode. ```console lenra dev ``` You can then access the application by opening [`localhost:4000`](http://localhost:4000) on your web browser. <p align="right">(<a href="#top">back to top</a>)</p> <!-- CONTRIBUTING --> ## Contributing Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**. If you have a suggestion that would make this better, please open an issue with the tag "enhancement". Don't forget to give the project a star if you liked it! Thanks again! <p align="right">(<a href="#top">back to top</a>)</p> <!-- LICENSE --> ## License Distributed under the **MIT** License. See [LICENSE](./LICENSE) for more information. <p align="right">(<a href="#top">back to top</a>)</p> <!-- CONTACT --> ## Contact Lenra - [@lenra_dev](https://twitter.com/lenra_dev) - contact@lenra.io Project Link: [https://github.com/lenra-io/app-stat-us](https://github.com/lenra-io/app-stat-us) <p align="right">(<a href="#top">back to top</a>)</p> <!-- MARKDOWN LINKS & IMAGES --> <!-- https://www.markdownguide.org/basic-syntax/#reference-style-links --> [contributors-shield]: https://img.shields.io/github/contributors/lenra-io/app-stat-us.svg?style=for-the-badge [contributors-url]: https://github.com/lenra-io/app-stat-us/graphs/contributors [forks-shield]: https://img.shields.io/github/forks/lenra-io/app-stat-us.svg?style=for-the-badge [forks-url]: https://github.com/lenra-io/app-stat-us/network/members [stars-shield]: https://img.shields.io/github/stars/lenra-io/app-stat-us.svg?style=for-the-badge [stars-url]: https://github.com/lenra-io/app-stat-us/stargazers [issues-shield]: https://img.shields.io/github/issues/lenra-io/app-stat-us.svg?style=for-the-badge [issues-url]: https://github.com/lenra-io/app-stat-us/issues [license-shield]: https://img.shields.io/github/license/lenra-io/app-stat-us.svg?style=for-the-badge [license-url]: https://github.com/lenra-io/app-stat-us/blob/master/LICENSE
Analyse your stats from your social media posts
lenra,app,javascript
2023-01-25T10:57:01Z
2023-03-30T09:07:14Z
null
3
6
8
2
0
2
null
MIT
JavaScript
Dcolonel6/code-challenges
main
null
Codility code challenge
binary-gap,codility-solutions,javascript
2023-01-25T16:01:24Z
2024-03-20T15:46:07Z
null
1
0
138
0
0
2
null
null
JavaScript
MoschellaV/RingClone
main
# Rang <p align="center" style="margin-top: 220px"> <img src="https://github.com/MoschellaV/RingClone/assets/58868225/f1b21dd6-062d-4768-8341-7c9f108f68f7" alt="forthebadge"> <img src="https://github.com/MoschellaV/RingClone/assets/58868225/9b01ef5d-c944-47e9-b7d9-c7d087e31686" alt="forthebadge"> <img src="https://github.com/MoschellaV/RingClone/assets/58868225/09c8137e-3a84-41e2-ac7a-eef390d56bac" alt="forthebadge"> </p> <p align="center"> <img src="https://github.com/MoschellaV/RingClone/assets/58868225/e0496f35-8680-4592-b5c1-b1a6c32b82ae" alt="icon copy" width="200"> </p> <p align="center">A ring clone (yes, the doorbell one).</p> ## 📖 Table of Contents - [About The Project & Inspo](#-about-the-project--inspo) - [Demo Video](#-demo-video) - [Hardware](#-hardware) - [Features](#-features) - [Tech Used](#-tech-used) - [What I Learned](#-what-i-learned) - [Setup & Installation](#%EF%B8%8F-setup--installation) - [Start Here](#-start-here) - [Frontend & Firebase](#-frontend--firebase) - [Backend](#-backend) - [Camera Appliance](#-camera-appliance) - [Running It All](#-running-it-all) - [Usage](#-usage) - [Contact](#-contact) <br/> ## 📄 About The Project & Inspo Imagine ring, now hopefully your memory is blurry because you're looking at Rang. Anyway, this project aims to replicate some of ring's features and system design. I could've done something _simpler_ :woozy_face: but honestly doing a twitter, spotify, or a youtube clone is boringggg, like there's tutorials on that. But making a ring clone... haven't seen a tutorial on it _yet_. <br/> ### 🎥 Demo Video There's **audio** btw. <br/> <p align="center"> https://github.com/MoschellaV/RingClone/assets/58868225/4f09c10c-e11b-4830-88ef-e8c47b891897 </p> <br/> ### 🔨 Hardware Check out what the hardware behind the camera appliance looks like! I used a 5 megapixel camera attached via a ribbon cabel to a Raspberry Pi Model B. <img width="300" height="300" alt="image" src="https://github.com/MoschellaV/RingClone/assets/58868225/9737424a-de3f-4797-b005-3e5e1d2ed55b"> <img width="300" height="300" alt="image" src="https://github.com/MoschellaV/RingClone/assets/58868225/933ff6a1-dd39-4c5a-907b-6d4cb082b5ed"> <img width="200" height="300" alt="image" src="https://github.com/MoschellaV/RingClone/assets/58868225/1b05ebad-8516-4be5-9c73-0defc5116c2a"> <br/> ### 🚀 Features Some features! - **Live Video Streaming:** Users can access real-time video feeds from their cameras, allowing them to see visitors remotely. - **Face Detection:** The system is equipped with an advanced face detection model that alerts users when there is human activity in front of the camera. - **Supports Multiple Cameras:** Users can add any amount of cameras whether it be a camera monitoring the front door, garage, or back door. - **Cloud Storage:** Recorded face detection logs, camera device data, and user data is securely stored in the cloud, providing convenient access and retrieval at any time. - **User Accounts**: Securely create a user profile where you can manage your devices. - **Mobile App Integration:** Mobile app for both iOS and Andriod users. <br/> ### 💻 Tech Used Rang uses modern tech, frameworks, and libraries. And here it is... - [**Node.js**](https://nodejs.org/en) for the backend, handling requests, server-side processing and server-side logic. - [**Firebase**](https://firebase.google.com/) for user authentication, database management, and secure cloud storage. - [**React Native**](https://reactnative.dev/) for a cross-platform mobile app and consistent user experience. - [**NativeBase**](https://nativebase.io/) for a more appealing user interface. - [**OpenCV**](https://opencv.org/) [**(Python)**](https://www.python.org/) for image processing, face recognition, and analysis. - [**Socket.IO**](https://socket.io/) for fast real-time communication and video streaming. <br/> ### 🧠 What I Learned I learned a ton while developing this clone of ring. Before this project I had never worked with Firebase, OpenCV, WebSockets or React Native (I have used a lot of React tho). Nonetheless, it was great to combine different tech and make something functional and pretty cool. On top of the coding I also looked a bit into systems design/overall architecture of the project. I had to think how I wanted the client, server, and camera(s) to interact with one another and I wanted to make it scalable. A quick example of this would be me realizing that if I wanted users to be able to connect to their camera(s) from anywhere, I would need my server to act kinda like the middleman. I also needed a way to verify the camera devices, so I decided that each camera would be associated with an unique ID which would be written into the database and coded in the camera. When users want to add a camera they can enter in the ID and some server-side logic verifies it, then adds it to the user profile. _Side Note_ ~ I envisioned that if this were a real product you could have a script to automate ID's being written into the database and another script to code the ID into the camera. When a customer buys a camera it would come with it's unique ID. (I think this is actually how ring does it but users add their doorbell via QR code) <br/> ## 🛠️ Setup & Installation ### 🎯 Start Here Want to set it up? Just follow this portion of the ReadMe _in order_. <br/> ### 📋 Prerequisites You're gonna need some stuff first... <br/> <br/> To start make sure you have node.js. (I'm mentioning it up here because **you need it for both the front and back end**.) 1. **Install Node.js**: make sure you are using `node.js` version `>= v16.16.0` and `npm` version `>=8.11.0` .If you don't have node, install it [here](https://nodejs.org/en). #### Prerequisites ~ Firebase 2. **Google Account**: make sure you have a google account because we will be using it for `Firebase` later. #### Prerequisites ~ Frontend 3. **Expo**: letting you know this project uses `expo` but you won't need to install anything since it leverages npx, you can read more about it [here](https://docs.expo.dev/get-started/installation/#recommended-tools). 4. **Emulator OR Phone**: make sure you have either an emulator (`iOS` or `Android`). I would strongly recommend the [iOS Simulator](https://docs.expo.dev/workflow/ios-simulator/) or [Android Studio](https://docs.expo.dev/workflow/android-studio-emulator/). OR a phone (iPhone or Android) if you want to use your phone you need to download `Expo Go` from the App Store/Google Play Store. #### Prerequisites ~ Camera Appliace 5. **Python**: ensure you have `python 3.9+` <br/> ### 🔄 Cloning Next, clone the repo. <br/> Move to whatever directory you want to clone into and run: ``` git clone https://github.com/MoschellaV/RingClone.git ``` <br/> ### 🌐 Frontend & Firebase From the root directory move into the `/client` folder. ``` cd client ``` Next, install all packages and dependencies. ``` npm install ``` Frontend Setup 1. Create a `.env` file in the `/client` folder. <img width="290" alt="image" src="https://github.com/MoschellaV/RingClone/assets/58868225/a21e5cea-c476-4611-876e-7d0f6f593857"> 2. Find your IP address and paste the following in the `.env` file. Note: _92.199.137.15 is a fake IP for demonstration purposes, 6000 is the port (you can change the port if you want)_ ```env SERVER_URL=http://92.199.137.15:6000 ``` Now we have to set up Firebase. 1. Make sure you're signed into your Google Account. 2. Go to the [firebase page here.](https://firebase.google.com/) 3. Click `Get started`. 4. Click `Add project` and follow the steps, the name does not matter, and you can disable google analytics. 5. Click the `</>` icon to add Firebase to your web app. <img width="500" alt="create_web_app" src="https://github.com/MoschellaV/RingClone/assets/58868225/bb7ae4b0-31f1-4e39-8b91-a8e2d5311c4d"> 6. Now choose a name (anything), leave Firebase Hosting unchecked and register the app. 7. Now you only need the firebaseConfig so copy it and save it somewhere (like a notepad). <img width="484" alt="image" src="https://github.com/MoschellaV/RingClone/assets/58868225/44cf2d16-e7b8-4abf-88a5-5b352cd07644"> 9. Paste the following in the `.env` file. ```env FIREBASE_API_KEY=your_key_here FIREBASE_AUTH_DOMAIN=your_key_here FIREBASE_PROJECT_ID=your_key_here FIREBASE_STORAGE_BUCKET=your_key_here FIREBASE_MESSAGE_SENDER_ID=your_key_here FIREBASE_APP_ID=your_key_here ``` 10. For each variable replace `your_key_here` with the corresponding key from the firebaseConfig in step 7. 11. Setup Firebase Auth. - Go to the firebase console and click `Authentication`. <img width="500" alt="auth_button" src="https://github.com/MoschellaV/RingClone/assets/58868225/ea400ad0-9b42-4017-81ea-71365440aaba"> - Click `Get started`. <img width="500" alt="image" src="https://github.com/MoschellaV/RingClone/assets/58868225/383840a3-d0b5-448f-906d-3f53bb34bb75"> - Select Email/Password as the sign-in method. <img width="500" alt="image" src="https://github.com/MoschellaV/RingClone/assets/58868225/16e52449-e3db-45c5-8ab6-6aa60a97d1dc"> - Enable Email/Password <img width="500" alt="image" src="https://github.com/MoschellaV/RingClone/assets/58868225/b2dd4b92-abce-4893-9449-e9e9c7b15b93"> - Click Save 12. Setup Firestore. - Go to the firebase console and click `Cloud Firestore`. <img width="500" alt="image" src="https://github.com/MoschellaV/RingClone/assets/58868225/38eddc27-f36e-4c1a-81a0-0bc7d5adc7ec"> - Click `Create Database`. <img width="500" alt="image" src="https://github.com/MoschellaV/RingClone/assets/58868225/028139bd-0ec6-49d5-a694-4b65104c37c4"> - When prompted with read/write rules check `Start in production mode` and then select **your region**. <br/> ### ⚙ Backend From the root directory move into the `/backend` folder. ``` cd backend ``` Next, install all packages and dependencies. ``` npm install ``` Backend Setup <br/> Open the file `backend/server.js` and on **line 1** make sure the port is the same as the one used in the `SERVER_URL` variable for the frontend. ```js // you should see const PORT = 6000; ``` Now we have to setup firebase admin. 1. Navigate to your app's settings. <img width="500" alt="image" src="https://github.com/MoschellaV/RingClone/assets/58868225/2b7e2187-1df6-4d5e-9d16-6b7c963ea059"> <img width="500" alt="image" src="https://github.com/MoschellaV/RingClone/assets/58868225/790e24d8-5b02-4fdc-b982-6db501d16d6a"> 2. Using the tabs navigate to `Service accounts`, then click `Generate new private key`. <img width="700" alt="image" src="https://github.com/MoschellaV/RingClone/assets/58868225/12714383-0637-4d3f-bb1d-d7f2739c7bc7"> 3. Download the generated key, open the `.json` file and copy all the contents. 4. Create a file called `serviceAccountKey.json` in the `/backend/Firebase` directory and paste the contents of the generated key in that file. <img width="250" alt="image" src="https://github.com/MoschellaV/RingClone/assets/58868225/0b65b698-8f69-4561-bdc9-5595e67cb991"> <br/> ### 📸 Camera Appliance From the root directory move into the `/cameraAppliance` folder. ``` cd cameraAppliance ``` Camera Setup <br/> 1. Create a `.env` file in the `/cameraAppliance` folder. <img width="250" alt="image" src="https://github.com/MoschellaV/RingClone/assets/58868225/f224f427-4d4e-4a78-bc42-b4f35956b8d2"> 2. Use the same `SERVER_URL` that you used in the client env file and paste it in this `.env` file. <br/> _This SERVER_URL below, is an example._ ```env SERVER_URL=http://92.199.137.15:6000 ``` 3. Now we need to set up the virtual environemnt. <br/> **make sure you're using the correct version of python to set up the environment**<br/> To do so use... ``` python -m venv env ``` 4. To activate the virtual environemnt use the appropriate command. ``` # windows env/Scripts/activate # macOS/WSL source env/bin/activate ``` <br/> 5. After activating the virtual environemnt you must install all the requirements with this command... ``` pip install -r requirements.txt ``` <br/> ### 🎬 Running It All Now that everything is set up, we can start up the project. <br/> But first we need to add our camera to the database, I mentioned this in the [What I Learned](#-what-i-learned) section. 1. Navigate to `/cameraAppliance/device_CONFIG.py` and copy the ID that I left there. 2. Now go into the Firestore database in Firebase. 3. Click `Start collection` and name the collection `devices` <-- exactly like that, no caps. 4. Paste the device_Id into the document ID and then you can make up any field and value for that document (see below as exemplar). <img width="450" alt="image" src="https://github.com/MoschellaV/RingClone/assets/58868225/766c6127-4d50-4dae-874e-e5fcbd15ef02"> 5. Click Save. 6. **IMPORTANT** If you want to add multiple camera's, duplicate the `cameraAppliance/` folder, and change the `device_id` in `device_CONFIG.py` to a new ID. Then follow the same steps as above, adding it into the database. <br/> #### Starting up Backend First we will start the backend.<br/> Open a new terminal in the root directory and `cd backend`.<br/> Run the following to start the server... ``` npm start #you can also use nodemon if you happen to have it installed ``` <br/> #### Starting up Frontend Next we'll start the frontend.<br/> Open a new terminal and `cd client`. <br/> Then run the following... ``` npx expo start #Next, view the options (in the terminal) presented by expo and press a or i depending on which emulator you're using. i #OR a ``` <br/> #### Starting up Camera And finally we can start the camera.<br/> Open a new terminal and `cd cameraAppliance`. <br/> _Make sure you're in your virtual environemnt_ ``` # To Activate Virtual Env # windows env/Scripts/activate # macOS/WSL source env/bin/activate ``` To run the software for the camera use... ``` python main.py OR python3 main.py ``` ## 🧰 Usage To use the app, you must fist make an account, you can click `Sign Up` to do so.<br/> Once you have an account, you can go to your `Profile` and `Add Device`.<br/> Now log out and log back in. <br/> You should now see a video icon in the `Live Video` tab, click on it to view the live stream from your camera (you're camera needs to be running in case you closed it). You should also be able to see all the detection logs in the `Detection Logs` tab. ## 📨 Contact Got questions? Feel free to reach out! - [Email](mailto:vincemoschella04@gmail.com) - [LinkedIn](https://www.linkedin.com/in/moschellav/) You can also open an issue on this GitHub repo if you find any problems.
A clone of the ring (yea the doorbell one).
firebase,javascript,native-base,nodejs,python,react-native,socket-io,system-design
2023-01-17T17:48:17Z
2023-11-06T01:46:40Z
null
1
2
77
0
0
2
null
null
JavaScript
Kavitadsharma/Trend-Nova
main
<h1>TREND NOVA</h1> ![Bloomingdale's](https://github.com/Kavitadsharma/project-1/assets/115460412/5ee264fc-b646-4e87-af93-a09ef1eb7b24) The objective is to develop an all-encompassing e-commerce platform that empowers users to effortlessly explore an extensive range of products and complete seamless online transactions. <h1>Features</h1> --> User can login / SignUp. --> User can see all the products --> User can see products according to category <h1>Screenshots</h1> <h3>Landing Page</h3> ![1112](https://github.com/Kavitadsharma/project-1/assets/115460412/1af594ba-638a-4f70-8df0-5f48bf1a2f9e) <h3>Footer Part</h3> ![1113](https://github.com/Kavitadsharma/project-1/assets/115460412/37646040-76ad-46e2-9247-185d14686c9f) <h3>Women's Page</h3> ![1114](https://github.com/Kavitadsharma/project-1/assets/115460412/22df6576-2eb2-41ea-a4e0-c76a6ffb9885) <h3>Register</h3> ![1115](https://github.com/Kavitadsharma/project-1/assets/115460412/fa8819b8-d77e-4b8a-8f87-f44cc913df0e) <h3>Login</h3> ![1116](https://github.com/Kavitadsharma/project-1/assets/115460412/be49a8d5-02e2-43a6-b557-5d8b463651dc) <h3>Tech Stack</h3> <h4>HTML | CSS |Javascript</h4>
It is the clone of an e-commerce website name Bloomingdale. I used HTML, CSS, JavaScript for making this website. User can sign up and sign in. User can see all the products.
css,html,javascript
2023-01-17T14:07:26Z
2023-09-22T16:18:42Z
null
2
2
11
0
0
2
null
null
HTML
Sushil808174/Shopclues-clone-
main
## Installation ``` npm i ``` ## Start only Backend server ``` npm start ``` ## Used Tech Stack ``` 1. HTML 2. CSS 3. JavaScript ``` ## Team Member's Name ``` 1. Susheel Kumar 2. Pritam Halder 3. Adarsh Jondhale 4. MD Afsar Ansel 5. Tushar Tawale
This is the clone of Shopclues that is indian e-commerce website. This is collaborative project cloned by 5 mebers within the 5 days.
css,html,javascript
2023-01-17T06:05:10Z
2023-03-07T09:55:28Z
null
6
8
40
6
1
2
null
null
HTML
danilojcosta/nlw-setup
main
<h1 align="center"> Habits </h1> <p align="center"> Programa exclusivo e gratuito, promovido pela Rocketseat para ensino de tecnologias WEB. <br/> <a href="https://lp.rocketseat.com.br/devlinks/inscricao?utm_source=github&utm_medium=descricao&utm_campaign=capture-devlinks&utm_term=organic&utm_content=descricao-github-mayk-brito">Estude esse projeto em formato de vídeo clicando aqui.</a> </p> <p align="center"> <a href="#-tecnologias">Tecnologias</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-projeto">Projeto</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-layout">Layout</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#memo-licença">Licença</a> </p> <p align="center"> <img alt="License" src="https://img.shields.io/static/v1?label=license&message=MIT&color=49AA26&labelColor=000000"> </p> <br> <p align="center"> <img alt="projeto Habits" src=".github/preview.jpg" width="100%"> </p> ## 🚀 Tecnologias Esse projeto foi desenvolvido com as seguintes tecnologias: - HTML e CSS - JavaScript - Git e Github - Figma ## 💻 Projeto O Habits é um app para ajudar a rastrear os hábitos. - [Visite o projeto online](https://danilojcosta.github.io/nlw-setup/) ## 🔖 Layout Você pode visualizar o layout do projeto através [DESSE LINK](<https://www.figma.com/file/PkasQNlljPBmIZuZjoCTQl/Habits-(e)-(Community)?node-id=6%3A344&t=vU7Btqd20ZwnrNFo-1>). É necessário ter conta no [Figma](https://figma.com) para acessá-lo. ## :memo: Licença Esse projeto está sob a licença MIT. --- Feito com ♥ by Rocketseat :wave: [Participe da nossa comunidade!](https://discord.gg/rocketseat)
Habit Tracker by NLW's Rocketseat
css,git,html,javascript,github,figma
2023-01-24T00:33:50Z
2023-01-24T01:11:01Z
null
1
0
4
0
0
2
null
null
CSS
romaniso/minesweeper
main
# minesweeper
It is my version of a well-known game 'Minesweeper' which comes from early 2000s. It is based on object oriented programming, a plain css and ES6 with JS Classes, Modules, arrow functions, etc. You are welcome to go through the code and suggest any other possible solutions
classes-and-inheritance,es6,javascript,oop-principles,game
2023-01-25T20:02:12Z
2023-01-31T19:47:40Z
null
1
0
13
0
0
2
null
null
JavaScript
PiotrDrechsler/goit-react-hw-04-phonebook
main
# Phonebook made with React Hooks ![HTML5](https://img.shields.io/badge/html5-%23E34F26.svg?style=for-the-badge&logo=html5&logoColor=white) ![CSS3](https://img.shields.io/badge/CSS-239120?&style=for-the-badge&logo=css3&logoColor=white) ![JavaScript](https://img.shields.io/badge/javascript-%23323330.svg?style=for-the-badge&logo=javascript&logoColor=%23F7DF1E) ![React](https://img.shields.io/badge/react-%2320232a.svg?style=for-the-badge&logo=react&logoColor=%2361DAFB) # React homework template This project was created with [Create React App](https://github.com/facebook/create-react-app). To get acquainted and configure additional features [refer to documentation](https://facebook.github.io/create-react-app/docs/getting-started). ## Preparing a new project 1. Make sure you have an LTS version of Node.js installed on your computer. [Download and install](https://nodejs.org/en/) if needed. 2. Clone this repository. 3. Change the folder name from `react-homework-template` to the name of your project. 4. Create a new empty GitHub repository. 5. Open the project in VSCode, launch the terminal and link the project to the GitHub repository [according to the instructions] (https://docs.github.com/en/get-started/getting-started-with-git/managing-remote-repositories #changing-a-remote-repositorys-url). 6. Install the project's base dependencies with the `npm install` command. 7. Start development mode by running the `npm start` command. 8. Go to [http://localhost:3000](http://localhost:3000) in your browser. This page will automatically reload after saving changes to the project files. ## Deploy The production version of the project will automatically be linted, built, and deployed to GitHub Pages, in the `gh-pages` branch, every time the `main` branch is updated. For example, after a direct push or an accepted pull request. To do this, you need to edit the `homepage` field in the `package.json` file, replacing `your_username` and `your_repo_name` with your own, and submit the changes to GitHub. ```json "homepage": "https://your_username.github.io/your_repo_name/" ``` Next, you need to go to the settings of the GitHub repository (`Settings` > `Pages`) and set the distribution of the production version of files from the `/root` folder of the `gh-pages` branch, if this was not done automatically. ![GitHub Pages settings](./assets/repo-settings.png) ### Deployment status The deployment status of the latest commit is displayed with an icon next to its ID. - **Yellow color** - the project is being built and deployed. - **Green color** - deployment completed successfully. - **Red color** - an error occurred during linting, build or deployment. More detailed information about the status can be viewed by clicking on the icon, and in the drop-down window, follow the link `Details`. ![Deployment status](./assets/status.png) ### Live page After some time, usually a couple of minutes, the live page can be viewed at the address specified in the edited `homepage` property. For example, here is a link to a live version for this repository [https://goitacademy.github.io/react-homework-template](https://goitacademy.github.io/react-homework-template). If a blank page opens, make sure there are no errors in the `Console` tab related to incorrect paths to the CSS and JS files of the project (**404**). You most likely have the wrong value for the `homepage` property in the `package.json` file. ### Routing If your application uses the `react-router-dom` library for routing, you must additionally configure the `<BrowserRouter>` component by passing the exact name of your repository in the `basename` prop. Slashes at the beginning and end of the line are required. ```jsx <BrowserRouter basename="/your_repo_name/"> <App /> </BrowserRouter> ``` ## How it works ![How it works](./assets/how-it-works.png) 1. After each push to the `main` branch of the GitHub repository, a special script (GitHub Action) is launched from the `.github/workflows/deploy.yml` file. 2. All repository files are copied to the server, where the project is initialized and linted and built before deployment. 3. If all steps are successful, the built production version of the project files is sent to the `gh-pages` branch. Otherwise, the script execution log will indicate what the problem is.
Phonebook widget with local storage made with React Hooks
css3,html5,javascript,jsx,nanoid,nmp,parcel,prop-types,react,react-hooks
2023-01-25T18:22:08Z
2023-01-29T14:04:50Z
null
1
0
13
0
0
2
null
null
JavaScript
Divinity-dev/To-do-list
main
<a name="readme-top"></a> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment](#triangular_flag_on_post-deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [❓ FAQ (OPTIONAL)](#faq) - [📝 License](#license) <!-- PROJECT DESCRIPTION --> # 📖 [To-do-list] <a name="about-project"></a> > **[To-do list]** is a tool that helps to organize your day. It simply lists the things that you need to do and allows you to mark them as complete ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="https://reactjs.org/">Javascript</a></li> </ul> </details> <details> <summary>Server</summary> <ul> <li><a href="https://expressjs.com/">Express.js</a></li> </ul> </details> <details> <summary>Localstorage</summary> <ul> <li><a href="https://www.postgresql.org/">PostgreSQL</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> > You can add and remove activities planned out for the day - **[Add task]** - **[remove task]** - **[Edit task]** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo"></a> > Add a link to your deployed project. - [Live Demo Link](https://divinity-dev.github.io/To-do-list/dist/) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- GETTING STARTED --> ## 💻 Getting Started <a name="getting-started"></a> > This project can be used to plan out daily tasks ### Prerequisites - A browser - Terminal - Code Editor ### Setup Clone this repository to your desired folder: ```sh cd my-folder git clone https://github.com/Divinity-dev/To-do-list.git ``` - ### Install Install this project with: ```sh cd To-do-list npm install npm run build ``` ### Usage To run the project, execute the following command: ```sh npm start ``` - ### Deployment You can deploy this project using: <!-- Example: ```sh ``` --> <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> 👤 **Author1** - GitHub: [@Divinity-dev](https://github.com/Divinity-dev) - LinkedIn: [divine-asiriuwa](https://www.linkedin.com/in/divine-asiriuwa-a87227a3/) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> > Describe 1 - 3 features you will add to the project. - [ ] **[deploy online]** - [ ] **[More css design]** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- CONTRIBUTING --> ## 🤝 Contributing <a name="contributing"></a> Contributions, issues, and feature requests are welcome! Feel free to check the [issues page](https://github.com/Divinity-dev/To-do-list/issues). <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- SUPPORT --> ## ⭐️ Show your support <a name="support"></a> > Developers are welcome to improve on the project or use it for their project If you like this project... <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> > Give credit to everyone who inspired your codebase. I would like to acknowledge the creators of the minimalist project. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FAQ (optional) --> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](./LICENSE) licensed.
This is an app to plan out activities for a day built with html, css and javascript
css,html,javascript
2023-01-25T11:04:49Z
2023-07-12T18:12:49Z
null
1
5
22
3
2
2
null
MIT
JavaScript
kamiri-charles/notes-app
master
# Notes App Frontend A basic notes app that lets users sign in or sign up and save their notes. It utilizes a django backend. There's a user account for testing - Username: test_user - Password: 12345 Still fixing some bugs with the backend ...
This is a simple web app that allows users to save their notes.
django,javascript,notes,python,react
2023-01-21T10:46:58Z
2023-02-15T20:54:18Z
null
4
6
66
0
1
2
null
null
JavaScript
brnowmar/habits-NLW-Setup
main
<h1 align="center"> Habits </h1> <p align="center"> NLW é um evento exclusivo e gratuito, promovido pela Rocketseat para ensino de tecnologias WEB. <br/> </p> <p align="center"> <a href="#-tecnologias">Tecnologias</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-projeto">Projeto</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-layout">Layout</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#memo-licença">Licença</a> </p> <p align="center"> <img alt="License" src="https://img.shields.io/static/v1?label=license&message=MIT&color=49AA26&labelColor=000000"> </p> <br> <p align="center"> <img alt="projeto Habits" src=".github/preview.jpg" width="100%"> </p> ## 🚀 Tecnologias Esse projeto foi desenvolvido com as seguintes tecnologias: - HTML e CSS - JavaScript - Git e Github - Figma ## 💻 Projeto O projeto Habits é um app para ajudar a rastrear os hábitos. - [Visite o projeto online]{https://brnowmar.github.io/habits-NLW-Setup/} ## 🔖 Layout Você pode visualizar o layout do projeto através [DESSE LINK](https://www.figma.com/community/file/1187422022288947321). É necessário ter conta no [Figma](https://figma.com) para acessá-lo. ## :memo: Licença Esse projeto está sob a licença MIT. --- Feito com ♥ by Rocketseat & Bruno Marcos. [Participe da nossa comunidade!](https://discord.gg/rocketseat)
Habit tracker by Bruno Marcos dev & NLW's Rocketseat
html,css,figma,git,github,javascript
2023-01-20T23:05:43Z
2023-01-21T01:13:01Z
null
1
0
5
0
0
2
null
null
CSS
Hacking-NASSA-with-HTML/sailor-welder
main
![](https://github.com/Hacking-NASSA-with-HTML/sailor-welder/blob/main/assets/img/FB_open_graph_1200x630_image.jpg) # Vyacheslav Plekhanov Sailor-Welder Resume 😎 ## Vyacheslav Plekhanov. Problem-Solve Minded a Reliable ⛵ Sailor-Welder🎇 . Need Getting Your Tasks Done? Let's Talk 📞 📩 ! <!-- | NOTE: | | :--- | | Work in progress | --> FULLY RESPONSIVE AND BLAZING FAST Landing Page! Enjoy! Customize and Sell It to Your customers!💲💸💰 Earn💲money for Yourself! Like it? Give that repo a Star⭐ See the project on [Github Pages](https://hacking-nassa-with-html.github.io/sailor-welder/) . Please 🙌 let me know if you have found any issues ⭐ Know how to improve it? Send a pull request to the GitHub! I would be happy to merge it🙂 And Add You as a Collaborator😎 And May Your Code Always Works Too 🎉🎂🍾🥂🎊😎 ![](https://github.com/Hacking-NASSA-with-HTML/Array_iteration_cheatsheet/blob/main/star.gif) ![](https://github.com/Hacking-NASSA-with-HTML/keep-alive-server/blob/main/assets/happy-happy.gif) Just want your opinion guys, have you ever used a service-worker? To add a feature for your app to be able to work offline? I mean "Progressive Web Apps" (PWAs), web apps that use service workers. I have a branch with it, but hesitate to merge it 🤷 How hard is to get rid of it later from cache? Is it downgrading the score of the Performance in Lighthouse 🤔 ? Because I see the app is loading longer with service-worker, nevertheless Lighthouse shows the same results during Page Speed test, and it confuses me. Have you some advices?
Vyacheslav Plekhanov Sailor-Welder Resume 😎. Problem-Solve Minded a Reliable ⛵ Sailor-Welder🎇 . Need Getting Your Tasks Done? Let's Talk 📞 📩 !
css-flexbox,html5,javascript
2023-01-19T18:02:11Z
2023-06-09T10:18:15Z
null
2
3
199
0
1
2
null
null
JavaScript
Siaam13/Jeux-Pikachu-JS
main
null
Jeux style DinoJump JS
game,javascript,jeux
2023-01-18T14:26:09Z
2023-01-18T15:01:33Z
null
1
0
2
0
0
2
null
null
CSS
Caiofreisleben/explorer-lab-01
main
<h1 align="center"> Explorer Lab #01 </h1> <p align="center"> Evento exclusivo e gratuito, promovido pela Rocketseat para ensino de tecnologias WEB. </p> <p align="center"> <a href="#-tecnologias">Tecnologias</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-projeto">Projeto</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-layout">Layout</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#memo-licença">Licença</a> </p> <p align="center"> <img alt="License" src="https://img.shields.io/static/v1?label=license&message=MIT&color=49AA26&labelColor=000000"> </p> <br> <p align="center"> <img alt="rocketpay" src=".github/project.png" width="100%"> </p> ## 🚀 Tecnologias Esse projeto foi desenvolvido com as seguintes tecnologias: - HTML e CSS - JavaScript e JSON - [Node e NPM](https://nodejs.org/) - [Vite](https://vitejs.dev/) - [iMask](https://imask.js.org) ## 💻 Projeto O Rocketpay é um componente que simula o formulário de preenchimento de cartão de crédito, onde é possível adicionar máscara aos inputs e atualizar elementos HTML via DOM. ## 🔖 Layout Você pode visualizar o layout do projeto através [DESSE LINK](https://www.figma.com/file/gpqavL469k0pPUGOmAQEM9/Explorer-Lab-%2301/duplicate). É necessário ter conta no [Figma](https://figma.com) para acessá-lo. ## :memo: Licença Esse projeto está sob a licença MIT. --- Feito com ♥ by Rocketseat :wave: [Participe da nossa comunidade!](https://discord.gg/rocketseat)
explorer-lab-01
css,git,html,javascript
2023-01-22T19:15:04Z
2023-01-22T19:37:00Z
null
1
0
2
0
0
2
null
null
HTML
Rkrohan7/JavaScriptCodeProjectes
main
# JavaScriptCodeProjectes
null
javascript
2023-01-22T17:15:01Z
2023-04-06T05:05:24Z
null
1
0
7
0
0
2
null
null
HTML
divyaGrvgithub/Real_time_Chat_App_B3
Project/Chat_app/Bonus
null
Real-time chat is an online communication channel that allows you to conduct real-time conversations. It involves the transmission of live text messages from the sender to the recipient.
chat,css3,html,javascript,real-time,websocket
2023-01-21T18:02:37Z
2023-01-22T18:09:20Z
null
2
0
13
0
1
2
null
null
JavaScript
ReyGuillaume/bus-gestion-app
main
# Go'bus ## Description Développée pour l'entreprise Go'bus, cette application a pour but d'informatiser et de centraliser leurs processus administratifs. Permet entre autre de se connecter, d'accéder à un planning interactif et collaboratif afin de faciliter les tâches des employés. ## Stack technique ... ## Equipe de développement - Mila Desmet - Carlota Banez-Sousa - Amelie Hacque - Alexis Sauvageau - Guillaume Rey
Développée pour l'entreprise Go'bus, cette application a pour but d'informatiser et de centraliser leurs processus administratifs.
back-end,cicd,css,front-end,github-actions,javascript,jest,mysql,php,unit-testing
2023-01-17T06:57:52Z
2023-05-22T07:27:04Z
null
7
0
432
0
0
2
null
null
JavaScript
empiretylh/travel
master
# Getting Started with Create React App This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). ## Available Scripts In the project directory, you can run: ### `npm start` Runs the app in the development mode.\ Open [http://localhost:3000](http://localhost:3000) to view it in your browser. The page will reload when you make changes.\ You may also see any lint errors in the console. ### `npm test` Launches the test runner in the interactive watch mode.\ See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. ### `npm run build` Builds the app for production to the `build` folder.\ It correctly bundles React in production mode and optimizes the build for the best performance. The build is minified and the filenames include the hashes.\ Your app is ready to be deployed! See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. ### `npm run eject` **Note: this is a one-way operation. Once you `eject`, you can't go back!** If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own. You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it. ## Learn More You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). To learn React, check out the [React documentation](https://reactjs.org/). ### Code Splitting This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) ### Analyzing the Bundle Size This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) ### Making a Progressive Web App This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) ### Advanced Configuration This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) ### Deployment This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) ### `npm run build` fails to minify This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
Traveling Package and Booking System Client
bootstrap,css,html,javascript,react
2023-01-17T09:02:34Z
2023-03-30T16:27:54Z
null
2
1
53
0
1
2
null
null
JavaScript
mshabana0/test.sh
main
null
test
css,html5,img,javascript
2023-01-17T22:04:30Z
2023-01-17T22:03:12Z
null
1
0
1
0
0
2
null
null
HTML
AsheClarke/Modal-BasicJSProject
main
# Modal-BasicJSProject Basic Javascript project creating a modal. Done as part of John Smilga's free interactive javascript course, through freecodecamp. https://github.com/john-smilga/javascript-basic-projects
Basic Javascript project creating a modal
javascript
2023-01-17T19:59:26Z
2023-01-20T07:10:24Z
null
1
0
2
0
0
2
null
null
CSS
naiaraamorim/NWL-site
main
<h1 align="center"> Habits </h1> <p align="center"> NLW é um evento exclusivo e gratuito, promovido pela Rocketseat para ensino de tecnologias WEB. <br/> </p> <p align="center"> <a href="#-tecnologias">Tecnologias</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-projeto">Projeto</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-layout">Layout</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#memo-licença">Licença</a> </p> <p align="center"> <img alt="License" src="https://img.shields.io/static/v1?label=license&message=MIT&color=49AA26&labelColor=000000"> </p> <br> <p align="center"> <img alt="projeto Habits" src=".github/preview.jpg" width="100%"> </p> ## 🚀 Tecnologias Esse projeto foi desenvolvido com as seguintes tecnologias: - HTML e CSS - JavaScript - Git e Github - Figma ## 💻 Projeto O Habits é um app para ajudar a rastrear os hábitos. - [Visite o projeto online]( https://naiaraamorim.github.io/NWL-site/) ## 🔖 Layout Você pode visualizar o layout do projeto através [DESSE LINK](https://www.figma.com/community/file/1195327109778210238). É necessário ter conta no [Figma](https://figma.com) para acessá-lo. ## :memo: Licença Esse projeto está sob a licença MIT. --- Feito com ♥ by Naiara :wave: [Participe da comunidade da Rocketseat!](https://discord.gg/rocketseat)
Habit Tracker by NLW's Rocketseat
css,html,javascript,git,figma,github
2023-01-19T10:44:52Z
2023-01-22T23:37:37Z
null
1
0
8
0
0
2
null
null
CSS
Inna-Mykytiuk/goit-js-hw-07
main
null
Gallery
javascript,lightbox-gallery,parcel-bundler
2023-01-19T08:11:44Z
2023-03-11T10:23:40Z
null
1
0
9
0
0
2
null
null
JavaScript
abdulhakkeempa/github-to-latex
main
# GitHub to Latex A beautiful web page has been crafted with the purpose of streamlining the tedious task of transforming code from my GitHub profile into a polished LaTeX laboratory record template. No longer do I have to waste precious time copying and pasting code, adding titles, and outlining the aim. This simple project saves me and my colleagues a significant amount of time, allowing us to focus on what truly matters. This application operates entirely on the client-side, utilizing only public APIs for all data fetching processes. As a result, it operates without the need for a server, eliminating any concerns regarding scalability. This design decision allows for a streamlined user experience, while also ensuring efficient and effective functionality. #### Built with Tailwind CSS, GitHub API, JavaScript ❤. ![Github-to-Latex](https://user-images.githubusercontent.com/92361680/216215594-eb3f918c-dbd9-4dd5-b136-62a6e9bc1d02.png) __Note:__ This page only has support for public repositories. If you find my project useful and want to show your support, you can give it a star on GitHub. By doing so, you will be contributing to its visibility and helping others discover it as well. Additionally, if you encounter any issues or have suggestions for improvements, you can start an issue in the GitHub repository's readme. This not only helps to keep the project running smoothly, but it also allows me to continuously improve the project and better serve the community. So, don't hesitate to give a star or start an issue in the GitHub readme, and together we can make this project a success. ## Maintainers <a href="https://github.com/abdulhakkeempa/github-to-latex/graphs/contributors"> <img src="https://contrib.rocks/image?repo=abdulhakkeempa/github-to-latex" /> </a> ## How it Works ? This application operates entirely on the client-side, utilizing only public APIs for all data fetching processes. As a result, it operates without the need for a server, eliminating any concerns regarding scalability. This design decision allows for a streamlined user experience, while also ensuring efficient and effective functionality. ## Technologies and Libraries used * Bootstrap 5.3 * Tailwind CSS * JavaScript * GitHub API ## How to configure and run 1. ```git clone https://github.com/abdulhakkeempa/github-to-latex.git``` 2. ```cd github-to-latex``` 3. Open the ```index.html```
Automated Lab Record Builder: A static website that transforms code from your GitHub repository into a LaTeX template, simplifying the creation of college laboratory records.
github-api,tailwind-css,javascript
2023-01-18T11:11:56Z
2024-01-05T18:12:27Z
null
1
3
69
0
0
2
null
Apache-2.0
HTML
sohyp3/chessGame
master
# ChessGame ChessGame is an interactive chess application built using Python, Django, and JavaScript. It features a basic AI engine for a challenging gameplay experience. This project aims to provide a platform for chess enthusiasts to practice and improve their skills. ## Features - **AI Opponent**: Play against a computer-controlled opponent. - **Interactive UI**: A user-friendly interface built with JavaScript. - **Two-Player Mode**: Support for local two-player gameplay, allowing you to challenge a friend. - **Advanced Chess Rules**: Implements en passant, draw, and stalemate conditions, enhancing the game's realism and strategic depth. ## Technical Overview The backend, built with Django, processes chess game logic, including move validation and game state updates, leveraging Django models for game state representation. JavaScript on the frontend makes AJAX calls to the Django backend, enabling live updates of the game board and player interactions without full page reloads, providing a smooth and interactive user experience. This setup ensures efficient data handling and real-time responsiveness in the web-based chess application. ## Installation Ensure you have Python3 and Django installed (`pip install Django`). Clone the repository and run the following command: ```bash python3 manage.py runserver ``` ## Screenshots ![Screenshot](media/game_screenshot.png)
a Chess game built with python Django and JavaScript with Basic AI engine
chess-game,django,javascript,python
2023-01-20T22:39:22Z
2024-02-29T08:12:16Z
null
1
1
101
0
0
2
null
null
Python
ronynn/prototypes
main
null
Prototyping projects before putting them in correct folders
html5,javascript,markdown,prototypes,slides
2023-01-24T17:36:49Z
2024-05-13T20:30:12Z
null
1
0
76
0
0
2
null
null
HTML
Fadahunsiseyi/text_app_converter
develop
# TEXT_APPLICATION_CONVERTER.. > A a JavaScript-powered application that merges the fluidity of Notion with the flexibility of a text formatting utility. I meticulously developed this innovative tool, allowing users to effortlessly enhance their text documents with a vast array of formatting options. ## Live Demo [Live demo](https://fadahunsiseyi.github.io/text_app_converter/) ## Built With - HTML. - CSS. - Javascript. - Webpack - ESLINT - Flat Icons ## Getting Started ### Prerequisites - Node - NPM ( Node Package Manager ) - Git and Github Account ### Setup - Run git clone on this project at the desired directory: ``` git clone https://github.com/Fadahunsiseyi/text_app_converter ``` ``` cd text_app_converter ``` - Install dependencies ``` npm install ``` - Start Dev Server ``` npm start ``` - On your favourite browser go to http://localhost:3000/ ### Test - **Webhint** linter -`npx hint .` on the root directory. - **Stylelint** linter - `npx stylelint "**/*.{css,scss}"` on the root directory. - **ESLint** linter - `npx eslint .` on the root directory. ## Authors 👤 **Fadahunsi seyi** - GitHub: [Fadahunsiseyi](https://github.com/Fadahunsiseyi) - Twitter: [Fadahunsiseyi_](https://twitter.com/@Fadahunsiseyi_) - LinkedIn: [fadahunsi-seyi-samuel](https://www.linkedin.com/in/fadahunsiseyi) ## 🤝 Contributing Contributions, issues, and feature requests are welcome! Feel free to check the [issues page](https://github.com/Fadahunsiseyi/text_app_converter/issues). ## Show your support Give a ⭐️ if you like this project! ## 📝 License This project is [MIT](./MIT.md) licensed.
A a JavaScript-powered application that merges the fluidity of Notion with the flexibility of a text formatting utility. I meticulously developed this innovative tool, allowing users to effortlessly enhance their text documents with a vast array of formatting options.
css,html,javascript
2023-01-20T16:06:52Z
2023-09-07T13:46:43Z
null
1
1
40
0
0
2
null
MIT
JavaScript
decimozs/decimo-ai
master
null
🤖 Full-stack web app, a simple chat interactive bot powered by openAi API.
javascript,openapi,reactjs,vite
2023-01-22T03:04:46Z
2023-01-22T03:06:00Z
null
1
0
1
0
0
2
null
null
JavaScript
Grandi0z/To-Do-list
main
<a name="readme-top"></a> <div align="center"> <img src="/src/icon/logo.png" alt="logo" width="140" height="auto" /> <br/> <h3><b>To Do list</b></h3> </div> <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📗 Table of Contents](#-table-of-contents) - [📖 Awesome Books ](#-awesome-books-) - [🛠 Built With ](#-built-with-) - [Tech Stack ](#tech-stack-) - [Key Features ](#key-features-) - [🚀 Live Demo ](#-live-demo-) - [💻 Getting Started ](#-getting-started-) - [Prerequisites](#prerequisites) - [Setup](#setup) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment](#deployment) - [👥 Authors ](#-authors-) - [🔭 Future Features ](#-future-features-) - [🤝 Contributing ](#-contributing-) - [⭐️ Show your support ](#️-show-your-support-) - [🙏 Acknowledgments ](#-acknowledgments-) - [❓ FAQ (OPTIONAL) ](#-faq-optional-) - [📝 License ](#-license-) <!-- PROJECT DESCRIPTION --> # 📖 Awesome Books <a name="about-project"></a> **To-Do list** is a simple task manager ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> The following stacks were used <details> <ul> <li><a href="https://developer.mozilla.org/en-US/docs/Web/HTML">HTML</a></li> <li><a href="https://developer.mozilla.org/en-US/docs/Web/CSS">CSS</a></li> <li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript">Javascript</a></li> <li><a href="https://webpack.js.org/">Webpack</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> Not yet published - **Add task** - **Remove task** - **Remove completed tasks** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo" href="https://grandi0z.github.io/To-Do-list"></a> <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- GETTING STARTED --> ## 💻 Getting Started <a name="getting-started"></a> ### Prerequisites In order to run this project you need to have a browser and of course a code editor ### Setup Clone this repository to your desired folder, you can also set up HTML, CSS and JavaScript linters, for this you will need node installed. you can follow the steps [here](https://github.com/microverseinc/linters-config/tree/master/html-css) and [here](https://github.com/microverseinc/linters-config/tree/master/javascript) to setup the linters ### Install Once you cloned this project you are done ! ### Usage To run the project, you can simply open the index.html file with your favorite browser. ### Run tests If you follow the tutorial above to setup linters then you can run these tests ```$ npx hint . ``` ```$ npx stylelint "**/*.scss" ``` or if you use css then run this instead of the latter command above ```$ npx stylelint "**/*.{css,scss}" ``` ### Deployment You can deploy this project using: GitHub Pages <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> 👤 **Joseph L Kausi** - GitHub: [@Grandi0z](https://github.com/Grandi0z) - Twitter: [@Joseph_LSK](https://twitter.com/Joseph_LSK) - LinkedIn: [Joeph L Kausi](https://linkedin.com/in/Joeph_l_Kausi) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> > Describe 1 - 3 features you will add to the project. - [ ] **Awesome Design** - [ ] **Data base storage** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- CONTRIBUTING --> ## 🤝 Contributing <a name="contributing"></a> Contributions, issues, and feature requests are welcome! Feel free to check the [issues page](https://github.com/Grandi0z/To-Do-list/issues). <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- SUPPORT --> ## ⭐️ Show your support <a name="support"></a> If you like this project you can follow me on github for more. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> thanks to Microverse for providing the necessary resources. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FAQ (optional) --> ## ❓ FAQ (OPTIONAL) <a name="faq"></a> - **Are the linters necessary?** - It is a good practice to install and use them as they guide you towards best practice, but yes you can do without. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](https://choosealicense.com/licenses/mit/) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
To-do list is a very impressive mini task manager: the user can add a task, delete a task, or delete the list of completed tasks
bootstrap5,javascript,webpack
2023-01-17T22:12:47Z
2023-01-22T06:56:10Z
null
1
5
54
1
0
2
null
MIT
JavaScript
ASWAN123/Comments-App-with-React
master
# Getting Started with Create React App This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). ## Available Scripts In the project directory, you can run: ### `npm start` Runs the app in the development mode.\ Open [http://localhost:3000](http://localhost:3000) to view it in your browser. The page will reload when you make changes.\ You may also see any lint errors in the console. ### `npm test` Launches the test runner in the interactive watch mode.\ See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. ### `npm run build` Builds the app for production to the `build` folder.\ It correctly bundles React in production mode and optimizes the build for the best performance. The build is minified and the filenames include the hashes.\ Your app is ready to be deployed! See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. ### `npm run eject` **Note: this is a one-way operation. Once you `eject`, you can't go back!** If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own. You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it. ## Learn More You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). To learn React, check out the [React documentation](https://reactjs.org/). ### Code Splitting This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) ### Analyzing the Bundle Size This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) ### Making a Progressive Web App This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) ### Advanced Configuration This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) ### Deployment This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) ### `npm run build` fails to minify This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
this is my first app with react
css,html,javascript,react,comment-system
2023-01-17T13:48:20Z
2023-01-19T21:34:41Z
null
1
0
13
0
0
2
null
null
JavaScript
chandanmallick19/Web-Development_Projects
master
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <body> <h1><center> 🔥Web-Development Projects</h1> <hr> <h4>About: </h4> <p>This repositort consist of some basic Web-Development projects made with HTML, CSS & Javascript. <br><br></b> All the projects have been made with the reference of YouTube and of my own knowledge. </p> <hr></hr> <h4>Support</h4> <p> This project need a ⭐ from you for a small contribution.</p> </body> </html>
This repositort consist of some basic Web-Development projects made with HTML, CSS & Javascript.
css,html5,javascript
2023-01-19T07:20:50Z
2023-03-06T10:10:54Z
null
1
0
21
0
0
2
null
null
JavaScript
MohammadGhnim/Javascript-first-training
master
Learning JavaScript
This repo has a theoretical basics in JavaScript.
javascript
2023-01-19T14:24:47Z
2023-01-27T22:02:45Z
null
1
0
40
0
0
2
null
null
JavaScript
irwaynetaborda/nlw-setup
main
<h1 align="center"> Habits </h1> <p align="center"> NLW é um evento exclusivo e gratuito, promovido pela Rocketseat para ensino de tecnologias WEB. <br/> </p> <p align="center"> <a href="#-tecnologias">Tecnologias</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-projeto">Projeto</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-layout">Layout</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#memo-licença">Licença</a> </p> <p align="center"> <img alt="License" src="https://img.shields.io/static/v1?label=license&message=MIT&color=49AA26&labelColor=000000"> </p> <br> <p align="center"> <img alt="projeto Habits" src=".github/preview.jpg" width="100%"> </p> ## 🚀 Tecnologias Esse projeto foi desenvolvido com as seguintes tecnologias: - HTML e CSS - JavaScript - Git e Github - Figma ## 💻 Projeto O Habits é um app para ajudar a rastrear os hábitos. ## 💻 Demonstração - [Visite o projeto online] (https://irwaynetaborda.github.io/nlw-setup) ## 🔖 Layout Você pode visualizar o layout do projeto através [DESSE LINK](https://www.figma.com/community/file/1195327109778210238). É necessário ter conta no [Figma](https://figma.com) para acessá-lo. ## :memo: Licença Esse projeto está sob a licença MIT. --- Feito por mim!
Habit Tracker by NLW's RocketSeat
css,figma,git,github,html,javascript
2023-01-22T22:47:00Z
2023-01-24T01:53:43Z
null
1
0
5
0
0
2
null
null
CSS
The-Coding-Community/Coding_Community_HQ
main
null
null
javascript,html,css
2023-01-25T16:04:57Z
2023-04-04T21:39:39Z
null
3
0
123
0
0
2
null
null
HTML
Aslamsidheeq/e_commerce
category-item
# Getting Started with Create React App This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). ## Available Scripts In the project directory, you can run: ### `npm start` Runs the app in the development mode.\ Open [http://localhost:3000](http://localhost:3000) to view it in your browser. The page will reload when you make changes.\ You may also see any lint errors in the console. ### `npm test` Launches the test runner in the interactive watch mode.\ See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. ### `npm run build` Builds the app for production to the `build` folder.\ It correctly bundles React in production mode and optimizes the build for the best performance. The build is minified and the filenames include the hashes.\ Your app is ready to be deployed! See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. ### `npm run eject` **Note: this is a one-way operation. Once you `eject`, you can't go back!** If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own. You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it. ## Learn More You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). To learn React, check out the [React documentation](https://reactjs.org/). ### Code Splitting This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) ### Analyzing the Bundle Size This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) ### Making a Progressive Web App This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) ### Advanced Configuration This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) ### Deployment This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) ### `npm run build` fails to minify This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
React Js web app : Router , Styled components , Firebase & Firestore, Scss included. Working on live now.
context-api,css,firebase,html,javascript,react,router,sass,styled-components
2023-01-25T09:24:49Z
2023-10-14T11:07:47Z
null
1
1
54
0
0
2
null
null
JavaScript
imriadutta/project-manager
master
# project-manager
A Django website for creating and managing Projects
ajax,css3,django,html5,javascript,jquery,python,sqlite
2023-01-23T20:11:22Z
2023-01-23T20:41:26Z
null
1
0
2
0
0
2
null
null
Python
sushilbhattarai45/E-Med-Nepal
main
# unified-health-system A initiative to improve the medical system by unifying the medical records, into one easily manageable and maintainable place.
E-Med Nepal is a platform which helps to centralize the medical reports of a patient which can only be accessible by Hospital which will further give clarity to the doctors about the existing medical history of the patient.
javascript,react
2023-01-19T10:26:06Z
2023-09-26T07:45:32Z
null
4
0
106
0
1
2
null
null
JavaScript
omunite215/FCC-MarkDown-Previewer
main
Welcome to My Repository!! This is a Markdown Previewer Project on React!! The project is hosted on Netlify : https://fccmarkdownpreviewerbyom.netlify.app/ I am not removing react's readme files because, it will help you using react as well. Thanks!! Om Patel(A Front-End Development Enthusiast) Objective: Build an app that is functionally similar to this: https://markdown-previewer.freecodecamp.rocks/. Fulfill the below user stories and get all of the tests to pass. Use whichever libraries or APIs you need. Give it your own personal style. You can use any mix of HTML, JavaScript, CSS, Bootstrap, SASS, React, Redux, and jQuery to complete this project. You should use a frontend framework (like React for example) because this section is about learning frontend frameworks. Additional technologies not listed above are not recommended and using them is at your own risk. We are looking at supporting other frontend frameworks like Angular and Vue, but they are not currently supported. We will accept and try to fix all issue reports that use the suggested technology stack for this project. Happy coding! User Story #1: I can see a textarea element with a corresponding id="editor". User Story #2: I can see an element with a corresponding id="preview". User Story #3: When I enter text into the #editor element, the #preview element is updated as I type to display the content of the textarea. User Story #4: When I enter GitHub flavored markdown into the #editor element, the text is rendered as HTML in the #preview element as I type (HINT: You don't need to parse Markdown yourself - you can import the Marked library for this: https://cdnjs.com/libraries/marked). User Story #5: When my markdown previewer first loads, the default text in the #editor field should contain valid markdown that represents at least one of each of the following elements: a heading element (H1 size), a sub heading element (H2 size), a link, inline code, a code block, a list item, a blockquote, an image, and bolded text. User Story #6: When my markdown previewer first loads, the default markdown in the #editor field should be rendered as HTML in the #preview element. Optional Bonus (you do not need to make this test pass): My markdown previewer interprets carriage returns and renders them as br (line break) elements. You can build your project by using this CodePen template and clicking Save to create your own pen. Or you can use this CDN link to run the tests in any environment you like: https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js Once you're done, submit the URL to your working project with all its tests passing. <p align="center"> <img src="https://github.com/omunite215/hoobank/assets/78680563/eed23408-14a8-4d04-82b6-6d982f1dcca7" alt="Om's Logo Image"/> </p>
This is a Markdown Previewer project given by Free Code Camp while completing Front-End Libraries Certifications built using React.JS , Bootstrap CSS and HTML.
bootstrap,css,freecodecamp,freecodecamp-project,front-end-web-development,frontend,html,javascript,markdownpreview,react
2023-01-24T10:01:28Z
2023-07-28T15:24:50Z
null
1
0
6
0
0
2
null
null
JavaScript
Arkapravo-Ghosh/Ark-Portfolio
main
![work-in-progress](https://img.shields.io/badge/Work%20In%20Progress-90ee90.svg) # Arkapravo Ghosh's Portfolio Website ![GitHub license](https://img.shields.io/github/license/Arkapravo-Ghosh/Ark-Portfolio) ![loc](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/Arkapravo-Ghosh/9a1184af0894a8b86cc3fdf0c8f82195/raw/loc.json) ![GitHub repo size](https://img.shields.io/github/repo-size/Arkapravo-Ghosh/Ark-Portfolio) ![GitHub last commit](https://img.shields.io/github/last-commit/Arkapravo-Ghosh/Ark-Portfolio)\ [![Deployment](https://github.com/Arkapravo-Ghosh/Ark-Portfolio/actions/workflows/main.yml/badge.svg)](https://github.com/Arkapravo-Ghosh/Ark-Portfolio/actions/workflows/main.yml) > Check out the site at [https://ark.ark-tech.in](https://ark.ark-tech.in) > > Prebuilt Docker Image: [Click Here](https://hub.docker.com/r/arkapravoghosh1/ark-portfolio) # Build the project ## Prerequisites - [Node.js LTS Hydrogen](https://nodejs.org/en/) (v18.16.0) ## Steps - Clone the repository ```bash git clone https://github.com/Arkapravo-Ghosh/Ark-Portfolio.git ``` - Change directory to the project directory ```bash cd Ark-Portfolio ``` - Install dependencies ```bash npm i ``` - Run the project in developer mode ```bash npm run dev ``` - Or use this to expose the vite server to your network ```bash npm run dev-network ``` > The project will be running at [http://localhost:3000/Ark-Portfolio/](http://localhost:3000/Ark-Portfolio/) - Preview the production build ```bash npm run preview ``` - Build an optimized production build for deployment of the project ```bash npm run build ``` > The optimized production build will be available in the `Ark-Portfolio` directory, make sure to copy the `Ark-Portfolio` directory inside the root directory of your web server. ## Deploy the project ### Docker Compose - Create a directory ```bash mkdir Ark-Portfolio ``` - Go to the directory ```bash cd Ark-Portfolio ``` - Download the `docker-compose.yml` file ```bash wget https://raw.githubusercontent.com/Arkapravo-Ghosh/Ark-Portfolio/main/docker-compose.yml ``` - Run the project ```bash docker compose up -d ``` > The project will be running at [http://localhost/Ark-Portfolio](http://localhost/Ark-Portfolio) > > To stop the project, run `docker compose down` in the same directory.
Arkapravo Ghosh's Portfolio Website
css,framer-motion,html,javascript,nodejs,portfolio,reactjs,vitejs
2023-01-22T14:23:51Z
2024-04-20T20:39:31Z
null
3
194
38
0
1
2
null
MIT
CSS
YerrouHamza/Notey-app
master
# note-app This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). ## Customize configuration See [Vite Configuration Reference](https://vitejs.dev/config/). ## Project Setup ```sh npm install ``` ### Compile and Hot-Reload for Development ```sh npm run dev ``` ### Compile and Minify for Production ```sh npm run build ```
Notey app: it Note application, create it using the Vue3 JS, and SCSS, and works with localstorage as well
css3,javascript,vue3,vuejs,scss,vscode,vue,localstorage
2023-01-23T19:30:53Z
2023-08-26T23:04:05Z
null
1
0
70
0
0
2
null
null
Vue
aniketroy11/NetflixClone
main
# Getting Started with Create React App This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). ## Available Scripts In the project directory, you can run: ### `npm start` Runs the app in the development mode.\ Open [http://localhost:3000](http://localhost:3000) to view it in your browser. The page will reload when you make changes.\ You may also see any lint errors in the console. ### `npm test` Launches the test runner in the interactive watch mode.\ See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. ### `npm run build` Builds the app for production to the `build` folder.\ It correctly bundles React in production mode and optimizes the build for the best performance. The build is minified and the filenames include the hashes.\ Your app is ready to be deployed! See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. ### `npm run eject` **Note: this is a one-way operation. Once you `eject`, you can't go back!** If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own. You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it. ## Learn More You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). To learn React, check out the [React documentation](https://reactjs.org/). ### Code Splitting This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) ### Analyzing the Bundle Size This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) ### Making a Progressive Web App This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) ### Advanced Configuration This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) ### Deployment This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) ### `npm run build` fails to minify This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify) # NetflixClone
This Netflix UI Clone
css3,html,javascript,reactjs
2023-01-22T13:10:21Z
2024-04-25T15:42:55Z
null
2
0
4
0
0
2
null
null
HTML
jamesxlima/javascript-course
main
# javascript-course ### 📺 Course - 🔗 [YouTube Playlist](https://tinyurl.com/2homsp5t) for this repository. ### 📚 Resources - 🔗 [Mozilla JavaScript Reference](https://tinyurl.com/m9lqjhu) - 🔗 [W3 Schools JavaScript Tutorial](https://www.w3schools.com/js/)
My repository for the JavaScript Course from Dave Gray
css,html,javascript,js
2023-01-22T02:25:02Z
2023-03-01T04:55:18Z
null
1
0
68
0
0
2
null
null
JavaScript
WadieBenabdouh/checkout-page
master
null
Checkout page e-shopping. first time using Javascript
css,chrome,cssgrid,figma,firefox,flexbox,mediaqueries,nodejs,parcel-bundler,scss
2023-01-20T17:16:35Z
2023-05-03T22:53:19Z
null
1
0
40
0
0
2
null
null
SCSS
Veidoido/nlw-setup-explorer
main
<h1 align="center"> Habits </h1> <p align="center"> NLW é um evento exclusivo e gratuito, promovido pela Rocketseat para ensino de tecnologias WEB. <br/> </p> <p align="center"> <a href="#-tecnologias">Tecnologias</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-projeto">Projeto</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-layout">Layout</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#memo-licença">Licença</a> </p> <p align="center"> <img alt="License" src="https://img.shields.io/static/v1?label=license&message=MIT&color=49AA26&labelColor=000000"> </p> <br> <p align="center"> <img alt="projeto Habits" src=".github/preview.jpg" width="100%"> </p> ## 🚀 Tecnologias Esse projeto foi desenvolvido com as seguintes tecnologias: - HTML e CSS - JavaScript - Git e Github - Figma ## 💻 Projeto O Habits é um app para ajudar a rastrear os hábitos. - [Visite o projeto online](https://veidoido.github.io/nlw-setup-explorer/) ## 🔖 Layout Você pode visualizar o layout do projeto através [DESSE LINK](https://www.figma.com/community/file/1195327109778210238). É necessário ter conta no [Figma](https://figma.com) para acessá-lo. ## :memo: Licença Esse projeto está sob a licença MIT. --- Feito com ♥ by Rocketseat :wave: [Participe da nossa comunidade!](https://discord.gg/rocketseat)
Habit Tracker desenvolvido durante o evento gratuito "NLW Setup - 2023" disponibilizado pela Rocketseat 🚀
css,git,github,html,figma,javascript
2023-01-21T13:13:54Z
2023-01-21T14:59:04Z
null
1
0
4
0
0
2
null
null
HTML
LazarBojanic/movie-app-js
main
A website that allows users to log, review, rate, like movies, create film lists, search films and artists (actors, producers, directors etc.), see details of film (description, year, synopsis, cast and crew), see in which films an artist appears and their role. Also has an admin route for crud operations on all entities. Technologies: - jwt for authorization and authentication - Back-end - Node.js/Express, postgresql - Front-end - Vue.js 2 ![](movies-1.png) ![](movies-2.png) ![](movies-3.png) ![](movies-4.png) ![](movies-5.png) ![](movies-6.png) Admin interface: ![](movies-7.png)
A website for logging, reviewing films. Search films and artists and see film details and artist credits. Jwt Login system.
bootstrap,express,film,films,fullstack,javascript,jwt,movies,nodejs,postgresql
2023-01-22T01:25:22Z
2023-10-01T23:34:53Z
null
1
0
20
0
1
2
null
null
JavaScript
Ozair-Rahman/INFT-2001-Assignment-1
main
# INFT-2001-Assignment-1 Document: https://docs.google.com/document/d/1aV0yPKn7XAtdHdu8Jl3DW0UjJC__m__hQu4rD0Ji1Gk/edit Commpany: Crave Doughnuts (Donut/Bakery Company) Crave Doughnut's Website: https://cravedoughnuts.com/ # Goal - Create a Static Website using React for our Company - Website Must have the following pages: - Home Page - About me Page - Contact Page - Inventory / Product Page # Other Requirements - Have Use Case Diagrams - Have requirements definition (1-2 pg) - Have the Following - Have a Schedule - Interview - Write the Following - What am I trying to build? - Why am I building it? - Document problems + solutions - Resources - Present with Live Demo - Bonus if you can submit questions to email
To create a website using the react js library to make it as similar to a Crave Doughnuts's website
css,html,javascript,reactjs
2023-01-20T00:01:47Z
2023-02-09T22:30:05Z
null
3
2
135
0
0
2
null
null
Jupyter Notebook
TexLuciano/animes-app
main
# Getting Started with Create React App This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). ## Available Scripts In the project directory, you can run: ### `npm start` Runs the app in the development mode.\ Open [http://localhost:3000](http://localhost:3000) to view it in your browser. The page will reload when you make changes.\ You may also see any lint errors in the console. ### `npm test` Launches the test runner in the interactive watch mode.\ See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. ### `npm run build` Builds the app for production to the `build` folder.\ It correctly bundles React in production mode and optimizes the build for the best performance. The build is minified and the filenames include the hashes.\ Your app is ready to be deployed! See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. ### `npm run eject` **Note: this is a one-way operation. Once you `eject`, you can't go back!** If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own. You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it. ## Learn More You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). To learn React, check out the [React documentation](https://reactjs.org/). ### Code Splitting This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) ### Analyzing the Bundle Size This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) ### Making a Progressive Web App This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) ### Advanced Configuration This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) ### Deployment This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) ### `npm run build` fails to minify This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
null
css,javascript,localstorage,reactjs,styled-components
2023-01-18T15:34:47Z
2023-04-27T01:53:53Z
null
1
0
14
0
0
2
null
null
JavaScript
Anselmo1122/OB-New-year-purposes
main
# New Year's Purposes "New Year Purposes" is a project whose objective is that the user can create a list of his purposes for the new year. The user will be able to create a new purpose with a drop-down form, mark each purpose as completed or incomplete, and when completing all of them the user will receive a surprise. **Features of use:** - The data to create the purpose will be name, description, image, and color. - When creating the purpose, it will be stored in memory. - Touching the purpose will display more information and options to delete and complete**.** - The rocket graph represents the number of completed purposes. - If all the purposes are completed, a celebration will be held. **Project screenshot:** <div center> <img src="./src/assets/screen.png" alt="Project screenshot" /> </div> ## Used technologies *This project has only front-end technologies* - Reactjs 18 - JavaScript - Formik - Framer motion - Sass ## Commands to run locally Clone the project ```bash git clone https://github.com/Anselmo1122/OB-New-year-purposes.git name-directory ``` Go to the project directory ```bash cd name-directory ``` Install dependencies ```bash npm install ``` Start the server ```bash npm start ```
This website is for make a list of your purposes for this year.
formik,framer-motion,javascript,react,sass
2023-01-22T13:38:24Z
2023-02-04T18:26:36Z
null
1
0
16
0
0
2
null
null
JavaScript
P4radiseB0y/nlw-setup
main
<h1 align="center"> Habits </h1> <p align="center"> NLW é um evento exclusivo e gratuito, promovido pela Rocketseat para ensino de tecnologias WEB. <br/> </p> <p align="center"> <a href="#-tecnologias">Tecnologias</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-projeto">Projeto</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-layout">Layout</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#memo-licença">Licença</a> </p> <p align="center"> <img alt="License" src="https://img.shields.io/static/v1?label=license&message=MIT&color=49AA26&labelColor=000000"> </p> <br> <p align="center"> <img alt="projeto DevLinks" src=".github/preview.jpg" width="100%"> </p> ## 🚀 Tecnologias Esse projeto foi desenvolvido com as seguintes tecnologias: - HTML e CSS - JavaScript - Git e Github - Figma ## 💻 Projeto O Habits é um app para ajudar a rastrear os hábitos. - [Visite o projeto online](https://p4radiseb0y.github.io/nlw-setup) ## 🔖 Layout Você pode visualizar o layout do projeto através [DESSE LINK](https://www.figma.com/community/file/1195327109778210238). É necessário ter conta no [Figma](https://figma.com) para acessá-lo. ## :memo: Licença Esse projeto está sob a licença MIT. --- Feito com ♥ by Rocketseat :wave: [Participe da nossa comunidade!](https://discord.gg/rocketseat)
Habit Tracker by NLW's Rocketseat
css,html,javascript,figma,git,github
2023-01-23T02:41:40Z
2023-01-24T00:50:38Z
null
1
0
7
0
0
2
null
null
CSS
riefer02/junkerri
main
# Junkerri Art Welcome to Junkerri Art, Aastha Karki's ecommerce store for thriving local artists! This platform is built with [Next.js](https://nextjs.org/) and integrated with [Stripe.js](https://stripe.com/docs/stripe-js) for secure and easy online payments. ## Features - Browse and purchase unique and one-of-a-kind artwork from talented artists in your community - Secure checkout with Stripe.js - An About page with an artist bio - An Contact page for commissions and general questions ## Getting Started To start browsing and shopping, simply visit our [website](https://junkerri.com/). From there, you can start browsing and adding items to your cart. When you're ready to checkout, you'll be prompted to enter your payment information and complete the transaction. We're constantly working to improve the platform and add new features, so be sure to check back often for updates! Thank you for supporting local artists! ## Social Media - Follow us on [Instagram](https://www.instagram.com/junkerri) Special shoutout to `@gdangelo` for giving us a jump start.
A Next.js with Stripe ecommerce store for Junkerri Art
ecommerce,javascript,stripe
2023-01-25T22:48:52Z
2023-04-30T20:13:15Z
null
2
18
133
0
1
2
null
MIT
JavaScript
Akbarss/PayPal-Project
main
# react-paypal-js > React components for the [PayPal JS SDK](https://developer.paypal.com/docs/business/javascript-sdk/javascript-sdk-reference/) <div class="badges"> <a href="https://github.com/paypal/react-paypal-js/actions?query=workflow%3Avalidate"><img src="https://img.shields.io/github/actions/workflow/status/paypal/react-paypal-js/validate.yml?branch=main&logo=github&style=flat-square" alt="build status"></a> <a href="https://codecov.io/github/paypal/react-paypal-js/"><img src="https://img.shields.io/codecov/c/github/paypal/react-paypal-js.svg?style=flat-square" alt="coverage"></a> <a href="https://www.npmjs.com/package/@paypal/react-paypal-js"><img src="https://img.shields.io/npm/v/@paypal/react-paypal-js.svg?style=flat-square" alt="npm version"></a> <a href="https://bundlephobia.com/result?p=@paypal/react-paypal-js"><img src="https://img.shields.io/bundlephobia/minzip/@paypal/react-paypal-js.svg?style=flat-square" alt="bundle size"></a> <a href="https://www.npmtrends.com/@paypal/react-paypal-js"><img src="https://img.shields.io/npm/dm/@paypal/react-paypal-js.svg?style=flat-square" alt="npm downloads"></a> <a href="https://github.com/paypal/react-paypal-js/blob/main/LICENSE"><img src="https://img.shields.io/npm/l/@paypal/react-paypal-js.svg?style=flat-square" alt="apache license"></a> <a href="https://paypal.github.io/react-paypal-js/"><img src="https://raw.githubusercontent.com/storybooks/brand/master/badge/badge-storybook.svg" alt="storybook"></a> </div> ## Why use react-paypal-js? ### The Problem Developers integrating with PayPal are expected to add the JS SDK `<script>` to a website and then render components like the PayPal Buttons after the script loads. This architecture works great for simple websites but can be challenging when building single page apps. React developers think in terms of components and not about loading external scripts from an index.html file. It's easy to end up with a React PayPal integration that's sub-optimal and hurts the buyer's user experience. For example, abstracting away all the implementation details of the PayPal Buttons into a single React component is an anti-pattern because it tightly couples script loading with rendering. It's also problematic when you need to render multiple different PayPal components that share the same global script parameters. ### The Solution `react-paypal-js` provides a solution to developers to abstract away complexities around loading the JS SDK. It enforces best practices by default so buyers get the best possible user experience. **Features** - Enforce async loading the JS SDK upfront so when it's time to render the buttons to your buyer, they render immediately. - Abstract away the complexity around loading the JS SDK with the global [PayPalScriptProvider](https://paypal.github.io/react-paypal-js/?path=/docs/example-paypalscriptprovider--default) component. - Support dispatching actions to reload the JS SDK and re-render components when global parameters like `currency` change. - Easy to use components for all the different Braintree/PayPal product offerings: - [PayPalButtons](https://paypal.github.io/react-paypal-js/?path=/docs/example-paypalbuttons--default) - [PayPalMarks](https://paypal.github.io/react-paypal-js/?path=/docs/example-paypalmarks--default) - [PayPalMessages](https://paypal.github.io/react-paypal-js/?path=/docs/example-paypalmessages--default) - [PayPalHostedFields](https://paypal.github.io/react-paypal-js/?path=/docs/paypal-paypalhostedfields--default) - [BraintreePayPalButtons](https://paypal.github.io/react-paypal-js/?path=/docs/braintree-braintreepaypalbuttons--default) ## Installation To get started, install react-paypal-js with npm. ```sh npm install @paypal/react-paypal-js ```
PayPal Project React
paypal,react,javascript,material-ui,vitejs
2023-01-18T18:29:36Z
2023-01-18T19:02:59Z
null
1
0
6
0
0
2
null
null
JavaScript
RA-Tech-Group/energy-map
master
# Energy Map ![Energy map screenshot](https://github.com/RA-Tech-Group/energy-map/blob/master/energymap.png)
Three.js
css3,javascript,json-api,threejs
2023-01-20T03:42:40Z
2023-01-20T03:58:59Z
null
2
1
5
0
0
2
null
null
JavaScript
shabazalimalik69/Food_Recipe_Project
master
# Food_Recipe_Project *About Project<br/> This is a food recipe project where user can signup and signin. Here user can create their recipe, he can add description, ingredients used to prepare the recipe, expenses for that particular recipe, quantity can be added, and the different steps to prepare that particular recipe...<br/> *Tech Stacks for Fronend:<br/><br/> 1)HTML5, JavaScript, React Js, Redux, and Chakra UI<br/><br/> *Tech Stacks used for Backend:<br/> 1) Node Js, Express Js, Authentication, Relationship<br/> 2) Database : MongoDB<br/><br/> *Backend Deployed on Render<br/> *Frontend Deployed on Netlify<br/> *About Page:<br/> ![home](https://user-images.githubusercontent.com/103936619/214058749-190ca006-26b6-4ad8-b5ce-854f4656d88a.png)<br/> ![home1](https://user-images.githubusercontent.com/103936619/214058793-5b3e37b5-d796-4413-8340-a174af643a76.png)<br/> ![home2](https://user-images.githubusercontent.com/103936619/214058848-10534c61-05c4-4c65-8858-32d48a06fd74.png)<br/> *SignUp Page<br/> ![signup](https://user-images.githubusercontent.com/103936619/214058956-0d8476b4-1467-4c4f-8a5a-dea1d3c2a3bb.png)<br/> *SignIn Page<br/> ![signin](https://user-images.githubusercontent.com/103936619/214059025-028f775a-da54-4687-896c-cf894efd00c4.png)<br/> *Home Page<br/> ![Screenshot (1798)](https://user-images.githubusercontent.com/103936619/213402031-1a94b647-a4a9-4e4f-94e3-65f10e262a03.png)<br/> ![Screenshot (1800)](https://user-images.githubusercontent.com/103936619/213402424-8a5a4ab6-7a8c-420c-a079-9d56d239b33d.png)<br/> ![Screenshot (1801)](https://user-images.githubusercontent.com/103936619/213402467-cc551562-2951-4110-b955-4627acb49bc0.png)<br/> *Home Page with user data:<br/> ![Screenshot (1802)](https://user-images.githubusercontent.com/103936619/213402598-54f0305c-71dc-4f46-8324-ebec197c5d6b.png)<br/> *Single Item Data:<br/> ![Screenshot (1803)](https://user-images.githubusercontent.com/103936619/213402791-df45de18-cb39-49e5-b2a3-653973267c74.png)
This is a food recipe project where user can signup and signin. Here user can create their recipe, he can add description, ingredients used to prepare the recipe, expenses for that particular recipe, quantity can be added, and the different steps to prepare that particular recipe...
authentication-middleware,css3,expressjs,html5,javascript,mongodb,nodejs,reactjs,redux
2023-01-19T06:59:37Z
2023-01-23T14:07:12Z
null
1
0
9
0
0
2
null
null
JavaScript
shahank42/markdown-previewer
master
# Markdown Previewer The idea is to have a real-time markdown editor which you can sync across different working devices without any login, authentication or even connecting to any servers. Try it out at: https://markdown-previewer-shahank42.vercel.app/ ## Planned Features * [ ] A better scrolling experience * [ ] Serverless syncing * [ ] Importing and exporting .md files
A simple, web-based markdown previewer and editor for those in a pinch.
javascript,markdown,markdown-editor,markdown-previewer,markdown-viewer,react,reactjs,reactjs-es6,tailwind-css,tailwindcss
2023-01-25T13:55:18Z
2023-01-26T21:17:23Z
null
2
4
24
0
1
2
null
null
JavaScript
FujiwaraChoki/ezgpt
master
# ezgpt ezgpt is an easy-to-use app that allows you to use GPT-3 in your everyday life. With ezgpt, you can quickly and easily get answers to your questions, generate text, and more, all with the help of GPT-3. ## How to use ezgpt Using ezgpt is simple. Just follow these steps: Copy a question or a text Press Control+C twice Enjoy the answers which are now in your clipboard! You can also use the "Clear" button to clear the text box. ## Technical details ezgpt uses the OpenAI API to interact with GPT-3. You can read more about the OpenAI API here. ## Getting started To get started with ezgpt, you'll need to have Node.js installed on your computer. Once you have Node.js, you can install the necessary dependencies by running npm install. Once you have the dependencies installed, you can run the app by running npm start. ## Conclusion ezgpt makes it easy to use GPT-3 in your everyday life. With its simple and intuitive interface, you can quickly and easily get answers to your questions, generate text, and more, all with the help of GPT-3. Please let me know if you have any other questions or if there is anything else I can help you with.
Easy-to-use app that allows you to use GPT-3 in your everyday life.
chatgpt,electron,javascript
2023-01-19T20:03:19Z
2023-01-20T08:16:38Z
null
1
0
4
0
0
2
null
null
JavaScript
heistejiri/Nike-Store-FullStack
main
# Nike Store Commerce Web Application! ⭕ **This Site is Fully Responsive** <br> <br> ## 📌 **Live Site URL:** <a href="https://nike-store-full-stack-lmyeb9rvq-heistejiri.vercel.app/">**Visit Now** 🚀</a> <br> ## 📌 Tech Stack [![React](https://img.shields.io/badge/React%20-%23E34F26.svg?&style=for-the-badge&logo=React&logoColor=white)](https://github.com/heistejiri)&nbsp; [![vite](https://img.shields.io/badge/vite%20-%231572B6.svg?&style=for-the-badge&logo=vite&logoColor=white)](https://github.com/heistejiri)&nbsp; <br> #### Screenshots : <img src="/screenshots/screenshot1.png" > <img src="/screenshots/screenshot2.png" > <img src="/screenshots/screenshot3.png" > ## 📬 Connect With Me - **LinkedIn** - [OgheneTejiri Agoro](https://www.linkedin.com/in/heistejiri/) - **Twitter** - [@Heistejiri](https://www.twitter.com/heistejiri) # Important Links: 📣📢📣📢📣📢✈✈✈ ### Go to ViteJS [https://vitejs.dev/] (https://vitejs.dev/)! ### Go to TailwindCSS [https://tailwindcss.com/](https://tailwindcss.com/)! ### Go to Redux-Toolkit [https://redux-toolkit.js.org/](https://redux-toolkit.js.org/)! ### Go to React-Redux [https://react-redux.js.org/](https://react-redux.js.org/)! ### Go to React-Hot-Toast [https://react-redux.js.org/](https://react-redux.js.org/)! ## Getting Started First, run the development server: ```bash npm install # or yarn instll # and Now: npm run dev # or yarn dev ``` Open [http://localhost:5173/](http://localhost:5173/) with your browser to see the result. You can start editing the page by modifying `src/App.jsx`. The page auto-updates as you edit the file.
A fullstack Nike-Store ecommerce webapp. The project was build using React js framework and Vitejs.
ecommerce,html5,javascript,javascript-library,nike-website,reactjs,vitejs
2023-01-21T13:06:33Z
2023-03-21T09:37:59Z
null
1
0
44
0
0
2
null
MIT
JavaScript
ShubhangiSisodia/Shopclues-Clone
main
# spotty-butter-9254 A one week project for cloning the **Shopclues.com** website. ## Contributors - Shubhangi Sisodia (fw22_0930) [@ShubhangiSisodia] - Shreyansh Jain (fw23_0306) [@Shreyansh-Jain7] - Roshan Routh (fw23_0011)[@RoshanAAS] - Neelkanth Rao (fw22_0944) [@Nealrao02] ## Challanges we faced - Merging each other code on Github - Read others code and make changes to it - Exact pixel-perfect cloning of the website ## Website flow for **_User_** - Home page - Sign in & Login page - Men's page - Single product page. ## Thank you note Thank you all who is giving precious time to visit our little creative project which is made with lot of efforts. Any type of constructive feedback and queries are welcome.
Clone of shopclues website , collaborative project made with the help of four others
css,html,javascript
2023-01-17T13:39:05Z
2023-01-23T06:50:44Z
null
5
13
45
0
0
2
null
null
HTML
luisschneiders/MyFinanceAppNet6
main
null
A personal finance app built on C#, .Net, Blazor, Mysql and Javascript technologies
blazor-server,csharp,dotnet-core,mysql,javascript
2023-01-20T21:22:15Z
2024-05-21T01:35:58Z
null
1
49
702
0
2
2
null
null
C#
jugosack/To-Do-list
main
# To-Do-list <p id="readme-top">My Microverse todo-list project (Module two)</p> <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📖 \[🎯 todo-list ](#-todo-list) - [🛠 Built With ](#-built-with-) - [Tech Stack ](#tech-stack-) - [🚀 Live Demo ](#-live-demo-) - [👁 Presentation ](#-presentation-) - [Deploy my website with github pages":](#deploy-my-website-with-github-pages) - [- Loom video link:](#-loom-video-link) - [💻 Getting Started ](#-getting-started-) - [Prerequisites](#prerequisites) - [Install](#install) - [Requirements](#requirements) - [Run tests](#run-tests) - [Deployment](#deployment) - [👥 Authors ](#-authors-) - [🔭 Future Features ](#-future-features-) - [🤝 Contributing ](#-contributing-) - [👋 Show your support ](#show-your-support) - [🔭Acknowledgments ](#acknowledgments-) - [📝 License ](#license) <!-- PROJECT DESCRIPTION --> # 📖 To Do List <a name="about-project"></a> **To Do List** is a web page where the user can see a list of todos, they can also add or remove any todo to the list. ## 🛠 Built With <a name="built-with"></a> <details> <summary>Technology</summary> <ul> <li>HTML</li> <li>CSS</li> <li>Javascript</li> <li>Webpack</li> <li>Linters (Lighthouse, Webhint, Stylelint, Eslint)</li> <li>Git/GitHub work-flow </li> </ul> </details> <p align="right">(<a href="#readme-top">back to top</a>)</p> ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="https://www.javascript.com/">JavaScript</a></li> </ul> <ul> <li><a href="https://html.com/">Html</a></li> </ul> <ul> <li><a href="hhttps://www.w3schools.com/css/">CSS</a></li> </ul> </details> <details> <summary>Server</summary> <ul> <li><a href="#">N/A</a></li> </ul> </details> <details> <summary>Database</summary> <ul> <li><a href="https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage">LocalStorage</a></li> </ul> </details> ## 🚀 Live Demo <a name="live-demo"></a> - [Live Demo Link]() <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 👁 Presentation <a name="presentation"></a> - [Loom presentation Link]() ## Deploy my website with github pages": [link to todo-list:](https://jugosack.github.io/To-Do-list/dist) ## - Loom video link: [Loom walking through for my-awesome-books: ]() ## 💻 Getting Started <a name="getting-started"></a> To get a local copy up and running follow these simple example steps. ### Prerequisites - IDE to edit and run the code (We use Visual Studio Code 🔥). - Git to versionning your work. ### Install - first install package.json and node_modules run: npm init -y - npm install --save-dev hint - npm install --save-dev stylelint@13.x stylelint-scss@3.x stylelint-config-standard@21.x stylelint-csstree-validator@1.x or latest version: - npm install --save-dev stylelint stylelint-scss stylelint-config-standard stylelint-csstree-validator - npm install --save-dev eslint@7.x eslint-config-airbnb-base@14.x eslint-plugin-import@2.x babel-eslint@10.x or latest version: - npm install --save-dev eslint eslint-config-airbnb-base eslint-plugin-import babel-eslint ## Requirements - Linters configuration. Clone the repository to get start with project, then make sure to install dependencies in the linters file located in the [linter](https://github.com/Bateyjosue/linters-html-css/blob/main/.github/workflows/linters.yml) file <p align="right">(<a href="#readme-top">back to top</a>)</p> ### Run tests - to test and check the html file/s is error-free run: npx hint . - to fix errors run: npx hint . -f - to test and check the css file/s is error-free run: npx stylelint "**/*.{css,scss}" - to fix errors run: npx stylelint "**/*.{css,scss}" --fix - to test and check the js file/s is error-free run: npx eslint . - to fix errors run: npx eslint . --fix ### Deployment Check for the tests when you generate a pull request and fix the errors if any. For stylelint error run:<code>sudo npx stylelint "\*_/_.{css,scss}" --fix</code> and it will the fix style issues automatically. <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> 👤 **Jugoslav Achkoski** - GitHub: [jugosack](https://github.com/jugosack) - Twitter: [Jugoslav Achkoski](https://twitter.com/Jugosla22401325) - LinkedIn: [Jugoslav Achkoski](https://www.linkedin.com/in/jugoslav-achkoski-3a074021/?originalSubdomain=mk) <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> - [ ] Add local storage to save todos - [ ] Add functionality to add and remove todos <!-- CONTRIBUTING --> ## 🤝 Contributing <a name="contributing"></a> Contributions, issues, and feature requests are welcome! Feel free to check the issues page <!-- SUPPORT --> ## 👋 Show your support <a name="support"></a> Give a ⭐️ if you like this project! <p align="right"><a href="#readme-top">(back to top)</a></p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> - [Microverse Team](https://www.microverse.org/). I would like to thank Microverse for the information provided to build this project. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FAQ (optional) --> ## ❓ FAQ (OPTIONAL) <a name="faq"></a> - **Can I use the project for any purpose?** - Yes, you can use this files for anything you need. - **Is the information saved in any database?** - No, all data is saved in Local Storage. ## 📝 License <a name="license"></a> This project is [MIT](https://github.com/jugosack/To-Do-list/blob/main/LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
"To-Do List" is a web-based project that was built using webpack. It allows users to create and manage a list of tasks, with the ability to add new tasks and mark them as complete. The tasks are saved in local storage, so they will persist even if the user closes the browser or turns off their computer. The website has a clean and simple interface
bootstrap,css,html,javascript
2023-01-19T10:05:43Z
2023-01-27T14:27:36Z
null
1
5
27
1
0
2
null
MIT
JavaScript
Megacoderuzb/React-First-app
master
null
ReactApp
css3,html5,javascript,reactjs
2023-01-25T15:08:31Z
2023-01-25T15:07:47Z
null
1
0
2
0
0
2
null
null
JavaScript
haslie22/online-zoo
main
## Online Zoo ## This website has been created for a foundation which holds a unique online zoo, where the visitors can observe animals' routine in their habitat without even leaving home. The possibilities this website provides you with: * Info about the zoo * Gallery of available animals * Previous customers' feedback * Possibility to donate eo animals: * monthly / once * sum of your choice * Adaptive layout for comfortable surfing on mobiles and tablets This app is created with: * HTML5 * CSS3 * Vanilla JS Deployment link is [here](https://haslie22.github.io/online-zoo/online-zoo/pages/main/index.html) :monkey_face: :lion: :koala: :frog: ![Page screenshot](https://user-images.githubusercontent.com/79032502/214138473-fd267570-31ee-443d-ab0e-dca51d442453.png)
HTML, Sass and Vanilla JS website for online zoo foundation :panda_face:
css,html,javascript,js,website,website-design,zoo,online-zoo
2023-01-23T18:59:15Z
2023-01-23T20:08:07Z
null
1
0
2
0
0
2
null
MIT
null
iam-medvedev/sierpinski-generator
main
# `sierpinski-generator` [Sierpiński triangle](https://en.wikipedia.org/wiki/Sierpi%C5%84ski_triangle) dataset generator. See interactive svg-generator [demo](https://iam-medvedev.github.io/sierpinski-generator/). ## Install ```sh yarn add sierpinski-generator ``` ## Triangle generator <img src="./demo/triangle.gif" width="240" /> Usage: ```ts import { createSierpinskiTriangle } from 'sierpinski-generator'; const result = createSierpinskiTriangle({ size: 1000, iterations: 4, }); // [ // { // box: { width: 62.5, height: 62.5, x: 0, y: 0 }, // points: [ // { x: 0, y: 0 }, // { x: 62.5, y: 0 }, // { x: 31.25, y: 62.5 }, // ], // }, // { // box: { width: 62.5, height: 62.5, x: 62.5, y: 0 }, // points: [ // { x: 62.5, y: 0 }, // { x: 125, y: 0 }, // { x: 93.75, y: 62.5 }, // ], // }, // ... // ]; ``` ## Carpet generator <img src="./demo/carpet.gif" width="240" /> Usage: ```ts import { createSierpinskiCarpet } from 'sierpinski-generator'; const result = createSierpinskiCarpet({ size: 1000, iterations: 4, }); // [ // { width: 333.3333333333333, height: 333.3333333333333, x: 0, y: 0 }, // { width: 333.3333333333333, height: 333.3333333333333, x: 0, y: 333.3333333333333 }, // ]; ``` ## Local demo ```sh yarn demo ``` ## License `sierpinski-generator` is [WTFPL licensed](./LICENSE).
Sierpiński triangle dataset generator.
fractal,fractal-algorithms,javascript,sierpinski,sierpinski-carpet,sierpinski-triangle,typescript,dataset,generator
2023-01-25T05:36:33Z
2023-01-26T10:24:48Z
2023-01-26T10:24:48Z
1
0
13
0
0
2
null
WTFPL
TypeScript
steve1316/android-cv-automation-library
main
# Automation Library [![](https://jitpack.io/v/steve1316/android-cv-automation-library.svg)](https://jitpack.io/#steve1316/android-cv-automation-library) This library serves to consolidate all necessary code to facilitate a backend for automation purposes on Android devices. The OpenCV Android SDK is being imported from this [OpenCV Android SDK repo](https://github.com/steve1316/opencv-android-sdk). Currently, this library can do the following: - Uses `MyAccessibilityService` to programmatically execute gestures and `MediaProjectionService` to acquire screenshots for `ImageUtils` to perform image processing operations on. - `BotService` handles the display and movement of the floating overlay button to start and stop program execution. - Handles connection with Discord and Twitter APIs with `DiscordUtils` and `TwitterUtils` respectively. - Loads in a `settings.json` file with `JSONParser` to be further processed in the primary project. - Saves a text log of messages with `MessageLog`. - Displays a persistent status notification informing the user via `NotificationUtils`. - Any messages that needs to be sent from this library to the primary project can be done with the `EventBus` library using the `JSEvent` and `StartEvent` event classes. ``` // Project-level build.gradle allprojects { repositories { maven { url 'https://www.jitpack.io' } } } ``` ``` // App-level build.gradle dependencies { implementation("com.github.steve1316:android-cv-automation-library:Tag") } ``` ## TODO - [ ] Create a Wiki and create a page for each class in the `utils` folder, explaining what each of them do in a broad scope and what they offer to the project that will be using them.
This library serves to consolidate all necessary code to facilitate a backend for automation purposes on Android devices.
accessibility,android,automation,bot,discord,eventbus,gradle,javascript,jitpack,json
2023-01-18T21:24:46Z
2023-02-10T06:22:07Z
2023-02-10T06:22:07Z
1
0
43
0
2
2
null
null
Kotlin
memorabilien/dynamic-visual-scoring-calculator
main
# Dynamic Visual Scoring Calculator A dynamically adjustable scoring calculator with a lighthouse style data visualization. Get a score between 0 to 100 from data, with dynamically adjustable target value, a from -5 to +5 adjustable bias , and a self adjusting weighting system. [Live Demo](https://memorabilien.github.io/dynamic-visual-scoring-calculator/docs/demo/) ### Config ```javascript const config = { categoryCount: 4,// number of category categoryNames: ["Time", "Cost", "Efficiency", "Personell"],//category title to display categoryUnits: ["s", "€", "%", "P"],// category unit to display categoryTargets: [10, 20, 100, 0],// target value to which a data Point in the data set should converge categorySteps: [1, 0.01, 0.01, 1],//how big on step on the slider should be categoryDirections: [1, 1, -1, 1],// 1: data point > target value; -1: data point < target value categoryGrains: [1, 1, 1, 1],// fine tune to the acceptable difference between data point and target value ( IMPORTANT: g !== 0 always)! categoryEvaluations: ["linear", "linear", "linear", "linear"], // how should the score of a category be calculated categoryWeightPresets: [25, 25, 25, 25], // presets categoryColors: ["#FF1D15", "#0075FF", "#61E786", "#ffbb00", "#FCC217", "#AA3E98", "#34F6F2"], // define the circle colors }; ``` ## Score Calculation To calculate a single category Score, the main principle is the difference between the `categoryTarget` and the actual `categoryValue`. Things to note are as follows: * The `categoryValue` can not be dynamically adjusted by the front end user, because it is a measured value in open world. * The `categoryTarget` is adjustable, with the `min` or `max` value automatically being set to the `categoryValue`. Should the `categoryValue >= categoryTarget` the `categoryDirection = 1` . E.g. the category goal is it to optimize the measured process for as little time as possible). If set correctly the `categoryTarget` cannot be set bigger than the `categoryValue`. The Result is the adjustable `categoryTarget` will automatically stop at `max = categoryValue`. Now The other way around: Should the `categoryValue <= categoryTarget` the `categoryDirection = -1` . E.g. the category goal is it to optimize the measured process for the hightest efficiency possible. If set correctly the `categoryTarget` cannot be set smaller than the `categoryValue`. The Result is the adjustable `categoryTarget` will automatically stop at `min = categoryValue`. * The `categoryWeight` can be adjusted, which affects the overall score, but **not** the ``categoryScore``! When adjusting one `categoryWeight` all the other `categoryWeight` will adjust accordingly, so: $$\sum_{i=1}^c categoryScore_i = 1 = 100\%$$ For ease of use the lowest individual `categoryWeight` is 0.01 %. This ensures, that no `categoryWeight` will be stuck at 0%. *Due to the nature of using linear Algebra (more specific Matrix calculations) for calculation the weights. Depending on the number of categories, if one category reaches 0% it will stay at 0% and the other weight will compensate, which is an unwanted effect* * The `categoryBias` is adjustable, with the `categoryBias` accepting any value between $bias ∈ [-5 , 5] , bias ∈ Z$. If `0 < categoryBias < 5` means, you favor the category and therefore giving it a better score. If the `categoryBias == 5` the `categoryScore ≅ 1 ≅ 100%` . If you set `-5 < categoryBias < 0` means, you disfavor the category and therefore giving it a worse score. If the `categoryBias == -5` the `categoryScore ≅ 0 ≅ 0%` . To control how the bias impacts the `categoryScore` there are three different option which must be chosen in the `config`. There are three evaluation methods: * **linear:** s(v) returns a score with 0 >= `categoryScore` <= 1000 , dependent on the `categoryTarget` $t$, the actual `categoryValue` $v$ , `categoryBias` $b$ , `categoryDirection` $p$ and the `categoryGrain`$g$ , which should be set to relative resolution, which ís dependent on the use case, i.e. when running a marathon anything from 10 seconds to 10 minutes would be the grain, on the other hand when running a 100m dash the grain would be 0.5 Seconds to 0.005 Seconds. $$b\in[-5,5];\ b \in Z;\ \ \ t \le v \vee t \ge v; \ \ \ p \in [-1,1]; \ p \in Z\ \ \ t,v,g \in R$$ $$s(v)=f(-h(v))+f(h(v))(-b_1h(v)+1)+f(h(v- \frac{1}{pb_1}))(b_1h(v))-1)+500$$ $$f(v) = \frac{1000}{π} arctan(999999v)$$ $$h(v) = p(v-t)$$ $$b_1 = \frac{b-5.001}{-b-5.001} \frac{1}{g_1}\\ \ \\ g_1 = 2g$$ In this example `categoryTarget` (the blue line) is set to 200 and `categoryValue` (the red line) is set to 700. Because `categoryValue`>`categoryTarget`our `categoryDirection` is +1. `categoryBias` shall be 0 and the `categoryGrain` is set to 500. By design if the `categoryValue == categoryGrain - categoryTarget` the `categoryScore` shall always be 500(purple line) ![linear bias example plot](./docs/calc/linear.svg "Linear Bias Plot") * **quadratic** ![quadratic bias example plot](./docs/calc/quad.svg "Quadratic Bias Plot") To calculate the overall Score all `categoryScore` values are used to get the average, which then is being modified to be a score between 0 and 100
A dynamically adjustable scoring calculator with a lighthouse style data visualization. Get a score between 0 to 100 from data, with dynamically adjustable target value, a from -5 to +5 adjustable bias , and a self adjusting weighting system.
angular,calculator,data-visualization,javascript,react,svg-animation,visualization,vue,statistics,weights-and-biases
2023-01-19T13:02:11Z
2023-02-23T15:35:50Z
null
1
5
63
0
0
2
null
NOASSERTION
JavaScript
vvv-sss/vin_decoder
main
# VIN Number Decoder This application is a universal VIN decoder. Every car has a unique identifier code called a VIN. This number contains vital information about the car, such as its manufacturer, year of production, the plant it was produced in, type of engine, model and more. For instance, if someone wants to buy a car, it is possible to check the VIN number on the online database to ensure that the car was not stolen, damaged or illegally modified. The VIN number has a specific format that is globally recognized. This format was implemented by the ISO institute. Every car manufacturer is obliged to mark all its vehicles in this special format. This online service allows a user to check the validity of the car and get detailed information on almost any VIN number, search car parts and check the car's history. ## How to use Enter your vehicle's 17-character Vehicle Identification Number (VIN) in the field above to look up and receive an instant report on its manufacturer, brand, make and model, body style, engine size, assembly plant, and model year. The information is provided by the [National Highway Traffic Safety Administration](https://www.nhtsa.gov/) (NHTSA) from the data submitted by the manufacturers to NHTSA. The VIN Decoder lookup is intended for use with vehicles manufactured since 1981. If your vehicle was made before 1981, the VIN will most likely contain 11 characters. ## Application features - With the help of navigation bar you can surf through Home and About pages as well as change color mode from dark to light. Search bar provides three leves of client side validation with color signals to indicate successful passing. - ![](./src/preview/slide_1.png) - Search button appears only if all three conditions of validation are met. - ![](./src/preview/slide_2.png) - There is search history with the five last searches which are stored inside local storage of the browser. - ![](./src/preview/slide_3.png) - Upon successful fetching of data there is a list with VIN number decoded data. Each vaiable of the list can be expanded on click to show description what this variable does mean. If the fetch is broken there will be corresponding message that something went wrong. - ![](./src/preview/slide_4.png) - About page contains additional information about VIN number as well as fetched data with full list of all possible decoded variables with it description. - ![](./src/preview/slide_5.png) ## Links Try it now! [VIN Number Decoder ](https://vvv-sss.github.io/vin_decoder/) ## Built with - React JS - Javascript, AJAX - HTML5 - CSS ## Author - Volodymyr Serbulenko - E-mail: serbulenko1volodymyr@gmail.com
null
ajax,css3,html5,javascript,react,react-router
2023-01-23T10:04:21Z
2023-02-04T18:37:24Z
null
1
0
16
0
0
2
null
null
JavaScript
faizansk814/makeMyTrip-Clone
main
# gusty-adjustment-6018
A Booking website where users can buy ticket of various accomodation
css,html,javascript,json-api
2023-01-17T10:35:18Z
2023-01-22T14:56:13Z
null
2
5
11
6
0
2
null
null
HTML
SannketNikam/DOT-Skins-and-Cases
main
null
DOT Skins and Cases Website offers a diverse range of skins and cases for various devices, providing customers with a seamless e-commerce experience.
flask,sqlite,website,python,ecommerce-website,google-fonts,javascript,pythonanywhere
2023-01-22T21:23:05Z
2023-05-09T14:24:31Z
null
2
0
10
0
1
2
null
null
CSS
pri65/nike_store_commerce
main
## Nike Store Clone: E-commerce Website > It is a modern e-commerce website. It contains one page. First there is animated hero component and sticky navbar at the top. In this project you can also read stories and explore products. And also you can add to cart products, it is fully functional. This is a Reactjs based project. To manage the whole state of our web application we use react-redux and redux/toolkit. I have use Tailwind css to desing this website and finally deployed this project on vercel. ## Built With - Reactjs - React/Redux - Heroicons - Vitejs - Tailwindcss ## Live Demo [Live Demo Link](https://nike-store-ecommerce-eight.vercel.app/) ## Desktop View - Hero banner ![Screenshot (44)](https://user-images.githubusercontent.com/101036458/213118655-65a04abd-bc2d-489b-9807-f7a31a878e29.png) - Cart ![Screenshot (48)](https://user-images.githubusercontent.com/101036458/213118825-b42ca931-4df1-4bce-afbb-90668a0f914a.png) ## Tablet View ![Screenshot (46)](https://user-images.githubusercontent.com/101036458/213118901-efe72f34-4915-4496-bdd7-2e3aaa139d06.png) ## Mobile View ![Screenshot (47)](https://user-images.githubusercontent.com/101036458/213118986-6b41c391-5b9a-4184-a1ca-3e4de81c8dae.png) ## 🤝 Contributing Contributions, issues and feature requests are welcome! Start by: * Forking the project * Cloning the project to your local machine * `cd` into the project directory * Run `git checkout -b your-branch-name` * Make your contributions * Push your branch up to your forked repository * Open a Pull Request with a detailed description to the development branch of the original project for a review ## Authors 👤 **Priyanka soni** - Github: [@githubhandle](https://github.com/pri65) - Linkedin: [linkedin](https://www.linkedin.com/in/priyankaso/) ## Show your support Give a ⭐ if you like this project!
It is a modern e-commerce website. First there is animated hero component and sticky navbar at the top. In this project you can also read stories and explore products. And also you can add to cart products, it is fully functional.
hero-icon,javascript,reactjs,redux,redux-toolkit,tailwindcss,vitejs
2023-01-17T16:49:18Z
2023-01-18T09:56:59Z
null
1
3
28
0
0
2
null
null
JavaScript
KoolTheba/typescript-project-alfa
main
# typescript-project-alfa Interesting stuff when learning and using Typescript. One of the best approaches on development > The earlier you find a mistake, the easier it is to fix it (_Software Eng. at Google - O'REILLY_) ## Resources - [The official Typescript Handbook](https://www.typescriptlang.org/docs/handbook/intro.html) - [The official Typescript Playground](https://www.typescriptlang.org/play) - [Typescript V3 Fundamentals by Mike North](https://www.typescript-training.com/course/fundamentals-v3) - 🇪🇸 [Platzi Typescript V4 Fundamentals](https://platzi.com/clases/2878-typescript) - 🇪🇸 [Madrid JS 211124 - Deberías usar TypeScript y he aquí el porqué](https://www.youtube.com/watch?v=51UpkA36gn0) ## Config and first steps ### Install TS You'll use it on your development environment: ``` npm install typescript --save-dev ``` ### Automatic visualization of bugs in your code One interesting approach when starting to learn Typescript is how, once installed TS, it analiyses continiously the bugs in your code, so it could prevent at least a 15% of bugs. You can enjoy it thanks to the static analysis running in your editor. > File used: `search-for-errors.js` before config (`serach-for-errors.ts` after config) 1. Add JS code with mistakes (as this one https://gist.github.com/nicobytes/bd18fbe87c037a10faa3296ea3992639) 2. Add `//@ts-check` on the first line of your JS file 3. Enjoy how TS analyses the errors and the errors' info that is giving you ### Compiler Runs the compiler translating the .ts file to .js file. I added flags examples that won't be necessary after configuring your `tsconfig.json` file. The target is the JS version that you want TS to read (https://www.typescriptlang.org/tsconfig#target). By default, target is ES3: > File used: `00-hello.js` & `01-demo.js` (.ts extension after configuration) ``` // compile easily an specific file npx tsc src/name-of-your-file.ts // add the ES6 target flag npx tsc src/name-of-your-file.ts --target es6 // dist folder flag mkdir dist npx tsc src/name-of-your-file.ts --outDir dist ``` ### Configuration All previous steps are initial steps for checking how TS works. But for a real example of a project using TS, we need to configure TS via a configuration file. This is a fundamental configuration of your development environment to enjoy Typescript in our projects: ``` // create a tsconfig file. As target, my version 4.9.4 has set up ES6 npx tsc --init // basic options to habilitate (uncomment) in tsconfig.json "outDir": "./dist" "rootDir": "./src" // now just run the script for compilation npx tsc // in watch mode (recommended) npx tsc --watch ``` TS will throw you errors in your terminal, but it eventually compiles your JS files even with errors, so it truly relies in your criteria as developer. 🧐 Extra resource: [Centralized Recommendations for TSConfig bases](https://github.com/tsconfig/bases#centralized-recommendations-for-tsconfig-bases) ## The real deal: the syntax for types These are the **basics** that you should start from when leaarning Typescript. Check in each file the examples, how TS tells you if something is wrong and read carefully the syntax. > Files used: `02-numbers.ts`, `03-booleans.ts`, `04-strings.ts`, `05-arrays.ts` The 2 ways of interacting with the TS syntax are: - Inference of types: your editor helps you when writing in TS files, as it highlights the possible errors - Explicit types: classic syntax ```ts let productPrice: number = 100; ``` For the (no) use of the TS type any: `06-any.ts` For union types, which gives flexibility: `07-union.ts` For alias and literal types: `08-alias.ts` For null and undefined types: `09-null.ts` For functions: - `10-functions.ts` - `11-return.ts` - `12-objects.ts` For how to use modules: `/products/*.ts` For how to use external libraries: - with TS support: `13-external-libraries.ts` - without TS support: `13-libs-not-supported.ts`
Interesting stuff when learning and using Typescript.
javascript,learning-by-doing,typescript,community-project
2023-01-21T10:41:04Z
2023-01-21T19:23:29Z
null
1
1
12
0
0
2
null
AGPL-3.0
TypeScript
vorthkor/nlw-setup
main
<h1 align="center"> Habits </h1> <p align="center"> NLW é um evento exclusivo e gratuito, promovido pela Rocketseat para ensino de tecnologias WEB. <br/> </p> <p align="center"> <a href="#-tecnologias">Tecnologias</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-projeto">Projeto</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-layout">Layout</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#memo-licença">Licença</a> </p> <p align="center"> <img alt="License" src="https://img.shields.io/static/v1?label=license&message=MIT&color=49AA26&labelColor=000000"> </p> <br> <p align="center"> <img alt="projeto Habits" src=".github/preview.jpg" width="100%"> </p> ## 🚀 Tecnologias Esse projeto foi desenvolvido com as seguintes tecnologias: - HTML e CSS - JavaScript - Git e Github - Figma ## 💻 Projeto O Habits é um app para ajudar a rastrear os hábitos. - [Visite o projeto online](https://vorthkor.github.io/nlw-setup/) ## 🔖 Layout Você pode visualizar o layout do projeto através [DESSE LINK](https://www.figma.com/community/file/1195327109778210238). É necessário ter conta no [Figma](https://figma.com) para acessá-lo. ## :memo: Licença Esse projeto está sob a licença MIT. --- Feito com ♥ by Rocketseat :wave: [Participe da nossa comunidade!](https://discord.gg/rocketseat)
Habit tracker by NLW's rocketseat
css,figma,git,github,html,javascript
2023-01-20T23:53:19Z
2023-01-21T12:39:43Z
null
1
0
5
0
0
2
null
null
HTML
Godhanded/MedicalArchive_fullstack
main
# Medical Records Archive # FiCave > ## Table of Contents - [Project Details](#project-description) - [Problem Statement](#problem-statement) - [Solution](#solution) - [How it Works]() - [Technologies Used](#technologies-used) - [NFT.Storage/IPFS](#nftstorageipfs) - [Backend Server/Api](#backend-serverapipython-flask) - [Filecoin Hyperspace cChain](#filecoin-hyperspace-chain) - [Smart Contract](#solidity-smart-contracts) - [Wagmi Kit](#wagmi-kit) - [Important Live Links](#importantlive-hosted-project-links) - [Team Members](#contributors) - [Project Features](#project-features) - [Why FiCave](#why-ficave) - [Features We Couldn't Complete](#features-we-couldnt-complete) - [Future Project Plans](#future-project-plans) # > ## Project Description <p><b style="color:orange">Ficave is a decentralised medical documentation system,built on Fantom network. Ficave is the first medical ledger on the blockchain,which makes it easy to upload,send,receive,and acess medical data’s on chain . </b> Files stored on Ficave are immutable and can’t be accessed without user permission or password,confidential medical data can also be stored in private folders. <b style="color:orange">FiCave</b> Dapp is free and easy to use,conveniently upload,encrypt and share your medical files with your doctor or consultant. Files uploaded on Ficave can also be made open-source to serve as research material in the medical dataset,enabling on chain peer-to-peer medical database. </p> # ## Important/Live Hosted Project Links - **Hosted URL** > [https://ficave.on.fleek.co/](https://ficave.on.fleek.co/) - **Github** > [https://github.com/Godhanded/MedicalArchive_fullstack](https://github.com/Godhanded/MedicalArchive_fullstack) - **Contract** > - Hyperspace_fvm [0xF281Afb262bA65fbD9d4BCfb2539aF1D064231ca](https://hyperspace.filfox.info/en/address/0xF281Afb262bA65fbD9d4BCfb2539aF1D064231ca) - Contract Code [here](https://github.com/Godhanded/MedicalArchive_fullstack/blob/main/contracts/MedArchive.sol) - Contract details [here](#solidity-smart-contracts) - **Backend Server/Api** > [see here](#backend-serverapipython-flask) # > ## Problem Statement Ficave seeks a usecase that eliminates traditional file system in health organisation’s,Hospitals and clinics and makes data sharing more <b style="color:orange">secure, through encryption</b>, accessible and safe . Files stored on Ficave must be immutable and can’t be accessed without user/hospital's permission or password,confidential medical datas must be confidential and also be stored in private folders. Our mission is to make medical records and data more accessible and safe using the blockchain technology,we envision to build Ficave to stand out as the <b style="color:orange">biggest medical archive</b> for research and documentations,and to eliminate the problem of medical data loss due to physical disasters or tamper. [see solution here](#solution) # > ## How it works ***Note:*** <b style="color:orange">All patients and their records are tied to each hospitals account or wallet address.</b> hospitals create or adds a patient using their name and that patient is issued a patient Id with which records can be added. <b style="color:orange">When uploading a Medical record</b> the details are provided and a picture of the record uploaded, before clicking the upload button the hospital provides their password, after this the details are uploaded to Ipfs and a hash is returned, <b style="color:red">This Hash</b> is then sent to our server where it is encrypted with the hospitals' password using fernet encryption, after encrypting, the result or fernet hash is returned and this is stored on the Fi-Cave smart contract and mapped to the hospitals' address.This makes it secure and impossible for one to see private patient records by querying the contracts storage slots as what is returned are incomprehensible. <b style="color:orange">To view or get patients records</b>, the Id of the patient and the hospitals password is provided, this gets all the records for that patient from the contract and then sends a list or array of all the fernet hashes stored on the contract to our server, our sever then uses the password to decrypt all the members of the list. the server then returns a list or aray of the decrypted hashes which are the actual Ipfs hash or CID , this is collected and rendered on our frontend for the user or Hospital to see and interact with. # > ## Contributors - Godhanded(Blockchain && Backend Dev) - [Twitter, @Godand](https://twitter.com/Godand_) - [Github, @Godhanded](https://github.com/Godhanded) <br> - Miraclemenikelechi(Front-End dev) - [Twitter, @trinityandtruth](https://twitter.com/trinityandtruth?s=20&t=ZIj6s8ImLoDYIqEpV-qfKw) - [Github, @miraclemenikelechi](https://github.com/miraclemenikelechi)<br> - Nuelvations(Product Manager) - [Twitter, @defiprince_](https://twitter.com/defiprince_) - [Github, @nuelvations](https://github.com/nuelvations) <br> # > ## Technologies Used | <b><u>Stack</u></b> | <b><u>UsageSummary</u></b> | | :------------------ | :------------------------- | | **`Solidity`** | Smart contract | | **`React`** | Frontend | | **`NFT.Storage/IPFS`**| file upload/retrieval | | **`Wagmi Kit`** | contract calls | | **`Filecoin Hyperspace chain`** | Main contract deployed/Tracks all records| | **`Python Flask`**| Encrypt/Decrypt uploaded Records for contract to store| - ### **Solidity smart contracts** ficavee makes use of a smart contracts see [contract](https://github.com/Godhanded/MedicalArchive_fullstack/tree/main/contracts) - **MedArchive** The main or home contract through which tracks all hospitals and their respective patients. - <b style="color: orange">It also records in encrypted format using the hospitals passwordthe medical data of all patints</b> - ### **Backend Server/Api**_**Python Flask** - <b style="color: orange">The Api or server</b>, we created performs two functions, encrypt the ipfs cid returned after a file is uploaded and return the encryption which makes use of <b style="color:orange">Fernet Encryption Methods and User defined password</b> to store in our smart contract. [code here](https://github.com/Godhanded/MedicalArchive_fullstack/blob/main/Backend/securor/__init__.py#L51) and [here](https://github.com/Godhanded/MedicalArchive_fullstack/blob/main/Backend/securor/__init__.py#L41) - Decrypt a list of Fernet hashes and return the Cids of the decrypted hashes to render on our frontend [see here](https://github.com/Godhanded/MedicalArchive_fullstack/blob/main/Backend/securor/__init__.py#L57) - See Backend Documentation [here](https://github.com/Godhanded/MedicalArchive_fullstack/blob/main/Backend/README.md) - ### **NFT.Storage/IPFS** - We used the nft.storage npm packed to interact and upload files to ipfs[see here](https://github.com/Godhanded/MedicalArchive_fullstack/blob/main/frontend_fi/src/components/upload/Upload.jsx#L92) - ### **Filecoin Hyperspace Chain** - The contract was <b style="color: orange">deployed on</b>this chain - ### **Wagmi Kit** - <b style="color: orange">The Wagmikit</b> was used to handle our connect wallet functiion ad contract calls see [Contract here]:(https://github.com/Godhanded/MedicalArchive_fullstack/blob/main/frontend_fi/src/components/upload/Upload.jsx#L92) # > ## Solution <p>FiCave has built as system where Hospitals Private and public can upload and store medical records unique to each hospital and most expecially private as all records are encrypted or hashed using Fernet encryption and a password provided by each user and this is stored in the smart contrct permanently. Ficave also also fosters research monetixation by allowing users or hospitals to publish medical write ups or research papers for sale at a price specified by said entity.</p> <p><b style="color: orange"> In the nearest of time,doctors or researchers</b> can co-work and share resource data on-chain while working remote using Ficave dapp,and also users can earn incentives from their open source records/data using the Ficave archive by encrypting medical data and setting acess price for people to be able to have acess or ownership to such data. </p> <p><b style="color:orange">Through Ficave - </b> In the nearest of time,doctors or researchers can co-work and share resource data securely on-chain while working remote using Ficave dapp,and also users can earn incentives from their open source records/data using the Ficave archive by encrypting medical data and setting access price for people to be able to have acess or ownership to such data. </p> # > ## Why FiCave - <p><b style="color:orange">Ficave usecase</b>Ficave usecase eliminates traditional file system in health organisation’s,Hospitals and clinics and makes data sharing more accessible and safe . Files stored on Ficave are immutable and can’t be accessed without user permission or password,confidential medical datas can also be stored in private folders. Ficave Dapp is free and easy to use,conveniently upload and share your medical files with your doctor or consultant. Files uploaded on Ficave can also be made open-source to serve as research material in the medical dataset,enabling on chain peer-to-peer medical database. </p> # ## Project features - Registration of patients - uploading Medical records or data - encrypting Records or data with user provided password - storing the encryption on chain - retrieving and decrypting medical records withh user provided password - Archive for sale of Medical research papers # ## Features we couldn't complete - we could not finish archive for selling research papers >we wanted to immediately build an avenue or sorce through which any medical practitioner can make money of their medical research or findings and selling it directly to other practitioners around the world, unfortunately we coulnt complete it,we lacked time and resources to biuld and thoroughly test it <b style="color:orange">Thankfully we are still on our toes building it</b> # ## Future Project Plans We plan to push this project further after the hackathon, and integrate some features we weren’t able to complete. - <b style="color:orange">Firstly</b> Our mission is to make medical records and data more accessible and safe using the blockchain technology,we envision to build Ficave to stand out as the biggest medical archive for research and documentations,and to eliminate the problem of <b style="color:orange">medical data loss due to physical disasters or tamper.</b> .</b> - <b style="color:orange">Improved Analytics to track and provide easily data concerning all records, patients and Hospitals</b>
A blockchain Archive to securely and privately store hospital medical records of all patients
react,solidity,filecoin,python,web3,ethersjs,flask,hardhat,javascript
2023-01-22T16:23:46Z
2023-09-08T11:05:54Z
null
2
0
85
0
1
2
null
null
JavaScript
time-mastery/pmodoro-landing
main
null
null
nextjs,reactjs,javascript,tailwindcss
2023-01-19T09:48:00Z
2023-06-25T12:06:55Z
null
2
16
54
0
0
2
null
null
JavaScript
RA-Tech-Group/Patient-Management-Dashboard
main
# Patient Management Dashboard This is a chart application using d3.js ![Dashboard screenshot](https://github.com/RA-Tech-Group/Patient-Management-Dashboard/blob/main/dashboard.jpg)
Chart application using D3.js
css,d3js,html5,javascript
2023-01-19T13:02:42Z
2023-01-20T03:03:36Z
null
3
2
5
0
1
2
null
null
JavaScript
michaelmdrs/habit-app
main
<h1 align="center"> Habits </h1> <p align="center"> NLW é um evento exclusivo e gratuito, promovido pela Rocketseat para ensino de tecnologias WEB. <br/></p> <p align="center"> <a href="#-tecnologias">Tecnologias</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-projeto">Projeto</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-layout">Layout</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#memo-licença">Licença</a> </p> <p align="center"> <img alt="License" src="https://img.shields.io/static/v1?label=license&message=MIT&color=49AA26&labelColor=000000"> </p> <br> <p align="center"> <img alt="projeto Habits" src=".github/preview.jpg" width="100%"> </p> ## 🚀 Tecnologias Esse projeto foi desenvolvido com as seguintes tecnologias: - HTML e CSS - JavaScript - Git e Github - Figma ## 💻 Projeto O Habits é um app para ajudar a rastrear os hábitos. - [Acesse o projeto online](https://michaelmdrs.github.io/habit-app/) ## 🔖 Layout Você pode visualizar o layout do projeto através [DESSE LINK](https://www.figma.com/file/2KTW1rxlUDUj0D7PyBFezd/Habits-(e)-(Community)?node-id=75%3A128&t=uJgR45wnL6YfIlHv-1). É necessário ter conta no [Figma](https://figma.com) para acessá-lo. ## :memo: Licença Esse projeto está sob a licença MIT. --- Feito com ♥ by Rocketseat :wave: [Participe da nossa comunidade!](https://discord.gg/rocketseat)
Habit Tracker by NLW's Rocketseat
css,figma,github,html,javascript
2023-01-23T01:06:48Z
2023-01-24T00:43:01Z
null
1
0
7
0
0
2
null
MIT
CSS
JoaoAlisonTI/match-schedule-cup
main
<h1 align="center"> Match Schedule</br>World Cup 2022 </h1> <p align="center"> Desenvolvido durante o evento NLW - COPA, promovido pela Rocketseat 🚀⚡. <br/> </p> <p align="center"> <a href="#-tecnologias">Tecnologias</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-projeto">Projeto</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-layout">Layout</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#memo-licença">Licença</a> </p> <p align="center"> <img alt="License" src="https://img.shields.io/static/v1?label=license&message=MIT&color=49AA26&labelColor=000000"> </p> <br> <p align="center"> <img alt="Calendário de Jogos" src="assets/preview.jpg" width="100%"> </p> </br> ## ⚙️👨‍💻 Tecnologias Esse projeto foi desenvolvido com as seguintes tecnologias: - HTML e CSS - JavaScript - Git e Github - Figma ## 💻 Projeto O Match Schedule foi desenvolvido com o tema da Copa do Mundo 2022 ⚽. Tem como objetivo mostrar quais partidas iriam ocorrer durante a semana e com os respectivos horários. Os cards das partidas são adicionados pelo Javascript. Bem, o código pode servir de base para outros projetos envolvendo calendário de jogos, eventos ou para outras ideias e necessidades que surgirem. - [Acesse o projeto finalizado, online ☁️](https://joaoalisonti.github.io/match-schedule-cup/) ## 🖼️ Layout Você pode visualizar o layout do projeto através [DESSE LINK](https://www.figma.com/file/03ZIAlTp51ygGF4NlBxSCC/NLW-Copa-Explorer-Copy?fuid=1125594134680598253). É necessário ter conta no [Figma](https://figma.com) para acessá-lo. ## :memo: Licença Esse projeto está sob a licença MIT. --- <strong>2022</strong>
World Cup 2022 match schedule
cup,javascript,match,schedule,world
2023-01-24T21:22:07Z
2023-01-26T05:20:59Z
null
1
0
2
0
0
2
null
null
CSS
Mars3397/Basketball_Recorder
main
# Basketball_Recoder This is a web side project for a [basketball recorder](https://mars3397.github.io/Basketball_Recorder/). The website is deployed on GitHub pages. <br /> > Recommand to use iPad for better user experience. <br /> ## Tutorial - [Web_practice](https://github.com/Mars3397/Web_practice) repository records all my practices of web related topic, including `vue2`, `vue3`, `HTML`, `JavaScript`, `CSS`, `Bootstrap5` and `Git`. - I use `vue` as main structure of Basketball Recorder. - Here is the [Notion Note](https://foregoing-antimatter-0d6.notion.site/Github-Page-b92cdabfb3a44874b33e67882f93daa5) about how to deploy a vue project on GitHub repository with GitHub pages. <br /> ## User Guide of Basketball Recorder ### Overview 1. Fill up game information. 2. Select the players. 3. Select player and corresponding record, then click Confirm. ### Home page 1. Fill up the information about the game you are going to record. 2. Click **Create** to enter recording page. ### Recording page - **Message Panel**: Message panel will show up the **newest record message**. You can see the **recording history** message by clicking message pannel. You can select the records in history and click delete button to **delete records** that are recorded wrong. - **Exit Button**: Exit the recording page when the game finished. - **Players list**: Choose which player you are going to record. You can click the select button next to players list to switch players. - **Recording buttons**: Choose which record type you are going to record. Remember to click Confirm after selecting the player and the record type. - **Period Scores**: The text area is used to record 2 team's score of each period. The value will be shown in show button. - **Show Button**: Show up the records for each player who has played in this game, as well as the game information. ### Preview ![preview of recording page](./src/assets/page.jpg)
This is a vue side project for a basketball recorder
vue,css,html,javascript
2023-01-25T06:43:53Z
2023-01-25T11:10:48Z
null
1
0
4
0
0
2
null
null
Vue
AviSingh017/Quikr-Bazaar-Clone
main
<h3>Team Project (Quikr Baazar Clone)</h3> ## Features <b>Featured Products</b> | Feature | Coded? | Description | |----------|:-------------:|:-------------| | Add a Product | &#10004; | Ability of Add a Product on the System | | List Products | &#10004; | Ability of List Products | | Edit a Product | &#10004; | Ability of Edit a Product | | Delete a Product | &#10004; | Ability of Delete a Product | <b>Purchase Features</b> | Feature | Coded? | Description | |----------|:-------------:|:-------------| | Create a Cart | &#10004; | Ability of Create a new Cart | | See Cart | &#10004; | Ability to see the Cart and it items | | Remove a Cart | &#10004; | Ability of Remove a Cart | | Add Item | &#10004; | Ability of add a new Item on the Cart | | Remove a Item | &#10004; | Ability of Remove a Item from the Cart | | Checkout | &#10004; | Ability to Checkout | Navigation: The website has a clear and intuitive navigation menu that allows users to easily find the products they are looking for. The menu includes links to the different product categories, as well as a link to the cart and the account page. **Navigation Bar** ![Screenshot (72)](https://user-images.githubusercontent.com/115489722/213989789-29c596a2-af1b-4521-9f6f-6d93121ab736.png) **Megamenu Bar** ![Screenshot (74)](https://user-images.githubusercontent.com/115489722/213990663-75d68567-2ed8-43aa-bbdf-5eb2d2f89ebd.png) **Login Page** ![Screenshot (82)](https://user-images.githubusercontent.com/115489722/213993030-4345c1fa-65bc-4b75-96cf-76309434fc61.png) Catalog: The product catalog displays all the products available on the website, organized by category. Users can filter the products by price, brand, or other attributes to find the products they are looking for. Each product in the catalog includes an image, a title, a brief description, and the price. **Catalog** ![Screenshot (75)](https://user-images.githubusercontent.com/115489722/213990546-86551185-9e6c-4c34-a8ae-53b1488010ed.png) Product Page: The product page provides detailed information about the product, including images, description, features, and reviews. Users can also select the quantity and add the product to their cart from this page. **Mobiles** ![Screenshot (76)](https://user-images.githubusercontent.com/115489722/213990981-dc3ee941-1b7c-4511-aa2c-cb9731744533.png) **Furnitures** ![Screenshot (77)](https://user-images.githubusercontent.com/115489722/213991038-21daf442-9d6b-463e-9ac3-dc1d8886d569.png) Shopping Cart: The shopping cart page shows the items that the user has added to the cart, the total price, and the option to proceed to checkout. Users can also update the quantity of items in the cart or remove items from the cart from this page. **Shopping Cart** ![Screenshot (78)](https://user-images.githubusercontent.com/115489722/213991448-c2293932-698f-4f32-b322-bd4cfa7941df.png) Checkout: The checkout page allows users to enter their shipping and billing information, select a shipping method, and make the payment. The website supports multiple payment methods, such as credit card and PayPal. **Checkout** ![Screenshot (79)](https://user-images.githubusercontent.com/115489722/213991620-ea9d4eb3-bda8-4509-b51b-97228473d066.png) Customer account: The website also includes a customer account functionality that allows users to view their order history, update their personal information, and see their wish list. **Order Page** ![Screenshot (80)](https://user-images.githubusercontent.com/115489722/213991699-9aab3c5e-9aaf-4c2e-a553-75aeabf008f6.png) Admin portal: The website's admin portal allows the website owner to manage the products, inventory, orders, and customers. It also provides analytics and reports on the website's performance and user activity. **Admin Portal** ![Screenshot (81)](https://user-images.githubusercontent.com/115489722/213991733-91e11d34-5cea-43c1-be45-670e11072274.png) Security: The website uses encryption and secure connections to protect the user's personal and payment information. It also implements standard security measures to protect against data breaches and unauthorized access. Support: The website provides a contact page with an email address and a phone number where users can reach out to the website's support team with any questions or issues. The website also includes a FAQ page and a knowledgebase where users can find answers to common questions. Overall, this website provides a comprehensive e-commerce platform that is easy to use, well-designed, and secure. It provides all the necessary features for an e-commerce website and it is designed to provide a great user experience for the customers.
Quikr clone: a sleek marketplace coded in HTML, CSS, JS, and Bootstrap. Buy or sell anything with ease. Secure login. User get access as both buyer & seller and integrated admin panel for user signed in as sellers.
bootstrap,css3,html5,javascript
2023-01-17T07:05:31Z
2023-09-13T12:49:59Z
null
6
19
88
0
3
2
null
null
HTML
Rafa-KozAnd/NLW_11-Setup
main
<p align="center"> <img src="http://img.shields.io/static/v1?label=STATUS&message=Concluded&color=blue&style=flat"/> <img alt="GitHub language count" src="https://img.shields.io/github/languages/count/Rafa-KozAnd/NLW_11-Setup"> <img alt="GitHub language count" src="https://img.shields.io/github/languages/top/Rafa-KozAnd/NLW_11-Setup"> <img alt="GitHub repo file count" src="https://img.shields.io/github/directory-file-count/Rafa-KozAnd/NLW_11-Setup"> <img alt="GitHub repo size" src="https://img.shields.io/github/repo-size/Rafa-KozAnd/NLW_11-Setup"> <img alt="GitHub language count" src="https://img.shields.io/github/license/Rafa-KozAnd/NLW_11-Setup"> </p> # NLW_11-Setup - Project Name: 'NLW_11-Setup'; - Languages: 'JavaScript'; - Softwares/Work Tools: 'V.S. Code'; - Resume: (About_the_Repository); - Obs: Example; - Version: v.1.0.0 - Last Update Date: 20/01/2023. ## 🚀 Tecnologias Esse projeto foi desenvolvido com as seguintes tecnologias: - HTML e CSS - JavaScript - Git e Github - Figma ## 💻 Projeto O Habits é um app para ajudar a rastrear os hábitos. ## - PrintScreen: <div> <img align="center" height="400" widht="400" src="/Print/Maratona.JPG" /> <img align="center" height="400" widht="400" src="/Print/Print.jpg" /> </div><br>
Rocketseat NLW Setup, held between 16/01 to 20/01/2023 (11° Edition).
css,expo,javascript,nextjs,nlw,nlw-setup,nodejs,prisma,react-native,reactjs
2023-01-18T01:06:24Z
2023-05-19T14:19:02Z
null
1
0
12
0
0
2
null
null
TypeScript
salaahl/restaurant_website_by_symfony
master
null
Restaurant Le Vingtième
bootstrap,css,javascript,php,html,twig,css-doodle,sql,sendgrid
2023-01-17T22:47:27Z
2023-11-22T14:24:41Z
null
1
0
63
0
0
2
null
null
PHP
gabriel-nascimento-sousa/NLW-Setup
main
null
projeto habits - NLW Rocketseat
css3,figma,git,github,html5,javascript
2023-01-21T02:49:14Z
2023-01-21T03:53:50Z
null
1
0
5
0
0
2
null
null
CSS
omunite215/FCC-Random-Quote-Generator
main
# FCC - Random Quote Generator ![image](https://github.com/omunite215/FCC-Random-Quote-Generator/assets/78680563/0f016eb7-3b1b-4da0-a5fb-3040d439a7be) ## Updates made to this project on 09/01/2024: - Included More Color Themes. - Added Copy Text Button Feature to Copy Quotes and their Authors Respectively. - Responsive Design Improvements. - Added Animation when quote changes. - Minor Bugs and Fixes. - Migrated to vite. ## This is my First Project Built With React!! ### I have written Comments wherever neccessary. ### I have divided this site into two components: Navbar and Quote section respectively. The project is hosted on Netlify : [Random Quote Generator](https://randomquotegeneratorbyom.netlify.app/) ## :star: Give A Star You can also give this repository a star to show more people and they can use this repository. # Getting Started These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. Prerequisites Before you start, make sure you have the following software installed on your computer: [![My Skills](https://skillicons.dev/icons?i=nodejs)](https://skillicons.dev) ### npm (Node Package Manager) ## ℹ️ How to use this Repository? 1. Clone the repository to your local machine ```bash git clone https://github.com/omunite215/FCC-Random-Quote-Generator.git ``` 2. Navigate to the project directory ```bash cd FCC-Random-Quote-Generator ``` 3. Install the necessary dependencies ```bash npm install ``` 4. Start the development server ```bash npm start ``` The website should now be up and running on http://localhost:3000. ## 🏠 Built With: [![My Skills](https://skillicons.dev/icons?i=react,bootstrap)](https://skillicons.dev) ## 🛠 Skills [![My Skills](https://skillicons.dev/icons?i=js,html,css)](https://skillicons.dev) ## 📲 Tech Stack ### **Server:** [![My Skills](https://skillicons.dev/icons?i=netlify)](https://skillicons.dev) ## 🚀 About Me Front - End Web Development Enthusiast Specializations: - UI/UX Design. - Web Development ## 🙋‍♂️ Connect With Me [<img src="https://skillicons.dev/icons?i=github" />](https://github.com/omunite215)&nbsp; [<img src="https://skillicons.dev/icons?i=linkedin" />](https://www.linkedin.com/in/om-patel-401068143/)&nbsp; [<img src="https://skillicons.dev/icons?i=instagram" />](https://www.instagram.com/_21omp/)&nbsp; [<img src="https://skillicons.dev/icons?i=devto" />](https://portfolio-jade-gamma-13.vercel.app/) ## Authors <p align="left"> <a href="https://skillicons.dev"> <a href="https://github.com/omunite215"> <img src="https://skillicons.dev/icons?i=github" /> </a> </a> </p> ## Acknowledgements - [Next docs](https://nextjs.org/docs) - [Bootstrap Docs](https://getbootstrap.com/docs/5.3/getting-started/introduction/) - [React Docs](https://reactjs.org/) <p align="center"> <img src="https://github.com/omunite215/FCC-Random-Quote-Generator/assets/78680563/613aa88f-ca0f-4820-9ba5-aae10dcc0c5e" alt="Om's Logo Image"/> </p>
This is a Random Quote generating website project given by Free Code Camp while completing Front-End Libraries Certifications built using React.JS , Bootstrap CSS and HTML.
bootstrap,freecodecamp,freecodecamp-project,front-end-development,front-end-web-development,react,reactjs,css,html,javascript
2023-01-20T11:00:02Z
2024-01-22T17:10:08Z
null
2
1
26
0
0
2
null
null
JavaScript
VictorMenezes21/nlw-setup-explorer
main
<h1 align="center"> Habits </h1> <p align="center"> NLW é um evento exclusivo e gratuito, promovido pela Rocketseat para ensino de tecnologias WEB. <br/> </p> <p align="center"> <a href="#-tecnologias">Tecnologias</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-projeto">Projeto</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#-layout">Layout</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp; <a href="#memo-licença">Licença</a> </p> <p align="center"> <img alt="License" src="https://img.shields.io/static/v1?label=license&message=MIT&color=49AA26&labelColor=000000"> </p> <br> <p align="center"> <img alt="projeto Habits" src=".github/preview.jpg" width="100%"> </p> ## 🚀 Tecnologias Esse projeto foi desenvolvido com as seguintes tecnologias: - HTML e CSS - JavaScript - Git e Github - Figma ## 💻 Projeto O Habits é um app para ajudar a rastrear os hábitos. - [Visite o projeto online](https://victormenezes21.github.io/nlw-setup-explorer/) ## 🔖 Layout Você pode visualizar o layout do projeto através [DESSE LINK](https://www.figma.com/community/file/1187422022288947321). É necessário ter conta no [Figma](https://figma.com) para acessá-lo. ## :memo: Licença Esse projeto está sob a licença MIT. --- Feito com ♥ by Rocketseat :wave: [Participe da nossa comunidade!](https://discord.gg/rocketseat)
Habit Tracker desenvolvido durante o evento gratuito "NLW Setup - 2023" by Rocketseat 🚀
css,figma,git,github,html,javascript
2023-01-21T19:19:09Z
2023-01-21T19:55:20Z
null
1
0
4
0
0
2
null
null
HTML