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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Koakoalla/chatroulettka | main | # Next.js + Tailwind CSS Example
This example shows how to use [Tailwind CSS](https://tailwindcss.com/) [(v3.0)](https://tailwindcss.com/blog/tailwindcss-v3) with Next.js. It follows the steps outlined in the official [Tailwind docs](https://tailwindcss.com/docs/guides/nextjs).
## Deploy your own
Deploy the example using [Vercel](https://vercel.com?utm_source=github&utm_medium=readme&utm_campaign=next-example) or preview live with [StackBlitz](https://stackblitz.com/github/vercel/next.js/tree/canary/examples/with-tailwindcss)
[](https://vercel.com/new/git/external?repository-url=https://github.com/vercel/next.js/tree/canary/examples/with-tailwindcss&project-name=with-tailwindcss&repository-name=with-tailwindcss)
## How to use
Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app) with [npm](https://docs.npmjs.com/cli/init) or [Yarn](https://yarnpkg.com/lang/en/docs/cli/create/) to bootstrap the example:
```bash
npx create-next-app --example with-tailwindcss with-tailwindcss-app
# or
yarn create next-app --example with-tailwindcss with-tailwindcss-app
```
Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)).
| Анонимная чатрулетка для поиска собеседников | nextjs,socket-io,typescript,websockets,javascript,react,tailwindcss | 2023-04-24T20:46:35Z | 2023-05-09T17:23:13Z | null | 1 | 0 | 3 | 0 | 0 | 2 | null | null | TypeScript |
SankThomas/learnerspree | main | # About Learnerspree (Still in development)
learnerspree is a platform built in ReactJs whose intent is to create a place for beginners in code to learn, practice, and build out small projects in their steps to becoming advanced programers.
Currently, as the platform is just starting out, we only have a few courses ready. More will be added with time.
## Built using
1. NextJs
2. Nextra
3. MDX
## Built by
Thomas Sankara
1. [YouTube Channel](https://youtube.com/tsbsankara)
2. [Website](https://tsbsankara.com)
| A documentation website to learn web development, cybersecurity, transcription, among other topics. Built in NextJs | html5,css3,javascript,nextjs,nextra,reactjs,nextra-theme-docs | 2023-05-13T10:27:06Z | 2024-05-14T13:20:43Z | null | 1 | 22 | 405 | 0 | 0 | 2 | null | null | MDX |
Jayesh049/WhiteBoard | main | # PepBoard
# | Built a whiteboard application with draw, erase, add images, add notes functionality ,used and worked on Canvas Api. | css,html,javascript | 2023-05-10T06:32:03Z | 2023-05-10T07:28:23Z | 2023-05-10T07:28:23Z | 1 | 0 | 2 | 0 | 0 | 2 | null | null | JavaScript |
Kakifrucht/BookmarkletGenerator | master | # Encrypted Bookmarklet Generator
Small and user-friendly tool that enables the creation of AES-256 encrypted data URL [bookmarklets](https://en.wikipedia.org/wiki/Bookmarklet). It allows users to input text, optionally formatted in markdown, or a URL, paired with a password. This tool then generates a data URL, which includes the encrypted data and all necessary decryption libraries. The generated URL can be saved as a bookmark and synchronized across devices through your browser's data sync feature.
For efficiency, data is compressed when the overhead of adding the decompression library is lower than the uncompressed state.
Additionally, the tool offers the functionality of opening direct URLs, providing a straightforward way to decrypt individual links.
## Features
- Uses AES-256 encryption to create data URL bookmarklets with your encrypted link/text.
- Supports markdown-formatted text, useful for notes.
- Directly opens single encrypted links.
- Embeds all necessary dependencies within the bookmarklet.
- Fully client side, generator runs on a basic webserver.
- Compresses data using deflate if it is smaller with the inflate library included in the bookmarklet.
- Enables editing by copying decrypted data to the clipboard and following the convenient link to the generator within the bookmarklet.
- Offers dark and light mode according to browser preferences, and is responsive.
- Custom tab title if the first line of the data is a heading, useful for tab hoarders and temporary notes.
- Includes a favicon, wow.
## How to Use
You can find a hosted version [here](https://wunderlich.pw/bookmarklet-generator/). Alternatively, you can self-host or run locally:
1. Either clone the repository or download the source files.
2. Set up a local web server, or disable CORS in your browser if you plan to run the tool using the `file://` protocol.
3. Open `index.html` in a web browser.
4. Input your data (text, markdown, or a single link) and a password, then click "Generate Bookmarklet" to create an encrypted bookmarklet.
5. Copy the generated bookmarklet by clicking the "Generated Bookmarklet" button that appears, or right-click and copy manually. Alternatively, drag this button to your bookmarks bar.
6. To decrypt your bookmarklet, open it in your browser and input your password.
## Constraints
Since this tool operates in an unsecured context from a data URL, the browser's ``crypto.subtle`` API cannot be used. Instead, [aes-lib-js](https://github.com/kyleruss/aes-lib-js) and [forge-sha256](https://github.com/brillout/forge-sha256) are utilized for data encryption and key derivation. These libraries were chosen because they were the smallest (non-gzipped) implementations I could find.
Bookmark size limitations vary across browsers, with Firefox (version 112) having a maximum of 64KB. Chrome and Edge do not appear to have this limitation. The minimum data size for a bookmarklet is approximately 39KB, allowing for encryption of 25KB (minus base64 encoding overhead) when size restricted.
To insert binary encrypted data into a data URL, it has to go through base64 encoding twice. The first round of encoding converts the binary data to a string for the bookmarklet template, while the second round is for creating a data URL from the full page, which increases its size by about 1.8 times. If compression is utilized, there will be an extra step of base64 encoding before the data gets encrypted. However, this added overhead is considered when deciding to use compression.
## Dependencies
Dependencies and their licenses are included in the ``lib`` directory.
- [aes-lib-js](https://github.com/kyleruss/aes-lib-js) for AES-256 in CBC mode.
- [Forge's SHA-256 implementation](https://github.com/brillout/forge-sha256) for key derivation and data integrity verification.
- [fflate](https://github.com/101arrowz/fflate) for compression on the generator side.
- [tiny-inflate](https://github.com/foliojs/tiny-inflate) for decompression on the bookmarklet side.
- [terser](https://github.com/terser/terser) for JavaScript minification during generation.
- [Snarkdown](https://github.com/developit/snarkdown) for Markdown parsing.
- [tailwindcss](https://github.com/tailwindlabs/tailwindcss) for generator styling.
## License
This open-source project is available under the [MIT License](LICENSE).
| 🔖 Small tool to generate self contained bookmarklets containing your encrypted link or data. | bookmarklet,bookmarklet-generator,encryption,javascript,webapp,compression | 2023-05-08T07:02:15Z | 2024-05-18T16:05:21Z | null | 1 | 0 | 17 | 0 | 0 | 2 | null | MIT | JavaScript |
omar1Mayallo/Practical-Javascript | main | # What is This Repo ?
In this repo I upgrade my level in Javascript by know what, why and how for all things about Javascript.
## Folder Structure
In each folder, I will deal with a specific topic in the Javascript, and I will add a readme file to each folder to explain the content of the folder and also contain the resources that I used to search for the information that will be in it.
| what, why, how about all things about JavaScript. | asynchronous-programming,javascript,async-await,promises,destructuring,es6,spread-operator,template-literals,closure,object-oriented-programming | 2023-05-09T09:26:17Z | 2023-07-19T18:21:34Z | null | 1 | 0 | 28 | 0 | 0 | 2 | null | null | JavaScript |
j0k3rD/cheatopia | main | <h1 align="center">CheatopIA 🤖</h1>
<h3 align='center'>Soon in stores!</h3>
<p align="center">
</br>
<!-- <a href="https://chrome.google.com/webstore/detail/"> -->
<picture>
<source srcset="https://i.imgur.com/XBIE9pk.png" media="(prefers-color-scheme: dark)">
<img height="58" src="https://i.imgur.com/oGxig2F.png" alt="Chrome Web Store"></picture></a>
<!-- <a href="https://addons.mozilla.org/firefox/addon/"> -->
<picture>
<source srcset="https://i.imgur.com/ZluoP7T.png" media="(prefers-color-scheme: dark)">
<img height="58" src="https://i.imgur.com/4PobQqE.png" alt="Firefox add-ons"></picture></a>
<!-- <a href="https://microsoftedge.microsoft.com/addons/detail/"> -->
<picture>
<source srcset="https://i.imgur.com/Jog9cQP.png" media="(prefers-color-scheme: dark)">
<img height="58" src="https://i.imgur.com/aiprUt8.png" alt="Microsoft Store"></picture></a>
<!-- <a href="https://addons.opera.com/extensions/details/"> -->
<picture>
<source srcset="https://i.imgur.com/ziehy0f.png" media="(prefers-color-scheme: dark)">
<img height="58" src="https://i.imgur.com/ytVATu0.png" alt="Opera add-ons"></picture></a>
</br></br>
</p>
Welcome to CheatopIA, a Google Chrome extension that allows you to quickly access cheat sheets for various programming languages and tools. With CheatopIA, you can easily find the syntax and usage of a command or function without ever leaving your current tab.
CheatopIA uses [OpenAI](https://openai.com/) generative models to provide users with cheat sheets. (You need to use your [OpenAI API Key](https://platform.openai.com/account/api-keys)).
## Features
- Access cheat sheets for various programming languages and tools
- Search for specific commands or functions
- Save your favorite cheat sheets for quick access
- Customize the appearance of the extension
## Installation
To install CheatopIA, follow these steps:
1. Go to [CheatopIA repository](https://github.com/j0k3rD/cheatopia).
2. Click on the green "Code" button and select "Download ZIP".
3. Extract the ZIP file to a folder on your computer.
4. Open Google Chrome and go to the Extensions page (chrome://extensions/).
5. Enable Developer mode by toggling the switch in the top right corner.
6. Click "Load Unpacked" and select the folder where you extracted the ZIP file.
7. Click on the extension and copy your OpenAI API Key.
8. Start looking for your commands!
## Usage
To use the CheatopIA, select the text you want to search for and press 'Ctrl+C' to start the search. In a few seconds the response generated by the [ChatGPT](chat.openai.com) model will appear at the bottom of your tab!
## Contributing
If you want to contribute to the CheatopIA, please fork the repository and submit a pull request. We welcome contributions of all kinds, including bug fixes, new features, and improvements to existing features. 😉
Also don't forget to rate the project if it was helpful! 🌟
## Credits
CheatopIA was created by [j0k3rD](https://github.com/j0k3rD).
## License
Copyright (c) 2022-2023 Aaron Moya
This software is released under the terms of the MIT License.
See the [LICENSE](LICENSE) file for further information.
| Extension for Chrome with OpenAI | chatgpt,chrome-extension,javascript,openai-api | 2023-05-03T21:43:24Z | 2024-05-20T21:10:38Z | null | 1 | 0 | 20 | 0 | 0 | 2 | null | MIT | JavaScript |
lack21/Intro-Section-With-Dropdown-Navigation | main | # Intro-Section-With-Dropdown-Navigation
Tools Used :
• HTML
• SCSS
• JavaScript

Link : https://lack21.github.io/Intro-Section-With-Dropdown-Navigation/
| Design Project | html,javascript,scss | 2023-04-30T10:29:07Z | 2023-04-30T10:32:16Z | null | 1 | 0 | 2 | 0 | 0 | 2 | null | null | SCSS |
mrcbq/awesome-books-es6 | main | <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](#deployment)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [❓ FAQ (OPTIONAL)](#faq)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
# 📖 Awesome Books <a name="about-project"></a>
**Awesome Books** is a Books list web application
This project is a basic website that allows users to add books to a list. The books list is store locally. So you can close your browser and when you open it again you will still have you books list.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>Client</summary>
<ul>
<li><a href="https://HTML.org/">HTML</a></li>
<li><a href="https://css.org/">CSS</a></li>
<li><a href="https://javascript.org/">JavaScript</a></li>
</ul>
</details>
<!-- <details>
<summary>Server</summary>
<ul>
<li><a href="https://expressjs.com/">CSS</a></li>
</ul>
</details>
<details>
<summary>Database</summary>
<ul>
<li><a href="https://www.postgresql.org/">JavaScript</a></li>
</ul>
</details> -->
<!-- Features -->
### Key Features <a name="key-features"></a>
- **Use local Storage**
- **Save a list of books**
- **Allow eliminate one selected Book**
<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://mrcbq.github.io/awesome-books-es6/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- GETTING STARTED -->
## 💻 Getting Started <a name="getting-started"></a>
To get a local copy up and running, follow these steps.
### Prerequisites
In order to run this project you need:
* Only clone the repo and run in your local
### Setup
Clone this repository to your desired folder:
https://github.com/mrcbq/awesome-books-es6.git
### Install
<!-- Install this project with: -->
Clone this repository to your desired folder:
https://github.com/mrcbq/awesome-books-es6.git
### Usage
To run the project, execute the following command:
git clone https://github.com/mrcbq/awesome-books-es6.git
### Run tests
To run tests, run the following command:
No implemented yet.
### Deployment
You can deploy this project using:
GH Pages, publish the branch in git Hub pages
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 **Author1**
- GitHub: [@mrcbq](https://github.com/mrcbq)
- Twitter: [@twitterhandle](https://twitter.com/twitterhandle)
- LinkedIn: [LinkedIn](https://linkedin.com/in/linkedinhandle)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- [ ] **Use Classes**
- [ ] **Add Navigation**
- [ ] **Add Luxor library**
<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 like this project...
Please give a ⭐ to the repo and follow us
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank Microverse
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FAQ (optional) -->
<!-- ## ❓ FAQ (OPTIONAL) <a name="faq"></a>
> Add at least 2 questions new developers would ask when they decide to use your project.
- **[Question_1]**
- [Answer_1]
- **[Question_2]**
- [Answer_2]
<p align="right">(<a href="#readme-top">back to top</a>)</p> -->
<!-- LICENSE -->
## 📝 License <a name="license"></a>
This project is [MIT](./LICENSE) 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> | Library web app with JS vanilla, save you books in the Local Storage, permits search and remove books from your list of awesome books. Built with webpack using luxon library and ES6 features. | javascript,localstorage,luxonjs,webpack | 2023-05-01T17:24:16Z | 2023-05-02T01:07:02Z | null | 1 | 1 | 10 | 0 | 0 | 2 | null | MIT | JavaScript |
Manoaraujo/tiro-ao-alvo | master |
# Tiro ao alvo 2.0
Esse joguinho foi desenvolvido a partir de um exercicio do curso ONE(Oracle Next Education) e #alura.
O exercício original consistia de um alvo que surgia aleatoriamente na tela e quando o jogador clicava no centro do mesmo aparecia um alerta em tela informando que o mesmo havia acertado.
Na versão 2.0 trabalhado com JavaScript, Html e Css implementei varias novas funcionalidades, como:
* Uma nova identidade visual que remete aos jogos das primeiras gerações de videogame;
* Um campo onde o jogador pode escrever seu nome e agora sua quantidade de acertos é exibida como pontuação na tela;
* Uma área que contem o ranking dos últimos jogadores para poder comparar seu desempenho com o desempenho dos outros participantes;
* Um timer para definir o tempo de jogo;
* Um botão deslizante para mudar a dificuldade do desafio;
* Uma caixa de alerta personalizada a cada inicio e fim de partida.
* Um cursor personalizado em formato de mira.
https://manoaraujo.github.io/tiro-ao-alvo/
| Joguinho de tiro ao alvo feito a partir da ideia básica de um exercício do curso ONE (Oracle Next Education). | alura,css,html,javascript,one,oracle | 2023-05-05T00:40:24Z | 2023-05-19T02:39:16Z | 2023-05-19T02:17:35Z | 1 | 0 | 21 | 0 | 0 | 2 | null | null | CSS |
boniface193/bookstore | develop | <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)
- [💻 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 -->
# 📖 [Book-Store] <a name="about-project"></a>
**Book Store** Book store is a website to keep and store books. It is an app that allows users to make updates on there book.
## 🛠 [Built With] <a name="built-with">Create React App</a>
### Tech Stack <a name="tech-stack"></a>
> Describe the tech stack and include only the relevant sections that apply to your project.
<details>
jsx
</details>
<details>
css
</details>
<details>
react js
</details>
### Key Features <a name="key-features"></a>
Display a list of books
Add a book
Remove a selected book
- **Project setup with Create React App**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 💻 Getting Started <a name="getting-started"></a>
Try to have these in your local machine
- Git and GitHub
- VS Code or any code editor
### Prerequisites
In order to run this project you need
- A web browser
- Code editor
### Setup
Clone this repository to your desired folder:
git clone https://github.com/boniface193/bookstore.git
### Install
Install this project using the cloned repo or download and use the files to your local machine.
### Usage
- Clone the repository first
- Commnads to Run:
- npm install
- npm start
### Run tests
- tests are included using Jest framework
- commands to run: npm run test
### Deployment <a name="triangular_flag_on_post-deployment">triangular_flag_on_post-deployment</a>
You can deploy this project through Github Pages
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 **Ikechukwu**
- GitHub: [@boniface193](https://github.com/boniface193)
- Twitter: [@bidtechnologies](https://twitter.com/bidtechnologies)
- LinkedIn: [boniface-ikechukwu](https://www.linkedin.com/in/boniface-ikechukwu/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
- [ ] **Changes will be made as comming project requirement.**
<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>
## ⭐️ Show your support <a name="support"></a>
If you like this project give a star to this repositiory.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🙏 Acknowledgments <a name="acknowledgements"></a>
- I would also like to thank Microverse for the guidance they made all the way up to this point.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ❓ FAQ <a name="faq"></a>
- **Is it allowed to copy the contents of this project and use it for personal use?**
- This project is free for copying and reusing in any way you like.
## 📝 License <a name="license"></a>
This project is [MIT](./MIT.md) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| A rest API that store books based on category, book Author, and title on a real time. react.js | css3,html5,javascript,reactjs | 2023-05-05T06:48:37Z | 2023-08-22T09:51:14Z | null | 1 | 12 | 33 | 0 | 0 | 2 | null | null | JavaScript |
AleWaweru/TODO-LIST | main | <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)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
# 📖<a>TODO-LIST</a>
<details>
<summary>Client</summary>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **Add your list section**
- **task section**
- **clear button section**
- **unit testing**
<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.
- N/A
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- GETTING STARTED -->
## 💻 Getting Started <a name="getting-started"></a>
To get a local copy up and running, follow these steps.
### Prerequisites
In order to run this project you need:
Example command:
```sh
use a browser
```
### Setup
Clone this repository to your desired folder:
Example commands:
```sh
cd todo-list
git git@github.com:AleWaweru/TODO-LIST.git
```
### Install
Install this project with:
Example command:
```sh
no installations required
```
### Usage
To run the project, execute the following command:
Example command:
```sh
not required
```
### Run tests
To run tests, run the following command:
Example command:
```sh
not required
```
### Deployment
You can deploy this project using:
not yet ready
Example:
```sh
not required
```
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 **Author1**
- GitHub: [@githubhandle](https://github.com/AleWaweru/My-Portfolio)
- Twitter: [@twitterhandle](https://twitter.com/ngashalex)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/alex-waweru-2b2701180/)
👤 **Author2**
- GitHub: [@githubhandle](https://github.com/wolterbwambale)
- Twitter: [@twitterhandle](https://twitter.com/BwambaleWolter)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/bwambale-benny-wolter-a9284925a/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- [ ] **SIDEBAR SECTIONS**
- [ ] **NAVBAR SECTIONS**
- [ ] **FOOTER SECTIONS**
- [ ] **LIVE CHAT SECTION**
<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 like this project you can leave a star to it.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank Microverse for giving us an opportunity to learn more about Front-End Development.
I would also like to thank my coding partner Abenezer for the support toward the completion of this project.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
what technology did I use to build the project?
where is the source code for the project?
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LICENSE -->
## 📝 License <a name="license"></a>
This project is [MIT](./LICENSE) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| This project consists of a to-do list, where a user can save all that they want to do on a particular day. It has functionalities to add, delete and edit the list. The project is built using JAVASCRIPT, CSS, and HTML. | css,javascript,html5 | 2023-05-09T09:16:47Z | 2023-05-18T16:13:04Z | null | 2 | 5 | 34 | 2 | 0 | 2 | null | MIT | JavaScript |
zm-cttae/dom-inline-style-filter | main | # `dom-inline-style-filter`
<p align="center"><img src="https://github.com/zm-cttae/dom-inline-style-filter/raw/dddefaf96c39378bf00a335bac76fc3839fd0a4e/assets/icon.png" height="128" /></p>
<p align="center"><a href="https://github.com/zm-cttae/dom-inline-style-filter" target="_blank"><img src="https://img.shields.io/github/v/release/zm-cttae/dom-inline-style-filter.svg?style=flat-square&label=Release&logo=github&logoColor=cacde2&labelColor=2c2c32&color=2196f3" /></a> <a href="https://www.npmjs.com/package/dom-inline-style-filter" target="_blank"><img src="https://img.shields.io/npm/dw/dom-inline-style-filter?style=flat-square&label=Downloads&logo=npm&logoColor=cacde2&labelColor=2c2c32&color=2196f3" /></a> <a href="https://github.com/vsce-toolroom/vscode-beautify/pipelines" target="_blank"><img src="https://img.shields.io/github/actions/workflow/status/zm-cttae/dom-inline-style-filter/CI.svg?style=flat-square&label =CI&logo=github&logoColor=cacde2&labelColor=2c2c32&color=2196f3" /></a></p>
`dom-inline-style-filter` library filters inline style declarations for a standalone DOM element tree by computed effect.
- As web developers, we would like elements that ship only with inline styling to be light so that they can be included in NPM packages.
- A main use case of this is SVG screenshots of HTML elements.
- Even after a filter algorithm to [filter out user agent styling when inlining the style](https://github.com/1904labs/dom-to-image-more/issues/70), there is some way to go with data size.
## Usage
### `dominlinestylefilter(node)`
**Parameter:** `node` - a `HTMLElement` with all style rules embedded as inline style attributes or `<style>` tags.
**Returns:** a `Promise` that resolves to `node`. Within `node`, all inline styling has been filtered to the minimum declarations that produce the same computed style.
### `dominlinestylefilter.sync(node)`
Synchronous version. Returns `node` when the styling compression is completed.
## Optimizations
1. **When traversing DOM tree of `node`, group nodes by descending node depth.**
CSS inheritance is computed on the DOM tree via preorder traversal and is additive-cumulative (increases styling data).
For the filter op which is subtractive, we want to traverse the tree in the opposite direction.
The algorithm sorts elements in the `node` tree by descending node depth. (This is known as reverse level order traversal.)
This gives us a 30% to 40% speed boost. This also ensures declarations are only removed when they really can be inherited.
2. **When filtering each inline style declaration by computed effect, go for the most hyphenated properties first.**
In CSS, shorthands consistently have less hyphens than their longhand.
We want to filter out scenarios where a CSS property matches their shorthand, e.g. `block-size` -> `height` or `border-color` -> `border`.
The algorithm does a radix sort with bitmasks for standard, custom and vendored proprties, then subsorts by descending hyphen count.
In tests this filtered another 50% of inline styling. We also get a 20-40% speed boost because we're not setting as many properties back.
## Performance
The underlying algorithm was determined to be a high-pass multi-pass - $N \approx 4$ - deterministic compression in two modes.
The data was collected from manual testing on the output of the `domtoimage.toSvg` function in the `dom-to-image-more` NPM package.
### Large file inputs
$O(log(N))$ growth for inputs at large filesizes $|F| >> 1e6 \text{ bytes}$.
| Wikipedia article demo | Value |
| :------------------------ | :------------------------------------- |
| Number of nodes | 5894 nodes |
| Initial declaration count | 128581 (21.8 declarations / node) |
| Pre-compression bytes | 3.77mb |
| Reductions | [2924992, 257746, 87120, 0] |
| Processing time | 9642.8ms (1.64 ms/node) |
| Total reduction | 3.27mb |
| Output declaration count | 15853 (2.69 / node) |
| Post-compression bytes | 504.8kb |
| Compression quotients | [0.2252, 0.6967, 0.8525, 1] |
| Total quotient (compound) | `0.1337 ` |
| Decay formula | $1-exp(-8 / 5 \cdot N)$ |
### Graph
<img src="./assets/236925669-a3461c94-c1dd-4d42-9bd1-55484c084614.png" width="539px" />
### Small file results
$O(c \cdot N), \space c \space \approx \space 4$ growth for inputs at small filesizes $|F| << 1e6\space\text{ bytes}$.
| Code screenshot demo | Value |
| :------------------------ | :------------------------------------- |
| Number of nodes | 468 nodes |
| Initial declaration count | 11397 (24.4 declarations / node) |
| Pre-compression bytes | 373608b |
| Reductions | [292044, 34152, 0] |
| Processing time | 382ms (0.8 ms / node) |
| Total reduction | 326196b |
| Post-compression bytes | 47412b |
| Output declaration count | 1777 (3.78 / node) |
| Compression quotients | [0.892, 0.989, 0.999, 1] |
| Total quotient (compound) | `0.1269 ` |
| Decay formula | $1-exp(-9 / 4 \cdot N)$ |
<img src="./assets/236925730-e880fabe-426f-491e-a95f-989536c9e3bc.png" width="539px" />
| High-pass data compression filter for inline styling (embedded CSS). | archiving,canvas,dataurl,dom,image,inkscape,javascript,screenshot,svg,web | 2023-05-09T12:58:18Z | 2023-06-14T15:54:08Z | 2023-06-14T15:54:08Z | 1 | 0 | 13 | 2 | 0 | 2 | null | null | JavaScript |
Tgentil/Web-Full-Stack---Hands-on | master | # Web Full Stack - project 1
[](https://github.com/Tgentil)
Este é o primeiro projeto da aula do extensão do curso de Web Full Stack/Hands-on da Universidade do Sul de Santa Catarina (Unisul), ministrado pelo professor [Jean Paul Lopes](https://github.com/jeanpaullopes). O código base para o projeto pode ser encontrado em: https://github.com/jeanpaullopes/extensao23_1_aula1
## Interface


## Configuração do Ambiente
Para configurar o ambiente, siga os passos abaixo:
1. Instale o gerenciador de pacotes [Node.js](https://nodejs.org/) que já inclui o npm, o gerenciador de pacotes padrão para o Node.js.
2. Instale o gerenciador de pacotes [yarn](https://yarnpkg.com/) com o comando:
```bash
npm i -g yarn
```
3. Instale o framework [Quasar CLI](https://quasar.dev/start/quasar-cli) e o Vue.js com os comandos:
```bash
npm install -g @quasar/cli
npm install -g vue
```
Com estes passos, você já pode prosseguir para instalar as dependências do projeto e executar os comandos descritos no restante do README.
## Instalando as dependências
```bash
yarn
# ou
npm install
```
### Iniciando a aplicação em modo de desenvolvimento (hot-code reloading, error reporting, etc.)
```bash
quasar dev
```
ou
```bash
yarn quasar dev
```
ou
```bash
npm run dev
```
Todos os comandos acima iniciam a aplicação em modo de desenvolvimento.
### Verificando os arquivos
```bash
yarn lint
# ou
npm run lint
```
### Formatando os arquivos
```bash
yarn format
# ou
npm run format
```
### Compilando a aplicação para produção
```bash
quasar build
```
### Personalizando a configuração
Veja [Configurando o quasar.config.js](https://v2.quasar.dev/quasar-cli-webpack/quasar-config-js).
| Este é o primeiro projeto da aula do extensão do curso de Web Full Stack/Hands-on da Universidade do Sul de Santa Catarina (Unisul), ministrado pelo professor Jean Paul Lopes. | course,javascript,nodejs,vue | 2023-04-28T14:33:18Z | 2023-05-26T12:04:33Z | null | 1 | 0 | 13 | 0 | 0 | 2 | null | null | JavaScript |
AlineGuiseline/burger-queen | main | # Burger Queen
Quinto projeto criado durante o bootcamp da Laboratória. O projeto é uma plataforma de apoio a hamburguerias onde as principais funcionalidades consistem em:
1. Garçom tem a possibilidade de criar pedidos personalizados de acordo com o cardápio disponibilizado por administradores.
2. Cozinha recebe em tempo real os pedidos que garçom retira no salão e podem marcar os pedidos como prontos para entrega.
3. Administradores podem alterar produtos disponíveis no cardápio, além de gerenciar os acessos de demais colaboradores.
🔗[Clique aqui para acessar](https://burger-queen-three.vercel.app/)
| Usuário | Senha |
| ------------- | ------------- |
| burger@waiter.com | senha123 |
| burger@chef.com | senha123 |
| burger@admin.com | senha123 |
## Índice
[1. Histórias de usuários](#1-histórias-de-usuários)
[2. Rodando o arquivo localmente](#2-rodando-o-arquivo-localmente)
[3. Primeira tela do garçom: Cardápio](#3-primeira-tela-do-garçom-cardápio)
[4. Segunda tela do garçom: Pedidos prontos para envio](#4-segunda-tela-do-garçom-pedidos-prontos-para-envio)
[5. Tela do chefe de cozinha](#5-tela-do-chefe-de-cozinha)
[6. Primeira tela do administrador: Produtos](#6-primeira-tela-do-administrador-produtos)
[7. Segunda tela do administrador: Funcionários](#7-segunda-tela-do-administrador-funcionários)
[8. Mensagens de erros](#8-mensagens-de-erros)
[9. Considerações técnicas](#9-considerações-técnicas)
[10. Contatos](#10-contatos)
## 1. Histórias de usuários
O projeto foi guiado seguindo 06 histórias de usuários, sendo elas:
1. **Garçom/Garçonete** deve poder entrar no sistema, caso o admin já lhe tenha dado as credenciais.
2. **Garçom/Garçonete** deve ser capaz de anotar o pedido do cliente.
3. **Chefe de cozinha** deve ver os pedidos.
4. **Garçom/Garçonete** deve ver os pedidos prontos para servir.
5. **Administrador(a) de loja** deve administrar seus funcionários.
6. **Administrador(a)** de loja deve administrar os produtos.
## 2. Rodando o arquivo localmente
A API responsável pelos dados da hamburgueria estão hospedados no Vercel, mas, caso você prefira rodá-la localmente, sugiro que siga os passos abaixo:
1. Faça o clone do [mock da API](https://github.com/AlineGuiseline/burger-queen-api-mock) no seu computador
2. Abra o arquivo no VS Code
3. Abra o terminal e digite *npm install*
4. Ainda no terminal, execute o mock com o comando *npm start*
5. Será aberta uma porta (possivelmente 8080)
6. Retorne ao arquivo burger-queen, que contém o código do projeto em si
7. Abra a pasta **src** e, depois disso, a subpasta **api**
8. Abra os arquivos **orders**, **products** e **users** e, dentro de cada um deles, substitua o link da variável *API_URL* por 'http://localhost:número-da-porta'
**ex.: const API_URL = 'http://localhost:8080'**
9. Salve as alterações feitas e rode o projeto, também no terminal, com o comando npm start
**Importante:** Nâo se esqueça de manter a API rodando durante todo o tempo de uso do site Burger Queen (recomendamos que rode a API antes de rodar o site, para evitar qualquer tipo de conflito)
## 3. Primeira tela do garçom: Cardápio
Para otimizar o espaço e não cansar a mente atarefada do garçom com excesso de informação, a primeira visão de sua tela é dos filtros de produtos disponíveis para consumo, junto do espaço para calcular os valores e, efetivamente, fazer o pedido. Ao clicar em cada filtro, as opções correspondentes aparecerão e, ao clicar no botão de mais(+) em cada uma delas, os pedidos serão adicionados ao resumo na lateral direita. É possível fazer o controle da quantidade tanto pelo botão de mais(+) do cardápio quanto pelos botões de mais(+) e menos(-) do resumo. Após inserir o nome do cliente, o pedido é enviado à cozinha e o resumo é zerado novamente.

## 4. Segunda tela do garçom: Pedidos prontos para envio
Ao alternar para a aba de "Pedidos prontos", o garçom pode ver os pedidos que foram marcados como "prontos para envio" pelo chef de cozinha, bem como há quanto tempo eles foram feitos, e pode marcá-los como "enviados", sinalizando que eles já foram entregues à mesa - ao fazer isso, o pedido desaparece da página, também para evitar o excesso de informações.

## 5. Tela do chefe de cozinha
Ao entrar em sua tela, o chefe de cozinha pode ver todos os pedidos que foram feitos pelo garçom, podendo ver, também, há quanto tempo eles foram feitos, e pode marcá-los como "prontos para envio", sinalizando que já foram preparados - ao fazer isso, o pedido desaparece da página.

## 6. Primeira tela do administrador: Produtos
Ao entrar em sua tela, o administrador depara-se com 2 botões: Produtos e Funcionários. Selecionando a opção "Produtos", é possível ver todos os produtos disponíveis à hamburgeria, sendo possível editá-los, excluí-los e também cadastrar novos produtos.

## 7. Segunda tela do administrador: Funcionários
Retornando à tela principal e escolhendo a opção "Funcionários", vemos todos os funcionários contratados pela hamburgueria e também podemos editá-los, excluí-los e cadastrar novos.

## 8. Mensagens de erros
Há mensagens de erros em 3 telas, sendo elas:
- **Tela de login:** caso o usuário use um e-mail ou senha incorretos, seu login será barrado e uma mensagem de erro aparecerá acima do botão "Entrar".
- **Tela do garçom:** caso o garçom tente fazer um pedido sem inserir o nome do cliente ou sem adicionar nenhum pedido, uma mensagem de erro aparecerá no topo da tela.
- **Telas do administrador:** caso o administrador tente cadastrar um novo produto ou funcionário sem inserir nenhuma informação ou deixando algum campo em branco, uma mensagem de erro aparecerá no topo da tela.

## 9. Considerações técnicas
**Linguagens/bibliotecas utilizadas:** JavaScript | React | HTML5 | CSS3
**Programas/Plataformas utilizadas:** VSCode (codificação) | Figma (protótipos das páginas) | Trello (planejamento) | Vercel (hospedagem do projeto e da API) | Insomnia (auxílio às rotas) | fetch (requisições HTTP) | Testing Library (testagem das funções)
## 10. Contatos
**Aline Guiseline** 💙
[LinkedIn](https://www.linkedin.com/in/alineguiseline/)
**Stella Zen** 💙
[LinkedIn](https://www.linkedin.com/in/stella-zen-690569197/)
| Quinto projeto do bootcamp da Laboratória; desenvolvimento de uma interface para gerenciar uma hamburgueria (telas do garçom, chefe e administrador). A aplicação foi desenvolvida com React e consumo de API. Desenvolvido em collab com @Stellazen | css,javascript,jest,react,unit-testing,ux-ui | 2023-05-16T20:48:36Z | 2023-07-16T12:34:32Z | null | 2 | 73 | 165 | 0 | 1 | 2 | null | null | JavaScript |
Doron-Breska/mern-project-succulents | new-testing | null | MERN social app for succulents enthusiasts. | claudinary,css,express,javascript,jwt,mongodb,nodejs,openai,react,rest-api | 2023-04-26T08:24:22Z | 2024-02-04T17:14:27Z | null | 1 | 1 | 94 | 0 | 0 | 2 | null | null | TypeScript |
JeonggonCho/Today_Cafe | main | null | ☕ Django를 이용하여 제작한 '카페 공유 커뮤니티 서비스'입니다. | bootstrap,django,python,cloudtype,team-project,javascript | 2023-04-27T00:56:41Z | 2024-02-12T09:17:14Z | null | 4 | 30 | 127 | 0 | 0 | 2 | null | null | HTML |
sahu-neha/Tender-Management-System | main | > # Tender Management System

> ## Domain Description
The Tender Management System is a web-based application designed for companies to manage tenders, empanelled vendors, and bids. The system has two types of users: administrators and vendors.
<!-- Administrators can create new tenders, view all the vendors and tenders, and assign tenders to vendors. Vendors can view current tenders, place bids, view their bid history, and search for tenders by tender id or date range. -->
<!--
> ## Domain Description
Whenever a company requires a service/merchandise, a tender is floated. The company maintains an empaneled list of Vendors. An empaneled vendor can only bid for a tender. Every vendor can bid only once against each tender. Against each tender, there may be bids from several vendors. The company will then select the most suitable bid and places the order with that vendor.
-->
> ## REST A.P.I.
The API is designed to provide a wide range of functionalities for managing tenders, vendors, and bids along with different functionalities of admin and its information.
It offers features for browsing for tenders, including the ability to place a bid for any tender against each other, to the vendors. It also supports CRUD operations for managing the data.
<!-- The application also includes user and admin validation and authentication. -->
> ## Users in the System
1. Administrator
2. Vendor
> ## Administrator Functions
1. View all vendors.
2. Create new tenders.
3. View All the Tenders.
4. Update Existing Tender's Details.
5. Delete A Tender.
6. View All the Bids of a tender.
7. Assign tender to a vendor.
8. Deactivate a vendor.
9. Bar particular vendors from participating in the tender bid.
> ## Vendor Functions
1. Login with their account.
2. Update his account details and change password.
3. View all the current Tenders.
4. Place a Bid against a Tender.
5. View his own Bid History with bid status.
6. Search for a tender by tender id or date range.
> ## Tech Stack
- JAVA
- SPRING
- SPRINGBOOT
- HIBERNATE
- MAVEN
- J.D.B.C
- MYSQL
- JPQL
- POSTMAN
- HTML
- CSS
- JAVASCRIPT
> ## Dependencies
- SPRING DATA JPA
- SPRING BOOT DEVTOOLS
- SPRING WEB
- HIBERNATE
- MYSQL DRIVER
- VALIDATION
- LOMBOK
- SWAGGER UI
> ## Setting & Installation
Install the Spring Tools Suite
```bash
https://spring.io/tools
```
Install MySQL Community Server
```bash
https://dev.mysql.com/downloads/mysql/
```
Clone the Repository
```bash
git clone hhttps://github.com/sahu-neha/clever-flesh-3840.git
```
Open MySQL Server
```bash
Create a New Database in SQL: "TMS"
```
> ## Run Locally
Go to the Project Directory
```bash
Open the Tender-Management-System Folder with S.T.S
```
Go to **src/main/resources > application.properties** & change your username and password (MySQL server username & password)
```bash
spring.datasource.username="username"
spring.datasource.password="password"
```
To change the **Server Port**
```bash
server.port=8080
```
Go to **com.masai package > TenderManagementSystemApplication.java**
```bash
Run as Spring Boot App
```
Go to **Front-end > Html > index.html** on VS Code
```bash
Open with Live Server
```
Open the following URL for Swagger-UI
```bash
http://localhost:8080/swagger-ui/
```
> ## URL
```bash
http://localhost:8080
```
> ## ER Diagram

<hr>
> ## Landing Page

> ## Login Page
<!--  -->

> ## Admin can create a new Tender

> ## Admin can view list of all Tenders

> ## Admin can view list of all Vendors

> ## Admin can view list of all the bids for a particular tender

<!-- -->
> ## Vendor can create a new account by signing up
<!--  -->

> ## Visit Vendor Portal

> ## Vendor can view all the Tenders available for bidding

> ## Vendor can place a bid against any Tender

> ## Vendor can view their bidding history

<hr>
> ## Contributors
#### Neha Sahu
> Github: [sahu-neha](https://github.com/sahu-neha)
(Teamlead)
> => created the controller of Admin.
> => Implemented the service methods of Admin.
> => Implemented the UI/Front-end for Admin Panel, Landing Page.
#### Hoshiyar Singh Jyani
> Github: [hoshiyarjyani](https://github.com/hoshiyarjyani)
> => Created controller of Vendor.
> => Implemented the service methods of Vendor.
> => Implemented the UI/Front-end for Vendor Portal.
#### Paras Jamwal
> Github: [ParasThakur199](https://github.com/ParasThakur199)
> => Created controller of User Log In, Bid.
> => Implemented the service methods of User Log In, Bid.
<!-- > ## Conclusion
The Tender Management System is an essential tool for companies that want to manage tenders efficiently. With this system, companies can easily manage tenders, empaneled vendors, and bids, making the tendering process more transparent and effective. -->
| The Tender Management System is a web-based application designed for companies to manage tenders, empanelled vendors, and bids. | css3,hibernate-jpa,html5,java,javascript,maven,mysql-database,postman,spring-boot | 2023-04-29T11:26:21Z | 2023-05-10T21:52:22Z | null | 3 | 57 | 141 | 0 | 3 | 2 | null | null | Java |
heybran/breeze-router | main | # Breeze Router
A lightweight, zero-dependency client-side router for single page applications (SPAs).
**Note: This project is not production ready and is still in development.**
## Installation
To use this router in your project, install the router using npm:
```bash
npm install breeze-router
```
## Usage
To use the router in your application, you need to import `BreezeRouter` and define routes and handlers using the `Router` class:
```javascript
import BeezeRouter from 'breeze-router';
// Create a new `BreezeRouter` instance.
const ROUTER = new BreezeRouter();
// Define routes using the `add()` method.
ROUTER.add('/', async () => {
// Handle the root route
});
ROUTER.add('/about', async () => {
// Handle the about route
});
ROUTER.add('/users/:userId', async ({ route, params }) => {
// Handle the users route with a dynamic parameter :userId
const userId = params.userId;
});
ROUTER.add("/users/:username/posts/:postId", async ({ route, params }) => {
// Handle the posts route with a dynamic parameter :username and :userId
const { username, postId } = params;
});
// Call the `start` method to start the router.
ROUTER.start();
```
## Util functions
### `toggleParam(this, 1)`
```html
<input type="checkbox" name="freelance" onclick="window.ROUTER.toggleParam(this, 1)">
```
If checked, then it will append search params to url like this: `localhost/users?freelance=1`, if you click checkbox again, it will remove that search param from url.
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
| A lightweight, zero-dependency client-side router for single page applications (SPAs). | javascript,router,spa | 2023-05-12T14:35:51Z | 2024-04-19T05:53:46Z | null | 1 | 3 | 40 | 0 | 0 | 2 | null | MIT | JavaScript |
secret-pommes/Curium | main | # Curium (DISCONTINUED)
https://github.com/secret-pommes/SwitchMP-Backend (aka Curium-V3) is a way better version, with MCP, Accounts, XMPP and more.
| A Fortnite backend made for Nintendo Switch (also working for other platforms) | backend,fortnite,javascript,nintendo,nintendo-switch,switch | 2023-04-29T18:19:57Z | 2023-12-14T22:11:09Z | null | 1 | 0 | 63 | 0 | 1 | 2 | null | null | JavaScript |
shubhamyv13/miniature-mountain-3002 | main |
<p align="center">
<img src="https://readme-typing-svg.demolab.com/?lines=Plant and Planters;&%20Code¢er=true&width=700&height=50&weight=800&size=35&duration=2000&pause=2000">
<img src="https://user-images.githubusercontent.com/73097560/115834477-dbab4500-a447-11eb-908a-139a6edaec5c.gif">
</p>
REST API for an Online Plant Nursery Platform that allows customers to view the list of plants, seeds, and planters.
The application also includes user and admin validation and authentication.
## 

## 
- JAVA
- SPRING
- SPRINGBOOT
- HIBERNATE
- MAVEN
- MYSQL
- JPQL
- HTML
- CSS
- JAVASCRIPT
## 
- SPRING DATA JPA
- SPRING BOOT DEVTOOLS
- SPRING WEB
- HIBERNATE
- MYSQL DRIVER
- VALIDATION
- LOMBOK
## 
Install the Spring Tools Suite
```bash
https://spring.io/tools
```
Install MySQL Community Server
```bash
https://dev.mysql.com/downloads/mysql/
```
Clone the Repository
```bash
git clone https://github.com/shubhamyv13/miniature-mountain-3002.git
```
Open MySQL Server
```bash
Create a New Database in SQL: "plant"
```
## Run Locally
Go to the Project Directory
```bas
Open the PlantAndPlanters Folder with S.T.S
```
Go to **src/main/resources > application.properties** & change your username and password (MySQL server username & password)
```bash
spring.datasource.username="username"
spring.datasource.password="password"
```
To change the **Server Port**
```bash
server.port=8888
```
Go to **com.masai package > PlantAndPlantersApplication.java**
```bash
Run as Spring Boot App
```
Open the following URL for Swagger-UI
```bash
http://localhost:8888/swagger-ui/
```
## 
- [Masai School](https://www.masaischool.com/)
| REST API for an Online Plant Nursery Platform that allows customers to view the list of plants, seeds, and planters. | css,hibernate,html,java,javascript,lombok,maven,mysql,spring,springboot | 2023-05-03T11:58:20Z | 2023-05-15T17:07:02Z | null | 6 | 24 | 60 | 4 | 3 | 2 | null | null | HTML |
perspective-community/perspective-viewer-example-plugin | main | # perspective-viewer-example-plugin
[](https://github.com/perspective-community/perspective-viewer-example-plugin/actions?query=workflow%3A%22Build+Status%22)
An example viewer plugin for perspective, using as much of the "standard" tooling as possible (to make it easier to incorporate into the project later on)
| An example viewer plugin for perspective, using as much of the "standard" tooling as possible (to make it easier to incorporate into the project later on) | dataviz,javascript,perspective | 2023-04-27T17:48:13Z | 2024-05-02T19:38:08Z | null | 1 | 73 | 125 | 1 | 0 | 2 | null | Apache-2.0 | JavaScript |
HydrologicEngineeringCenter/cwms-data-api-client-javascript | main | # CWMSjs
_CWMS Data API (CDA) client library created with OpenAPI generator in TypeScript for use with web browsers._
## Getting Started
* Install CWMSjs to your react project with:
`npm install cwmsjs --save`
(This will grab the latest)
* Import the API endpoint you wish to use:
* Avaiable endpoints are here (Classes ending in API): [Endpoints](https://hydrologicengineeringcenter.github.io/cwms-data-api-client-javascript/modules.html)
* At the top of your js/jsx/file type:
```javascript
import { TimeseriesAPI } from "cwmsjs"
```
* Then initialize the TimeseriesAPI with:
```javascript
const tsa = new TimeseriesAPI()
```
* Fetch timeseries data with:
```javascript
await ts_api.getCwmsDataTimeseries({
"office": "SWT",
"name": "KEYS.Elev.Inst.1Hour.0.Ccp-Rev",
})
.then((data) => {
console.log(data)
}).catch(e => {
console.log("My Error", e)
})
```
Documentation is available for both developers and new users:
* New Users : [Examples](https://hydrologicengineeringcenter.github.io/cwms-data-api-client-javascript/examples/)
* Advanced users : [Type Documentation / Developer Docs](https://hydrologicengineeringcenter.github.io/cwms-data-api-client-javascript/)
| A JavaScript wrapper for the CWMS Data API (CDA), a RESTful web service for managing water data. https://www.npmjs.com/package/cwmsjs The Documentation is the link below: | hec,javascript,rest-api,typescript,water-management,cdajs,cwms | 2023-04-28T19:27:13Z | 2024-05-07T21:28:32Z | null | 3 | 0 | 52 | 1 | 0 | 2 | null | null | TypeScript |
marcel099/rs-nlw-12-spacetime | main | <h1 align="center">
<img alt="A imagem contém um notebook e um smartphone com telas da aplicação" title="Banner da aplicação Be The Hero" src="./assets/screenshots/banner.png" />
</h1>
<h4 align="center">
Next Level Week #12 - Spacetime
</h4>
<div align="center">
<img src="https://img.shields.io/github/repo-size/marcel099/rs-nlw-12-spacetime.svg">
<img src="https://img.shields.io/github/last-commit/marcel099/rs-nlw-12-spacetime.svg">
<img src="https://img.shields.io/github/issues/marcel099/rs-nlw-12-spacetime.svg">
<img src="https://img.shields.io/github/issues-closed/marcel099/rs-nlw-12-spacetime.svg">
<img src="https://img.shields.io/github/license/marcel099/rs-nlw-12-spacetime.svg">
<img src="https://img.shields.io/github/stars/marcel099/rs-nlw-12-spacetime.svg?style=social">
</div>
* [Índice](#índice)
* [Sobre](#sobre)
* [Conceito do projeto](#conceito-do-projeto)
* [Tecnologias](#principais-tecnologias-utilizadas)
* [Instalação local](#instalação-local)
* [Créditos](#créditos)
* [Licença](#licença)
## Sobre
O projeto foi desenvolvido durante a décima segunda edição do evento Next Level Week proporcionado pela empresa [Rocketseat](https://rocketseat.com.br/). Baseou-se em um layout elaborado no Figma.
O sistema, desenvolvido em TypeScript, é composto de um servidor HTTP Node, um [site](https://spacetime.marcel099.vercel.app/) em React e um aplicativo móvel em React Native.
A opção por essas ferramentas foi realizada pela Rocketseat por acreditarem formar um conjunto de tecnologias poderoso ao permitir desenvolver desde o Back-End até o aplicativo móvel em uma só linguagem: o JavaScript. A escolha por TypeScript, um superset do JavaScript, foi realizada por acreditar trazer um aumento de confiabilidade de código.
### Conceito do projeto
O Spacetime é um sistema para recordação de memórias.
Tanto na versão web quanto na versão mobile, o usuário se cadastra no sistema utilizando login social com GitHub. Após se autenticar, o usuário pode adicionar textos e fotos a uma linha do tempo dedicada a acontecimentos marcantes da sua vida.
<div align="center">
<img alt="Página de gerenciamento das ocorrências da ONG" src="./assets/screenshots/home_screen_web.png" />
</div>
<div align="center">
<img title="Tela com lista de ocorrências" src="./assets/screenshots/home_screen_mobile.png" width="30%" />
<img title="Tela com detalhes de uma ocorrência" src="./assets/screenshots/new_memory_screen_mobile.png" width="30%" />
</div>
### Principais tecnologias utilizadas
O sistema foi desenvolvido em JavaScript. É composto de 3 partes:
- Back-End
- [Node.js](https://nodejs.org/en/)
- [Fastify](https://fastify.io/)
- [Zod](https://zod.dev/)
- [Prisma](https://www.prisma.io/)
- [PostgreSQL](https://www.postgresql.org/)
- Front-End Web
- [Next](https://nextjs.org/)
- [React](https://react.dev/)
- [Tailwind CSS](https://tailwindcss.com/)
- [Lucide](https://lucide.dev/)
- [JavaScript Cookie](https://www.npmjs.com/package/js-cookie)
- [Day.js](https://day.js.org/)
- Front-End Mobile
- [React Native](https://reactnative.dev/)
- [Expo](https://expo.dev/)
- [Expo Router](https://docs.expo.dev/routing/introduction/)
- [Expo Fonts](https://docs.expo.dev/develop/user-interface/fonts/)
- [Expo Auth Session](https://docs.expo.dev/versions/latest/sdk/auth-session/)
- [Expo Image Picker](https://docs.expo.dev/versions/latest/sdk/imagepicker/)
- [Expo Secure Store](https://docs.expo.dev/versions/latest/sdk/securestore/)
- [NativeWind](https://nativewind.dev/)
- [Day.js](https://day.js.org/)
Alguns pontos a destacar:
- Cada aplicação possui [ESLint](https://eslint.org/) configurado para padronização de código
- A autenticação do usuário baseia-se em login social com [GitHub OAuth](https://developer.github.com/v3/oauth/) e persistência da sessão com [JWT](https://jwt.io/)
- Validação de dados enviados ao servidor HTTP através da biblioteca [Zod](https://zod.dev/)
- A hospedagem de imagens de avatar de usuário é realizada no [ImgBB](https://pt-br.imgbb.com/)
- Seleção e upload de imagem armazenada no smartphone do usuário através da biblioteca [Expo Image Picker](https://docs.expo.dev/versions/latest/sdk/imagepicker/)
Se desejar explorar as rotas do servidor HTTP Node desenvolvido para esse sistema, poderá fazer isso através do [Insomnia](https://insomnia.rest/).
[](https://insomnia.rest/run/?label=NLW%20%2312%20-%20Spacetime&uri=https%3A%2F%2Fgithub.com%2Fmarcel099%2Frs-nlw-12-spacetime%2Fblob%2Fmain%2Fassets%2Finsomnia_collection.json)
## Instalação local
Passos para atingir isso podem ser conferidos <a href="./INSTALLATION.md">neste arquivo</a>.
## Créditos
Credito a elaboração do modelo do banner deste documento e do banner social ao autor desconhecido desta [postagem](https://mckups.com/pixel-4-and-pixelbook-go-mockup/) no site [Mckups](https://mckups.com). Foi adaptado por mim de acordo com as características deste projeto.
## Licença
Este projeto está sob a licença MIT. Para maiores detalhes acesse o <a href="./LICENSE.md">arquivo de licença</a>.
| O Spacetime é uma plataforma que permite criar uma linha do tempo com recordações de memórias. Foi desenvolvido na trilha Ignite da Next Level Week #12. | expo,fastify,javascript,nativewind,next,nlw-12,nlw-spacetime,node,react,react-native | 2023-05-16T11:58:20Z | 2023-08-18T20:52:14Z | null | 1 | 7 | 75 | 0 | 0 | 2 | null | MIT | TypeScript |
peterdtitan/metrics-app | dev | <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 Presentation](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [❓ FAQ (OPTIONAL)](#faq)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
# 📖 Metrics App <a name="about-project"></a>
**Metrics App** is an app designed to give each user an idea of what the air quality is like around supported cities of the world. It features a countries page with dynamic navigation to states and then cities within the country, before returning an info on the selected city. It makes use of the redux store to update the countries as well as the state and cities for each country. Data on the city is fetched on each render as the values are constantly changed.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
> The following tech stack was used to build this project:
<details>
<summary>Client</summary>
<ul>
<li><a href="https://javascript.com/">JavaScript</a></li>
<li><a href="https://react.com/">React</a></li>
<li><a href="https://tailwindcss.com/">Tailwind CSS</a></li>
</ul>
</details>
<details>
<summary>Cloud Functions</summary>
<ul>
<li><a href="https://www.iqair.com/air-pollution-data-api">Open AIR API</a></li>
</ul>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **View all countries on the homepage**
- **Select a country to view states and cities**
- **Show recently viewed countries on the homepage with a badge**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🚀 Live Demo Link <a name="live-demo"></a>
> View project demo on Render:
- [Live Link](https://metrics-app.onrender.com/)
- [Video Presentation](https://www.loom.com/share/ded06fb3da914ccabec519b06ec16bf8)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 💻 Getting Started <a name="getting-started"></a>
To get a local copy up and running, follow these steps.
### Prerequisites
In order to run this project you need:
```
npm
```
### Setup
Clone this repository to your desired folder:
```sh
cd my-folder
git clone https://github.com/peterdtitan/javascript-tv-app.git
```
### Install
Install this project with:
```
npm install
```
### Usage
To run the project, execute the following command:
```
npm start
```
### Run tests
To run tests using jest, run the following command:
```
npm test
```
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
> The following users authored this project codebase:
👤 **Author1**
- GitHub: [Peter Okorafor](https://github.com/peterdtitan)
- Twitter: [PeterDeTitan](https://twitter.com/PeterDeTitan)
- LinkedIn: [Peter OKorafor](https://linkedin.com/in/peterokorafor)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
> In the future, the following features will be considered:
- [ ] **Responsiveness for smaller devices**
- [ ] **More data on Air quality with detailed legends**
- [ ] **Embed light mode and dark mode features**
<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 like this project please follow and give it a star ⭐️
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
> I would like to thank [Microverse Inc](https://www.github.com/microverseinc) for providing the project requirements, the open API.
> Special thanks to [Nelson Sakwa on Behance](https://www.behance.net/gallery/31579789/Ballhead-App-(Free-PSDs)) for his original design idea (UI).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ❓ FAQ <a name="faq"></a>
- **Is this an Open Source Project?**
- Yes it is, however, there would not be subsequent deployments and maintenance of the app is dependent on third party APIs.
- **Can you make multiple requests to the API?**
- Unfortunately, no you can not. It is limited to 10 calls per second so data mapping and loading (dispatch to store) at once is not possible.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LICENSE -->
## 📝 License <a name="license"></a>
This project is [MIT](./MIT.md) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| React App to maintain air pollution data for Europe's biggest cities and rank them by highest index. | api,javascript,react,redux-toolkit,tailwind-css | 2023-04-24T09:28:00Z | 2023-04-28T08:17:48Z | null | 1 | 6 | 18 | 0 | 0 | 2 | null | null | JavaScript |
ambuj0012/Hardhat-SmartContract-Blockchain | main | # Hardhat-SmartContract-Blockchain
1. HARDHAT SETUP
a. open new terminal and write command npm init to create a package.json file
b. run the command - npm add --dev hardhat, to install hardhat packages (this will add a file node_modules in your folder)
c. run - npx hardhat
d. this will ask you too choose from three options select - create a javascript project
e. now install following devdependencies -
1. npm install --save-dev @nomiclabs/hardhat-ethers
2. npm install --save-dev @nomiclabs/hardhat-waffle
3. npm install --save-dev chai
4. npm install --save-dev ethereum-waffle
5. npm install --save-dev ether
f. you will notice that following folders/files are added to your folder-
1. contracts folder (we will keep our contracts here ) it comes with a sample contract
2. scripts folder (we will keep our .js files here) it comes with a sample file
3. test folder
4. .gitignore file
5. hardhat.config.js (this is entry point of our script)
[HARDHAT ENVIRONMENT SETUP IS COMPLETED]
2. COMPILE contract
a. to compile your smart contract write command - npx hardhat compile
b. two files will bee added to the folder
1. artifacts
2. cache
3. DEPLOYING CONTRACT
a. as first step we need to import the hardhat library (it comes with build in ethers.js library)
b. we then need to create a function to deploy the contract
c. we need to first declare the contract factory const which contains all the info of the contract required to deploy the contract (like abi and bytecode of the contract)
d. please refer to the code in deploy.js file
[NOTE - POTENTIAL PROBLEMS(errors) YOU MAY FACE WHILE DEPLOYING YOUR CONTRACT-
a. rpcProvider not defined - usually this error is caused because your directories are not able to read from the node_modules
you can try these to fix this problem-
1. reinstalling hardhat
2. there are high chances that your hardhat package is not there in devdependencies in package.json file, try cutting and pasting it in devdependencies in package.json]
[NOTE - here we didn't required the rpc url, private key,etc because hardhat comes with build in hardhat network similar to ganache]
[NOTE - if you need to add your network you can do so in hardhat.config.js
to depoly on other network create a network tag and pass network name url chainid and private key (i have commented out the code in hardhat.config.js to add network)]
4. VERIFICATION OF SMART CONTRACT (refer to code on verify.js)
After the smart contract is deployed, it must be verified to ensure that it has been correctly deployed and that the bytecode matches the original code. This is typically done through a process called "smart contract verification," which involves comparing the deployed bytecode to the original code and checking that they match.
Auto-verification of a smart contract involves automatically verifying the contract's source code on a blockchain explorer or verification platform, such as Etherscan, using a continuous integration/continuous deployment (CI/CD) pipeline. This approach can help to streamline the verification process and ensure that the contract is automatically verified whenever changes are made to the codebase.
a. we will start with installing a plugin, @nomiclabs/hardhat-etherscan to verify the contract (use command npm install --save-dev @nomiclabs/hardhat-etherscan)
b. to use this plugin you need to add a section in hardhat.config.js file
etherscan:{
apiKey: "your etherscan api key",
},
[you require api key to connect to the etherscan server]
c. installing this plugin provides us with a command to verify our contract using terminal (npx hardhat verify --network testnet DEPLOYED_CONTRACT_ADDRESS "constructor arguments 1")
d. this plugin is to verify contract in ETHERSCAN
5. CUSTOM HARDHAT TASKS [plz refer to blocknumber.js file in tasks folder]
[ we can create our own custom hardhat commands for different tasks]
a. To define a task we will create a task folder and will write scripts to make our custom task commands
b. plz refer to blocknumber.js in folder, tasks
6. HARDHAT LOCALHOST NODE
a. one can spin up a local blockchain network line the ganache in their own terminal.
b. to do so, run the command (npx hardhat node) in terminal, this will yield account addresses and private keys of accounts like ganache with 1000 ethers each
c. if you need to use this locally hosted network, you need to add this network in hardhat.config.js
d. code to add this network is written below the code to add testnet network (in comments)
e. rpc url will be given in the terminal when you run the command [npx hardhat node]
f. to deploy the contract to the LOCALHOST, set the network in hardhat.config.js to localhost and run the deploy script
g. you can use the command , --network localhost to update the localhost network in terminal (this will print a whole log in the terminal)
7. THE HARDHAT CONSOLE
[hardhat console is a javascript environment which comes building in hardhat, it is used to run js codes in terminal]
a. run the command npx hardhat console --network flag you are working in (ex npx hardhat console --network localhost)
| This repo is all about hardhat. I have used a basic and simple smart contract in this project. This is a detailed repo about scopes and use of hardhat | blockchain,hardhat,hardhat-deployment,hardhat-node,hardhat-plugin,hardhat-template,javascript,smart-contracts,solidity,web3 | 2023-04-26T17:52:23Z | 2023-04-26T18:40:19Z | null | 1 | 0 | 12 | 0 | 0 | 2 | null | null | JavaScript |
ryankbr/stockgpt | main | # stockgpt
A freelance project stock information website built for Brady Lochte, inspired by ChatGPT
Built by Casey Pei & Ryan Kabir (2023)
Deployed at: https://ryankbr.github.io/stockgpt/

| Freelance Stock Information website for Brady Lochte | css,html,javascript | 2023-04-26T00:51:26Z | 2023-07-05T21:32:03Z | null | 2 | 0 | 53 | 0 | 0 | 2 | null | null | HTML |
masthiago/nthashtagfinder | main | # Hashtag Finder
Hashtag Finder foi o Projeto desenvolvido em equipe na imersão da [Newtab Academy](https://www.newtab.academy/)
Durante o processo nossa equipe enfrentou diversos desafios para desenvolver.
Utilizamos a API do Twitter para buscar hashtags e o acesso por login.
Seguimos as metodologias ágeis, utilizando o SCRUM.
Na primeira sprint, desenvolvemos a versão estática e responsiva, na segunda sprint, tornamos o projeto funcional.
Realizamos reuniões e utilizamos a ferramenta ClickUp para gerenciar tarefas. Com o uso de frameworks e bibliotecas do JavaScript, como React.JS, React Router DOM, Styled Components, Axios, REST API, Airtable e outros.
Contamos com a plataforma GitHub para trabalhar em equipe e controlar as versões do projeto.
Por fim, utilizamos o [Vercel](https://vercel.com/) para colocar o projeto em produção.
## Em funcionamento
Clique na imagem abaixo e assista ao video do projeto em funcionamento
[](https://youtu.be/2O27fxSXzdA)
## Informações de uso
Teste a busca acessando o link abaixo e utilize os dados de login para acessar a área com os registros de busca:
* Hashtag Finder: https://nthashtagfinder.vercel.app/
* Usuário: teste[]()@teste.com.br
* Senha: 123
## Equipe
* Franciane Pires: [GitHub](https://github.com/Franppires/), [LinkedIn](https://www.linkedin.com/in/franciane-pires/)
* Gabriel Tomaz: [GitHub](https://github.com/Gabriel97Project/), [LinkedIn](https://www.linkedin.com/in/gabriel-tomaz97-7a6617116/)
* Moizes Azevedo: [GitHub](https://github.com/MoisesAzevedo/), [LinkedIn](https://www.linkedin.com/in/moises-azevedo-248092218)
* Paulo Ricardo: [GitHub](https://github.com/PauloDev07/), [LinkedIn](https://www.linkedin.com/in/paulo-ricardo-trinch%C3%A3o-25025b208/)
* Thiago Medeiros: [GitHub](https://github.com/masthiago), [LinkedIn](https://www.linkedin.com/in/thiagoasmedeiros/)
| Hashtag Finder. Projeto em equipe da Newtab Academy | css,html,javascript,react | 2023-05-02T23:00:01Z | 2023-06-13T23:57:42Z | 2023-05-20T00:21:32Z | 5 | 47 | 179 | 0 | 4 | 2 | null | null | JavaScript |
iamsjunaid/todo-list | main |
<a id="readme-top"></a>
# Todo-List using ES6
# 📗 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 -->
# 📖 Todo List <a name="about-project"></a>
**Todo List** is a website that lets you add daily tasks in the browser localstorage.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>HTML</summary>
<ul>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/HTML">index.html</a></li>
</ul>
</details>
<details>
<summary>CSS</summary>
<ul>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/CSS">style.css</a></li>
</ul>
</details>
<details>
<summary>Javascript</summary>
<ul>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript">script.js</a></li>
</ul>
</details>
<details>
<summary>Webpack</summary>
<ul>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript">webpack</a></li>
</ul>
</details>
### Key Features <a name="key-features"></a>
- **Add tasks**
- **Remove tasks**
- **Create all tasks**
<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://iamsjunaid.github.io/todo-list/dist/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 💻 Getting Started <a name="getting-started"></a>
To get a local copy up and running, follow these steps.
### Prerequisites
In order to run this project you need:
Open VSCode and type <code>ctrl+P</code>, type
```sh
ext install ritwickdey.liveserver
```
### Setup
Clone this repository to your desired folder:
```sh
git clone git@github.com:iamsjunaid/todo-list.git;
```
### Usage
To run the project just click the Go Live button in the VSCode.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 **Junaid Ahmed Syed**
- GitHub: [@iamsjunaid](https://github.com/iamsjunaid)
- Twitter: [@junaidahmedsyed](https://twitter.com/junaidahmedsd)
- LinkedIn: [@junaidsyed](https://www.linkedin.com/in/junaid-syed-058b2779/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
- **Navigation**
- **Styling**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🤝 Contributing <a name="contributing"></a>
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](https://github.com/iamsjunaid/todo-list/issues ).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ⭐️ Show your support <a name="support"></a>
If you like this project you can give a Star at project's [GitHub page](https://github.com/iamsjunaid/todo-list).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank the code reviewers for making this project better.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 📝 License <a name="license"></a>
This project is [MIT](https://github.com/iamsjunaid/todo-list/blob/main/LICENSE) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| A website that lets you store your tasks. It uses browser's localstorage to perform CRUD operations. | es6,es6-modules,html5-css3,javascript,javascript-localstorage,webpack | 2023-05-02T09:50:17Z | 2023-05-08T16:03:16Z | null | 2 | 5 | 25 | 4 | 0 | 2 | null | MIT | JavaScript |
yugurlu/backend | main | # backend
just learn backend
| null | backend,javascript,nodejs,nestjs | 2023-04-30T12:50:44Z | 2023-08-16T21:18:26Z | null | 1 | 0 | 26 | 0 | 0 | 2 | null | MIT | TypeScript |
lack21/Pricing-Component | main | # Pricing-Component
Tools Used :
• HTML
• SCSS
• JavaScript

Link : https://lack21.github.io/Pricing-Component/
| Design Project | html,javascript,scss | 2023-04-30T16:46:54Z | 2023-04-30T17:04:59Z | null | 1 | 0 | 9 | 0 | 0 | 2 | null | null | SCSS |
Singh-csm/Virtual_Museum | master | # <img src="https://user-images.githubusercontent.com/118621709/236121650-f202bc7c-8923-4216-b108-a8baf311db88.png" width="70"/><br>Virtual Museum
### Amazing and immersive virtual walks through Museum Around the World!
<img width="128" height="128" alt="landing" src="https://user-images.githubusercontent.com/118621709/235505359-08d69f80-39f9-42c8-9909-2e07d01db56a.png">
### Curated immersive virtual Gallery, exhibition hall, art center, cultural center, showcase, display hall, museum space, exposition, art museum.
---
https://github.com/Singh-csm/Virtual_Museum/assets/118621709/d640f9a4-8070-4eb9-8928-e1bb1363da49
---
Allows users to log in, set up a profile, bookmark and save their favorite arts, like/unlike their favorite art, and upload their own art. Imagined abt visiting museum and built for anyone anywhere that wants to get away to the vast and beautiful outdoors but isn't able to at the moment. A chance to relax, unwind, explore, and recharge with Historical seen.
### Visit the deployed site:
[Virtual-Guide-App](https://virtual-app.onrender.com/signup)<br>
### user:
email: softwaredev1234@gmail.com<br>
password: softwaredev1234
---
### Tech used:
EJS, CSS, JavaScript, Bootstrap, Node.js, Express.js, MongoDB
### Additions and Optimizations will include:
- This is an ongoing labor of love that I'm really enjoying tweaking, polishing, streamlining, and optimizing as I go
- I'm currently working on the ability to search and sort museum by museum name, art, guide, state, and speaking guide only
- I'm also working on smaller features including the ability to automatically open videos full screen in app
- Adding a section to get-started page discussing recent in-the-news litigation and controversy surrounding filming in Mueseum Around the world
---
| A Gallery, exhibition hall, art center, cultural center, showcase, display hall, museum space, exposition, art museum. | ejs,javascript,mongodb,nodejs,bootstrap,css,expressjs,html | 2023-05-08T02:57:07Z | 2023-06-07T02:06:38Z | null | 1 | 0 | 16 | 0 | 0 | 2 | null | null | EJS |
Alamin0x01/news-portal | main | # news-portal
| News Portal site --/ | firebase,javascript,react | 2023-04-27T16:04:04Z | 2023-04-27T17:08:43Z | null | 1 | 0 | 2 | 0 | 0 | 2 | null | null | JavaScript |
faizaniqbalLC/react-hooks-examples | main | **react-hooks-examples**
useCallback , useMemo, useEffect vs useLayoutEffect, useTransitionAnduseDeferredValue, useRef, useImeprativeHandle, also a custom by using useDebugvalue have explained in that repo by code examples
---
🚀 Follow Me:
- [Twitter](https://twitter.com/se_fizan)
- [LinkedIn](https://www.linkedin.com/in/muhammad-fizan-iqbal/)
- [Reddit](https://www.reddit.com/user/se-fizan)
---
### 🎓 Academic Honesty
**DO NOT COPY FOR AN ASSIGNMENT** - Avoid plagiarism and adhere to the spirit of this [Academic Honesty Policy](https://www.freecodecamp.org/news/academic-honesty-policy/).
---
**Getting Started with react-hooks-examples.**
### Available Scripts
In the project directory, you can run:
```bash
$ npm install
```
This command shall install your all dev and production dependencies\
Open [http://localhost:5173](http://localhost:5173) to view it in your browser or maybe vite can provide any other port.
```bash
$ npm start
```
Runs the app in the development mode.\
Open [http://localhost:5173](http://localhost:5173) to view it in your browser.
The page will reload when you make changes.\
You may also see any lint errors in the console.
Best Regards: Muhammad Fizan Iqbal
**LICENSE**
[MIT License](LICENSE)
| hooks code example | all,code,examples,hooks,javascript,react | 2023-05-02T08:41:50Z | 2023-05-04T16:21:12Z | null | 1 | 0 | 67 | 0 | 0 | 2 | null | MIT | JavaScript |
Albert-Byrone/WatermelonMarketPlace | master | # Survey
This website allows to easy onboarding of sellers to watermelon marketplace
## Table of Content
+ [Description](##description)
+ [Installation Requirement](##Installation)
+ [Technology Used](##technology-used)
+ [Reference](##reference)
+ [Licence](##licence)
+ [Authors Info](##author-Info)
## Description
<p>This is a website that shows my portfolio/resume.It contains all my background information,some sample projects that I have worked on and the experience gained.</p>
## Installation
### Requirements
* Either a computer,phone,tablet or an Ipad
* An access to the Internet
## Installation Process
### Frontend
[Link](https://watermellonfrnt.onrender.com/)
* Navigate to the project directory with the command `cd frontend`
* Navigate to the frontend directory with the command `cd watermelonfront`
* Install all the dependencies with the command `npm install`
* Start the app with the command `npm run dev`
* Navigate to the app on your browser with the url `http://localhost:****` where **** is the port number displayed on
your terminal eg 5174.
### Backend
[Link](https://watermellonbackend.onrender.com/redoc)
#### Setup
#### Commandline commands
#### Powershell commands
cd .\backend
##### Bash Commands
cd ./backend
### Install Python requirements and dependencies
pip install -r requirements.txt
### Environment variables
Create a .env file in the current directory with the following data format
e.g
DATABASE_TYPE=postgresql
DATABASE_NAME=mms_database
DATABASE_HOST=localhost
DATABASE_USERNAME=postgres
DATABASE_PASSWORD=admin
## Start Server
### Commandline commands
python app.py
To interact with the server locally, open the [link](http://127.0.0.1:8000) or paste http://127.0.0.1:8000
or http://localhost:8000
in the browser.
[Go Back to the top](#portfolio)
## Technology Used
* Frontend: ViteJS, Tailwind css.Redux Toolkit
* Backend: FAST API, Sqlalchemy.
* Database: PostgreSQL
## Reference
* Materialize CSS
* React Router
* ViteJS
* Tailwind
* FastAPI
[Go Back to the top](#portfolio)
## Licence
MIT License
Copyright (c) [2023] [Albert Byrone]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
[Go Back to the top](#portfolio)
## Authors Info
Slack Profile - [Albert Byrone](https://app.slack.com/client/T077KKCG6/GLRQR61NW/user_profile/UKXCHMCNP?cdn_fallback=1)
Linked - [Albert Byrone](https://www.linkedin.com/in/albert-byrone-664811144/)
[Go Back to the top](#portfolio) | This website allows to easy onboarding of sellers to watermelon marketplace.Find the deployed backend link on the README | javascript,reactjs | 2023-05-06T18:51:28Z | 2023-05-07T06:29:09Z | null | 1 | 0 | 25 | 0 | 0 | 2 | null | null | JavaScript |
MunavvarSinan/yensplash-2023 | main | This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
## Getting Started
First, run the development server:
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
You can start editing the page by modifying `pages/index.tsx`. The page auto-updates as you edit the file.
[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.ts`.
The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.
This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
## Learn More
To learn more about Next.js, take a look at the following resources:
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
## Deploy on Vercel
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
| This is website is created for our college fest. The website showcases various activities, competitions, schedules. | event-website,tech-fest,college-fest,javascript,nextjs,react,tailwindcss,typescript | 2023-05-15T20:29:21Z | 2023-05-18T13:15:35Z | null | 2 | 0 | 21 | 0 | 1 | 2 | null | null | TypeScript |
Prachichhatrola/Javascript | main | null | null | javascript | 2023-04-26T11:30:42Z | 2023-05-01T12:18:13Z | null | 1 | 0 | 38 | 0 | 0 | 2 | null | null | JavaScript |
Ankit6098/IMDb-Clone | master | # IMDB-Clone Javascript
## Documentation
[Documentation](https://linktodocumentation)
<img margin-top="20px" width="40px" height="40px" src="https://cdn-icons-png.flaticon.com/512/5977/5977585.png"/> FrontEnd IMDb Clone Javascript
"IMDb Clone" is a visually captivating website inspired by the renowned IMDb platform. Developed using HTML, eye-catching CSS, and dynamic JavaScript, this stunning clone fetches real-time data through APIs to provide an immersive and engaging user experience. With its visually appealing design, visitors are instantly drawn to the website's sleek interface and intuitive navigation. Users can seamlessly browse through an extensive collection of movies, TV shows, actors, and more, accessing detailed information, ratings, and reviews. The IMDB Clone's powerful search functionality and advanced filtering options enable users to effortlessly discover their favorite content. Whether it's exploring new releases, researching actors, or reading plot summaries, this IMDb-inspired clone delivers an enthralling and user-friendly experience that keeps movie enthusiasts hooked.
Explore a vast collection of movies, TV shows, and celebrities with ease. The website leverages APIs to fetch real-time data, ensuring that you have access to the latest information about your favorite films and actors. From timeless classics to the hottest releases, IMDb Clone provides comprehensive details, including ratings, reviews, cast and crew information, plot summaries, trailers, and more.
## Demo
https://imdbcloneapi.netlify.app/
## Authors
- [@AnkitVishwakarma](https://github.com/Ankit6098)
## Features
- 🎦 Search Movies, Documentary, Short Flim, Web Series
- Save to ⌚ Watchlist and ❤️ Favouritelist for future use
- 💾 Local Storage (Ability to restore saved movies even after reopening the browse)
- Fully Responsive 🖥 Desktop / 💻 Laptop / 📱 Mobile
## Run Locally
Clone the project
```bash
git clone https://github.com/Ankit6098/IMDB-Clone
```
Go to the project directory
```bash
cd IMDb-Clone
```
Run the Application
```bash
Run index.html
```
## Acknowledgements
- [iziToast - Notification](https://izitoast.marcelodolza.com/)
- [Animation libarry - animate.style](https://animate.style/)
- [Datebase of Movies - OMDb API](https://www.omdbapi.com/)
## Screenshots
// Desktop & Laptop





// Tab




// Mobile



## Related
Here are some related projects
[Alarm CLock - javascript](https://github.com/Ankit6098/Todos-nodejs)\
[ToDo List - javascript](https://github.com/Ankit6098/Todos-nodejs)\
[Music Webapp - javascript](https://github.com/Ankit6098/Todos-nodejs)
## 🚀 About Me
I'm a full stack developer...
# Hi, I'm Ankit! 👋
I'm a full stack developer 😎 ... Love to Develop Classic Unique fascinating and Eye Catching UI and Love to Create Projects and Building logics.
## 🔗 Links
[](https://ankithub.me/Resume/)
[](https://www.linkedin.com/in/ankit-vishwakarma-6531221b0/)
## Other Common Github Profile Sections
🧠 I'm currently learning FullStack Developer Course from Coding Ninjas
📫 How to reach me ankitvis609@gmail.com
## 🛠 Skills
React, Java, Javascript, HTML, CSS, Nodejs, ExpressJs, Mongodb, Mongoose...
## Feedback
If you have any feedback, please reach out to us at ankitvis609@gmail.com
| "IMDb Clone" is a visually captivating website inspired by the renowned IMDb platform. Developed using HTML, eye-catching CSS, and dynamic JavaScript, this stunning clone fetches real-time data through APIs to provide an immersive and engaging user experience. | css3,html5,javascript,izitoastjs | 2023-04-24T16:38:17Z | 2024-01-30T15:30:00Z | null | 1 | 0 | 35 | 0 | 0 | 2 | null | null | JavaScript |
tiraupp/Music_Player | main | # Tocador de Músicas
Este é um projeto de um tocador de músicas desenvolvido em HTML, CSS e JavaScript.
## Funcionalidades
- Reproduzir músicas em diferentes formatos (MP3, WAV, etc.).
- Pausar, avançar e retroceder a reprodução.
- Exibir informações da música em reprodução, como título, artista e duração.
- Criar playlists personalizadas.
- Navegar entre as músicas da playlist.
- Favoritar a música.
## Link
[Experimente aqui](https://tiraupp.github.io/Music_Player/index.html)
<img src="img/Music_Player.png" />
## Tecnologias Utilizadas
<p align="left">
<a href="https://skillicons.dev">
<img src="https://skillicons.dev/icons?i=js,html,css,git,github" />
</a>
</p>
## Como usar
1. Faça o download ou clone este repositório.
2. Abra o arquivo `index.html` em um navegador web.
3. Adicione suas músicas à pasta `songs`.
4. Atualize a lista de músicas no arquivo `script.js` com os caminhos das suas músicas.
5. Inicie o tocador de músicas e aproveite!
## Contribuição
Contribuições são bem-vindas! Se você encontrar algum problema ou tiver alguma sugestão de melhoria, sinta-se à vontade para abrir uma issue ou enviar um pull request.
## Licença
Este projeto está licenciado sob a [MIT License](LICENSE).
## Autor
[<img loading="lazy" src="https://avatars.githubusercontent.com/u/99849899?v=4" width=115><br><sub>Tiago Raupp da Rosa</sub>](https://github.com/tiraupp)
| Projeto Music Player | bootstrap,css3,html5,javascript | 2023-05-06T18:03:09Z | 2024-03-12T00:56:19Z | null | 1 | 0 | 10 | 0 | 0 | 2 | null | null | JavaScript |
shgysk8zer0/polyfills | master | # [@shgysk8zer0/polyfills](https://www.npmjs.com/package/@shgysk8zer0/rollup-import)
@shgysk8zer0/polyfills is a collection of JavaScript polyfills designed to provide
modern functionality in older browsers. This library provides a range of polyfills
for features including `AbortSignal`, `CookieStore`, `Sanitizer`, and many more.
[](https://github.com/shgysk8zer0/polyfills/actions/workflows/codeql-analysis.yml)


[](https://github.com/shgysk8zer0/polyfills/blob/master/LICENSE)
[](https://github.com/shgysk8zer0/polyfills/commits/master)
[](https://github.com/shgysk8zer0/polyfills/releases)
[](https://github.com/sponsors/shgysk8zer0)
[](https://www.npmjs.com/package/@shgysk8zer0/polyfills)
<!--  -->

[](https://www.npmjs.com/package/@shgysk8zer0/polyfills)
[](https://github.com/shgysk8zer0)


[](https://twitter.com/shgysk8zer0)
[](https://liberapay.com/shgysk8zer0/donate "Donate using Liberapay")
- - -
- [Code of Conduct](./.github/CODE_OF_CONDUCT.md)
- [Contributing](./.github/CONTRIBUTING.md)
<!-- - [Security Policy](./.github/SECURITY.md) -->
## Installation
You can access @shgysk8zer0/polyfills in several ways:
### CDN
You can use a CDN to access the library. Add the following script tag to your
HTML file to load the latest version:
```html
<script src="https://unpkg.com/@shgysk8zer0/polyfills/all.min.js"></script>
```
#### With version and SRI
```html
<script src="https://unpkg.com/@shgysk8zer0/polyfills@0.0.6/all.min.js" referrerpolicy="no-referrer" crossorigin="anonymous" integrity="sha384-xoY6kDRPTvbDfGdGA3S6Ercudev5mWGBWZIErLB38f7TeN6hV7zof6WBpzMdx/z0" fetchpriority="high" defer=""></script>
```
### NPM
You can install the library as an NPM package and use it in your project. Use
the following command to install the library:
```bash
npm install @shgysk8zer0/polyfills
```
### Git Submodule
You can add the library as a Git submodule to your project. Use the following
command to add the library as a submodule:
```bash
git submodule add https://github.com/shgysk8zer0/polyfills.git [:path/to/destination]
```
## Usage
To use the polyfills in your project, simply import them using ES6 modules:
```javascript
import '@shgysk8zer0/polyfills';
// Or
import 'https://unpkg.com/@shgysk8zer0/polyfills/all.js';
```
This will load all the polyfills in the library.
If you only need certain polyfills, you can import them individually:
```javascript
import '@shgysk8zer0/polyfills/sanitizer.js';
import '@shgysk8zer0/polyfills/trustedTypes.js';
import '@shgysk8zer0/polyfills/elementInternals.js';
```
### Import Map
You can avoid installing altogether while keeping the familiar syntax by using
an [import map](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script/type/importmap).
If you use Rollup, see [`@shgysk8zer0/rollup-import`](https://www.npmjs.com/package/@shgysk8zer0/rollup-import).
for more details.
```html
<script type="importmap">
{
"imports": {
"@shgysk8zer0/polyfills": "https://unpkg.com/@shgysk8zer0/polyfills@0.0.6/all.min.js",
"@shgysk8zer0/polyfills/": "https://unpkg.com/@shgysk8zer0/polyfills@0.0.6/",
}
}
</script>
```
## Contributing
If you would like to contribute to the library, please follow these steps:
1. Fork the repository.
2. Create a branch for your changes.
3. Make your changes.
4. Submit a pull request.
Please make sure that your changes are thoroughly tested and that they follow the same coding style as the rest of the library.
## License
@shgysk8zer0/polyfills is licensed under the MIT license. See the [LICENSE](https://github.com/shgysk8zer0/polyfills/blob/master/LICENSE) file for more details.
| A set of JavaScript polyfills | javascript,polyfill | 2023-05-07T14:36:07Z | 2024-04-10T19:35:14Z | 2024-04-10T19:36:23Z | 1 | 52 | 127 | 3 | 0 | 2 | null | MIT | JavaScript |
EdiJunior88/Aluratube_v2 | main | <h2>Aluratube v2</h2>
<p>Um projeto que simula um app do Youtube registrando o título e url de qualquer vídeo que podem ser adicionados à página principal.</p>
<p>O app possui total responsividade para dispositivos mobile / tablets / desktop / monitores com resoluções altas, incluindo também o botão "modo noturno" deixando a página mais confortável visualmente.</p>
<hr>
<strong>Link do projeto:</strong> <a href="https://aluratube-v2.vercel.app/" target="_blank" >https://aluratube-v2.vercel.app/</a>
<hr>
<h3>Modo Desktop</h3>
<p align="center">
<img src="./aluratube/src/Imagens/Aluratube-v2-README.jpg">
</p>
<br />
<h3>Modo Mobile</h3>
<p align="center">
<img src="./aluratube/src/Imagens/Aluratube-v2-mobile-README.jpg" width="45%">
</p>
<hr>
<h3>Tecnologias Utilizadas</h3>
- <img width='25' height='25' src='https://img.stackshare.io/service/1209/javascript.jpeg' alt='JavaScript'/> [JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript) – Languages
- <img width='25' height='25' src='https://img.stackshare.io/service/2202/72d087642cfce6fef6f2dabec5bf49e8_400x400.png' alt='Autoprefixer'/> [Autoprefixer](https://github.com/postcss/autoprefixer) – CSS Pre-processors / Extensions
- <img width='25' height='25' src='https://img.stackshare.io/service/3339/rlFcjEdI.png' alt='PostCSS'/> [PostCSS](https://github.com/postcss/postcss) – CSS Pre-processors / Extensions
- <img width='25' height='25' src='https://img.stackshare.io/service/1020/OYIaJ1KK.png' alt='React'/> [React](https://reactjs.org/) – Javascript UI Libraries
- <img width='25' height='25' src='https://img.stackshare.io/service/8158/default_660b7c41c3ba489cb581eec89c04655404258c19.png' alt='Tailwind CSS'/> [Tailwind CSS](https://tailwindcss.com) – Front-End Frameworks
- <img width='25' height='25' src='https://img.stackshare.io/service/3337/Q4L7Jncy.jpg' alt='ESLint'/> [ESLint](http://eslint.org/) – Code Review
- <img width='25' height='25' src='https://img.stackshare.io/service/21547/default_1aeac791cde11ff66cc0b20dcc6144eeb185c905.png' alt='Vite'/> [Vite](https://vitejs.dev/) – JS Build Tools / JS Task Runners
- <img width='25' height='25' src='https://img.stackshare.io/service/1512/logo.png' alt='Airtable'/> [Airtable](https://airtable.com) – Spreadsheets as a Backend
- <img width='25' height='25' src='https://img.stackshare.io/no-img-open-source.png' alt='axios'/> [axios](https://github.com/mzabriskie/axios) – Javascript Utilities & Libraries
Para ver todas as tecnologias [clique aqui](/techstack.md)
<hr>
<h3>Status do Deploy</h3>

<hr>
<h3>Tempo Estudando o projeto</h3>
<p>
<a href="https://wakatime.com/badge/github/EdiJunior88/Aluratube_v2">
<img src="https://wakatime.com/badge/github/EdiJunior88/Aluratube_v2.svg" alt="wakatime">
</a>
</p>
<hr>
<h4><b>Status do projeto:</b> ✅ Concluído</h4>
| Um projeto que simula um app do Youtube registrando o título e url de qualquer vídeo que podem ser adicionados à página principal. | react,css,css3,javascript,javascript-es6,react-hooks,reactjs,tailwind,tailwind-css,tailwindcss | 2023-05-01T14:32:11Z | 2024-05-02T16:58:45Z | null | 2 | 191 | 449 | 0 | 0 | 2 | null | MIT | JavaScript |
odiinh/PLKABOT | main | null | A bot created for the discord server of esports team 'PLKA' . | discord,discord-api,discord-bot,discord-js,discordjs,javascript,typescript,pm2 | 2023-05-07T23:29:07Z | 2023-05-16T07:37:23Z | null | 1 | 4 | 15 | 0 | 0 | 2 | null | null | JavaScript |
JMBoulos12/HTML-CSS-JAVASCRIPT | main | # HTML-CSS-JAVASCRIPT | We will learn and cover '' HTML CSS JAVASCRIPT '' main and most famous programs for enhancing the development purpose. | css,css3,html,html5,javascript | 2023-05-09T09:21:55Z | 2023-10-29T18:47:52Z | null | 1 | 0 | 519 | 0 | 0 | 2 | null | null | JavaScript |
rawanabuzir/todo-project | main | # todo-project
## To-Do List Project #2


| To-Do List Project #2 | css,html,javascript | 2023-05-14T12:44:27Z | 2023-05-17T08:37:23Z | null | 1 | 5 | 15 | 0 | 0 | 2 | null | null | CSS |
Wael-Morjen/Medical-Chat-Application | main | # Medical-Chat-Application
this project is a secure and private chat application for medical purposes between doctors and patients
| this ReactJs project is a secure and private chat application for medical purposes between doctors and patients using GetStream.io and SMS notifier using Twilio | chat-application,chatroom,javascript,medical-application,nodejs,react-context-api,react-hooks,reactjs,bcrypt,bcrypt-hashing-library | 2023-05-14T18:13:01Z | 2023-05-21T18:22:32Z | null | 1 | 0 | 14 | 0 | 0 | 2 | null | null | JavaScript |
IMDADMI/star-matcher-game | main | <<<<<<< HEAD
# star-matcher-game
=======
# 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)
>>>>>>> a8a4774c62d65c0a21bcbca6dc33048f970b3291
| star matcher game using react js | javascript,reactjs | 2023-04-28T08:57:38Z | 2023-05-10T00:35:45Z | null | 2 | 1 | 6 | 0 | 0 | 2 | null | null | JavaScript |
mircntzr/e-commerce | main | <h1 align="center">Vintaggy E-Commerce Website</h1>
<p align="center">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/ac/Eo_circle_orange_letter-v.svg/1200px-Eo_circle_orange_letter-v.svg.png" alt="Vintaggy Logo">
</p>
This project is a modern e-commerce website built with Redux and React Context. It features a responsive design that works seamlessly across different screen sizes, and the data is fetched from a JSON source. The codebase follows clean and organized coding practices, and React Router is used for navigation between pages.
## Project Features
- Data management is handled using Redux and React Context.
- The website has a responsive design for a consistent experience across different screen sizes.
- Data is fetched from a JSON source.
- The codebase follows clean and organized coding practices.
- React Router is used for navigation between pages.
## Installation
## 1. Clone the project:
````shell
git clone https://github.com/mircntzr/e-commerce
2. Navigate to the project directory:
cd e-commerce
3. Install the dependencies
npm install
4. Start the project
npm start
----------------------Demo Link----------------------
```<p align="center">
<a href="http://vintaggy.com/" target="_blank">👉 CHECK OUT THE DEMO 👈</a>
</p>
````
| An e-commerce website built with React. | context,css,ecommerce,ecommerce-website,eticaret,html,javascript,javascript-library,json-api,react | 2023-05-02T22:30:49Z | 2023-09-05T19:39:16Z | null | 1 | 0 | 31 | 0 | 1 | 2 | null | null | JavaScript |
thaizacapelao/Portifolio-Thaiza | main | # Portifolio - Thaiza Capelão
Em construção.

# 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)
| (Working) My Portfolio Website. | css3,html5,javascript,website,working | 2023-04-27T19:35:08Z | 2023-09-28T18:24:21Z | null | 1 | 0 | 16 | 0 | 0 | 2 | null | null | JavaScript |
kwesiObuobi/math-magicians | dev | <a name="readme-top"></a>
<!-- TABLE OF CONTENTS -->
# 📗 Table of Contents
- [📗 Table of Contents](#-table-of-contents)
- [📖 Math Magicians ](#-math-magicians-)
- [🛠 Built With ](#-built-with-)
- [Tech Stack ](#tech-stack-)
- [Key Features ](#key-features-)
- [🚀 Live Demo ](#-live-demo-)
- [💻 Getting Started ](#-getting-started-)
- [Prerequisites](#prerequisites)
- [Setup](#setup)
- [👥 Authors ](#-authors-)
- [🔭 Future Features ](#-future-features-)
- [🤝 Contributing ](#-contributing-)
- [⭐️ Show your support ](#️-show-your-support-)
- [🙏 Acknowledgments ](#-acknowledgments-)
- [📝 License ](#-license-)
<!-- PROJECT DESCRIPTION -->
# 📖 Math Magicians <a name="about-project"></a>
**Math Magicians** is a website for all fans of mathematics. It is a Single Page App that allows users to make simple calculations and read a random math-related quote.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>Client</summary>
<ul>
<li>HTML & CSS</li>
<li>Javascript</li>
<li>React</li>
</ul>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **Allows users to make simple calculations**
- **A Single Page Application**
- **Gets a random math-related quote**
<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://math-magicians-kp7n.onrender.com)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- GETTING STARTED -->
## 💻 Getting Started <a name="getting-started"></a>
To get a local copy up and running, follow these steps.
### Prerequisites
- Git
- React and Redux linters
In order to run this project you need:
- Nodejs
### Setup
Clone this repository to your desired folder:
```
git clone https://github.com/kwesiObuobi/math-magicians.git
```
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 **Samuel Kwesi Obuobi Lartey**
- GitHub: [@kwesi obuobi](https://github.com/kwesiObuobi)
- Twitter: [@kwesi_obuobi](https://twitter.com/kwesi_obuobi)
- LinkedIn: [kwesi-obuobi](https://www.linkedin.com/in/kwesi-obuobi/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
- [ ] **Using the fetch API to get quotes**
- [ ] **Attractive CSS styling**
<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 like this project, consider giving it a star!
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank Microverse Inc for such an awesome opportunity to join their community and start a journey to become a full stack web developer.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LICENSE -->
## 📝 License <a name="license"></a>
This project is [MIT](./LICENSE) licensed.
| A Single Page App that allows users to make calculations and read a randomly generated quote. | javascript,react,html-css | 2023-04-24T09:47:48Z | 2023-11-21T21:46:32Z | null | 1 | 6 | 75 | 0 | 1 | 2 | null | MIT | JavaScript |
srajankumar/portfolio-template | main | # Portfolio
A dark - mode portfolio template
## Getting Started
1. Fork and Clone the repository to your local machine
```bash
git clone https://github.com/<your-username>/<repo-name>.git
```
2. Install the dependencies
```bash
npm install
# or
yarn install
```
3. Start the development server
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
```
4. Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
## Authors
- [@srajankumar](https://github.com/srajankumar)
## Contributing
Contributions are welcome! ;)
| A simple portfolio-template | tailwindcss,vitejs,javascript | 2023-05-10T05:10:52Z | 2023-05-25T13:25:28Z | null | 1 | 0 | 8 | 0 | 0 | 2 | null | null | JavaScript |
SinghArpit27/Image-Gallery | master | null | A dynamic image gallery project crafted with React.js, providing an interactive and visually appealing platform for users to explore and showcase images. This project features responsive design, smooth transitions, and an intuitive user interface, making it an ideal solution for creating and managing personalized image collections | css,html,javascript,reactjs,typescript,vite | 2023-05-07T14:01:24Z | 2023-05-07T15:25:36Z | null | 1 | 0 | 1 | 0 | 0 | 2 | null | null | JavaScript |
michelhaj/asset_management_app | main | This is a responsive Django web app that I created with the help of my friend Zaid Karadsheh, its goal is to make the life of the IT department at any company easier by allowing them to manage their assets on any platform available. This web app utilizes a third-party Java script package to scan for barcodes (Asset Tag) and auto-fill that scanned barcode into a form where the user can easily fill in other relevant fields and then save update or even delete the item. there are four items that can be managed a Computer/Laptop, a Docking station, a Monitor, and a printer.

Features Breakdown
01.Home Page

This page contains a side menu and a main grid containing computers that can be filtered by typing in the filter box. Each computer has a view button and a list of printers, docking stations, and monitors connected to it.
02.View/Update/Delete Page

On this page, as the name reveals; the user can view, update, or delete an item it can be a computer/laptop, monitor, docking station, or printer.
03. Item's List page

This is where the independent assets information can be filtered, viewed, and imported as PDF, Excel, CSV, and copied to a clipboard, you can adjust and control what columns (attributes) you want to be visible.
04. Add Assets Page

Here you can either choose to manually add the assets or scan the barcode (Asset Tag) to get an empty form in case of add manually was chosen or to get a prefilled Asset Tag in case of a successful scan of the Barcode. if the item is already in the database and you scan the barcode a popup will show and state that the asset being scanned is already in the database and you will be redirected to a form containing the asset information.
finally, there is an animated popup that shows whenever an action is successful.

| IT Inventory Management system that includes a barcode scanning feature to make the process of managing assets seamless | barcode-scanner,css,django,html,it,javascript,management-system,python,sql | 2023-05-12T23:11:02Z | 2024-01-14T14:11:38Z | null | 1 | 0 | 9 | 0 | 0 | 2 | null | null | JavaScript |
CodeByAidan/A-Star-Path | main | # A-Star-Path
A* Algorithm Path Visualizer Website! CC-BY-SA-4.0

| A* Algorithm Path Visualizer Website! CC-BY-SA-4.0 | a-star,a-star-algorithm,a-star-path-finding,a-star-search,algorithm,algorithms,html,javascript | 2023-05-13T19:02:33Z | 2024-03-30T03:05:32Z | null | 1 | 8 | 22 | 1 | 0 | 2 | null | CC-BY-SA-4.0 | JavaScript |
recallwei/sse-demo | main | # SSE Demo
⭐ SSE (Server Send Event) React + Express Demo.
## Usage
### Run Node.js server
```bash
cd server
```
```bash
pnpm i
```
```bash
pnpm dev
```
### Run React client
```bash
cd web
```
```bash
pnpm i
```
```bash
pnpm dev
```
Node.js server will run on port 3333, and React client on port 5173.
## License
MIT
| ⭐ SSE (Server Send Event) React + Express Demo. | express,demo,node,react,sse,javascript | 2023-05-12T05:16:49Z | 2023-05-14T18:28:24Z | null | 1 | 0 | 5 | 0 | 0 | 2 | null | null | JavaScript |
harsh7739/Ecotourism | main | Eco Tourism Website Clone - Documentation:
Team Member :-
Harshranjan Kumar (Team Lead)
MOHD ADIL
Priya Patole
Kumar Astik
Overview:
This documentation provides an overview of the project "Eco Tourism," which involved cloning an existing eco tourism website using JavaScript, HTML, and CSS. The project was completed by a group of four individuals over a span of five days. This documentation aims to explain the purpose, features, and implementation details of the cloned website.
Purpose:
The purpose of the project was to create a functional clone of an existing eco tourism website and to get an idea of what we have learnt till now in our journey at masai. By replicating the website's design and features, the project aimed to provide a practical learning experience in web development and showcase the group's proficiency in JavaScript, HTML, and CSS.
Features:
Homepage: A visually appealing landing page that showcases the essence of eco tourism, featuring high-quality images and engaging content.
Destination Pages: Detailed pages for various eco-friendly destinations, providing information about the location, activities, accommodations, and contact details.

Booking System: A booking system that allows users to select a destination, choose their preferred dates, and make a reservation for accommodations or activities.
Responsive Design: The website is designed to be responsive, ensuring optimal viewing and interaction across different devices and screen sizes.
Tech Stack:
JavaScript: The primary programming language used for implementing interactivity and dynamic features on the website.
HTML: The markup language used for structuring the website's content and layout.
CSS: The stylesheet language used for styling the website and enhancing its visual appeal.
Implementation Details:
Front-end Development: Each team member took responsibility for specific sections of the website and implemented them using HTML for structure, CSS for styling, and JavaScript for interactivity.
Integration and Testing: The implemented sections were integrated into a cohesive whole, ensuring that all features worked together seamlessly. Extensive testing was conducted to identify and resolve any bugs or issues.
Responsive Design: The group ensured that the website was responsive by using media queries, flexible layouts, and optimized images to provide a consistent and user-friendly experience across different devices and screen sizes.
Deployment: Once the website was deemed ready for deployment, it was deployed on netlify and below is the URL for the same:
https://resonant-meringue-f6cdea.netlify.app/index.html
| This website is mainly working for explore the world . It provides facilities to book your destination, Hotels and Activities at one tap , Simple and user Friendly UI/UX. | css,html,javascript | 2023-05-03T10:45:17Z | 2023-12-22T20:11:37Z | null | 5 | 18 | 69 | 8 | 1 | 2 | null | null | JavaScript |
bbntpl/simple-things-yet | main | # Simple Things Yet
SimpleThingsYet is a modern personal blog where the only author posts blogs on a wide range of categories such as personal growth, lifelong learning, mental health, and general life observations/experiences.
I am uncertain and not entirely conscious about my decision to use the blog name. I know that it derives from the idea that what may seem simple at first impression, yet they could be helpful, challening, complex, etc.
### Related repositories
- [Simple Things Yet Admin](https://github.com/bbntpl/simple-things-yet-admin)
- [Simple Things Yet Backend API](https://github.com/bbntpl/simple-things-yet-backend)
| Simple Things Yet | my personal blog | https://imgur.com/Ax3yfis.png | blog,crud-application,javascript,vue3 | 2023-05-05T07:28:01Z | 2024-02-11T07:01:21Z | null | 1 | 3 | 34 | 0 | 0 | 2 | null | null | Vue |
saikiranpatil/my-portfolio | main | null | My personal portfolio website built using React, Tailwind CSS, Sanity CMS. | javascript,react,sanity,tailwindcss | 2023-05-11T05:52:59Z | 2023-11-29T16:43:48Z | null | 1 | 0 | 15 | 0 | 0 | 2 | null | null | JavaScript |
RahaneSayali/Web-Development-Course | main | To understand-
#HTML is used as a standard language for any website design. It acts as a static skeleton to a web application. It’s a well-standardized system.
#CSS is used to handle the presentation of the web page. It makes the website look attractive and beautiful.
#JavaScript allows scripting on your website and makes it completely dynamic in nature. It provides front end scripting for your website and is a
high-level dynamic interpreted programming language.
| So this is the introductory part where I have learned the basic concepts of HTML, CSS, and JavaScript. By following the course, you will learn some advanced concepts and build your website. Therefore, go through the course and start your journey to become a better web developer. | web-deve,website,course,css3,education,html,javascript,tutorial-code,tutorials,web-development-course | 2023-04-24T15:09:37Z | 2023-05-15T18:11:39Z | null | 1 | 0 | 35 | 0 | 0 | 2 | null | null | HTML |
gagan257/Temperature-Converter | main | null | Simple Temperature Converter | bootstrap,css,html,javascript,jquery,temperature-converter | 2023-05-02T09:31:23Z | 2023-05-03T05:08:13Z | null | 1 | 0 | 2 | 0 | 0 | 2 | null | null | CSS |
IzaacCoding36/NeoTron | main | # NeoTron
Este repositório foi criado para demonstrar um modelo de site web com JavaScript.
Este modelo de site possui maiores interações em si, e por isso pode ser considerada mais avançada.
Esse site foi criado com base na aula do Alura (a plataforma que eu estudo).
_Algumas alterações foram feitas e você também pode aproveitar os códigos disponibilizados aqui para criar o seu também! ;)_

| Este repositório foi criado para demonstrar um modelo de site web com JavaScript. | css,html,javascript,robot | 2023-05-02T03:55:21Z | 2024-05-19T23:01:31Z | null | 1 | 0 | 11 | 0 | 0 | 2 | null | MIT | HTML |
KakarottoCui/SpringBoot-XuanKeSys | main | # SpringBoot-XuanKeSys
基于JAVA SpringBoot框架兴趣班在线选课系统设计
演示视频链接:https://live.csdn.net/v/292306
使用的技术
后端:JAVA开发语言,SpringBoot框架,MySql数据库
前端:jsp页面,bootstrap框架
实现的功能
管理员、教师、学生三种角色
管理员:教师管理、学生管理、课程管理等
教师:兴趣班管理、选课管理、个人信息管理等
学生:选课、退课、个人信息管理等
详询 微信1:egvh56ufy7hh ,微信2:dabocode ,钉钉:chengxuyuandabo ,QQ:821898835 。承接商业项目、课设、毕设和论文,包括但不限于Web、APP、小程序等,课设、毕设提供远程部署和不限次数代码解答!
| 基于JAVA SpringBoot框架兴趣班在线选课系统设计 | java,javascript,jsp,mysql | 2023-04-25T02:28:05Z | 2023-12-28T02:43:52Z | null | 1 | 0 | 5 | 0 | 0 | 2 | null | null | JavaScript |
Alkaison/Web-Projects | main | # Web Projects
Welcome to the Web Projects repository! This repository contains a collection of JavaScript projects created alongside HTML and CSS. It serves as a fantastic resource for anyone looking to advance their JavaScript skills through interactive examples.
## Features
- Interactive JavaScript projects
- Built with HTML, CSS, and JavaScript
- Provides hands-on learning opportunities
- Each project focuses on a specific concept or functionality
## Table of Projects
| Sr. No. | Title | Link |
| ------------- | ------------- | ------------- |
| 1. | [Counter](./Counter/index.html "Counter") | [Link](https://alkaison.github.io/Web-Projects/Counter/index.html "Counter") |
| 2. | [Expanding Cards](./Expanding%20Cards/index.html "Expanding Cards") | [Link](https://alkaison.github.io/Web-Projects/Expanding%20Cards/index.html "Expanding Cards") |
| 3. | [Accoridan](./Accoridan/index.html "Accoridan") | [Link](https://alkaison.github.io/Web-Projects/Accoridan/index.html "Accoridan") |
| 4. | [Number Guessing Game](./Number%20Guessing%20Game/index.html "Number Guessing Game") | [Link](https://alkaison.github.io/Web-Projects/Number%20Guessing%20Game/index.html "Number Guessing Game") |
| 5. | [Temperature Converter](./Temperature%20Converter/index.html "Temperature Converter") | [Link](https://alkaison.github.io/Web-Projects/Temperature%20Converter/index.html "Temperature Converter") |
| 6. | [Hidden Search Widget](./Hidden%20Search%20Widget/index.html "Hidden Search Widget") | [Link](https://alkaison.github.io/Web-Projects/Hidden%20Search%20Widget/index.html "Hidden Search Widget") |
| 7. | [Color Picker](./Color%20Picker/index.html "Color Picker") | [Link](https://alkaison.github.io/Web-Projects/Color%20Picker/index.html) |
| 8. | [Dad Jokes](./Dad%20Jokes/index.html "Dad Jokes") | [Link](https://alkaison.github.io/Web-Projects/Dad%20Jokes/index.html) |
| 9. | [Stop Watch](./Stop%20Watch/index.html "Stop Watch") | [Link](https://alkaison.github.io/Web-Projects/Stop%20Watch/index.html) |
| 10. | [Password Generator](./Password%20Generator/index.html "Password Generator") | [Link](https://alkaison.github.io/Web-Projects/Password%20Generator/index.html "Password Generator") |
| 11. | [Calculator](./Calculator/index.html) | [Link](https://alkaison.github.io/Web-Projects/Calculator/index.html "Calculator") |
| 12. | [Linux Terminal](./Hackerman/index.html) | [Link](https://alkaison.github.io/Web-Projects/Hackerman/index.html) |
## Getting Started
To get started with these web projects, follow these steps:
1. Clone the repository:
```shell
git clone https://github.com/your-username/Web-Projects.git
```
2. Navigate to the project directory:
```shell
cd Web-Projects
```
3. Open any project folder in your preferred code editor.
4. Launch the project by opening the `index.html` file in your web browser.
5. Explore the project's functionality and experiment with the code.
## Contribution
Contributions to the Web Projects repository are welcome! If you would like to contribute, please follow these guidelines:
1. Fork the repository.
2. Create a new branch for your contribution.
3. Make your changes and additions in the project.
4. Test your changes to ensure they work as expected.
5. Commit and push your changes to your forked repository.
6. Submit a pull request, clearly describing the changes you've made.
## Support
If you need any support or have questions regarding the projects in this repository, feel free to join our Discord server [here](https://discord.gg/dF4PHpA "Byte Hub Discord").
## MIT License
This work is licensed under the [MIT License](LICENSE.md "MIT License").
| This repository contains a collection of JavaScript projects created alongside HTML and CSS. It serves as a fantastic resource for anyone looking to advance their JavaScript skills through interactive examples. | css,html,javascript,js-projects,javascript-applications,open-source,projects-list | 2023-05-08T11:22:22Z | 2023-06-15T18:15:17Z | 2023-06-15T18:15:17Z | 1 | 2 | 64 | 1 | 1 | 2 | null | MIT | JavaScript |
karimovnurullo/todo-list-typeScript | master | null | null | javascript,scss,typescript,animate-css | 2023-05-03T19:08:39Z | 2023-05-03T19:22:50Z | null | 1 | 0 | 3 | 0 | 0 | 2 | null | null | JavaScript |
data-sets/bookmark-landing-page | main | null | A simple bookmark landing page with tabbed features and faq accordion. | motion,reactjs,scss-framework,javascript | 2023-05-08T12:54:21Z | 2023-09-21T02:57:55Z | null | 1 | 0 | 59 | 0 | 0 | 2 | null | null | JavaScript |
gurvirbaraich/game-engine | main | null | Pixel2D is a 2D game engine built in TypeScript. It provides an easy-to-use and flexible platform for game developers to create 2D games quickly and efficiently. | javascript,typescript,game-engine,pixel2d | 2023-04-29T10:00:31Z | 2023-05-06T08:55:27Z | null | 1 | 0 | 11 | 0 | 0 | 2 | null | MIT | TypeScript |
srajankumar/freshies | main | # Freshies
Imagine going out with a large group of friends and enjoying a fun-filled day together. Everyone's having a great time and suddenly, thirst strikes! As the responsible one in the group, you take everyone's orders, but wait, did you miss someone's order?
## Features
- Add and manage everyone's orders
- Displays all ordered items
- Efficiently calculates and displays the total amount to be paid, eliminating the need for individuals to calculate their expenses, thereby saving time and effort.
## Getting Started
1. Fork and Clone the repository to your local machine
```bash
git clone https://github.com/<your-username>/<repo-name>.git
```
2. Install the dependencies
```bash
npm install
```
3. Start the development server
```bash
npm start
```
4. Running the commands should redirect to your browser.
## Authors
- [@srajankumar](https://github.com/srajankumar)
## Contributing
Contributions are welcome! ;)
| Freshies - A Menu App | bootstrap,react,javascript | 2023-04-29T02:00:45Z | 2023-04-30T14:27:36Z | null | 1 | 0 | 11 | 0 | 0 | 2 | null | null | JavaScript |
kristinabrueva/dr-reardon-website | main | # What is this?
A personal website that has been built using [Tailwind UI](https://tailwindui.com), [Tailwind CSS](https://tailwindcss.com) and [Next.js](https://nextjs.org).
## Getting started
To get started with this template, first install the npm dependencies:
```bash
npm install
```
Next, create a `.env.local` file in the root of your project and set the `NEXT_PUBLIC_SITE_URL` variable to your site's public URL:
```
NEXT_PUBLIC_SITE_URL=https://example.com
```
Next, run the development server:
```bash
npm run dev
```
Finally, open [http://localhost:3000](http://localhost:3000) in your browser to view the website.
## Customizing
You can start editing this template by modifying the files in the `/src` folder. The site will auto-update as you edit these files.
## Publishing a new article
You can create a new article by adding a `my-article-url.md` file in the `/pages/articles` folder. The site will auto-update as you edit these files. If you want to add pictures to the article you create a new foled `my-article-url` instead with `index.mdx` and picture files in it.
| A personal website of an astrophysisist 🔭 | javascript,nextjs,react,tailwindcss,tailwindui | 2023-05-02T02:12:55Z | 2023-11-16T00:48:01Z | null | 2 | 4 | 26 | 0 | 1 | 2 | null | NOASSERTION | JavaScript |
Eskabore/cs50x-2023 | trunk | # Welcome to My CS50x 2023 GitHub Repository!
Greetings! You've just stepped into my GitHub repository for the CS50x 2023 (Introduction to Computer Science) course. This repository serves as a digital chronicle of my journey through this comprehensive course, offering a look into the skills I've honed and the challenges I've overcome.
## Problem Sets and Projects
This repository houses an array of problem sets that I've completed as an integral part of the CS50x 2023 curriculum. Each problem set is a practical exercise underlining key concepts in computer science and programming. The problem sets span across a wide variety of subjects, starting from fundamental algorithms and data structures, moving onto more advanced areas like web development, and beyond. The completion of these problem sets paints a vivid picture of my academic growth and increasing proficiency in different sectors of computer science.
## Final Project
In addition to the problem sets, you will find my final project within this repository. This project highlights my creative problem-solving abilities and the practical application of computer science concepts learned throughout the course.
# A Friendly Reminder
While I'm thrilled to share my journey with you, it's important to remind all visitors not to duplicate the code for their own problem sets. The intent behind this repository is to document my personal learning experience in the CS50x 2023 course, rather than providing direct solutions.
**Remember: The essence of programming is about problem-solving and learning from the challenges you encounter.**
Feel free to delve into the repository, draw inspiration, and use it as a point of reference, but please ensure you uphold the principles of academic integrity and honest learning.
Thank you for your cooperation, and enjoy your journey into the world of coding!
**PS**: I am open for contribution. Visit my profile and leave me a feedback, or contact me on jl-turquin.com | This repository houses all the problem sets and my final project for CS50 2023 | algorithms,c-language,c-plus-plus,cs50,cs50x,data-structures,javascript,memory-allocation,programming,python | 2023-05-14T16:32:03Z | 2023-05-15T20:43:42Z | null | 1 | 0 | 3 | 0 | 0 | 2 | null | null | C |
deepraj21/MySphere | dev/version-2 | This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
## Getting Started
First, run the development server:
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
You can start editing the page by modifying `pages/index.tsx`. The page auto-updates as you edit the file.
[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.ts`.
The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.
This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
## Learn More
To learn more about Next.js, take a look at the following resources:
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
## Deploy on Vercel
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
| Personal Portfolio Website | css,html,javascript,bootstrap,portfolio | 2023-04-28T21:56:42Z | 2023-10-04T11:24:24Z | null | 1 | 0 | 6 | 0 | 0 | 2 | null | null | TypeScript |
ShivNandanJha/react-quiz-app-main | master |
## BrainWiz Quiz App

BrainWiz is a quiz app that challenges your knowledge on various subjects, including history, science, literature, and more. The app is built with Vite + React and styled with SCSS to provide a simple, yet attractive user interface.
### Features
- A vast collection of questions to test your knowledge on various subjects.
- User-friendly interface with intuitive navigation.
- Each question has four possible answers, and you have to select the correct one.
- After answering all questions, you get instant feedback on your performance, including the number of correct and incorrect answers.
- The app also shows you the correct answer for each question, along with an explanation.
### Getting Started
To get started with BrainWiz, you need to have Node.js installed on your machine. Then, follow these steps:
1. Clone the repository.
2. Install dependencies by running `npm install` in the project directory.
3. Start the development server by running `npm run dev`.
4. Open the app in your browser at `http://localhost:3000`.
### Contributing
If you want to contribute to BrainWiz, feel free to fork the repository and submit a pull request. You can also open an issue if you find a bug or have a suggestion.
### Credits
BrainWiz was developed by [Your Name] using Vite + React and styled with SCSS. The questions were sourced from various online sources.
### License
BrainWiz is licensed under the [MIT License](https://opensource.org/licenses/MIT). You are free to use, modify, and distribute the app as long as you include the original license and copyright notice.
| React Quiz App | javascript,quizapp,react,reactjsx,scss | 2023-05-06T15:15:33Z | 2023-05-07T15:34:01Z | null | 1 | 0 | 9 | 0 | 0 | 2 | null | null | JavaScript |
BaseMax/RestaurantGraphQL | main | # Restaurant GraphQL API
The RestaurantGraphQL API is a GraphQL-based API designed to handle multiple restaurants in a shop store. It provides various features such as searching for restaurants in a city, finding the nearest restaurant, retrieving a list of foods offered by a restaurant, and more. This README file provides an overview of the API and instructions on how to use it.
## Features
The RestaurantGraphQL API offers the following features:
- Search in a city: Users can search for restaurants in a specific city by providing the city name as a parameter.
- Distance calculation: The API can calculate the distance between a given location and all the restaurants, enabling users to find the nearest restaurant.
- Retrieve restaurant details: Users can retrieve detailed information about a specific restaurant, including its name, address, contact details, opening hours, and more.
- Get a list of foods: The API allows users to fetch a list of foods offered by a restaurant, including their names, descriptions, prices, and any other relevant details.
- Filtering: Users can apply various filters while searching for restaurants, such as food , price range, ratings, and more.
## Installation
To run the RestaurantGraphQL API locally, follow these steps:
Clone the repository:
```bash
git clone https://github.com/BaseMax/RestaurantGraphQL
```
Navigate to the project directory:
```bash
cd RestaurantGraphQL
```
Install the dependencies:
```bash
npm install
```
Set up the environment variables:
- Create a `.env` file in the project root.
- Define the necessary environment variables, such as the database connection details and API keys.
Start the server:
```bash
npm start
```
The API will be available at http://localhost:3000.
## Usage
To interact with the RestaurantGraphQL API, you need a GraphQL client or an API testing tool. Here's an example using cURL:
Make a POST request to the API endpoint (http://localhost:3000/graphql) with the following headers:
```bash
Content-Type: application/json
```
Send a GraphQL query as the request payload. Here's an example query to search for restaurants in a city:
```graphql
query RestaurantByCity($city: String!) {
restaurantByCity(city: $city) {
name
_id
location {
latitude
longitude
}
foods {
price
name
description
}
}
}
```
Replace "New York" with the desired city name.
Receive the response from the server, containing the list of restaurants in the specified city.
For detailed documentation on the available queries, mutations, and types, refer to the API documentation or the GraphQL schema.
## Examples
Here are some additional examples of GraphQL queries and mutations for various features of the RestaurantGraphQL API:
### Search in a City
Request:
```graphql
query RestaurantByCity($city: String!) {
restaurantByCity(city: $city) {
name
_id
location {
latitude
longitude
}
foods {
price
name
description
}
}
}
```
Body :
```graphql
{
"city": "london"
}
```
Response:
```json
{
"data": {
"restaurantByCity": [
{
"name": "kababi",
"_id": "649a14c72763b1002ad672c5",
"location": {
"latitude": -0.1379,
"longitude": 51.5874
},
"foods": [
{
"price": 2000,
"name": "kabab",
"description": null
},
{
"price": 200,
"name": "mast",
"description": null
},
{
"price": 1000,
"name": "gosht",
"description": null
},
{
"price": 3000,
"name": "ghorme",
"description": null
}
]
}
]
}
}
```
### Calculate Distance
Request:
```graphql
query GetRestaurantWithDistance($locationInput: LocationInput!) {
getRestaurantWithDistance(locationInput: $locationInput) {
_id
name
location {
longitude
latitude
}
}
}
```
Body :
```json
{
"locationInput": {
"latitude": -0.1379,
"longitude": 51.5874
}
}
```
Response:
```json
{
"data": {
"getRestaurantWithDistance": [
{
"_id": "649a14c72763b1002ad672c5",
"name": "kababi",
"location": {
"longitude": 51.5874,
"latitude": -0.1379
}
}
]
}
}
```
### Retrieve Restaurant Details
Request:
```graphql
query RestaurantById($restaurantByIdId: String!) {
restaurantById(id: $restaurantByIdId) {
name
address
city
foods {
price
description
name
}
}
}
```
Body :
```json
{
"restaurantByIdId": "649a14c72763b1002ad672c5"
}
```
Response:
```json
{
"data": {
"restaurantById": {
"name": "kababi",
"address": "1 London Bridge St, London SE1 9BG",
"city": "london",
"foods": [
{
"price": 2000,
"description": null,
"name": "kabab"
},
{
"price": 200,
"description": null,
"name": "mast"
},
{
"price": 1000,
"description": null,
"name": "gosht"
},
{
"price": 3000,
"description": null,
"name": "ghorme"
}
]
}
}
}
```
### Get List of Foods
Request:
```graphql
query RestaurantById($restaurantByIdId: String!) {
restaurantById(id: $restaurantByIdId) {
foods {
price
name
description
}
}
}
```
Body :
```json
{
"restaurantByIdId": "649a14c72763b1002ad672c5"
}
```
Response:
```json
{
"data": {
"restaurantById": {
"foods": [
{
"price": 2000,
"name": "kabab",
"description": null
},
{
"price": 200,
"name": "mast",
"description": null
},
{
"price": 1000,
"name": "gosht",
"description": null
},
{
"price": 3000,
"name": "ghorme",
"description": null
}
]
}
}
}
```
### Filtering Restaurants
Request:
```graphql
query SearchQuery($querySearch: QuerySearchInput!) {
searchQuery(querySearch: $querySearch) {
name
address
rating
foods {
price
description
name
}
}
}
```
Body :
```json
{
"querySearch": {
"rating": 3,
"food": "kabab",
"name": "kakabi"
}
}
```
Response:
```json
{
"data": {
"searchQuery": []
}
}
```
### Create a Restaurant
Request:
```graphql
mutation CreateRestaurant($createRestaurantInput: CreateRestaurantInput!) {
createRestaurant(createRestaurantInput: $createRestaurantInput) {
address
contact {
email
phone
}
location {
latitude
longitude
}
name
openingHours {
day
hours
}
rating
city
foods {
name
}
_id
}
}
```
Body :
```json
{
"createRestaurantInput": {
"name": "kababi",
"city": "london",
"foods": [
{ "name": "kabab", "price": 2000 },
{ "name": "mast", "price": 200 },
{ "name": "gosht", "price": 1000 },
{ "name": "ghorme", "price": 3000 }
],
"contact": {
"email": "kababigmail.com",
"phone": "989211828382"
},
"location": {
"latitude": -0.1379,
"longitude": 51.5874
},
"address": "1 London Bridge St, London SE1 9BG",
"rating": 4,
"openingHours": [
{ "day": "Monday", "hours": "10:00-22:00" },
{ "day": "Tuesday", "hours": "10:00-22:00" },
{ "day": "Wednesday", "hours": "10:00-22:00" },
{ "day": "Thursday", "hours": "10:00-22:00" },
{ "day": "Friday", "hours": "10:00-23:00" },
{ "day": "Saturday", "hours": "11:00-23:00" },
{ "day": "Sunday", "hours": "11:00-22:00" }
]
}
}
```
Response:
```json
{
"data": {
"createRestaurant": {
"address": "1 London Bridge St, London SE1 9BG",
"contact": {
"email": "kababigmail.com",
"phone": "989211828382"
},
"location": {
"latitude": -0.1379,
"longitude": 51.5874
},
"name": "kababi",
"openingHours": [
{
"day": "Monday",
"hours": "10:00-22:00"
},
{
"day": "Tuesday",
"hours": "10:00-22:00"
},
{
"day": "Wednesday",
"hours": "10:00-22:00"
},
{
"day": "Thursday",
"hours": "10:00-22:00"
},
{
"day": "Friday",
"hours": "10:00-23:00"
},
{
"day": "Saturday",
"hours": "11:00-23:00"
},
{
"day": "Sunday",
"hours": "11:00-22:00"
}
],
"rating": 4,
"city": "london",
"foods": [
{
"name": "kabab"
},
{
"name": "mast"
},
{
"name": "gosht"
},
{
"name": "ghorme"
}
],
"_id": "649a18652763b1002ad672f7"
}
}
}
```
### Get Restaurants rates greater than specified rate
Request:
```graphql
query SearchQuery($querySearch: QuerySearchInput!) {
searchQuery(querySearch: $querySearch) {
name
address
rating
foods {
price
description
name
}
}
}
```
Body :
```json
{
"querySearch": {
"rating": 3
}
}
```
Response:
```json
{
"data": {
"searchQuery": [
{
"name": "kababi",
"address": "1 London Bridge St, London SE1 9BG",
"rating": 4,
"foods": [
{
"price": 2000,
"description": null,
"name": "kabab"
},
{
"price": 200,
"description": null,
"name": "mast"
},
{
"price": 1000,
"description": null,
"name": "gosht"
},
{
"price": 3000,
"description": null,
"name": "ghorme"
}
]
}
]
}
}
```
### Get Restaurants by Price Range
Request:
```graphql
query {
restaurantsByPriceRange(minPrice: 10, maxPrice: 20) {
id
name
address
cuisine
rating
}
}
```
Response:
```json
{
"data": {
"restaurantsByPriceRange": [
{
"id": "1",
"name": "The Best Pizza",
"address": "123 Main St",
"cuisine": "Italian",
"rating": 4.5
},
{
"id": "3",
"name": "Sushi Express",
"address": "456 Cherry Blossom Ave",
"cuisine": "Japanese",
"rating": 4.8
},
...
]
}
}
```
### Get Restaurants by food
Request:
```graphql
query SearchQuery($querySearch: QuerySearchInput!) {
searchQuery(querySearch: $querySearch) {
name
address
rating
foods {
price
description
name
}
}
}
```
Body :
```json
{
"querySearch": {
"food": "kabab"
}
}
```
Response:
```json
{
"data": {
"searchQuery": [
{
"name": "kababi",
"address": "1 London Bridge St, London SE1 9BG",
"rating": 4,
"foods": [
{
"price": 2000,
"description": null,
"name": "kabab"
},
{
"price": 200,
"description": null,
"name": "mast"
},
{
"price": 1000,
"description": null,
"name": "gosht"
},
{
"price": 3000,
"description": null,
"name": "ghorme"
}
]
}
]
}
}
```
### Search Restaurants by Name
Request:
```graphql
query SearchQuery($querySearch: QuerySearchInput!) {
searchQuery(querySearch: $querySearch) {
name
address
rating
foods {
price
name
}
}
}
```
Body :
```json
{
"querySearch": {
"name": "kababi"
}
}
```
Response:
```json
{
"data": {
"searchQuery": [
{
"name": "kababi",
"address": "1 London Bridge St, London SE1 9BG",
"rating": 4,
"foods": [
{
"price": 2000,
"name": "kabab"
},
{
"price": 200,
"name": "mast"
},
{
"price": 1000,
"name": "gosht"
},
{
"price": 3000,
"name": "ghorme"
}
]
}
]
}
}
```
These examples showcase a range of additional features and demonstrate how you can use GraphQL queries and mutations to interact with the RestaurantGraphQL API. Feel free to customize and extend them based on your specific requirements.
## Contributing
If you encounter any issues or have suggestions for improvements, please submit an issue or a pull request to the GitHub repository.
## License
The RestaurantGraphQL API is open-source and released under the GPL-V3.0 License. Feel free to use, modify, and distribute the code as per the terms of the license.
Copyright 2023, Max Base
| This GraphQL-based designed to handle multiple restaurants in a shop store. It provides various features such as searching for restaurants in a city, finding the nearest restaurant, retrieving a list of foods offered by a restaurant, and more. | graphql,javascript,js,ts,typescript,restuarant,restuful-api | 2023-05-11T19:02:58Z | 2023-12-08T12:19:04Z | null | 1 | 8 | 26 | 0 | 0 | 2 | null | GPL-3.0 | TypeScript |
Colack/message-filter | main | # Message Filter
Message Filter is an NPM package that provides tools for filtering and categorizing incoming messages based on content, sentiment, or other criteria. This enables bots to more effectively manage and respond to user messages.
## Installation
To install the Message Filter package, use NPM:
```npm install message-filter```
You will also need to install all of the requirements to run the package, using NPM:
```npm install```
## Usage
Here is an example of how to use the Message Filter package to filter and categorize messages:
```javascript
const { MessageFilter, hasKeyword, getSentiment, filterMessages, categorizeMessages } = require('message-filter');
const messages = [ { content: 'Can you help me with something urgent?', sender: 'user123' }, { content: 'I need help with my account', sender: 'user456' }, { content: 'This product is amazing!', sender: 'user789' }, { content: 'I have a question about your service', sender: 'user123' }];
const messageFilter = new MessageFilter();
messageFilter.addFilter((message) => {
return hasKeyword(message, ['urgent', 'important']) && getSentiment(message) > 0;
});
messageFilter.addCategory((message) => {
if (hasKeyword(message, ['urgent', 'important']) && getSentiment(message) > 0) {
return 'urgent';
} else if (hasKeyword(message, ['help', 'support'])) {
return 'support';
} else {
return 'other';
}
});
const filteredMessages = messageFilter.filter(messages);
const categorizedMessages = messageFilter.categorize(messages);
console.log(filteredMessages);
// Output: [{ content: 'Can you help me with something urgent?', sender: 'user123' }]
console.log(categorizedMessages);
// Output: {
// urgent: [{ content: 'Can you help me with something urgent?', sender: 'user123' }],
// support: [
// { content: 'Can you help me with something urgent?', sender: 'user123' },
// { content: 'I need help with my account', sender: 'user456' },
// { content: 'I have a question about your service', sender: 'user123' }
// ],
// other: [{ content: 'This product is amazing!', sender: 'user789' }]
// }
```
First, we import the necessary functions and class from the `message-filter` package. Then, we create a new `MessageFilter` instance and add a filter and a category function using the `addFilter` and `addCategory` methods. Finally, we use the `filter` and `categorize` methods to filter and categorize the messages.
## Final Notes
Message Filter is a powerful tool for filtering and categorizing incoming messages in a way that enables bots and other software applications to more effectively manage and respond to user messages. By using the functions and methods provided by this package, you can quickly and easily filter messages based on content, sentiment, or other criteria, and categorize them for further processing. Whether you're building a chatbot, an email filtering system, or any other application that involves processing user messages, Message Filter can help you save time and increase efficiency.
| A library for filtering and categorizing incoming messages based on content, sentiment, or other criteria. | filter,javascript,nodejs,npm | 2023-05-14T04:25:01Z | 2023-10-02T16:44:08Z | null | 1 | 0 | 19 | 0 | 0 | 2 | null | NOASSERTION | JavaScript |
sdlmdev/react-mesto-api-full-gha | main | [](./actions/workflows/tests.yml)
# Проект Mesto фронтенд + бэкенд
Репозиторий для приложения проекта Mesto, включающий фронтенд и бэкенд части приложения со следующими возможностями: авторизации и регистрации пользователей, операции с карточками и пользователями.
## Функциональность
* Регистрация и авторизация пользователя
* Редактирование аватара и профиля пользователя
* Создание и удаление карточки
* Возможность лайка и дизлайка карточки
* Возможность открыть фотографии в полном размере
## Технологии
* NodeJS
* Express
* MongoDB
* Mongoose
* Nginx
* PM2
* HTML 5
* CSS 3
* JavaScript
* React JS
* БЭМ Nested
* Flexbox
* Grid Layout
* Позиционирование
* Media queries
* ООП
* Webpack
* API (GET, POST, PATCH, PUT, DELETE)
## Ссылки на проект
* [Frontend](https://mesto.sdlmdev.site/#/)
* [Backend](https://mesto.api.sdlmdev.site/)
* [Репозиторий Backend](https://github.com/sdlmdev/express-mesto-gha)
* [Репозиторий Frontend](https://github.com/sdlmdev/react-mesto-auth)
### Статус проекта: завершен
| react-mesto-api-full | api,express,flexbox,javascript,mongodb,mongoose,nodejs,react | 2023-04-29T21:50:08Z | 2024-04-29T17:35:28Z | null | 1 | 0 | 19 | 0 | 0 | 2 | null | null | JavaScript |
WYMma/GestionLivres | master | # Rapport de Projet - Interface de Description de Livres React
Ce projet est une application React qui fournit une interface conviviale pour la description de livres, ainsi qu'une barre de navigation contenant les sections "Home", "Livres" et "Contact". Il utilise Node.js et CSS pour sa mise en œuvre, avec les fonctionnalités nécessaires pour la manipulation de livres et la création d'interfaces pour chaque section.
## Pour commencer
Pour exécuter le projet localement, suivez les étapes ci-dessous :
1. Clonez le dépôt : `git clone https://github.com/WYMma/GestionLivres.git`
2. Accédez au répertoire du projet : `cd GestionLivres`
3. Executer le projet : `npm start`
## Scripts disponibles
Dans le répertoire du projet, vous pouvez exécuter les scripts suivants :
- `npm start` : Lance l'application en mode développement. Ouvrez [http://localhost:3000](http://localhost:3000) pour la visualiser dans votre navigateur. La page se rechargera automatiquement lorsque vous apportez des modifications, et les erreurs de lint seront affichées dans la console.
- `npm test` : Lance l'exécution des tests en mode interactif. Consultez la documentation sur [l'exécution des tests](https://facebook.github.io/create-react-app/docs/running-tests) pour plus d'informations.
- `npm run build` : Construit l'application pour la production dans le dossier `build`. Elle regroupe React en mode production et optimise la build pour de meilleures performances. La build est minifiée et les noms de fichiers incluent des hachages. Votre application est maintenant prête à être déployée. Consultez la documentation sur le [déploiement](https://facebook.github.io/create-react-app/docs/deployment) pour plus d'informations.
- `npm run eject` : **Remarque : il s'agit d'une opération à sens unique. Une fois que vous avez effectué l'éjection, vous ne pouvez pas revenir en arrière !** Cette commande est utilisée pour supprimer la dépendance de build du projet et copier tous les fichiers de configuration ainsi que les dépendances transitives (webpack, Babel, ESLint, etc.) dans le projet. Elle permet d'avoir un contrôle total sur la configuration, mais elle doit être utilisée avec prudence.
## Composants
### Composant de Description de Livres
Le composant de description de livres fournit une interface pour afficher les détails des livres tels que le titre, la description et l'image de couverture. Chaque livre est identifié par un identifiant unique, et le composant prend en charge les fonctionnalités d'ajout et de suppression de livres, facilitant ainsi la manipulation des données.
### Composant de la Barre de Navigation
Le composant de la barre de navigation est composé des sections "Accueil", "Livres" et "Contact". Il permet une navigation fluide entre les différentes sections de l'application. Des interfaces correspondantes ont été créées pour chaque section afin d'offrir une expérience utilisateur optimale.
## Gestion des Routes
La bibliothèque react-router-dom est utilisée pour une gestion efficace des routes au sein de l'application. Elle permet des transitions fluides entre les différentes sections en établissant les routes appropriées entre les composants.
## Conclusion
En conclusion, ce projet React crée avec succès une interface conviviale pour la description de livres en utilisant Node.js et CSS. Deux composants JSX, à savoir le composant de description de livres et le composant de la barre de navigation, ont été développés. Le composant de description de livres permet une manipulation facile des données des livres, tandis que le composant de la barre de navigation permet une navigation fluide entre les sections. Le projet utilise de manière efficace la bibliothèque react-router-dom pour une gestion efficace des routes.
## Auteur
* **Yassin Manita** - *Étudiant en Informatique* - [Yassin Manita](https://github.com/WYMma)
Consultez mon [LinkedIn](https://tn.linkedin.com/in/yassin-manita12) pour plus d'informations.
| null | bookmanagementsystem,books,bookstoreonline,bootstrap,css,javascript,js,nodejs,react,reactjs | 2023-05-15T18:18:29Z | 2023-05-15T19:24:07Z | null | 1 | 0 | 6 | 0 | 0 | 2 | null | null | JavaScript |
mohamed-montaser1/my-portfolio | main | <h1>Hello There 👋</h1>
<hr>
<center>Welcome In My Modern Portfolio</center>
<!-- built with (lang and tools) -->
<h2>Built With...</h2>
<ul>
<li>React</li>
<li>Mui</li>
<li>Vite</li>
<li>Node js</li>
<li>Express</li>
<li>Mongodb</li>
</ul>
<hr>
<!-- fonts and colors -->
<!-- how to install it -->
<h2>How You Can Install It</h2>
<ol>
<li>Clone Repo</li>
<li><code>npm install</code> in root folder</li>
<li><code>npm run dev</code> to start</li>
</ol>
| my portfolio | typescript,eslint,javascript,react,vite,express,mongodb,nodejs,rest-api | 2023-05-05T04:08:52Z | 2023-06-08T22:08:06Z | null | 1 | 0 | 8 | 0 | 0 | 2 | null | null | TypeScript |
RcdsDw/Portfollio | main | ## Portfollio
Quelques uns de mes projets sous forme de carte à jouer.
J'ai commencé ce projet car je voulais dans un premier temps continuer à m'exercer sur le développement front-end.
J'ai eu l'idée de ce portfollio où je pourrais présenter quelqus uns de mes projets et le montrer aux entreprises dans lesquelles je voudrais postuler en plus de mon cv.
J'ai adoré faire ce projet malgré le temps passé dessus et suis très fier du résultat.
Démo : [Portfollio](https://rcdsdw.github.io/Portfollio)
Outils Utilisés
- HTML 5
- CSS 3
- CSS Animations
- Javascript
- Flexbox
Ce que j'ai appris
- Effectuer et utiliser des pages de chargement avec "setTimout".
- Faire des effets 3d sur des cartes et plusieurs animations CSS.
- Réaliser un effet de lumière qui suit mon curseur.
- Trouver la position x et y de ma souris à l'aide nottament de ".getBoundingClientRect()".
- Construire un bouton de téléchargement.
Des sites ou vidéos qui m'ont servi
- Le premier site qui m'a servi et qui me sert tous les jours où je code : [Mozilla](https://developer.mozilla.org/fr/docs/Web)
- Cette première vidéo qui m'a donné l'idée de faire des cartes à jouer pour mes projets : [Youtube](https://www.youtube.com/watch?v=TkP1lTvjPnk&t=407s)
- Cette deuxième vidéo pour apprendre à faire un effet 3d réaliste sur une carte et à trouver la position de la souris et l'utiliser correctement : [Youtube](https://www.youtube.com/watch?v=jXBc0AHZ2Ik&pp=ygUNY2FydGUgM2QgdHV0bw%3D%3D)
- Ce site ou j'ai essayé de décortiquer le code pour comprendre les différentes utilisations : [Pokémon-Cards](https://poke-holo.simey.me/) | Quelques uns de mes projets sous forme de carte à jouer. | card,card-game,css3,flexbox,html5,javascript,pokemon,portfolio,youtube | 2023-04-28T15:12:03Z | 2023-06-15T09:13:08Z | null | 1 | 0 | 13 | 0 | 0 | 2 | null | null | JavaScript |
melsayedshoaib/Budget_Planner | main | # Budget Planner Appliacation
## Key Features
* Determine your budget by adding your budget amount at the very beginning of the application.
* Track your budget from the budget statistics panel, you can track your overall budget, remaining budget, and what has been spent so far so you can make sure that you are within the range of your overall budget.
* Add/remove expenses with keeping your budget on sight, so you can track your budget hand-in-hand with your expenses.
## 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)
| Budget Planner Application lets you track your budget and expenses. | budget-app,css3,html5,javascript,react,reactjs,redux,redux-toolkit,store,tailwind | 2023-04-30T17:47:48Z | 2023-05-01T00:42:09Z | null | 1 | 0 | 3 | 0 | 0 | 2 | null | null | JavaScript |
lordksix/producerApp | main | <a name="readme-top"></a>
<div align="center">
<h3><b>Producer Web App</b></h3>
</div>
# 📗 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](#deployment)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [❓ FAQ (OPTIONAL)](#faq)
- [📝 License](#license)
# 📖 [Producer Web App] <a name="about-project"></a>
**Producer Web App** is a project for a company that requires a company website where it can login to manage its data, show information about the company and, also to showcase its past, current and future projects, sell tickets, show availability in events, with more function to be added.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>Client</summary>
<ul>
<li><a href="https://www.w3.org/TR/2011/WD-html5-20110405/">HTML5</a></li>
<li><a href="https://www.w3.org/Style/CSS/specs.en.html">CSS</a></li>
<li><a href="https://www.ecma-international.org/publications-and-standards/standards/ecma-262/">JavaScript</a></li>
<li><a href="#">Python</a></li>
</ul>
</details>
<details>
<summary>Framework</summary>
<ul>
<li><a href="#">Django</a></li>
</ul>
</details>
<details>
<summary>Database</summary>
<ul>
<li><a href="#">DB SQlite3</a></li>
</ul>
</details>
### Key Features <a name="key-features"></a>
- **Lading Page for activities**
- **Mobile first development**
- **Responsiveness and flexibility for any screen size**
- **Fast access to social media and other ways of contact**
- **Easy to the eyes and cultivating at the same time**
- **Capability to Play and Plug with DB**
- **Dinamic creation of content**
## 🚀 Live Demo <a name="live-demo"></a>
No live demo available, yet.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 💻 Getting Started <a name="getting-started"></a>
To get a local copy up and running, follow these steps.
### Prerequisites
In order to run this project you need:
To clone or fork and run it in a browser
### Setup
To get this project up and running locally on your computer:
1. Set up the [Python development environment](https://developer.mozilla.org/en-US/docs/Learn/Server-side/Django/development_environment).
We recommend using a Python virtual environment.
> **Note:** This has been tested against Django 3.11.1 (and may not work or be "optimal" for other versions).
Clone this repository to your desired folder where the virtual enviroment is applied:
For example, using Ubuntu:
```sh
cd my-desired-folder
git clone git@github.com:lordksix/producer-wesite.git
```
For more information on how to clone or fork a repository:
- <a href="https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository">How to clone a repo</a>
- <a href="https://docs.github.com/en/get-started/quickstart/fork-a-repo">How to fork a repo</a>
### Install
Assuming you have Python setup, run the following commands (if you're on Windows you may use `py` or `py -3` instead of `python` to start Python):
```
pip3 install -r requirements.txt
python3 manage.py makemigrations
python3 manage.py migrate
python3 manage.py collectstatic
python3 manage.py test # Run the standard tests. These should all pass.
python3 manage.py createsuperuser # Create a superuser
```
### Usage
To run the project, the following command has to be followed inside the project producerApp folder.
```
python3 manage.py makemigrations
python3 manage.py migrate
python3 manage.py runserver
```
1. Open a browser to `http://127.0.0.1:8000/admin/` to open the admin site
1. Create a few test objects of each type.
1. Open tab to `http://127.0.0.1:8000` to see the main site, with your new objects.
### Run tests
There are no test available for this project.
### Deployment
To deploy this project, use any web hosting service.
This project is not deployed yet.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 👥 Authors <a name="authors"></a>
👤 **Author**
- GitHub: [@lordksix](https://github.com/lordksix)
- Twitter: [@wapasquel](https://github.com/lordksix)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
Future changes:
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🤝 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>
## ⭐️ Show your support <a name="support"></a>
If you like this project, I encourage you to clone, fork and contribute. Our community and knowledge grows with each engagement.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🙏 Acknowledgments <a name="acknowledgements"></a>
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ❓ FAQ <a name="faq"></a>
- **Do I need a IDE or a special text editor to make changes?**
- No, you don't. You can use NotePad to make changes.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 📝 License <a name="license"></a>
This project is [GNU GENERAL PUBLIC LICENSE V3](./LICENSE) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| Django based template for a producer website with events, tickets and more | css,django,html,javascript | 2023-04-23T03:58:04Z | 2023-04-29T21:10:50Z | null | 1 | 4 | 38 | 0 | 0 | 2 | null | GPL-3.0 | JavaScript |
prateekmedia/brainx | main | # brainx
Building the second brain
| Building the second brain | javascript,react,second-brain | 2023-05-06T06:21:38Z | 2023-07-14T03:30:02Z | null | 2 | 8 | 42 | 0 | 0 | 2 | null | AGPL-3.0 | JavaScript |
stackblogger/adults | master | 

# adults
A simple JavaScript / TypeScript library to detect bad words. Use it with your custom list of bad words.
## Installation
```bash
npm install adults
```
## Usage
```typescript
// TypeScript Usage
import { addWords, isBad } from 'adults';
// JavaScript Usage
const { addWords, isBad} = require('adults');
addWords('some', 'custom', 'word'); // add your list of custom words here
const isBadWord = isBad('This is a sample xxx content', 'Some more custom word content here');
console.log(isBadWord);
// OUTPUT true
const isItBad = isBad('Hey StackBlogger!');
console.log(isItBad);
// OUTPUT false
```
### License
[MIT](https://choosealicense.com/licenses/mit/)
| A simple JavaScript / TypeScript library to detect adult words. | bad,badword,content,detect,words,javascript,typescript,bad-word-filter,nudity,nudity-detection | 2023-05-07T10:34:17Z | 2023-05-10T18:43:10Z | null | 1 | 0 | 11 | 0 | 0 | 2 | null | MIT | TypeScript |
amitjimiwal/AntiNormieHub | main | # AntiNormieHub - PWA Movie Website

Tech Stack - `React` `Redux` `Redux-Toolkit`
## Installation
To run AntiNormieHub locally or contribute to its development, follow these steps:
1. Clone the repository to your local machine:
```bash
git clone https://github.com/amitjimiwal/AntiNormieHub.git
```
2. Change into the project directory:
```bash
cd AntiNormieHub
```
3. Install the required dependencies:
```bash
npm install
```
4. Start the development server:
```bash
npm start
```
5. Open your web browser and navigate to http://localhost:3000 to access AntiNormieHub.
### Contributing
Contributions to this project are welcome. If you find any bugs or have suggestions for improvements, feel free to open an issue or create a pull request.
1. Fork the repository from the GitHub page: [https://github.com/amitjimiwal/AntiNormieHub](https://github.com/amitjimiwal/AntiNormieHub)
2. Clone your forked repository to your local machine.
3. Create a new branch for your feature or bug fix:
```bash
git checkout -b feature/your-feature-name
```
4. Make your changes and commit them with descriptive commit messages:
```bash
git commit -m "Add new feature" -m "Description of the changes."
```
5. Push the changes to your forked repository:
```bash
git push origin feature/your-feature-name
```
6. Create a pull request on the original repository, explaining the changes you made and their benefits.
We appreciate your contributions, and together, we can make this Project even better!
## License
AntiNormieHub is an open-source project licensed under the [MIT License](LICENSE). You can use, modify, and distribute the code under the terms of this license.
## Contact
If you have any questions, suggestions, or feedback, you can reach out to the project maintainers:
- Amit Jimiwal - [GitHub](https://github.com/amitjimiwal)
We appreciate your interest and support for ShareMSG!
---
| A Progressive Web App (PWA) Movie website | javascript,reactjs,redux,tailwindcss,vite,redux-toolkit,open-source,opensource,opensource-projects | 2023-04-27T18:05:50Z | 2023-08-04T11:52:42Z | null | 1 | 1 | 39 | 0 | 0 | 2 | null | null | JavaScript |
olga-007/calculator | main | # Calculator
This calculator is built with its own functions to evaluate expressions. It does not use `eval()` or similar approaches that evaluate a string.
It also has keyboard support.
<img src="./image.png" />
| A simple calculator | css,javascript | 2023-05-14T22:39:11Z | 2023-06-30T22:36:49Z | null | 1 | 0 | 21 | 0 | 0 | 2 | null | null | JavaScript |
ambasta-shalu/url-shortner-frontend | main | null | This is a client part of MERN-app which transforms long, ugly links into nice, memorable and trackable short URLs with View Count 🤓 | css3,html5,javascript,reactjs,formik-form,mern-stack-development,vscode,zustand,jwt-token,react-hot-toast | 2023-05-16T08:42:58Z | 2023-09-05T09:59:19Z | null | 1 | 0 | 75 | 0 | 0 | 2 | null | null | JavaScript |
wanderlima/js-scroll-animations | main | # ⭥ JS Scroll Animations
[](https://opensource.org/licenses/MIT)
JS Scroll Animations is a simple and lightweight library for scroll animations. Follow the instructions below to set it up.
## Highlights
1. Vanilla JS
2. Easy setup using HTML dataset property
3. JS Actions
4. CSS Animations
## Instructions
### 1. Install or download the package
Download or install the package using a package manager:
```console
yarn add js-scroll-animations
```
or
```console
npm i js-scroll-animations
```
### 2. Import the package assets
In your HTML file, add the following link and script tags:
```html
<link
rel="stylesheet"
href="../node_modules/js-scroll-animations/dist/styles.css"
/>
<script src="../node_modules/js-scroll-animations/dist/js-scroll-animations.js"></script>
```
Alternatively, if you are using a module bundler, you can import the assets in your JavaScript file:
```js
import jsScroll from "js-scroll-animations";
import "js-scroll-animations/dist/styles.css";
```
### 3. Add the dataset property to the elements you want to animate
Add the data-jsscroll property to activate the scroll animation for an element. You can use other dataset properties to configure the animation, such as data-jsscroll-delay and data-jsscroll-threshold. For example:
```html
<div
data-jsscroll
data-jsscroll-delay="200"
data-jsscroll-threshold="1"
data-jsscroll-slide-top
class="box"
>
content
</div>
```
### 4. Initialize the animations
Initiate the animations with the following code:
```js
const jsScroll = jsScrollAnimations();
jsScroll.init();
```
**That's it!** Check the demo page to see how it works and how to set it up.
## Properties
The following table shows the available dataset properties that you can use to configure the scroll animations:
| PROPERTY | DEFAULT | DESCRIPTION |
| ---------------------------- | ------- | -------------------------------------------------------------------------------------------------------- |
| `data-jsscroll` | | Activate scroll animation for the element. A fade-in animation will be used as the default. |
| `data-jsscroll-delay` | `0` | A delay to trigger the animation when the element is in the view. |
| `data-jsscroll-threshold` | `1.25` | Threshold to adjust when the animation will be triggered based on the element's y position and the view. |
| `data-jsscroll-fade-in` | | Fade-in animation. |
| `data-jsscroll-slide-top` | | Slide from the bottom to the top of the element position animation. |
| `data-jsscroll-slide-bottom` | | Slide from the top to the bottom of the element position animation. |
| `data-jsscroll-slide-left` | | Slide from the left to the right of the element position animation. |
| `data-jsscroll-slide-right` | | Slide from the right to the left of the element position animation. |
## Actions
The following table shows the available JS actions available to control the animations:
| ACTION | DESCRIPTION |
| --------- | ---------------------------------------------------------------------------------------------------------- |
| `init` | Initiate the scroll animations. |
| `pause` | Pause the scroll animations for the non-triggered animations. Use init to resume the animations. |
| `reset` | Resets all elements to their non-animated state, which will trigger the animations again when scrolled to. |
| `disable` | Disables all animations, making all elements visible. |
---
This project was created by [Wander Lima](https://wanderlima.com) and is licensed under the [MIT license](LICENSE).
| ⭥ Simple and lightweight library for scroll animations | js,animation,effects,javascript,scroll | 2023-04-24T21:36:08Z | 2023-09-13T00:00:32Z | null | 1 | 0 | 10 | 0 | 0 | 2 | null | MIT | JavaScript |
Arisamiga/Tic-Tac-Toe | main | # Tic-Tac-Toe

This is a webpage where you can play against your friends in the classic game of Tic-Tac-Toe.
This is a nice little side project.
## How to play?
When going on the webpage either on https://arisamiga.github.io/Tic-Tac-Toe or your localhost you press on the `Start Game` Button and you will see the previous letters disappear.
Then a indication message will appear on the bottom of the screen showing who's turn it is.
It will also show if a person has won or if it ended in a draw.
To restart the Tic Tac Toe Game simply press on the `Reset` Button
| Tic-Tac-Toe Webpage | easy-to-use,fun,game,games,html-css-javascript,javascript,side-project,tic-tac-toe,learn,tic-tac-toe-game | 2023-04-27T21:34:45Z | 2023-12-04T15:48:21Z | null | 3 | 3 | 30 | 0 | 1 | 2 | null | null | CSS |
AndrikSokol/TravelBy | master | null | MERN Application(MongoDB, Express.js, React, Node.js, tailwind) | express,javascript,mongidb,nodejs,react,tailwind | 2023-04-22T11:52:44Z | 2024-02-12T18:23:43Z | null | 1 | 1 | 31 | 0 | 0 | 2 | null | null | TypeScript |
yash-purkar/QuickDeal | master | <div align="center">
<img src="https://i.ibb.co/f4VvsJx/logo.png" width="110" height="90"/>
# QuickDeal
</div>
## How to install and run locally ?
```
$ git clone https://github.com/yash-purkar/QuickDeal.git
$ cd QuickDeal
$ npm install
$ npm start
```
## **Features-**
- Home Page
- Product Listing Page
- Single Product Page
- Filters by:
- Price
- Category
- Sizes
- Ratings
- Search
- Wishlist Management
- Cart Management
- Search
- Loading & Alerts
- Authentication:
- Sign-up
- Login
- Logout
- Address Management
- Checkout
- Payment Gateway Integration
- Fully Responsive
- Toasts
## **Built With-**
- React Js
- React Context API + useReducer
- React Router v6 for routing
- Vanilla CSS for styling
- MockBee for backend
- Razorpay payment gateway
## **Demo-**
https://github.com/yash-purkar/QuickDeal/assets/109805926/024124bc-7b33-400e-9a66-074ee8fe13c5
| The e-commerce app QuickDeal offers a wide range of fashion clothes for online showcasing and selling. It incorporates essential features such as cart management, wishlist management, payment integration, address management, and other key functionalities required for an e-commerce platform. | css,javascript,reactjs | 2023-05-14T15:06:54Z | 2024-03-08T17:21:16Z | null | 1 | 31 | 164 | 0 | 0 | 2 | null | null | JavaScript |
burakbehlull/so | main | # so-site | Portfolio cross platform trial | nodejs,react,scss,ejs,electronjs,javascript,react-native,mongodb | 2023-05-01T13:50:22Z | 2023-11-23T16:22:26Z | null | 1 | 0 | 24 | 0 | 0 | 2 | null | MIT | JavaScript |
minhlong149/social-media-client | main | # Social Media App
Một [trang mạng xã hội](https://ie213-social-media-app.onrender.com/) xây dựng bằng `React.js` và `Tailwind CSS` với các chức năng cơ bản như đăng nhập, kết bạn, đăng bài viết và bình luận; truy vấn dữ liệu từ [máy chủ Node.js/Express](https://github.com/minhlong149/social-media-server) và cơ sở dữ liệu `MongoDB`. *Đây là đồ án môn học Kỹ thuật phát triển hệ thống Web của nhóm sinh viên trường Đại học Công nghệ Thông tin - ĐHQG TP.HCM*.
- [Social Media App](#social-media-app)
- [Yêu cầu chức năng](#yêu-cầu-chức-năng)
- [Thiết kế giao diện](#thiết-kế-giao-diện)
- [Hướng dẫn cài đặt](#hướng-dẫn-cài-đặt)
- [Tác giả](#tác-giả)
## Yêu cầu chức năng
- Cho phép người dùng tạo tài khoản mới và đăng nhập.
- Hiển thị danh sách bài đăng của bạn bè trên trang chủ. Với mỗi bài viết, người dùng có thể thích hoặc truy cập trang cá nhân của người đăng bài. Khi ấn vào một bài viết, người dùng có thể xem chi tiết nội dung bài đăng đó, bao gồm cả bình luận.
- Hiển thị nội dung chi tiết của bài đăng. Người dùng có thể xem và bình luận nội dung mới tại đây. Tại đây, người dùng cũng có thể thích hoặc truy cập trang cá nhân của người đăng bài.
- Hiển thị trang cá nhân của mỗi người dùng và các thông tin liên quan như tên, danh sách bài đăng và bạn bè. Sẽ có một trang cài đặt, nơi mà người dùng có thể chỉnh sửa thông tin cá nhân của mình tại đây. Khi ấn vào một bạn bè, người dùng sẽ được chuyển hướng đến trang cá nhân của người dùng đó. Khi ấn vào một bài viết, người dùng có thể xem chi tiết nội dung bài đăng đó, bao gồm cả bình luận.
- Hiển thị danh sách bạn bè của người dùng, cùng với tùy chọn quản lý lời mời cũng như gợi ý kết bạn. Khi ấn vào một người dùng, người dùng sẽ được chuyển hướng đến trang cá nhân của người dùng đó. Người dùng cũng có thể hủy kết bạn với một người dùng tại đây.
- Cho phép người dùng tìm kiếm bạn bè hoặc bài đăng theo từ khóa.
- Tạo và gửi đi thông báo theo thời gian thực từ các hoạt động của bạn bè như lời mời kết bạn, bài đăng và bình luận.
## Thiết kế giao diện
- Màn hình đăng nhập/đăng ký cho phép người dùng tạo tài khoản mới hoặc đăng nhập vào tài khoản hiện có.
- Màn hình trang chủ hiển thị danh sách các bài viết nổi bật từ người dùng khác, cho phép người dùng đăng bài viết, đăng ảnh, thích, bình luận và xem thông báo.
- Thanh menu nằm ở phía trên cùng của mỗi màn hình, chứa các nút điều hướng đến các màn hình khác, ví dụ: trang chủ, trang cá nhân, kết bạn, tìm kiếm. Cũng có nút đăng xuất để người dùng thoát khỏi tài khoản.
- Màn hình chi tiết bài viết hiển thị nội dung của một bài viết từ người dùng khác trên màn hình trang chủ hoặc từ chính người dùng trên màn hình trang cá nhân. Bao gồm ảnh đại diện, tên và thời gian đăng của người đăng; nội dung văn bản và ảnh (nếu có) của bài viết; số lượng thích và bình luận; các nút thích và bình luận để người dùng tương tác với bài viết.
- Màn hình đăng bài viết cho phép người dùng nhập nội dung bài viết, chọn ảnh để đính kèm và nhấn nút đăng để chia sẻ với mọi người.
- Màn hình kết quả tìm kiếm hiển thị thông tin của một bài viết hoặc một người dùng liên quan đến từ khóa được nhập trên màn hình tìm kiếm. Bao gồm ảnh đại diện, tên và nội dung rút gọn của bài viết hoặc người dùng; các nút xem chi tiết để chuyển đến màn hình trang cá nhân của người dùng hoặc màn hình chi tiết bài viết.
- Màn hình kết bạn hiển thị danh sách các gợi ý kết bạn từ hệ thống, cho phép người dùng gửi lời mời kết bạn hoặc chấp nhận lời mời kết bạn từ người dùng khác.
- Khung gợi ý kết bạn hiển thị thông tin của một người dùng khác được hệ thống gợi ý là có thể quen biết hoặc có chung sở thích với người dùng hiện tại trên màn hình kết bạn. Bao gồm ảnh đại diện, tên, giới thiệu và số lượng bạn bè chung (nếu có) của người dùng được gợi ý; các nút gửi lời mời kết bạn hoặc từ chối để người dùng quyết định có muốn kết bạn với người đó hay không.
- Màn hình thông báo hiển thị các thông báo gửi đến người dùng, ví dụ: ai đó đã thích hoặc bình luận bài viết của bạn, ai đó đã gửi lời mời kết bạn cho bạn.
## Hướng dẫn cài đặt
- Cài đặt các gói package bằng lệnh `npm install`, sau đó khởi chạy bằng lệnh `npm start`.
> Nếu không có nhu cầu sử dụng chức năng thông báo theo thời gian thực, có thể build và deploy các static file trong thư mục `dist` sau khi chạy lệnh `npm run build`.
## Tác giả
- [Nguyễn Đào Minh Long](https://github.com/minhlong149) - Gửi nhận thông báo theo thời gian thực
- [Trần Trọng Nguyên](https://github.com/Norman-Tran) - Tạo tài khoản mới và đăng nhập
- [Quách Kiều Oanh](https://github.com/Qanh195) - Hiển thị và lọc danh sách các bài viết trên trang chủ
- [Lưu Chí Thịnh](https://github.com/Thinh446274) - Tìm kiếm bài viết và người dùng
- [Lương Phúc Vinh](https://github.com/vinhlp02) - Quản lý trang thông tin cá nhân
- [Mai Ngọc Bích](https://github.com/bichmn) - Tạo bài viết mới
- [Lê Nguyễn Bá Duy](https://github.com/ZuyLeLe) - Quản lý danh sách bạn bè và lời mời kết bạn
| Used React, Tailwind CSS & Socket.io to connect with your friends | react,tailwindcss,vite,javascript,socket-io | 2023-05-01T09:20:32Z | 2023-06-16T08:04:48Z | null | 7 | 25 | 23 | 0 | 2 | 2 | null | null | JavaScript |
BaseMax/RestaurantGraphQLAPI | main | # RestaurantGraphQL API
The RestaurantGraphQL API is a GraphQL-based API designed to handle multiple restaurants in a shop store. It provides various features such as searching for restaurants in a city, finding the nearest restaurant, retrieving a list of foods offered by a restaurant, and more.
## Features
The RestaurantGraphQL API offers the following features:
- Search in a city: Users can search for restaurants in a specific city by providing the city name as a parameter.
- Distance calculation: The API can calculate the distance between a given location and all the restaurants, enabling users to find the nearest restaurant.
- Retrieve restaurant details: Users can retrieve detailed information about a specific restaurant, including its name, address, contact details, opening hours, and more.
- Get a list of foods: The API allows users to fetch a list of foods offered by a restaurant, including their names, descriptions, prices, and any other relevant details.
- Filtering: Users can apply various filters while searching for restaurants, such as cuisine type, price range, ratings, and more.
## GraphQL Demo



## Available Queries
The following queries are available in the API:
- `restaurants(query: SearchRestaurantsInput!)`: Returns a list of restaurants based on the provided search query.
- `restaurant(id: ID!)`: Returns detailed information about a specific restaurant.
- `food(id: ID!)`: Returns detailed information about a specific food item.
- `foods(restaurantId: ID!, pagination: Pagination!)`: Returns a list of food items offered by a specific restaurant.
- `reviews(restaurantId: ID!, pagination: Pagination!)`: Returns a list of reviews for a specific restaurant.
- `user`: Returns information about the currently authenticated user.
- `getAllUsers`: Returns a list of all users (requires superadmin role).
## Available Mutations
The following mutations are available in the API:
- `register(input: RegisterUserInput!)`: Registers a new user with the provided information.
- `login(input: LoginUserInput!)`: Logs in an existing user with the provided information.
- `createRestaurant(input: CreateRestaurantInput!)`: Creates a new restaurant (requires admin or superadmin role).
- `updateRestaurant(input: UpdateRestaurantInput!)`: Updates an existing restaurant (requires admin or superadmin role).
- `deleteRestaurant(id: String!)`: Deletes an existing restaurant (requires admin or superadmin role).
- `createFood(input: CreateFoodInput!)`: Creates a new food item for a specific restaurant (requires admin or superadmin role).
- `updateFood(input: UpdateFoodInput!)`: Updates an existing food item (requires admin or superadmin role).
- `deleteFood(id: String!)`: Deletes an existing food item (requires admin or superadmin role).
- `createReview(input: CreateReviewInput!)`: Creates a new review for a specific restaurant.
## Usage
### Clone the repo
Clone this repositoryto get the source code:
```
git clone https://github.com/basemax/RestaurantGraphqlApi
```
### Install dependencies
Run `npm install` to install Node dependencies:
```
npm install
```
### Create admin account
Run the following command to create a superuser account:
```
npx nest start --entryFile create-admin.js
```
It will prompt you for an email, password, and name to create the superuser account.
### Run in development
Run the app using Docker Compose:
```
sudo docker-compose -f docker-compose.dev.yml up
```
This will start the app in development mode, with hot reloading enabled.
The GraphQL playground will be available at `http://localhost:3000/graphql`
# Examples
Here are some examples of queries and mutations that can be executed using the RestaurantGraphQL API:
### Query for restaurants in a specific city
```graphql
query {
restaurants(query: {city: "New York"}) {
id
name
location {
latitude
longitude
}
address
rating
cuisine
}
}
```
### Query for a specific restaurant and its details
```graphql
query {
restaurant(id: "12345") {
id
name
location {
latitude
longitude
}
address
rating
cuisine
contact {
email
phone
}
openingHours {
day
hours
}
}
}
```
### Query for a list of foods offered by a restaurant
```graphql
query {
foods(restaurantId: "12345", pagination: {limit: 10, skip: 0}) {
id
name
description
price
}
}
```
### Mutation to create a new restaurant
```graphql
mutation {
createRestaurant(input: {
name: "New Restaurant",
location: {latitude: 51.5074, longitude: 0.1278},
address: "123 Main Street",
rating: 4.5,
cuisine: "Italian",
contact: {email: "info@newrestaurant.com", phone: "123-456-7890 "},
openingHours: [
{day: Monday, hours: "10:00-22:00"},
{day: Tuesday, hours: "10:00-22:00"},
{day: Wednesday, hours: "10:00-22:00"},
{day: Thursday, hours: "10:00-22:00"},
{day: Friday, hours: "10:00-23:00"},
{day: Saturday, hours: "11:00-23:00"},
{day: Sunday, hours: "11:00-22:00"}
]
}) {
id
name
location {
latitude
longitude
}
address
rating
cuisine
}
}
```
### Mutation to update an existing restaurant
```graphql
mutation {
updateRestaurant(input: {
id: "12345",
name: "Updated Restaurant Name",
rating: 4.8
}) {
id
name
rating
}
}
```
### Mutation to delete a food item
```graphql
mutation {
deleteFood(id: "12345")
}
```
# API Documentation
This API uses GraphQL to provide data about restaurants and their menus.
## Queries
### Restaurant queries
- `restaurants(query: SearchRestaurantsInput)` - Returns all restaurants matching the search parameters. You can search by:
- `name`
- `city`
- `cuisine`
- `minPrice`
- `maxPrice`
- `nearBy { radius, latitude, longitude }`
- `restaurant(id: ID!)` - Returns a single restaurant object by ID.
- `distance(location: LocationInput!)` - Returns the distance between a given location and the restaurant.
### Food menu queries
- `food(id: ID!)` - Returns a single food item by ID.
- `foods(restaurantId: ID!, pagination: Pagination)` - Returns all food items for a restaurant, with pagination. Pagination parameters are:
- `limit`
- `skip`
### Review queries
- `reviews(restaurantId: ID!, pagination: Pagination)` - Returns all reviews for a restaurant, paginated.
- `user` - Returns the current authenticated user object.
## Mutations
### Restaurant mutations
- `createRestaurant(input: CreateRestaurantInput!)` - Creates a new restaurant. Input fields are:
- `name`
- `location { latitude, longitude }`
- `address`
- `rating`
- `cuisine`
- `contact { email, phone }`
- `openingHours [ { day, hours } ]`
- `updateRestaurant(input: UpdateRestaurantInput!)` - Updates an existing restaurant. Requires the `id` field.
- `deleteRestaurant(id: String!)` - Requires admin role.
### Food menu mutations
- `createFood(input: CreateFoodInput!)` - Requires admin role. Input fields are:
- `name`
- `description`
- `price`
- `restaurantId`
- `updateFood(input: UpdateFoodInput!)` - Requires admin role.
- `deleteFood(id: String!)` - Requires admin role.
### Review mutations
- `createReview(input: CreateReviewInput!)` - Requires authentication. Input fields are:
- `restaurantId`
- `rating`
- `comment`
### User mutations
- `changeRole(newRole: Role!, userId: String!)` - Requires superadmin role. Changes a user's role.
Let me know if you have any other questions about the API! I can expand on any part in more detail.
## Security
Roles:
- `user` - Basic access
- `admin` - Manage restaurants and menu
- `superadmin` - Manage all users and roles
Authentication uses JWT tokens.
## Contributing
If you encounter any issues or have suggestions for improvements, please submit an issue or a pull request to the GitHub repository.
## License
The RestaurantGraphQL API is open-source and released under the GPL-V3.0 License. Feel free to use, modify, and distribute the code as per the terms of the license.
Copyright 2023, Max Base
| A GraphQL-based API designed to handle multiple restaurants in a shop store. It provides various features such as searching for restaurants in a city, finding the nearest restaurant, retrieving a list of foods offered by a restaurant, and more. | graphql,graphql-api,graphql-schema,graphql-server,graphql-ts,graphql-typescript,javascript,js,ts,typescript | 2023-05-13T13:24:58Z | 2024-02-20T23:23:50Z | null | 1 | 9 | 30 | 0 | 0 | 2 | null | GPL-3.0 | TypeScript |
Imtiaz-Zahir/Sohoz-Learning | master | This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
## Getting Started
First, run the development server:
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
You can start editing the page by modifying `app/page.js`. The page auto-updates as you edit the file.
This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
## Learn More
To learn more about Next.js, take a look at the following resources:
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
## Deploy on Vercel
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
| online course platform | javascript,nextjs,nodejs,tailwindcss | 2023-05-11T04:43:10Z | 2024-01-25T13:40:50Z | 2023-07-08T05:06:29Z | 2 | 2 | 33 | 0 | 1 | 2 | null | null | JavaScript |
hasnainroopawalla/circuit-sim | master | # Circuit Sim
[Live Demo](http://hasnainroopawalla.github.io/circuit-sim)
A digital circuit simulator build using React, TypeScript and P5.js.
#### Data-latch circuit
<p align="center">
<img src="assets/d-latch.png" alt="Data-latch circuit"/>
</p>
#### Save circuit
<p align="center">
<img src="assets/save_circuit.png" alt="Save Circuit"/>
</p>
#### Import chip
<p align="center">
<img src="assets/import_chip.gif" alt="import Chip"/>
</p>
## Features
- Sandbox environment for digital chips
- Save the current circuit as a custom chip
- Import chips using blueprint strings. Example:
- blueprint string for the `NAND` custom chip
```
{"main":{"inputs":[{"id":"chip.input.0"},{"id":"chip.input.1"}],"outputs":[{"id":"chip.output.2"}],"chips":[{"id":"chip.AND.3","name":"AND"},{"id":"chip.NOT.4","name":"NOT"}],"wires":[["chip.input.0/output.0","chip.AND.3/input.0"],["chip.input.1/output.0","chip.AND.3/input.1"],["chip.AND.3/output.0","chip.NOT.4/input.0"],["chip.NOT.4/output.0","chip.output.2/input.0"]]}}
```
## Contributing
- Post any issues or suggestions on the GitHub [issues](https://github.com/hasnainroopawalla/circuit-sim/issues) page.
- To contribute, fork the project and then create a pull request back to `master`.
## License
This project is licensed under the MIT License - see the [LICENSE](https://github.com/hasnainroopawalla/circuit-sim/blob/4e430c15e967846c1117ecc3e1cb5b74095e870a/LICENSE) file for details.
| Digital logic gate simulator using React, TypeScript and p5.js | circuit-simulator,digital-logic-design,jest,p5js,react-testing-library,typescript,webpack,javascript,react | 2023-05-08T09:52:20Z | 2024-05-18T21:04:09Z | 2024-05-18T21:04:09Z | 1 | 13 | 64 | 7 | 0 | 2 | null | MIT | TypeScript |
jakubiakdev/cleanplayer | main | # cleanplayer
https://cleanplayer.pages.dev/
A Spotify player that is focused on being cleaner than the official app.
Built as a browser SPA written in Svelte using SvelteKit
Note: Spotify Premium is required (this is enforced by the Spotify's Web Playback SDK)
## Features:
- Amazing fullscreen experience (eg. for your second screen)
- Integrated playback controls including shuffle, repeat and volume
- Spotify connect support (select your music from another device)
- Use your existing Spotify library
- Listen to music directly inside the player
- Show album and playback context
- Queue view for up to 20 tracks
- Song, album, and artist links to Spotify website
## Screenshots:


Responsive layout:
 | A Spotify player that is focused on being cleaner than the official app. Written in Svelte using SvelteKit | frontend,javascript,music-player,spotify,svelte,sveltekit | 2023-04-23T13:06:06Z | 2024-05-21T07:31:56Z | null | 1 | 8 | 36 | 1 | 1 | 2 | null | null | Svelte |
Daivison-Morais/projeto-cardapio-Virtual | main | ## Cardápio Virtual
<h4> Este é um projeto autoral Full Stack e funciona como um cardápio (garçon) virtual, que permite a partir de um qr code selecionar produtos de um restaurante, fazer o pedido ao restaurante (o pedido trás consigo o número da mesa) e este, ao começar a preparar e ao finalizar os pedidos, o cliente é informado em tempo real dessas atualizações, oferendo assim, maior praticidade aos clientes e ao restaurante, além disso, elemina uma situação recorrente em praças de alimetação: o restaurante de alguma forma chamar a atenção do cliente para pegar os produtos pedidos.</h4>
<br>
<img src="https://cdn.discordapp.com/attachments/1068625823613067355/1103673658498613278/IMG-20230504-WA0004.jpg"/>
# Para rodar o projeto
Clone o repositório.
no arquivo back-end e no front-end, crie um arquivo .env como descrito no arquivo .env.example
Na raíz do projeto
rode: docker compose up -d
Após finalizado o comando acima, na barra de endereços do navegador cole: localhost:8081
duplique a janela, uma sera do cliente e outra do restaurante, entre como administrador com nome e senha: Pizza Planet, 123456.
| O Cardápio Vitual é um Projeto autoral Full Stack que facilita a relação cliente-restaurante; permite ao cliente, selecionar produtos, realizar pedidos e acompanhar em tempo real o status do seu pedido . | nodejs,reactjs,html,javascript,postgressql,css,docker,hooks,nginx,arquitetura | 2023-04-28T13:03:33Z | 2023-08-18T13:11:25Z | null | 1 | 0 | 34 | 0 | 0 | 2 | null | null | HTML |
JayCesar/MitoAfro | main | <h1 align="center">
<img alt="logo_mitoafro" align="center" src="https://github.com/salvedojuliao/Mitoafro/assets/44206400/51620f79-39f4-48a0-8daa-8b6999a6eca3" /> MitoAfro
<h1>

<p align="center">
<img alt="" src="https://img.shields.io/github/repo-size/salvedojuliao/Mitoafro" />
<img alt="GitHub Language Count" src="https://img.shields.io/github/languages/count/salvedojuliao/Mitoafro" />
<img alt="GitHub Top Language" src="https://img.shields.io/github/languages/top/salvedojuliao/Mitoafro" />
</p>
<p align="center">
<img alt="banner" src="http://img.shields.io/static/v1?label=STATUS&message=%20FINISHED&color=GREEN&style=for-the-badge" />
</p>
***
<h2> <img alt="logo_mitoafro" align="center" src="https://github.com/salvedojuliao/MitoAfro_website/assets/44206400/727c45d6-fc00-4ef8-896e-a9ab4554dc61" /> Description </h2>
<p> An <a href="https://jaycesar.github.io/MitoAfro/"> <b> informative website </b></a> that portrays african mythology focusing on some main orixás with their respective Yoruba myths, aiming to increase its visibility without the intention of converting users to the religion. For this, we provide content that is easy to read and understand, dynamic and very interactive.
</p>

---
<h2> <img alt="logo_mitoafro" align="center" src="https://github.com/salvedojuliao/MitoAfro_website/assets/44206400/e1cc3a7d-c949-41c3-96cc-67c41fb3f7db" /> Features </h2>
- `Feature 1`: Interactive menu,
- `Feature 2`: Side Navigation Menu,
- `Feature 2`: Responsive website,
- `Feature 3`: Interactive components,
- `Feature 4`: Contact-us form;
***
<h2> 🛠️ Demo </h2>
<h3> 📱 Cellphone </h3>

<h3> 🖥️ Desktop </h3>

---
<h2> <img alt="logo_mitoafro" align="center" src="https://github.com/salvedojuliao/MitoAfro_website/assets/44206400/0dc65363-2400-48a6-ab4a-2d019905ab0e" /> Techniques and technologies used </h2>
- ``JavaScript``
- ``JQuery``
- ``Bootstrap``
- ``CSS3``
- ``HTML5``
- ``PHP``
- ``Responsive design``
***
<h2> <img alt="logo_mitoafro" align="center" src="https://github.com/salvedojuliao/MitoAfro_website/assets/44206400/f697ef44-8c48-4088-8ab3-ddc990a4ccdb" /> About us </h2>
This website was a **final project** created in 2018 by a group of 4 students, each one responsible for a task. I (Júlio César) was the person responsible for taking care of all the **design(UI)** and part of the **front-end**.
This website was a **final project** created in 2018 by a group of 4 students, each responsible for a task.
- Júlio César was responsible for taking care of all the **design (UI)** and part of the **Front-end** and **Back-end**.
- Bernardo was responsible for taking care of the **Front-end** part.

---
# ⚙️ How to access it?
**1)** You just need to click on this link: https://salvedojuliao.github.io/Mitoafro/
**2)** Or you can clone it and add your own improvements.
| [🏆 Final Project ] A website about african mythology focusing on some main orixás with their respective Yoruba myths, (2018) | javascript,php,bootstrap,css3,html5,responsive-website,final-project,tcc | 2023-05-10T18:11:45Z | 2023-05-14T19:16:45Z | 2023-05-13T22:21:12Z | 3 | 2 | 37 | 1 | 0 | 2 | null | null | PHP |
AlexCovone/SoundScript | main | # SoundScript - Breaking the Language Barrier
SoundScript is a full stack web application built for Be the Change Generation, a non-profit organization that provides youth with intercultural exchange opportunities.
This application addresses the language barrier and enables seamless communication across languages by transcribing spoken words into text in the user's desired language.
**Live Website:** [SoundScript](https://soundscript.cyclic.app/)

## How It's Made
**Tech Used:** JavaScript, Node.js, Microsoft Azure Cognitive Services, Express, MongoDB, EJS, TailwindCSS, Passport.js.
SoundScript's codebase is structured using the Model-View-Controller architecture paradigm.
### **Translation**
SoundScript leverages Microsoft Azure Cognitive Services and utilizes customized pretrained models to enhance its translation capabilities.
Users can select from 15 languages for their desired translation. Through the integration of Microsoft Azure Cognitive Services, the spoken words are instantly translated into the target language text, ensuring seamless and accurate real-time translation.
The application offers a selection of 15 languages for translation. By choosing the source and target languages, users can effortlessly speak in their chosen source language and witness real-time translation into the desired target language.
For logged-in users, the application provides the ability to save translations to their personal history. This allows users to conveniently access and refer back to their translations at any time through their profile.
Saved translations will be displayed on the user's profile with key details such as the translated text, source language, target language, and the date of the translation. This allows users to easily identify and reference their saved translations with all the necessary information.
https://github.com/AlexCovone/SoundScript/assets/98838825/db2796aa-12e2-4ff6-88a7-dfa90396d361
### **Registration**
SoundScript is designed to be accessible to all users, regardless of whether they choose to create an account and log in or simply use the application without authentication.
For users who choose to create an account, they are presented with two authentication options:
1. Google OAuth: Users can log in using their Google account. This authentication method is implemented using Passport.js and its Google OAuth 2.0 strategy.
2. Local Strategy: Users have the option to create a local account using their email address and a custom password. This allows them to register directly with the application using their credentials, providing a secure and personalized authentication method.
## Optimizations
As time permits, there are additional optimizations, improvements, and additional features that will be added to SoundScript.
Additional features and optimizations include:
* Develop plugin for Microsoft Teams to support closed captions on multi-lingual calls.
* Application will be migrated to a React-based framework.
* Additional authentication strategies will be implemented (e.g. Twitter, Apple, Microsoft, etc).
* Users will have the option to opt-in and showcase their translations in the 'Recent Translation' category to share their multilingual communication achievements.
* Users will be able to customize their default source and target languages.
## Lessons Learned
* Leverage Microsoft Azure Cognitive Services and learn to utilize and customize pretrained models.
* Implement multi-part authentication strategies.
* Maintain consistent communication with Be the Change Generation throughout the design and development process.
* Provide detailed design briefs, including goals, and target audience.
* Consistently sought feedback from other developers in both front-end and back-end development, while actively searching for best practices.
| Break down the language barrier instantly with SoundScript, a full-stack web application built for Be the Change Generation CIC. Speak directly into your device and witness translations up to 15 languages! | ejs,express,javascript,mongodb,passport,tailwindcss,microsoft-cognitive-services,ai,machine-learning,mongoose | 2023-05-04T21:38:45Z | 2023-11-05T13:23:50Z | null | 2 | 0 | 85 | 0 | 0 | 2 | null | null | EJS |
Priyanshusingh25/Thenarutogame | main | # Thenarutogame
The game is based between the hero of the konoha village : Naruto VS his/her compatriots. You have to throw the kunai weapon aiming rightly towards the enemy with precision.
| The game is based between the hero of the konoha village : Naruto VS his/her compatriots. You have to throw the kunai weapon aiming rightly towards the enemy with precision. | anime,css,game-development,html,html-css-javascript,itachi,javascript,naruto,naruto-game,rasengan | 2023-05-06T11:18:38Z | 2023-05-06T11:23:04Z | null | 1 | 0 | 2 | 0 | 0 | 2 | null | null | JavaScript |
humanresourcesteam/HumanResourcesManagement | main | # HumanResourcesManagement
Our project, which has been developed using the Spring Framework in Java and designed on the front end with React, has been architected in accordance with microservice principles."



| Our project, which has been developed using the Spring Framework in Java and designed on the front end with React, has been architected in accordance with microservice principles." | docker,java,javascript,jwt,kubernetes,microservices,reactjs,spring-boot,spring-cloud,spring-data-jpa | 2023-04-25T12:54:02Z | 2023-06-01T19:48:51Z | null | 2 | 13 | 60 | 0 | 3 | 2 | null | null | Java |
melsayedshoaib/Link_Shortener_Website | main | # Link Shortener App
URL Shorteners are tools we use to make links shorter than they actually are. With a URL Shortener, you can transform a long link (maybe for a registration form or article) into a shorter version.
Behind the scenes, the long and short versions of a given link have been stored in some database. Then when a user visits the short link in a browser, the URL Shortener will redirect the user to the long version of the link (where the actual content is found).
## pros
* They promote sharing: Adding shortened URLs on printed materials reduces the number of words readers have to type to copy it. They also make sharing easier in messaging technologies that limit the number of characters in a message.
* Creates a friendlier URL: Most URL shorteners can be used to generate custom links rather than random numbers in order to make URLs intuitive, more appealing, and easy to remember. These custom links act as an abstraction to a more lengthy URL which might include encodings and characters that may be confusing to the average reader.
* Provides analytics data: Most URL shorteners include features to track the performance of links, giving information on click-throughs and traffic sources. Businesses can then use this information to inform their content distribution strategies.
## Cons
* Dead links: If the server of the tool that was used to shorten the URLs is down, all links will stop working.
* Blocked URLs: Some platforms do not accept shortened URLs and a number of URL shorteners have been included on spam blacklists. Sites that have been blacklisted for sending spam tend to use URL shorteners to bypass the blacklist which has made many URL shorteners meet the same fate.
* Facilitates phishing attacks: Since URLs shorteners obscure the address of a site with random numbers, shortened URLs are used by scammers to drive users to URLs and websites that look legitimate but are specifically designed to collect sensitive information.
## API Information
I have used <https://shrtco.de/> for the implementation of this project, shrtcode requires no authentication.
## 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)
| Link Shortener Application using React JS | copytoclipboard,css3,html5,javascript,linkshortener,react,react-components,reactjs,reactproject,toast | 2023-04-27T20:11:21Z | 2023-04-27T20:14:06Z | null | 1 | 0 | 2 | 0 | 0 | 2 | null | null | CSS |
CSFelix/simple-projects-skeleton | main | <h1 align="center">💀 Simple Projects Skeleton 💀</h1>
<p align="center"><i>Skeleton to get time when creating new simple projects</i></p>
----
<h2 id="project">❓ Contents</h2>
> `HTML`, `CSS` and `Javascript`;
> CSS and JS libraries.
----
<h2 id="reach-me">📫 Reach Me</h2>
> Email: csfelix08@gmail.com
> Linkedin: [linkedin.com/in/csfelix/](https://linkedin.com/in/csfelix/)
> Portfolio: [CSFelix.io](https://csfelix.github.io)
> Kaggle: [DSFelix](https://www.kaggle.com/dsfelix)
| 💀 Skeleton for Simple Web Projects 💀 | css,css3,html,html5,javascript,js,projects,skeleton,web,web-projects | 2023-04-30T00:30:46Z | 2023-04-30T14:40:05Z | null | 1 | 5 | 11 | 0 | 0 | 2 | null | MIT | JavaScript |
shivshikharsinha/nehafilmspatna | main | # Neha Films Patna Website

Welcome to our Neha Films Patna Website repository! This project is a website created using HTML, CSS, Javascript, and PHP, to showcase a company's film projects, services provided, production team and more.
link - https://nehafilmspatna.netlify.app
# Features
Our website features a sleek and modern design, with easy navigation for visitors to explore the site's content. Some of the features of our website include:
Home page with a brief introduction of our company and links to other sections of the website <br>
Projects page with information about our latest film projects and their release dates <br>
Cast and Crew page with details about the talented individuals who make our films possible <br>
Production page with information about our production company, history, and values <br>
Contact page with a form to get in touch with us, as well as links to our social media profiles <br>
# Technologies Used
We utilized a combination of front-end and back-end technologies to create our website, including:
HTML5 and CSS3 for website structure and styling
Javascript for dynamic and interactive elements on the site
PHP for server-side scripting and form handling.
# How to Use
To access and use our website, simply visit the URL of the website. You can navigate through the various pages of the site using the links in the header and footer.
# Contributing
We welcome contributions and suggestions to improve our website! If you find any bugs or have any ideas to make our site even better, please feel free to open an issue or submit a pull request.
Thank you for visiting our repository and we hope you enjoy exploring our project!
| This repository contains the source code for a filmmaking company. The project utilizes HTML for structuring the content, CSS for styling, and JavaScript for interactive features. | css,html,javascript,php | 2023-04-25T06:07:29Z | 2023-09-14T14:46:25Z | null | 1 | 0 | 30 | 0 | 0 | 2 | null | null | HTML |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.