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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Subham-Maity/node-js-full-stack-tutorial | main | # Node.js Tutorial 🚀
Learn Node.js in less than 2 months with just 15 minutes of daily practice! 💪 This tutorial is perfect for beginners who want to become Node.js masters. You'll learn everything from the basics of Node.js to advanced topics like **asynchronous programming**, **modules**, **package management**, **web frameworks**, and more. Along the way, you'll build several projects including a **command-line interface**, a **RESTful API**, and a **real-time chat app**. If you have any doubts or questions, feel free to create an issue or comment in the feedback section. By the end of this tutorial, you'll have the skills and confidence to create your own server-side applications using Node.js. 🎉🎉🎉

## Content List for *NodeJs* (2023) ▶️
### Also You Can Read This On 📃
- [**medium.com**](https://medium.com/@maitysubham4041)
- [**hashnode**](https://codexam.hashnode.dev)
- [**dev.to**](https://dev.to/codexam)
> ### (Check out the website [**Here**](https://codexam.vercel.app/docs/node))
| **Day** | **Chapter Name** |*Topic*|*Learn About*| **Read on Website** | **Read on GitHub** |
| --- | --- | --- | --- | --- | --- |
| Day 1 | Introduction to Node js and the Course |What is , Why do we use,history, Js vs NodeJS | Chrome's V8 |[**Here**](https://codexam.vercel.app/docs/node/node1) | [**Here**](https://github.com/Subham-Maity/node-js-full-stack-tutorial/tree/main/01.%20Introduction%20to%20Node%20js%20and%20the%20Course) |
| Day 2 | Basic Concepts and Theory of Node js | Client,Server Sides ,NodeJs use JavaScript,What developer Make|Client and Server |[**Here**](https://codexam.vercel.app/docs/node/node2) | [**Here**](https://github.com/Subham-Maity/node-js-full-stack-tutorial/tree/main/02.%20Basic%20Concepts%20and%20Theory%20of%20Node%20js) |
| Day 3 | How to Install and Set Up Node js | Install & Setup | Npm,Node,IDE,|[**Here**](https://codexam.vercel.app/docs/node/node3) | [**Here**](https://github.com/Subham-Maity/node-js-full-stack-tutorial/tree/main/03.%20Install%20and%20Set%20Up%20Node%20js) |
| Day 4 | Writing Your First Node js Script |Hello World,Compile |console.log , node index.js |[**Here**](https://codexam.vercel.app/docs/node/node4) | [**Here**](https://github.com/Subham-Maity/node-js-full-stack-tutorial/tree/main/04.%20Writing%20Your%20First%20Node%20js%20Script) |
| Day 5 | Node js Fundamentals and Features |JsBasic | , filter , module.exports , require ,import,function|[**Here**](https://codexam.vercel.app/docs/node/node5) | [**Here**](https://github.com/Subham-Maity/node-js-full-stack-tutorial/tree/main/05.%20Fundamentals%20and%20Features) |
| Day 6 | Using Core Modules in Node js |What is Core Modules, global modules ,Non-global modules | (**fs-filesystem**) |[**Here**](https://codexam.vercel.app/docs/node/node6) | [**Here**](https://github.com/Subham-Maity/node-js-full-stack-tutorial/tree/main/06.%20Modules) |
| Day 7 | Creating a Basic Server in Node js | Make a Basic Server , arrow function,|(**http ,createServer ,res ,req ,write ,end ,listen**) | [**Here**](https://codexam.vercel.app/docs/node/node7) | [**Here**](https://github.com/Subham-Maity/node-js-full-stack-tutorial/tree/main/07.%20Create%20Basic%20Server) |
| Day 8 | Understanding and Using package.json in Node js |Install Additional Dependencies,package-lock.json ,Uninstall Dependencies,Update Dependencies ,Install Specific Version , | npm | [**Here**](https://codexam.vercel.app/docs/node/node8) | [**Here**](https://github.com/Subham-Maity/node-js-full-stack-tutorial/tree/main/08.%20Package.json) |
| Day 9 | A Small Challenge for You to Test Your Skills | 5 MCQ |Gitignore| [**Here**](https://codexam.vercel.app/docs/node/node9) | [**Here**](https://github.com/Subham-Maity/node-js-full-stack-tutorial/tree/main/09.%20Challenge) |
| Day 10 | What is Nodemon and How to Use it in Node js |How to Install Nodemon, what is, setup in package.json | Why Node.js is an asynchronous language | [**Here**](https://codexam.vercel.app/docs/node/node10) | [**Here**](https://github.com/Subham-Maity/node-js-full-stack-tutorial/tree/main/10.%20Nodemon%20Package) |
| Day 11 |Building a Simple API with Node js |make a server first and add data ,Add More Data ,reformat data.js , Status codes(200,201,204,400,401,403,404,500,503) |(**writeHead & JSON.stringify**) |[**Here**](https://codexam.vercel.app/docs/node/node11) | [**Here**](https://github.com/Subham-Maity/node-js-full-stack-tutorial/tree/main/11.%20Basic%20API%20Create) |
| Day 12 | Taking Input from the Command Line |Running ‘node index.js abc in terminal doesn’t allow input, Create a file with 3 inputs: 2nd is the name and 3rd is the content ,Remove and add the file. |(**process.argv ,writeFileSync ,UnlinkSync ,if-else ,create-file ,remove-file**) |[**Here**](https://codexam.vercel.app/docs/node/node12) | [**Here**](https://github.com/Subham-Maity/node-js-full-stack-tutorial/tree/main/12.%20Taking%20Command%20Line%20Input) |
| Day 13 | Listing Files with the File System Module | Make files in a folder ,need to see the files in the folder ,We don't want to see the files in the array format|(**Path module ,__dirPath ,For Loop,template literals ,fs.readdir ,foreach**) | [**Here**](https://codexam.vercel.app/docs/node/node13) | [**Here**](https://github.com/Subham-Maity/node-js-full-stack-tutorial/tree/main/13.%20Listing%20Files%20with%20the%20File%20System%20Module) |
| Day 14 | Performing CRUD Operations with the File System Module |What is CRUD,Create,Read,Update, Rename,Delete, what is buffer| (**writeFileSync ,readFile ,appendFile ,rename ,unlinkSync ,buffer**) | [**Here**](https://codexam.vercel.app/docs/node/node14) | [**Here**](https://github.com/Subham-Maity/node-js-full-stack-tutorial/tree/main/14.%20CRUD%20Operations) |
| Day 15 | Working with Asynchronous Node js |What is Synchronous & Synchronous with example ,coding example(basic) |setTimeout | [**Here**](https://codexam.vercel.app/docs/node/node15) | [**Here**](https://github.com/Subham-Maity/node-js-full-stack-tutorial/tree/main/15.%20Synchronous%20%26%20Asynchronous) |
| Day 16 | Handling Asynchronous Data in Node js | Promise with detailed Explanation | promise() ,then() | [**Here**](https://codexam.vercel.app/docs/node/node16) | [**Here**](https://github.com/Subham-Maity/node-js-full-stack-tutorial/tree/main/16.%20Handle%20Asynchronous%20Data) |
| Day 17 | How Node js Works Behind the Scenes | Understand the Event Loop, Clearing The Confusion , Explain with Example and step by step process |Even Loop,Node APIs,callback queue,call stack,LIFO,FIFO, Dequeue, Enqueue | [**Here**](https://codexam.vercel.app/docs/node/node17) | [**Here**](https://github.com/Subham-Maity/node-js-full-stack-tutorial/tree/main/17.%20Node%20js%20Works%20with%20Event%20Loop) |
| Day 18 | Introduction to Express js Framework | What is Express , Install, Basic Use | get, post, put, delete ,(req, res),res.send , listen , Port | [**Here**](https://codexam.vercel.app/docs/node/node18) | [**Here**](https://github.com/Subham-Maity/node-js-full-stack-tutorial/tree/main/18.%20Introduction%20to%20Express) |
| Day 19 | Routing with Express.js | Diagram , Server & Client in Detail , how each HTTP method works , HTTP request and response process , Request and Response , request object (req) details , response object (res) details , use req and res , Example of using req and res | req,res,req.query,get | [**Here**](https://codexam.vercel.app/docs/node/node19) | [**Here**](https://github.com/Subham-Maity/node-js-full-stack-tutorial/tree/main/19.%20Routing%20with%20Express.js(req%20%2C%20res)) |
| Day 20 | Rendering HTML Pages with Node js | Html render, Redirect, Json Data , Input Print | HTML tag(h1,input,button,a href) , json data , req.query , value place | [**Here**](https://codexam.vercel.app/docs/node/node20) | [**Here**](https://github.com/Subham-Maity/node-js-full-stack-tutorial/tree/main/20.%20Html%20Render) |
| Day 21 | Creating HTML Pages with Node js | Html & CSS make + Render on Browser | html, css , path.join , __dirname , express.static | [**Here**](https://codexam.vercel.app/docs/node/node21) | [**Here**](https://github.com/Subham-Maity/node-js-full-stack-tutorial/tree/main/22.%20Make%20HTML%20Page) |
| Day 22 | Removing File Extensions from URLs |Remove extension from URL + 404(default) | sendFle,different endpoint,``*``(default 404) | [**Here**](https://codexam.vercel.app/docs/node/node22) | [**Here**](https://github.com/Subham-Maity/node-js-full-stack-tutorial/tree/main/22.%20Remove%20extension%20from%20URL) |
| Day 23 | Creating Dynamic Pages with EJS | | | | |
| Day 24 | Dynamic Page in Node.js | | | | |
| Day 25 | Middleware in Node.js | | | | |
| Day 26 | Using Route-Level Middleware in Express js | | | | |
| Day 27 | Installing MongoDB for Node js | | | | |
| Day 28 | Basics of MongoDB Database | | | | |
| Day 29 | Performing CRUD Operations with MongoDB | | | | |
| Day 30 | Connecting MongoDB with Node js | | | | |
| Day 31 | Reading Data from MongoDB to Node.js | | | | |
| Day 32 | Inserting Data from MongoDB to Node.js | | | | |
| Day 33 | Updating Data from MongoDB to Node.js | | | | |
| Day 34 | Deleting Data from MongoDB to Node.js | | | | |
| Day 35 | GET API with MongoDB and Node.js | | | | |
| Day 36 | POST API Method with Node.js and MongoDB | | | | |
| Day 37 | Building PUT APIs with MongoDB and Node js | | | | |
| Day 38 | Building DELETE APIs with MongoDB and Node js | | | | |
| Day 39 | Introduction to Mongoose Library | | | | |
| Day 40 | Performing CRUD Operations with Mongoose | | | | |
| Day 41 | Building POST APIs with Mongoose | | | | |
| Day 42 | Building GET, DELETE and PUT APIs with Mongoose | | | | |
| Day 43 | Building Search APIs with Mongoose | | | | |
| Day 44 | Using OS Module in Node js | | | | |
| Day 45 | CRUD Operations in Node.js | | | | |
| Day 46 | Using Events and Event Emitter in Node js | | | | |
| Day 47 | Using REPL in Node js | | | | |
| Day 48 | Connecting Node js with MySQL Database | | | | |
| Day 49 | Building POST APIs with Node js and MySQL | | | | |
| Day 50 | Building PUT APIs with Node js and MySQL | | | | |
| Day 51 | Building DELETE APIs with Node js and MySQL | | | | |
| Day 52 | Comparing Node js and PHP | | | | |
## Prerequisites 📋
Before diving into Node.js, you should have a basic understanding of JavaScript and web development concepts.
## Projects you will build 🛠️
Throughout this content list, you will learn how to build various projects with Node.js, including building servers, creating APIs, connecting to databases, and more.
## What you will learn 📚
By the end of this content list, you will have a strong understanding of Node.js and be able to build your own applications using this technology.
## How to start 🚀
To start this tutorial:
1. Clone this repository or download it as a zip file.
2. Open each project folder in your code editor.
3. Follow the instructions in each project's README file.
Once you have Node.js installed, clone this repository and navigate to the project directory in your terminal. From there, you can follow along with the course by running the examples in each section.
## Contributing 💖
If you want to contribute to this tutorial:
1. Fork this repository or create a new branch.
2. Make your changes or additions.
3. Create a pull request with a clear description of your changes.
We appreciate any feedback or suggestions that can help us improve this tutorial. Thank you! 😊
## License 📄
This tutorial is licensed under the MIT License - see [LICENSE](LICENSE) file for details. | You will learn everything from the basics of Node.js to advanced topics | express,expressjs,javascript,mongodb,nodejs | 2023-03-12T06:57:44Z | 2024-01-31T01:32:37Z | null | 1 | 0 | 108 | 0 | 5 | 27 | null | null | JavaScript |
vidio-boy/Eaglercraft1.5.2 | main | <html>
<h1>Eaglercraft 1.5.2 Browser</h1>
<head>
<p>
<b>Eaglercraft 1.5.2 javascript runtime.</b> Multiplayer, singleplayer, and LAN worlds available. Customizable profile, skins, capes, and controls. Game modes including creative, survival, peaceful, and more! Villages, mine shafts, dungeons, caves, ravines, many different biomes, and other things can spawn. The Nether and End are also available. Commands are the same as the real Minecraft.
</p>
</head>
<body>
<p>
<h1>How to launch game in browser:</h1>
<p>1. Download the zip file.</p>
<p>2. Open the zip in your files.</p>
<p>3. Find the eaglercraft.1.5.2.html file.</p>
<p>4. Open the file and let it load.</p>
</p>
<p>
<h1>Servers</h1>
Go to <a href="https://web.archive.org/web/20230205110931/https://docs.google.com/document/d/1PhUJSb0ojMyhv1Fs8bmVqwANBkySOgdyfRinJto3xnE/edit"<a>this doc</a> (had to use the wayback machine) to get <b>a list of Multiplayer Server Adresses.</b> I do not own it or edit it in any way.
</p>
<h1>IMPORTANT!</h1>
<p>
When you create a new world, it will be a black screen, or you may have spawned underground. <b>ALL YOU HAVE TO DO IS WAIT 1–5 MINUTES!</b> It will fix on its own. It will also be laggy at first, but it will smooth out after 5–10 minutes. <b>Keep in mind that this is an old version of Minecraft and that not everything in the real current Minecraft will be avialable.</b>
</p>
<div>
<footer><small><b>Disclaimer:</b> I do not own Eaglercraft, and I am not associated with it in any way, this is just a way for people to access it fullscreen on browser.<small><footer>
</html>
| Eaglercraft javascript runtime. Multiplayer, singleplayer, and LAN worlds available. Customizable profile, skins, capes, and controls. Game modes including creative, survival, peaceful, and more! Villages, mine shafts, dungeons, caves, ravines, many different biomes, and other things can spawn. The Nether and End are also available. | browser,eaglercraft,game,minecraft,github,html,html5,javascript | 2023-03-17T20:14:52Z | 2024-03-13T00:16:04Z | null | 1 | 1 | 14 | 2 | 209 | 27 | null | MIT | HTML |
initminal/run | main | # @initminal/run
Safely execute untrusted code with ESM syntax support, dynamic injection of ESM modules from URL or plain JS code, and granular access control based on whitelisting for each JS object.
## Features
- **ESM syntax**: untrusted code can use `import` and `export` module syntax
- **Dynamic ESM module injection**: easily inject modules dependencies from `data:` or `http(s)` `URL`s, or just plain JS code string
- **Granular access control**: untrusted code has access only to whitelisted JS objects
- **Isomorphic**: compatible with both browsers and Node.js
- **Queue**: evaluations are automatically queued
- **Fast**: leverage native `import()` syntax for code evaluation
- **Non-blocking**: run code inside a module worker, off the main thread
- **Always terminable**: terminate long running code at any time
## Get Started
To install:
```sh
npm i --save @initminal/run
```
## Usage
Create an evaluator and execute JS code:
```ts
const InitminalRun = createInitminalRun()
const result = await InitminalRun.run("export const initminal = 'hello world'")
console.log(result)
// hello world
```
## Demo
Try it out in the [playground](https://initminal.com/run/playground)
## Documentation
Check out the [documentation](https://initminal.com/run/docs).
## 📢 Notice
- 🎉 Firefox support:
- Previous Firefox versions lacked the implementation of dynamic `import()` in workers, which this library requires.
- However, the [Implement Dynamic import for workers](https://bugzilla.mozilla.org/show_bug.cgi?id=1540913) fix has been completed and is scheduled for release in version 113.
- 🧪 Experimental status: this project is still considered unstable and breaking changes may occur (but only when unavoidable).
## 🔒 Security
- The security of code evaluation using this library depends on the set of whitelisted JS objects.
- The default list of accessible JS objects (subject to updates) should be considered safe for untrusted code.
- IO objects such as `fetch` or `indexedDB` are NOT whitelisted by default. Untrusted code can access to host's data if they are manually whitelisted.
- If you must use one or more I/O objects, consider combining another strategy, e.g. executing in an `iframe` sandbox.
- in the future, proxy support for I/O actions might be implemented as a feature to enable safe I/O operations from untrusted code (contributions are welcome!).
## 📝Todos:
- [ ] Proxies for objects (e.g. `fetch`), to enable secure I/O operations.
- [ ] Typescript support
- [ ] Worker pool
- [ ] Support other evaluation strategies, such as using WASM, other programming languages
- [ ] ...feel free to suggests any new ideas!
Contributions are welcome!
## Acknowledgement
- the approach of whitelisting JS objects in a web worker of executing untrusted code takes notes from the blog post [Executing untrusted JavaScript code in a browser](https://www.meziantou.net/executing-untrusted-javascript-code-in-a-browser.htm) by [Avatar
Gérald Barré](https://github.com/meziantou)
- using `import()` as an alternative to `eval()` to execute JS code takes notes from the blog post [Evaluating JavaScript code via import()](https://2ality.com/2019/10/eval-via-import.html) by [Dr. Axel Rauschmayer](https://github.com/rauschma)
| Safely execute untrusted code with ESM syntax support, dynamic injection of ESM modules from URL or plain JS code, and granular access control based on whitelisting for each JS object. | browser,eval,evaluation,jailed,javascript,sandbox,untrusted-code,worker,js-interpreter,nodejs | 2023-03-25T18:28:30Z | 2023-04-05T06:25:43Z | null | 1 | 0 | 1 | 0 | 1 | 26 | null | MIT | TypeScript |
VelzckC0D3/Velzck_Festival | main | <a name="readme-top"></a>
<div align="center">

</div>
<!-- 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)
- [👥 Author](#author)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [❓ FAQ (OPTIONAL)](#faq)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
# 📖 [Architecture & Design Festival ] <a name="about-project"></a>
Introducing Architecture & Designers Festival, another sneak peek of my Fonrt-End skills, you can check that this site is totally responsive and adaptative, using pure CSS, HTML and DOM with JavaScript
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>Client</summary>
<ul>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/HTML">HTML</a></li>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/CSS">CSS</a></li>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript">JavaScript</a></li>
</ul>
</details>
<details>
<summary>Server</summary>
<ul>
<li><a>N/A</a></li>
</ul>
</details>
<details>
<summary>Database</summary>
<ul>
<li><a>N/A</a></li>
</ul>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **[Easy to navigate]**
- **[Mobile First Focus]**
- **[It is well designed]**
- **[It shows the proper GitFlow]**
- **[Totally reponsive]**
- **[JavaScript functions]**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LIVE DEMO -->
## 🚀 Live Demo <a name="live-demo"></a>
[Click here to visit the Live Demo on Netlify](https://velzck-festival.netlify.app)
\
[Click here to visit the Live Demo on GitHub](https://velzckc0d3.github.io/)
\
\

<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:
```sh
To have a computer, Internet, Keyboard and Mouse
```
### Setup
Clone this repository to your desired folder:
```sh
Open it with Visual Studio Code, and open a server with "LiveServer".
```
### Install
Install this project with:
```sh
Installation is not necessary
```
### Usage
To run the project, execute the following command:
```sh
Open Live Server
```
### Run tests
To run tests, run the following command:
```sh
To check the HTML functionality use: 'HTML npx hint .'
```
```sh
To check the CSS functionality use: 'npx stylelint "**/*.{css,scss}"'
```
```sh
To check the JavaScript functionality use: 'npx eslint."'
```
### Deployment
You can deploy this project using:
```sh
Your software of preference
```
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHOR -->
## 👥 Author <a name="author"></a>
- GitHub: [@VelzckC0D3](https://github.com/VelzckC0D3)
- LinkedIn: [VelzckC0D3](https://www.linkedin.com/in/velzckcode/)
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- [ ] **[CSS Animations and Transitions]**
- [ ] **[Easy user interface to navigate with]**
- [ ] **[Complete, user friendly design, responsive and optimized]**
- [ ] **[JavaScript functions that ensures the proper functioning of the website]**
- [ ] **[Dynamic generated 'speakers' section]**
- [ ] **[It dynamically switches between `home` and `about` so whenever the user goes to one of those pages, the website isn't reloaded, instead it just execute a JS function that shows the correct page displayed!]**
<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, be pending on my profile since I'll be doing much more!
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
❗ **I want to say thanks to Cindy Shin who let us use her original design for this project! [click here to visit her behance profile](https://www.behance.net/adagio07)** ❗
\
I would like to thanks my Microverse Team for helping me to get this done.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FAQ (optional) -->
## ❓ FAQ<a name="faq"></a>
- **[Which languages did you use in this project?]**
- [HTML, CSS and JavaScript applying DOM]
- **[What was the most difficult thin to achieve here?]**
- [The responsiveness and adapative design, also the JavaScript functions that I've implemented]
<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>
| In this capstone project, I demonstrated how to manage the DOM properly using Vanilla JavaScript. I was able to develop a dynamic and responsive website that showcases my improved skills, while also incorporating correct GitFlow usage and Linters for better code quality. | capstone-project,css,dom,dom-manipulation,dynamic,html,html-css-javascript,javascript,microverse | 2023-03-13T16:31:59Z | 2023-08-19T10:27:01Z | null | 1 | 1 | 25 | 0 | 0 | 25 | null | MIT | CSS |
sumit-6/SourceFolio | main | # SourceFolio
Welcome to the README page for [Sourcefolio](https://source-folio.vercel.app/)!
Sourcefolio is a web application that allows users to create and showcase their portfolio. It is designed to help developers to share their work with others, and potentially attract job opportunities.
**Getting started:**
To use Sourcefolio, simply visit the website and create an account. Once you're logged in, you can click on "Create SourceFolio" button to get to a form. On filling this form correctly with most logical and appropriate data, you can make your own sourcefolio.
**Features:**
- Portfolio display: Your projects will be displayed in a visually appealing portfolio format, making it easy for others to view and navigate through them.
- Sharing: You can share your portfolio with others by simply sharing the link to your portfolio page.
- Attractive UI: It has a simple and eye-catching UI.
**Languages and Frameworks:**
Sourcefolio is built using a variety of languages and frameworks, including:
- React.js for the front-end
- Node.js and Express.js for the back-end
- Mongoose and MongoDB Atlas for the database
- CSS for styling
**Contributors:**
- [Devanshi Gupta](https://github.com/Devanshi449)
- [Sumit Verma](https://github.com/sumit-6)
- [Deepak Dass](https://github.com/iamdeepakdass)
- [Rahul Verma](https://github.com/anonymouse003)
**Support:**
If you encounter any issues or have any questions about Sourcefolio, please email sourcefolio2023@gmail.com
**Follow:**
You can follow SourceFolio on [instagram](https://www.instagram.com/sourcefolio2023/).
Thank you for using [Sourcefolio](https://source-folio.vercel.app/)!
# Demo
https://github.com/sumit-6/SourceFolio/assets/75926522/b6b609ec-2cbc-4e39-997e-859e10dda867
| SourceFolio is a web application that allows users to create and showcase their portfolio. Implemented a visually appealing portfolio format for easy viewing and navigation. It is designed to help developers to share their work with others, and potentially attract job opportunities. | api-rest,cloudinary,css,html,javascript,mongodb,mongoose,nodejs,portfolio,reactjs | 2023-03-24T12:28:21Z | 2024-05-09T06:23:14Z | null | 5 | 59 | 299 | 2 | 5 | 24 | null | null | JavaScript |
dd3tech/bui | main |
<div align="center">
<img src="./assets/logo-light.svg" alt="BUI logo">
<hr />
<br/>
A React ecosystem library for building back-office platforms like [DD360](https://dd360.mx/). <br/>
It's library created by developers for developers
<br/>
**[Stable v6](https://bui.dd360.mx/)**
[](https://github.com/dd3tech/bui)
[](https://www.npmjs.com/package/dd360-ds)
[](https://www.npmjs.com/package/dd360-ds)
[](https://isitmaintained.com/project/dd3tech/bui 'Average time to resolve an issue')
[](https://bestpractices.coreinfrastructure.org/projects/7584)
[](https://main--62ffec7466615c40c8dbe435.chromatic.com)
<p>
<a href="https://bui.dd360.mx/" rel="noopener" target="_blank"><img style="border-radius:6px" src="./assets/bui-components-dark.png" alt="BUI components"></a>
</p>
<h3>
<a rel="noopener" target="_blank" href="https://bui.dd360.mx/docs/get-started/getting-started">Docs</a> •
<a rel="noopener" target="_blank" href="https://bui.dd360.mx">Website</a>
</h3>
</div>
## 📲 Installation
```bash
npm install dd360-ds
```
or
```bash
yarn add dd360-ds
```
## 💅 Customize theme
If you want to use a provider to configure the library's theme, you can do so using the ThemeProvider provided by dd360-ds. This will allow you to set your own settings for the theme.
To use the ThemeProvider, you must import it as follows:
```tsx
import { createTheme, ThemeProvider } from "dd360-ds/theme";
```
You can then create your own theme configuration using the createTheme function, which accepts an object with different properties to customize the theme. For example, you can define the primary and secondary colors as shown below:
```tsx
const theme = createTheme({
palette: {
primary: {
main: "purple"
},
secondary: {
main: "#FFC107"
}
}
});
```
After creating your theme configuration, you can use the ThemeProvider to wrap your React app. This can be done as follows:
```tsx
ReactDOM.createRoot(document.getElementById("root")).render(
<StrictMode>
<ThemeProvider theme={theme}>
<App />
</ThemeProvider>
</StrictMode>
);
```
Within the ThemeProvider, you can use the components provided by dd360-ds and the corresponding styles will be applied based on your theme settings.
Remember that to use the ThemeProvider, you must import both the createTheme component and the ThemeProvider component from dd360-ds/theme.
## 💡 Usage
After Installation, you will have to make some extra configurations for everything to work normally.
Import stylesheets into the `App.js` or `App.tsx`
```js
import 'dd360-ds/dd360.css'
```
⚠️ ***Warning: If you want to combine it with other styles, be sure to import our css as the last one.***
How to import components?
```jsx
import { Button } from 'dd360-ds'
```
## 🔫 Components
This is the most fun part. Below we will explain the use of the components we are currently developing.
You can checking and contribute to the docs website [here](https://github.com/dd3tech/bui-docs)
| BUI: Tailwind based React component library to build back-office platforms :rocket: | tailwindcss,react,components,javascript,typescript,library,design-system,nextjs,nextjs-tailwind,production-code | 2023-03-14T18:49:57Z | 2024-05-23T16:09:52Z | 2024-05-23T16:09:52Z | 18 | 179 | 1,337 | 2 | 1 | 23 | null | MIT | TypeScript |
AmanNegi/FreshNest | main | <p align="center">
<h1 align="center">
<a href="https://fresh-nest.netlify.app">
FreshNest
</a>
</h1>
<h2 align="center"> ✨Freshness delivered, Farmers empowered✨</h2>
</p>
<p align="center">
<a href="https://github.com/amannegi/freshnest"><img src="https://img.shields.io/github/stars/amannegi/freshnest.svg?style=flat&logo=github&colorB=deeppink&label=stars"></a>
<a href="https://github.com/amannegi/freshnest"><img src="https://img.shields.io/github/forks/amannegi/freshnest.svg"></a>
<a href="./LICENSE"><img src="https://img.shields.io/badge/license-AGPL-purple.svg" alt="License: AGPL"></a>
<a href="https://app.netlify.com/sites/fresh-nest/deploys">
<img src="https://api.netlify.com/api/v1/badges/2705eab6-d2e3-456b-bb84-a0f98c3e5ee1/deploy-status">
</a>
</p>
<p align="center">
<a href="https://fresh-nest.netlify.app/">
<img src="https://img.shields.io/badge/FreshNest-Website-brightgreen"></img>
</a>
<a href="https://github.com/AmanNegi/FreshNest/releases/tag/v0.0.3">
<img src="https://img.shields.io/badge/FreshNest-APK-orange"></img>
</a>
</p>
<img src="./images/header.png" />
<img src="./images/freshnest_banner_2.png">
<img src="./images/freshnest_banner_3.png">
<br/>
FreshNest is an online marketplace that connects local vegetable sellers and farmers directly with customers who are seeking <strong>fresh and nutritious produce</strong>. We believe in fostering a direct connection between producers and consumers, empowering local communities, and promoting sustainable farming practices.
With FreshNest, you can explore a wide range of locally grown vegetables, sourced directly from farmers in your area. By eliminating intermediaries, we ensure that you receive the freshest and highest-quality produce while supporting local farmers and their livelihoods.
## Why Choose FreshNest? 🤷♂️
- **Support Local Farmers**: By purchasing from FreshNest, you contribute to the growth and prosperity of local farmers. Your support helps them sustain their agricultural practices and ensures a vibrant and resilient local food ecosystem.
- **Wide Variety**: Discover a diverse selection of vegetables from different farms, enabling you to explore new flavors, try unique heirloom varieties, and add excitement to your culinary creations.
- **Shop Local with Confidence**: Effortlessly discover farms and vendors in your area. FreshNest uses your location to connect you with nearby producers, ensuring you get the freshest produce with minimal travel time.
- **See What You're Getting**: Browse captivating images uploaded directly by sellers. Get a clear picture of the farm, and the produce itself, and gain confidence in your purchase before adding it to your cart. FreshNest fosters transparency by allowing you to virtually visit the source of your food.
## How we built it? 🤷
To deliver a user-friendly web interface, the project uses a Node.js & Express.js backend for server-side operations, while the frontend utilizes React & TailwindCSS. A mobile client was developed using Flutter for greater accessibility.
The app has two user types: customers and farmers. Customers can buy products, track orders, and leave feedback. Farmers can list products, manage inventory, and communicate with customers. Admin view is available for content moderation.
#### For Customers:
- View products
- Add items to their cart
- Locate nearby farms on a Map (mobile client only)
- Leave reviews on products
- Search products
- View Farm Details
- & more...
#### For Farmers:
- Add/Manage listings
- Upload images of their farm
- View/Update Profile
- View Reviews and Reply
- & more...
<img width="4036" alt="Untitled" src="https://github.com/AmanNegi/FreshNest/assets/37607224/2567a324-dd4d-4f59-9afd-6c8e0d330a60">
The project is maintained to industry standards, with separate branches for different tasks, comprehensive documentation, and beginner-friendly issues to give newcomers hands-on experience with the frameworks (Flutter/Express/ReactJS). For deployment, we evaluated several platforms and chose [Netlify](https://www.netlify.com) for the website and [Adaptable.io](https://adaptable.io) for the backend.
### Architectural Patterns and Code Organization 📂🗃️
While building FreshNest, we looked through multiple architectural patterns and decided to go with a mutation of MVP, tailoring it to our specific needs. In the repository you'll find frontend code either of Flutter/React divided into application and presentation folders. This aligns with the separation of concerns principle promoted by MVP. Here's what each folder contains:
#### Application Folder:
- Code for fetching data from the backend API.
- Logic for processing and formatting the raw data for use in the presentation layer.
- Any application-specific business logic related to the feature.
#### Presentation Folder:
- Reusable UI components for the overall structure of the feature's interface.
- Components responsible for displaying the formatted data received from the application layer.
- Styling information specific to how the feature is presented visually.
By separating these concerns, the code becomes more maintainable, reusable, and easier to test. It also promotes a clean separation between the data and business logic (application folder) and the visual representation of that data (presentation folder).
### Other Decisions 🐳
#### Enforcing Consistent Code with ESLint 🧹
- We leverage ESLint, a popular code linting tool, to ensure consistent coding style and identify potential errors in the JavaScript codebase (both frontend and backend).
- ESLint helps maintain clean code, reducing bugs and improving readability for everyone working on the project.
#### Documentation 📃
- **Beginner Developer's guide**: Each folder has a `Readme.md` which assists the developers with how to set up the particular project. Check more in [Contributing.md](./Contributing.md).
- **API Documentation with Swagger Autogen**: The backend utilizes the Swagger AutoGen tool to automatically generate API documentation for all endpoints. This readily provides developers with a clear understanding of available functionalities, request parameters, and expected responses.
- **JSDoc Comments for Code Clarity**: Both frontend and backend JavaScript code leverage JSDoc comments. These comments explain the purpose of functions, variables, and classes, enhancing code readability and maintainability. Developers can easily understand the intent and functionality of code segments without needing extensive context.
#### Streamlined Development with Scripts 📜
- The `.vscode/launch.json` file within the project repository stores launch configurations for Visual Studio Code.
- These configurations define scripts to easily run/debug the frontend (React or Flutter) and backend (Node.js/Express.js).
- Newcomers can leverage these launch scripts to quickly start developing. This lowers the barrier to entry and facilitates a smooth development workflow.
## Tech Stack 🛠️
| Technology | Tech Stack | Version |
| ---------- | -------------------------------------------------------------------------------------------------------------------- | ------------ |
| Mobile |  | 3.16.9 |
| Web |  | 18.2.0 |
| Backend |  | 20.11.1 |
| Database |  | mongodbatlas |
## Contributing 🤝
Feel free to refer to our contribution guide at [`CONTRIBUTING.md`](./docs/CONTRIBUTING.md) for more details on how to contribute.
## Contributors 👨💻
We would like to extend our heartfelt thanks to all the contributors who have dedicated their time and effort to make FreshNest a better platform. Your contributions are invaluable and have helped us improve our platform. We truly appreciate your hard work and commitment to making FreshNest a success. Thank you for your contributions and for being a part of our community!
<a href="https://github.com/AmanNegi/FreshNest/graphs/contributors">
<img src="https://contrib.rocks/image?repo=AmanNegi/FreshNest" />
</a>
## License 🛡️
> We believe the AGPLv3 best supports our commitment to open-source development and fosters a collaborative atmosphere where everyone can contribute and benefit from the project's growth.
Distributed under the AGPLv3 License. See [`LICENSE.md`](./LICENSE) for more information.
We've chosen to license this project under the **GNU Affero General Public License version 3 (AGPLv3)** to promote open-source development and collaboration. Here are the key reasons for this decision:
- **Strong Copyleft**: The AGPLv3 ensures that derivative works (modified versions) of our code also remain open-source. This means anyone who distributes a modified version over a network (like our backend, frontend, or mobile app) must make the corresponding source code available under the same AGPLv3 license. This fosters a collaborative environment and prevents users from creating closed-source derivatives from our open-source work.
- **Open Source for Everyone**: The AGPLv3 guarantees that not only our code but also significant modifications to it, remain open and accessible to everyone. This transparency and collaborative spirit are essential for open-source projects.
- **Network Compatibility**: Since our project involves components that communicate over a network (backend, frontend, mobile client), the AGPLv3 is particularly fitting. It specifically addresses network-based interactions, ensuring that modifications made to these network-facing parts are also open-source.
## Support 🙏
Currently, the best way to support our project is by leaving a ⭐️. Don't forget to leave a star.
<img src="./images/footer.png" />
| A platform that connects local producers directly with consumers seeking fresh produce. | flutter,nodejs,react,mongodb,hacktoberfest,dart,javascript,open-source | 2023-03-25T07:20:13Z | 2024-04-01T16:07:05Z | 2023-06-27T02:32:23Z | 25 | 132 | 328 | 1 | 36 | 23 | null | AGPL-3.0 | JavaScript |
ab007shetty/chatGPT | main | # chatGPT
A single page serverless, lightweight, responsive, website to call GPT-3.5-Turbo Model using API.
## Note
- I would advise against hosting this webpage with the apiKey hardcoded as it may pose a risk of being leaked on the internet and OpenAI will disable the apiKey.
- Additionally, please refrain from using the apiKey provided in the about section, as it is intended only for new users to test quickly.
## How to get OpenAI API key
- Go to [OpenAI API](https://platform.openai.com/account/api-keys) and sign up for an account.
- You can create an API key by clicking on the `Create new secret key` button.
### How to Use
```
1. Clone the Repo.
```
```
2. Open index.html file in browser
```
```
3. - Provide your apiKey in the textbox.
- You can also appened it in the URL like, ' index.html?key=sk-xxx '
- you can also hardcode apiKey if you dont have plan for hosting.
```
```
4. Start Asking Questions..
```
| Fun Fact: This application is developed with the help of chatGPT itself. Test the application using below link | chatgpt,openai-api,chatbot-application,chatgpt-api,gpt-35-turbo,ajax-jquery,chat-bot,chat-gpt,chatgpt3,html-css-javascript | 2023-03-12T07:34:53Z | 2023-05-07T18:22:45Z | null | 2 | 1 | 16 | 0 | 11 | 23 | null | MIT | HTML |
Naledi-Dikgale/Wine-Tasting-Invite | main | <a name="readme-top"></a>
<div align="center">
<h3><b>Wine tasting Invite</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)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [❓ FAQ (OPTIONAL)](#faq)
- [📝 License](#license)
# 📖 Wine Tasting Party Invite <a name="about-project"></a>
**Wine Tasing invite-project** Wine-Tasting Party Invitation is a website dedicated to an extravagant wine-tasting event, the website has two pages, multiple sections, and logos created using HTML, CSS, and JavaScript.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>Client</summary>
<ul>
<li>HTML</li>
<li>CSS</li>
</ul>
</details>
### Key Features <a name="key-features"></a>
- **[Add_header]**
- **[Add_styling]**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🚀 Live Demo <a name="live-demo"></a>
- [Live Demo Link]( https://naledi-dikgale.github.io/capstone1-project/)
<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:
web browser
### Setup
Clone this repository to your desired folder:
```sh
cd my-folder
git clone https://github.com/Naledi-Dikgale/capstone1-project.git
```
### Install
Install this project with:
```sh
cd capstone1-project
npm install
```
### Usage
To run the project, follow the instruction below:
open index.html in your browser
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 👥 Authors <a name="authors"></a>
👤 **Naledi Dikgale**
- GitHub: [@Naledi-Dikgale](https://github.com/Naledi-Dikgale)
- LinkedIn: [naledi-dikgale](https://www.linkedin.com/in/naledi-dikgale-068423159/)
- Website: [@Naledi-Dikgale](naledi.netlify.app/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
- [ ] **[Add_footer]**
- [ ] **[Add_navbar]**
- [ ] **[Add_images]**
<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/Naledi-Dikgale/apstone1-project/issues).
<p align="right">(<a href="#reahttps://github.com/Naledi-Dikgale">back to top</a>)</p>
## ⭐️ Show your support <a name="support"></a>
If you like this project Please star it in my github page.
<p align="right">(<a href="https://github.com/Naledi-Dikgale">back to top</a>)</p>
## 🙏 Acknowledgments <a name="Sindy Shin">https://www.behance.net/adagio07</a>
I would like to thank my teammates.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 📝 License <a name="license"></a>
This project is [MIT](/MIT.md) licensed.
_NOTE: we recommend using the [MIT license](https://choosealicense.com/licenses/mit/) - you can set it up quickly by [using templates available on GitHub](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). You can also use [any other license](https://choosealicense.com/licenses/) if you wish._
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| A Wine Tasting Party invitation created with a CSS framework, JavaScript and HTML | html,javascript,tailwindcss | 2023-03-14T18:43:27Z | 2024-01-25T19:41:47Z | null | 1 | 2 | 3 | 0 | 0 | 23 | null | MIT | null |
Tono2007/slim-free-react-mui-template | main | # slim-mui-template ·   
<a href="https://github.com/Tono2007/slim-free-react-mui-template/stargazers">
<img alt="Stars" src="https://img.shields.io/github/stars/Tono2007/slim-free-react-mui-template?style=social">
<a href="https://github.com/Tono2007/slim-free-react-mui-template/forks">
<img alt="Forks" src="https://img.shields.io/github/forks/Tono2007/slim-free-react-mui-template?style=social">
</a>
<a href="https://github.com/Tono2007/slim-free-react-mui-template/releases">
<img alt="Version" src="https://img.shields.io/github/package-json/v/Tono2007/slim-free-react-mui-template?filename=complete-template%2Fpackage.json">
</a>
<a href="https://github.com/Tono2007/slim-free-react-mui-template/graphs/contributors">
<img alt="React contributors" src="https://img.shields.io/github/contributors/Tono2007/slim-free-react-mui-template">
</a>
<a href="https://github.com/Tono2007/slim-free-react-mui-template/releases"><img src="https://img.shields.io/github/release/Tono2007/slim-free-react-mui-template"></a>
<a href="https://github.com/Tono2007/slim-free-react-mui-template/issues"><img src="https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat"></a>

<div align="center">
<img src="complete-template//src/assets/images/logo/png/Color_logo_nobg.png" />
</div>
<h3 align="justify">Modern and clean mui Template
Slim - a free and open source React dashboard template made using Material UI React component library with aim of flexibility and better customizability.
Modern & Clean Responsive MUI Material-ui Admin Dashboard Template. It is fully responsive.
It can be used for most type of dashboard and app templates like analytics, admin or messenger app for your desktop or mobile applications. Amazing flexibility and reusability. **85+** Demo pages </h3>
<div align="center">
<img src="complete-template/src/assets/images/logo/png/Color_logotext_nobg.png" height="50px"/>
⭐ ⭐ ⭐ Do not forget to star (Top right of this page) it if you like the theme ⭐ ⭐ ⭐
</div>

- Support React18.
- Professional user interface.
- Material UI React components.
- Fully responsive, all modern browser supported.
- Easy to use code & folder structure.
- Flexible & high-Performance code
- Hundreds of customized MUI components.
- Pre-build useful pages & Apps.
- Dark & light mode
## Free SLIM MUI React js version
- [Complete Version Preview](https://slim-free-react-mui-template.netlify.app/)
- [Clean Version Preview](https://slim-free-react-mui-clean-template.netlify.app/)
Version with only components, styles, theme and sample page
- [Download from Github](https://github.com/Tono2007/slim-free-react-mui-template/releases)
## Getting Started
Clone from Github
```
git clone https://github.com/Tono2007/slim-free-react-mui-template.git
```
## Technology Stack
- [Material UI V5](https://mui.com/)
- React 18
- Built with React Hooks API
- Redux & React Context API for State Management
- React Router for Navigation Routing
- Vite
- Code Splitting
- Aliases
- Light/Dark theme support
- Eslint - airbnb style guide
- ApexCharts





## Issues
To report a bug, please submit an [issue](https://github.com/Tono2007/slim-free-react-mui-template/issues) on Github. We will respond as soon as possible to resolve the issue.
## Roadmap
### Priorities
- More components!
- More Pages
- Better customization
- Better documentation
- Performance
- Bundle size
---
## In future
- User issues & support
- Typescript version
- Next/CRA/Remix versions
- Accessibility.
## Color Presets
We use different colors
|  |  |  |  |  |
| -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- | -------------------------------------------------------- |
## Changelog
<!-- https://ascii-tree-generator.com/ -->
## Folder Structure
```bash
├── package.json -> Package json file.
├── public
├── README.md
├── src
│ ├── _mocks -> Mock Json data to be used for working apps
│ ├── assets
│ │ ├── images
│ │ ├── css -> Template css files
│ │ │ ├── style.css -> Application main css file
│ ├── components
│ │ │── layouts
│ │ │ ├── LandingLayout -> Layout for landing components & routers
│ │ │ ├── MainLayout -> Layout for main components & routers
│ │ │ ├── MinimalLayout -> Layout for mimimal components & routers
│ │ ├── loader
│ │ ├── modal
│ │── pages -> View files for all pages
│ ├── contexts/redux -> State management
│ ├── utils
│ │ ├── helpers -> helpers utilities
│ │ ├── hocs -> Custom hocs
│ │ ├── hooks -> Custom hooks
│ │ ├── routes -> router
│ │ ├── theme -> custom theme provider
│ │ ├── constants -> general app constants
│ ├──App.js -> starting point of application
├── vite.config.js -> Template constant value and live customization
├── index.html
```
## DOC
Slim routing system is based on [react-router](https://reacttraining.com/react-router) and its package [react-router-dom](https://reactrouter.com/en/main), it's also using code splitting for better performance.
## License
- Licensed cover under [MIT](https://github.com/codedthemes/datta-able-bootstrap-dashboard/blob/master/LICENSE)
| 🚀⚡️Modern and clean react mui Template for easing and faster web development.💻 | react,mui-template,javascript,material-ui,mui,react-template,reactjs,template,dashboard,dashboard-templates | 2023-03-22T21:20:15Z | 2023-05-21T15:28:38Z | 2023-05-21T15:54:47Z | 1 | 5 | 85 | 1 | 15 | 23 | null | MIT | JavaScript |
CarlosIgreda/Capstone-Project | main | 
<a name="readme-top"></a>
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Prerequisites](#prerequisites)
- [Setup](#setup)
- [👥 Author](#author)
- [🔭 Future Features](#future-features)
- [📹 Loom Video](#loom-video)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [❓ FAQ (OPTIONAL)](#faq)
- [📝 License](#license)
# 📖 Portfolio - mobile menu <a name="about-project"></a>
In this project, I have implemented the capstone project. It's a online website with 2 pages (home and about) and for both versions (mobile and desktop). My goal here is to master all of the tools and best practices I have learned about in previous steps. I will be using them in all Microverse projects and most likely in my future job as well, so it is important to know them!
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>Client</summary>
<ul>
<li><a href="https://www.hostinger.com/tutorials/what-is-html">HTML</a></li>
<li><a href="https://www.hostinger.com/tutorials/what-is-css">CSS</a></li>
<li><a href="https://www.hostinger.com/tutorials/what-is-javascript">JAVASCRIPT</a></li>
</ul>
</details>
<details>
<summary>Server</summary>
<ul>
<li>N/A</li>
</ul>
</details>
<details>
<summary>Database</summary>
<ul>
<li>N/A</li>
</ul>
</details>
### Key Features <a name="key-features"></a>
- **Follow a correct Gitflow**
- **Comply with linters**
- **Parse a Figma design to create a UI**
- **Grid layout**
- **Flexbox to place elements in the page**
- **Build a personal portfolio site movil version**
- **Use images and backgrounds, button interactions to enhance the look of the website**
- **Create forms with HTML5 validations**
- **Understand the importance of UX**
- **Collect data by using teh Formspree service**
- **create UIs adaptable to different screen sizes using media queries**
- **Accesisibility Checked**
- **DOM events with Javascript**
- **Javascript events**
- **Use objects to store and access data**
- **Process user input according to business rules**
- **Use client-side validation to catch and throw errors in the UI**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🚀 Live Demo <a name="live-demo"></a>
- [Live Demo Link](https://carlosigreda.github.io/Capstone-Project)
<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:
✅ Github account <br>
✅ Visual Studio Code installed <br>
✅ Node.js installed <br>
✅ Git Bash installed (optional)
### Setup
Clone this repository to your desired folder:
```sh
cd [my-folder]
git clone git@github.com:CarlosIgreda/Capstone-Project.git
```
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 👥 Author <a name="author"></a>
**Carlos Igreda**
- GitHub: [@CarlosIgreda](https://github.com/CarlosIgreda)
- Twitter: [@carlosigreda](https://twitter.com/carlosigreda)
- LinkedIn: [@carlosigreda](https://www.linkedin.com/in/carlosigreda)
**Credits:** Original design idea by Cindy Shin in Behance
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
- [ ] **Add more pages**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 📹 Loom Video <a name="loom-video"></a>
- [Loom Video Link](https://www.loom.com/share/1f955a3645624432a8870b53a109fe26)
<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 you can follow me on Github.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank all Microverse staff and my coding partners as well.
**Credits:** Original design idea by Cindy Shin in Behance
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ❓ FAQ <a name="faq"></a>
- **What is a Linter?**
- Linter is a tool that analyzes source code to flag programming errors, bugs, stylistic errors, and suspicious constructs.
- **What is meant by Gitflow?**
- Gitflow is an alternative Git branching model that involves the use of feature branches and multiple primary branches.
- **How to use flexbox?**
- The main idea behind the flex layout is to give the container the ability to alter its items’ width/height (and order) to best fill the available space (mostly to accommodate to all kind of display devices and screen sizes). A flex container expands items to fill available free space or shrinks them to prevent overflow.
- **What is grid layout?**
- CSS Grid Layout excels at dividing a page into major regions or defining the relationship in terms of size, position, and layer, between parts of a control built from HTML primitives.
- **What is hover effect?**
- Creating CSS link hover effects can add a bit of flair to an otherwise bland webpage. If you’ve ever found yourself stumped trying to make a slick hover effect, then I have six CSS effects for you to take and use for your next project.
- **What is form validation?**
- When you enter data, the browser and/or the web server will check to see that the data is in the correct format and within the constraints set by the application. Validation done in the browser is called client-side validation, while validation done on the server is called server-side validation. In this chapter we are focusing on client-side validation.
- **What is UX?**
- User experience (UX) design is the process design teams use to create products that provide meaningful and relevant experiences to users.
- **What is media query?**
- Media queries allow you to apply CSS styles depending on a device's general type (such as print vs. screen) or other characteristics such as screen resolution or browser viewport width.
- **What is accessibility?**
- Accessibility is essential for developers and organizations that want to create high quality websites and web tools, and not exclude people from using their products and services.
- **What is DOM?**
- The Document Object Model (DOM) is the data representation of the objects that comprise the structure and content of a document on the web.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 📝 License <a name="license"></a>
This project is [MIT](./LICENSE) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| In this capstone project, I'm going to build is based on an online website for a conference using HTML, CSS and JavaScript. | css,dom-manipulation,flexbox,grid-layout,html,javascript,media-queries | 2023-03-21T00:56:49Z | 2023-05-29T18:45:16Z | null | 1 | 1 | 25 | 0 | 0 | 23 | null | MIT | CSS |
Shubham-Bhoite/Web-Development-Project-For-Beginners | main | # Web-Development-Project-For-Beginners ==> <a href="https://hits.seeyoufarm.com"><img src="https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2FShubham-Bhoite%2FWeb-Development-Project-For-Beginners&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=hits&edge_flat=false"/></a>
- HTML, CSS, JavaScript projects
1) [Age-Calculator](https://github.com/Shubham-Bhoite/Web-Development-Project/tree/main/Age-Calculator) : [Live-Demo](https://person-age-calculator.netlify.app/)
2) [BMI-Calculator](https://github.com/Shubham-Bhoite/Web-Development-Project/tree/main/BMI-Calculator) : [Live-Demo](https://quetelet-index-calculator.netlify.app/)
3) [Basic-Calculator](https://github.com/Shubham-Bhoite/Web-Development-Project/tree/main/Basic-Calculator) : [Live-Demo](https://finance-machine.netlify.app/)
4) [Clock](https://github.com/Shubham-Bhoite/Web-Development-Project/tree/main/Clock) : [Live-Demo](https://live-wallclock.netlify.app/)
5) [Quote-Generator](https://github.com/Shubham-Bhoite/Web-Development-Project/tree/main/Quote-Generator) : [Live-Demo](https://ordered-quote-generator.netlify.app/)
6) [StopWatch](https://github.com/Shubham-Bhoite/Web-Development-Project/tree/main/Quote-Generator/Stopwatch) :
[Live-Demo](https://stop-watchtimer.netlify.app/)
7) [Mouse-Event](https://github.com/Shubham-Bhoite/Web-Development-Project/tree/main/Mouse-Event) :
[Live-Demo](https://event-mouse.netlify.app/)
8) [Dice-Roll-Simulator](https://github.com/Shubham-Bhoite/Web-Development-Project-For-Beginners/tree/main/Dice-Roll-Simulator) :
[Live-Demo](https://dice-roll-simulator.netlify.app/)
9) [Anime-Pic-Generator](https://github.com/Shubham-Bhoite/Web-Development-Project-For-Beginners/tree/main/Anime-Pic-Generator) :
[Live-Demo](https://anime-pics.netlify.app/)
10) [Currency-Converter](https://github.com/Shubham-Bhoite/Web-Development-Project-For-Beginners/tree/main/Currency-Converter) :
[Live-Demo](https://currency-converting-web.netlify.app/)
11) [Emoji-Rating](https://github.com/Shubham-Bhoite/Web-Development-Project-For-Beginners/tree/main/Emoji-Rating) :
[Live-Demo](https://emotion-rating.netlify.app/)
12) [I Love You Animation](https://github.com/Shubham-Bhoite/Web-Development-Project-For-Beginners/tree/main/I%20Love%20You%20Animation) :
[Live Demo](https://i-love-you-animation.netlify.app/)
13) [Recipe Book App](https://github.com/Shubham-Bhoite/Web-Development-Project-For-Beginners/tree/main/Recipe-Book-App) :
[Live-Demo](https://recipe-booking-app.netlify.app/)
14) [To-do List](https://github.com/Shubham-Bhoite/OIBGRIP/tree/main/To-Do-App) :
[Live-Demo](https://shubham-bhoite-to-do-app.netlify.app/)
15) [Flipcart-Landing-page-Clone](https://github.com/Shubham-Bhoite/Flipkart-Landing-page-Clone/tree/main/Flipcart-Landing-page-Clone) :
[Live-Demo](https://flip-landing-page-clone.netlify.app/)
| Some web-development projects created using html, css, js and php. | css3,html-css-javascript,html5,javascript,netlify,php,vscode,webdevelopment,website | 2023-03-20T08:52:59Z | 2024-05-23T04:36:03Z | null | 1 | 0 | 65 | 0 | 0 | 21 | null | null | JavaScript |
vidio-boy/Eaglercraft1.8.8 | main | <html>
<h1>Eaglercraft 1.8.8 Browser</h1>
<head>
<p>
<b>Eaglercraft 1.8.8 javascript runtime.</b> Multiplayer worlds available. Customizable profile, skins, settings, and controls. Game modes including creative, survival, peaceful, and more! Villages, mine shafts, dungeons, caves, ravines, many different biomes, and other things can spawn. The Nether and End are also available. Commands are the same as the real Minecraft. <b>If you want to play singleplayer, you will have to download my Eaglercraft 1.5.2, as this version only has multiplayer.</b>
</p>
</head>
<body>
<p>
<h1>How to launch game in browser:</h1>
<p>1. Download the zip file.</p>
<p>2. Open the zip in your files.</p>
<p>3. Find the eaglercraft.1.8.8.html file.</p>
<p>4. Open the file and let it load.</p>
</p>
<p>
<h1>Servers</h1>
Go to <a href="https://web.archive.org/web/20230205110931/https://docs.google.com/document/d/1PhUJSb0ojMyhv1Fs8bmVqwANBkySOgdyfRinJto3xnE/edit"<a>this doc</a> (had to use the wayback machine) to get <b>a list of Multiplayer Server Adresses.</b> I do not own it or edit it in any way.
</p>
<h1>IMPORTANT!</h1>
<p>
When you create a new world, it will be a black screen, or you may have spawned underground. <b>ALL YOU HAVE TO DO IS WAIT 1–5 MINUTES!</b> It will fix on its own. It will also be laggy at first, but it will smooth out after 5–10 minutes. <b>Keep in mind that this is an old version of Minecraft and that not everything in the real current Minecraft will be avialable.</b>
</p>
<div>
<footer><small><b>Disclaimer:</b> I do not own Eaglercraft, and I am not associated with it in any way, this is just a way for people to access it fullscreen on browser.<small><footer>
| Eaglercraft 1.8.8 javascript runtime. Multiplayer worlds available. Customizable profile, skins, settings, and controls. Game modes including creative, survival, peaceful, and more! Villages, mine shafts, dungeons, caves, ravines, many different biomes, and other things can spawn. The Nether and End are also available. | browser,eaglercraft,eaglercraftx,game,github,html,html5,minecraft,javascript,fixed | 2023-03-22T18:34:09Z | 2024-03-13T00:15:33Z | null | 1 | 0 | 7 | 1 | 153 | 21 | null | MIT | HTML |
Alejandroq12/polyglot-talk | dev | <a name="readme-top">Polyglot Talk: Connecting Cultures through Language Learning.</a>
<div align="center">
<img src="./assets/img/logo/logo-readme.png" alt="logo" width="700" height="auto" />
<br/>
<h3><b>Polyglot Talk: Connecting Cultures through Language Learning</b></h3>
</div>
<!-- TABLE OF CONTENTS -->
# 📗 Table of Contents
- [📗 Table of Contents](#-table-of-contents)
- [📖 Polyglot Talk: Connecting Cultures through Language Learning ](#-polyglot-talk-connecting-cultures-through-language-learning-)
- [🛠 Built With ](#-built-with-)
- [Tech Stack ](#tech-stack-)
- [Key Features ](#key-features-)
- [🚀 Live Demo ](#-live-demo-)
- [😎 Loom walkthrough ](#-loom-walkthrough-)
- [💻 Getting Started ](#-getting-started-)
- [Prerequisites](#prerequisites)
- [Setup](#setup)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#deployment)
- [👥 Authors ](#-authors-)
- [🔭 Future Features ](#-future-features-)
- [🤝 Contributing ](#-contributing-)
- [⭐️ Show your support ](#️-show-your-support-)
- [🙏 Acknowledgments ](#-acknowledgments-)
- [❓ FAQ (OPTIONAL) ](#-faq-optional-)
- [📝 License ](#-license-)
<!-- PROJECT DESCRIPTION -->
# 📖 Polyglot Talk: Connecting Cultures through Language Learning <a name="about-project"></a>
As a polyglot who speaks French, Spanish, English, and Chinese, I am excited to share my experiences and insights on the importance of language learning in today's global society. In my talk, I will explore how learning multiple languages can broaden our perspectives, foster empathy and understanding, and open up new opportunities for personal and professional growth.
Drawing on my own experiences as a language learner, I will share practical tips and strategies for effective language learning, including how to choose the right materials, practice speaking with confidence, and immerse yourself in the target language and culture. I will also discuss the latest trends and technologies in language education and how they are shaping the future of language learning.
Whether you are a language learner, teacher, or simply interested in the power of language to connect people and cultures, this talk is for you. Join me and become part of the global movement for multilingualism and cross-cultural understanding.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>Client</summary>
<ul>
<li><a href="https://developer.mozilla.org/es/docs/Learn/HTML">HTML</a></li>
<li><a href="https://developer.mozilla.org/es/docs/Web/CSS">CSS</a></li>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript">JavaScript</a></li>
</ul>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **A fully functional website**
- **Mobile first website**
- **Only using semantic HTML**
<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://alejandroq12.github.io/polyglot-talk/index.html)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LOOM WALKTHROUGH -->
## 😎 Loom walkthrough <a name="loom-walkthrough"></a>
- [Loom walkthrough Link](https://www.loom.com/share/a863f031fa284557b40d31ee47e01fbe)
<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:
1. A web browser to see the website.
2. And a code editor if you want to edit the code. For example, Vs Code.
### Setup
Clone this repository to your desired folder:
1. Clone it using your terminal:
```
git clone https://github.com/Alejandroq12/polyglot-talk.git
```
2. If the previous method does not work you may also download the repo as a .zip file and once you decompress the .zip file you are ready to use it.
Important: do not forget to clone the repo in the correct folder, probably you will use the following commands to achieve that in your terminal:
1. To navigate a certain folder:
```
cd <folder name>
```
2. To navigate to the previous folder:
```
cd ..
```
### Install
Install this project with:
1. To see this project you will not need to install something else.
2. But in case you want to test the linter that I configured to check errors you will have to complete the following steps:
```
npm init -y
npm install --save-dev hint@7.x
```
3. If you run npm install do not forget to create a .gitignore file to prevent the node_modules to be uploaded to GitHub:
```
.gitignore
node_modules/
```
### Usage
To see this project you will only need to:
1. Open the index.html file with a web browser.
### Run tests
1. Make sure all the linters and their configurations are installed and set up correctly in your project. If you haven't installed them yet, run `npm install` in your project directory to install the packages listed in your `package.json` file.
2. Run each linter with the following commands:
- For ESLint:
```
npx eslint .
```
- For Stylelint:
```
npx stylelint "**/*.css"
```
- For hint:
```
npx hint .
```
3. Review the output of each linter and fix any issues reported.
### Deployment
You can deploy this project using GitHub pages:
1. Log in to your GitHub account and navigate to the repository that contains your website files.
2. Make sure that your website files are located in the main branch and in the root directory of the repository.
3. If your website is not already live, make sure that the index.html file is the main page of your website.
4. Click on the "Settings" tab in your repository.
5. Scroll down to the "GitHub Pages" section.
6. In the "Source" dropdown menu, select the branch where your website files are located. For a simple website with only HTML and CSS, this is typically the main branch.
7. In the "Path" field, make sure that the root directory is specified (i.e., "/").
8. Click "Save" to generate your website.
9. Wait a few minutes for GitHub to build and deploy your website.
10. Once the website is deployed, visit the GitHub Pages URL to view your site.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 **Julio Quezada**
- GitHub: [Alejandroq12](https://github.com/Alejandroq12)
- Twitter: [@JulioAle54](https://twitter.com/JulioAle54)
- LinkedIn: [Julio Quezada](https://www.linkedin.com/in/quezadajulio/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- [ ] **I will add a contact form**
- [x] **I will add media queries for larger screens**
- [x] **I will use JavaScript to add more interactivity**
<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 star.
Thanks in advance.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank Wes Bos because I learned how to implement flexbox with his free tutorial:
- Wes Bos: [Wes Bos](https://flexbox.io/)
Original design idea by Cindy Shin in Behance: [CC Global Summit 2015](https://www.behance.net/gallery/29845175/CC-Global-Summit-2015).
- The Creative Commons license of the design requires that I give appropriate credit to the author. Therefore, I acknowledge the contribution of Cindy Shin for providing the original design idea used as a basis for this project.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FAQ (optional) -->
## ❓ FAQ (OPTIONAL) <a name="faq"></a>
- **Are you goin to use React in the future?**
- Yes! I will transform this website into a React App.
- **Did you create this website from scratch?**
- Yes! From zero, and I will improve it a lot.
<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>
| As a polyglot who speaks French, Spanish, English, and Chinese, I am excited to share my experiences and insights on the importance of language learning in today's global society. In my talk, I will explore how learning multiple languages can broaden our perspectives, foster empathy and understanding, and open up new opportunities. | accessibility,css,dom-manipulation,event-listeners,html,javascript,linters,media-queries,responsive-web-design,version-control | 2023-03-13T15:30:47Z | 2023-09-10T22:31:42Z | null | 1 | 3 | 187 | 0 | 0 | 20 | null | NOASSERTION | CSS |
sanchezcarlosjr/evanotebook | main | # EvaNotebook
EvaNotebook is a computational notebook specifically designed to operate solely within a browser environment, without the need for a client-server architecture. Its
design lends itself to the development of prototypes, experimental processes, and system scenarios with a main emphasis on multilingual programming for event-driven
architectures. It achieves this with the assistance of a decentralized database and incorporates various application protocols, including WebRTC, WebSockets, and MQTT, providing a higher level of abstraction.
[](http://www.youtube.com/watch?v=KkJgWNAVNdo "EvaNotebook")
🌐 Demo Link:
* https://notebook.sanchezcarlosjr.com/
🔥 Key Features:
* User-friendly WYSIWYG interface inspired by Notion (EditorJS)
* Since real applications are reactive ones rather than static ones, so it offers simplified APIs for MQTT, WebRTC, HTTP, and WebSocket protocols based on RxJS.
* Independent web workers for enhanced performance and stability
* Secure P2P collaboration with custom replication (RxDB and libp2p) but offline first
* Reactive elements like reactive charts, forms, and notebook itself. You can use them with LangChain.
🗺️ Roadmap:
* Implement Bluetooth, gRPC, GraphQL and SSH protocols. Call your operating system from a browser should be possible securely.
* Bypass transparently CORS restrictions.
* Integrate [Langchain](https://js.langchain.com/docs/) to control whatever environment you want (including the notebook itself) in real-time using the different protocols and languages provided by libp2p. Integrate offline large models such as WebGPT.
* Built-in open source alternatives to commercial AI products.
* Jupyter Notebook format complaint.
# Why?

Credits [WebGPT](https://github.com/0hq/WebGPT).
# Alternatives
[ObservableHQ](https://observablehq.com/)
[Starboard notebook](https://github.com/gzuidhof/starboard-notebook)
[JSNB](https://github.com/gopi-suvanam/jsnb)
[Dnotebook](https://dnotebook.jsdata.org/getting-started)
[Kajero](https://github.com/JoelOtter/kajero)
[Jbook](https://jbook.qiushiyan.dev/)
[Runkit](https://runkit.com/)
[Jupyter Lite](https://jupyterlite.readthedocs.io/en/latest/index.html)
# Mirrors
- [Examples](https://github.com/sanchezcarlosjr/javascript-notebook/issues/1)
- [Code](https://github.com/sanchezcarlosjr/javascript-notebook/)
- [IPFS Branch](https://ipfsnotebook.sanchezcarlosjr.com/)
- [GitHub Page (Default)](https://notebook.sanchezcarlosjr.com/)
- [Isolate notebook (Firebase)](https://isolatenotebook.sanchezcarlosjr.com/)
- [CID: QmVcZLrzGPrw6Yv9SfchPvHUaU2ZA6zzrSZPy2FZysZp7x](https://ipfs.io/ipfs/QmVcZLrzGPrw6Yv9SfchPvHUaU2ZA6zzrSZPy2FZysZp7x)
- [Fleek](https://billowing-dawn-4565.on.fleek.co/)
- [Firebase 1](https://n.sanchezcarlosjr.com/)
- [Firebase 2](https://evanotebook.web.app/)
- [Firebase 3](https://evanotebook.firebaseapp.com/)
- [WebContainer 1](https://webcontainer.web.app/)
- [WebContainer 2](https://webcontainer.firebaseapp.com/)
- [Ernesto's Fork](https://lozanoernesto.github.io/evanotebook/)
- [About](https://carlos-eduardo-sanchez-torres.sanchezcarlosjr.com/Ass1isting-dementia-patients-with-the-Embodied-Voice-Assistant-Eva-Simulator-9aade1ebef9948acafba73d834b19d0b)
## Contribuitors
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 15.1.5.
### Development server
Run `npm run start` for a dev server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files.
### CodeBlock scaffolding
Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
### Further help
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
## Acknowledgements
"Archivo:Edit icon (the Noun Project 30184).svg - Wikipedia, la enciclopedia libre." 15 Mar. 2023, es.m.wikipedia.org/wiki/Archivo:Edit_icon_%28the_Noun_Project_30184%29.svg.
Based on these projects.
https://github.com/alangpierce/sucrase
https://github.com/binji/wasm-clang
https://babeljs.io/docs/en/babel-standalone
https://infinitexyy.github.io/playcode/
| EvaNotebook - A P2P Browser-Based Computational Notebook for Real Systems with IA. | eva,javascript,notebook-jupyter | 2023-03-15T04:59:38Z | 2024-02-05T03:35:42Z | null | 2 | 1 | 324 | 1 | 6 | 20 | null | MIT | TypeScript |
kifle23/Portfolio | main | # 📗 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 -->
# 📖 Portfolio <a name="about-project"></a>
**Portfolio** is a profile website with basic HTML CSS project.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>HTML</summary>
</details>
<details>
<summary>CSS</summary>
</details>
<details>
<summary>Javascript</summary>
</details>
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🚀 Live Demo <a name="live-demo"></a>
- [Live Demo Link](https://kifle23.github.io/Portfolio-setup-and-mobile-first/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
### Key Features <a name="key-features"></a>
- **mobile_setup**
- **github_flow**
- **linter_for_htmlcss**
<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:
```sh
git init
```
### Setup
Clone this repository to your desired folder:
```sh
cd my-folder
git clone git@github.com:kifle23/Portfolio-setup-and-mobile-first.git
```
### Install
Install this project with:
```sh
cd my-project
git install
```
### Usage
To run the project, execute the following command:
```sh
npm start
```
<p align="right">(<a href="#readme-top">back to top</a>)</p>
### Run tests <a name="run-tests"></a>
No tests here... 💯
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 👥 Authors <a name="authors"></a>
👤 **Author1**
- GitHub: [@kifle23](https://github.com/kifle23)
- Twitter: [@kifle12](https://twitter.com/KifleHaile12)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/kifle-haile-5a613761)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- [ ] **responsive**
- [ ] **flex-box**
- [ ] **grid**
<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 [https://github.com/kifle23/Portfolio-setup-and-mobile-first/issues](../../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 are welcome to contribute or modify this project. The following link is about the walkthrough of what I learned doing this work, the challenges that I faced and how did I overcome those challenges, and future improvements that I am looking to implement on this project in the near future.
https://www.loom.com/share/2411848b779741c7b27febd3fb40c45e
<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 enabling me to do this capstone project
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 📝 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 is my personal portfolio website, created to showcase my skills and experience as a software developer. Visitors can explore my portfolio pieces in detail and contact me directly through the site. The code for the site allowed me to create a fast, responsive website that looks great on any device. | css,html,javascript | 2023-03-22T12:34:51Z | 2023-11-07T05:18:45Z | null | 4 | 24 | 119 | 0 | 0 | 19 | null | MIT | CSS |
cuppachino/hexgate | main | # Hexgate
[](https://discord.gg/HEd72YnzVq)
[](https://app.codacy.com/gh/cuppachino/hexgate?utm_source=github.com\&utm_medium=referral\&utm_content=cuppachino/hexgate\&utm_campaign=Badge_Grade)
[](https://github.com/cuppachino/hexgate/actions/workflows/release.yml)
[](https://github.com/cuppachino/hexgate/blob/528f647166eddef82e0ceb15ac8feafb56e97773/LICENSE)
[](https://www.npmjs.com/package/hexgate)
[Hexgate](https://www.npmjs.com/package/hexgate) is a work-in-progress LCU suite. It is **not** endorsed by Riot Games. You can find out more about what that means [here](https://www.riotgames.com/en/legal). Thank you Riot ❤️ for keeping the LCU open. If you have any questions, feel free to join the [cuppachino discord](https://discord.gg/HEd72YnzVq).
Please refer to the [wiki](https://github.com/cuppachino/hexgate/wiki) for more info.
<!-- todo: add more info -->
## Installation
Add it to your own project using your favorite package manager.
```shell
pnpm add hexgate
```
```shell
npm i hexgate
```
```shell
yarn add hexgate
```
### ESM
```ts
import { ... } from "hexgate"
```
### CJS
```ts
import hexgate = require("hexgate")
const { ... } = hexgate
```
## Authentication
Wait for the client by passing the [`auth`](https://github.com/cuppachino/hexgate/blob/main/src/modules/auth/index.ts) function to the [`poll`](https://github.com/cuppachino/hexgate/blob/main/src/utils/poll.ts) utility.
```ts
import { auth, poll } from "hexgate"
const credentials = await poll(auth)
```
Opt-out of safe authentication by explicity passing an `undefined` certifcate.
```ts
const unsafeCredentials = await auth({ certificate: undefined })
```
Once you have the credentials, you can create a new [`Hexgate`](./src/modules/hexgate/index.ts) and [`LcuClient`](./src/modules/websocket/index.ts).
```ts
import { Hexgate as HttpsClient, LcuClient as WsClient } from "hexgate"
const httpsClient = new HttpsClient(credentials)
const websocketClient = new WsClient(credentials)
```
Working with multiple clients? Get get `all` credentials.
```ts
import { auth, createHexgate, createLcuClient, poll, zip } from 'hexgate'
const credentials = await poll(() => auth({ all: true }))
// ~ some multi-connection interface
const clients = new Set(
zip(
credentials.map(createHexgate),
credentials.map(createLcuClient)
)
)
```
## Builder API
The simplest way of getting started is to "`.build`" a request function. The builder uses generics to infer the parameters and return type of the request.
```ts
import { Hexgate as HttpsClient } from 'hexgate'
const https = new HttpsClient(credentials)
// (arg: string[], init?: any) => Promise<ApiResponse<{ ... }>>
const getSummonersFromNames = https
.build('/lol-summoner/v2/summoners/names')
.method('post')
.create()
const summoner = await getSummonersByName(['dubbleignite'])
console.log(summoner.data)
```
## Websocket Events
Subscribe to LCU events through the client.
```ts
import { LcuClient as WsClient } from 'hexgate'
const ws = new WsClient(credentials)
ws.subscribe(
'OnJsonApiEvent_lol-champ-select_v1_session',
({ data, eventType, uri }) => {
// side effects
}
)
```
> Note: Since many endpoints will subscribe you to multiple uris, its difficult to provide meaningful type inference for the data property. Import `LcuComponents` type when necessary and/or open a PR to improve typings - which would be greatly appreciated! I'm just improving types as I need them.
## ⚡️ Connection
The [`Connection`](https://github.com/cuppachino/hexgate/blob/main/src/modules/connection/index.ts) class further abstracts `Hexgate` & `LcuClient` and handles authentication between client shutdowns. Configuration is optional.
```ts
import { Connection } from 'hexgate'
const client = new Connection({
// Recipe API (createRecipe or recipe)
createRecipe({ build, unwrap }) {
return {
getCurrentSummoner: unwrap(
build('/lol-summoner/v1/current-summoner').method('get').create()
)
}
},
// Propagate status to browser windows.
onStatusChange(status) {
emit('status', status)
},
// Init
async onConnect(con) {
con.ws.subscribe('OnJsonApiEvent_lol-champ-select_v1_session', handleChampSelect)
const summoner = await con.recipe.getCurrentSummoner()
con.logger.info(summoner, `Welcome, ${summoner.displayName}`)
},
// Automatically reconnect
async onDisconnect(discon) {
await sleep(4000)
discon.connect()
},
// Authentication interval
interval: 2000,
// Bring any logger
logger: pino({
name: 'main' as const
})
})
client.connect()
```
The `Connection` class supports recipes, define a `recipe: Recipe` or a `createRecipe: RecipeApiFn` method in the `ConnectionConfig` constructor argument.
```ts
import { Connection, createRecipe } from 'hexgate'
const recipe = createRecipe(({ build }) => ({/*...*/}))
const client = new Connection({
recipe
})
```
```ts
import { Connection } from 'hexgate'
const client = new Connection({
createRecipe({ build }) { return {/*...*/} }
})
```
<p align='center'>
<img src="connection.excalidraw.png" width=600/>
</p>
## Recipe API
[`createRecipe`](https://github.com/cuppachino/hexgate/blob/main/src/modules/recipe/index.ts#L78) is a higher-order function for transforming a request's parameters and response. It is a useful tool for morphing the LCU's API into your own. There are several ways to use the functions provided by the callback, and we'll take a look at each one.
### Intro
#### Step 1: Create a recipe
This is identical to the builder API, except the request function isn't built until a hexgate instance is given to the recipe. This is useful for modeling requests ahead of time for usage in other places.
```ts
import { createRecipe } from "hexgate"
/**
* <T extends HttpsClient>(httpsClient: T) =>
* (arg: string[], init?: RequestInit) =>
* Promise<ApiResponse<{...}>>
*/
const getSummonersFromNamesRecipe = createRecipe(({ build }) =>
build('/lol-summoner/v2/summoners/names')
.method('post')
.create()
)
```
#### Step 2: Once you have a recipe, you just need to pass it a `Hexgate`.
```ts
const getSummonersFromNames = getSummonersFromNamesRecipe(httpsClient)
const summoners = await getSummonersFromNames(['dubbleignite'])
console.table(summoners.data)
```
### 🦋 Transforming requests
Use [`wrap`](https://github.com/cuppachino/hexgate/blob/main/src/utils/proxy-function.ts#L51), `from`, `to`, and `unwrap` to design your api.
```ts
const summonersRecipe = createRecipe(({ build, wrap, from, to, unwrap }) => ({
getSummoners: {
/**
* Default for reference.
* (arg: { ids?: string; }, init?: RequestInit) => Promise<ApiResponse<{...}>>
*/
v2SummonersDefault: build('/lol-summoner/v2/summoners')
.method('get')
.create(),
/**
* unwrap extracts the data property from an ApiResponse.
* (arg: { ids?: string }, init?: RequestInit) => Promise<{...}>
*/
v2SummonersAwaited: unwrap(
build('/lol-summoner/v2/summoners').method('get').create(),
),
/**
* wrap let's us overwrite the parameters type by supplying conversion functions.
* (summonerIds: (number | `${number}`)[], init?: RequestInit | undefined) => Promise<{...}>
*/
fromSummonerIds: wrap(
build('/lol-summoner/v2/summoners').method('get').create(),
)({
// The return type of `from` is constrained by the expected return type of the function being wrapped.
from(summonerIds: Array<`${number}` | number>, init?) {
return [{ ids: JSON.stringify(summonerIds) }, init];
},
// awaits data similarly to `unwrap`
to,
}),
},
}));
```
### ⚒️ `Recipe`, `RecipeApiFn`, and `CreateWithRecipe`
Some features have options that accept a [`Recipe`](https://github.com/cuppachino/hexgate/blob/main/src/modules/recipe/index.ts#L8), the product of `createRecipe`, or a [`RecipeApiFn`](https://github.com/cuppachino/hexgate/blob/main/src/modules/recipe/index.ts#16), the api argument expected by `createRecipe`. You can achieve similar functionality in your own code by extending [`CreateWithRecipe`](https://github.com/cuppachino/hexgate/blob/main/src/modules/recipe/index.ts#L40) or implementing its overloaded constructor signature.
```ts
import type { CreateWithRecipe } from 'hexgate'
class Foo<T> extends CreateWithRecipe<T> {}
new Foo(recipe)
new Foo((recipeApi) => "your recipe" as const)
```
### Exporting recipes
If you want to export a recipe, you *might* get a type error. This is because the return type of `createRecipe` is inferred with references to `@cuppachino/openapi-fetch` and `node-fetch-commonjs`. To fix this, install the packages as dev dependencies and apply one of the following solutions to your `tsconfig.json`:
#### Map paths (Recommended)
Use this option if you are making a library.
```json
{
"compilerOptions": {
"paths": {
"@cuppachino/openapi-fetch": ["./node_modules/@cuppachino/openapi-fetch"],
"node-fetch-commonjs": ["./node_modules/node-fetch-commonjs"]
}
}
}
```
#### Add types to the global scope (apps)
This *can* be used in applications, but it's not recommended.
```json
{
"compilerOptions": {
"types": ["@cuppachino/openapi-fetch", "node-fetch-commonjs"]
}
}
```
## Additional features
### LcuValue
The [`LcuValue`](https://github.com/cuppachino/hexgate/blob/main/src/modules/lcu-value/index.ts) class implements [`Update`](https://github.com/cuppachino/hexgate/blob/main/src/types/update.ts) and [`CreateWithRecipe`](https://github.com/cuppachino/hexgate/blob/main/src/modules/recipe/index.ts#L40). It's useful for caching data retrieved from the LCU.
```ts
import { Connection, LcuValue, type OperationResponses } from 'hexgate'
type LolOwnedChampionsMinimal =
OperationResponses<'GetLolChampionsV1OwnedChampionsMinimal'>
class ChampionLookup extends LcuValue<LolOwnedChampionsMinimal> {
constructor() {
super(({ build, unwrap }) =>
unwrap(
build('/lol-champions/v1/owned-champions-minimal')
.method('get')
.create()
)
)
}
championById(id: string | number | undefined) {
return this.inner?.find((c) => c.id === Number(id ?? 0))
}
}
const champions = new ChampionLookup()
const client = new Connection({
async onConnect(con) {
await champions.update(con.https)
con.logger.info(
champions.championById(1) satisfies
| Partial<LolOwnedChampionsMinimal>[number]
)
}
})
client.connect()
```
## Development
This package uses [pnpm](https://pnpm.io) to manage dependencies. If you don't have pnpm, it can be installed globally using `npm`, `yarn`, `brew`, or `scoop`, as well as some other options. Check out the [pnpm documentation](https://pnpm.io/installation) for more information.
```ps1
pnpm i
```
| LCU API wrapper for League of Legends | hexgate,javascript,lcu,lcu-api,league-of-legends,nodenext,riot-games,riot-games-api,typescript,typescript-library | 2023-03-19T01:42:16Z | 2023-11-23T07:21:10Z | 2023-11-23T07:06:04Z | 2 | 119 | 374 | 0 | 0 | 19 | null | GPL-3.0 | TypeScript |
FinTechSoftware/Finpro | main | 
# Finpro Design System
FinPro is a UI kit designed specifically for quickly and easily designing your financial interfaces.
FinPro prioritizes user experience with its user-friendly interfaces. It includes components specifically designed for financial applications such as investment, banking, financial analysis, and cryptocurrency, which speeds up your design process and helps you achieve excellent results.
The modern and sleek design of FinPro works seamlessly on all devices. Additionally, with its customizable components, you can design interfaces that fit your needs and brand.
FinPro is designed specifically for the complexity of financial applications and is easily usable with detailed documentation.
Finpro Design System was inspired by Mantine, Geist, Shoelace and Baklava while being developed. | FinPro prioritizes user experience with its user-friendly interfaces. It includes components specifically designed for financial applications such as investment, banking, financial analysis, and cryptocurrency, which speeds up your design process and helps you achieve excellent results. | design-system,ui-kit,web-components,javascript,typescript,ui,frontend | 2023-03-20T13:29:28Z | 2023-04-18T08:32:01Z | 2023-04-07T11:18:26Z | 3 | 0 | 6 | 0 | 3 | 19 | null | MIT | TypeScript |
Elements6007/ReturnYoutubeSort | master | [](https://github.com/mkenney/software-guides/blob/master/STABILITY-BADGES.md#experimental) 
[](https://chrome.google.com/webstore/detail/sort-by-oldest/miglaibdlgminlepgeifekifakochlka)
[](https://addons.mozilla.org/en-US/firefox/addon/sort-by-oldest)
[](https://www.javascript.com/)
[](https://chrome.google.com/webstore/detail/sort-by-oldest/miglaibdlgminlepgeifekifakochlka) [](https://addons.mozilla.org/addon/sort-by-oldest/) [](https://microsoftedge.microsoft.com/addons/detail/sort-by-oldest/goommoejopdlpinofbhmkahjdciaepbi)
# END OF LIFE
YouTube has brought back this feature properly now.
Thanks to everyone who used this extension and especially those who contributed with issues and PRs. It was a fun run.
## Return Youtube Sort By Oldest
This browser extension returns the Youtube Sort By: Oldest feature. It basically inverts the videos with a animation overlay(which can be disabled in settings).
https://user-images.githubusercontent.com/88860704/235992554-7e5f1537-e5d0-41a9-a993-f6db8482434f.mp4
# [Add to Chrome](https://chrome.google.com/webstore/detail/sort-by-oldest/miglaibdlgminlepgeifekifakochlka)
# [Add to Firefox](https://addons.mozilla.org/addon/sort-by-oldest/)
# [Add to Microsoft Edge](https://microsoftedge.microsoft.com/addons/detail/sort-by-oldest/goommoejopdlpinofbhmkahjdciaepbi)
### Known current issues
- Microsoft Edge support pending
- If channel has many videos loading time will be long.
### How it works
Basically when `/videos` is found in the url it activates `contentScript.js`. It then creates the button on a 1s delay which allows the DOM to fully load. Once the button is pressed, it injects `styles` which is css that includes `flex-direction: column-reverse` and `flex-direction: row-reverse` which reverse the contents.
### How manually install
1. Download latest release .zip file
2. Go to extension manager in browser and enable Developer mode
3. Click `Load unpacked` and give the path to the extracted files.
### HELP WANTED
- reverse engineer api or use animations to cover loading time, if possible.
- Website needs alot of work, help with that would be great :)
- `contentScripts.js` needs to be refactored.
## Support the project!
[](https://www.buymeacoffee.com/elements6007)
| Returns YouTube Sort By: Oldest | youtube,sort-by-oldest,experimental,extension-chrome,help-wanted,firefox-addon,javascript,chrome-extension,returnyoutubesort | 2023-03-18T02:02:54Z | 2023-06-27T15:51:22Z | 2023-06-19T19:59:55Z | 2 | 16 | 109 | 1 | 3 | 19 | null | MIT | JavaScript |
fusorjs/dom | main | # Fusor
Fusor is a simple JavaScript library that declaratively creates and updates DOM elements
> It **fuses** elements
## Goals
- **Performance**
- **Simple**, explicit and flexible API
- Compatible and integrable with other tools
- Do one thing and do it well (manage DOM elements)
- Simple things should be simple, complex things should be possible (Alan Kay)
- **Fine-grained control** over:
- DOM updates
- Diffing strategy
- State management
- Lightweight (**~4KiB** and **zero** dependencies)
## FN Example
- Functional-notation button counter (hyper-notation also available)
- **No transpilation needed**
[Playground](https://codesandbox.io/p/sandbox/fusor-intro-cvbhsk?file=%2Fsrc%2Findex.js%3A8%2C23)
```js
import {button, div, p} from '@fusorjs/dom/html';
const CountingButton = (count = 0) => {
const component = button(
{
click$e: () => {
count += 1;
component.update();
},
},
'Clicked ',
() => count,
' times',
);
return component;
};
const App = () =>
div(
p('Hello Fusor'),
CountingButton(),
CountingButton(22),
CountingButton(333),
);
document.body.append(App().element);
```
The `click$e` means:
- `click` name
- `e`vent handler
- `$` separator symbol (configurable)
See the [complete key reference](docs/reference.md#keys)
## JSX Example
- Same counter button implemented with JSX
- Adds the option to `update` the component after the click event
[Playground](https://codesandbox.io/p/sandbox/fusor-intro-jsx-r96fgd?file=%2Fsrc%2Findex.tsx)
```jsx
const CountingButton = ({init: count = 0}) => (
<button click$e$update={() => (count += 1)}>
Clicked {() => count} times
</button>
);
const App = () => (
<div>
<p>Hello Fusor</p>
<CountingButton />
<CountingButton init={22} />
<CountingButton init={333} />
</div>
);
document.body.append(App().element);
```
## Documentation
- [**START WITH TUTORIAL**](docs/tutorial.md)
- [Reference](docs/reference.md)
- [Functional Notation](docs/functional-notation.md)
- [Optimisation](docs/optimisation.md)
- [Fusor vs React](docs/fusor-vs-react.md)
## Demo
- [Tutorial](https://fusorjs.github.io/tutorial/) - routing, request, lifecycle, SVG, JSX...
- [Todo-list](https://github.com/fusorjs/todomvc#readme)
- [SVG analog clock](https://codesandbox.io/p/sandbox/fusor-analog-clock-jsx-hqs5x9?file=%2Fsrc%2Findex.tsx)
## Contribute
Contributions are welcome
See [CHANGELOG](CHANGELOG.md) for details
| Fusor is a simple JavaScript library that helps declaratively create and update DOM elements | dom,fusorjs,javascript,library,typescript,frontend,ui,declarative,fusor,user-interface | 2023-03-14T17:10:03Z | 2024-04-27T17:46:17Z | null | 1 | 0 | 133 | 0 | 0 | 19 | null | MIT | TypeScript |
GDevelopApp/GDevelop-documentation | main | # GDevelop Documentation repository

This repository holds [the official documentation](https://wiki.gdevelop.io) for the [GDevelop](https://gdevelop.io) editor.
## Getting Started
| ❔ I want to... | 🚀 What to do |
| -------------------------------------------- | --------------------------------------------------------------------------------- |
| Improve or add articles to the documentation | Head over to [this README](./SYNTAX.md) to understand the syntax of the documentation.|
| Bring improvements to the documentation interface | Head over to [this README](./CONTRIBUTE.md) to understand how this repository works. | | Documentation of GDevelop - the fast, open-source, no-code game engine. | 2d-game,2d-game-engine,3d-game,3d-game-engine,game,game-development,game-engine,gdevelop,hacktoberfest,html5-game-engine | 2023-03-15T12:57:22Z | 2024-05-23T00:12:19Z | null | 19 | 187 | 336 | 0 | 132 | 18 | null | null | HTML |
SudhansuuRanjan/tesla-nitp-web | main | <h1 align='center'> Tesla Club NIT, Patna 🤖 </h1>
Tesla Club is the official club of electrical engineering department of NIT, Patna, the premier club for Electrical Engineering enthusiasts and professionals! Founded in 2021 by a group of bright-minded seniors, under the guidance of our esteemed PI - Dr. Amitesh Sir, T.E.S.L.A. Club is dedicated to fostering public speaking, teamwork, technical excellence, and management skills among its members. Our primary aim is to provide a platform for seniors, juniors, and alumni to come together, learn, grow, and secure rewarding careers in the field of Electrical Engineering.
# T.E.S.L.A. NITP Website
Official website of Tesla Club NIT Patna

Project has following functionalities
1. Creating a Component in React
2. Making HTTP calls
3. Communicating between parent and child component
4. Using Basic Routing in React
5. Using SCSS, CSS and Tailwind for Styling
# Prerequisites 👨💻
### Install Node JS
Refer to https://nodejs.org/en/ to install nodejs
### Install vite
Install Vite npm package globally. This will help to easily run the project and also build the source files easily. Use the following command to install vite
```bash
npm install -g vite
```
### Learn Tailwind CSS
This project uses `Tailwind CSS` if you don't have any hands-on experience with tailwind css then you can refer to their [docs](https://tailwindcss.com/).
### Learn React JS
If you are new to React JS then you can refer to their [docs](https://react.dev/).
### Learn SCSS
If you are new to SCSS then you can refer to their [docs](https://sass-lang.com/documentation).
### Learn Appwrite
If you are new to Appwrite then you can refer to their [docs](https://appwrite.io/docs).
## Live WebSite URL
The WebSite is deployed in https://tesla-nitp.vercel.app/
Click on the link to see the website.
## Cloning and Running the Application in local
Clone the project into local.
Install all the npm packages.
Go into the root folder and type the following command to install all npm packages
```bash
npm install
```
Change the `.env.example` file to `.env` and add the required credentials.
(You can get the credentials from the admin of the project or you can create your own project in appwrite and use the credentials)
```bash
VITE_APPWRITE_PROJECT_ID=
VITE_APPWRITE_DATABASE_ID=
VITE_APPWRITE_BUCKET_ID=
```
In order to run the application Type the following command
```bash
npm run dev
```
The Application Runs on [http://localhost:5173/](http://localhost:5173/)
`Contributions are welcome 🎉🎉`
# Ways to contribute:
1. Solve the issues which are listed.
2. Create your own issue and then send PR.
Please refer to the project's style and contribution guidelines for submitting patches and additions. In general, we follow the "fork-and-pull" Git workflow.
1. **Fork** the repo on GitHub
2. **Clone** the project to your own machine
3. **Commit** changes to your own branch
4. **Push** your work back up to your fork
5. Submit a **Pull request** so that we can review your changes
### 🚀 Please abide by [**Contributing Guidelines**](https://github.com/SudhansuuRanjan/tesla-nitp-web/blob/main/CONTRIBUTING.md) and [**Code of Conduct**](https://github.com/SudhansuuRanjan/tesla-nitp-web/blob/main/CODE_OF_CONDUCT.md).
## Contributors ✨
Thanks goes to these wonderful people ❤️:
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<a href = "https://github.com/SudhansuuRanjan/tesla-nitp-web/graphs/contributors">
<img src = "https://contrib.rocks/image?repo=SudhansuuRanjan/tesla-nitp-web"/>
</a>
<!-- markdownlint-restore -->
<!-- prettier-ignore-end -->
<!-- ALL-CONTRIBUTORS-LIST:END -->
| Official Website of Tesla NIT, Patna | aos,react,tailwindcss,vite,react-query,scss,appwrite,hacktoberfest,javascript | 2023-03-25T12:38:04Z | 2023-10-25T14:37:55Z | null | 18 | 46 | 191 | 2 | 23 | 18 | null | MIT | JavaScript |
WNortier/ts-paginator | main | # ts-paginator
<div style="display: flex">
<img style="margin-right: 10px" alt="GitHub Workflow Status" src="https://img.shields.io/github/actions/workflow/status/wnortier/ts-paginator/pipeline.yml">
<img style="margin-right: 10px" alt="GitHub last commit (by committer)" src="https://img.shields.io/github/last-commit/wnortier/ts-paginator">
</div>
<br />
<div style="display: flex">
<img style="margin-right: 10px" alt="npm" src="https://img.shields.io/npm/v/ts-pagination">
<img style="margin-right: 10px" alt="npm type definitions" src="https://img.shields.io/npm/types/ts-paginator">
</div>
<br />

<br />
> ### `ts-paginator` is a TypeScript pagination hook for React or NextJS
<br />
## Args
Instantiate the `useTsPaginator` hook with the following arguments:
| Args | Description |
| -------------------------------- | ----------------------------------------- |
| `totalRecordCount: number` | The total count of records |
| `currentPage: number` | The current page selection (zero indexed) |
| `rowsPerPage: 10` (default `10`) | The current rows per page selection |
<br />
## UI/UX Functions
| Function | Description | Args | Return Type | Example Returns |
| ---------------------------------- | ------------------------------------------------------------------------------------------------------- | -------------------------- | ----------- | ---------------------------------- |
| `determinePaginationMessage` | Calculates the pagination message | `options?: { verb: 'Showing' OR 'Displaying', noun?: string, hideMessageOnZeroRecords: boolean }` | string | `Displaying 1 to 10 of 20 records` |
| `determineRowsPerPageOptions` | Calculates the rows per page options | | number[] | `[10]` |
| `determinePaginationPages` | Calculates the pagination pages and uses `0` as a range placeholder for page ranges greater than three | | number[] | `[1, 2]` |
| `determinePaginationDisabledState` | Can be used to disable the previous page or next page button | | boolean | `true` |
<br />
## State Altering Functions
| Function | Description | Args | Return Type |
| ------------------------------ | ------------------------------ | ----------------------------- | ----------- |
| `handleChangeTotalRecordCount` | Changes the total record count | `newTotalRecordCount: number` | void |
| `handleChangeRowsPerPage` | Changes the rows per page | `newRowsPerPage: number` | void |
| `handleChangePage` | Changes the current page | `newPage: number` | void |
<br />
## Extra Functions
Not required to build working pagination, but might be useful. Coming soon.
<br />
## Usage
`npm i --save ts-paginator`
```js
import useTsPaginator from 'ts-paginator';
function MyComponent() {
const {
totalRecordCount,
rowsPerPage,
currentPage,
_determinePaginationMessage,
_determinePaginationDisabledState,
_determinePaginationPages,
_determineRowsPerPageOptions,
_handleChangeTotalRecordCount,
_handleChangeRowsPerPage,
_handleChangePage,
} = useTsPaginator(20, 0);
const message = _determinePaginationMessage({ verb: 'Showing', noun: 'entries' }); // Showing 1 to 10 of 20 entries
return <p>{message}</p>;
}
```
<br />
## Release Notes
*`1.6.0`*
- Adressed a shortcoming in `_determinePaginationMessage` not properly handling a `totalRecordCount` of `0`
- Added an optional `noun` key to the `_determinePaginationMessage` `options` parameter
- Added an optional `hideMessageOnZeroRecords` key to the `_determinePaginationMessage` `options` parameter which, if set, returns the message as an empty string
## Example
https://github.com/WNortier/ts-paginator-example

| ts-paginator is a TypeScript pagination hook for React or NextJS: www.npmjs.com/package/ts-paginator | frontend,javascript,nextjs,pagination,pagination-library,react,typescript | 2023-03-18T14:01:54Z | 2023-10-08T14:36:28Z | null | 1 | 3 | 103 | 0 | 0 | 18 | null | null | TypeScript |
khuramhaf/Online-Video-Editor | main | Online MP4 Video Editor with Web APIs
Edit MP4 videos online without uploading files to a server. Our browser-based video editor uses the Web Coded API and Web Audio API to decode audio and video. The video editor provides trimming and cutting functionality, and also allows for audio extraction from video files. The JavaScript Recorder is used to recode the video and convert it into a .webm file.
Features:
- Trim and cut videos
- Extract audio from videos
- Convert videos to .webm format
- No downloads or installations required
- Works on all major browsers
If you want to participate in the project look at the issues
For those seeking to expand their knowledge of the development process, my course offers an invaluable resource.
https://khuram-hafeez-s-school.teachable.com/p/how-to-develop-javascript-based-video-editor
# See Our Latest Video Editor
https://www.amooiz.com
| Edit MP4 videos online without uploading files to a server. Our browser-based video editor makes it easy to trim, cut and more. No downloads or installations required. | javascript,video-editor,web-application,mp4-files,html,javascipt,online-video-editor,web-audio-api,web-codecs | 2023-03-13T05:34:10Z | 2023-12-25T13:53:14Z | null | 1 | 0 | 29 | 0 | 6 | 17 | null | NOASSERTION | JavaScript |
Alejandroq12/my-books | dev | <a name="readme-top">My Books</a>
<div align="center">
<img src="./assets/img/logo/logo-readme.png" alt="logo" width="600" height="auto" />
<br/>
<h3><b>My Books</b></h3>
</div>
<!-- TABLE OF CONTENTS -->
# 📗 Table of Contents
- [📗 Table of Contents](#-table-of-contents)
- [📖 My Books ](#-my-books-)
- [🛠 Built With ](#-built-with-)
- [Tech Stack ](#tech-stack-)
- [Key Features ](#key-features-)
- [🚀 Live Demo ](#-live-demo-)
- [💻 Getting Started ](#-getting-started-)
- [Prerequisites](#prerequisites)
- [Setup](#setup)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#deployment)
- [👥 Authors ](#-authors-)
- [🔭 Future Features ](#-future-features-)
- [🤝 Contributing ](#-contributing-)
- [⭐️ Show your support ](#️-show-your-support-)
- [🙏 Acknowledgments ](#-acknowledgments-)
- [❓ FAQ (OPTIONAL) ](#-faq-optional-)
- [📝 License ](#-license-)
<!-- PROJECT DESCRIPTION -->
# 📖 My Books <a name="about-project"></a>
"My books" is a website that displays a list of books and allows you to add and remove books from that list. By building this application, I learned how to manage data using JavaScript. Thanks to that my website is more interactive. I also used a medium-fidelity wireframe to build the UI.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>Client</summary>
<ul>
<li><a href="https://developer.mozilla.org/es/docs/Learn/HTML">HTML</a></li>
<li><a href="https://developer.mozilla.org/es/docs/Web/CSS">CSS</a></li>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript">JavaScript</a></li>
</ul>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **A fully functional website.**
- **Mobile first website.**
- **Only using semantic HTML.**
<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://alejandroq12.github.io/my-books/)
<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:
1. A web browser to see the website.
2. And a code editor if you want to edit the code. For example, Vs Code.
### Setup
Clone this repository to your desired folder:
1. Clone it using your terminal:
```
git clone https://github.com/Alejandroq12/my-books.git
```
2. If the previous method does not work you may also download the repo as a .zip file and once you decompress the .zip file you are ready to use it.
Important: do not forget to clone the repo in the correct folder, probably you will use the following commands to achieve that in your terminal:
1. To navigate a certain folder:
```
cd <folder name>
```
2. To navigate to the previous folder:
```
cd ..
```
### Install
Install this project with:
1. To see this project you will not need to install something else.
2. But in case you want to test the linter that I configured to check errors you will have to complete the following steps:
Run the command to install all necessary dependencies (including linters):
```
npm install
```
3. If you run npm install do not forget to create a .gitignore file to prevent the node_modules to be uploaded to GitHub:
```
.gitignore
node_modules/
```
### Usage
To see this project you will only need to:
1. Open the index.html file with a web browser.
### Run tests
1. Make sure all the linters and their configurations are installed and set up correctly in your project. If you haven't installed them yet, run `npm install` in your project directory to install the packages listed in your `package.json` file.
2. Run each linter with the following commands:
- For ESLint:
```
npx eslint .
```
- For Stylelint:
```
npx stylelint "**/*.{css,scss}"
```
- For hint:
```
npx hint .
```
3. Review the output of each linter and fix any issues reported.
### Deployment
You can deploy this project using GitHub pages:
1. Log in to your GitHub account and navigate to the repository that contains your website files.
2. Make sure that your website files are located in the main branch and in the root directory of the repository.
3. If your website is not already live, make sure that the index.html file is the main page of your website.
4. Click on the "Settings" tab in your repository.
5. Scroll down to the "GitHub Pages" section.
6. In the "Source" dropdown menu, select the branch where your website files are located. For a simple website with only HTML and CSS, this is typically the main branch.
7. In the "Path" field, make sure that the root directory is specified (i.e., "/").
8. Click "Save" to generate your website.
9. Wait a few minutes for GitHub to build and deploy your website.
10. Once the website is deployed, visit the GitHub Pages URL to view your site.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 **Julio Quezada**
- GitHub: [Alejandroq12](https://github.com/Alejandroq12)
- Twitter: [@JulioAle54](https://twitter.com/JulioAle54)
- LinkedIn: [Julio Quezada](https://www.linkedin.com/in/quezadajulio/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- [ ] **I will add a contact form**
- [ ] **I will add media queries for larger screens**
- [ ] **I will use JavaScript to add more**
<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 star.
Thanks in advance.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank Wes Bos because I learned how to implement flexbox with his free tutorial:
- Wes Bos: [Wes Bos](https://flexbox.io/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FAQ (optional) -->
## ❓ FAQ (OPTIONAL) <a name="faq"></a>
- **Are you goin to use React in the future?**
- Yes! I will transform this website into a React App.
- **Did you create this website from scratch?**
- Yes! From zero, and I will improve it a lot.
<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>
| "My books" is a website that displays a list of books and allows you to add and remove books from that list. By building this application, I learned how to manage data using JavaScript. Thanks to that my website is more interactive. I will also use a medium-fidelity wireframe to build the UI. | css,es6-javascript,html,javascript,object-oriented-programming,open-closed-principle,single-responsibility-principle | 2023-03-20T17:21:34Z | 2023-06-29T14:10:02Z | null | 1 | 5 | 46 | 0 | 1 | 17 | null | null | JavaScript |
kyungseo/project-web-starter | master | # KYUNGSEO.PoC - Project Web Starter Template
## 개요
**Project Web Starter**는 중소규모의 개발프로젝트 실무에서 즉시 활용할 수 있는 시작 템플릿을 구현하는 것을 목적으로 합니다.
*※ 개인적 용도로 시작한 작업의 부족한 결과물이지만 Public Repo.에 공개를 결정하였습니다. 대신 개선과 정비가 필요한 부분들에 대해서는 초기 버전 공개 후에도 계속해서 버그 및 이슈에 대한 해결, 기능 보완 및 추가 등의 활동을 지속할 예정입니다.*
### 기본 컨셉
* **Structure 및 Module의 구성**
* 실제 프로젝트에서 확장 가능하도록 Directory, Package 등의 기본 Structure를 **Simple**하게 구성 *- 처음 계획 시에는 Framework, Security, UI 등의 역할과 기능에 따라 각각의 Module로 분리하여 구성하려 하였으나, 최종적으로는 All-in-one 형태의 Module(Project) 하나로 구성함*
* 개발프로젝트 수행 시 필수적이고 최소한의 기능 요소들로 Module을 구성
* **Implementation 고려 사항**
* 현재의 개발 트렌드를 반영하여 `Spring Boot`, `JPA`(+ `MyBatis`) 등에 기반한 구현
* 최근 순수 JSP는 잘 사용하지 않는 추세를 고려하여 Template Engine(`Thymeleaf`)을 활용하여 구현
* Backend 및 Frontend 개발을 위한 기본 샘플 구현
## 적용 기술
### 기본 Spec.
| Technology | Spec |
| --- | --- |
| Java | java-11-openjdk-11.0.2 |
| Maven | apache-maven-3.8.7 |
| Database | H2 Database 2.1.214 (추가적으로 MariaDB 10.10.2에서 테스트) |
**Java**의 경우 11 버전을 사용했지만 1.8+ 버전도 사용 가능합니다. **Database**의 경우 기본적으로 H2 Database를 적용하고 있지만 선호하는 Database로 변경해도 무관합니다.
### Backend Dependencies
| Technology | Dependency |
| --- | --- |
| Spring Boot | Spring Boot 2.7.8 |
| Spring Framework | Spring Web 5.3.25, Spring Security 5.7.6, Spring Data JPA 2.7.7, etc. |
| Persistency Framework | Hibernate 5.6.14, QueryDSL 5.0.0, MyBatis 3.5.11 |
| Template engine | Thymeleaf 3.0.15 |
| Others | Lombok 1.18.24, Springdoc-openapi(API 문서 자동화) 1.6.14 |
**Spring Boot**는 우선 2.x 버전을 채택하였으며, 추후 3.x로 업그레이드할 계획입니다. **Persistence**는 인증/인가 등 기본 탑재되는 기능 구현은 `jpa`로, 실제 프로젝트 업무시스템 구현은 `mybatis`로 구현할 수 있도록 하였습니다. *- 물론 어느쪽이든 선호하는 방식으로 구현 가능합니다.*
### Frontend Dependencies
| Technology | Dependency |
| --- | --- |
| JavaScript Libraries | jQuery 3.5.1, cryptojs-3.1.2, cryptojs-3.1.2, etc. |
| | KSM JS(KyungSeo's Mini JavaScript Library) |
| CSS Library | Bootstrap 3.4.1 |
jQuery는 오래된 라이브러리이지만 여전히 가치 있고, 실무에도 많이 활용되고 있습니다. **jQuery와 Bootstrap의 조합**만으로도 모던한 UI 구현이 충분합니다.
※ `KSM`은 오래 전(2016 년)에 작성했던 JS 모듈인데, 일관된 Ajax 호출 및 표준화된 전후 처리를 위한 간략한 코드를 제공하는 용도입니다. 추가적으로 Dialog 및 Utility 등 몇몇 기능을 포함하고 있습니다. *- 참고로 저는 전문적인 Frontend 개발자가 아닙니다.*
## 주요 기능 및 특징
### Architecture 및 Mechanism
#### Backend
* **Layered Architecture**: Spring MVC, JPA(또는 MyBatis) 기반인 만큼 자연스럽게 Presentation, Service, Persistence 등의 레이어를 분리하여 개발할 수 있는 구조입니다.
* **Persistence 레이어**:
* **Multi-Datasource**: 실제 프로젝트는 단일 Database로 구성되지 않는 경우가 대부분입니다. 다양한 DB, MQ 등의 데이터소스들을 조합할 수 있도록 Multi Datasource에 대한 예시를 구조적으로 적용하였습니다. *- 예를 들어 `**.repository.ds1` 패키지와 `**.repository.ds2` 패키지 하위의 `JpaRepository`는 각각 DS1, DS2 데이터소스가 적용됩니다.*
* **Transaction Handling**: JPA(ORM Repository)와 MyBatis(SQL-Mapper)의 구현체들이 동일한 `TransactionManager`로 관리되도록 구성하였습니다.
* **Technical Mechanism**: 다음의 기본적인 필수 매커니즘에 대한 기반 구조를 적용하였습니다.
* **Secure Properties**: `*.properties`에 대한 Utility 지원, 추가적으로 민감한 정보에 대해서는 `Jasypt`를 사용한 암호화 처리 가능
* **Message Handling**: `i18n` 기반의 Message 처리
* **Exception Handling**: `@Controller` 및 `@RestController`에 대한 Global Exception 처리
* **Log Handling**: `@Aspect`, `HandlerInterceptor` 등을 활용한 기본 로깅, `log4jdbc`를 활용한 SQL 로깅 처리
* **Validation Check**: `ConstraintValidator`, `@Constraint`, `javax.validation.constraints.*` 등을 활용한 기본 유효성 체크, 그외 CustomValidationService 예시
* **Double Submit 방지**: Request 요청 시 고유한 ID를 생성함으로써 `ViolationInterceptor`을 활용한 이중요청 방지 처리
#### Frontend
* **다양한 Layout 구성**: `Thymeleaf Layout Dialect`를 활용하여 화면별로 상이한 페이지 레이아웃을 적용할 수 있습니다.
* **동적 UI 구성**: 로그인한 **사용자의 역할 및 권한**에 따라 메뉴를 동적으로 구성할 수 있으며, 특정 Link, Button 등의 요소들에 대한 접근을 제어할 수 있습니다.
* **Validation Check**: `validate.js`를 사용하여 API 요청 직전에 손쉽게 데이터에 대한 유효성 체크를 수행할 수 있습니다.
* **Ajax 호출 표준**: UI에서 API 호출 시 `Option`을 통해 Loading 효과를 주어 화면을 Blocking하거나 `callback` 수행 전,후에 공통의 기능을 처리할 수 있습니다.
### Authetication 및 Authorization
#### 사용자 등록 및 메일
* 간단한 폼(Form)을 사용하여 실제 사용자 등록
* 비밀번호 검증 및 강도 체크 지원
* 검증 Token을 사용하여 사용자 이메일의 유효성 확인: 사용자가 Confirm할 때까지 비활성화 상태로 유지
* Google OTP를 사용한 2FA 지원
* Remember Me 지원
* 비밀번호 분실 시 Token을 사용한 재설정 기능 지원
#### 인증 및 인가
* 사용자의 로그인 및 로그아웃 지원
* 중복 로그인 방지 지원
* 로그인 시도가 10회 이상 지속되면 자동 Blocking 지원
* 역할 기반의 권한 부여
#### Session 및 Token 관리
* Session 유효 시간 경과 시 Invalidate 처리
* 사용자가 로그인 후 아무 작업도 하지 않은 채 일정 시간 경과 시 자동 로그아웃 처리
* 사용자 등록, 비밀번호 재설정 등의 프로세스에서 발급되는 Token은 24시간만 유효
* Spring Task를 사용하여 무효 토큰 자동 삭제 처리
### 사용자 관리(Sample)
* **사용자 CRUD**: 사용자에 대한 CRUD 구현 예시
* **사용자 목록 Paging**: `Pageable` 및 `PagingRequestDTO`를 활용한 Paging 구현 및 목록 화면에 페이징 네이게이션 제공
* **다양한 예시**: Ajax 호출, Server-side/Client-side의 Validation 처리, Message 처리, Exception 처리, Data Formatting, Dialog 등을 포함한 다양한 샘플 코드 포함
## 'Project Web Starter' 셋업 절차
### Prerequisites
`project-web-starter`를 clone하기 전에 다음과 같은 기본적인 환경이 구성되어야 합니다.
* Java는 Default!
* Git, Maven은 필수!
### Clone 'Project Web Starter'
#### git clone
`git` 명령을 사용하여 project-web-starter 프로젝트를 `clone` 합니다.
```bash
$ git clone https://github.com/kyungseo/project-web-starter.git
$ cd project-web-starter
```
#### ※ Project Structure
참고로 `project-web-starter` 프로젝트의 구조는 다음과 같습니다.
```
project-web-starter/src/main
|
├─┬ java/kyungseo/poc/simple/web
│ ├── appcore → Core 모듈
│ ├── security → Spring Security & JWT 모듈
│ ├─┬ site → 사이트 Root (프로젝트의 타겟 시스템의 이름이라 생각하면...)
│ │ ├── admin → 사이트 관리자 모듈
│ │ ├── common → 사이트 공통 모듈
│ │ ├── sample → 사이트 샘플 모듈
│ │ └── user → 사이트 일반 사용자 모듈
| |
│ └── SimpleWebApplication.java → Spring Boot Application
|
├─┬ resources
│ ├── messages → message.properties 경로
│ ├── mybatis → mybatis mapper.xml 경로
│ ├── static → css, font, images, js, vendor 등의 Static Resource 경로
│ └─┬ templates → Thymeleaf Root
│ ├── layout → Layout 및 Fragments 경로
│ └─┬ view → 사이트 화면(뷰) Root
| ├── admin → 관리자 화면
| ├── common → 공통 화면
│ ├── sample → 샘플 화면
│ └── user → 사용자 화면
|
└── pom.xml → Maven pom
```
※ Eclipse의 Project Explorer

### Database 구성
Database 구성은 Option 사항입니다. 기본적으로 `project-web-starter` 프로젝트는 내장된 H2 Database를 사용하도록 구성되어 있으므로 별도의 구성이 필요 없습니다. 하지만 만약 H2 대신 MariaDB를 사용하고자 한다면 다음과 같이 Database와 User를 생성해야 합니다.
```sql
CREATE DATABASE mydatabase DEFAULT CHARACTER SET utf8;
CREATE USER 'developer'@'%' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON mydatabase.* TO developer@'%';
FLUSH PRIVILEGES;
```
그리고 생성한 Database와 User 정보를 `project-web-starter` 프로젝트 내의 `src/main/resources/application.properties`에도 반영해야 합니다.
````properties
# [ DataSource 1 ]
spring.datasource.driver-class-name=org.mariadb.jdbc.Driver
spring.datasource.jdbc-url=jdbc:mariadb://localhost:3306/mydatabase
spring.datasource.ds2.username=developer
spring.datasource.ds2.password=password
````
### Mail 구성
`project-web-starter`를 구동하게 되면, 새로운 사용자를 등록하거나 비밀번호를 재설정하는 작업을 수행할 때 실제로 email을 전송합니다. 따라서 `src/main/resources/application.properties`에서 관련 설정을 수정해야 합니다.
````properties
# [ JavaMail ]
support.email=developer@company.com
spring.mail.host=smtp.google.com
spring.mail.port=465
spring.mail.protocol=smtps
spring.mail.username=deveoper
spring.mail.password=password
````
### Build & Run
이제 모든 준비가 끝났습니다.
사용 중인 IDE에 Clone 또는 Zip 파일로 직접 다운로드 한 프로젝트를 Import하여 바로 실행하면 됩니다.
만약 IDE를 사용 환경이 아니라면, `project-web-starter` 프로젝트 디렉토리로 이동한 후 다음과 같이 `mvn` 명령을 사용하면 프로젝트를 `build`할 수 있습니다.
```bash
mvn clean install
````
그리고 Spring Boot 모듈을 실행하려면 프로젝트 디렉토리에서 `mvn spring-boot:run` 명령을 실행하면 됩니다.
```bash
./mvn spring-boot:run # UNIX/Linux 기반 OS인 경우
mvnw.cmd spring-boot:run # Windows 기반 OS인 경우
```
### Browser 접속
마지막으로 Chrome 이나 Edge 등의 Browser를 열고 다음 URL들에 접속해보도록 합니다.
* [Project Web Starter Template (simple web)](http://localhost:8080)
* Admin 유저: admin@company.com / password
* 일반 유저: user001@company.com / password
* [KYUNGSEO.PoC - API (Swagger UI)](http://localhost:8080/swagger-ui/index.html)
* [H2 Console](http://localhost:8080/h2) - 비번 없이 `sa`로 접속
## 참고 화면들
대표적인 화면들의 Screeshot을 보여드립니다. 여기 표시되지 않은 화면들은 App을 실행하여 직접 확인하시기 바랍니다.
### 두 가지의 Layout 형태
현재 다음 두 가지 형태의 레이아웃을 적용하였습니다. 필요한 경우 추가적인 레이아웃을 손쉽게 추가/적용할 수 있습니다.

메인 화면의 레이아웃입니다.

사용자 관리의 목록 화면에서 LNB가 표시된 레이아웃입니다.
### Authentication 관련 화면들
#### 회원 가입

회원 가입 폼입니다. 이미 등록된 email인지와 비밀번호 강도를 체크합니다.
<details>
<summary>이후 절차들입니다.</summary>

회원 등록을 완료하면 사용자에게 확인 메일이 발송됩니다.

사용자는 메일 확인 후 링크를 클릭하여 컨펌을 진행합니다.

최종 등록 완료 화면입니다.
</details>
#### 로그인 및 로그아웃

로그인 폼입니다.
2FA 사용으로 설정한 경우 Google OTP 코드를 입력해야합니다. 그렇지 않은 경우 이메일/비밀번호만 입력하면 됩니다.
<details>
<summary>2FA 설정 화면 및 로그아웃 화면</summary>

2FA 설정 화면입니다. 2FA를 활성화시킨 경우 Google Authenticator에서 QR 코드를 스캔하여 등록해야 로그인 가능합니다.

사용자가 로그아웃하게 되면 표시되는 화면입니다.
</details>
#### 비밀번호 변경/갱신, 세션 관련 화면들
다음의 기타 화면 모음을 확인하세요.
<details>
<summary>기타 화면 모음</summary>




</details>
### 사용자 관리 화면

사용자 목록 조회 화면입니다.

사용자 정보 화면으로 validation 결과를 표시하고 있습니다.

사용자 정보 화면에서 수정 직후 다시 목록 화면으로 이동하기 전의 Dialog를 표시하고 있습니다.
### Swagger UI

Swagger UI 화면입니다. 현재 게시된 API 목록을 확인할 수 있습니다.
### H2 Console

H2 Console 화면입니다. Table 목록을 확인하고 SQL을 실행할 수 있습니다.
<details>
<summary>H2 Console 로그인 화면</summary>

Console 로그인 화면입니다. Driver Class와 JDBC URL을 선택하고 'User Name'에 `sa`를 입력하면 됩니다.
</details>
## 차후 계획
여유 시간이 있다면 다음 항목들을 진행할 예정입니다.
* 현행 코드의 미비점 지속 업데이트 및 보완
* 분산 환경 대응
* 이중화 등 분산환경에서의 Session 공유 처리 (Redis 등)
* 로그인 사용자의 location 및 device 정보 연계 (1 device 1 session)
* 사용자가 Multi-Device를 사용하는 것을 고려하여 장비별 인증정보 매핑
* 분산 트랜잭션 (2PC)
* 샘플 추가
* WYSIWYG 에디터, 파일업로드, 엑셀 등등 실무에서 많이 요구되는 요건들 위주...
* 신규 프로젝트 개발
* Vue.js 기반의 Stateless 애플리케이션 개발을 위한 표준 템플릿 구축
## References
* [Spring Security Registration Tutorial](http://www.baeldung.com/spring-security-registration)
* [Spring Data Jpa](https://docs.spring.io/spring-data/jpa/docs/current/reference/html/)
* [Tutorial: Using Thymeleaf](https://www.thymeleaf.org/doc/tutorials/3.1/usingthymeleaf.html)
* [OpenAPI 3 Library for spring-boot](https://springdoc.org/)
* [VALIDATE.JS](https://validatejs.org/)
| KYUNGSEO.PoC - Project Web Starter Template (웹 애플리케이션 개발 프로젝트를 시작하기 위한 기반 템플릿) | backend,frontend,rest-api,spring,spring-boot,spring-boot-jpa,spring-security,spring-security-jwt,thymeleaf,mybatis | 2023-03-12T09:22:25Z | 2023-03-21T07:26:44Z | null | 1 | 0 | 4 | 0 | 4 | 17 | null | Apache-2.0 | Java |
OuterSpaceHobo/ScanLingua | main | # ScanLingua 
ScanLingua provides Japanese text recognition of selected screen areas with translation, kanji annotation and audio.
- Check on subtitles, manga panels or any Japanese text;
- Edit recognized text and alter annotations;
- Create and export kanji cards to Anki via Anki-connect;
- Free and open source.
This project is heavily inspired with Yomichan and use awesome japanese dictionary Jotoba API for kanji annotation (Jotoba takes data from various resources, you can check them out at https://jotoba.de/about).
Demo video: https://www.youtube.com/watch?v=BbWeflDf8-A
ScanLingua use various Google APIs. Free API key creation is mandatory to use extension functions.
This APIs provide free monthly limits, which should suffice for personal use (e.g. recognition API provide 1000 free requests, translation and text-to-speech provide 500 000 character).
To-Do list: add optional user registration with crop history & stats, fix errors and expand existing functionality;
Feedback is highly appreciated!
# How to get API key?
To use the ScanLingua, you'll need to create a Google API key. Here's how:
1. First, go to the Google Cloud Console website (https://console.cloud.google.com/).
2. If you don't already have a Google Cloud account, you'll need to create one. Click the "Get started for free" button and follow the prompts to create an account.
3. After logging into the Google Cloud Console, create a new project by clicking on the projects menu in the top navigation bar and then clicking "New Project".
<img width="754" alt="Select a project" src="https://github.com/OuterSpaceHobo/ScanLingua/assets/116193464/71504d71-68ef-490b-ab74-90dacfa07849">
4. Give your project a name and click "Create". It may take a few moments to create the project.
<img width="551" alt="New Project" src="https://github.com/OuterSpaceHobo/ScanLingua/assets/116193464/633d1eda-3d65-4c7d-bbbb-dbc4b4185802">
5. Once your project is created, you'll need to enable APIs. To do this, navigate to the "APIs & Services Dashboard" by clicking on the hamburger menu in the top left corner of the page and selecting "APIs & Services" > "Dashboard".
<img width="708" alt="APT APIs Services" src="https://github.com/OuterSpaceHobo/ScanLingua/assets/116193464/3e8a48cf-a6e7-4f24-8506-a62dfa5baca5">
6. On the "APIs & Services Dashboard" page, click the “+ Enable APIs and services” button.
7. In the search bar, find and select the "Google Vision API”, "Google Translation API" and “Google text-to-speech API” and click on each of them to enable them for your project.
<img width="648" alt="Welcome to the API Library" src="https://github.com/OuterSpaceHobo/ScanLingua/assets/116193464/12b98e37-2d3a-4d12-b95d-1872ac7477a8">
8. After enabling the APIs, you'll need to create an API key. To do this, go back to the "APIs & Services Dashboard" page and click the "+ Create Credentials" button, then select "API key".
<img width="599" alt="API APIs Services" src="https://github.com/OuterSpaceHobo/ScanLingua/assets/116193464/aab711cf-b616-43d9-85ad-16976803c0f2">
9. Your API key will now be displayed on the screen and in credentials page.
10. Enabling billing is mandatory for the Google APIs to work. To do this, navigate to the "Billing" section of the Google Cloud Console by clicking the "Billing" link in the left sidebar.
<img width="287" alt="Google Cloud" src="https://github.com/OuterSpaceHobo/ScanLingua/assets/116193464/c7c59d25-7205-4731-90c6-d0266347a016">
11. On the "Billing" page, click the "Link a billing account" button.
12. If you don't have a billing account yet, you will need to create one. Follow the prompts to set up your billing account.
13. Once your billing account is set up, link it to your project by selecting it from the list of available billing accounts and clicking the "Set account" button.
14. Enter created API key in extension Home tab form.
Done.
Enabling billing will allow you to use the Google APIs without any quota restrictions, as long as you stay within the free usage limits. You will only be charged if you exceed the free usage limits or if you use any billable features of the APIs.
- Optionally you can specify the enabled APIs that key can call at key tab.
- Developer don't have access to key, it is stored locally.
# Troubleshooting
* If Ctrl+Shift+S hotkey don't work try to set it manually at chrome://extensions/shortcuts for "take-screenshot" command.
* For other questions use links at the extension popup footer.
# License
The scripts and documentation in this project are released under the [MIT License](https://github.com/OuterSpaceHobo/ScanLingua/blob/main/LICENSE).
| Free open source chrome extension for immersive japanese language learners. | chrome-extension,japanese,japanese-study,react,typescript,javascript | 2023-03-23T14:11:58Z | 2023-07-04T05:07:21Z | null | 1 | 0 | 38 | 0 | 1 | 17 | null | MIT | TypeScript |
yildizmy/e-wallet | master | ## e-wallet
Full stack web app with React and Spring Boot used for managing digital wallet and transactions.
<br/>
<img src="backend/src/main/resources/docs/images/dashboard.png" width="1060"/>
<br/>
<img src="backend/src/main/resources/docs/images/wallets.png" width="1060"/>
<br/>
### Description
This application allows users to implement e-wallet with REST API to create it, top it up, check its balance and withdraw.
Users can register and login to the system using their credentials. They can also add any wallets for any account provided by IBAN
and transfer to their wallet or any other wallet defined in the system.
The application also has a custom IBAN validator that can easily be applied any IBAN fields via annotation as shown below:
```
@ValidIban(message = "{iban.valid}")
private String iban;
```
<br/>
<img src="backend/src/main/resources/docs/images/transactions.png" width="1060"/>
<br/>
<img src="backend/src/main/resources/docs/images/transfers.png" width="1060"/>
<br/>
### Architecture
The relationship between the entities is shown on [Architecture](backend/src/main/resources/docs/architecture.md) section.
<br/>
### Getting Started
In order to run and test the application, see details on [How to run?](backend/src/main/resources/docs/how_to_run.md) and [How to test?](backend/src/main/resources/docs/how_to_test.md) sections.
<br/>
### Dependencies
* Spring Boot
* Spring Web
* Spring Security
* Spring Data JPA
* Lombok
* MapStruct
* PostgreSQL
* Flyway
* React
* Node.js
* Material UI
<br/>
### Documentation
[Spring Boot](https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/)<br/>
[Spring Security](https://docs.spring.io/spring-security/reference/index.html)<br/>
[Spring Data JPA](https://docs.spring.io/spring-data/jpa/docs/current/reference/html/)<br/>
[springdoc-openapi v2](https://springdoc.org/v2/)<br/>
[MapStruct](https://mapstruct.org/)<br/>
[JUnit 5](https://junit.org/junit5/docs/snapshot/user-guide/)<br/>
[Entity Relationship Diagram (ERD)](https://www.lucidchart.com/pages/er-diagrams)<br/>
[React](https://react.dev/)<br/>
[Material UI](https://mui.com/)<br/>
[Notistack](https://notistack.com/features/basic)<br/>
[Register of countries using the IBAN standard](https://www.iban.com/structure)<br/>
<br/>
### Version History
* v1.0.0 Initial Release
<br/>
<br/> | Full stack web app with React and Spring Boot used for managing digital wallet and transactions | docker,flyway,fullstack,hibernate,java,javascript,postgresql,react,reactjs,rest-api | 2023-03-21T10:27:44Z | 2024-05-02T22:53:07Z | null | 1 | 1 | 302 | 0 | 9 | 17 | null | null | JavaScript |
tcet-opensource/tnp-website | main | # TCET - Training and Placement Website
**Info:**
**The TCET Training and Placment page is built using AstroJS, an all-in-one web framework designed for speed.**
### Steps to run the site on your local system:
These are the steps you need to follow to get this site on your local system.
### Install Git in your computer
Follow these steps to install git in your computer.
1. Go to [https://git-scm.com/downloads](https://git-scm.com/downloads).
2. Click on Windows. Download should start.
3. Go to downloads and install the package.
### Clone the repo
Open Git Bash in any folder and paste the following command
```bash
git clone https://github.com/tcet-opensource/tnp-website
```
### Install NodeJS
1. Go to [https://nodejs.org/en/download](https://nodejs.org/en/download)
2. Select <b>Current</b>.
3. Download the 64-bit .msi version. Follow the steps and install NodeJS.
**Note:**
**It is important to have NodeJS in your system**
### Open the folder in VS Code
1. Install [VS Code](https://code.visualstudio.com/docs/?dv=win32user) if not installed.
2. Open Windows Terminal in the folder you have cloned the repo, as done in [step 2](#clone-the-repo).
### Install Important Packages/Dependencies
Install yarn globally
```bash
npm install -g yarn
```
You can make changes to your respective files and changes will be shown once you have saved the file.
### Commands used to run locally
1. To run the commands, make sure that you have installed yarn globally first.
2. All commands are run from the root of the project, from a terminal
Here are a set of commands used to run locally:
| **Command** | **Action** |
| -------- | -------- |
| `yarn` | Installs dependencies |
| `yarn dev` | Starts local dev server at `localhost:3000` |
| `yarn build` | Build your production site to `./dist/` |
| `yarn preview` | Preview your build locally, before deploying |
| `yarn astro ...` | Run CLI commands like `astro add`, `astro check` |
| `yarn astro --help` | Get help using the Astro CLI |
### Steps to run after a Pull / Merge:
1. To install all dependencies
```bash
yarn
```
2. To run local dev environment
```bash
yarn dev
``` | TCET Training and Placement Cell Website Source Code | astrojs,javascript,open-source,hacktoberfest | 2023-03-21T17:18:17Z | 2023-10-31T17:59:40Z | null | 43 | 49 | 279 | 10 | 14 | 17 | null | GPL-2.0 | Astro |
oovillagran/Global-Summit-Conference- | main | <a name="readme-top"></a>
<div align="center">
<h3><b>CAPSTONE PROJECT MODULE 1</b></h3>
<h3><b>Conference Page - Creationism vs Evolution Global Summit 2023</b></h3>
<img src="images/Readme.png" alt="Readme Image">
</div>
<!-- TABLE OF CONTENTS -->
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#triangular_flag_on_post-deployment)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [❓ FAQ](#faq)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
# 📖 Capstone Project Module 1<a name="about-project"></a>
**Creationism vs Evolution Global Summit 2023** is based on an online website for a conference according to design guidelines provided by Microverse. Trought this capstone project I show the main abilities adquired so far in the **Module 1 - The Portal**. In this Module I learned about HTML, CSS and an brief introduction to javaScript.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>HTML</summary>
<ul>
<li>HTML</li>
</ul>
</details>
<details>
<summary>CSS</summary>
<ul>
<li>CSS</li>
</ul>
</details>
<details>
<summary>JavaScript</summary>
<ul>
<li>JavaScritp</li>
</ul>
</details>
<br>
<!-- Features -->
### Key Features <a name="key-features"></a>
- Creating branches on repositories.
- Use of linter on HTML&CSS&js projects.
- Write a correct descriptive README file.
- Correct use of GitHub flow.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LIVE DEMO -->
## 🚀 Live Demo <a name="live-demo"></a>
- Here you will see a [Live Demo](https://oovillagran.github.io/Global-Summit-Conference-/) of my project.
- This is the [Loom Walktrough Video](https://www.loom.com/share/1f689459a7134b71846c7d1c1bd3d778) of my project.
<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:
- Create a repo on your repositores files.
- Clone or make a copy of this repo on your local machine.
- Follow GitHub flow.
- A carefully reading of this README.md is required.
### Setup
Clone this repository to your desired folder:
```bash
cd my-folder
git clone git@github.com:oovillagran/Portfolio-project.git
```
### Install
Install this project with:
```bash
npm install
```
### Usage
To run the project, you can use your favorite browser.
### Run tests
To run tests, execute the following command:
```bash
npx hint .
```
### Deployment
- You can use GitHub Pages to deploy this project.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 **Oscar Villagran**
- GitHub: [@oovillagran](https://github.com/oovillagran)
- Twitter: [@oovillagran](https://twitter.com/oovillagran)
- LinkedIn: [Oscar Villagran](https://www.linkedin.com/in/oovillagran/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- [ ] *Use of linter in HTML&CSS&JS projects*
- [ ] *Use README template file*
- [ ] *Ask for a code review*
- [ ] *Follow the guideliness for this ["Conference Page"](https://github.com/microverseinc/curriculum-html-css/blob/main/capstone/html_capstone.md) capstone project.*
<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 feel free to make any comment, all contributions are welcome!.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank Microverse comunity. This a support family from all over the world.
I thank [Creative Commons](https://creativecommons.org/licenses/by-nc/4.0/) who are the owners of the license of [Cindy Shin](https://www.behance.net/adagio07) original design.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 📝 License <a name="license"></a>
This project is [MIT](LICENSE.md) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| This is an HTML/CSS & JavaScript capstone project from Full-StackWeb Development at Microverse Program. This capstone project is about a conference page that was an original design idea by Cindy Shin in Behance. | css,html,javascript | 2023-03-20T03:54:05Z | 2023-05-11T21:48:07Z | null | 1 | 1 | 33 | 0 | 0 | 17 | null | MIT | HTML |
joyapisi/1st-Capstone-Project | main | # HTML, CSS & JavaScript Capstone Project
HTML, CSS and JavaScript Project
<a name="readme-top"></a>
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [🎥 Video Explanation](#video-explanation)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
-- [🙏 Acknowledgements](#acknowledgements)
- [❓ FAQ](#faq)
- [📝 License](#license)
- [© Attribution](#attribution)
# 📖 [Teen_Creators_Conference] <a name="Teen Conference"></a>
**[Teen_Creators_Conference]** is a HTML, CSS and JavaScript project that uses <a href="https://www.behance.net/gallery/29845175/CC-Global-Summit-2015"> Behance </a> web design to create a UI in both mobile and desktop version, use JavaScript events and DOM elements to create pages dynamically. This project's content is personalized to a Teen Creators Conference that helps teenagers learn production using Adobe products.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<summary>Javascript runtime environment</summary>
<ul>
<li><a href="https://nodejs.org/en/">Node JS</a></li>
</ul>
<summary>Version control</summary>
<ul>
<li><a href="github.com">Git Hub</a></li>
</ul>
</details>
<!-- VIdeo Explanation -->
## 🎥 Video Explanation <a name="video-explanation"></a>
Click <a href="https://www.loom.com/share/85f87f3aae2a470b953ee5ea325478a5">here</a> to see a live demo of this project online:
<!-- LIVE DEMO -->
## 🚀 Live Demo <a name="live-demo"></a>
Click <a href="https://joyapisi.github.io/1st-Capstone-Project/">here</a> to see a live demo of this project online:
<!-- GETTING STARTED -->
## 💻 Getting Started <a name="getting-started"></a>
Creating your first "Capstone" project
To get a local copy up and running, follow these steps.
### Prerequisites
In order to run this project you need:
-A Git hub account
-Git bash
-Node JS
-Visual Studio Code as your code editor
-Figma account
### Setup
Clone this repository to your desired folder:
```sh
cd my-folder
git clone[(https://github.com/joyapisi/1st-Capstone-Project.git)]
```
### Set Up Linters
## Define Linters
A linter is a tool to help you improve your code. You can learn more about Linters here: (source: (<https://www.testim.io/blog/what-is-a-linter-heres-a-definition-and-quick-start-guide/>)).
Advantages of Linting:
1. Fewer errors in production- The use of linters helps to diagnose and fix technical issues such as code smells. As a result, fewer defects make their way to production.
2. Achieving a more readable and consistent style, through the enforcement of its rules.
3. Having more secure and performant code.
4. Having an objective and measurable assessment of code quality.
5. Having fewer discussions about code style and aesthetic choices during code reviews.
## Install Linters
You can find linters for most of the programming languages, e.g. Rubocop for Ruby or ESLint for JavaScript.
Also, there are many ways you can integrate a linter in your workflow:
-text editor plugin
-GitHub Actions
-GitHub apps
## Set up Linters
**Note:** The npm package manager is going to create a node_modules directory to install all of your dependencies. You shouldn't commit that directory. To avoid that, you can create a .gitignore file and add node_modules to it:
# .gitignore
node_modules/
## ESLint
Run
```
npm install --save-dev eslint@7.x eslint-config-airbnb-base@14.x eslint-plugin-import@2.x babel-eslint@10.x
```
## Web Hint
This is a customizable linting tool that helps you improve your site's accessibility, speed, cross-browser compatibility, and more by checking your code for best practices and common errors.
**NOTE:** If you are using Windows, make sure you initialize npm to create `package.json` file.
```
npm init -y
```
1. Run
```
npm install --save-dev hint@7.x
```
*how to use npm: (https://docs.npmjs.com/downloading-and-installing-node-js-and-npm).*
2. Copy [.hintrc](.hintrc) to the root directory of your project.
3. **Do not make any changes in config files - they represent style guidelines that you share with your team - which is a group of all Microverse students.**
- If you think that change is necessary - open a [Pull Request in this repository](../README.md#contributing) and let your code reviewer know about it.
4. Run
```
npx hint .
```
[Copy contents of .eslintrc.json to the root directory of your project](https://github.com/microverseinc/linters-config/blob/master/html-css-js/.eslintrc.json)
5. Fix validation errors.
### [Stylelint](https://stylelint.io/)
A mighty, modern linter that helps you avoid errors and enforce conventions in your styles.
1. Run
npm install --save-dev stylelint@13.x stylelint-scss@3.x stylelint-config-standard@21.x stylelint-csstree-validator@1.x
not sure how to use npm? Read this.
2. Copy .stylelintrc.json to the root directory of your project.
3. **Do not make any changes in config files - they represent style guidelines that you share with your team - which is a group of all Microverse students.**
If you think that change is necessary - open a Pull Request in this repository and let your code reviewer know about it.
4. Run npx stylelint "**/*.{css,scss}" on the root of your directory of your project.
5. Fix linter errors.
6. **IMPORTANT NOTE:** feel free to research auto-correct options for Stylelint if you get a flood of errors but keep in mind that correcting style errors manually will help you to make a habit of writing a clean code!
### Making Your HTML and CSS Code From Figma
-Pick a figma template to work on and use css and html to build a replica the first 2 sections of the mobile website using the template you have chosen.
-Make sure to replace the contents of helloworld.html with new contents of your own html code which replicates the chosen figma template.
-In your figma template, you will create the toolbar (or header) and the headline section (right after the header)
**note**
-Make sure to pick the mobile template on figma and not the desktop template.
-In order to lay out the elements on the page you should use Flexbox in all 2 sections.
-You don't need to implement any functionality that requires JavaScript, like opening the menu or creating dropdowns.
-You must stick to the design as much as possible (e.g. font, colors, images, text, margins) using the templates in Figma.
-Implement the button interactions (enable, hover, etc.).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 👥 Authors <a name="authors"></a>
👤 **Joy Phoebe**
- GitHub: (https://github.com/joyapisi)
- Twitter: (https://twitter.com/joyapisi)
- LinkedIn: (https://http://www.linkedin.com/in/joy-phoebe-00b80a13a)
## 🤝 Contributing <a name="contributing"></a>
Benson Njuguna: (https://github.com/Bennyjoez)
Fatiha Jeddaa: (https://github.com/Jeddaa)
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
# **[Add_popup_button]**
In my speakers section, I would like to make the view more button reveal more speeakers using DOM manipulation
# **[Create_other_pages]**
This website only has the home page and about page. In the future, I would like to add other pages to it.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- CONTRIBUTING -->
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](https://github.com/joyapisi/ThePortfolio/issues).
## ⭐️ Show your support <a name="support"></a>
If you like this project, kindly leave a comment below and share it with someone who enjoys coding! Coding is all about continuous learning and allowing yourself to be a beginner. Keep going!
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="Microverse Inc."></a>
I'm thankful to Microverse for providing a study platform which guided me through this project and to my coding partners at Microverse for the collaborative effort.
I'm also thankful to have used the original design idea by [Cindy Shin in Behance](https://www.behance.net/gallery/29845175/CC-Global-Summit-2015)
<!-- FAQ (optional) -->
## ❓ FAQ <a name="faq"></a>
- **[Question_1]**
How can I download figma images?
-
You can watch this video to understand hpw you can download figma images and use CSS provided in figma:
<ul>
<li><a href="https://www.loom.com/embed/167236d17f104fc18298c5c9888354c9">Git Hub</a></li>
</ul>
- **[Question_2]**
Where can I download node JS for installation?
-
Node Js can be downloaded here- <ul>
<li><a href="https://nodejs.org/en/download/"> Node JS </a></li>
</ul>
- **[Question_3]**
How can I style with flexbox?
-
Learn everything you need to know about flex boxes here:
<ul>
<li><a href="https://www.youtube.com/watch?v=Vj7NZ6FiQvo&list=PLu8EoSxDXHP7xj_y6NIAhy0wuCd4uVdid">Flex Boxes</a></li>
</ul>
<!-- LICENSE -->
## 📝 License <a name="license"></a>
This project is [MIT](https://choosealicense.com/licenses/mit/) licensed.
## © Attribution <a name="attribution"></a>
Original design idea by [Cindy Shin in Behance](https://www.behance.net/gallery/29845175/CC-Global-Summit-2015)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| Capstone_Project is a HTML, CSS and JavaScript project that uses a Behance web design to create a UI in both mobile and desktop version. It also uses JavaScript events and DOM elements to create pages dynamically. This project's content is personalized to a Teen Creators Conference that helps teenagers learn production using Adobe products. | best-practices,css,javascript,styleguide | 2023-03-13T09:21:15Z | 2023-04-05T21:37:27Z | null | 1 | 1 | 32 | 0 | 0 | 16 | null | null | CSS |
vidstack/icons | main | # Media Icons
[![package-badge]][package]
[![discord-badge]][discord]
Media Icons is an open-source and beautifully hand-crafted collection of icons, designed by the
[Vidstack][vidstack] team specifically for building audio and video players. Our icons are bold,
clean, and consistent. All of the icons are free for both personal and commercial use.
<img src="./assets/media-icons.png" alt="Media Icons Overview" />
## Usage
The icons can be used in any of the following ways:
- [Vidstack Player](#vidstack-player)
- [Web Component](#web-component)
- [JS Frameworks](#js-frameworks)
- [Copy SVG](#copy-svg)
- [Raw SVG](#raw-svg)
- [Raw SVG Paths](#raw-svg-paths)
- [Figma](#figma)
## Vidstack Player
If you're using [Vidstack Player][github-player], you can use the library as follows with HTML or
React.
### HTML
Install the package:
```bash
npm i media-icons@next
```
Register the `<media-icon>` element:
```ts
import "vidstack/icons";
```
Use the element (icons are lazy loaded):
```html
<media-icon type="play"></media-icon>
```
👉 The complete list of icons can be found in our [media icons catalog][catalog].
### React
Install the package:
```bash
npm i media-icons@next
```
Import icons like so:
```ts
import {
PauseIcon,
PlayIcon,
// ...
} from "@vidstack/react/icons";
```
👉 The complete list of icons can be found in our [media icons catalog][catalog].
## Web Component
You can use the `<media-icon>` element to lazy load icons via [NPM](#npm) or [CDN](#cdn).
### NPM
Install the package:
```ts
npm i media-icons@next
```
Register the `<media-icon>` element:
```ts
import "media-icons/element";
```
Use the element (icons are lazy loaded):
```html
<media-icon type="play"></media-icon>
```
👉 The complete list of icons can be found in our [media icons catalog][catalog].
### CDN
Add the following script to the `<head>` of your site:
```html
<script src="https://cdn.vidstack.io/icons" type="module"></script>
```
Use the element (icons are lazy loaded):
```html
<media-icon type="play"></media-icon>
```
👉 The complete list of icons can be found in our [media icons catalog][catalog].
## JS Frameworks
We recommend using [unplugin-icons](https://github.com/antfu/unplugin-icons) as it has many
bundler (Vite/Rollup/Webpack), framework (React/Vue/Preact/Solid/Svelte) and customization
options.
First, install the package:
```bash
npm i media-icons@next
```
Next, you'll need to configure the plugin like so:
```js
import { FileSystemIconLoader } from "unplugin-icons/loaders";
Icons({
customCollections: {
media: FileSystemIconLoader("./node_modules/media-icons/raw"),
},
});
```
Finally, you can import the icons like so:
```js
// Replace {name} with the icon name.
import ... from '~icons/media/{name}';
// Examples
import PauseIcon from '~icons/media/pause';
import PlayIcon from '~icons/media/play';
```
👉 The complete list of icons can be found in our [media icons catalog][catalog].
## Copy SVG
Head over to the [media icons catalog][catalog] on the Vidstack website, search for an icon, copy
the raw SVG, and finally paste it in your project.
## Raw SVG
The raw SVG files can be imported from this package like so:
```js
// Replace {name} with the icon name.
import ... from 'media-icons/raw/{name}.svg';
// Examples
import PauseIcon from 'media-icons/raw/pause.svg';
import PlayIcon from 'media-icons/raw/play.svg';
```
## Raw SVG Paths
The raw SVG paths can be imported from this package like so:
```js
// camelCase variant of the icon name
import { pausePaths, playPaths, ... } from 'media-icons';
```
```js
// All SVG paths (server-side)
import { paths } from "media-icons";
paths.play; // string
paths.pause;
// ...
```
```js
// Dynamically loaded SVG paths (client-side)
import { lazyPaths } from "media-icons";
lazyPaths.play(); // Promise<string>
lazyPaths.pause();
// ...
```
It's expected that the SVG paths are inserted into an `<svg>` element as `innerHTML` with the
following setup:
```html
<svg
width="32"
height="32"
viewBox="0 0 32 32"
fill="none"
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
></svg>
```
## Figma
Our media icons are available on Figma! You can get a copy from the [Vidstack community page][figma].
## 📝 License
Media Icons is [MIT licensed](./LICENSE).
[vidstack]: https://vidstack.io
[github-player]: https://github.com/vidstack/player
[catalog]: https://vidstack.io/media-icons
[package]: https://www.npmjs.com/package/media-icons
[package-badge]: https://img.shields.io/npm/v/media-icons/next
[discord]: https://discord.com/invite/7RGU7wvsu9
[figma]: https://www.figma.com/@vidstack
[discord-badge]: https://img.shields.io/discord/742612686679965696?color=%235865F2&label=%20&logo=discord&logoColor=white
| Beautifully hand-crafted collection of media icons. | svg,icons,javascript,typescript,media,player,video,audio | 2023-03-16T12:28:38Z | 2024-04-09T04:48:19Z | null | 2 | 0 | 29 | 0 | 0 | 16 | null | MIT | JavaScript |
musangamfure/portfolio | main | <div align="center">
<h3><b>Portforlio Project</b></h3>
</div>
<!-- TABLE OF CONTENTS -->
# 📗 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](#deployment)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
# 📖 Portforlio project <a name="about-project"></a>
**Portfolio Project** is a project built to practice HTML and CSS skill and master the pull request, linters, readme writing and crafting a good pull request message as well as solidify my skill on Github workflows.
## 🛠 Built With <a name="built-with"></a>
1. HTML
2. CSS
3. JavaScript
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>Client</summary>
<ul>
<li><a href="#">HTML & CSS</a></li>
</ul>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **index.html file**
- **style.css file**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- GETTING STARTED -->
## 💻 Getting Started <a name="getting-started"></a>
### Prerequisites
In order to run this project you need:
1. Any browser of your choice.
2. Any code aditor preferably Vs code.
3. git.
### Setup
Clone this repository to your desired folder:
Example commands:
```sh
cd my-folder
git clone https://github.com/musangamfure/portfolio.git
```
### Install
Install this project with:
run this command:
```sh
cd my-project
npm install
```
### Usage
To run this project:
You can open this project in two ways:
1. Use live server to open index.html file
2. Right click on index in the cloned directory and open with your browser
### Run tests
Not availbale for now
### Deployment
You can access this application on:
[Live Demo](https://musangamfure.github.io/portfolio/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 **Emmanuel**
- GitHub: [@https://github.com/musangamfure]()
- Twitter: [@https://twitter.com/musangamfure]()
- LinkedIn: [@https://www.linkedin.com/in/musangamfura-emmanuel-6a214a262/]()
👤 **Biftu**
- GitHub: [@Bifabig](https://github.com/Bifabig)
- Twitter: [@biftu94](https://twitter.com/biftu94)
- LinkedIn: [Biftu Girma](https://www.linkedin.com/in/biftu-girma-3598a8126/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- [ ] **Header**
- [ ] **Other sections**
- [ ] **Footer**
<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 it, just leave a star. it will mean alots.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank the entire team of <a href="https://www.microverse.org/">Microverse</a> for the support in all.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LICENSE -->
## 📝 License <a name="license"></a>
This project is [MIT](./LICENSE) licensed.
| This is the repository for Musangamfura's portfolio website. The site showcases my skills, experience, and projects. It is built with HTML, CSS, and JavaScript and is responsive and mobile-friendly. Features: Home page with a brief introduction and links to other pages About page with my bio, skills, and education Projects page with featured pro | css,html,javascript | 2023-03-23T13:35:25Z | 2023-10-19T19:36:22Z | null | 6 | 12 | 69 | 4 | 0 | 16 | null | MIT | CSS |
altankurt/twitter-ui-clone | main | [![LinkedIn][linkedin-shield]][linkedin-url]
[![Twitter][twitter-shield]][twitter-url]
<div align="center">
<h1 align="center">Twitter Clone Project</h1>
<a href="https://twitter-js-clone.vercel.app/">View Demo</a>
·
<a href="https://github.com/altankurt/twitter-clone-js/issues">Report Bug</a>
·
<a href="https://github.com/altankurt/twitter-clone-js/issues">Request Feature</a>
</div>
<!-- ABOUT THE PROJECT -->
## About The Project

The Twitter Clone project was developed to improve my technical skills. The design, customized based on a reference from [Figma](<https://www.figma.com/file/AO2YCTIlVBx8uK1ynEsERY/twitter-web-(Community)?node-id=0-1&t=Cu71RlsPOL3DILEI-0>) and was implemented using JavaScript and TailwindCSS technologies. During the coding process, pixel-perfect and responsive design principles were taken into consideration.
As the reference design did not include a mobile version, a mobile-friendly design was created based on the current version of Twitter. This decision led to the inclusion of the mobile version in the project at a later stage.
### Features
- **Responsive Design:** The application is designed to be responsive and can be used on all device sizes, including mobile devices.
- **Pixel Perfect:** The application's design is created with pixel-perfect precision.
- **Effective Use of TailwindCSS:** The project makes effective use of the TailwindCSS library and minimizes the repetition of CSS code.
- **Effective Use of JavaScript:** The project actively uses JavaScript and increases the application's dynamism using a range of JS features, including DOM manipulation, event listeners, and classes. The data is dynamically mapped into an array and processed dynamically into HTML.
- **Active Usage of GitHub and Git:** The project is actively developed using Git version control and is hosted on GitHub, which provides version management.
### Built With
This project developed with Vanilla JS and styled with Tailwindcss.






<!-- CONTACT -->
# Contact
Mail to: [aaltankurt@gmail.com](aaltankurt@gmail.com)
<br/>
Project Link: [https://github.com/altankurt/twitter-clone-js](https://github.com/altankurt/twitter-clone-js)
[linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=for-the-badge&logo=linkedin&colorB=555
[linkedin-url]: https://linkedin.com/in/altankurt
[twitter-shield]: https://img.shields.io/badge/Twitter-%231DA1F2.svg?style=for-the-badge&logo=Twitter&logoColor=white
[twitter-url]: https://twitter.com/aaltankurt
| Twitter UI clone w/ Vanilla JS | clone-website,html-css-javascript,javascript,tailwind-css,tailwindcss,twitter,twitter-clone,vanilla-javascript,vanilla-js | 2023-03-15T16:39:01Z | 2023-04-10T10:30:24Z | null | 1 | 9 | 39 | 1 | 0 | 16 | null | MIT | CSS |
MussieTeka/HummingBird | main | <a name="readme-top"></a>
<div align="center">
<img src="images/mussie.png" alt="logo" width="300px" height="300px" />
<br/>
<h3><b>HummingBird BootCamp Capstone Project</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](#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 -->
# 📖 HummingBird Boot Camp: Capstone Project <a name="about-project"></a>
This is the repository for the **HummingBird Boot Camp Capstone Project**. The goal of this project was to create a fully responsive website with two pages, home, and about, using a CSS framework and JavaScript to create dynamic content.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
- Client: HTML, CSS, JavaScript
- Server: Not applicable
- Database: Not applicable
<details>
<summary>Client</summary>
<ul>
<li><a href="https://www.w3.org/html/">HTML</a></li>
<li><a ref="https://www.w3.org/Style/CSS/">CSS</a></li>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript">JS</a></li>
</ul>
</details>
The project was built using the following technologies:
- HTML
- CSS
- JavaScript
- Bootstrap CSS framework
- Lato font
### Key Features <a name="key-features"></a>
- **Dynamic creation of the "Guest Instructors" section using JavaScript**
- **Responsive design for mobile and desktop screens**
- **Navigation menu with links to the home and about pages**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🚀 Live Demo <a name="live-demo"></a>
- [Live Demo Link](https://mussieteka.github.io/HummingBird/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 💻 Getting Started <a name="getting-started"></a>
To get a local copy of the project up and running, follow these steps
### Prerequisites
In order to run this project, you need to have a web browser installed on your computer.
### Setup
Clone this repository to your desired folder by running the following command:
```sh
git@github.com:MussieTeka/Capstone-Project.git
```
### Install
There are no installation steps required for this project.
### Usage
To run the project, open the index.html file in your web browser.
### Run tests
To run tests, run the following command:
```sh
npx hint .
npx stylelint "**/*.{css,scss}"
npx eslint .
```
### Deployment
You can deploy this project using any web hosting service of your choice.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Author <a name="authors"></a>
This project was developed by:
👤 **Mussie Kahsay** - Developer
- GitHub: [@MussieTeka](https://github.com/MussieTeka)
- Twitter: [@mussieteka](https://twitter.com/mussieteka)
- LinkedIn: [@mussieteka](https://linkedin.com/in/mussieteka)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
- **Adding the remaining pages to the website.**
- **Integrating with hosting sites to deploy the website.**
- **Implementing a search functionality to allow users to search for speakers or events.**
<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, please give it a star on GitHub.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank the following resources and individuals for their help and inspiration:
- <a href="https://www.behance.net/gallery/29845175/CC-Global-Summit-2015">Cindy Shin:</a> for providing the original design that served as the inspiration for our project.
- <a href="https://unsplash.com/">Unsplash:</a> for the beautiful pictures used in this project.
- <a href="https://www.flaticon.com/">Flaticon:</a>for the icons used in our project.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ❓ FAQ (OPTIONAL) <a name="faq"></a>
- **Can I modify and redistribute this project?**
- Yes, you can modify and redistribute this project as long as you follow the terms of the MIT license.
- **How can I contribute to this project?**
- Contributions, issues, and feature requests are welcome! You can check the issues page to see if there are any current issues or feature requests that you can work on. If not, feel free to submit a new issue or pull request. Before contributing, please read the CONTRIBUTING.md file for guidelines on how to contribute to this 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 is HTML/CSS/JS project for a HummingBird Advanced BootCamp event in 2023. The project includes a responsive header, a second section with three programs, and styling using Bootstrap and Font Awesome. | css,css3,html,javascript | 2023-03-13T07:58:34Z | 2023-04-03T08:36:25Z | null | 1 | 1 | 17 | 0 | 0 | 15 | null | MIT | HTML |
sudharsanan123/Expense-Tracker-React_project | master |
## Download the zip and extract to VS code
# Getting Started with Create React App
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
## npm i nodemon
You may also see any lint errors in the console.
## 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.
It takes some time to deploy on your browser
## `When you get Error like react-script not found`
Open Terminal npm install react-scripts --save

| Expense Tracker built using Html, Css , Javascript, React JS | css3,front-end-development,frontend,html5,javascript,reactjs,reactproject,webdevelopment | 2023-03-17T12:48:59Z | 2023-11-07T17:32:36Z | null | 1 | 0 | 7 | 0 | 1 | 14 | null | null | JavaScript |
seanmilfort/LittleLemon_Booking | main | # Little Lemon Booking Website
## Project Description
This project was created during Meta's Coursera Front-End Development course. This website was the culmuniation of the Front-End Development Track.
This website showcased implementing a booking application on the Little Lemon Website. This was created with React Components to show an understanding of utilizing React for creating the website. This also features utilzing API calls.
Please note: the only functionality working on this website besides the design is the Reserve a Table function.
## Screenshots
Here are some screeenshots of the application showcasing the Booking functionality.
<img src="https://user-images.githubusercontent.com/20054991/226729651-63c82654-20d7-4783-b1a9-4c97afae96d4.png" width="400" /> <img src="https://user-images.githubusercontent.com/20054991/226729826-bf712977-9165-40e7-ab62-93cd6bf47ef7.png" width="400" /> <img src="https://user-images.githubusercontent.com/20054991/226729975-8cb4f6c3-e0f5-4271-bd8b-8a2f04bb623e.png" width="400" />
| Frontend Capstone for Meta's Coursera Frontend Developer Specialization Track. This was a Booking Website created for the Little Lemon Restaurant utilizing React. | api,css,html,javascript,reactjs | 2023-03-21T20:04:12Z | 2023-03-21T20:14:25Z | null | 1 | 0 | 13 | 0 | 31 | 14 | null | null | JavaScript |
Hidayatmramon/hidayatmramon.github.io | master | # hidayatmramon.github.io
this my portfolio website!

| this my portfolio website | bootstrap,css,portfolio,website,javascript | 2023-03-23T12:17:32Z | 2023-05-18T11:54:16Z | null | 1 | 0 | 9 | 0 | 0 | 14 | null | null | HTML |
Hidayatmramon/Manually-Authentication-Register-and-Login | master | <p align="center"><a href="https://laravel.com" target="_blank"><img src="https://raw.githubusercontent.com/laravel/art/master/logo-lockup/5%20SVG/2%20CMYK/1%20Full%20Color/laravel-logolockup-cmyk-red.svg" width="400" alt="Laravel Logo"></a></p>
<p align="center">
<a href="https://github.com/laravel/framework/actions"><img src="https://github.com/laravel/framework/workflows/tests/badge.svg" alt="Build Status"></a>
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/dt/laravel/framework" alt="Total Downloads"></a>
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/v/laravel/framework" alt="Latest Stable Version"></a>
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/l/laravel/framework" alt="License"></a>
</p>
## About Laravel
Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:
- [Simple, fast routing engine](https://laravel.com/docs/routing).
- [Powerful dependency injection container](https://laravel.com/docs/container).
- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage.
- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent).
- Database agnostic [schema migrations](https://laravel.com/docs/migrations).
- [Robust background job processing](https://laravel.com/docs/queues).
- [Real-time event broadcasting](https://laravel.com/docs/broadcasting).
Laravel is accessible, powerful, and provides tools required for large, robust applications.
## Learning Laravel
Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.
You may also try the [Laravel Bootcamp](https://bootcamp.laravel.com), where you will be guided through building a modern Laravel application from scratch.
If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains over 2000 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.
## Laravel Sponsors
We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the Laravel [Patreon page](https://patreon.com/taylorotwell).
### Premium Partners
- **[Vehikl](https://vehikl.com/)**
- **[Tighten Co.](https://tighten.co)**
- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)**
- **[64 Robots](https://64robots.com)**
- **[Cubet Techno Labs](https://cubettech.com)**
- **[Cyber-Duck](https://cyber-duck.co.uk)**
- **[Many](https://www.many.co.uk)**
- **[Webdock, Fast VPS Hosting](https://www.webdock.io/en)**
- **[DevSquad](https://devsquad.com)**
- **[Curotec](https://www.curotec.com/services/technologies/laravel/)**
- **[OP.GG](https://op.gg)**
- **[WebReinvent](https://webreinvent.com/?utm_source=laravel&utm_medium=github&utm_campaign=patreon-sponsors)**
- **[Lendio](https://lendio.com)**
## Contributing
Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).
## Code of Conduct
In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct).
## Security Vulnerabilities
If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed.
## License
The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
| Manually Authentication Login And Register | blade,javascript,laravel,login,php,register | 2023-03-22T14:23:14Z | 2023-03-22T14:24:43Z | null | 1 | 0 | 1 | 0 | 0 | 14 | null | null | PHP |
VishwaGauravIn/colpat | main | <div align="center">
<h1> <img src="https://colpat.itsvg.in/logo.png" width="80px"><br/>ColPat : Color Palette & Design Tool</h1>
<a href="https://www.buymeacoffee.com/VishwaGauravIn" target="_blank"><img alt="" src="https://img.shields.io/badge/Buy%20Me%20a%20Coffee-ffdd00?style=flat&logo=buy-me-a-coffee&logoColor=black" style="vertical-align:center" /></a>
<img src="https://img.shields.io/npm/v/npm?style=normal"/>
<img src="https://img.shields.io/website?style=normal&url=https%3A%2F%2Fcolpat.itsvg.in/"/>
<img src="https://img.shields.io/badge/License-GPL%20v3-brightgreen?style=normal"/>
<img src="https://img.shields.io/github/languages/code-size/VishwaGauravIn/colpat?logo=github&style=normal"/>
</div>
<br/>

# Features
Design heavily relies on color, and selecting an ideal color palette can be overwhelming. Fortunately, ColPat provides a set of fantastic tools that let you unleash your creativity and bring your designs to life. ColPat's distinguishing features include:

### ⭐ Trending Color Palettes:
ColPat's Trending Color Palettes feature keeps you up-to-date with the latest color trends. It helps you choose the most popular colors for your project, whether you're designing a website, marketing campaign, or product. Additionally, you can tailor the palettes to your preferences using ColPat's user-friendly interface.

### ⭐ Awesome Gradients:
With ColPat's Awesome Gradients feature, you can effortlessly produce countless gradients. Gradients enhance the depth and texture of designs, making them more visually appealing. You can experiment with multiple color combinations and develop gradients that match your design requirements.

### ⭐Tailwind Palette Generator:
ColPat's Tailwind Palette Generator feature is custom-made for Tailwind CSS developers. By clicking once, you can create color palettes for your next Tailwind-powered project. This feature saves you time and effort when choosing colors that align with Tailwind's design system.

### ⭐ Palette from Image [AI]:
ColPat's Palette from Image [AI] feature uses artificial intelligence to analyze an image or logo's colors and create a color palette that complements it. This feature is particularly helpful for branding projects or when you need to match colors from an existing design.

### ⭐ Color Palette from Color [AI]:
ColPat's Color Palette from Color [AI] feature generates a color palette from a single color. Just specify your desired color, and ColPat will generate the best color palette for you. This feature is ideal when you have a specific color in mind and want to create a palette around it.

### ⭐ What Color Says!:
ColPat's What Color Says! feature explains the psychology of color and how different colors can impact emotions and behavior. It assists you in comprehending the importance of a color and choosing the perfect color to resonate with your intended audience.
## Our Social Links
[](https://linkedin.com/in/VishwaGauravIn)
[](https://twitter.com/VishwaGauravIn)
[](https://instagram.com/VishwaGauravIn)
## PageSpeed Insights

## Tech Used







<details>
<summary>
NextJS Guide
</summary>
## Getting Started
First, run the development server:
```bash
npm run dev
# or
yarn 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.js`. 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.js`.
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.
## 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.
</details>
| 🎨 Looking for the perfect color palette? Look no further than ColPat! 🌈 Our advanced AI and user-friendly interface make it easy to create the ultimate color scheme for your designs. 🔧 With plenty of customization options, you'll have all the tools you need to unleash your creativity and elevate your projects to the next level. ✨ Try Now! | color,color-scheme,colors,design,frontend,graphics,javascript,nextjs,react,tailwindcss | 2023-03-22T08:39:57Z | 2023-10-16T17:27:11Z | null | 3 | 3 | 107 | 0 | 2 | 14 | null | GPL-3.0 | JavaScript |
lacegiovanni17/hengine-blog | main | ## Hengine-Blog
### [Live Site](https://hengine-blog-1.vercel.app/)
https://user-images.githubusercontent.com/30509335/227918031-7d8edf01-95c3-49d5-a88e-241461cbe00c.mov
## About
* 👋 Hi, I’m Chidike Henry
* 😎 I’m a MERN fullstack engineer
* 💻 This is an interactive blog web app made with made with NextJS, ReactJS, TailwindCSS, GraphQL and hygraph CMS.
* 🌍 Website: https://hengine-blog-1.vercel.app/
* 💞️ I’m looking to collaborate on JS projects
* 📫 How to reach me chidike.henry@gmail.com
## Introduction
This is a code repository for the corresponding video.
With featured and recent posts, categories. full markdown articles, author information, comments, and much more, this fully responsive CMS Blog App by Henry is the best Blog Application that you can currently find on the web. And what's best of all is that you and your clients can manage the blog from a dedicated Content Management System(https://app.hygraph.com/).
You'll also work with HyGraph-CMS. HygraphCMS is a headless content management system based on GraphQL technology enabling seamless integration with any application.
## Technologies Used
* TailwindCSS
* ReactJS
* NextJS
* GraphQL
## Author
#### 👤 Author1
- GitHub: [@lacegiovanni17]https://github.com/lacegiovanni17
- Twitter: [@ChidikeC] https://twitter.com/ChidikeC
- LinkedIn: [LinkedIn]https://www.linkedin.com/in/chidike-chizoba-25628a40/
## Contributing
Contributions, issues, and feature requests are welcome!
## Show your support
Please give a ⭐️ if you like this project!
## Acknowledgments
- Hat tip to anyone contributed one way or the other.
- Inspiration
- etc
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.js`. 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.js`.
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.
| A blog 🌐website curated for every readers📚 viewing👓 and pleasure. Star this project, you will love it⭐️😍 | javascript,nextjs,react,tailwindcss,pages | 2023-03-19T22:55:48Z | 2023-03-27T10:52:58Z | null | 1 | 23 | 61 | 0 | 0 | 13 | null | null | JavaScript |
Sammers21/pvpqnet | main | [](https://github.com/Sammers21/pvpqnet/actions/workflows/backend-build.yml)
[](https://github.com/Sammers21/pvpqnet/actions/workflows/frontend-build.yml)
# pvpq.net
https://pvpq.net is a World of Warcraft PvP data oriented web site which has the following features:
* Leaderboards with player statistics and rankings
* Activity graphs for players for the past several hours
* Support for EU and US regions as well as every pvp bracket
Please consider giving our GitHub project a star if you find it helpful. Your support will help us reach more users and improve our project. Thank you!
# How to run locally
The project consist of two parts: the frontend and the backend.
In order to run the project locally you need to have [Node.js](https://nodejs.org/en/) and [MongoDB](https://www.mongodb.com/) installed as well as a [Battle.net API keys](https://dev.battle.net/).
## Backend
In order to run the backend you need to have:
1. a [MongoDB](https://www.mongodb.com/) instance running
2. [Battle.net API keys](https://dev.battle.net/): client id and secret
3. [Docker](https://www.docker.com/) installed
4. After you have the above you can run the backend with the following commands:
```
docker build -t pvpq-backend .
docker run -e CLIENT_ID="" -e CLIENT_SECRET="" -e DB_URI="" --name pvpq -d -p9000:9000 pvpq-backend
```
**CLIENT_ID** and **CLIENT_SECRET** are the Battle.net API keys. **DB_URI** is the MongoDB connection string.
The backend will be available at http://localhost:9000. The backend will automatically create the database and populate it with data.
## Frontend
The frontend is a [React](https://reactjs.org/) application which can be run with the following commands:
```
cd frontend
npm install
REACT_APP_API_URL=http://localhost:9000 npm start
```
The frontend will be available at http://localhost:3000 | Pvpq.net is a site for WoW PvP players with rankings, ladder data, and tools to improve gameplay and excel in competitive PvP. | backend,frontend,java,reactive-programming,website,javascript,lucene,monogodb,mui,react | 2023-03-13T21:58:18Z | 2024-05-09T09:23:51Z | null | 2 | 30 | 667 | 3 | 3 | 13 | null | GPL-3.0 | Java |
themorajr/ms-reward-bot | main |
# Bing Search Extension for MS Rewards
This is a straightforward browser extension designed for Bing searches, streamlining the process of earning Microsoft Rewards points. The extension automates the search of random text on Bing, reaching the daily limit of 30 searches to maximize MS Rewards points.
## Compatibility
The extension is compatible with both Chrome and Edge browsers.
## Installation
1. Clone or download this repository to your local machine.
2. Open the "Extensions" page in your browser by typing chrome://extensions/ for Chrome or edge://extensions/ for Edge. Ensure that "Developer mode" is enabled.
3. Click on the "Load unpacked" button and select the directory where the downloaded extension is located.
## Usage
### PC Search
1. Open Bing.com in your browser and make sure you are signed in to your Microsoft account.
2. Click on the extension icon in your browser.
3. The extension will automatically search random text 30 times on Bing, earning you MS Rewards points.
### Mobile Search [Not working, Will fix in next version]
1. To use Mobile Search, open Bing.com on your mobile device and sign in to your Microsoft account.
2. Copy the cookie value from your mobile browser. In Chrome, you can do this by going to the "Application" tab in the developer tools, expanding the "Cookies" section, and copying the value of the "MUID" cookie.
3. Paste the cookie value into the "cookie" variable in the `background.js` file.
4. Click on the extension icon in your browser.
5. The extension will automatically search random text 20 times on Bing, earning you MS Rewards points.
## Note
If utilizing the Mobile Search feature, ensure to insert your cookie in the code before running the extension.
| This extension helps you earn Microsoft rewards by automatically searching Bing with random text. It works on Chrome and Edge browsers. You can set the number of searches and the time interval between them. The extension is easy to use and does not collect any personal data. | chrome,chrome-extension,edge-extension,javascript,microsoft-edge,microsoft-edge-extension,microsoft-rewards | 2023-03-23T05:39:43Z | 2023-12-25T18:44:03Z | null | 2 | 2 | 21 | 1 | 3 | 13 | null | MIT | JavaScript |
AnsarIbrahim/Capstone-Project-1 | main |
<!-- TABLE OF CONTENTS -->
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [Loom Video](#loom)
- [💻 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 -->
# 📖 Capstone-Project-1 <a name="about-project"></a>
**Capstone-Project-1** is a website that displays my Techinical skills and projects that i have done.
**Link to online version of Capstone-Project-1** is in [Live Demo](#live-demo)
**Loom Video of this Capstone-project-1** is in [Loom Video](#loom)
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>Client</summary>
<ul>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/HTML">HTML</a></li>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/CSS">CSS</a></li>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/JAVASCRIPT">JAVA-SCRIPT</a></li>
</ul>
</details>
<details>
<summary>Server</summary>
<ul>
<li><a href="#">N/A</a></li>
</ul>
</details>
<details>
<summary>Database</summary>
<ul>
<li><a href="#">N/A</a></li>
</ul>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **Header**
- **Main-Program**
- **Feature-Speakers**
- **partners**
- **Popup Window**
- **About**
- **Contact**
- **Footer**
- **Animation**
- **Transition**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- Loom -->
## Loom Video <a name="loom"></a>
- [Loom Link](https://www.loom.com/share/97dcdd84a78c4b039488ecf48e47aabd)
<!-- LIVE DEMO -->
## 🚀 Live Demo <a name="live-demo"></a>
- [Live Demo Link](https://oscar-awards.netlify.app/)
<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:
- Modern chrome Browser
### Setup
- Clone this repository to your desired folder with the following commend
```
git clone git@github.com:AnsarIbrahim/Capstone-Project-1.git
```
### Install
- Type cd
```
Capstone-Project-1
```
- open index.html file in the browser
### Usage
- To run the project, execute the following command:
- Type cd ``` Capstone-Project-1 ```
- open index.html file in the browser
### Run tests
- To run tests, run the following command:
- N/A
### Deployment
- You can deploy this project using:
- Type cd ``` Capstone-Project-1 ```
- open index.html file in the browser
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 **Ansar Ibrahim**
- GitHub: [Ansar Ibrahim](https://github.com/AnsarIbrahim)
- Twitter: [Ansar Ibrahim](https://twitter.com/ansaradheeb)
- LinkedIn: [Ansar Ibrahim](https://linkedin.com/in/ansar-ibrahim-61447424a/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- [ ] **Projects**
- [ ] **Java-script**
- [ ] **Ruby**
<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 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 following
- MicroVerse
- Cindy Shin on Behance (I would like to acknowledge Cindy Shin who is the owner of the original design.)
<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>
| The website content is fictional. It was created using HTML, CSS and JavaScript to meet the requirements defined within the scope of the Microverse Capstone project. In particular, I would like to point out that I built this website completely from scratch. | css,html,javascript | 2023-03-13T09:15:39Z | 2023-12-08T12:07:58Z | null | 1 | 1 | 19 | 1 | 0 | 13 | null | MIT | HTML |
ponder-surveys/farcaster-survey-bot | main | # 📋 Ponder Surveys
An open-source NodeJS bot designed to post engaging surveys directly on Farcaster. Built on top of Farcaster Frames, Neynar, Supabase, and Thirdweb (Base mainnet) to produce automated casts, calculate results, and record both quantitative and qualitative responses.
This survey bot is a part of the Ponder ecosystem. [Learn more](https://weponder.io/)
## Table of Contents
- [How It Works](#how-it-works)
- [Prerequisites](#prerequisites)
- [Quick Start](#quick-start)
- [Contributing](#contributing)
- [License](#license)
- [Acknowledgments](#acknowledgments)
## How It Works
1. **Scheduled Surveys**: Using cron jobs, this survey bot is programmed to post queued surveys at specific intervals.
2. **Supabase Backend**: All survey data, including questions, responses, and reactions are stored and managed in Supabase.
3. **Automated Replies**: Casts a reply automatically when the configured Farcaster account is tagged.
## Prerequisites
Before you begin, ensure you have met the following requirements:
- **Node.js**: Version 14.x.x or higher. [Download here](https://nodejs.org/)
- **Yarn**: Version 3.3.1 or higher. [Download here](https://yarnpkg.com/)
- **Accounts**: Ensure you have accounts on Farcaster, Neynar, and Supabase.
## Quick Start
### 1. Clone the repository
```commandline
git clone https://github.com/ponder-surveys/farcaster-survey-bot
```
### 2. Set up your environment variables
Farcaster & Neynar
```commandline
FARCASTER_FID="Farcaster account id"
POLL_FID="Secondary Farcaster account id"
COMMUNITY_USER_ID="Backend user id for community surveys"
NEYNAR_API_KEY="API key with read & write permissions to Farcaster hubs"
NEYNAR_SIGNER_UUID="Farcaster signer uuid generated by Neynar"
NEYNAR_POLL_SIGNER_UUID="Secondary Farcaster signer uuid generated by Neynar"
```
Supabase
```commandline
SUPABASE_URL="Project URL"
SUPABASE_KEY="API key with read & write access to the project"
SUPABASE_JWT_SECRET="Used to generate secure tokens"
```
Thirdweb
```commandline
NFT_COLLECTION_ADDRESS="NFT collection used to check for holder status"
THIRDWEB_SECRET_KEY="Secret API key used to interact with Thirdweb SDK"
```
Survey questions
```commandline
NEXT_GENERAL_QUESTION_CRON="Task scheduler (UTC) in cron syntax for general questions"
NEXT_COMMUNITY_QUESTION_CRON="Task scheduler (UTC) in cron syntax for community questions"
NEXT_EXPEDITED_QUESTION_CRON="Task scheduler (UTC) in cron syntax for expedited questions"
NEXT_QUESTION_REPLY="Customizable reply to question cast"
NEXT_QUESTION_INFO="Customizable info for question cast"
```
Survey results
```commandline
NEXT_POLL_RESULTS_CRON="Task scheduler (UTC) in cron syntax to poll results"
NEXT_POLL_RESULTS_INTERVAL_HOURS="Interval in hours to poll results"
```
General
```commandline
CALL_TO_ACTION="A message or action for users to take in the reply casts"
RESULTS_CALL_TO_ACTION="A message or action for users to take in the results reply casts"
```
### 3. Install dependencies
```commandline
yarn install
```
### 4. Run the application
```commandline
yarn start
```
## Contributing
Your contributions are always welcome! Feel free to fork this project and submit pull requests. If you have any suggestions, ideas, or feedback, don't hesitate to reach out via direct cast on Farcaster.
## License
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details.
## Acknowledgments
- Thanks to [botcaster](https://github.com/BigWhaleLabs/botcaster) for paving the way on the initial core bot functionality
- Inspired by projects with awesome bots like [Launchcaster](https://www.launchcaster.xyz/) and [Eventcaster](https://www.eventcaster.xyz/)
---
> Made with 💜 by [@cojo.eth](https://warpcast.com/cojo.eth) and [@ba](https://warpcast.com/ba)
| An open-source NodeJS bot designed to post engaging surveys directly on Farcaster. | farcaster,imgur,javascript,nodejs,open-source,supabase,base,neynar | 2023-03-13T04:42:08Z | 2024-05-15T05:52:31Z | null | 3 | 9 | 114 | 0 | 0 | 13 | null | MIT | TypeScript |
Muhammad0602/Leaderboard | dev | # Leaderboard
<a name="readme-top"></a>
<div align="center">
<h3><b> Leaderboard README</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)
- [Usage](#usage)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [📝 License](#license)
# 📖Leaderboard <a name="about-project"></a>
The Leaderboard project is a dynamic platform that allows users to submit their names and scores, which are then retrieved and displayed through an API integration. With a sleek and responsive design, this project offers an engaging experience for participants. The user-submitted scores are showcased in a visually appealing table, ranking participants and awarding the top three performers with well-deserved medals. This interactive solution provides an enjoyable way to track and celebrate achievements while maintaining a user-friendly and modern interface
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>Client</summary>
<ul>
<li><a href="https://reactjs.org/">HTML</a></li>
<li><a href="https://reactjs.org/">CSS</a></li>
<li><a href="https://reactjs.org/">Webpack</a></li>
<li><a href="https://reactjs.org/">JavaScript</a></li>
</ul>
</details>
### Key Features <a name="key-features"></a>
- Interactions.
- API.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🚀 Live Demo <a name="live-demo"></a>
- [Live](https://muhammad0602.github.io/Leaderboard/)
<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:
-Install Git
-Install NPM
-Install a code editor
### Setup
Clone this repository to your desired folder:
git clone github.com/Muhammad0602/Portfolio-mobile-first.git
### Usage
To run the project, execute the following commands:
- first `npm install`
- second `npm run build`
- and lastly `npm start`
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 👥 Authors <a name="authors"></a>
👤 **Muhammad Davlatov**
- GitHub: [Muhammad0602](https://github.com/Muhammad0602)
- Twitter: [Muhammad Davlatov](https://twitter.com/MuhammadDavla20)
- LinkedIn: [Muhammad Davlatov](https://www.linkedin.com/in/muhammad-davlatov-6a8536254/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
- I am working on the desktop version of the project, and soon God willing I'll deploy it.
- I am working to add some beautiful design.
<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 leave it a star ⭐.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank everyone who helped me to finish this project, without whom it would be very difficult.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 📝 License <a name="license"></a>
This project is [MIT](./LICENSE) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| Leaderboard project is based on API. The player's information and score are posted and then are taken from the API. It is fully responsive and has a cool design. | css,github,github-pages,html,javascript,webpack | 2023-03-14T21:19:55Z | 2023-09-08T16:52:57Z | null | 1 | 6 | 53 | 1 | 0 | 13 | null | MIT | JavaScript |
Alok-2002/web_development_project | main | null | Welcome to the Web Development Projects repository! This repository contains a collection of web development projects built using HTML, CSS, JavaScript, React.js, Node.js, and other MERN stack (MongoDB, Express.js, React.js, Node.js) and full-stack technologies. | css,css3,html,html-css-javascript,javascript,html5,responsive-design,api,back-end-development,database-management | 2023-03-14T17:40:13Z | 2023-08-08T01:55:58Z | null | 1 | 0 | 134 | 0 | 0 | 12 | null | MIT | HTML |
suyash-thakur/js-good-first-issues-finder | main | # Good First Issues
This is a list of JavaScript repositories with good first issues for newcomers to open source. Contributions are welcome!
This list gets updated every day at midnight.
## [Agoric/agoric-sdk](https://github.com/Agoric/agoric-sdk)
- [Clean up deprecated cosmos-sdk 0.46 API usage](https://github.com/Agoric/agoric-sdk/issues/8803)
- [Clean up deprecated cosmos-sdk 0.47 API usage](https://github.com/Agoric/agoric-sdk/issues/8804)
- [Silence lint warnings in cosmos-sdk](https://github.com/Agoric/agoric-sdk/issues/9034)
## [brave/brave-browser](https://github.com/brave/brave-browser)
- [[Brave News]: Publisher list in side panel collapses after adding/updating publishers/channels](https://github.com/brave/brave-browser/issues/36550)
- [Linux desktop file refers to "Incognito" windows](https://github.com/brave/brave-browser/issues/37623)
- [Triple Dot Button is on the scroll bar ](https://github.com/brave/brave-browser/issues/36298)
- [Mouse pointer doesn't disappear in fullscreen videos](https://github.com/brave/brave-browser/issues/17292)
## [meshery/meshery](https://github.com/meshery/meshery)
- [[mesheryctl] mesheryctl system logs fails with docker-compose dependency](https://github.com/meshery/meshery/issues/10777)
- [[Models][UX]: Design Icon for ArgoCD Component - Sensor](https://github.com/meshery/meshery/issues/10300)
- [[UI] Improve Release Version Component](https://github.com/meshery/meshery/issues/9569)
- [[Bug] Fix background color of design page](https://github.com/meshery/meshery/issues/10775)
- [[mesheryctl] Install: Support new Meshery Adapter for Nighthawk](https://github.com/meshery/meshery/issues/10371)
- [[DevOps] Populate Meshery Catalog with Sample Apps using `mesheryctl`](https://github.com/meshery/meshery/issues/10458)
- [Replace the repetitive logic for extracting `page, pagesize, search, offset` from API handlers to use `getPaginationParams ` in `utils.go`.](https://github.com/meshery/meshery/issues/10825)
- [Responsiveness on 'Remote Provider' page.](https://github.com/meshery/meshery/issues/10743)
## [meshery/meshery.io](https://github.com/meshery/meshery.io)
- [Add a better background color to Choose your platform section on homepage](https://github.com/meshery/meshery.io/issues/1735)
- [[DevOps] Populate Meshery Catalog with Sample Apps using meshery UI](https://github.com/meshery/meshery.io/issues/1699)
- [[DevOps] Populate Meshery Catalog with Sample Apps using mesheryctl](https://github.com/meshery/meshery.io/issues/1650)
## [ZeusLN/zeus](https://github.com/ZeusLN/zeus)
- [Point of Sale: Charge button: show total in sats if currency rates disabled](https://github.com/ZeusLN/zeus/issues/2128)
## [github/docs](https://github.com/github/docs)
- [Move period inside quotation marks in managing-your-theme-settings.md](https://github.com/github/docs/issues/33137)
- [Move period inside ending quotation marks in github-glossary#upstream-branch](https://github.com/github/docs/issues/33136)
- [Move period inside ending quotation marks in github-glossary#upstream](https://github.com/github/docs/issues/33135)
- [Fix lists in communicating-on-github.md](https://github.com/github/docs/issues/33100)
- [Move period inside ending quotation marks in github-glossary#pull](https://github.com/github/docs/issues/33103)
- [Remove unnecessary ellipses at the end of step](https://github.com/github/docs/issues/33027)
- [Period needs to be moved inside quotation marks in github-flow.md](https://github.com/github/docs/issues/33032)
- [Missing link in uploading-a-project-to-github.md](https://github.com/github/docs/issues/33031)
## [xenova/transformers.js](https://github.com/xenova/transformers.js)
- [[Feature request] streamer callback for text-generation task](https://github.com/xenova/transformers.js/issues/394)
- [[Feature request] CommonJS compatability](https://github.com/xenova/transformers.js/issues/152)
## [WordPress/gutenberg](https://github.com/WordPress/gutenberg)
- [Review all the 'Add New' strings](https://github.com/WordPress/gutenberg/issues/53984)
- [Author's Username is missing from Author dropdown.](https://github.com/WordPress/gutenberg/issues/17364)
- [DateTimePicker: AM/PM switcher is not screen reader accessible](https://github.com/WordPress/gutenberg/issues/61163)
- [Rename titles - of Search Results Title and Archive Title blocks](https://github.com/WordPress/gutenberg/issues/60701)
- [Social Icons: Update Dribbble Logo](https://github.com/WordPress/gutenberg/issues/59090)
- [Social icons: Update Soundcloud Logo](https://github.com/WordPress/gutenberg/issues/59084)
- [Interactivity API: Improve readability in directives check function inside `vdom.ts`](https://github.com/WordPress/gutenberg/issues/61455)
- [Query Loop / Post Template block: additional grid view layout options ](https://github.com/WordPress/gutenberg/issues/61298)
- [Components: Replace `reducedMotion()` usage with media queries](https://github.com/WordPress/gutenberg/issues/60902)
- [Clarify the 'Play inline' setting for videos](https://github.com/WordPress/gutenberg/issues/60867)
- [Custom HTML Block should display content in LTR layout for all languages](https://github.com/WordPress/gutenberg/issues/61324)
- [Focus ring doesn't match button Site Hub Icon size](https://github.com/WordPress/gutenberg/issues/61339)
- [TabPanel: Focus styles on `tabpanel` are wrong](https://github.com/WordPress/gutenberg/issues/60663)
- [Remove font weight on toolbar tab button](https://github.com/WordPress/gutenberg/issues/61254)
- [The description of the More block is not clear](https://github.com/WordPress/gutenberg/issues/41854)
- [@wordpress/scripts lint-js not compatible with newer versions of ESLint (ESLint 9+)](https://github.com/WordPress/gutenberg/issues/55499)
| Javascript repositories with good first issues for newcomers to open source. | good-first-issue,javascript,html,nodejs,open-source | 2023-03-12T21:23:07Z | 2024-05-23T00:08:51Z | null | 1 | 5 | 465 | 2 | 12 | 12 | null | MIT | HTML |
aliceakesson/Heardle-Spotify | main | <a name="readme-top"></a>
[![LinkedIn][linkedin-shield]][linkedin-url]
[](https://www.buymeacoffee.com/aliceakesson)
<br />
<div align="center">
<a href="https://github.com/aliceakesson/Heardle-Spotify/">
<img src="public/icon.png" alt="Logo" width="80" height="80">
</a>
<h3 align="center">Heardle Spotify</h3>
<p align="center">
Heardle built on a Node.js server using Spotify's Web API
</p>
</div>
<!-- ABOUT THE PROJECT -->
## About The Project
<p>
This is another version of Heardle made completely by me, where the user can choose freely regarding choice of music. For example: song by artist, song by playlist or a song from the user's top songs.
</p>
<br><br>
<div style="display: flex;justify-content: center;align-items: center;margin:auto">
<img src="https://user-images.githubusercontent.com/91065258/231267216-1965ff1b-522f-48c2-8547-0763d472e100.png" style="width:45%">
<img src="https://user-images.githubusercontent.com/91065258/231267239-c5100193-34b0-455d-9496-87c140602f44.png" style="width:45%">
</div>
<br><br>
## Requirements
Sadly, this project requires the user to have some sort of Spotify Premium membership. This is because, as for now, you will need to start your own Spotify Application to play it (more about this in the installation guide further down).
## Built With
<p>
The site runs on a local host, made using Node.js. Further, it's built using Spotify's Web API and the Spotify Web Playback SDK, where the user will have to authenticate using <a href="https://datatracker.ietf.org/doc/html/rfc6749">OAuth 2.0</a>.
</p>
* [![Node][node-shield]][node-url]
* [![JavaScript][js-shield]][js-url]
* [![HTML][html-shield]][html-url]
* [![CSS][css-shield]][css-url]
## Installation
As mentioned in the requirements, you will first need to create your own Spotify Application. This is easily done through <a href="https://developer.spotify.com/dashboard">the Spotify Dashboard</a>. The steps are as following:
1. Click on "Create app"
2. Give the app a name (any) and a short description
3. Leave the textfield for "Website" blank. This is not needed
4. Enter 'http://localhost:8888/callback' for the redirect URL
5. Check the terms of service box
6. Click on "Save"
Now, proceed to download and extract the zip-file of this GitHub project. Open the project in any code editor and locate the environment-file (.env) which is located in the 'public' folder. The values for CLIENT_ID and CLIENT_SECRET can be found by clicking on the settings of your Spotify Application (The client secret will be visible by clicking on "View client secret"). Enter these values for their respective variables in the environment.
> **Note:** The values should not be written inside string literals, they should just be inserted as they are (eg. CLIENT_ID=1234567890, not CLIENT_ID="1234567890")
The application requires you to run it on a local server (this is done using Node.js and nodemon), thus you will therefore afterwards have to download these. In the your terminal, go to the directory of the project and then go to the folder named 'public' using this command:
```sh
cd public
```
> **Note:** This command is based off of the Windows terminal. It may vary depending on the operative system.
After that, install npm and nodemon in the current folder using the following two commands:
```sh
npm install
```
```sh
npm install -g nodemon
```
If everything goes well, the application should then be playable by calling the command to start the server, then open up the server in your browser of choice at <a>http://localhost:8888/login</a>.
```sh
nodemon server.js
```
It can be exited at anytime by using Ctrl+C in the terminal, or be refreshed by simply writing the following:
```sh
rs
```
<!-- CONTACT -->
## Contact
Alice Åkesson - alicek732@gmail.com
Project Link: [https://github.com/aliceakesson/Heardle-Spotify](https://github.com/aliceakesson/Heardle-Spotify)
[css-shield]: https://img.shields.io/badge/CSS-239120?&style=for-the-badge&logo=css3&logoColor=white
[css-url]: https://www.w3.org/Style/CSS/Overview.en.html
[html-shield]: https://img.shields.io/badge/HTML-239120?style=for-the-badge&logo=html5&logoColor=white
[html-url]: https://html.com/
[js-shield]: https://img.shields.io/badge/JavaScript-F7DF1E?style=for-the-badge&logo=javascript&logoColor=black
[js-url]: https://www.javascript.com/
[linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=for-the-badge&logo=linkedin&colorB=555
[linkedin-url]: https://www.linkedin.com/in/alice-%C3%A5kesson-20a066215/
[node-shield]: https://img.shields.io/badge/Node.js-43853D?style=for-the-badge&logo=node.js&logoColor=white
[node-url]: https://nodejs.org/en
| Heardle made using Spotify's Web API | css,heardle,html,javascript,music,wordle,node,spotify,spotify-web-api | 2023-03-17T20:36:31Z | 2024-01-16T13:20:14Z | null | 1 | 3 | 101 | 1 | 1 | 12 | null | null | JavaScript |
exslym/My-Portfolio-3D | main | ## [My-Portfolio-3D](https://exslym.github.io/My-Portfolio-3D/)
[](https://exslym.github.io/My-Portfolio-3D/)
### An outstanding and impressive 3D Developer Portfolio website using React, 3D-graphics and animations with ThreeJS and Framer Motion, and TailwindCSS!
### Vercel Deployment: [My-Portfolio-3D](https://my-portfolio-exslym.vercel.app/)
---
### Installation
```
npm install
```
### Start Dev Server
```
npm start
```
### Build Production Version
```
npm run build
```
### Preview Build Production Version
```
npm run serve
```
### Deployment on GitHub Pages (Optional)
```
npm run deploy
```
This adds gh-pages branch to your project github repository, deploys built project there, hosts the site via GitHub Pages.
---
### Features:
- `Legacy Browsers` support via **@vite/plugin-legacy** with built-in **babel**
- `SCSS` support via **sass**
- `Autoprefix` support via **postcss**
- `3D Effects` support via **ThreeJS**
- `Animation` support via **Framer Motion**
- `Styles` support via **TailwindCSS**
| 3D Dev Portfolio - very impressive website with 3D graphics and animations (React, ThreeJS, TailwindCSS) | 3d-graphics,animations,framer-motion,react,react-three-fiber,reactjs,tailwindcss,threejs,emailjs,javascript | 2023-03-14T15:36:07Z | 2024-01-25T08:15:02Z | null | 1 | 0 | 63 | 0 | 6 | 12 | null | null | JavaScript |
UbdaNam/Fundraising-platform | main | <a name="readme-top"></a>
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [🎥 Video description](#video-description)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Usage](#usage)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [❓ FAQ (OPTIONAL)](#faq)
- [📝 License](#license)
# 📖 We Care <a name="about-project"></a>
**We Care: Fundraising platform** is a fundraising platform for different peoples or communities that needs help.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>Client</summary>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>
</details>
### Key Features <a name="key-features"></a>
- **Added home page**
- **List of known donators**
- **Added about page**
- **Added account status show on navbar**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🚀 Live Demo <a name="live-demo"></a>
- [Live Demo Link](https://ubdanam.github.io/Fundraising-platform/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🎥 Video description <a name="video-description"></a>
- Below is a link to a video that I recorded to walk you through why I did this project and what features I added in the platform.
- [Video Description link](#)
<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:
- **Web Browser**
### Setup
Clone this repository to your desired folder
### Install
Install this project with:
```sh
cd fundraising-platform
npm install
```
### Usage
Run this project by:
opening the index.html which is located inside the cloned folder, in the browser.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 👥 Authors <a name="authors"></a>
👤 **Author1**
- GitHub: [@UbdaNam](https://github.com/UbdaNam)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
- [ ] **Add payment gateway**
- [ ] **Add auction system to raise money**
- [ ] **Add payment forms**
<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 <a href="https://github.com/UbdaNam/Fundraising-platform/issues">Issues page</a>
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ⭐️ Show your support <a name="support"></a>
If you like this project leave a star
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🙏 Acknowledgments <a name="acknowledgements"></a>
- Original design idea by <a href="https://www.behance.net/adagio07">Cindy Shin</a> in Behance.
- I would like to thank microverse for there help in teaching us how to implement such kinds of projects
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 📝 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>
| This project is a landing page for we-care fundraising platform that helps people raise money for causes they care about. Built with HTML, CSS, and JavaScript. | css3,html5,javascript | 2023-03-13T08:17:12Z | 2023-03-29T12:07:49Z | null | 1 | 1 | 13 | 0 | 0 | 12 | null | MIT | CSS |
turistu/totp-in-javascript | main | <p>This is a javascript implementation of
a <a href=https://www.rfc-editor.org/rfc/rfc6238>TOTP</a> generator,
using the browser's
<a href=https://w3c.github.io/webcrypto/#subtlecrypto-interface>crypto API</a>.
It should do the exactly same thing as the google authenticator or any other
TOTP generating app.
<p>The <a href=totp.js>javascript code</a> does not send to or fetch any data
from anywhere remotely, and
the <a href=https://turistu.github.io/totp.html>demo page</a>
should work the same when served over https, saved locally or used inside
a browser extension.
<p>I have also packaged this into an <a href=https://addons.mozilla.org/en-US/firefox/addon/totp/>xpi firefox browser extension</a>,
which offers the convenience of generating the TOTP (for a key you have saved)
directly from a toolbar popup instead of having to switch to another tab.
The xpi does not do anything more than that and does not include any content
scripts or filters.
| trivial implementation of TOTP in javascript using the browser's crypto API | firefox,javascript,totp,totp-generator,firefox-addon,firefox-extension | 2023-03-16T17:12:23Z | 2023-11-22T06:37:44Z | null | 1 | 0 | 85 | 2 | 1 | 12 | null | GPL-3.0 | JavaScript |
cosmicjs/cosmic-sdk-js | main | <a href="https://app.cosmicjs.com/signup">
<img src="https://imgix.cosmicjs.com/ca74e2f0-c8e4-11ed-b01d-23d7b265c299-cosmic-dashboard-dark.png?w=2000&auto=format" alt="Cosmic dashboard darkmode" />
</a>
<h1 align="center">Cosmic JavaScript SDK</h1>
[Cosmic](https://www.cosmicjs.com/) is a [headless CMS](https://www.cosmicjs.com/headless-cms) (content management system) that provides a web dashboard to create content and an API toolkit to deliver content to any website or application. Nearly any type of content can be built using the dashboard and delivered using this SDK.
[Get started free →](https://app.cosmicjs.com/signup)
## Install
Install the Cosmic JavaScript SDK. We recommend using the [bun](https://bun.sh) package manager.
```bash
bun add @cosmicjs/sdk
# OR
yarn add @cosmicjs/sdk
# OR
npm install @cosmicjs/sdk
```
## Import
Import Cosmic into your app using the `createBucketClient` method.
```jsx
import { createBucketClient } from '@cosmicjs/sdk';
```
## Authentication
In the [Cosmic admin dashboard](https://app.cosmicjs.com/login) go to _Bucket > Settings > API Access_ and get your Bucket slug and read key then set the variables in your app to connect to your Bucket.
```jsx
const cosmic = createBucketClient({
bucketSlug: 'BUCKET_SLUG',
readKey: 'BUCKET_READ_KEY',
});
```
## Get Objects
Objects are the basic building blocks of content in Cosmic.
### Get multiple Objects [[see docs](https://www.cosmicjs.com/docs/api/objects#get-objects)]
Use the `objects.find()` method to fetch Objects.
```jsx
const posts = await cosmic.objects
.find({
type: 'posts',
})
.props(['title', 'slug', 'metadata'])
.limit(10);
```
The above example fetches Objects in the `posts` Object type returning the `title`, `slug`, and `metadata` properties, limiting the response to `10` Objects.
### Get single Object by slug [[see docs](https://www.cosmicjs.com/docs/api/objects#get-a-single-object-by-slug)]
Use the `objects.findOne()` method with `type` and `slug` to fetch a single Object.
```jsx
const post = await cosmic.objects
.findOne({
type: 'pages',
slug: 'home',
})
.props(['title', 'slug', 'metadata']);
```
## Create, update, and delete Objects
To write to the Cosmic API, you will need to set the Bucket write key found in _Bucket > Settings > API Access_. (NOTE: never expose your write key in any client-side code)
```jsx
const cosmic = createBucketClient({
bucketSlug: 'BUCKET_SLUG',
readKey: 'BUCKET_READ_KEY',
writeKey: 'BUCKET_WRITE_KEY',
});
```
### Create Object [[see docs](https://www.cosmicjs.com/docs/api/objects#create-an-object)]
Use the `objects.insertOne()` method to create an Object.
```jsx
await cosmic.objects.insertOne({
title: 'Blog Post Title',
type: 'posts',
metadata: {
content: 'Here is the blog post content... still learning',
seo_description: 'This is the blog post SEO description.',
featured_post: true,
tags: ['javascript', 'cms'],
},
});
```
### Update Object [[see docs](https://www.cosmicjs.com/docs/api/objects#update-an-object)]
Use the `objects.updateOne()` method to update an Object by specifying the Object `id` and include properties that you want to update.
```jsx
await cosmic.objects.updateOne('5ff75368c2dfa81a91695cec', {
metadata: {
content: 'This is the updated blog post content... I got it now!',
featured_post: false,
},
});
```
### Delete Object [[see docs](https://www.cosmicjs.com/docs/api/objects#delete-an-object)]
Use the `objects.deleteOne()` method to delete an Object by specifying the Object `id`.
```jsx
await cosmic.objects.deleteOne('5ff75368c2dfa81a91695cec');
```
## Learn more
Go to the [Cosmic docs](https://www.cosmicjs.com/docs) to learn more capabilities.
## Community support
For additional help, you can use one of these channels to ask a question:
- [GitHub](https://github.com/cosmicjs/cosmicjs/cosmic-sdk-js) (Bug reports, contributions)
- [Twitter](https://twitter.com/cosmicjs) (Get the latest news about Cosmic features and notifications)
- [YouTube](https://www.youtube.com/cosmicjs) (Learn from video tutorials)
## Cosmic support
- [Contact us](https://www.cosmicjs.com/contact) for help with any service questions and custom plan inquiries.
## Contributing
This project uses [changeset](https://www.npmjs.com/package/@changesets/cli) to manage releases. Follow the following steps to add a changeset:
- Run `npm run changeset` command and select type of release with description of changes.
- When PR with changeset is merged into `main` branch, Github will create a new PR with correct version change and changelog edits.
- When `codeowner` merges the generated PR, it will publish the package and create a Github release.
## License
This project is published under the [MIT](https://github.com/cosmicjs/cosmic-sdk-js/blob/HEAD/LICENSE) license.
| The official JavaScript SDK for Cosmic. Use it to power content server-side, in the browser, and in native apps. | api,content-management,cosmicjs,headless-cms,javascript,nodejs | 2023-03-17T15:22:44Z | 2023-12-05T18:44:09Z | 2023-12-05T18:45:25Z | 4 | 28 | 136 | 0 | 1 | 12 | null | MIT | TypeScript |
Octagon-simon/microsoft-login-clone | main | ## MICROSOFT LOGIN PAGE CLONE
This is a clone of the iconic login page for Microsoft (outlook) accounts with its form validation.
> In as much as this script does not process information submitted, please do not submit any personal information!
> I DO NOT OWN the rights to any images used in this page!
### ✨TECH-STACK
- HTML
- CSS
- JavaScript
### 🔍 PREVIEW
Below is a short clip of what this clone looks like
<img src="assets/preview.gif" alt="preview" /> | A clone of the login page for Microsoft accounts | clone-website,css,html,html-css-javascript,javascript,live,login-page,microsoft,microsoft-login,outlook | 2023-03-18T09:59:51Z | 2023-03-19T15:20:17Z | null | 1 | 0 | 8 | 0 | 12 | 11 | null | null | HTML |
DianneFaria/Projeto-de-API-1-Semestre | main | <h1 align="center"> Projeto API - 1º Semestre </h1>
## 🔗 Índice
* [🎯 Objetivo](#-objetivo)
* [📍 Requisitos funcionais](#-requisitos-funcionais)
* [📍 Requisitos não-funcionais](#-requisitos-não-funcionais)
* [🔧 Tecnologias utilizadas](#-tecnologias-utilizadas)
* [👥 A Equipe MetaCode](#-a-equipe-metacode)
* [📊 Sprints e Backlog](#-sprints-e-backlog)
* [📽️ Vídeo do protótipo](#%EF%B8%8F-vídeo-do-protótipo)
* [🖥️ Link do protótipo](#%EF%B8%8F-link-do-protótipo-figma)
* [📋 MVP](#-mvp)
* [📽️ Vídeo do Site na Web - Sprint 2 ](#%EF%B8%8F-vídeo-do-site-na-web---sprint-2)
* [📽️ Vídeo do Site na Web - Sprint 3](#%EF%B8%8F-vídeo-do-site-na-web---sprint-3---página-home-e-questionário)
* [📽️ Vídeo do Site na Web - Sprint 4](#%EF%B8%8F-vídeo-do-site-na-web---sprint-4---modo-escuro-e-responsivo)
* [❓ Como usar o site no seu computador](#-como-usar-o-site-no-seu-computador)
## 🎯 Objetivo
Desenvolver um site informativo simples e funcional sobre a Metodologia Ágil que contenha conceitos e fundamentos, assim como exemplos práticos e avaliações para o usuário.
## 📍 Requisitos funcionais
• Linguagem Python (Requisito Fatec).
• Linguagem HTML e CSS (Requisito Fatec).
• O sistema web deverá ser intuitivo e não ter poluições de informações.
• Criar um sistema de avaliação (Processo, Produto e Conhecimento em disciplina, SM, PO, TD).
## 📍 Requisitos não-funcionais
• Documentação via GitHub.
• Linguagem de programação Python, framework Flask.
• Linguagem de marcação HTML e CSS.
## 🔧 Tecnologias utilizadas
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
## 👥 A Equipe MetaCode
<br>
|Nome|Função|GitHub|Linkedin|
| -------- |-------- |-------- |-------- |
|**Julia Gonzalez**|Product Owner|[@GitHub](https://github.com/juliagonzalezmoreira)|[@Linkedin](http://linkedin.com/in/julia-gonzalez-moreira)
|**Dianne Faria**|Scrum Master|[@GitHub](https://github.com/DianneFaria)|[@Linkedin](https://www.linkedin.com/in/dianne-faria-de-brito-099b3015b)
|**Pedro Ribeiro**|Desenvolvedor|[@GitHub](https://github.com/pedrohenribeiro)|[@Linkedin](https://www.linkedin.com/in/pedrohenribeiro1/)
|**Sofia Lessa**|Desenvolvedor|[@GitHub](https://github.com/sofialessaa)|[@Linkedin](https://www.linkedin.com/in/sofiamatoslessa/)
|**Ana Luisa Andrade**|Desenvolvedor|[@GitHub](https://github.com/LuisaAndrade28)|[@Linkedin](https://www.linkedin.com/in/ana-luisa-andrade-4a695526b)
|**Maria Luiza Guedes**|Desenvolvedor|[@GitHub](https://github.com/mluizaguedes)|[@Linkedin](https://www.linkedin.com/in/maria-luiza-a141b123b)
|**Gustavo Sena**|Desenvolvedor|[@GitHub](https://github.com/gustavosenamp)|[@Linkedin](https://www.linkedin.com/in/gustavo-sena-577045232)
</br>
## 📊 Sprints e Backlog


## 📽️ Vídeo do protótipo
https://user-images.githubusercontent.com/126246097/228507020-9f05266f-ef0a-4208-a419-c1f62df86695.mp4
## 🖥️ Link do protótipo (Figma)
* [Protótipo](https://www.figma.com/file/T4KKC2PIVHAnsGjgjj3TVS/prototipo-1?node-id=0%3A1&t=O0UuSYhXF8PWarEb-1)
## 📋 MVP

## 📽️ Vídeo do Site na Web - Sprint 2
https://github.com/DianneFaria/Projeto-de-API-1-Semestre/assets/126246097/12c8c754-87b8-4aa0-8d41-9efd06e7cfdb
## 📽️ Vídeo do Site na Web - Sprint 3 - Página Home e Questionário
https://github.com/DianneFaria/Projeto-de-API-1-Semestre/assets/110678185/75ac9e6c-6b0d-4fa0-b34c-040a689726b7
## 📽️ Vídeo do Site na Web - Sprint 4 - Modo escuro e Responsivo
https://github.com/DianneFaria/Projeto-de-API-1-Semestre/assets/126246097/cf0665b4-aabf-439a-b1d9-dcaf459690be
## ❓ Como usar o site no seu computador
• O Github permite que você baixe os arquivos do projeto como uma pasta zip, dessa forma você pode acessar a plataforma por meio de seu cmd.
• Para baixar basta clicar em ``` <>Code ``` no github e fazer o download zip.
• Para facilitar, coloque o arquivo zip na área de trabalho e extraia ele.
• Em arquivos do seu computador abra a pasta do projeto e clique na seta encontrada na parte superior para selecionar a abertura do arquivo pelo cmd do sua máquina.
Nele digite os seguintes comandos:
```
1- python -m venv venv
2- .\venv\Scripts\activate
3- pip install -r requirements.txt
4- flask run
```
• Basta copiar o link do site e acessar no seu navegador.
• Existem dois erros que podem ocorrer entre essas etapas, o primeiro é a falta de permissão do modo execução do seu computador, neste caso você deve abrir o PowerShell do seu computador no modo administrador e digitar os seguintes comandos:
```
1- Set-ExecutionPolicy -ExecutionPolicy AllSigned
2- E então a letra maiúscula de sim para todos.
```
• Por fim se todas essas ações ainda não habilitaram o uso do site para você será preciso baixar o ambiente virtual no seu terminal usando os seguintes códigos:
```
1- python -m venv venv
2- .\venv\Scripts\activate
3- pip install flask
4- flask run
```
• Agora basta clicar no link na tela segurando o ```CTRL``` ao mesmo tempo.
➡️ [Para mais informações de como baixar no seu sistema](https://www.canva.com/design/DAFiE1vqlmQ/6IqE6Fc2fPqaQGqlcrIAeA/edit?utm_content=DAFiE1vqlmQ&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton)
| Site criado com o tema "Métodos Ágeis". Com o objetivo de ensinar ao usuário a metodologia SCRUM de forma dinâmica e intuitiva. | css3,flask,html,javascript,python,visual-studio-code,bootstrap,figma,responsive | 2023-03-17T11:32:33Z | 2023-09-04T19:02:15Z | null | 7 | 4 | 169 | 0 | 6 | 11 | null | Apache-2.0 | HTML |
EhsanShahbazii/SabzLearn-JavaScript-Problems | master | 
# SabzLearn-JavaScript-Problems
Sabzleran questions and answers along with explanations and source codes are placed in this repository.
### Problems
- **Day 1**
- Sum of digits `Beginner`: [see preview](https://codepen.io/ehsanshahbazii/pen/qBMJpdW)
- Random Quote `Mid`: [see preview](https://codepen.io/ehsanshahbazii/pen/BaOqJod)
- Trello `Advance`: [see preview](https://codepen.io/ehsanshahbazii/pen/BaOqJzw)
- **Day 2**
- Number of digits `Beginner`: [see preview](https://codepen.io/ehsanshahbazii/pen/VwGEorj)
- Guess the word `Mid`: [see preveiw](https://codepen.io/ehsanshahbazii/pen/JjamgMo)
- Shopping Card `Advance`: not complete yet
- **Day 3**
- Generate captcha `Beginner`: [see preview](https://codepen.io/ehsanshahbazii/pen/dyqQLWy)
- Mouse animation `Mid`: [see preveiw](https://codepen.io/ehsanshahbazii/pen/gOdQyxL)
- Phone book `Advance`: [see preview](https://codepen.io/ehsanshahbazii/pen/vYzQMeL)
- **Day 4**
- Power in math `Beginner`: [see preview](https://codepen.io/ehsanshahbazii/pen/ExeGdRP)
- Dynamic background `Mid`: [see preveiw](https://codepen.io/ehsanshahbazii/pen/PodXyae)
- Sorting algorithms `Advance`: [see preview](https://codepen.io/ehsanshahbazii/pen/eYLbPjm)
- **Day 5**
- Image slider `Beginner`: [see preview](https://codepen.io/ehsanshahbazii/pen/bGMKEGx)
- Tracker game `Mid`: [see preveiw](https://codepen.io/ehsanshahbazii/pen/bGxzomx)
- Typing speed `Advance`: not complete yet
- **Day 6**
- Fibonacci series `Beginner`: [see preview](https://codepen.io/ehsanshahbazii/pen/NWLoaEO)
- Music player `Mid`: not complete yet
- Admin dashboard CRUD `Advance`: not complete yet
- **Day 9**
- Random number `Beginner`: [see preview]()
- char with count one `Mid`: [see preview]()
### Days 10, 11, 12, 13 are available in Zip file
| حل سوالات چالش روزانه سبزلرن فرانت اند در نوروز سال ۱۴۰۲. فایل حاوی توضیحات سوالات در سه سطح و پاسخ های آن است. | css,html,javascript,js,problem-solving,problems,solving,guess,quotes,trello | 2023-03-21T19:03:48Z | 2024-02-14T06:51:36Z | null | 1 | 0 | 61 | 0 | 0 | 11 | null | null | HTML |
wrappid/native-web | main | # native-web
This repository is combined packages of all the Styled Components for react web project.
[](https://github.com/wrappid/native-web/actions/workflows/npm-publish-github-packages.yml)
| This repository is combined packages of all the Styled Components for react web project. | css,cssinjs,javascript,mui,react,styled-components,wrappid,wrappid-styles,wrappid-native-components | 2023-03-16T16:17:17Z | 2024-03-18T10:16:39Z | 2024-05-23T11:53:18Z | 17 | 29 | 621 | 9 | 1 | 10 | null | MIT | JavaScript |
CesarHerr/portfolio_0.1 | main | <a name="readme-top"></a>
<div align="center">
<h3><b>Portfolio</b></h3>
</div>
<!-- TABLE OF CONTENTS -->
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#triangular_flag_on_post-deployment)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [❓ FAQ (OPTIONAL)](#faq)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
# 📖 [Portfolio] <a name="about-project"></a>
**[Portfolio]** This portfolio is a collection of projects showcasing my experience in designing and developing interactive and functional websites. It includes a variety of examples ranging from corporate websites to complex web applications, using technologies such as HTML, CSS, JavaScript, and frameworks like React. Additionally, visitors can find details about my focus on usability, responsive design, and performance optimization.
## 🛠 Built With <a name="built-with"></a>
```
1.- HTML.
2.- JavasCript.
2.- CSS.
3.- Linters.
```
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>Client</summary>
<ul>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/HTML">HTML</a></li>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/CSS">CSS</a></li>
<li><a href="https://developer.mozilla.org/es/docs/Web/JavaScript">JavaScript</a></li>
</ul>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
```
- **[Responsive Design]**
- **[Mobile first Design]**
- **[Dom Manipulation]**
- **[application Deploy ]**
```
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LIVE DEMO -->
## 🚀 Live Demo <a name="live-demo"></a>
- https://cesarherr.github.io/portfolio
<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:
```
- Code Editor.
- Git and Github account.
- Web browser.
```
### Setup
Clone this repository to your desired folder:
```
cd my-folder
git clone https://github.com/CesarHerr/portfolio.git
```
### Install
Install this project with:
```
You Don't need install this project
```
### Usage
To run the project, execute the following command:
```
Double click on the HTML file, open it in your browser.
```
### Run tests
To run tests, run the following command:
```
Not need it
```
### Deployment
You can deploy this project using:
[Implementation](https://github.com/microverseinc/curriculum-html-css/blob/main/portfolio/1_setup.md)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 **César Herrera**
- GitHub: [@CesarHerr](https://github.com/CesarHerr)
- Twitter: [@Cesarherr2](https://twitter.com/Cesarherr2)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/cesarherr/)
**Collaborators**
👤 **Gerson Higgins**
- GitHub: [@gersongahg](https://github.com/gersongahg)
👤 **Matembe Benjamin**
- GitHub: [@BenjaminMatembe](https://github.com/BenjaminMatembe)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- Accessibility improvements.
- Add Works
- Add Curriculum
<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 and you think is useful to someone please share it
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank team of microverse and the micronauts for hitting me up with new knowledge.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FAQ (optional) -->
<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> | My portfolio showcases impressive web projects with attractive designs, versatile functionalities, and optimized performance, highlighting my expertise in various technologies. It was developed using HTML and CSS. | css3,html5,javascript,linters | 2023-03-23T03:33:28Z | 2023-06-09T01:57:41Z | null | 5 | 14 | 96 | 0 | 0 | 10 | null | MIT | CSS |
fpsapc/AppleChemicals | master | <a name="readme-top">Apple Chemicals</a>
<div align="center">
<!-- Company Logo -->
<img src="img/logo.jpg" alt="logo" width="140" height="auto" />
<br/>
<h3><b>Apple Chemicals README</b></h3>
</div>
<!-- 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)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [❓ FAQ (OPTIONAL)](#faq)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
# 📖 [Apple Chemicals] <a name="about-project"></a>
**[Apple Chemicals]** is a project for arranging a conference for farmers in Pakistan. It will be helpful for us to get more attandence.
## 🛠 Built With <a name="built-with"></a>
This project is purely made using
HTML
CSS & JavaScript
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>PC</summary>
<ul>
<li><a href="#">My PC</a></li>
</ul>
</details>
<details>
<summary>Github</summary>
<ul>
<li><a href="https://github.com/">Github</a></li>
</ul>
</details>
<details>
<summary>VS Code</summary>
<ul>
<li><a href="#">VS Code</a></li>
</ul>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **[Responsive design]**
- **[Easy to understand]**
- **[Use of linters]**
<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://fpsapc.github.io/AppleChemicals)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- GETTING STARTED -->
## 💻 Getting Started <a name="getting-started"></a>
You can easily use this project by using following steps
### Prerequisites
In order to run this project you need:
A PC or A Laptop
### Setup
Clone this repository to your desired folder:
You can clone this repository in your PC by using following command or you can use github desktop to clone it easliy
git clone git@github.com:fpsapc/AppleChemicals.git
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 **Salman Ahmad Khan**
- GitHub: [@githubhandle](https://github.com/fpsapc)
- Twitter: [@twitterhandle](https://twitter.com/salmanahmadkhan)
- LinkedIn: [LinkedIn](https://linkedin.com/in/salmanahmad1987)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- [ ] **[I will add some video clips of this conference in future]**
- [ ] **[I will make this project more attractive using latest techniques]**
<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 give me star please.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank Cindy Shin in Behance.
<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.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| This project belongs to inform farmer's about a meeting and also introduced some aspect of company. HTML/CSS and JavaScript best practices are used to make this project. | css,html,javascript | 2023-03-13T15:12:04Z | 2023-04-08T19:09:03Z | null | 1 | 1 | 41 | 0 | 0 | 10 | null | MIT | CSS |
Maha-Magdy/printify-studio | main | # Printify Studio
## About
Printify Studio is a web-based application that allows users to upload or drag and drop photos, then make a variety of adjustments to them before printing. Developed using plain CSS and JavaScript, this app is easy to use and offers a wide range of customization options.

## Table of contents
- [ Features ](#features)
- [ Getting Started ](#getting_started)
- [ Demo ](#demo)
- [ Installation ](#installation)
- [ Contributing ](#contributing)
- [ Acknowledgments ](#acknowledgments)
- [ License ](#license)
<a name="features"></a>
## Features
- Upload or drag and drop an image.
- Apply a range of filters to images, such as saturation, contrast, and hue adjustments.
- Adjust shadows, add borders, and add text to an image.
- Clear and reset the canvas for a new image.
<a name="getting_started"></a>
## Getting Started
To get started with Printify Studio, simply open the app in your web browser and upload or drag and drop a photo onto the canvas. From there, you can use the range of customization tools to adjust your image until it's just right. Once you're happy with your image, you can print it right from the application.
<a name="demo"></a>
## Demo
Here are the links to the live demo and the video demo of the Printify Studio:
- [Live Demo Link](https://maha-magdy.github.io/printify-studio/)
- Video Demo
https://github.com/Maha-Magdy/printify-studio/assets/62838415/2f4b7ea9-9823-482b-9c2a-65bf7b5fb5f3
<a name="installation"></a>
## Installation
To install the Printify Studio on your local machine, follow these steps:
- Clone this repository: `git clone https://github.com/Maha-Magdy/printify-studio.git`
- Open the `index.html` file in your web browser
<a name="contributing"></a>
## Contributing
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](https://github.com/Maha-Magdy/printify-studio/issues).
<a name="acknowledgments"></a>
## Acknowledgments
- Customized dashed border from <a href="https://kovart.github.io/dashed-border-generator/">Dashed Border Generator</a> A cool tool made by <a href="https://github.com/kovart">Artem Kovalchuk</a>, to allow setting the stroke dash array you desire.
- SVG Vectors and Icons from <a href="https://www.svgrepo.com/">SVG Repo</a>
- Inspiring color palettes from <a href="https://coolors.co/palettes/popular">Coolors</a>
<a name="license"></a>
## License
This project is [MIT](./LICENSE) licensed.
## Show your support
Give a ⭐️ if you like this project!
| Printify Studio is a web-based application that allows users to upload or drag and drop photos, then make a variety of adjustments to them before printing. Developed using plain CSS and JavaScript, this app is easy to use and offers a wide range of customization options. | css,javascript | 2023-03-24T08:56:13Z | 2023-08-27T10:31:52Z | null | 1 | 32 | 94 | 0 | 0 | 10 | null | MIT | HTML |
VoidDevsorg/node-scrapper | main | # @voidpkg/scrapper
[![NPM Version][npm-version-image]][npm-url]
[![NPM Downloads][npm-downloads-image]][node-url]
## Community
If you have any questions or want to help, join our [Discord](https://discord.gg/voiddevs) server.
## Installation
This is a [Node.js](https://nodejs.org/en/) module available through the
[npm registry](https://www.npmjs.com/). Installation is done using the
[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally):
```sh
$ npm install @voidpkg/scrapper
```
## Usage
```js
const { Engine } = require('@voidpkg/scrapper');
Engine.google('Void Development', {
proxies: [
{
host: '0.0.0.0',
port: 8080,
auth?: {
username: 'clqu',
password: '123456'
}
}
]
}).then(console.log).catch(console.error);
```
## Engine API
```js
/*
types: 0 = Search, 1 = Suggestions, 2 = Images
*/
Engine.google(query, options, type);
Engine.bing(query, options, type);
Engine.youtube(query, options);
Engine.wikipedia(query, options);
```
## With Constructor
```js
const { Google, Bing, YouTube, Wikipedia } = require('@voidpkg/scrapper');
const proxies = [
{
host: '0.0.0.0',
port: 8080,
auth?: {
username: 'clqu',
password: '123456'
}
}
];
const google = new Google({ proxies });
const bing = new Bing({ proxies });
const youtube = new YouTube({ proxies });
const wikipedia = new Wikipedia({ proxies });
// Search
google.search('Void Development').then(console.log).catch(console.error);
bing.search('Void Development').then(console.log).catch(console.error);
youtube.search('Void Development').then(console.log).catch(console.error);
wikipedia.get('Void Development').then(console.log).catch(console.error);
// Suggestions
google.suggestions('Void Development').then(console.log).catch(console.error);
bing.suggestions('Void Development').then(console.log).catch(console.error);
```
## Engines
| Name | State
|------|----------|
| Google Search | ✅
| Google Suggestions | ✅
| Google Images | ❌
| Bing Search | ✅
| Bing Suggestions | ✅
| Bing Images | ❌
| Wikipedia Search | ✅
| YouTube Videos Search | ✅
## Options
<details>
<summary>Google</summary>
| Name | Required | Type | Default
|------|----------|----------|----------|
| mkt | ❌ | string | en-US
| page | ❌ | number | 1
| perPage | ❌ | number | 10
| safe | ❌ | off, active, high, medium, safeUndefined | off
| headers | ❌ | { [key: string]: any; } | undefined
| proxies | ❌ | proxy[] | undefined
| queries | ❌ | { [key: string]: any; } | undefined
</details>
<details>
<summary>Bing</summary>
| Name | Required | Type | Default
|------|----------|----------|----------|
| mkt | ❌ | string | en-US
| page | ❌ | number | 1
| perPage | ❌ | number | 10
| safe | ❌ | off, moderate, strict | off
| headers | ❌ | { [key: string]: any; } | undefined
| proxies | ❌ | proxy[] | undefined
| queries | ❌ | { [key: string]: any; } | undefined
</details>
<details>
<summary>YouTube</summary>
| Name | Required | Type | Default
|------|----------|----------|----------|
| headers | ❌ | { [key: string]: any; } | undefined
| proxies | ❌ | proxy[] | undefined
| queries | ❌ | { [key: string]: any; } | undefined
</details>
<details>
<summary>Wikipedia</summary>
| Name | Required | Type | Default
|------|----------|----------|----------|
| language | ❌ | string | en
| headers | ❌ | { [key: string]: any; } | undefined
| proxies | ❌ | proxy[] | undefined
| queries | ❌ | { [key: string]: any; } | undefined
</details>
<details>
<summary>Proxy</summary>
| Name | Required | Type
|------|----------|----------|
| host | ✅ | string
| port | ✅ | number
| auth | ❌ | { username: string; password: string; }
</details>
<br>
## How to get free proxies?
- [WebShare](https://webshare.io) (Recommended)
- [ProxyScrape](https://proxyscrape.com/free-proxy-list)
- [ProxyList](https://www.proxy-list.download/api/v1/get?type=https)
- [ProxyDB](https://proxydb.net/)
- [ProxyNova](https://www.proxynova.com/proxy-server-list/)
## License
[MIT](LICENSE)
[node-url]: https://nodejs.org/en/download
[npm-downloads-image]: https://badgen.net/npm/dm/@voidpkg/scrapper
[npm-url]: https://npmjs.org/package/@voidpkg/scrapper
[npm-version-image]: https://badgen.net/npm/v/@voidpkg/scrapper | A simple search scrapper for Google, Bing, Wikipedia etc. for NodeJS | google,javascript,nodejs,scrapper,search-engine,engine,search,typescript,bing,wikipedia | 2023-03-18T15:18:15Z | 2023-03-18T15:21:44Z | null | 4 | 0 | 1 | 0 | 0 | 10 | null | MIT | TypeScript |
elrouss/spanish-with-anna | main | <h1 align="center">Проект: "Español con Anna" 🇪🇸</h1>
<div align="center">
<img width="600" alt="Главный экран приложения" src="https://github.com/elrouss/spanish-with-anna/assets/108838349/ab898a3b-1f88-4fdf-850a-c0097eb023d9">
</div>
<a name="summary">
<details>
<summary>Оглавление</summary>
<ol>
<li><a href="#project-description">Описание проекта</a></li>
<li><a href="#technologies">Стек технологий</a></li>
<li><a href="#installation">Установка и запуск приложения в локальном репозитории</a></li>
<li><a href="#establishing">Процесс создания</a></li>
<li><a href="#functionality">Функционал</a></li>
<li><a href="#team">Наша команда</a></li>
<li><a href="#progress">Статус проекта</a></li>
<li><a href="#feedback">Обратная связь</a></li>
</ol>
</details>
</a>
<a name="project-description"><h2>1. Описание проекта</h2></a>
Проект создается по заказу Анны Добкес - известного преподавателя испанского языка в Санкт-Петербурге, переводчика, сертифицированного гида. В конечной реализации он представляет собой приложение с регистрацией и авторизацией пользователей для приобретения онлайн-курсов, занятиями студентов в личном кабинете, заказом услуг перевода и экскурсий. Находится на этапе разработки в 3 ветках: <a href="https://github.com/elrouss/spanish-with-anna/tree/development">development</a>, а также <a href="https://github.com/elrouss/spanish-with-anna/tree/frontend">frontend</a> и <a href="https://github.com/elrouss/spanish-with-anna/tree/backend">backend</a> (подробнее о процессе работы - <a href="#establishing">ниже</a>).
<b>Ссылки на проект</b>
---
**Deploy**
<br>
**Frontend:** *появится позже*
<br>
**Backend:** *появится позже*
<b>Техническое задание:</b> https://docs.google.com/document/d/1ewrKErNPRKoIIg7E7H9IAvaD_E07nrKHrV8pREKWmdA/edit#heading=h.cp9sw0ch9syr
<br>
<b>Макет:</b> https://www.figma.com/file/r3wbGorv7dpmWZiUJS8j09/Spanish-courses_Espanol-con-Anna_ORIGINAL?type=design&node-id=1200-405&mode=dev
<br>
<div align="right">(<a href="#summary">к оглавлению</a>)</div>
<a name="technologies"><h2>2. Стек технологий</h2></a>
<span>
<img src="https://img.shields.io/badge/next.js-000000?style=for-the-badge&logo=nextdotjs&logoColor=white" alt="Иконка 'Next.js'">
<img src="https://img.shields.io/badge/JavaScript-323330?style=for-the-badge&logo=javascript&logoColor=F7DF1E" alt="Иконка 'JavaScript'">
<img src="https://img.shields.io/badge/Sass-CC6699?style=for-the-badge&logo=sass&logoColor=white" alt="Иконка 'Sass (SCSS)'">
<img src="https://img.shields.io/badge/HTML5-E34F26?style=for-the-badge&logo=html5&logoColor=white" alt="Иконка HTML5">
<img src="https://img.shields.io/badge/Django-092E20?style=for-the-badge&logo=django&logoColor=green" alt="Иконка Django">
<img src="https://img.shields.io/badge/Docker-2CA5E0?style=for-the-badge&logo=docker&logoColor=white" alt="Иконка Docker">
<img src="https://img.shields.io/badge/Python-FFD43B?style=for-the-badge&logo=python&logoColor=blue" alt="Иконка Python">
<img src="https://img.shields.io/badge/Postman-FF6C37?style=for-the-badge&logo=Postman&logoColor=white" alt="Иконка Postman">
<img src="https://img.shields.io/badge/Figma-F24E1E?style=for-the-badge&logo=figma&logoColor=white" alt="Иконка Figma">
</span>
<div align="right">(<a href="#summary">к оглавлению</a>)</div>
<a name="installation"><h2>3. Установка и запуск приложения в локальном репозитории</h2></a>
1. `git clone https://github.com/elrouss/spanish-with-anna.git` - клонировать репозиторий на свое устройство (HTTPS)
2. `git checkout -b development origin/development` - перейти в ветку разработки
3. **frontend:**
<br> 3. 1 `cd frontend` - перейти в папку frontend
<br> 3. 2 `npm i` - установить зависимости (предварительно проверить наличие Node.js командой `node -v`, а также - NPM командой `npm -v`; в случае необходимости скачать и установить Node.js по этой <a href="https://nodejs.org/en/download">ссылке</a>)
<br> 3. 3 `npm run dev` - запустить приложение и открыть в любом браузере по адресу `http://localhost:3000/`
6. **backend**:
<br> 4. 1 `cd backend` - перейти в папку backend
<br> 4. 2 скачать и установить Python по этой <a href="https://www.python.org/downloads/release/python-3110/">ссылке</a>
<br> 4. 3 `python -m venv venv` (для windows), `python3 -m venv venv` (для linux/macOS) - создать виртуальное окружение
<br> 4. 4 `source venv/Scripts/activate` активировать виртуальное окружение на Windows; `source venv/bin/activate` MacOS/Linux
<br> 4. 5 `pip install -r requirements.txt` установить зависимости
<br> 4. 6 `cd spanish_with_anna` - перейти в папку spanish_with_anna
<br> 4.7 в папке backend создайте файл `.env` по примеру `example.env`
<br> 4.8 `python manage.py makemigrations` - создать миграции
<br> 4.9 `python manage.py migrate` - применить миграции
<br> 4.9 `python manage.py runserver` - запустить приложение и открыть в любом браузере по адресу `http://127.0.0.1:8000/`
<br> 4.10 `http://127.0.0.1:8000/api/docs/` доступные эндпоинты
<div align="right">(<a href="#summary">к оглавлению</a>)</div>
<a name="establishing"><h2>4. Процесс создания</h2></a>
Работа выполнена в <b>несколько этапов</b> (каждый из них протестирован, выявленные баги - исправлены):
<br>
1. Верстка главной страницы на desktop с интерактивными элементами
2. Верстка форм регистрации, авторизации и обратной связи на десктоп с подключением серверной логики
<div align="right">(<a href="#summary">к оглавлению</a>)</div>
<a name="functionality"><h2>5. Функционал</h2></a>
- Интерактивные элементы:
- Выпадающее меню
- Карусель с рандомной генерацией карточек на основе сформированного массива данных
- Аккордеон
<div align="right">(<a href="#summary">к оглавлению</a>)</div>
<a name="team"><h2>6. Наша команда</h2></a>
<table>
<tbody>
<tr>
<td align="center" valign="top" width="14.28%"><img src="https://github.com/elrouss/spanish-with-anna/assets/108838349/7c7b71cd-e3c8-41ae-b163-63fe21e8f1ba" width="100px;" alt="Наталья Дангаева"/><br/><a href="https://github.com/Natarrada"><sub><b>Наталья Дангаева</b></sub></a><br/><sub>Project Manager</sub><br>💼</td>
<td align="center" valign="top" width="14.28%"><img src="https://avatars.githubusercontent.com/u/108838349?v=4" width="100px;" alt="Борис Зашляпин"/><br /><a href="https://github.com/elrouss"><sub><b>Борис Зашляпин</b></sub></a><br/><sub>TeamLead, Frontend</sub><br />👨💻</td>
<td align="center" valign="top" width="14.28%"><img src="https://avatars.githubusercontent.com/u/108974517?v=4" width="100px;" alt="Александр Товченников"/><br /><a href="https://github.com/yryryk"><sub><b>Александр Товченников</b></sub></a><br/><sub>Frontend</sub><br />👨💻</td>
<td align="center" valign="top" width="14.28%"><img src="https://avatars.githubusercontent.com/u/105106407?v=44" width="100px;" alt="Константин Филяев"/><br /><a href="https://github.com/uzornakovre"><sub><b>Константин Филяев</b></sub></a><br/><sub>Frontend</sub><br />👨💻</td>
<td align="center" valign="top" width="14.28%"><img src="https://avatars.githubusercontent.com/u/81865046?v=4" width="100px;" alt="Светлана Логвинова"/><br /><a href="https://github.com/SunnyInHouse"><sub><b>Светлана Логвинова</b></sub></a><br/><sub>Backend</sub><br />👩💻</td>
<td align="center" valign="top" width="14.28%"><img src="https://avatars.githubusercontent.com/u/108136952?v=4" width="100px;" alt="Ольга Мелихова"/><br /><a href="https://github.com/ApriCotBrain"><sub><b>Ольга Мелихова</b></sub></a><br/><sub>Backend</sub><br />👩💻</td>
<td align="center" valign="top" width="14.28%"><img src="https://github.com/elrouss/spanish-with-anna/assets/108838349/2f0351ee-7b5a-465d-95ee-69fb3a7a015a" width="100px;" alt="Кристина Колабышева"/><br /><a href="https://www.behance.net/kristina_kolabysheva"><sub><b>Кристина Колабышева</b></sub></a><br/><sub>UI/UX Designer</sub><br />🎨</td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><img src="https://github.com/elrouss/spanish-with-anna/assets/108838349/a6dbd08b-9055-462a-951e-5c54f1dbc61d" width="100px;" alt="Наталья Андреева"/><br /><a href="https://github.com/And0nata"><sub><b>Наталья Андреева</b></sub></a><br/><sub>Tester</sub><br />🐞</td>
<td align="center" valign="top" width="14.28%"><img src="https://github.com/elrouss/spanish-with-anna/assets/108838349/c3d8201f-ba32-4e3b-bce7-1948b4b86f2b" width="100px" alt="Ксения Абдуллина"/><br /><a href="https://github.com/Abdullina517"><sub><b>Ксения Абдуллина</b></sub></a><br/><sub>Tester</sub><br />🐞</td>
<td align="center" valign="top" width="14.28%"><img src="https://github.com/elrouss/spanish-with-anna/assets/108838349/999b5fa4-5af0-4335-9e00-ec89e1c63180" width="100px;" alt="Анастасия Пастернак"/><br /><a href="https://github.com/AnastasiaPasternak"><sub><b>Анастасия Пастернак</b></sub></a><br/><sub>Tester</sub><br />🐞</td>
</tr>
</tbody>
</table>
<div align="right">(<a href="#summary">к оглавлению</a>)</div>
<a name="progress"><h2>7. Статус проекта</h2></a>
В разработке
<div align="right">(<a href="#summary">к оглавлению</a>)</div>
<a name="feedback"><h2>8. Обратная связь</h2></a>
В случае выявления ошибок или предложений по улучшению нашего проекта просим создать <a href="https://github.com/elrouss/spanish-with-anna/issues">здесь</a> заметку с соответствующим тегом. Мы будем крайне признательны за любую обратную связь 🤗
<div align="right">(<a href="#summary">к оглавлению</a>)</div>
<div align="center">
<a href="https://elrouss.movies.nomoredomains.monster/">
<img width="700" alt="Карусель с отзывами о курсах Анны" src="https://github.com/elrouss/spanish-with-anna/assets/108838349/2bdd825e-1019-493f-9fd3-437559067aaf">
</a>
</div>
| Учебный портал для изучения испанского языка, заказа перевода текстов и получения экскурсионных услуг петербургского испаниста Анны Добкес (проект заморожен) | django,html5,javascript,python,scss,teamwork,figma,next-js,postman,docker | 2023-03-24T19:36:42Z | 2023-07-04T14:26:13Z | null | 8 | 59 | 16 | 63 | 0 | 10 | null | null | null |
wrappid/styles | main | ## REMOVE THIS - CREATED FOR WORKFLOW CHECK
# Styles
### Getting Started
- Create a New React Project
- Add .npmrc file with below content
```
//registry.npmjs.org/:_authToken=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
//npm.pkg.github.com/:_authToken=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
registry=https://npm.pkg.github.com/wrappid
```
- Install any npm package such as:
```
npm install redux
```
- Install app-magic-core
```
npm install @rxefy/app-magic-core@1.0.0
```
| null | css,javascript,cssinjs,mui,bootstrap,react-native-paper,wrappid,wrappid-styles | 2023-03-16T12:01:53Z | 2024-03-26T08:54:00Z | 2024-05-14T06:48:01Z | 17 | 44 | 437 | 14 | 1 | 10 | null | MIT | TypeScript |
zakarialaoui10/mapfun | main | |Langage|Problem|Solution|
|-|-|-|
|Javascript|||
|Python|||
The magic function called `mapfun`
# mapfun
- `mapfun` is a function that applies a mapping function to an infinite number of input elements, with options to skip certain elements and selectively apply the mapping to keys and/or values of objects.
- The `mapfun` function has been developed in JavaScript and Python, offering the same functionality in different programming languages.
- [Javascript](https://github.com/zakarialaoui10/mapfun/tree/main/Javascript#readme)
* [NPM](https://www.npmjs.com/package/mapfun)
- [Python](https://github.com/zakarialaoui10/mapfun/tree/main/Python#readme)
* [PyPI](https://pypi.org/project/mapfun/)
# Syntax
|Javascript|Python|
|-|-|
|`mapfun(callback,{},...args)`|`mapfun(callback,{},*args)`|
# Install
|Javascript|Python|
|-|-|
|`npm i mapfun`|`pip install mapfun`|
### Arguments
- `fun` : The mapping function that will be applied to each element in the input elements.</br>
- `...X` for javascripters or`*X` for pythonista :The elements to be mapped . </br>
- `{ skip , key , value }` : Object with three optional properties :
* `skip` : specifies the elements to skip during the mapping process.
* `key` : boolean flag indicating whether to apply the mapping function to the keys of objects or not. The default value is `false`
* `value` : boolean flag indicating whether to apply the mapping function to the values of objects or not. The default value is `true`
# Supported Datatypes
|Javascript|Support|Python|Support|
|---|-|---|-|
|`Number`|✅|`int`|✅|
|`String`|✅|`str`|✅|
|`Boolean`|✅|`Boolean`|✅|
|`Null`|✅|`float`|✅|
|`NaN`|✅|`None`|✅|
|`Undefined`|✅|`memoryview`|✅|
|`BigInt`|✅|`complex`|❌|
|`Array`|✅|`list`|✅|
|`Object`|✅|`object`|✅|
|`Map`|✅|`dict`|✅|
|`Set`|✅|`set`|✅|
|`WeakMap`|❌|`tuple`|✅|
|`WeakSet`|❌|`bytes`|✅|
|`ArrayBuffer`|✅|`bytearray`|✅|
|`Symbol`|❌|`range`|✅|
# Stats
|NPM|PYPI|
|-|-|
|||
|||
|||
# License
This projet is licensed under the terms of MIT License .<br>
<img src="https://img.shields.io/github/license/zakarialaoui10/zikojs?color=rgb%2820%2C21%2C169%29">
| mapfun is a function that applies a mapping function to an infinite number of input elements, with options to skip certain elements and selectively apply the mapping to keys and/or values of objects. The origin of this function traces back to zikojs | data,javascript,python,function,map,php,awesome | 2023-03-21T18:55:37Z | 2024-05-04T21:40:49Z | 2023-10-24T21:13:16Z | 2 | 1 | 390 | 1 | 1 | 10 | null | MIT | JavaScript |
Silent-Watcher/weather | master |
# Weather app
using the user's input and geographical location to collect weather information
<p dir="auto"><a href="https://github.com/sindresorhus/awesome"><img src="https://camo.githubusercontent.com/abb97269de2982c379cbc128bba93ba724d8822bfbe082737772bd4feb59cb54/68747470733a2f2f63646e2e7261776769742e636f6d2f73696e647265736f726875732f617765736f6d652f643733303566333864323966656437386661383536353265336136336531353464643865383832392f6d656469612f62616467652e737667" alt="Awesome" data-canonical-src="https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg" style="max-width: 100%;"></a> <a href="https://github.com/chetanraj/awesome-github-badges"><img src="https://camo.githubusercontent.com/ff817852f0d676a36eaa3108d380e0052e689d9e0bc3eb42818fb21008708420/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4d616465253230576974682d4c6f76652d6f72616e67652e737667" alt="Made With Love" data-canonical-src="https://img.shields.io/badge/Made%20With-Love-orange.svg" style="max-width: 100%;"></a></p>
## Overview

## Demo
### netlify
https://weatherdevwithapi.netlify.app/
### GitHub pages
https://silent-watcher.github.io/weather/
## Prerequisites
In order to run this project, you will need to have the following installed on your computer:
- nodejs
- yarn | npm
## Run Locally
Clone the project
```bash
git clone https://github.com/Silent-Watcher/weather
```
Go to the project directory
```bash
cd weather
```
Install dependencies
```bash
npm install
yarn
```
Start the server
```bash
npm run dev
yarn dev
```
## Acknowledgements
- [The build tool and development server.](https://vitejs.dev/)
- [ The weather data API used in the project.](https://openweathermap.org/api)
- [The package manager used in the project.](https://yarnpkg.com/)
## Feedback
If you have any feedback, please reach out to me at alitabatabaee20@gmail.com
## License
[MIT](https://choosealicense.com/licenses/mit/)
This project is licensed under the MIT License. See the LICENSE file for details.
<a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/6038c8f1fd8f60de75477470e5a87210e9256202e01dfba9986446304a0f0254/68747470733a2f2f63617073756c652d72656e6465722e76657263656c2e6170702f6170693f747970653d776176696e6726636f6c6f723d6772616469656e74266865696768743d36302673656374696f6e3d666f6f746572"><img src="https://camo.githubusercontent.com/6038c8f1fd8f60de75477470e5a87210e9256202e01dfba9986446304a0f0254/68747470733a2f2f63617073756c652d72656e6465722e76657263656c2e6170702f6170693f747970653d776176696e6726636f6c6f723d6772616469656e74266865696768743d36302673656374696f6e3d666f6f746572" data-canonical-src="https://capsule-render.vercel.app/api?type=waving&color=gradient&height=60&section=footer" style="max-width: 100%;"></a>
| The app displays the current weather conditions for a given location based on the user's input. | api,css,html5,javascript,openweathermap-api,scss,simple-project,vite,vitejs,weather | 2023-03-25T09:53:53Z | 2023-05-11T19:24:08Z | null | 1 | 1 | 39 | 0 | 0 | 10 | null | MIT | JavaScript |
federicaulzurrun/CapstoneModuleOne | main | # CapstoneModuleOne
# 📗 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)
- [📝 License](#license)
# 📖 [International Conference on Interdisciplinary Social Sciences] <a name="about-project"></a>
**Capstone** Is the project that i created for the International Conference on Interdisciplinary Social Sciences and thir future conference in july. The tample it's copied from a tamplate tha Microverse gave us.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
First i use HTML 5 thas it's markup languange used for structuring and presenting content on the WWW. Then i used CSS 3 that is used for structuring and styling web pages, especially flexbox and grid too.
### <a name="walkthrough" href= "https://www.loom.com/share/1c455f1443d441d1a63f73ff81078938">Project Walkthrough</a>
### Key Features <a name="key-features"></a>
- **NavBar** : contains the logo of organization and the hamburguer menu that takes you to diferent pages and sections of the main page.
- **Presentation** : Were you can see the basic information of the conferense
- **Page Development** : Where you can se the way that the conference will develop and the profesional talking.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🚀 Live Demo <a name="live-demo"></a>
- <a href="https://federicaulzurrun.github.io/CapstoneModuleOne/"> Visit the site!</a>
<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:
1. Have VScode instale, it's a code editor.
2. Have downloaded Git.
3. Have a minimum knowledge of css and html
4. Live server extension
5. Npm
6. Node
7. Flexbox
8. Bootstrap
### Setup
Clone this repository to your desired folder:
git clone https://github.com/federicaulzurrun/CapstoneModuleOne.git
### Install
Install this project linters: *do not change the any config file in any way* .
1 - Create a .github folder that contains the workflows folder (reulst will look like .github/workflows in your VSC), then add a copy of the following file linters.yml. This way you now have Lightouse installed
2 - To instal Webhint, if you are using Windows, you will need to initialize npm and create a package.json file, you can do that with the following command: npm init -y.
- 2.1 After that, you will have to run npm install --save-dev hint@7.x
- 2.2 Then, you have to create a .hintrc file and copy its content.
- 2.3 Run npx hint .
- 2.4 Fix your validations errors
3 - To install Stylelint to avoid errors and enforce conventions in styles.
- 3.1 Run npm install --save-dev stylelint@13.x stylelint-scss@3.x stylelint-config-standard@21.x stylelint-csstree-validator@1.x
- 3.2 Create a .stylelintrc.json file and copy its content.
- 3.3 Run npx stylelint "**/*.{css,scss}" on the root of your directory of your project.
- 3.4 Fix linter errors.
4- To install ESlint to avoid errors and enforce conventions in JavaScript.
- 4.1 Run npm install --save-dev eslint@7.x eslint-config-airbnb-base@14.x eslint-plugin-import@2.x babel-eslint@10.x
- 4.2 Create a .eslintrc.json file and copy its content.
- 4.3 Run npx stylelint "npx eslint ." on the root of your directory of your project.
- 4.4 Fix linter errors.
### Usage
To run the project, execute the following command:
```sh
Open Live Server
```
### Run tests
To run tests, run the following command:
```sh
To check the HTML functionality use: 'npx hint .'
```
```sh
To check the CSS functionality use: 'npx stylelint "**/*.{css,scss}"'
```
```sh
To check the JavaScript functionality use: 'npx eslint."'
```
### Deployment
You can deploy this project using:
```sh
GitHub pages.
```
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 👥 Author <a name="authors"></a>
👤 **Federica Ulzurrun**
- GitHub: [@federicaulzurrun](https://github.com/federicaulzurrun)
- Twitter: [@ulzurrunfede](https://mobile.twitter.com/ulzurrunfede)
- LinkedIn: [Federica Ulzurrun](https://www.linkedin.com/in/federica-ulzurrun-293a86198)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
- **-Making the page more responsive** : Adding more than 1 breaking point.
<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 let me know via twitter ! and i'll follow you!
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank International Conference on Interdisciplinary Social Sciences for allowing me to use their information to create this page and to trust me with this project for their future conference.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 📝 License <a name="license"></a>
This project is [MIT](./LICENSE) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
=======
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| This full responsive web project showcases the 18th International Conference on Interdisciplinary Social Sciences, including information about the event's speakers, location, and date. | css,html,javascript,mit-license | 2023-03-13T22:40:59Z | 2023-03-20T22:51:57Z | null | 1 | 2 | 31 | 1 | 0 | 10 | null | MIT | CSS |
JonnyDawe/arcgis-animate-markers-plugin | main | <p align="center">
<img width="180" src="https://i.imgur.com/qq9rtY2.png" alt="plugin logo">
</p>
[](https://codecov.io/gh/JonnyDawe/arcgis-animate-markers-plugin)

# arcgis-animate-markers-plugin
A JavaScript plugin library for animating symbols in the ArcGIS Maps SDK using spring-like physics. With this library, you can animate marker symbol properties such as scale and rotation to create engaging, dynamic and interactive maps!

## Examples
- [Live Demo](https://jonnydawe.github.io/Arcgis-Animate-Markers/)
- [Demo Repo](https://github.com/JonnyDawe/Arcgis-Animate-Markers)
## Getting Started
### Prerequisites
To use this plugin library, you need to have the following peer dependencies installed:
`ArcGIS Maps SDK for JavaScript`
### Installation
To begin, you will need to install `arcgis-animate-markers-plugin`:
```console
npm install arcgis-animate-markers-plugin
```
First create a `SymbolAnimationManager` to handle the behaviour of adding and removing animated graphics from the layerview.
```js
import { SymbolAnimationManager } from "arcgis-animate-markers-plugin";
const symbolAnimationManager = new SymbolAnimationManager({
mapView,
layerView,
});
```
The animation manager for the layerview can be used to create and manage animatable marker symbols. You can create an animatable graphic symbol using the `makeAnimatableSymbol` method and start the animation using the `symbolAnimation.start` method as shown below:
```js
const animatedGraphic = this.symbolAnimationManager.makeAnimatableSymbol({
// the graphic to be animated
graphic: hitGraphic,
// animation transition properties
easingConfig: {
type: "spring",
options: {
stiffness: 280,
damping: 40,
mass: 10,
},
},
});
animatedGraphic.symbolAnimation.start({
to: { scale: 1.2, rotate: 10, opacity: 0.5 },
});
```
# Documentation:
### Class: `SymbolAnimationManager`
```js
import { SymbolAnimationManager } from "arcgis-animate-markers-plugin";
const symbolAnimationManager = new SymbolAnimationManager({
mapView,
layerView,
});
```
### Options
#### mapView _`required`_
The MapView associated with the LayerView that will have its point symbols animated.
#### layerView _`required`_
The AnimatableLayerView ( FeatureLayerView / GraphicsLayerView / GeoJSONLayerView) that will be animated.
> **Note**
>
> - If the AnimatableLayerView is a GraphicsLayer, then the symbols will be modified directly. Any new animated graphics not already in the layer must be added as an overlay.
> - If the layer is of any other animatable type, a new graphics layer will be added on top of the parent layer in order to animate symbols. The symbols from the parent layer will be hidden using a feature effect.
### Methods
#### makeAnimatableSymbol
Makes the given graphic animatable.
```js
makeAnimatableSymbol({ graphic, easingConfig, isOverlay, animationId, opacity }: { graphic: __esri.Graphic; easingConfig?: AnimationEasingConfig; isOverlay?: boolean; animationId?: string; opacity?: number;}): IAnimatedGraphic
```
##### graphic _`required`_
- The graphic to be animated.
##### easingConfig _`optional`_
- The easingConfig parameter specifies the easing function used for the animation. Either a Spring or standard easing type can be used:
```js
// Example - Spring Easing.
const spring = {
type: "spring",
options: {
stiffness: 280,
damping: 40,
mass: 10
}
}
// Example - Standard Easing.
const spring = {
type: "easing",
options: {
easingFunction: "linear" // "easeInCubic"|"easeOutCubic"| etc.
duration: number;
}
}
```
##### isOverlay _`optional`_
The isOverlay parameter is an optional boolean value that specifies whether the graphic should be an overlay - this means the original (non-aniamted) symbol will not be hidden from the mapView.
##### animationId _`optional`_
The animationId parameter is an optional string value that specifies the ID of the animation. If an animated graphic with the same graphic and animationId already exists, it is returned instead of creating a new one.
##### opacity _`optional`_
The opacity parameter is an optional number value between 0 and 1 that specifies the initial opacity at which to create the animated symbol. If not specified, the opacity will match that of the parent layer.
> **Note**
>
> - opacity is only supported for simple marker and picture symbols.
##### Animated Graphic _`returns`_
An animated Graphic extends the standard esri graphic. It has a new property called `symbolAnimation` that contains methods and properties for running symbol animations.
#### hasAnimatedGraphic
Checks if an animated graphic with the given graphic or animationId already exists.
```js
hasAnimatedGraphic({ graphic, animationId }: { graphic?: __esri.Graphic; animationId?: string }):
boolean
```
#### getAnimatedGraphic
returns the animated graphic with the given graphic and animationId, if it exists.
```js
getAnimatedGraphic({ graphic, animationId }: { graphic?: __esri.Graphic; animationId?: string }): IAnimatedGraphic | undefined
```
#### getAllAnimatedGraphics
returns all animated graphics.
```js
getAllAnimatedGraphics(): IAnimatedGraphic[]
```
#### removeAnimatedGraphic
Removes the given graphic from the animated graphics.
```js
removeAnimatedGraphic({ graphic }: { graphic: __esri.Graphic }): void
```
#### removeAllAnimatedGraphics
Removes all animated graphics from display.
```js
removeAllAnimatedGraphics(): void
```
### Class: `AnimatedSymbol`
This class provides the ability to animate a symbol for a Graphic object in ArcGIS API for JavaScript.
### Factory function:
Creates an AnimatedSymbol and attaches it to the provided Graphic.
```js
static createAnimatedGraphic({
graphic,
easingConfig,
id,
isOverlay = false,
opacity = 1
}: {
graphic: __esri.Graphic;
easingConfig: AnimationEasingConfig;
id: string;
isOverlay?: boolean;
opacity?: number
}): IAnimatedGraphic
```
#### Parameters
- graphic _`required`_: The Graphic to animate the symbol for.
- easingConfig _`required`_: [Configuration options](#####-easingConfig) for the animation easing.
- id (string) _`required`_: Unique identifier for the animated symbol.
- isOverlay (boolean) _`optional`_: Whether the animation should be displayed as an overlay. `Default is false.`
#### Returns
An animated Graphic that extends the standard esri graphic. It has a new property called `symbolAnimation` which contains the `AnimatedSymbol` Class properties and methods.
### Methods
#### start
This function animates a symbol by applying changes to its properties. The animation is controlled by an easing function or a spring value.
```js
start(animationProps: IAnimationProps)
```
- `animationProps` _`optional`_ [IAnimationProps](####-IAnimationProps): An object that is used to configure and control the animation of a symbol object.
#### stop
Stops the animation completely
```js
stop();
```
#### resetSymbol
Reset the symbol completely to its original symbol. If there is an animation currently running then this will also be stopped.
```js
resetSymbol();
```
### Types:
#### IAnimatedGraphic
An animated Graphic that extends the standard esri graphic. It has a new property called `symbolAnimation` which contains the `AnimatedSymbol` Class properties and methods.
```typescript
interface IAnimatedGraphic extends __esri.Graphic {
symbolAnimation: AnimatedSymbol;
}
```
#### IAnimationProps
The IAnimationProps interface defines the properties that can be used to configure an animation. It has the following optional properties:
```typescript
interface IAnimationProps {
to?: IAnimatableSymbolProps;
onStep?: onSymbolAnimationStep<AnimatableSymbol>;
onStart?: () => void;
onFinish?: () => void;
}
```
- `to` _`optional`_ [IAnimatableSymbolProps](####-IAnimationProps): An object that holds the properties that the symbol will animate to.
- `onStep` _`optional`_ [onSymbolAnimationStep](####-onSymbolAnimationStep): An optional callback function for customising the symbol change on each animation step. On each step the applied symbol will be applied to the animating graphic.
- `onStart` _`optional`_: an optional callback function that is called when the animation starts.
- `onFinish` _`optional`_: an optional callback function that is called when the animation finishes.
#### IAnimatableSymbolProps
The IAnimatableSymbolProps interface defines the properties that can be animated for a symbol. It has the following optional properties:
```typescript
interface IAnimatableSymbolProps {
scale?: number;
rotate?: number;
opacity?: number; // range 0 to 1
}
```
- `scale` _`optional`_ (number): A number that represents the new scale of the symbol. If not provided, the scale will not change.
- `rotate` _`optional`_ (number) : A number that represents the new geographic rotation (rotation clockwise) of the symbol in degrees . If not provided, the rotation will not change.
- `opacity` _`optional`_ (number) : A number that represents the new opacity of the symbol. If not provided, the opacity will not change.
#### onSymbolAnimationStep
The onSymbolAnimationStep type defines a callback function that is called on each animation step.
```typescript
type onSymbolAnimationStep<T extends AnimatableSymbol> = (
progress: number,
fromSymbol: SymbolType<T>,
to: IAnimatableSymbolProps
) => SymbolType<T>;
```
- `progress`: number: A number between 0 and 1 that represents the current progress of the animation.
- `fromSymbol`: A symbol object that represents the starting symbol before the animation.
- `to`: [IAnimatableSymbolProps](####-IAnimatableSymbolProps): An object that holds the properties that the symbol will animate to.
#### AnimationEasingConfig
A union type that defines the configuration for the easing function used in the animation. It can be one of the following:
```typescript
type AnimationEasingConfig = ISpringEasingConfig | IStandardEasingConfig;
```
#### ISpringEasingConfig
An interface that defines the configuration for the spring easing function. It has the following properties:
```typescript
interface ISpringEasingConfig {
type: "spring";
options: SpringConfig;
}
```
- `type` ("spring"): A string that identifies the easing function as a spring.
- `options`: SpringConfig: An object that holds the animation configuration for the spring, properties such stiffness and damping.
#### IStandardEasingConfig
An interface that defines the configuration for a standard easing function. It has the following properties:
```typescript
export interface IStandardEasingConfig {
type: "easing";
options?: {
easingFunction: easingTypes | EasingFunction;
duration: number;
};
}
```
- `type` ("easing"): A string that identifies the easing function as a standard easing function.
- `options`: An optional object that holds the animation configuration. It has two properties:
- `easingFunction` (easingTypes | EasingFunction): The easing function to use for the animation. It can be one of the predefined easing function strings in the easingTypes type or a custom easing function. The default is "linear".
- `duration` (number): The duration of the animation in milliseconds. The default is 1000.
| A JavaScript plugin library for animating symbols in the ArcGIS Maps SDK using spring-like physics. | animation,arcgis,arcgis-js-api,javascript,typescript | 2023-03-16T09:33:56Z | 2023-11-17T19:49:14Z | 2023-11-17T19:36:30Z | 1 | 7 | 68 | 2 | 0 | 10 | null | MIT | TypeScript |
ahmed5939/leach-bot | main | # 🤖 Fortnite STW Leach-Bot 🎮
---
## What is this? 🤔
Welcome to the world of the Fortnite STW Leach-Bot, your new best friend in gaming! 🌟 This clever little bot is like a ninja 🥷 - it sneakily joins your lobby, hangs out for a bit, and then poof! It disappears after a set time. It's perfect for those who need a leech or taxi bot in Fortnite. No more solo missions! 🎉
## Futures (No, not the stock market kind!) 🚀
- [x] Auto join (like a boss!)
- [x] Auto leave (sneaky exit!)
- [x] Auto accept friend request (making friends has never been easier!)
- [x] Advanced queue system (because waiting in line is so 2020)
- [x] Customizable join and leave messages (say it with style! 💬)
- [x] Customizable idle and busy status (like your own away message!)
- [x] Customizable time before leaving (because timing is everything!)
## Version 📦
- [x] 1.1.0 (Now with more awesomeness!)
## How to use? 🛠️
1. Download the files (the treasure! 🏴☠️)
2. Install the prerequisite (the magic potion! 🧪)
3. Tweak the config.json file (customize it like your favorite pizza 🍕)
4. Run the bot (let the games begin! 🎲)
5. Enjoy (and dominate! 😎)
## Prerequisite (The Secret Sauce) 🌟
- [Node.js](https://nodejs.org/en/) (The backbone of our bot!)
## Starting The Bot 🚀
To get this party started:
```
npm i
```
And to launch our robotic superstar:
```
npm start
```
## Customizations (Make it Yours!) ✨
Get creative and edit the config.json file:
```json
{
"idle_status": "Chilling", // 🛌
"busy_status": "On a Mission", // 🎯
"time_before_leave": 2, // in minutes ⏰
"join_message": "What's up, gamers!", // 👋
"leave_message": "Adios, amigos!" // 👋
}
```
## Support (We've Got Your Back!) 💪
Need help with your new bot buddy? Hit us up:
- 🐦 [Twitter](https://twitter.com/ahmadsabir11)
- 🎧 [Discord](https://discord.com/invite/yNjT8xr3eG)
## License (The Official Stuff) 📜
GNU General Public License v3.0
Copyright (c) 2023 Ahmed
| a leach bot for fortinte stw | fnbrjs,fortnite,fortnite-bot,javascript,bot | 2023-03-18T01:07:54Z | 2023-12-11T23:15:08Z | null | 1 | 0 | 17 | 0 | 0 | 10 | null | GPL-3.0 | JavaScript |
Nyumat/TalkToBeavs | deploy | [](https://talktobeavs.onrender.com/)
# TalkToBeavs 🦫
<p align="left">
<img width="70" height="20" src="https://badges.aleen42.com/src/react.svg">
<img width="70" height="20" src="https://badges.aleen42.com/src/redux.svg">
<img width="70" height="20" src="https://badges.aleen42.com/src/node.svg">
<img width="90" height="20" src="https://badges.aleen42.com/src/javascript.svg">
<img width="100" height="20" src="https://badges.aleen42.com/src/react-router.svg">
<img width="70" height="20" src="https://badges.aleen42.com/src/vitejs.svg">
</p>
TalkToBeavs is a real-time chat application that allows users to communicate with each other through text, audio, and video. It is limited to Oregon State University students and faculty, but provides a fun and easy way to connect with other Beavers! Check it out <a href="https://talktobeavs.onrender.com">here.</a> 🚀
# Getting Started
## How to run the project locally:
1. Clone the repository
2. Install dependencies
3. Get environment variables
4. Run the project
### 1. Clone the repository
```bash
git clone https://github.com/Nyumat/TalkToBeavs.git
```
### 2. Install the dependencies
```bash
cd TalkToBeavs/frontend
npm install # or yarn, pnpm, etc.
cd ..
npm install
```
### 3. Set the environment variables
> Note: You will need to create a MongoDB database and a Giphy API key.
<b>Frontend:</b>
```bash
# Create a .env file in root of the frontend directory
VITE_APP_PROD_BACKEND_URL="http://localhost:[PORT BACKEND IS RUNNING ON]"
```
<b>Backend:</b>
```bash
# Create a .env.local file in the root directory
touch .env.local
# Your .env.local file should look like this:
PORT=
MONGODB_URI=
FEED_ID=
JWT_PRIVATE_KEY=
GIPHY_API_KEY=
# Don't forget to add your own values!
```
### 4. Run the project
```bash
# Run the frontend
cd frontend
npm run dev
# Open a new terminal window and run the backend
cd TalkToBeavs (root directory)
npm run dev
```
## TalkToBeavs is proud to be built with:
- [React](https://react.dev/)
- JavaScript library for building user interfaces
- [MongoDB](https://www.mongodb.com/)
- NoSQL document database
- [Vite](https://vitejs.dev/)
- Build tool for frontend development
- [Socket.io](https://socket.io/)
- Real-time communication between client and server
- [Redux Toolkit](https://redux-toolkit.js.org/)
- Flux-like state management library
- [Express](https://expressjs.com/)
- Web application framework for Node.js
- [WebRTC](https://webrtc.org/)
- Peer-to-peer video and audio communication in the browser
- [Chakra UI](https://chakra-ui.com/)
- Simple, modular, and accessible component library
- [React Router](https://reactrouter.com/)
- Declarative routing for React
- [Giphy API](https://developers.giphy.com/)
- API for searching and retrieving GIFs
| Omegle, but built exclusively for Oregon State University students. Oh, and a whole lot safer. | express,javascript,mongodb,react,socket-io,webrtc,oregon-state-university | 2023-03-19T04:05:51Z | 2023-12-31T05:15:04Z | null | 4 | 40 | 76 | 1 | 0 | 10 | null | MIT | JavaScript |
ogunec/hotel-booking | main | # Getting Started with Create React App
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
## Screenshots
This is our Homepage.

This is our login page.

This is our rezervation page.

This is our my rezervation page.

This is our about us page.

This is our about us content.

This is our contact page.

I will add new features to this project, which I created in order to reinforce what I learned during my .NET learning process.
## 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)
| A hotel reservation application where users can get information about the hotel, filter rooms, make reservations and payments. | context-api,css,hooks,javascript,mui,react,reactjs,ogunec | 2023-03-24T16:26:48Z | 2023-03-24T18:54:51Z | null | 1 | 0 | 3 | 0 | 1 | 10 | null | null | JavaScript |
MussieTeka/Awesome-Books | main | # 📗 Table of Contents
- [📗 Table of Contents](#-table-of-contents)
- [🛠️ 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)
- [👥 Author ](#-author-)
- [🔭 Future Features ](#-future-features-)
- [🤝 Contributing ](#-contributing-)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgments ](#-acknowledgments-)
- [❓ FAQ (OPTIONAL)](#faq)
- [📝 License ](#-license-)
# 📖 Awesome-books <a name="about-project"></a>
This is my Awesome-books Project. In which , all of books details are available.
## 🛠️ Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
HTML | CSS
<!-- Features -->
### Key Features <a name="key-features"></a>
> My Project Links
> Details of my self
> Contact avaiable
> Animation and Transition
<!-- LIVE DEMO -->
## 🚀 Live Demo <a name="live-demo"></a>
> <a href="" >Visit</a>
<!-- 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 needs:
A GitHub | A code editor | A web browser
### Install
Install all project dependencies by running the command below
`$ npm install`
And run `npm start` to launch the project.
### Setup
Clone this repository to your desired folder:
`git clone https://github.com/MussieTeka/Awesome-Books.git`
### Usage
To run the project, open index.html with your preferred web browser or open it with a live server from your code editor
### Run tests
No tests
### Deployment
You can deploy this project using:
Get a hosting website and give all of the github files
<!-- AUTHORS -->
## 👥 Author <a name="author"></a>
👤 **Mussie Teka**
- GitHub: [@mussieteka](https://github.com/MussieTeka)
- Twitter: [@mussieteka](https://twitter.com/mussieteka)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/mussieteka/)
👤**Joseck Osugo**
- GitHub: [0sugo](https://github.com/0sugo)
- Twitter: [@0sugo5](https://twitter.com/osugo5)
- LinkedIn: [Joseck Osugo](https://www.linkedin.com/in/joseck-osugo-873b0618a/)
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
> Add animations and transformations to make the site more interactive.
<!-- CONTRIBUTING -->
## 🤝 Contributing <a name="contributing"></a>
Feel free to check [issues page](https://github.com/MussieTeka/Awesome-Books/issues).
## ⭐️ Show your support <a name="support"></a>
If you like this project please leave a ⭐️
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
Thanks Microverse, learn how to code > [Join Microverse](https://www.microverse.org/?grsf=9m3hq6)
Thanks to all collaborators for making this happen.
## 📝 License <a name="license"></a>
This project is [MIT](./LICENSE) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| This is a JavaScript project that allows users to add and remove books to a list using a form. It also includes event listeners to display other sections on the webpage. | css,html,javascript | 2023-03-21T07:53:40Z | 2023-04-01T15:11:04Z | null | 2 | 5 | 31 | 0 | 0 | 10 | null | MIT | JavaScript |
seyioyemade/awesome-books | 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)
- [❓ FAQ (OPTIONAL)](#faq)
- [📝 License](#license)
# 📖 AWESOME BOOKS <a name="about-project"></a>
- This project is called AWESOME BOOKS. It is a web application where books names and their authors can be added, removed and displayed. The data is stored in local storage, and single page application is implemented.
## 🛠 Built With <a name="HTML and CSS and JS"></a>
### Tech Stack <a name="Front end (Javascript)"></a>
- This is a mobile and desktop browser responsive website.
Client
- HTML, CSS, JS
- No Frameworks
- Technologies Used- HTML, CSS, JS, GIT, Linters (GitHub Actions, Lighthouse, Webhint, Stylelint)
### Key Features <a name="key-features"></a>
- *A user can add book details*
- *A user can remove book details*
- *Data is stored in local storage*
- *Data can be retrieved from local storage*
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🚀 Live Demo <a name="live-demo"></a>
- [Live Demo Link](https://seyioyemade.github.io/awesome-books)
<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:
- Git
- An IDE (VsCode, Atom, etc)
### Setup
Clone this repository to your desired folder:
- git clone https://github.com/seyioyemade/awesome-books.git
- cd AWESOME BOOKS
### Install
Install this project with:
- npm Install
## 👥 Authors <a name="authors"></a>
👤 **Seyi Oyemade**
- GitHub: [@seyioyemade](https://github.com/seyioyemade)
- Twitter: [@seyi_oyemade](https://twitter.com/@seyi_oyemade)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/seyi-oyemade-523ab1142/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
- Improve the UI.
<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/seyioyemade/awesome-books/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, please give it a star, and if you would love to tell me ways to improve it, contact me on LinkedIn or Twitter. It will be a pleasure to hear from you.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🙏 Acknowledgments <a name="acknowledgements"></a>
- I would like to thank [Microverse](https://www.microverse.org/) for giving this opportunity to learn.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 📝 License <a name="license"></a>
This project is [MIT](./LICENSE) licensed. | Awesome Books is a single page application (SPA) where users can keep track of books' names and their authors. Users can add, remove, store and retrieve data from local storage, and display information about a book in the application. Built with JavaScript, CSS and HTML | javascript,css,html | 2023-03-20T12:03:03Z | 2023-04-04T05:53:00Z | null | 1 | 3 | 24 | 0 | 1 | 9 | null | GPL-3.0 | JavaScript |
Benawi/Portifolio-Microverese | master | <a name="readme-top"></a>
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#triangular_flag_on_post-deployment)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [❓ FAQ (OPTIONAL)](#faq)
- [📝 License](#license)
# 📖 Portifolio Microverse! project <a name="about-project"></a>
Portifolio Microverse! project is a repository consisting of the following files:
- HTML file (index.html)
- CSS file (styles.css)
- HTML and CSS linters file
The repository also contains files for setting up linters and validators.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>Client</summary>
<ul>
<li><a href="https://microverse.notion.site/HTML-CSS-Get-a-head-start-275eb85fd34b4416aa06ec635d69cdaf">HTML</a></li>
<li><a href="https://microverse.notion.site/HTML-CSS-Get-a-head-start-275eb85fd34b4416aa06ec635d69cdaf">CSS</a></li>
<li><a href="https://microverse.notion.site/HTML-CSS-Get-a-head-start-275eb85fd34b4416aa06ec635d69cdaf">JS</a></li>
</ul>
</details>
### Key Features <a name="key-features"></a>
- When the user clicks (or taps) the hamburger button, the mobile menu appears.
- When the user clicks (or taps) the close (X) button, the mobile menu disappears.
- When the user clicks (or taps) any of the mobile menu options, the mobile menu disappears.
- When the user clicks (or taps) any of the mobile menu options, a correct part of the page is displayed.
- When the user clicks (or taps) the button to check project details, the popup with details about the project appears.
- When the user clicks (or taps) the close (X) button, the popup disappears.
- A JavaScript array used to store all of the information of all project cards.
- For each project the following pieces of data: name, description, featured image, technologies, link to live version, link to source stored in a JavaScript object.
- The recent work section is created when the page loads because the components are created dynamically using the information stored in that JavaScript.
- Popups(Modal) Implemented for both mobile and desktop screen sizes.
- I try to stick pages to the design as much as possible using [the templates 3 in Figma]
- The content of the email field will be validated
- When the user submits the form, it checks, whether the email is in lowercase or not.
- If the validation is OK, the form will be sent.
- If the validation is not OK, it shows an error message to the user near the submit button informing that the error and the form is not sent.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🚀 Live Demo <a name="live-demo"></a>
- [Live Demo](https://benawi.github.io/Portifolio-Microverese/)
<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.
### Setup
Clone this repository to your desired folder:
> cd my-folder
> git clone git@github.com:myaccount/my-project.git
### Prerequisites
In order to run this project you need:
- GitHub account;
- git installed on your OS.
### Install
> https://github.com/microverseinc/linters-config/tree/master/html-css-js
- Installations required to run this project:
### Webhint installation.
- Run the following command:
> npm install --save-dev hint@7.x
### Stylelint installation.
- Run the following command:
> npm install --save-dev stylelint@13.x stylelint-scss@3.x stylelint-config-standard@21.x stylelint-csstree-validator@1.x
### ESLint
- Run
> npm install --save-dev eslint@7.x eslint-config-airbnb-base@14.x eslint-plugin-import@2.x babel-eslint@10.x
### Usage
You can use this project by cloning it to your folder and changing index.html and styles.css files.
### Run tests
To run tests, run the following commands:
> npx hint .
> npx stylelint "**/*.{css,scss}"
### Deployment
You can deploy this project adding new lines of code to index.html and styles.css files.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 👥 Authors <a name="authors"></a>
👤 Habtamu Alemayehu
- GitHub: [@bena](https://github.com/Benawi)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
For tthe second milestone in building this portfolio website, it will create the mobile website section where you will list your portfolio projects.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🤝 Contributing <a name="contributing"></a>
Contributions, issues, and feature requests are welcome!
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ⭐️ Show your support <a name="support"></a>
Give me ⭐️ If you like this project!
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank Microverse program for providing me this great chance.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ❓ FAQ (OPTIONAL) <a name="faq"></a>
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 📝 License <a name="license"></a>
This project is [MIT](./MIT.md) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| Portfolio: setup and mobile first : My portfolio project built with HTML, CSS, | css,html,linters,javascript | 2023-03-23T11:53:46Z | 2024-04-29T11:59:57Z | null | 5 | 19 | 218 | 0 | 0 | 9 | null | null | JavaScript |
boywithkeyboard/fluent-emoji | dev | null | 🥰 A React library for Microsoft's FluentUI Emoji. | emojis,fluentui-emoji,javascript,microsoft,react,typescript,emoji | 2023-03-20T17:56:01Z | 2023-05-10T16:40:10Z | 2023-03-26T13:36:56Z | 2 | 13 | 36 | 0 | 1 | 9 | null | Apache-2.0 | TypeScript |
khanjanov/arctic-monkeys | master | null | music band website | aos-animation,html5,javascript,nodejs,scss | 2023-03-13T22:09:53Z | 2023-03-19T01:25:53Z | null | 1 | 0 | 6 | 0 | 1 | 9 | null | null | HTML |
JeffersonRPM/aula-SIDC7-IFSP-front-end | main | # Aula Sistemas Distribuídos
### **Nessa aula usaremos o React App como base**
* Create React App é um ambiente confortável para aprender React, e é a melhor maneira de começar um single-page application em React. npx na primeira linha não é erro de digitação — é um package runner que vem com npm 5.2+. Create React App não lida com lógica de backend nem banco de dados.
# Primeiro passo
* Abrir o prompt de comando `CMD` e digitar as seguintes linhas:
```
npx create-react-app (nome pasta)
```
```
cd (pasta)
```
```
npm start
```
### Exemplo:
* `cd Documentos`
* `npx create-react-app loja`
* `cd loja`
* `npm start`
| Aula de Sistemas Distribuídos - IFSP - Front-end | Objetivo: Criar uma loja. | html,javascript,react-bootstrap,react-components,react-hooks,react-router,react-router-dom,reactjs | 2023-03-17T18:28:09Z | 2023-05-21T22:14:07Z | null | 1 | 6 | 19 | 0 | 0 | 9 | null | null | JavaScript |
AliShahSafdari/Portfolio | 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)
- [❓ FAQ (OPTIONAL)](#faq)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
# 📖 [Ali's portfolio website] <a name="about-project"></a>
> This is my second Microverse Project. It is based on how to build my portfolio and make it responsive to various devices
**[Ali's portfolio website]** is a website that is used to test for responsiveness to mobile devices
## 🛠 Built With <a name="HTML and CSS"></a>
### Tech Stack <a name="Front end"></a>
> This is a desk-top browser website.
<details>
<summary>Client</summary>
<ul>
<li><a href="#">HTML</a></li>
<li><a href="#">CSS</a></li>
<li><a href="#">JS</a></li>
</ul>
</details>
<!-- Features -->
### Key Features
- **[It has a header for navigation]**
- **[There is a headline section to know more about me and click on the links to connect with me directly]**
- **[There is a works section to display my recent works]**
- **[There is a skills section to showcase the skills I have in terms of programming]**
- **[There is a form section to write me directly about any questions]**
- **[The portfolio is mobile and desktop responsive]**
- **[There is a pop-up window for when you click on the see project button]**
- **[There is form validation for all input fields]**
- **[Data are stored in local storage]**
<!-- LIVE DEMO -->
## 🚀 Live Demo <a name="#"></a>
- [Live Demo Link](https://alishahsafdari.github.io/Portfolio/)
<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:
- A browser that supports html5 and css3
### Setup
Clone this repository to your desired folder:
Example commands:
```sh
cd my-folder
git clone git@github.com:AliShahSafdari/Protfolio.git
```
-
### Install
Install this project with:
- Clone the code into your machine and run test in an editor of your choice(E.g VScode).
### Usage
Opening the index.html with your browser
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Author <a name="authors">Ali Shah Safdari</a>
👤 **Ali Shah Safdari**
- GitHub: [@AliShahSafdari](https://github.com/AliShahSafdari)
- Twitter: [@AlishahSafdari](https://twitter.com/AlishahSafdari)
- LinkedIn: [@ali-shah-safdari-010541215](https://www.linkedin.com/in/alishahsafdari/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- [ ] **[Integrate more dynamic styles with css frameworks]**
- [ ] **[Develop a database to store information from people who sends information via email]**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🤝 Contributing <a name="contributing"></a>
Feel free to check the [issues page](https://github.com/AliShahSafdari/Protfolio/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 or would love to tell me ways to improve it, contact me on LinkedIn or Twitter. It will be a pleasure to hear from you and maybe collaborate on more projects.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank Microverse community for this opportunity to learn new things.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FAQ (optional) -->
## 📝 License <a name="license"></a>
This project is [MIT](LICENSE) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| portfolio website is one of the most powerful tools in the web development world; it’s the easiest way of showing what you’re truly capable of as a developer and is the quick and best way for recruiters and hiring managers to get an idea of what you can bring to their teams and features. | css,html,javascript | 2023-03-23T04:59:41Z | 2023-10-27T16:40:38Z | null | 4 | 10 | 92 | 5 | 4 | 9 | null | MIT | CSS |
Silent-Watcher/Github-search-users | master |
# GitHub User Search Web Project
This is a web project that allows users to search and find GitHub users using the GitHub API. The project is built with HTML, CSS, JavaScript, and Vite as the bundler. Yarn is used as the package manager.
## Table of Contents
- [Features](https://github.com/Silent-Watcher/Github-search-users#features)
- [demo](https://github.com/Silent-Watcher/Github-search-users#demo)
- [Prerequisites](https://github.com/Silent-Watcher/Github-search-users#Prerequisites)
- [Installation](https://github.com/Silent-Watcher/Github-search-users#Installation)
- [usage](https://github.com/Silent-Watcher/Github-search-users#usage)
- [Deployment](https://github.com/Silent-Watcher/Github-search-users#deployment)
- [Screenshots](https://github.com/Silent-Watcher/Github-search-users#Screenshots)
- [Acknowledgements](https://github.com/Silent-Watcher/Github-search-users#Acknowledgements)
- [Feedback](https://github.com/Silent-Watcher/Github-search-users#Feedback)
- [License](https://github.com/Silent-Watcher/Github-search-users#License)
## Features
- User can enter a GitHub username in the search bar and see a list of matching users.
- User can click on a username in the list to see more details about that user.
- User can see the user's name, avatar and the number of followers and following.
- User can see the user's repositories with the repository
- User can click on a repository name to go to that repository on GitHub.
## Demo
https://github-search-users-dev.netlify.app/
## Prerequisites
In order to run this project, you will need to have the following installed on your computer:
- nodejs
- yarn | npm
## Installation
To install the application, follow these steps:
1. Clone the repository to your local machine:
```bash
git clone https://github.com/Silent-Watcher/Github-search-users
```
2. Navigate to the project directory in your terminal.
```bash
cd Github-search-users
```
3. Run `yarn` to install the necessary packages.
```bash
yarn
```
## usage
To start the application, run `yarn dev`. This will start the application on `http://localhost:5173`.
```bash
yarn dev
```
## Deployment
To deploy the application, follow these steps:
1. Create an account on Netlify.
2. Create a new site in Netlify.
3. Link the site to your GitHub repository.
4. Set the build command to `yarn build`.
5. Set the publish directory to `dist`.
6. Deploy the site.
## Screenshots

## Acknowledgements
- [The build tool and development server.](https://vitejs.dev/)
- [ The API used in the project.](https://api.github.com)
- [The package manager used in the project.](https://yarnpkg.com/)
## Feedback
If you have any feedback, please reach out to us at alitabatabaee20@gmail.com
## License
[MIT](https://choosealicense.com/licenses/mit/)
This project is licensed under the MIT License. See the LICENSE file for details.
<a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/6038c8f1fd8f60de75477470e5a87210e9256202e01dfba9986446304a0f0254/68747470733a2f2f63617073756c652d72656e6465722e76657263656c2e6170702f6170693f747970653d776176696e6726636f6c6f723d6772616469656e74266865696768743d36302673656374696f6e3d666f6f746572"><img src="https://camo.githubusercontent.com/6038c8f1fd8f60de75477470e5a87210e9256202e01dfba9986446304a0f0254/68747470733a2f2f63617073756c652d72656e6465722e76657263656c2e6170702f6170693f747970653d776176696e6726636f6c6f723d6772616469656e74266865696768743d36302673656374696f6e3d666f6f746572" data-canonical-src="https://capsule-render.vercel.app/api?type=waving&color=gradient&height=60&section=footer" style="max-width: 100%;"></a>
| This is a web project that allows users to search and find GitHub users using the GitHub API | api,api-rest,github-api,github-search,github-search-repository,github-search-user,html,html-css-javascript,javascript,kursorjs | 2023-03-19T19:01:06Z | 2023-04-07T12:29:07Z | null | 1 | 0 | 34 | 0 | 0 | 9 | null | MIT | Pug |
seyioyemade/twenties-leadership-summit-2023 | 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)
- [❓ FAQ (OPTIONAL)](#faq)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
# 📖 TWENTIES LEADERSHIP SUMMIT 2023 <a name="about-project"></a>
**TWENTIES LEADERSHIP SUMMIT 2023** is a website that gives information about the developmental program designed to create a profound shift in the thinking and behavior of twenties.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
Client
- HTML, CSS, JS
- No Frameworks
- Technologies Used- HTML, CSS, JS, GIT, Linters (GitHub Actions, Lighthouse, Webhint, Stylelint)
<!-- Features -->
### Key Features <a name="key-features"></a>
- It gives information about twenties leadership summit 2023.
- It showcases past summits.
<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://seyioyemade.github.io/twenties-leadership-summit-2023/)
<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:
You need to have npm installed on your PC first.
### Setup
Clone this repository to your desired folder:
[https://github.com/seyioyemade/microverse-module-1-capstone-project]
### Install
Install this project with:
-Copy the URL [https://github.com/seyioyemade/microverse-module-1-capstone-project.git].
-In Visual Studio Code “Terminal” change the current working directory to the location where you want the cloned directory.
-Type git clone in the terminal, paste the URL you copied earlier, and press “enter” to create your local clone.
git clone https://github.com/seyioyemade/microverse-module-1-capstone-project.git
### Usage
To run the project, execute the following command:
### Run tests
To run tests, run the following command:
### Deployment
You can deploy this project using:
- GitHub Page
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 **Seyi Oyemade**
- GitHub: [@seyioyemade](https://github.com/seyioyemade)
- Twitter: [@seyi_oyemade](https://twitter.com/@seyi_oyemade)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/seyi-oyemade-523ab1142/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- Develop registration page
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- CONTRIBUTING -->
## 🤝 Contributing <a name="contributing"></a>
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](https://github.com/seyioyemade/microverse-module-1-capstone-project/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 and would love to show your support, please contact the author.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
- I would like to thank [Microverse](https://www.microverse.org/) for giving this opportunity to learn.
- I would like to thank [Cindy Shin](https://www.behance.net/adagio07), the [author of the original design](https://www.behance.net/gallery/29845175/CC-Global-Summit-2015).
- Code Reviewers & Coding Partners.
- Hat tip to anyone whose code was used.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FAQ (optional) -->
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LICENSE -->
## 📝 License <a name="license"></a>
This project is [MIT](./LICENSE) licensed.
| Twenties Leadership Summit 2023 is a website that gives information about the developmental program designed to create a profound shift in the thinking and behavior of twenties. Users can find program date, venue and speakers bio on the website. Built with JavaScript, CSS, HTML | css,html,javascript | 2023-03-13T10:38:52Z | 2023-04-19T07:05:39Z | null | 1 | 1 | 20 | 0 | 0 | 9 | null | GPL-3.0 | JavaScript |
Moslihbadr/weather-app | main | <h1>Weather App</h1>
<p>The Weather App is a web-based application that allows you to get the current weather information for a specific city by entering the city name.</p>
<h3>Features</h3>
<ul>
<li>Get current weather information for a city</li>
<li>Temperature displayed in Celsius</li>
<li>Weather icons displayed based on current weather conditions</li>
<li>Error handling for invalid city names</li>
</ul>
<h3>Technologies</h3>
<p>The Weather App is built using the following technologies:<p>
<ul>
<li>HTML/CSS for the user interface</li>
<li>JavaScript for the client-side logic and API requests</li>
<li>OpenWeatherMap API for weather data</li>
</ul>
<h3>Installation</h3>
<p>To use the Weather App, simply visit the website at https://badr-current-weather.netlify.app<p>
<h3>Usage</h3>
<ol>
<li>Enter the name of the city for which you want to get the weather information in the input field provided.</li>
<li>Press the "Get Weather" button.</li>
<li>The current weather information for the specified city will be displayed on the screen, including the temperature, weather description, and an icon indicating the current weather conditions.</li>
</ol>
<p>If you enter an invalid city name, an error message will be displayed on the screen indicating that the city name is not valid.</p>
<h3>Credits</h3>
<p>The Weather App uses the OpenWeatherMap API to retrieve weather information for cities. You can learn more about the OpenWeatherMap API at https://openweathermap.org/api.</p>
| a web-based tool that provides the current weather information for any city. | api,css3,html5,javascript,weather | 2023-03-12T01:20:26Z | 2023-03-16T16:53:50Z | null | 1 | 0 | 16 | 0 | 0 | 9 | null | null | HTML |
kaykeeb3/SIBI_V1 | main | <h1 align="center">SIBI - Gerardo José</h1>
<p align="center">SIBI - Gerardo José: é um sistema de uso administrativo para bibliotecas</p>
<br>
<p align="center">
<img alt="SIBI web" src="./images/login.jpg" width="100%" height="70%">
</p>
<p align="center">
<img alt="SIBI web" src="./images/home.jpg" width="100%" height="70%">
</p>
<p align="center">
<img alt="SIBI web" src="./images/livros.jpg" width="100%" height="70%">
</p>
<p align="center">
<img alt="SIBI web" src="./images/req.jpg" width="100%" height="70%">
</p>
<p align="center">
<img alt="SIBI web" src="./images/cadastro_livro.jpg" width="100%" height="70%">
</p>
<p align="center">
<img alt="SIBI web" src="./images/cadastro_requisicao.jpg" width="100%" height="70%">
</p>
## 🚀 Tecnologias
Esse projeto foi desenvolvido com as seguintes tecnologias:
- Php 8
- MYSQL
- HTML
- CSS
- Javascript
- Git e Github
## 💻 Projeto
SIBI - Gerardo José = Sistema de Biblioteca Gerardo José, é um sistema de uso administrativo, ele tem como principal objetivo ter total controle sobre o gerenciamento de uma Biblioteca por meio virtual, atualmente ele encontra-se na sua V1 inicial. Ele foi desenvolvido aparti de uma necessidade vista que ocasionava sérios problemas, vale ressaltar que foi desenvolvido como um trabalho voluntário, que foi retribuído a Escola. obs: objetivo principal do projeto é facilidade, segurança e praticidade.
- [Visite o projeto](https://sibi.vercel.app/)
<br>
## 😎 Créditos
- [Kayke Barbosa](https://kaykedev.vercel.app/)
- [João Alison](https://joaoalison-web.vercel.app/)
- [Romário Henrique](https://github.com/RomarioHenrique)
- [Bruno Rodrigues](https://github.com/Brunno-Rodrigues-Lira)
- [EEEP Gerardo José Dias de Loiola](https://github.com/EEEP-Gerardo)
| SIBI - Gerardo José: um sistema administrativo robusto e eficiente projetado para otimizar todas as operações relacionadas a bibliotecas. Com recursos avançados e uma interface amigável. | css,html,javascript,mysql,php | 2023-03-21T15:52:59Z | 2023-10-23T11:42:17Z | null | 3 | 22 | 74 | 0 | 7 | 9 | null | null | PHP |
HelixStudio/helix | main | # Helix 👨💻
Helix is an open-source website to help you learn & practice programming.
InfoEducatie 2023: [Documentatie](/docs/DocumentatieNationala.pdf)
# Required dependencies
Besides the specified node packages, you need to have the following software to host the frontend:
- git (any version)
- nodejs >= 16
The [code execution engine](https://github.com/nikolatesla13/exec) is also part of this project. It is used to run the submitted code.
# How to run
Firstly, clone the repository:
```bash
git clone https://github.com/NikolaTesla13/helix.git
```
Go to the newly created directory:
```bash
cd helix
```
You can use any nodejs package manager to manage the dependencies (such as npm, yarn or pnpm). During development, npm was used:
```bash
# install required packages
npm install
```
Provide the required environment variables in a `.env` file, refer to the `.env.example` file for example usage:
```bash
NODE_ENV="development"
NEXTAUTH_URL="http://localhost:3000"
NEXTAUTH_SECRET=""
DATABASE_URL=""
UPLOADTHING_SECRET=""
UPLOADTHING_APP_ID=""
HUGGINGFACE_API_KEY=""
DISCORD_CLIENT_ID=""
DISCORD_CLIENT_SECRET=""
GITHUB_CLIENT_ID=""
GITHUB_CLIENT_SECRET=""
GOOGLE_CLIENT_ID=""
GOOGLE_CLIENT_SECRET=""
TWITTER_CLIENT_ID=""
TWITTER_CLIENT_SECRET=""
```
And now you can start the services:
```bash
# starts frontend on localhost:3000
npm run dev
# starts the prisma studio on localhost:5555
npx prisma studio
# starts the storybook testing server on localhost:6006
npm run storybook
```
Most common errors when running the frontend:
- database connection error: check your connection url and if the db is up and running
- dependencies error: check if a `node_modules` was created with the required libraries
- backend not running: note that some features require the backend server to be running
- feel free to open a new issue if you have discovered a bug
| A modern platform for competitive programming. | coding,competitive-programming,gnu,huggingface,learning,open-source,social-media,social-network,typescript,website | 2023-03-25T10:50:17Z | 2023-09-08T08:58:52Z | null | 2 | 14 | 223 | 12 | 4 | 9 | null | NOASSERTION | TypeScript |
javascript-mascot/javascript-mascot | main | 
# JavaScript Mascot
A mascot for JavaScript.
## Description
A yellow creature with three eyes and one arm, holding a JavaScript flag. A distant relative of the Lisp mascot.
## Files
The files are available in this repository, in various formats and sizes.

The files are also available in [Wikimedia Commons](https://commons.wikimedia.org/wiki/Category:JavaScript_mascot).
## Gallery
Send us your own creations at javascriptmascot@gmail.com or open a pull request in this repository!
<img src="./artwork/javascript_mascot_bliss.png" width="500px"/>
*Bliss*
<br>
<br>
<img src="./artwork/javascript_mascot_typescript.svg" width="500px"/>
*Holding a TypeScript flag*
<br>
<br>
<img src="./artwork/javascript_mascot_react.svg" width="500px"/>
*Holding a React flag*
<br>
<br>
<img src="./artwork/javascript_mascot_transgender_pride_flag.svg" width="500px"/>
*On the transgender pride flag*
<br>
<br>
<img src="./artwork/ascii.png" width="500px"/>
*As ASCII art (it can be cound in the file javascript_mascot_ascii.txt)*
## Contribution
The mascot belongs to the community. Any contributions and any ideas or proposals for improvements or modifications are more than welcome!
## License
**[Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)](https://creativecommons.org/licenses/by-sa/4.0/deed.en)**

**You are free to:**
**Share** — copy and redistribute the material in any medium or format
**Adapt** — remix, transform, and build upon the material for any purpose, even commercially.
This license is acceptable for Free Cultural Works. The licensor cannot revoke these freedoms as long as you follow the license terms.
| A mascot for JavaScript. | javascript,javascript-mascot,js,mascot,computing-mascot,js-mascot,javascriptmascot | 2023-03-21T09:50:51Z | 2023-03-21T17:25:41Z | null | 1 | 0 | 16 | 1 | 0 | 9 | null | CC-BY-SA-4.0 | null |
tomasesquivelgc/Portfolio_Mobile_First | main | <a name="readme-top"></a>
<div align="center">
<br/>
<h3><b>Portfolio: Mobile First</b></h3>
</div>
<!-- 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 -->
# 📖 Portfolio: Mobile First <a name="about-project"></a>
Portfolio: Mobile First is my first aproach at responsive web development.
Inside this project you will find a portfolio template cloned from scratch using
everything i've learned so far in the Microverse program.
[Here is a link](https://www.loom.com/share/4b5eb245644743fe9bf6854053f717ed) to a video that better explains what this project is and what is for.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>Client</summary>
<ul>
<li><a href="https://html.com">HTML</a></li>
<li><a href="https://html.com">CSS</a></li>
<li><a href="https://html.com">Linters</a></li>
</ul>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
The key features of this project are:
- Web responsive design with a "mobile first" aproach
- Use of flexbox to replicate a template
- An adaptive layout that responds to screen width
### Features implemented
- Functioning mobile version with a responsive layout
- Desktop version (min 768px) working complete with animations
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LIVE DEMO -->
## 🚀 Live Demo <a name="live-demo"></a>
To see my Portfolio in action, simply check [here](https://tomasesquivelgc.github.io/Portfolio_Mobile_First/)
<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 a web browser.
### Setup
Clone this repository to your desired folder:
```sh
cd my-folder
git clone https://github.com/tomasesquivelgc/Portfolio_Mobile_First.git
```
### Usage
To run the project, open the index.html file.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 Tomás Esquivel
- GitHub: [@tomasesquivelgc](https://github.com/tomasesquivelgc)
- Twitter: [@EsquivelTomas](https://twitter.com/EsquivelTomas)
- LinkedIn: [tomas esquivel](https://www.linkedin.com/in/tomas-esquivel-b2160568/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
Future features of this project include:
- [✔] About, projects and contact section.
- [✔] NavBar Buttons working as intended
- [ ] Links to Social media
- [ ] An overlay menu for mobile.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- CONTRIBUTING -->
## 🤝 Contributing <a name="contributing"></a>
Contributions on this by:
- William Ocoró (GitHub: willococa)
- Gardimy Charles (GitHub: Gardimy)
- Luis Emilio Rojas (Github: lerfast)
And every code reviewer who took the time to help me improve
<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 keep showing your support and interest in my web developer career!
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank the whole Microverse team, the support team and code reviewers for making my time here valuable!
<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>
| 📱📙My first mock portfolio made with HTML, CSS and JavaScript functionalities. 2 possible layouts, mobile-first and desktop. | css,css3,html,javascript,portfolio,template,mobile-first,responsive-design | 2023-03-23T03:15:25Z | 2024-03-15T18:08:08Z | null | 5 | 16 | 157 | 2 | 0 | 9 | null | null | CSS |
ricardohsmello/daily-quotes | main | # daily-quotes

## This project is an example of how to use Keycloak with angular + quarkus
Our application will be responsible for showing motivating messages to logged users. Only the user with the admin role will be able to access admin menu and create new messages quotes.
You can read more on my <b>medium</b> article.
- [`Quarkus + Angular secured with Keycloak`](https://medium.com/@ricardohsmello/quarkus-with-angular-secured-with-keycloak-pt1-d1c00a4923b8)

https://miro.medium.com/v2/resize:fit:720/1*xG1J4FwF5JtlixN70GkkxA.gif
## Built With
- [`Java 19`](https://www.oracle.com/java/technologies/javase/19-0-2-relnotes.html/) - Language
- [`Quarkus`](https://quarkus.io/) - Framework
- [`Angular 15.2.1`](https://angular.io/) - Web Application Framework
- [`Key Cloack`](https://www.keycloak.org/) - Access management
- [`PostgreSQL`](https://www.postgresql.org/) - Database
| [QUARKUS] [KEYCLOAK], [ANGULAR] [JAVA] This project is an example of how to use Keycloak with angular + quarkus | angular,java,javascript,keycloak,postgresql,quarkus | 2023-03-14T05:18:04Z | 2024-01-25T02:19:38Z | null | 1 | 10 | 23 | 0 | 6 | 9 | null | null | HTML |
codescalper/solana-airdrop | main |
<!-- Title -->
<h1 align="center">Solana Airdrop</h1>
<!-- Description -->
<p align="center">This repository contains a simple React application that allows you to airdrop SOL to a given Solana address on Devnet.</p>
<h2>Tech Stack</h2>
<ul>
<li>React</li>
<li>@solana/web3.js</li>
</ul>
<!-- Prerequisites -->
<h2>Prerequisites</h2>
<ul>
<li><a href="https://nodejs.org/en/">Node.js</a></li>
<li><a href="https://www.npmjs.com/">npm</a></li>
</ul>
<!-- Installation -->
<h2>Installation</h2>
<p>1. Clone the repository:</p>
<pre><code>git clone https://github.com/codescalper/solana-airdrop.git</code></pre>
<p>2. Install dependencies:</p>
<pre><code>cd solana-airdrop
npm install</code></pre>
<p>3. Run the application:</p>
<pre><code>npm start</code></pre>
<p>4. Navigate to <a href="http://localhost:3000">http://localhost:3000</a> in your browser to use the airdrop tool.</p>
<!-- Usage -->
<h2>Usage</h2>
<p>To use the airdrop tool, enter a valid Solana address into the input field and click the "Airdrop" button. If the address is valid, the application will send 1 SOL to the address on Devnet and display the transaction hash.</p>
<p>Note: This tool does not give real $SOL or Solana tokens. It is only for testing purposes on Devnet.</p>
<!-- Code -->
<h2>Code</h2>
<p>The main component of this React application is the <code>SolAirdrop</code> component, which is located in <code>src/SolAirdrop.js</code>:</p>
<h2>Issues</h2>
<p>If you have found a bug or have a feature request, please <a href="https://github.com/codescalper/solana-airdrop/issues">open an issue</a> on Github.</p>
<h2>Contributing</h2>
<p>Contributions are always welcome! If you want to contribute to this project, please follow these steps:</p>
<ol>
<li>Fork the repository</li>
<li>Make your changes</li>
<li>Test your changes</li>
<li>Submit a pull request</li>
</ol>
| Solana Devnet Airdrop is a simple React-based web application that allows you to send airdrop of SOL tokens to a Solana address on the Devnet network. It uses the Solana Web3.js library for interacting with the Solana blockchain. The project is designed to demonstrate how to connect to the Solana network and perform transactions using Web3.js. | cloudflare-pages,css,html,javascript,react,reactjs,solana,solana-airdrop,solana-program | 2023-03-12T11:08:06Z | 2023-03-26T13:53:25Z | null | 1 | 0 | 13 | 0 | 1 | 9 | null | MIT | JavaScript |
HERMON-1995/Math-magician-project | main | # Math magician project
<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 -->
# 📖 [Math magician project] <a name="about-project"></a>
**[Math magician project]** is a Single Page App (SPA) website for all fans of mathematics 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><a href="https://html.com/">HTML</a></li>
<li><a href="https://www.w3.org/Style/CSS/">CSS</a></li>
<li><a href="https://www.javascript.com/">JavaScript</a></li>
<li><a href="https://react.dev/">React</a></li>
</ul>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **[Calculation]**
- **[Read a quote]**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LIVE DEMO -->
## 🚀 Live Demo <a name="live-demo"></a>
- [See live here](https://hermon-math-magician-app.onrender.com/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- GETTING STARTED -->
## 💻 Getting Started <a name="getting-started"></a>
### Prerequisites
In order to run this project you need:
```sh
download Node.js
setup React
setup Linters
```
### Setup
Clone this repository to your desired folder:
```sh
cd Math-magician-project
git clone https://github.com/HERMON-1995/Math-magician-project.git
```
### Install
```sh
cd Math-magician-project
```
```sh
npm install
```
### Usage
```sh
npm run build
```
```sh
npm start
```
```sh
npm run eject
```
### Run tests
```sh
npm test
```
```sh
npx eslint "**/*.{js,jsx}"
```
```sh
npx stylelint "**/*.{css,scss}"
```
### Deployment
- Deployment method using Render
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 **Author1**
*[HERMON GEBRE]*
- GitHub: [@githubhandle](https://github.com/HERMON-1995)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/hermon-gebre)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
#[Implement scientific calculations]
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- CONTRIBUTING -->
## 🤝 Contributing <a name="contributing"></a>
- [Issues](https://github.com/HERMON-1995/Math-magician-project/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 show support by staring ⭐️.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
* I would like to give Microverse my sincerest gratitude for accommodating me in the Full-time Software Development program.
<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>
| Math magician project is a Single Page App (SPA) website for all fans of mathematics that allows users to make simple calculations and read a random math-related quote. Built with: React, Redux, JavaScript, Html/CSS | css3,html5,javascript,react,redux | 2023-03-20T19:21:04Z | 2023-05-01T14:23:40Z | null | 2 | 8 | 107 | 0 | 0 | 9 | null | MIT | JavaScript |
puutaro/commandclick-repository | master | 
# commandclick-repository
`CommandClick`'s [`fannel`](https://github.com/puutaro/CommandClick/blob/master/md/developer/glossary.md#fannel) repository
[`Fannel`](https://github.com/puutaro/CommandClick/blob/master/md/developer/glossary.md#fannel) is `ComamndClick` using script (javascript, and shellscript)
For instance, your click script in `CommandClick`.
One thing I can say that `CommandClick` is developed for the purpose of changing javaxcript and shellscript to gui appication.
That applies to click script. It's so called Gui application. We can say so. I call the gui application `fannel`.
Table of Contents
-----------------
* [Desire](#desire)
* [Your Fannel Register condition](#your-fannel-register-condition)
* [Procedure 1](#procedure-1)
* [Example](#example)
* [Procedure 2](#procedure-2)
* [Example](#example)
* [Others](#others)
* [Description](#description)
Desire
-----
[`Fannel`](https://github.com/puutaro/CommandClick/blob/master/md/developer/glossary.md#fannel) is idea application.
Add idea to your javascript and shellscript skill.
That's all there is to great it.
Therefore commit your idea app to this repository. Don't forget author(`@`yourname).
Your Fannel Register condition
-------------
### Procedure 1
This is simple, and excelent by scalability, visuality, popularity, becuase of only use github topic.
Also you can search by [fannelStore](https://github.com/puutaro/fannelStore) more easiy.
<!-- Finally, fannle install process integrate this. -->
1. [`Fannel`](https://github.com/puutaro/CommandClick/blob/master/md/developer/glossary.md#fannel) main file is `{fannle name}`.js(sh), main directory `{fannel name}`Dir like bellow location
```kt.js
.
├── README.md
├── ${fannel name}.js(sh)
└── ${fannel name}Dir
├── README.md
.
.
.
```
- Put require file for fannel to above `${fannel name}Dir`
2. Make palin text pr by bellow format
```js.js
onGit:prefix=${your git repo url};name=${fannel name}
```
3. Paste above qr image your README.md and your repo [sorcial preview](https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/customizing-your-repositorys-social-media-preview)
4. Put `fannel` tag to your fannel repo
### Procedure 2
This is for register this fannel repository.
This merit is download fast.
1. [`Fannel`](https://github.com/puutaro/CommandClick/blob/master/md/developer/glossary.md#fannel) main file is `{fannle name}`.js(sh), main directory `{fannel name}`Dir like bellow location
```kt.js
.
├── README.md
├── ${fannel name}.js(sh)
└── ${fannel name}Dir
```
- Put require file for fannel to above `${fannel name}Dir`
- Each file is less 5M
2. Write your github url to [fannles.txt](https://github.com/puutaro/commandclick-repository/blob/master/manage/fannels/input_txt_list/repo_url_list.txt)
3. Put `fannel` tag to your fannel repo
4. Please `PR`
#### Example
[cmdYoutube](https://github.com/puutaro/commandclick-repository/blob/master/fannel/cmdYoutuberDir/README.md)
Main file: `cmdYoutube.js`
Main Dir: `cmdYoutubeDir`
- `cmdYoutubeDir` incliude some files. [detail](https://github.com/puutaro/commandclick-repository/tree/master/fannel)
Others
-------------
### Description
By `setting` -> `install_fannel`, Script's `CommandClick description` 50 char in first line is displayed.
- install [detail](https://github.com/puutaro/CommandClick/blob/master/README.md#install-fannel)
- description [detail](https://github.com/puutaro/CommandClick#description)
<img src="https://github.com/puutaro/commandclick-repository/assets/55217593/6f62911e-772c-4c04-8375-0998d1353612" width="600">
| CommandClick's fannel repository | cmdclick,commandclick,javascript,shellscript,termux,fannel | 2023-03-20T04:04:36Z | 2024-05-10T16:37:41Z | null | 1 | 0 | 520 | 0 | 1 | 8 | null | MIT | JavaScript |
Gardimy/Mobile-first | master | # Validate contact form
A Microverse exercise to use animation on a website
<a name="readme-top"></a>
<div align="center">
<h3><b>Validate contact form</b></h3>
</div>
<!-- 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)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
# 📖Validate contact form<a name="about-project"></a>
> **Validate contact form** is a starter exercise to create a portfolio website that can be used by multiple
devices by listing the portfolio projects. And also using CSS animation makes the website more interactive.
It is based on specific settings and requirements to ensure proper structure and best practices.
By cloning this repo and running `npm install` we will have a basic portfolio with properly configured linters,
eslint and the correct initial file structu
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
> This project focuses only on `linters` and `.gitignore`. and JS or Server are included in this repo.
<details>
<summary>Client</summary>
<ul>
<li><a href="https://www.w3.org/html/">HTML</a></li>
<li><a href="https://www.w3.org/Style/CSS/Overview.en.html">SCSS</a></li>
<li><a href="https://www.javascript.com/">JavaScript</a></li>
</ul>
</details>
<details>
<summary>Server</summary>
<ul>
<li><a href="https://www.netlify.com/">Netlify</a></li>
</ul>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **Linters**: [Lighthouse](https://developer.chrome.com/docs/lighthouse/overview/), [Webhint](https://webhint.io/), and [Stylelint](https://stylelint.io/.)
- **A `.github/workflows/linters.yml`** file to run linters on GitHub Pull Request.
- **A** `.gitignore` file including `node_modules/`.
-**Eslint**npm install --save-dev eslint@7.x eslint-config-airbnb-base@14.x eslint-plugin-import@2.x babel-eslint@10.x
[ -f .eslintrc.json ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/html-css-js/.eslintrc.json
- name: ESLint Report
<!-- LIVE DEMO -->
## 🚀 Live Demo <a name="live-demo"></a>
- [Live Demo Link](https://gardimy.github.io/Mobile-first/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- GETTING STARTED -->
## 💻 Getting Started <a name="getting-started"></a>
>If you are a new developer and would like to have a basic project to start practicing your code or creating your first portfolio app-features using good practice JavaScript ,HTML and CSS : Cloning this project will give you what you need!
> To get a local copy up and running, follow these steps:
### Prerequisites
In order to run this project you need:
- Have [npm](https://www.npmjs.com/package/npm) installed in your project:
`curl -qL https://www.npmjs.com/install.sh | sh`
### Setup
Clone this repository to your desired folder:
`git clone https://github.com/Gardimy/Mobile-first`
or
`git clone https://github.com/Gardimy/Mobile-first` <-- _Only if you have [SSH keys configured](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account) on your GitHub account_.
### Install:
run the `npm install` command in your console.
### Usage
To run the linters before committing any changes to your code, execute the following commands:
`npx hint .`
`npx stylelint "**/*.scss"` <--_NOTE: this repo is set up to use with SCSS. If you would like to use CSS, you must replace `"**/*.scss"` with `"**/*.{css,scss}"` in **line 48** of the `.stylelintrc.json` file, and run the linter with:_
`npx stylelint "**/*.{css,scss}"` _instead_.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
> 👤 **Gardimy Charles**
- GitHub: [@Gardimy](https://github.com/Gardimy)
- Twitter: [@gardyelontiga45](https://twitter.com/gardyelontiga45)
- LinkedIn: [Gardimy charles](https://www.linkedin.com/in/gardimy-charles)
> 👤 **Mahmudur Rahman**
- GitHub: [@MoyasiGinko](https://github.com/MoyasiGinko)
- LinkedIn: [@mahmudur-rahman-a8a151257](https://www.linkedin.com/in/mahmudur-rahman-a8a151257/)
- Twitter: [@moyasi_ginko](https://twitter.com/moyasi_ginko)
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- [ESLint](https://eslint.org/).
<!-- CONTRIBUTING -->
## 🤝 Contributing <a name="contributing"></a>
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](https://github.com/Gardimy/Mobile-first/issues/7).
<!-- SUPPORT -->
## ⭐️ Show your support <a name="support"></a>
> If you like this project please give me a star on GitHub.And Don't hesitate to follow me on github, you will have the opportunity to get all updating available for this project.
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
> I would like to thank [Microverse](https://www.microverse.org/) for teaching me these tools.
<!-- LICENSE -->
## 📝 License <a name="license"></a>
This project is [MIT license](https://choosealicense.com/licenses/mit/) licensed.
_NOTE: we recommend using the [MIT license](https://choosealicense.com/licenses/mit/) - you can set it up quickly by [using templates available on GitHub](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). You can also use [any other license](https://choosealicense.com/licenses/) if you wish._
<p align="right">(<a href="#readme-top">back to top</a>)</p> | This is a starter exercise to create a portfolio website that can be used by multiple devices by listing the portfolio projects. And also using CSS animation makes the website more interactive. I use github pages to deploy this project. It is based on specific settings and requirements to ensure proper structure and best practices. | css,eslint-config,html,javascript,linter | 2023-03-22T16:41:11Z | 2023-12-20T14:16:34Z | null | 8 | 16 | 140 | 8 | 0 | 8 | null | null | CSS |
SumitUjjwal/veterinary-appointment-booking-system | main | # The PetVet - A Veterinary Appointment Booking System
> Project Code : bizarre-quilt-7359 <br/>
> Frontend Deployed Link : https://thepetvet.vercel.app/ <br/>
> Backend Deployed Link : https://thepetvet.cyclic.app/
The PetVet is an online application that allows pet owners to schedule appointments with veterinarians at their convenience. The system simplifies the process of booking appointments and provides a platform for pet owners to communicate with veterinary professionals regarding their pet's health. The system aims to improve the overall quality of care provided to pets by making it easier for pet owners to access veterinary services.
### Objectives of the project:
- To provide an easy-to-use platform for pet owners to book appointments with veterinary professionals.
- To improve the efficiency of the appointment booking process.
- To increase the accessibility of veterinary services.
- To provide a centralized system for managing appointments and patient information.
### Tech Stacks used
- Frontend:
- HTML
- CSS
- JavaScript
- Bootstrap
- Backend:
- NodeJS
- ExpressJS
- MongoDB
- NPM Packages
### Work Flow

## API Endpoints
### Admin Authentication
- Admin Register: /adminAuth/register
- Admin Login: /adminAuth/login
### Admin Route
- Get Doctors List(Method: GET): /admin/doctors
- Get Doctor by ID(Method: GET): /admin/doctors?id=******
- Get Appointment List(Method: GET): /admin/appointments
- Get Appointment by ID(Method: GET): /admin/appointments?id=******
- Update Doctor Info by ID(Method: PATCH): /admin/updateDoctor/:id
- Remove Doctor Info by ID(Method: DELETE): /admin/removeDoctor/:id
### Appointment Route
- Get Appointments List(Method: GET): /appointment
- Get Appointments by ID(Method: GET): /appointment?id=****
- Get Doctors List(Method: GET): /appointment/doctors
- Create Appointment(Method: POST): /appointment/create
### Doctor Authentication
- Doctor Register(Method: POST): /doctorAuth/register
- Doctor Login(Method: POST): /doctorAuth/login
### Doctor Route
- Get Appointments List(Method: GET): /doctor/:id
- Update Appointment Status(Method: PATCH): /doctor/status/:id
## Contributors
- [Sumit Ujjwal](https://github.com/SumitUjjwal)
- [Pranjal Jain](https://github.com/pranjaljain275)
- [Altaf Khan](https://github.com/eraltafs)
- [Suraj Patil](https://github.com/srjizhere)
- [Shiva Saraswat](https://github.com/shivam5665) | The Veterinary Appointment Booking System is an online platform that simplifies the process of scheduling appointments with veterinarians, providing better access to veterinary care for pets. | cyclic,expressjs,mongodb,nodejs,css,html,javascript,npm,vercel | 2023-03-25T13:16:32Z | 2023-04-03T05:34:12Z | null | 6 | 53 | 152 | 4 | 2 | 8 | null | null | JavaScript |
Mahamadou-Nouridine/My-Portfolio | main | <a name="readme-top"></a>
<div align="center">
<h3><b>My Portfolio</b></h3>
</div>
# 📗 Table of Contents
- [📗 Table of Contents](#-table-of-contents)
- [📖 My Portfolio ](#-my-portfolio-)
- [🛠 Built With ](#-built-with-)
- [Tech Stack ](#tech-stack-)
- [Key Features ](#key-features-)
- [🚀 Live Demo ](#-live-demo-)
- [💻 Getting Started ](#-getting-started-)
- [Prerequisites](#prerequisites)
- [Setup](#setup)
- [Usage](#usage)
- [Run tests](#run-tests)
- [👥 Authors ](#-authors-)
- [🔭 Future Features ](#-future-features-)
- [🤝 Contributing ](#-contributing-)
- [⭐️ Show your support ](#️-show-your-support-)
- [🙏 Acknowledgments ](#-acknowledgments-)
- [📝 License ](#-license-)
# 📖 My Portfolio <a name="about-project"></a>
**My Portfolio** is a a website that shows my achievements, my skills, my contact details and all the informations needed by a recruiter or a collaborator
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
- HTML
- CSS
- Javascript
### Key Features <a name="key-features"></a>
- [ ] **Navigation Bar**
- [ ] **Header**
- [ ] **My projects**
- [ ] **About Me**
- [ ] **Download My Resume**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🚀 Live Demo <a name="live-demo"></a>
> Add a link to your deployed project.
- [Live Demo Link](https://Mahamadou-Nouridine.github.io/My-Portfolio/)
<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:
- a browser
- git
- nodejs
### Setup
Clone this repository to your desired folder:
```sh
cd my-folder
git clone https://github.com/mahamadou-nouridine/My-Portfolio.git
npm install
```
### Usage
To run the project, execute the following command:
```sh
Open index.html in browser
or
open with Live server in Vscode
```
### Run tests
To run tests, run the following command:
```sh
npx stylelint "**/*.{css,scss}"
```
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 👥 Authors <a name="authors"></a>
👤 **Mahamadou Nouridine**
- GitHub: [mahamadou-nouridine](https://github.com/mahamadou-nouridine)
- Linkedin: [mahamadou-nouridine-mamoudou-souley-2b424a1a5](https://www.linkedin.com/in/mahamadou-nouridine-mamoudou-souley-2b424a1a5)
- Twitter: [Nouridine_Dino](https://twitter.com/Nouridine_Dino)
👤 **Shihab Uddin Khan**
- GitHub: [@shihabrafio](https://github.com/shihabrafio)
- Twitter: [@shihab_uddin19](https://twitter.com/shihab_uddin19)
- LinkedIn: [Shihab Uddin Khan](https://www.linkedin.com/in/shihab-uddin-khan-45620a16a/)
👤 **Tumaini Maganiko**
- GitHub: [@githubhandle](https://github.com/tumainimaganiko)
- Twitter: [@twitterhandle](https://twitter.com/Chief2maini)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/tumaini-maganiko-991b30262/)
👤 **Shalini Nayan**
- GitHub: [@ShaliniNayan](https://github.com/ShaliniNayan)
- Twitter: [@sndprs](https://twitter.com/sndprs)
- LinkedIn: [shalini-nayan-5820389](https://linkedin.com/in/shalini-nayan-5820389)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
- [ ] **Services**
- [ ] **Testimonials**
- [ ] **Contact**
<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/Mahamadou-Nouridine/My-Portfolio/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 me a follow and/or a star
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank all my coding partners at Microverse
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 📝 License <a name="license"></a>
This project is [MIT](./LICENSE) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| My Portfolio is a a website that shows my achievements, my skills, my contact details and all the informations needed by a recruiter or a collaborator | css,html,javascript | 2023-03-23T14:09:33Z | 2024-05-02T21:46:52Z | null | 4 | 10 | 63 | 0 | 1 | 8 | null | MIT | CSS |
Silverethical/silverBox | main | # SilverBox
SilverBox is a lightweight and versatile JavaScript library for creating customizable modals and alerts in web applications. It allows you to have your own style alongside the ease of use of using a library.
## Table of Contents
- [Usage](#usage)
- [Documentation](#documentation)
- [Contributing](#contributing)
- [License](#license)
## Usage
To create a modal or alert using SilverBox, follow these steps:
1. [Download SilverBox files.](https://github.com/silverethical/silverbox/releases/latest)
2. Include SilverBox CSS and JS files in your HTML:
```html
<link rel="stylesheet" href="path/to/silverBox.min.css" />
<script src="path/to/silverBox.min.js"></script>
```
3. Call SilverBox and create a modal or alert:
```js
silverBox({
title: {
text: "Success",
alertIcon: "success",
},
text: "Your task has been completed.",
});
```
## Documentation
[Please refer to the website for full documentation list.](https://silverboxjs.ir/documentation/?v=latest)
## Contributing
Contributions are welcome! If you encounter any issues or have suggestions for improvements, please feel free to submit bug reports, feature requests, or pull requests.
## License
This project is licensed under the MIT License.
| Lightweight and versatile JavaScript library to create customizable modals and alerts for your web applications. Built with pure JavaScript and zero dependencies. | css,css3,javascript,javascript-library,library,scss,scss-styles | 2023-03-18T13:57:30Z | 2023-10-08T18:26:23Z | 2023-10-08T18:26:23Z | 3 | 0 | 822 | 0 | 1 | 8 | null | MIT | JavaScript |
consci210/-Enkokilish- | main | ## This project is still under development
# 🌟 Enkokilish 🌟
Enkokilish is a fun and educational trivia game built with React. This app allows users to select topics they want to be quizzed on and test their IQ and general knowledge.
## 🌟 [LIVE-DEMO](https://enkokilish.netlify.app/)

## 💡 Inspiration
I wanted to create an app that would engage users in a fun and interactive way while still providing valuable educational content. I believe that learning should be fun, and Enkokilish does just that!
## 🚀 Getting Started
To get started with Enkokilish, simply clone the repository and run npm install to install all dependencies. Once the dependencies are installed, run npm start to start the development server.
## 🎮 How to Play
To start playing Enkokilish, select the topic you want to be quizzed on from the home page. The app will then generate a series of questions related to that topic, and you'll have a limited amount of time to answer each one.
Once you've completed the quiz, you'll receive your score and can choose to play again or select a different topic.
## 🌟 Features
Engaging and educational quiz gameplay
Multiple topics to choose from
Randomly generated questions for each game
Interactive UI and fun animations
User-friendly and easy to navigate
## Show your support if you like my project ⭐
## 🤝 Contribution Guidelines
I welcome contributions to Enkokilish! If you'd like to make a contribution, please follow these guidelines:
- Fork the repository
- Create a new branch for your feature/bugfix
- Commit your changes and push to your branch
- Submit a pull request with a detailed explanation of your changes
## 📝 License
Enkokilish is licensed under the MIT License.
## 📱 Contact Me
If you have any questions or suggestions, feel free to reach out to me at mellowstacks210@gmail.com.
| Enkokilish is a fun and educational trivia game built with React. Check the current progress here: | api,react,reactapp,reactjs,trivia-game,first-time-contributors,first-timers,up-for-grabs,hacktoberfest,css | 2023-03-18T13:14:08Z | 2023-04-05T15:39:26Z | null | 3 | 10 | 62 | 5 | 6 | 8 | null | MIT | JavaScript |
PatrissolJuns/react-click-outside | master | # Welcome to @patrissoljuns/react-click-outside 🎉
[](https://www.npmjs.com/package/@patrissoljuns/react-click-outside)
[](https://codecov.io/gh/PatrissolJuns/react-click-outside/tree/master/tests)
[](https://github.com/PatrissolJuns/react-click-outside/actions)
[](https://opensource.org/licenses/MIT)
Looking for an easy and efficient way to handle click-away interactions in your React application? Look no further! Introducing **@patrissoljuns/react-click-outside**, a lightweight and powerful package that offers a hassle-free solution for handling click-away events in React applications.
Whether you're working on dropdowns, modals, or any other UI components that need to close when a user interacts outside of them, this package has got your back.
## 🔥 Features
- **Versatile**: Support for both functional components (hooks) and class components. Choose the method that works best for you!
- **Flexible**: Customizable event types (click, mousedown, mouseup, keydown, touchstart, etc.)
- **Scoped**: Define the target element or document where the event listeners will be attached, making it ideal for restricting click-away detection to a particular section or container in your application.
- **Optimized**: Streamlined event handling and clean-up ensure top-notch performance and silky-smooth user experiences.
- **Type-safe**: Crafted with TypeScript for built-in type safety.
## 📦 Installation
````shell
npm install @patrissoljuns/react-click-outside
# or
yarn add @patrissoljuns/react-click-outside
````
## 🚀 Usage
### Declarative Component
Here's a simple example of using the `ClickOutsideListener` component to close a dropdown menu:
````tsx
import React, { useState } from 'react';
import ClickOutsideListener from '@patrissoljuns/react-click-outside';
const MyComponent = () => {
const [dropdownOpen, setDropdownOpen] = useState(false);
const handleClickOutside = () => {
setDropdownOpen(false);
};
const toggleDropdown = () => {
setDropdownOpen(!dropdownOpen);
};
return (
<div>
<button onClick={toggleDropdown}>Toggle Dropdown</button>
{dropdownOpen && (
<ClickOutsideListener onClickOutside={handleClickOutside}>
<div className="dropdown">
{/* Dropdown content */}
Click outside this element to close it!
</div>
</ClickOutsideListener>
)}
</div>
);
};
````
### useClickOutsideListener Hook
Alternatively, you can use the `useClickAwayListener` hook to programmatically handle click-away events
````tsx
import React, { useState } from 'react';
import { useClickOutsideListener } from '@patrissoljuns/react-click-outside';
const ExampleComponent = () => {
const [showDrawer, setShowDrawer] = useState(false);
const containerRef = useClickOutsideListener<HTMLDivElement>({
onClickOutside: () => setShowDrawer(false),
events: ['keydown', 'touchstart']
});
return (
<div ref={containerRef}>
<button onClick={() => setShowDrawer(true)}>Toggle drawer</button>
{showDrawer && <div>My beautiful drawer</div>}
</div>
);
};
````
### 📚 API
#### useClickOutsideListener
| Prop | Type | Description |
|----------|:-------------:|:-------------:|
| **onClickOutside** `required` | <code>(event: MouseEvent | TouchEvent | KeyboardEvent | FocusEvent) => void</code> | A callback function that is triggered when an event specified in the `events` prop occurs outside the children element. </br> It receives the event object as its argument, allowing you to perform custom actions based on the event type, target, or other properties
| **events** </br> Default to `['mousedown']` | <code>Array<'mousedown' | 'mouseup' | 'mouseover' | 'click' | 'touchstart' | 'touchend' | 'keydown' | 'keyup' | 'focus' | 'blur'></code> | An array of event types to listen for. This allows you to customize the events that trigger the **onClickOutside** callback |
| **scope** </br> Default to `document` | <code>HTMLElement | Document | null</code> | An optional parameter that allows you to specify the target element, document, or null where the event listeners will be attached. This can be useful in cases where you want to limit the click-away detection to a specific section or container of your application. </br> If `scope` is set to `null`, no event listener will be attached. If `scope` is `undefined`, the document will be used as the default value. This flexibility helps handling the initial state of refs more easily and avoid potential issues or unexpected behavior when working with the useClickOutsideListener hook. |
#### ClickOutsideListener
Same with useClickOutsideListener above plus the following:
| Prop | Type | Description |
|----------|:-------------:|:-------------:|
| **children** `required` | `React.ReactElement` | A single React element that the ClickOutsideListener will wrap. This element will be monitored for click events happening outside of it. The ClickOutsideListener will execute the provided `onClickOutside` callback when such an event occurs |
| **wrapperComponent** | `React.ElementType` | An optional custom component that will be used as the wrapper for the `children` element. By default, ClickOutsideListener uses a React fragment to avoid altering the DOM structure. However, if you need to use a specific HTML element or custom component as the wrapper, you can provide it through this prop |
| **wrapperProps** | `React.HTMLAttributes<HTMLElement>` | Optional object containing any additional props to apply to the `wrapperComponent` if present
## 📖 Examples
<details>
<summary>Closing a modal only when pressing 'Escape' or 'p'</summary>
````tsx
import React, { useState } from 'react';
import ClickOutsideListener, { UseClickOutsideListenerOptions } from '@patrissoljuns/react-click-outside';
const App = () => {
const [isModalOpen, setIsModalOpen] = useState(false);
const closeModal: UseClickOutsideListenerOptions['onClickOutside'] = (event) => {
if (event instanceof KeyboardEvent && (event.key === 'p' || event.key === 'Escape')) {
setIsModalOpen(false);
}
};
const openModal = () => {
setIsModalOpen(true);
};
return (
<div>
<button onClick={openModal}>Open Modal</button>
{isModalOpen && (
<ClickOutsideListener onClickOutside={closeModal} events={['keydown']}>
<div className="modal">
<h2>Modal Title</h2>
<p>Modal content...</p>
</div>
</ClickOutsideListener>
)}
</div>
);
};
export default App;
````
</details>
<details>
<summary>Close a @mui/Popover on any key press </summary>
````tsx
import React, {useState} from 'react';
import useClickOutsideListener from "@patrissoljuns/react-click-outside";
import { Button, Popover, MenuList, MenuItem } from '@mui/material';
const MuiPopoverExample: React.FC = () => {
const [anchorEl, setAnchorEl] = useState<HTMLElement | null>(null);
const handleClick = (event: React.MouseEvent<HTMLElement>) => {
setAnchorEl(event.currentTarget);
};
const handleClose = () => {
setAnchorEl(null);
};
const open = Boolean(anchorEl);
const id = open ? 'popover-example' : undefined;
return (
<div>
<Button variant="contained" color="primary" onClick={handleClick}>
Open Popover
</Button>
<Popover
id={id}
open={open}
anchorEl={anchorEl}
onClose={() => null}
anchorOrigin={{
vertical: 'bottom',
horizontal: 'center',
}}
transformOrigin={{
vertical: 'top',
horizontal: 'center',
}}
>
<ClickOutsideListener
onClickOutside={handleClose}
events={['keyup']}
>
<MenuList id="my-menu">
<MenuItem onClick={handleClose}>Option 1</MenuItem>
<MenuItem onClick={handleClose}>Option 2</MenuItem>
<MenuItem onClick={handleClose}>Option 3</MenuItem>
</MenuList>
</ClickOutsideListener>
</Popover>
</div>
);
};
````
</details>
<details>
<summary>Touchable panel: close on touch away with Ant Design</summary>
````tsx
import React, { useState } from 'react';
import useClickOutsideListener from '@patrissoljuns/react-click-outside';
import { Button, Typography, Card } from 'antd';
const TouchPanelExample: React.FC = () => {
const [isOpen, setIsOpen] = useState(false);
const handleOpen = () => {
setIsOpen(true);
};
const handleClose = () => {
setIsOpen(false);
};
const panelRef = useClickOutsideListener({
onClickOutside: handleClose,
events: ['touchstart'],
});
return (
<div>
<Button type="primary" onClick={handleOpen}>
Open Panel
</Button>
{isOpen && (
<div
style={{
position: 'absolute',
top: '50%',
left: '50%',
transform: 'translate(-50%, -50%)',
}}
ref={panelRef}
>
<Card title="Touch Panel" bordered={false}>
<Typography.Text>
Touch anywhere outside this panel to close it.
</Typography.Text>
</Card>
</div>
)}
</div>
);
};
````
</details>
## 🙌 Contributing
We welcome your contributions! To get started, follow these steps:
1. Fork the repository and create a new branch for your changes.
2. Install the necessary dependencies by running `npm install` or `yarn install`.
3. Make your changes, ensuring that they adhere to the project's coding standards.
4. Test your changes by running the appropriate test command (e.g., `npm test` or `yarn test`). You may also update tests.
5. Submit a pull request for your changes, and we'll review them as soon as possible.
## 📄 License
MIT © Patrissol KENFACK
| A React component and hook to handle clicks outside a specified element, useful for closing dropdowns, modals, and more. | click-outside,event-listener,interaction,javascript,react,react-component,react-hooks,typescript,ui | 2023-03-15T18:14:20Z | 2023-03-27T13:36:50Z | 2023-03-16T19:39:36Z | 2 | 2 | 26 | 1 | 1 | 8 | null | MIT | TypeScript |
crimson-projects/cubic-bezier-page-transition-GSAP | main | <div align="center">
# Cubic bezier page transition. GSAP | Crimson
<img src="admin/base.png">
### by <a href="https://github.com/python019">SUBUX</a>
</div> | Cubic bezier page transition. GSAP | css,gsap,html,javascript,page-transitions,tweenmax | 2023-03-18T08:17:22Z | 2023-03-18T08:18:06Z | null | 2 | 0 | 1 | 0 | 0 | 8 | null | null | JavaScript |
CodingWithEnjoy/Vite-Portfolio | main | <h2 align="center">سایت شخصی | Personal Portfolio With Vite</h2>
###
<h4 align="center">دمو | Demo 😁<br><br>https://codingwithenjoy.github.io/Vite-Portfolio</h4>
###
<p align="left"></p>
###
<p align="left"></p>
###
<div align="center">
<img height="1494" src="https://user-images.githubusercontent.com/113675029/226109950-08f9ee18-38f4-4adc-afcd-128223e73aad.png" />
</div>
###
<p align="left"></p>
###
<div align="center">
<img height="8000" src="https://user-images.githubusercontent.com/113675029/226109984-395aa65d-f8f7-4115-8ed5-7a6a4fda8a8f.png" />
</div>
###
<p align="left"></p>
###
<p align="left"></p>
###
<p align="left"></p>
###
<div align="center">
<a href="https://www.instagram.com/codingwithenjoy/" target="_blank">
<img src="https://raw.githubusercontent.com/maurodesouza/profile-readme-generator/master/src/assets/icons/social/instagram/default.svg" width="52" height="40" alt="instagram logo" />
</a>
<a href="https://www.youtube.com/@codingwithenjoy" target="_blank">
<img src="https://raw.githubusercontent.com/maurodesouza/profile-readme-generator/master/src/assets/icons/social/youtube/default.svg" width="52" height="40" alt="youtube logo" />
</a>
<a href="mailto:codingwithenjoy@gmail.com" target="_blank">
<img src="https://raw.githubusercontent.com/maurodesouza/profile-readme-generator/master/src/assets/icons/social/gmail/default.svg" width="52" height="40" alt="gmail logo" />
</a>
<a href="https://twitter.com/codingwithenjoy" target="_blank">
<img src="https://raw.githubusercontent.com/maurodesouza/profile-readme-generator/master/src/assets/icons/social/twitter/default.svg" width="52" height="40" alt="twitter logo" />
</a>
</div>
###
<p align="left"></p>
###
<h4 align="center">توسعه داده شده توسط برنامه نویسی با لذت</h4>
###
| سایت شخصی | Personal Portfolio With Vite 🫡🤩🚀 | css,html,javascript,js,json,personal-website,portfolio,portfolio-website,react,reactjs | 2023-03-16T11:11:21Z | 2023-03-18T13:50:09Z | null | 1 | 0 | 3 | 0 | 1 | 8 | null | MIT | JavaScript |
heypoom/songphracharoen.js | main | # ทรงพระเจริญ.js (SongPhraCharoen.js)
เพิ่มหน้า "ทรงพระเจริญ" เข้าไปในเว็บคุณภายใน 1 นาที โดยไม่ต้องเขียนโค้ดเพิ่ม ลดเวลาพัฒนาเว็บของนักพัฒนารัฐบาลให้ไปทำอะไรที่มีประโยชน์กว่านี้ให้ประชาชน จะได้คุ้มภาษีหน่อย
Easily add Song Phra Charoen splash screen and save thousands of government web developer's time to do more useful things for the people.

### Demo
See the demo in action at [heypoom.github.io/songphracharoen.js](https://heypoom.github.io/songphracharoen.js). The demo uses the latest version of songphracharoen.js.
### Quick Start
Add the following script tag to use SongPhraCharoen.js
```html
<script src="//www.unpkg.com/songphracharoen/dist/index.js"></script>
```
### Install via NPM
You can also install the package using `npm` or `yarn` if needed.
```bash
npm install songphracharoen
```
```bash
yarn add songphracharoen
```
Then, import the package in your JavaScript file.
```js
import 'songphracharoen'
```
### How to customize?
Refer to the exported `RoyalSplashScreenOptions` type for the up-to-date configuration options.
For example, you can customize whether to enable book signing, the language, and the themes using the below configuration.
```html
<script>
window.RoyalSplashScreenOptions = {
// Enables the book signing button (ลงนามถวายพระพร)
signing: true,
// Uses the "blue" theme instead.
theme: 'sky',
// Use the english language as the default language.
language: 'en',
}
</script>
```

| Easily add Song Phra Charoen splash screen and save thousands of government web developer's time to do more useful things | html,javascript,library | 2023-03-23T16:55:56Z | 2023-03-23T20:55:00Z | null | 1 | 0 | 40 | 3 | 1 | 8 | null | null | TypeScript |
Durgesh4993/Photo-Editor | main | # About Photo-Editor
This photo editing application is one of those elegantly powerful PHP project ideas that blend JavaScript and PHP to produce a web app for users to create beautiful digital artwork. This PHP project also forces you to use object-oriented programming, which is a great way to hone these skills.
Using XAMPP, you’ll provide an array of tools for users to draw whatever they want! At the center of this project is the ‘brush tool’, allowing users to select various colors and brush sizes to produce creative drawings.
# Tech Stack Used
- HTML
- CSS
- JavaScript
- Bootstrap
- jQuery
- PHP etc.
# Hosted Link
* ) https://durgesh4993.github.io/Photo-Editor/
## Raise an issue
You can raise an issue to report a bug or to request a new feature. Before raising an issue, please make sure that the issue you are raising is not already present among the existing issues.
# How to make a PR
<!-- in detail -->
1. Fork the repo.
2. After forking, clone the repo to your local machine.
To clone the repo to your local machine, run the following command in your terminal:
```bash
git clone https://github.com/<your-github-username>/Photo-Editor
```
3. Add a remote upstream to the original repo.
To add a remote upstream, run the following command in your terminal:
```bash
git remote add upstream https://github.com/Durgesh4993/Photo-Editor
```
4. Create a new branch.
To create a new branch, run the following command in your terminal:
```bash
git checkout -b <your-branch-name>
```
5. Make changes in source code.
6. Add your changes
To add your changes, run the following command in your terminal:
```bash
git add <File1 changed> <File2 changed> ...
```
7. Commit your changes.
To commit your changes, run the following command in your terminal:
```bash
git commit -m "<your-commit-message>"
```
8. Push your changes.
To push your changes, run the following command in your terminal:
```bash
git push origin <your-branch-name>
```
9. Create a PR.
## Alternatively Using GitHub Desktop:
1. Open GitHub Desktop and log in to your GitHub account.
2. Make sure you are on the "Current Repository" view. If not, go to "File" and select "Add Local Repository" to add your repository.
3. In the "Current Repository" view, ensure you are on the branch that you want to submit a pull request for. If you're not on the correct branch, use the "Branch" menu to switch to the correct branch.
4. Once you're on the correct branch, make your changes and commit them to the branch. You can do this by clicking the "+" button in the upper-left corner of the GitHub Desktop window, making your changes, and then entering a commit message.
5. After you've made your changes and committed them, click the "Push origin" button in the top-right corner of the GitHub Desktop window. This will push your changes to the remote repository on GitHub.
6. Now, go to the GitHub website, navigate to your fork of the repository, and you should see a button to "Compare & pull request" between your fork and the original repository, click on it.
7. On the pull request page, you can review your changes and add any additional information, such as a title and a description, that you want to include with your pull request.
8. Once you're satisfied with your pull request, click the "Create pull request" button to submit it.
**Note:** In order to create a pull request, you must have a fork of the original repository in your GitHub account and you must have made the changes in that forked repository.
## That's it! You have made your contribution to the project.
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
# Some Images







| This photo editing application is one of those elegantly powerful PHP project ideas that blend JavaScript and PHP to produce a web app for users to create beautiful digital artwork. This PHP project also forces you to use object-oriented programming, which is a great way to hone these skills. | photo,photoeditor,photography,html,javascript,project | 2023-03-24T06:05:17Z | 2024-01-27T16:13:35Z | null | 1 | 1 | 64 | 3 | 4 | 8 | null | MIT | JavaScript |
CodingWithEnjoy/Vite-Spotify-Clone | main | <h2 align="center">اسپاتیفای | Spotify Clone</h2>
###
<h4 align="center">دمو | Demo 😁<br><br>https://codingwithenjoy.github.io/Vite-Spotify-Clone</h4>
###
<p align="left"></p>
###
<p align="left"></p>
###
<div align="center">
<img height="350" src="https://user-images.githubusercontent.com/113675029/226109739-8b9dc74c-1516-465d-8d6e-70b16b733f08.png" />
</div>
###
<p align="left"></p>
###
<div align="center">
<img height="350" src="https://user-images.githubusercontent.com/113675029/226109757-de89606e-1403-4435-a337-7b2bcf743ca2.png" />
</div>
###
<p align="left"></p>
###
<div align="center">
<img height="350" src="https://user-images.githubusercontent.com/113675029/226109794-c7e6ab89-336d-467b-ade9-6d82db54ef91.png" />
</div>
###
<p align="left"></p>
###
<p align="left"></p>
###
<div align="center">
<a href="https://www.instagram.com/codingwithenjoy/" target="_blank">
<img src="https://raw.githubusercontent.com/maurodesouza/profile-readme-generator/master/src/assets/icons/social/instagram/default.svg" width="52" height="40" alt="instagram logo" />
</a>
<a href="https://www.youtube.com/@codingwithenjoy" target="_blank">
<img src="https://raw.githubusercontent.com/maurodesouza/profile-readme-generator/master/src/assets/icons/social/youtube/default.svg" width="52" height="40" alt="youtube logo" />
</a>
<a href="mailto:codingwithenjoy@gmail.com" target="_blank">
<img src="https://raw.githubusercontent.com/maurodesouza/profile-readme-generator/master/src/assets/icons/social/gmail/default.svg" width="52" height="40" alt="gmail logo" />
</a>
<a href="https://twitter.com/codingwithenjoy" target="_blank">
<img src="https://raw.githubusercontent.com/maurodesouza/profile-readme-generator/master/src/assets/icons/social/twitter/default.svg" width="52" height="40" alt="twitter logo" />
</a>
</div>
###
<p align="left"></p>
###
<h4 align="center">توسعه داده شده توسط برنامه نویسی با لذت</h4>
###
| اسپاتیفای | Spotify Clone 🚀😊🤝 | css,html,api,fetch,fetch-api,geocoding,geolocation,javascript,js,json | 2023-03-15T09:20:20Z | 2023-03-18T13:44:31Z | null | 1 | 0 | 2 | 0 | 2 | 8 | null | null | JavaScript |
JayRalph360/DAO-OCR | master | <h1 align="center">DAO OPTICAL CHARACTER RECOGNITION TOOL</h1>
<p align="center">
<img src="https://cdn.investintech.com/wp-content/uploads/2021/06/OCR-Software.jpg">
</p>
[](https://www.python.org)
[](https://flask.palletsprojects.com/en/2.2.x/)
[](https://html.com/)
[](https://www.w3.org/TR/CSS/#css)
[](https://www.javascript.com/)



[](https://www.gitpod.io/)

## About
>A Flask web app that integrates Tesseract OCR to extract text from image files..
[Flask Web App](https://dao-ocr-production.up.railway.app/)
[Hashnode Article](https://jayralph.hashnode.dev/dao-optical-character-recognition-tool-flask-web-app-with-tesseract-ocr-integration)
[Medium Article](https://medium.com/@jayralph360/dao-optical-character-recognition-tool-a-flask-web-app-for-accurate-text-extraction-from-image-13cbe06dd8aa)
[Presentation Slide](https://drive.google.com/file/d/158DYPj-OHhpYpOAnOa_LQt0Q8QqYocMt/view?usp=share_link)
[YouTube Demo](https://www.youtube.com/watch?v=mGFyvvT9jpE)
## Contributors
- **[OKAI RAPHAEL](https://github.com/JayRalph360)**
- **[ABOAGYE SETH](https://github.com/KSetho)**
- **[DANSO DANIEL](https://github.com/DanielDanso)**
## Table of Contents
- [About](#about)
- [Contributors](#contributors)
- [Repository File Structure](#repository-file-structure)
- [Problem Statement](#problem-statement)
- [Proposed Approach](#proposed-approach)
- [Tools Used :wrench:](#tools-used-wrench)
- [Project Proposal Demo](#project-proposal-demo)
- [HTML Web App Demo](#html-web-app-demo)
- [OCR In Action](#ocr-in-action)
- [How to run the Application](#how-to-run-the-application)
- [Tests](#tests)
- [Deployment](#deployment)
- [License](#license)
- [TODO](#todo)
## Repository File Structure
```bash
├───static
│ ├───css
│ │ └───images
│ ├───font-awesome
│ │ └───fonts
│ ├───fonts
│ │ ├───font-awesome-4.7.0
│ │ │ ├───css
│ │ │ ├───fonts
│ │ │ ├───less
│ │ │ └───scss
│ │ ├───Linearicons-Free-v1.0.0
│ │ │ └───WebFont
│ │ ├───montserrat
│ │ └───poppins
│ ├───forms
│ ├───img
│ ├───js
│ ├───test-img
│ ├───vendor
│ │ ├───aos
│ │ ├───bootstrap
│ │ │ ├───css
│ │ │ └───js
│ │ ├───bootstrap-icons
│ │ │ └───fonts
│ │ ├───boxicons
│ │ │ ├───css
│ │ │ └───fonts
│ │ ├───glightbox
│ │ │ ├───css
│ │ │ └───js
│ │ ├───isotope-layout
│ │ ├───php-email-form
│ │ ├───purecounter
│ │ └───swiper
│ └───vendorlog
│ ├───animate
│ ├───animsition
│ │ ├───css
│ │ └───js
│ ├───bootstrap
│ │ ├───css
│ │ └───js
│ ├───countdowntime
│ ├───css-hamburgers
│ ├───daterangepicker
│ ├───jquery
│ ├───perfect-scrollbar
│ └───select2
├───templates
├───venv
│ ├───Include
│ ├───Lib
│ │ └───site-packages
│ │ ├─── #Files and Folders
│ └───Scripts
└───__pycache__
```

## Problem Statement
>In today's world, we are flooded with a vast amount of data in different forms such as images, PDFs, and scanned documents. Extracting text data from these sources can be a tedious and time-consuming task. It is essential to convert these data sources into a digital format that can be easily processed and analyzed. Manually transcribing text from images is not only time-consuming but also prone to errors, making the process unreliable. This is where Optical Character Recognition (OCR) comes into play. The goal of this project is to create a Flask web app that can integrate Tesseract OCR to extract text from image files accurately.
## Proposed Approach
>The proposed approach is to create a Flask web app that can accept image files, extract text using Tesseract OCR, and display the extracted text in a readable format. The user will be able to upload an image file to the web app, and the web app will process the image using Tesseract OCR. The extracted text will then be displayed on the web app, and the user will have the option to copy the extracted text file. To ensure accuracy, we will test the web app with various image file formats and compare the extracted text with the original text.
## Tools Used :wrench:
- Python
- Flask
- Flask-Scss
- HTML
- CSS
- Javascript
- Tesseract-OCR
- Pytesseract
- Rails
- Docker
## Project Proposal Demo
https://user-images.githubusercontent.com/84851293/227244865-c4105cbd-fc6b-4d7b-a7f7-f6fe8d82e6e5.mp4
## Web App Demo
https://user-images.githubusercontent.com/84851293/233355799-b4a7fbfc-8be8-4d0a-8de6-7000607439ae.mp4
## OCR In Action

## How to run the Application
<details>
<summary><b>Running on Local Machine</b></summary>
**To run the application on your local system do the following:**
1. Clone the repository:
```bash
git clone https://github.com/JayRalph360/DAO-OCR.git
```
2. Change the directory:
```
cd DAO-OCR
```
3. Install the requirements:
```
pip install -r requirements.txt
```
4. Run the application
```
python -m flask run
```
**You should be able to view the application by going to http://127.0.0.1:5000/**
</details>
<details>
<summary><b>Running on Local Machine with Docker Compose</b></summary>
**You can also run the application in a docker container using docker compose(if you have it installed)**
1. Clone the repository:
```bash
git clone https://github.com/JayRalph360/DAO-OCR.git
```
2. Change the directory:
```
cd DAO-OCR
```
3. Run the docker compose command
```docker
docker compose up -d --build
```
You should be able to view the application by going to http://localhost:5000/
</details>
<details>
<summary><b>Running in a Gitpod Cloud Environment</b></summary>
**Click the button below to start a new development environment:**
[](https://gitpod.io/#https://github.com/JayRalph360/DAO-OCR.git)
</details>
## Tests
<details>
<summary><b>Test Flask Web App Functions</b></summary>
To test the Flask Web app do the following:
1. Clone the repository:
```
git clone https://github.com/JayRalph360/DAO-OCR.git
```
2. Change the working directory and install the requirements and pytest:
```
cd src && pip install -r requirements.txt && pip install pytest
```
3. Move to the tests folder and run the tests
```
cd .. && cd tests && pytest
```
</details>
## Deployment
<details>
<summary><b>Deploying the Application to Heroku</b></summary>
**Assuming you have git and heroku cli installed just carry out the following steps:**
1. Clone the repository:
```bash
git clone https://github.com/JayRalph360/DAO-OCR.git
```
2. Change the directory:
```
cd DAO
```
3. Login to Heroku
```
heroku login
heroku container:login
```
4. Create your application
```
heroku create your-app-name
```
Replace **your-app-name** with the name of your choosing.
5. Build the image and push to Container Registry:
```
heroku container:push web
```
6. Then release the image to your app:
```
heroku container:release web
```
Click the button below to deploy the application.
[](https://heroku.com/deploy)
</details>
<details>
<summary><b>Deploy the Application to Railway<b></summary>
Click the button below to deploy the Application to railway
[](https://railway.app/new/template/k_WXDI?referralCode=ZYOf2M)
</details>
## License
[GNU General Public License v3.0](https://github.com/JayRalph360/DAO-OCR/blob/master/LICENSE)
## TODO
- [x] Research
- [x] Development
- [x] Deployment
- [x] Testing
- [x] Artcle writing
- [x] Presentation
| A Flask web app that integrates Tesseract OCR to extract text from image files. | css,flask,html,javascript,pillow,pytesseract,scss,tesseract-ocr,python | 2023-03-21T02:04:04Z | 2023-05-14T20:13:07Z | null | 3 | 0 | 70 | 0 | 1 | 8 | null | GPL-3.0 | Python |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.