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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
home-assistant-tutorials/03.hello-world-card-plus | main | # Hello World Card Plus
Some steps beyond
***
* @published: January 2023
* @author: Elmar Hinz
* @workspace: `conf/www/tutor`
You learn:
* how to assist the setup with error messages
* how to provide a default configuration for the card
* how to add the card to the visual selection
## Prerequisites
* tutorial 02: Hello world card
## Setup
Take the same steps as for the previous tutorial. Mind to update the
path of the resource of the `hello-world-card` to match this repository.
## The Code
Find the code in the file named `card.js` alongside with this README.
### Assisting the setup
While setting up your card in the dashboard, `setConfig()` gets triggered upon
edit with the configuration data.
```js
setConfig(config) {
if (!config.entity) {
throw new Error('Please define an entity!');
}
this.config = config;
}
```
You consume it to set up the internal
configuration of the object. Our card requires an entity. If it is missing, the
method throws an error.

The error will be caught to be displayed in an error frame to guide the user.
### Providing a default configuration
To provide a default configuration define a method `getStubConfig`. It must
return a data object (json) holding the properties you want to set a default for
(without the `type:` parameter).
```js
static getStubConfig() {
return { entity: "sun.sun" }
}
```

If you change the code in `card.js` for testing, you may have difficulties to
reload it. In this case it may help, to directly reload the script and check,
that it has been updated.
### Adding the card to rhe visual card selection
To register your card for the visual selection register it the the
`window.customCards` list. Add an object with the keys `type` and `name` and
optionally `description`.
```js
window.customCards = window.customCards || [];
window.customCards.push({
type: "hello-world-card",
name: "Hello World Card",
description: "A custom card made by me!" // optional
});
```
The type has to match the name of the custom element you did set. Remember?
```js
customElements.define('hello-world-card', HelloWorldCard);
```

#### A note aside
If you are a little experienced, you will wounder, that there is no interface to
register the card and that the internal implementation of the registry gets
exposed. You even have to care to create the list, if it does not already exist.
That's a decision made by the developers. A likely reason is, that all
dependencies shall be avoided to give you the full freedom to choose your own
tools. You may consider to pack the lines after the body of the class into a
function with suitable parameters, that you can reuse for all your cards.
### Summary
Let's wrap up the ***Hello World*** tutorials. There are two main points to
mention on the level of architecture.
First, the card is a [***custom
element***](https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_custom_elements).
The class inherits a lot of methods from `HTMLElement` or any equivalent parent
class. Often you will find cards, that inherit from [`LitElement`](https://lit.dev).
Second, there is an interface to the ***Home Assistant Frontend***. Some methods
are required, others are optional. There is no full specification yet. In doubt
the source is the authority.
You did learn, how to throw errors to help the user with the setup of the card.
In addition you can provide a default configuration. Finally you did learn, how
to register the card for the visual card selection.
| Improving the hello world card | hello-world,home-assistant,home-assistant-frontend,javascript,tutorial | 2023-01-28T17:53:28Z | 2023-05-24T13:42:23Z | null | 1 | 0 | 5 | 1 | 2 | 5 | null | null | JavaScript |
Deepeshgodhwani/ChatTap | main | <h1 align="center">ChatTap</h1>
<h2 align="center">It's a MERN Stack Real-time end to end encrypted chat web app</h2>
<br />
<p align="center">
<img src="https://img.shields.io/badge/CSS3-1572B6?style=for-the-badge&logo=css3&logoColor=white" alt="css3"/>
<img src="https://img.shields.io/badge/tailwindcss-%2338B2AC.svg?style=for-the-badge&logo=tailwind-css&logoColor=white" alt="Tailwind css" />
<img src="https://img.shields.io/badge/JAVASCRIPT-%230077B5.svg?&style=for-the-badge&color=black&logo=JAVASCRIPT&logoColor=yellow" alt="javascript"/>
<img src="https://img.shields.io/badge/React-20232A?style=for-the-badge&logo=react&logoColor=61DAFB" alt="reactjs" />
<img src="https://img.shields.io/badge/Chakra%20UI-3bc7bd?style=for-the-badge&logo=chakraui&logoColor=white" alt="chakra-ui"/>
<img src="https://img.shields.io/badge/Socket.io-010101.svg?style=for-the-badge&logo=socketdotio&logoColor=white" alt="socket.io" />
<img src="https://img.shields.io/badge/Node.js-339933?style=for-the-badge&logo=nodedotjs&logoColor=white" alt="nodejs" />
<img src="https://img.shields.io/badge/Express.js-000000?style=for-the-badge&logo=express&logoColor=white" alt="expressjs"/>
<img src="https://img.shields.io/badge/MongoDB-4EA94B?style=for-the-badge&logo=mongodb&logoColor=white" alt="mongodb"/>
</p>
<p align="center">
<br />✧
<a href="https://www.linkedin.com/feed/update/urn:li:activity:7033886022119632896/">View Demo</a> ✧
<a href="https://github.com/Deepeshgodhwani/ChatTap/issues">Report Bug</a> ✧
<a href="#Getting-Started">Getting Started</a> ✧ <a href="#Install">Installing</a> ✧
<a href="#Contact">Author</a> ✧
</p>
<br/>
This is a web-based chat application that provides end-to-end encrypted chat functionality to its users. The app is designed to be user-friendly and secure, allowing users to have private and secure conversations with each other.The app is built using modern web technologies, including React.js for the front-end and Node.js for the back-end. The application uses a secure communication protocol that ensures all messages are encrypted from the sender to the recipient.
<br/>

<br />
## ๐ Features
- Login/Signup User Account.
- JWT (Json Web Token) Authentication and BcryptJS Password Hashing.
- Profile picture and username update feature.
- Real-time search of users.
- One-to-one / Group chat.
- Create group and admin authority features ( Add / Remove from the group ).
- Exit from group fearture.
- View user / Group info .
- Group Profile picture and group name update feacture.
- Real-time group notifications / Unseen messages count.
<br />
## Glimpses of ChatTap ๐ :
<table>
<tr>
<td><img src="https://res.cloudinary.com/dynjwlpl3/image/upload/v1676485142/Chat-app/chatLogin_grmqbc.png" alt="sign in" /></td>
<td><img src="https://res.cloudinary.com/dynjwlpl3/image/upload/v1676485142/Chat-app/chatsignup_gt3jry.png" alt="signup" /></td>
</tr>
<tr>
<td><img src="https://res.cloudinary.com/dynjwlpl3/image/upload/v1676485150/Chat-app/chat1_nvkpoy.png" alt="home" /></td>
<td><img src="https://res.cloudinary.com/dynjwlpl3/image/upload/v1676485143/Chat-app/chat2_c471zh.png" alt="chat" /></td>
</tr>
<tr>
<td><img src="https://res.cloudinary.com/dynjwlpl3/image/upload/v1676485143/Chat-app/chat3_a3xnes.png" alt="profile" /></td>
<td><img src="https://res.cloudinary.com/dynjwlpl3/image/upload/v1676485143/Chat-app/chat4_prqgf3.png" alt="view" /></td>
</tr>
</table>
<br />
## Demo
[Check here to see the presentation video of this project](https://www.linkedin.com/feed/update/urn:li:activity:7033886022119632896/)
<br/>
## Getting Started
This project was built using React, Chakra UI, CSS, JavaScript,Cryptojs, Node JS, Express and MongoDB. It is an Chat web application and for running on your local environment you should follow these guidelines.
### Prerequisites
- NPM
- Node JS
- MongoDB
### Setup
The project repository can be found in [GitHub link](https://github.com/Deepeshgodhwani/ChatTap) or just clone the project using this command.
```
Using HTTPS
# git clone https://github.com/Deepeshgodhwani/ChatTap.git
```
+ Open terminal on your workspace with
```
cd /home/workspace/ChatTap
```
## Install
Install NPM
Check that you have node and npm installed
To check if you have Node.js installed, run this command in your terminal:
```
node -v
```
To confirm that you have npm installed you can run this command in your terminal:
```
npm -v
```
To confirm that you have MongoDB installed you can run this command in your terminal:
```
mongo -v
```
To install all the dependences of the project, run the following command:
```
cd client
npm install
cd ../
cd server
npm install
```
To run the application got to the client folder and run the following command:
```
npm start
```
### Environment Variables
To run this project, you will need to add the following environment variables to your .env file in server folder
`JWT_ACCESS_KEY`
`MONGO_PATH`
### Tools used on this project
- Visual Studio Code
- create-react-app template
- MongoDB compass
<br/>
## Contact
If you want to contact me, you can reach me through below handles.
[](https://linkedin.com/in/deeepesh-godhwani-4269531b0)
[](https://github.com/Deepeshgodhwani)
ยฉ 2023 Deepesh Godhwani
## Show your support
Give a โญ๏ธ if you like this project!
| ChatTap is a web-based chat application that provides end-to-end encrypted chat functionality to its users.The app is built using modern web technologies . | cryptojs,chakra-ui,expressjs,javascript,mongodb-database,mongoosejs,node-js,react-router-dom,reactjs,tailwindcss | 2023-02-05T11:22:43Z | 2023-04-19T18:34:08Z | null | 1 | 0 | 36 | 0 | 2 | 5 | null | null | JavaScript |
Brandon-Alvarez-03/Quick_JavaScript_Refreshers | submissions | # JavaScript Fundamentals Refresher
Welcome to the Open Source JavaScript Fundamentals Refresher repository! This repository contains a collection of quick mini projects that serve as a refresher for JavaScript fundamentals.
Each project is designed to reinforce key concepts and provide hands-on experience with the language. Whether you are a beginner looking to improve your JavaScript skills or an experienced developer looking to keep your knowledge fresh, this repository has something for you.
## Project Topics
---
- Topic 1: Variables and Data Types
- Topic 2: Operators and Conditional Statements
- Topic 3: Functions and Arrays
- Topic 4: Loops and Objects
## Getting Started
---
1. Clone or download the repository to your local machine.
2. Open each project folder to see the project instructions and starting code.
3. Code along with the instructions or use the starting code as a reference to create your own solution.
## Contributing
---
This repository has a [`CONTRIBUTING.md`](CONTRIBUTING.md) file to guide you through the contribution process. Please read through it before making any contributions.
The repository [Wiki](https://github.com/Brandon-Alvarez-03/Quick_JavaScript_Refreshers/wiki) is also a great quickstarting guide on contributing to this repository!
[Opensource.guide](https://opensource.guide/how-to-contribute/)
### Encouraged Code Comments
---
Adding comments to your code is a best practice that not only helps others understand your code, but also serves as a reminder for yourself in the future. In this repository, multiline comments are encouraged as they allow for a more thorough explanation of the code.
By adding concise and descriptive comments, you can explain what specific code blocks or portions of the code are doing, which can help you or others understand the logic behind the code. Additionally, this makes these simple programs serve as effective refreshers of basic concepts in computer science.
So don't hesitate to add comments to your code as you work through these mini projects, and make this repository a valuable resource for others to learn and improve their JavaScript skills!
## Code of Conduct
---
We have a [`CODE_OF_CONDUCT.md`](CODE_OF_CONDUCT.md) file in this repository to ensure a welcoming and inclusive environment for everyone. Please read through it and follow its guidelines.
## License
---
This repository is licensed under the terms of the MIT License. You can find the license text in the [`LICENSE`](LICENSE) file.
## Conclusion
---
With the help of this repository, you can improve your understanding of JavaScript fundamentals and become more confident in your coding abilities. So, get ready to dive in and refresh your skills today!
| Open-Source JavaScript Mini-Project Library | javascript,javascript-fundamentals,mini-projects,open-source,beginner-friendly | 2023-02-07T15:45:16Z | 2023-02-28T03:39:23Z | null | 2 | 12 | 61 | 1 | 4 | 5 | null | MIT | JavaScript |
thejunghare/FrontEndComponents | main | ## FrontEndComponents
This is code snippets to the regularly used front end components you can make use this code snippets for your next web dev projects and aslo add contribution to this existing repository, more components while be added soon..!
## Live preview to the components is given below in sequence
- [Component 01 - Navbar](https://component-navbar.netlify.app/)
- [Component 02 - Accordion](https://component-accordion.netlify.app/)
- [Component 03 - Sidebar](https://component-sidebar.netlify.app/)
- [Component 04 - Modal](https://component-modal.netlify.app/)
- [Component 05 - Alert](https://component-alert.netlify.app/)
- [Component 06 - Badges](https://component-badges.netlify.app/)
- [Component 07 - Dropdown](https://component-dropdown.netlify.app/)
- [Component 08 - Cards](https://component-cards.netlify.app/)
Finally fork this repository. Don't forget to star this repository and increase my motivation to add new components regularly, aslo share to some one who might be in need of this code snippets.
| This is code snippets to the regularly used front end components you can make use this code snippets for your next web dev projects and aslo add contribution to this existing repository, more components while be added soon..! | css,html,javascript | 2023-01-27T17:44:52Z | 2024-03-01T08:40:20Z | null | 1 | 4 | 125 | 0 | 2 | 5 | null | null | HTML |
eraygundogmus/blog-backend | main | null | This is an open source API template for personal blog | express,javascript,mysql,swagger,typescript | 2023-01-27T15:38:08Z | 2023-02-04T17:40:10Z | null | 1 | 0 | 18 | 5 | 0 | 5 | null | null | TypeScript |
dappsar/ecommerce-micro-service-nodejs | main | 







# eCommerce micro-service app
## Introduction
A practical example of NodeJS Microservices Architecture.
it is a simple eCommerce Application using Microservices Architecture without impact frontend. So each individual services will work independently to server the purpose and business logic.

## Folder description
- [./app](./app): a simple frontend App
- [./customer](./customer): customer micro-services
- [./products](./products): products micro-services
- [./shopping](./shopping): shopping micro-services
- [./proxy](./proxy): nginx files
## Technology Stack & Tools
- Visual Studio Code
- nvm / nodejs / npm / npx
- Javascript (React & Testing)
- Express
- MongoDb
- [Studio 3T](https://studio3t.com/)
- reactjs, Redux
- micro-services
- nginx
- docker, docker-compose
- [jest-js](https://jestjs.io/)
- [cloudamqp](https://www.cloudamqp.com/)
## Requirements For Initial Setup
- Install [NodeJS](https://nodejs.org/)
- Install [mongoDb](https://www.mongodb.com/)
- Register and get a free Queue in [cloudamqp](https://www.cloudamqp.com/) or use a local Queue (more details [here](https://www.rabbitmq.com/download.html))
## Setting Up
### 1. Clone/Download the Repository
`$ git clone repo_url`
### 2. Install Dependencies
`$ npm install` (in each folder: app, customer, shopping, products)
### 3. Configure env variables
- Create .env.dev file in each folder (app, customer, shopping, products).
- Set the value of the variables based on the example file _sample_env_.
### 4. Start services
`$ docker-compose -f docker-compose.yml up`
### 5. Start app
- dev:
`$ npm run start`
**Important note**: Take care that the app has setted only one url base + port to all services in code, assuming services are started with a reverse proxy (nginx). So, if you start each service in separate url and port, the app will not work for you.
### 6. Run tests
`$ npm run test`
### 7. Postman endpoints
See postman json file in [./.doc/pstman](./.doc/pstman)
---
# References
* EXDkgjU8DDU
| eccomerce-micro-service-nodejs | expressjs,microservices,mongodb,nodejs,javascript,jest-tests,rabbitmq | 2023-02-07T17:48:11Z | 2023-02-09T16:14:48Z | null | 1 | 5 | 20 | 0 | 0 | 5 | null | null | JavaScript |
Govind783/frog-project | main | # frog-project
built the front-end for a freelance client "froggies" for their crypto project
The website is built with React for Froggies crypto project, it consists of the home page, careers page, career specific page, partners page, tokenNomics page, FAQ and the Manifesto Page.
Upon clicking on "intersteallar" in the navbar a modal opens up with various options as per the client's requirement and each of it routing it to a specific page.
PS: the backend is being handled by the client's teams after setting up the server and some work on the dns the website would be live on the current domain https://froggiestoken.com/ by Feb of 2023.
Till then I'm attaching the deployed front-end link and some screenShots:)
Home page section 1 =>

HomePage section 2 =>

HomePage section 4 =>

careers page => url = /careers

careers page again => url = /careers

manifesto Page => url = /manifesto

careers specific page => url = /careers/jobname

career specific page again => url = /careers/jobname

FAQ page => url =/faq

The intersteallar Modal => (opens upon clicking intersteallar in the navbar)
<img src="https://media.giphy.com/media/zw2zUjdRcdpKXdEMPP/giphy.gif" alt="example gif" title="intersteallar modal">
Orbiting P2E you get this in the modal of intersteallar (present on the navbar)

| built the front-end for a freelance client "froggies" for their crypto project | client-project,cryptocurrency,freelance,freelance-work,freelancer,javascript,react,web3 | 2023-01-26T17:19:35Z | 2023-05-15T14:39:08Z | null | 1 | 0 | 23 | 0 | 2 | 5 | null | null | JavaScript |
Choaib-ELMADI/ard-uno | master | <h1><a href='https://ard-uno.netlify.app' target='_blank'>Ard-Uno</a></h1>
<br>
<h3>Reasons to develop this website</h3>
<ul>
<li>Improve my knowledge in React</li>
<li>Improve my knowledge in Electronics & Arduino</li>
<li>Showcase my skills</li>
<li>Provide some help to others</li>
</ul>
<br>
<h1>Large Devices :</h1>
<img src="demos/desktop__1.png" width="500" /> <img src="demos/desktop__2.png" width="500" /> <img src="demos/desktop__3.png" width="500" />
<h1>Small Devices :</h1>
<img src="demos/phone__1.png" width="200" /> <img src="demos/phone__2.png" width="200" /> <img src="demos/phone__3.png" width="200" /> <img src="demos/phone__4.png" width="200" /> <img src="demos/phone__5.png" width="200" />
| Sharing arduino projects, electronics, schemas and full functional code. | arduino,arduino-ide,arduino-uno,javascript,reactjs | 2023-02-05T17:59:59Z | 2023-09-26T07:11:00Z | null | 1 | 0 | 134 | 0 | 0 | 5 | null | null | JavaScript |
hekors/budgetstay | main | <!-- # <b style="color:Darkblue">BudgetStay</b> -->
<center><img src="./Group.png" style="background: #020817; padding:4px 8px; border-radius:12px; margin:0px 0px 20px "></center>
<blockquote> Your one-step <b>DESTINATION!</b> Mark a home away from home. </blockquote>
Table of contents:
<table>
<tr>
<td>1.</td>
<td> What is BudgetStay</td>
</tr>
<tr>
<td>2.</td>
<td> Problem Statement</td>
</tr>
<tr>
<td>3.</td>
<td> The Solution</td>
</tr>
<tr>
<td>4.</td>
<td> Our Tech Stack </td>
</tr>
<tr>
<td>5.</td>
<td>Contributions</td>
</tr>
<td>6.</td>
<td>References </td>
</tr>
</table>
## What is BudgetStay?
BudgetStay is a budget-friendly accommodation specially designed for students to provide clean and hygienic homes away from home. After all, we all love our home as much as we love our food. Homes are as lovable as food. Both provide comfort, warmth, and never disappoint.
MEME
## Problem Statement
Nowadays, finding a space to live has become so much easier. But you donโt get the guaranty of being secure and safe.
You get what you want, but the reality is very different! Let's say you are looking for hostels that provide vegetarian food (especially Jain food). You visit and find it to be an ideal place for you to stay. Once you start living, you realize that everything was just "dikhane ke daat"! Here is a real-time problem faced by one of the students.
Tweet goes here...
## The Solution
The major goal of this platform is to make it free of charge, easily accessible to everyone, and provide a better user experience. BudgetStay promises you security and safety first. Trust us, find a home, and thank us later when you leave.
#### Our facilities that feels like home
1. Freshly made foods
2. Area of your choice
3. Free of cost
4. Valuable hostels and flats
5. Security is our priority
## Our Tech Stack
To begin with, first, we did User Research. Next, we created the user flow and functionality. This led us to high-fidelity design and implementation. Here is our tech stack.
1. Figma for UI designing.
2. Next js for frontend development.
3. Node js for backend development.
4. Appwrite for Authentication purpose.
5. Chakra UI for UI Components.
6. Twilio is used for chating purpose.
## References
* To design the user flow, we have used FigJam. Here is the link: [HTF Project](https://www.figma.com/file/uKHXgWSC7L33x459G60KkF/HTF-Project-Structure%2FDesign?node-id=12%3A692&t=gdnIrafQHH8xqcQo-0)
* For documentation, we have used [Notion](https://sneha-farkya.notion.site/BudgetStay-0592aaaa62124cb6a0314725b2c89924) file.
| BudgetStay is a budget-friendly accommodation specially designed for students to provide clean and hygienic home away from home aka hostels and flats. | accommodation,student,budget-friendly,hygenic,budgetstay,appwrite,chakra-ui,figma,javascript,nextjs | 2023-02-03T18:41:15Z | 2023-02-17T06:37:59Z | null | 11 | 1 | 52 | 0 | 3 | 5 | null | null | JavaScript |
ricardodeazambuja/arxiv-highlighter | main | # arxiv-highlighter
I read a lot of papers from [arXiv](https://arxiv.org/) (:heart:), and I was missing a way to share a URL that would show a whole pdf highlighting, with or without notes, something I consider important. This will also be useful when you are discussing a paper with someone or pointing where you found that special equation or figure.
<p align="center">
<img src="https://user-images.githubusercontent.com/6606382/218593704-e5831beb-d88e-428e-abac-b6f9c17ae66a.png" width=50% height=50%>
</p>
Usage example (yup, just click on the link to see a demo, maybe try a `shift or ctrl + F5` to force reload if the rectangles look crazy):
<a href="https://arxiv-highlighter.github.io/#url=https://arxiv.org/abs/2103.04423&page=1&cdata=IwGg5iAMB0wBxWgZgCyIExpkgbCAQgKYA2A9gO4AE5AFgIYAulAzqQLaGUDGpArgHYMATgEtCzbqX7MRAE0JDKDGpzZ0AHiLa821QiLA0mAI0IAzUkM7LO-QoVmULi5gAdCXEXWKViIroTS4iCUhAxc0ABkoKSIAKzoiMAAnIgA7HGISJkAirx0sjyuDAqUvDL8YJR0lGwi6gy8VpSkZpSiYHLV-I5mxISaxv2UrnRCDMxRiUJJWNDomTDoaRgrACoqlMZ0bMakpJQAbgoyUpQiEoR0MqUMB8a8IsSyIQ9MIu8S-cwSQqQPzCYdDAdBE0iYXCE1xUk0iiQAnhg8EsVjAUKklghIkhwIhIKjoJBFtBkqAljiNuJOFpgeJqs0bO0rqx+EoaBcRrSlHQANZ0siVW4HKw9BQAQiAA">https://arxiv-highlighter.github.io/#url=https://arxiv.org/abs/2103.04423&page=1&cdata=IwGg5iAMB0wBxWgZgCyIExpkgbCAQgKYA2A9gO4AE5AFgIYAulAzqQLaGUDGpArgHYMATgEtCzbqX7MRAE0JDKDGpzZ0AHiLa821QiLA0mAI0IAzUkM7LO-QoVmULi5gAdCXEXWKViIroTS4iCUhAxc0ABkoKSIAKzoiMAAnIgA7HGISJkAirx0sjyuDAqUvDL8YJR0lGwi6gy8VpSkZpSiYHLV-I5mxISaxv2UrnRCDMxRiUJJWNDomTDoaRgrACoqlMZ0bMakpJQAbgoyUpQiEoR0MqUMB8a8IsSyIQ9MIu8S-cwSQqQPzCYdDAdBE0iYXCE1xUk0iiQAnhg8EsVjAUKklghIkhwIhIKjoJBFtBkqAljiNuJOFpgeJqs0bO0rqx+EoaBcRrSlHQANZ0siVW4HKw9BQAQiAA</a>
* `#url=https://arxiv.org/abs/2103.04423`: arxiv url
* `&page=1`: starts at page 1
* `&cdata=...`: compressed data in URI friendly format
## Using a mouse
To add an annotation (rectangle), simply click and drag. A prompt box will allow you to add a note, otherwise just close it. The annotation will be automatically added to the address bar. Click on a rectangle to see (or edit) the note. Right-click on a rectangle to delete it. Right-click everywhere else to change the current color (the border shows it).
## Using a touch screen
To add an annotation (rectangle), simply touch and hold for 300ms (default), and drag. The rectangle will be automatically added to the address bar. One-finger touch on a rectangle will allow you to see (or edit) the note. Two-finger touch on rectangle will delete it. Two-finger touch everywhere else to change the current color (the border shows it).
## Change the pdf page
Just click on the gray boxes on the left (`<`) / right (`>`) rendered over the pdf. You can also change the value (`page`) in the URL and reload.
## How to share or store your annotations
Share the final URL and the other person will be able to see it too, directly from the web browser (thanks to the *magical* `#`), no servers involved.
## Extras
* `&alpha=0.3`: controls the alpha (transparency), defaults to 0.3.
* `&delay=300`: controls the amount of time (ms) you touch down to start a new rectangle, defaults to 300.
* `&search=false`: enable/disable searchable text (mobile browsers seem to struggle with the big svg generated).
* `#url=test.pdf`: you can also access files from your local server.
* `&cdata=...&cdata=...&cdata=...`: annotations created individually can be fused together by pasting multiple `cdata` fields on the same URL.
It works with any pdf file as long as it's hosted in a place that allows Cross-Origin Resource Sharing (CORS).
## TODO
1. Test it using other browsers, operating systems, etc... because I only tested on Chrome-Linux and Safari-iOS.
2. Solve the problems with the touch interface when zooming in/out.
3. Improve the code because it's a terrible mess!
| Allows anyone to share their thoughts by annotating a paper and sharing a URL! | arxiv,arxiv-papers,javascript,pdf | 2023-01-27T23:57:47Z | 2023-02-22T19:47:06Z | null | 1 | 0 | 57 | 0 | 1 | 5 | null | Apache-2.0 | null |
gabrielfu/solidity-math | master | # solidity-math
[](https://badge.fury.io/js/solidity-math)
This package extends [bn.js](https://github.com/indutny/bn.js/) to implement
Solidity integer types and operations. It is useful for replicating public Solidity contract interactions, particularly when developing autonomous agents and DeFi programs.
## Features
- โ
Compatible with Solidity 0.8.17
- โ
Comprehensive Solidity integer types & operators
- Unsigned integers: `uint8`, `uint16`, ..., `uint256`
- Signed integers: `int8`, `int16`, ..., `int256`
- โ
Inline assembly functions: `addmod()` & `mulmod()`
- โ
Unchecked arithmetic
- โ
Type safety checks
- โ
Type casting
- โ
Flexible right operand type (e.g. `uint256(20).add(10)`)
- โ
Support for CommonJS & ES6
## Table of Contents
* [Features](#features)
* [Table of Contents](#table-of-contents)
* [Installation](#installation)
* [Usage](#usage)
* [Motivation](#motivation)
+ [Comprehensive integer sizes](#comprehensive-integer-sizes)
+ [Unchecked arithmetic](#unchecked-arithmetic)
+ [Right shift operator](#right-shift-operator)
+ [Bitwise operators](#bitwise-operators)
* [Documentation](#documentation)
+ [Types](#types)
+ [Operations](#operations)
+ [Maximum and Minimum](#maximum-and-minimum)
+ [Overflow](#overflow)
+ [Unchecked Mode](#unchecked-mode)
+ [Casting](#casting)
* [Example](#example)
+ [Muldiv](#muldiv)
## Installation
```shell
npm i solidity-math
```
## Usage
Named import:
```typescript
import { uint256, uint128, type, unchecked } from "solidity-math";
const a = uint256(10);
const b = uint128(20);
console.log(a.add(b)); // uint256(30)
console.log(a.add(20)); // uint256(30)
console.log(a.add("20")); // uint256(30)
console.log(a.lte(0)); // false
unchecked(() => {
const c = type(uint256).max.add(1).add(a);
console.log(a.eq(c)); // true
});
const c = type(uint256).max.add(1).add(a); // RangeError: Value overflow: uint256(115792089237316195423570985008687907853269984665640564039457584007913129639946)
```
Default import:
```typescript
import SM from "solidity-math";
const a = SM.uint256(10);
const b = SM.uint128(20);
const c = SM.unchecked(() => SM.type(SM.uint256).max.add(11));
```
## Motivation
Certain decentralized applications require external actors to regulraly interact with on-chain contracts to ensure normal operations. DEXs like Uniswap rely on [arbitrageurs](https://github.com/gabrielfu/amm-arbitrage) and [JIT LP](https://uniswap.org/blog/jit-liquidity) to maintain market prices. Jobs on [Keep3r Network](https://keep3r.network/) will only be executed if they are profitable. These external actors need to pre-compute the rewards of their work, often in a very short amount of time to compete with other actors. It is infeasible to do all calculations on a smart contract as the connection overhead will be too slow. This package is an excellent tool to perform such calculations.
### Comprehensive integer sizes
Packages like [fixed-bn](https://github.com/ethereumjs/fixed-bn.js/) and [uint256](https://github.com/artit91/uint256)
offer either only uint256 or limited integer sizes. This package provides all integer sizes suppported by Solidity.
### Unchecked arithmetic
To the best of the author's knowledge, there is no Javascript package that allows users to
toggle on and off `unchecked { ... }` mode. This package does it in the closest possible syntax.
### Right shift operator
Solidity's [right shift operator](https://docs.soliditylang.org/en/v0.8.17/types.html#shifts) (*after v0.5.0*) has
a different implementation than bn.js.
> x >> y is equivalent to the mathematical expression x / 2**y, rounded towards negative infinity.
For example, in Solidity, `-204812 >> 10 == -201`,
whereas in bn.js, `(new BN(-204812)).ushrn(10)` returns `-200`, i.e., rounded **towards zero**.
### Bitwise operators
To replicate Solidity `x & y` in bn.js, one must explicity convert to two's complement representation
and do the verbose `x.toTwos(256).uand(y.toTwos(256)).fromTwos(256)`.
## Documentation
### Types
*Note 1: `uint` & `int` aliases are not implemented as they are redundant and confusing.*
*Note 2: Fixed point numbers are not implemented because it's not fully supported by Solidity yet as of 0.8.17.*
| Unsigned | Signed |
|------------|----------|
| `uint8` | `int8` |
| `uint16` | `int16` |
| `uint24` | `int24` |
| `uint32` | `int32` |
| `uint40` | `int40` |
| `uint48` | `int48` |
| `uint56` | `int56` |
| `uint64` | `int64` |
| `uint72` | `int72` |
| `uint80` | `int80` |
| `uint88` | `int88` |
| `uint96` | `int96` |
| `uint104` | `int104` |
| `uint112` | `int112` |
| `uint120` | `int120` |
| `uint128` | `int128` |
| `uint136` | `int136` |
| `uint144` | `int144` |
| `uint152` | `int152` |
| `uint160` | `int160` |
| `uint168` | `int168` |
| `uint176` | `int176` |
| `uint184` | `int184` |
| `uint192` | `int192` |
| `uint200` | `int200` |
| `uint208` | `int208` |
| `uint216` | `int216` |
| `uint224` | `int224` |
| `uint232` | `int232` |
| `uint240` | `int240` |
| `uint248` | `int248` |
| `uint256` | `int256` |
The base class of all classes is an abstract class `BaseInteger`.
All unsigned integers are of a single subclass `Uint`, and all signed integers `Int`.
These "types" are not Javascript classes, but merely functions to create new Solidity numbers.
### Operations
There are restrictions on the types of operands, as enforced by Solidity.
```typescript
uint256(1).add(uint256(2)); // valid
uint256(1).add(int256(2)); // TypeError: Operator "add" not compatible with types uint256 and int256.
uint64(1).iadd(uint256(2)) // TypeError: Operator "iadd" not compatible with uint64 and a larger type uint256
int256(1).pow(int256(-1)); // TypeError: Operator "pow" not compatible with signed type int256
uint256(-1); // RangeError: Value overflow: uint256(-1)
```
The right operand can also be a regular JS number, string, or another BN.
However, it must fit into the range of left operand type,
and must stay compliant of Solidity restrictions.
```typescript
uint256(1).add(2); // uint256(3)
uint256(1).add("3"); // uint256(4)
uint256(1).add(new BN(4)); // uint256(5)
uint256(1).add(-1); // TypeError: Right operand -1 does not fit into type uint256
int256(1).pow(-1); // TypeError: Operator "pow" not compatible with negative value -1
```
Restrictions:
| Symbol | Description |
|---------- |----------------------------------------------|
| A | `a` must be unsigned |
| B | `b` must be unsigned |
| โ | `a` & `b` must have the same signedness |
| โฅ | `a` must have same or larger type than `b` |
List of Solidity operations supported:
| Method | In-place method | Solidity Equivalent | Restriction | In-place restriction |
|------------------|------------------|---------------------|-------------|----------------------|
| `a.add(b)` | `a.iadd(b)` | `a + b` | โ | โ, โฅ |
| `a.sub(b)` | `a.isub(b)` | `a - b` | โ | โ, โฅ |
| `a.mul(b)` | `a.imul(b)` | `a * b` | โ | โ, โฅ |
| `a.div(b)` | `a.idiv(b)` | `a / b` | โ | โ, โฅ |
| `a.mod(b)` | `a.imod(b)` | `a % b` | โ | โ, โฅ |
| `a.pow(b)` | | `a ** b` | B | |
| `a.neg()` | | `-a` | A | |
| `a.addmod(b, m)` | | `assembly { addmod(a, b, m) }` | โ | |
| `a.mulmod(b, m)` | | `assembly { mulmod(a, b, m) }` | โ | |
| `a.shln(b)` | `a.ishln(b)` | `a << b` | B | B |
| `a.shrn(b)` | `a.ishrn(b)` | `a >> b` | B | B |
| `a.and(b)` | `a.iand(b)` | `a & b` | โ | โ, โฅ |
| `a.or(b)` | `a.ior(b)` | `a \| b` | โ | โ, โฅ |
| `a.xor(b)` | `a.ixor(b)` | `a ^ b` | โ | โ, โฅ |
| `a.not()` | | `~a` | | |
| `a.gt(b)` | | `a > b` | โ | |
| `a.lt(b)` | | `a < b` | โ | |
| `a.gte(b)` | | `a >= b` | โ | |
| `a.lte(b)` | | `a <= b` | โ | |
| `a.eq(b)` | | `a == b` | โ | |
| `a.neq(b)` | | `a != b` | โ | |
Note that for out-of-place arithmetic and bitwise operators, the output will always have the larger type among
`a` and `b`. For example, `int112(0).add(int64(0))` will have type `int112`.
The below comparison methods will return an `Uint` or `Int` instance (either `1` or `0`), depending on `a`, instead of boolean:
| Method | Restriction |
|------------------|-------------|
| `a.gt_(b)` | โ |
| `a.lt_(b)` | โ |
| `a.gte_(b)` | โ |
| `a.lte_(b)` | โ |
| `a.eq_(b)` | โ |
| `a.neq_(b)` | โ |
```typescript
uint256(10).gt(uint256(2)); // true
uint256(10).gt(uint256(20)); // false
uint256(10).gt_(uint256(2)); // uint256(1)
uint256(10).gt_(uint256(20)); // uint256(0)
```
Other supported functions:
| Method | Return type | Description |
|----------------------------|---------------|------------------------------------------------------------------|
| `a.clone()` | `typeof a` | Returns a clone of *a*. |
| `a.cast(_type)` | `_type` | Returns a new instance of type *_type* and the value of *a*. |
| `a.like(b)` | `typeof b` | Returns a new instance of same type as *b* and the value of *a*. |
| `a.toString(base: number)` | `string` | Returns the base-string and pad with zeroes. |
### Maximum and Minimum
For any type, e.g. `uint256`, you can use `type(uint256).min` and `type(uint256).max` to access the minimum and maximum value representable by the type.
```typescript
import { uint256, type } from "solidity-math";
const a = type(uint256).max; // uint256(115792089237316195423570985008687907853269984665640564039457584007913129639935)
```
### Overflow
Same as in Solidity, by default, all arithmetic operations are checked for overflow:
```typescript
import { uint256, type } from "solidity-math";
const a = type(uint256).max;
a.add(1); // RangeError: Value overflow: uint256(115792089237316195423570985008687907853269984665640564039457584007913129639936)
```
### Unchecked Mode
You can replicate Solidity's [unchecked](https://docs.soliditylang.org/en/v0.8.17/control-structures.html#unchecked) behaviour.
Simply put your calculations as a callback function inside `unchecked()`:
```solidity
// Solidity code
uint256 a;
unchecked {
a = type(uint256).max + 1; // 0
}
```
```typescript
// Typescript equivalent
import { uint256, type, unchecked } from "solidity-math";
let a = uint256(0);
unchecked(() => {
a = type(uint256).max.add(1); // uint256(0)
})
```
You can also directly access the return value of your callback function:
```typescript
import { uint256, type, unchecked } from "solidity-math";
const a = unchecked(() => type(uint256).max.add(1)); // uint256(0)
```
For the purpose of this package, you should also perform Solidity inline assembly `assembly { ... }`
in `unchecked` mode.
### Casting
Casting between unsigned & signed types are not allowed.
```typescript
const a = uint256(10);
// Cast a to type uint64
const b = a.cast(uint64);
const c = uint64(a);
// Cast a to same type as b
const d = a.like(b);
```
## Example
### Muldiv
[muldiv](https://xn--2-umb.com/21/muldiv/index.html) is an algorithm that calculates `floor(a * b / denominator)`.
It is also included in [Uniswap V3 FullMath.sol](https://github.com/Uniswap/v3-core/blob/412d9b236a1e75a98568d49b1aeb21e3a1430544/contracts/libraries/FullMath.sol#L8).
Below is the Typescript equivalent function. Note that the original code is in Solidity <0.8.0,
which allows `-uint256(denominator)`. To use this package,
we need to perform `uint256(0).sub(denominator)` in unchecked mode.
```typescript
import { unchecked, uint256, Uint, type } from "solidity-math";
function muldiv(a: Uint, b: Uint, denominator: Uint) {
if (!denominator.gt(0)) {
throw new Error;
}
const mm = unchecked(() => a.mulmod(b, type(uint256).max));
let prod0 = a.mul(b);
let prod1 = mm.sub(prod0).sub(a.lt_(b));
if (prod1.eq(0)) {
return prod0.div(denominator);
}
if (!prod1.lt(denominator)) {
throw new Error;
}
const remainder = unchecked(() => a.mulmod(b, denominator));
prod1 = prod1.sub(remainder.gt_(prod0));
prod0 = prod0.sub(remainder);
let twos = uint256(0);
// -x for uint256 is disabled since 0.8.0
// so we need unchecked mode
unchecked(() => {
twos = uint256(0).sub(denominator).and(denominator);
denominator = denominator.div(twos);
prod0 = prod0.div(twos);
twos = uint256(0).sub(twos).div(twos).add(1);
});
prod0.ior(prod1.mul(twos));
const inv = denominator.xor(2).mul(3);
inv.imul(uint256(2).sub(denominator.mul(inv)));
inv.imul(uint256(2).sub(denominator.mul(inv)));
inv.imul(uint256(2).sub(denominator.mul(inv)));
inv.imul(uint256(2).sub(denominator.mul(inv)));
inv.imul(uint256(2).sub(denominator.mul(inv)));
inv.imul(uint256(2).sub(denominator.mul(inv)));
const result = prod0.mul(inv);
return result;
}
const a = uint256(14718);
const b = uint256(13812);
const denominator = uint256(151231);
console.log(muldiv(a, b, denominator)); // uint256(1344)
```
| Replicates Solidity math in Typescript | defi,ethereum,javascript,solidity,typescript,uniswap,web3,bnjs,uint256,unchecked | 2023-01-31T02:48:00Z | 2023-02-15T05:33:31Z | null | 1 | 4 | 143 | 0 | 1 | 5 | null | MIT | TypeScript |
renancavichi/react-tutorial-material-ui | master | # Getting Started with Create React App
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
## Available Scripts
In the project directory, you can run:
### `npm start`
Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
The page will reload when you make changes.\
You may also see any lint errors in the console.
### `npm test`
Launches the test runner in the interactive watch mode.\
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
### `npm run build`
Builds the app for production to the `build` folder.\
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.\
Your app is ready to be deployed!
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
### `npm run eject`
**Note: this is a one-way operation. Once you `eject`, you can't go back!**
If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.
You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.
## Learn More
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
To learn React, check out the [React documentation](https://reactjs.org/).
### Code Splitting
This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
### Analyzing the Bundle Size
This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
### Making a Progressive Web App
This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
### Advanced Configuration
This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
### Deployment
This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
### `npm run build` fails to minify
This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
| React Tutorial with Create React App using Material UI and Zustand State Management - Class notes of 1ยบ Semester, 2023 | css,html,javascript,react,create-react-app,material-ui,react-router-dom | 2023-02-02T20:52:36Z | 2023-06-16T19:13:13Z | null | 1 | 0 | 42 | 0 | 1 | 5 | null | null | JavaScript |
Nikh9123/forkify-Recipe-App | main | # forkify project
Recipe application with custom recipe uploads. | Hi friends , this is complete recipe app where you can find or search more than 10,000 recipes , I made this big project while learning JavaScript from @https://twitter.com/jonasschmedtman?lang=en , I learned a lot by making this big and wonderful project , so this one is one of my favourite projects. | advancejavascript,api,javascript,dsa-algorithm,html-css-javascript,javascript-library | 2023-01-30T14:03:11Z | 2023-01-31T20:15:22Z | null | 1 | 0 | 18 | 0 | 0 | 5 | null | null | JavaScript |
Haris-Mohanty/Contact-Saver-Application | main | null | This is a Contact Saver App. It is used to saved Contact details with phone number. Basically it works same as your Mobiles Contact app. | javascript | 2023-02-09T06:06:44Z | 2023-03-05T12:56:44Z | null | 1 | 0 | 74 | 0 | 0 | 5 | null | MIT | JavaScript |
Kkwagh-Coders/interview-experience-server | main | # Interview Experience
A Node Typescript Project API for sharing Interview Experience with the whole college
- Live Website: [https://official-interview-experience.netlify.app/](https://official-interview-experience.netlify.app/)
- Client Code: [https://github.com/Kkwagh-Coders/interview-experience-client](https://github.com/Kkwagh-Coders/interview-experience-client)
## Tech Stack
- Node
- Express
- MongoDB with mongoose
- Typescript
- Jest
- Eslint
- Prettier
## Suggested VsCode Plugins
- Eslint
- Prettier
- Better Comments
- Todo Tree
- GitLens
- Relative Path [Optional]
- JavaScript and TypeScript Nightly
## Authors
- [Suhaan Bhandary](https://github.com/Suhaan-Bhandary)
- [Dhruv Chavda](https://github.com/DhruvC10)
- [Vinay Chopda](https://github.com/AlgorithmChopda)
- [Aniket Singh](https://github.com/aniketsingh10)
## Run Locally
Download
- node
- npm
- typescript / tsc
Clone the project
```bash
git clone https://github.com/Kkwagh-Coders/interview-experience-api.git
```
Change to Project Directory
```bash
cd interview-experience-api
```
Add .env to the root directory of the project
Check the [./src/env.d.ts](./src/env.d.ts) file for environment variables.
Install Dependencies
```bash
npm install
```
Start React App
```bash
npm run start:dev
```
## Documentation
[Documentation](https://github.com/Kkwagh-Coders/interview-experience-ui/DOCUMENTATION.md)
## Contributing
Contributions are always welcome!
See `CONTRIBUTING.md` for ways to get started.
Please adhere to this project's `code of conduct`.
| Backend for Interview Experience KKWIEER, made in express framework and mongo database with airbnb-eslint | javascript,nodejs,typescript,expressjs,mongodb,mongoose | 2023-01-27T17:38:26Z | 2024-04-30T19:06:21Z | null | 5 | 24 | 171 | 1 | 0 | 5 | null | null | TypeScript |
sundeeep/Demystifying-JavaScript | master | null | This repository is the amalgamation of my learnings as well as my experiments with the most versatile language in this world: `JavaScript` :D | async-await,callback-functions,closures,debouncing,higher-order-functions,inheritance,javascript,promises,prototype,scope | 2023-02-09T08:44:01Z | 2023-03-10T04:32:45Z | null | 1 | 0 | 18 | 0 | 0 | 5 | null | null | JavaScript |
MoShehata7920/SED | main | 
# SED
## What is SED?
SED is a platform focused on merging markets. both mobile and online. The main focus is on quality, maintainability and stability.
Why is SED so special? It uses clean architectures which is by far more porefull, advanced , performance and security! Also SED is developed under the concept "quality over quantity".
## Motivation
Many people are concerned that their donations to charity may be reduced by tax or administrative costs, preventing the full amount from reaching the people or causes they really want to help. SED will directly connect people each others.
## Contributors
- [Mohamed Adel (Firmeno)](https://github.com/MohamedAdel7799)
- Front-end
- [Abdelrahman Ezzat](https://github.com/abdoezzat1323)
- Front-end
- [Abdullah Ragab](https://gitlab.com/)
- Back-end
- [Mahmoud Elamrosy](https://github.com/melamrosy72)
- Back-end
- [Mohamed Shehata](https://github.com/MoShehata7920)
- Mobile Developer
- [Mahmoud Hafez](https://github.com/Bimbum1337)
- Mobile Developer
## License
This code has been licensed under the *DON'T BE A DICK PUBLIC LICENSE*. For the full license text, see the
[LICENSE.txt](LICENSE.txt) file.
| SED (Sell, Exchange and Donate). | dart,ecommerce,ecommerce-application,ecommerce-website,flutter,javascript,mern-stack,mongodb,nodejs,reactjs | 2023-01-26T14:17:19Z | 2023-07-17T23:34:31Z | null | 6 | 12 | 652 | 0 | 1 | 5 | null | NOASSERTION | Dart |
enzodjabali/realm-of-the-righteous | main | <br>
<img src="https://cdn.discordapp.com/attachments/774340712585625603/1118150138850983986/realm_of_the_righteous_remove-bg-font_1.png" height="50" />
<p float="left">
<img src="https://img.shields.io/static/v1?label=License&message=MIT&color=blue">
<img src="https://img.shields.io/static/v1?label=Version&message=1.7.2&color=blue">
</p>
Realm Of The Righteous is Tower Defense game. It is a subgenre of strategy games where
the goal is to defend a player's territories or possessions by stopping enemies from
reaching the exits, usually achieved by placing defensive structures along their path
of attack. This means building a variety of different structures that serve
to automatically impede, attack, or destroy enemies. Strategic choice and positioning
of defensive elements is an essential strategy of the genre.
## Deploy locally the project with docker ๐ณ
[Installing Docker on Linux and Windows](https://github.com/enzodjabali/realm-of-the-righteous/wiki/Installing-Docker-on-Linux-and-Windows)
<br>
[Creating an environment file](https://github.com/enzodjabali/realm-of-the-righteous/wiki/Creating-an-environment-file)
<br>
[Deploying the Docker containers](https://github.com/enzodjabali/realm-of-the-righteous/wiki/Deploying-the-containers)
<br>
[Running the Docker scripts](https://github.com/enzodjabali/realm-of-the-righteous/wiki/Running-the-Docker-scripts)
## Production
[Installing the production server on Debian 11](https://github.com/enzodjabali/realm-of-the-righteous/wiki/Installing-the-production-server-on-Debian-11)
<br>
[Triggering the project deployment script through Apple Shortcuts](https://github.com/enzodjabali/realm-of-the-righteous/wiki/Triggering-the-project-deployment-script-through-Apple-Shortcuts)
## Others
[Accessing and managing the databases: Database access & management](https://github.com/enzodjabali/realm-of-the-righteous/wiki/Database-access-&-management)
<br>
[Getting to know the API: API-DOCS](https://github.com/enzodjabali/realm-of-the-righteous/wiki/API-DOCS)
| Tower Defense 2PROJ - SUPINFO | docker,javascript,mysql,nginx,animejs,restful-api,php | 2023-01-29T17:27:13Z | 2023-06-18T20:39:49Z | 2023-06-18T20:24:31Z | 7 | 197 | 563 | 0 | 0 | 5 | null | MIT | PHP |
Inna-Mykytiuk/Music-App | main | # Music-App

Simple and stylish music application!
Built with HTML, Sass, and JavaScript, our music player provides a user-friendly and seamless music experience. With its beautiful and modern user interface, you can sit back and enjoy your music without any distractions.
Our music player comes with an installed playlist, filled with a diverse range of popular tracks and music genres. Whether you're in the mood for some rock, pop, hip-hop, and other music, you'll find it all in our built-in playlist.
| Simple and stylish music application! Built with HTML, Sass, and JavaScript | html5,javascript,music-player,sass | 2023-02-09T18:50:34Z | 2023-02-10T17:01:42Z | null | 1 | 0 | 33 | 0 | 0 | 5 | null | null | JavaScript |
shysolocup/willclient | main | ---
<div align="center" text-align="center">
<br />
<img src="https://github.com/paigeroid/willclient/blob/main/assets/willclient-logo.png">
<br />
<a href="https://www.npmjs.com/package/willclient"><img src="https://img.shields.io/npm/v/willclient?style=flat&color=red&logo=npm&logoColor=white" alt="version" />
<a href="https://www.npmjs.com/package/willclient"><img src="https://img.shields.io/npm/dt/willclient?style=flat&color=green&logo=docusign&logoColor=white" alt="downloads" />
<a href="https://discord.js.org/"><img src="https://img.shields.io/badge/discord.js-v14.13.0-blue?style=flat&color=7289da&logo=discord&logoColor=white" alt="discord.js version" /></a>
<a href="https://github.com/paigeroid/willclient/discussions"><img src="https://img.shields.io/github/discussions/paigeroid/willclient?logo=google%20chat&logoColor=white" alt="discussions" />
<a href="https://github.com/paigeroid/willclient/issues"><img src="https://img.shields.io/github/issues/paigeroid/willclient" alt="issues" />
<a href="https://npmjs.com/package/stews"><img src="https://custom-icon-badges.demolab.com/badge/Stews-v1.7.1-orange.svg?logo=stew&logoColor=white" alt="stews"></a>
<img src="https://github.com/paigeroid/willclient/actions/workflows/publish-shit.yml/badge.svg" alt="stews">
WillClient (WC) is a custom Discord API mod that combines elements from [Discord.JS](https://discord.js.org/) and [Discord.PY](https://github.com/Rapptz/discord.py) made in [Node.JS](https://nodejs.org/en/) to solve most of the annoying parts of Discord.JS and possibly welcome users into Node.JS
<br>
*__THIS IS A VERY EARLY VERSION AND I WILL UPDATE IT OVER TIME__*<br><br>
for a look at some examples check out the [examples folder](https://github.com/paigeroid/willclient/tree/main/examples)<br>
for a full look at everything go check out the [wiki pages](https://github.com/paigeroid/willclient/wiki)
</div>
<br><br>
---
<br>
## Usage
WillClient simplifies prefix commands and is heavily inspried by the design and functionality of Discord.PY while still being made with Discord.JS
```js
// willclient
wc.command( "ping", async (ctx) => {
await ctx.reply("Pong!");
});
```
```py
# discord.py
@bot.command()
async def ping(ctx):
await ctx.reply("Pong!")
```
It also has aliases for commands
```js
// works with avatar or av
wc.command( {name: "avatar", aliases: ["av"]}, (ctx) => {
ctx.reply(wc.author.avatar());
});
```
It has built in arguments or parameters whatever you prefer to call them that you can use
```js
// tagify <@id> or id
wc.command( "tagify", (ctx, cmd) => {
let user = await wc.fetchUser(cmd.args[0]);
ctx.reply(user.tag);
});
```
And built in cooldowns
```js
wc.command( {name: "ping", cooldown: "30s"}, (ctx, cmd) => {
if (cmd.onCooldown) return wc.reply("Command is on cooldown!", {deleteAfter: "3s"});
ctx.reply("Pong!");
});
```
<br>
## Installation
```console
npm i willclient
```
```console
npm i paigeroid/willclient
```
<br>
## Setting Up
### **Discord.JS Client**
WC is built off of Discord.JS so for it to work you need Discord.JS.
```js
const { Client } = require('discord.js');
const client = new Client({
// your stuff here
});
```
### **WC Client**
once you have your Discord.JS client you can add in WC
```js
const { WillClient } = require('willclient');
const wc = new WillClient({
client: client,
prefix: "!",
token: token
});
```
once you have your client set up and working you can run it using either of these:
```js
client.login(token); // normal discord.js
wc.run(token); // optional alternative
```
<br>
## Disclaimer
This mod is not associated with the creators of [Discord](https://discord.com), [Discord.JS](https://discord.js.org), or [Discord.PY](https://github.com/Rapptz/discord.py) this was created out of love for Discord bot development because I wanted to make things easier for people. I do not condone harassment of the original developers and or anyone else involved in the creation of them.<br><br>
I am not responsible for anything made with this mod and be sure to follow [Discord's terms of service](https://discord.com/terms) and their [community guildlines](https://discord.com/guidelines) while developing.
| Custom Discord API mod made in Node.JS that combines elements from Discord.PY and Discord.JS | discord,javascript,js,package,discordjs,bot,discord-api,discord-bot,nodejs,discord-js | 2023-01-27T05:32:50Z | 2023-09-22T02:54:11Z | 2023-09-22T02:54:11Z | 1 | 0 | 357 | 0 | 0 | 5 | null | MIT | JavaScript |
ritikarawat220/Capstone-project---Conference-page | main | <a name="readme-top"></a>
<h1>Capstone-project---Conference-page</h1>
# ๐ Table of Contents
- [๐ About the Project](#about-project)
- [๐ Built With](#built-with)
- [๐ Live Demo](#live-demo)
- [๐ป Getting Started](#getting-started)
- [๐ฅ Authors](#authors)
- [๐ญ Future Features](#future-features)
- [๐ค Contributing](#contributing)
- [โญ๏ธ Show your support](#support)
- [๐ Acknowledgements](#acknowledgements)
- [๐ License](#license)
<!-- PROJECT DESCRIPTION -->
# ๐ Capstone-Project: Conference-page <a name="about-project"></a>
## ๐ Built With <a name="built-with"></a>
HTML
CSS
Javascript
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LIVE DEMO -->
## ๐ Live Demo <a name="live-demo"></a>
[Live Demo](https://ritikarawat220.github.io/Capstone-project---Conference-page/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- GETTING STARTED -->
## ๐ป Getting Started <a name="getting-started"></a>
- Create a local directory that you want to clone the repository.
- Open the command prompt in the created directory.
- On the terminal run this command git clone https://github.com/ritikarawat220/Capstone-project---Conference-page.git
- Go to the repository folder using command prompt cd.
- Install the dev dependencies for linters run npm install.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
### Prerequisites
In order to run this project you need:
-Google chrome
-Internet Explorer
-Any broswer
<p align="right">(<a href="#readme-top">back to top</a>)</p>
### Setup
Clone this repository to your desired folder:
- Open the command prompt in the created directory.
- On the terminal run this command git clone https://github.com/ritikarawat220/Capstone-project---Conference-page.git
- Go to the repository folder using command prompt cd.
- Install the dev dependencies for linters run npm install.
--->
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- Author -->
๐ค **Ritika Rawat**
- GitHub: [ritikarawat220](https://github.com/ritikarawat220)
- Twitter: [@ritikarawat22](https://twitter.com/Ritikarawat22)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/rawatritika/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## ๐ญ Future Features <a name="future-features"></a>
- Implement some UX improvements: add the "More" button on the home page, include transitions and/or animation
- Implement additional pages, like the tickets page and the schedule page. Make sure that you have a decent mobile design for them
<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/ritikarawat220/Capstone-project---Conference-page/issues).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- SUPPORT -->
## โญ๏ธ Show your support <a name="support"></a>
Give a โญ๏ธ if you like this project!
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## ๐ Acknowledgments <a name="acknowledgements"></a>
[Cindy Shin](https://www.behance.net/gallery/29845175/CC-Global-Summit-2015) for the Amazing Design Template.
[Fontawsome](https://fontawesome.com/) Special thanks to fontawsome for the icons assets.
<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>
| Final Project (Capstone), of 1st Module at Microverse ๐ | css,html5,javascript,website | 2023-02-02T10:03:26Z | 2023-02-09T12:04:08Z | null | 1 | 1 | 32 | 0 | 0 | 5 | null | null | CSS |
haliljon/Space-travelers | dev | # Space Travelers' Hub
# ๐ Table of Contents
- [Space Travelers' Hub](#Space-Travelers-Hub)
- [๐ Table of Contents](#-table-of-contents)
- [๐ Space Travelers' Hub ](#-Space-Travelers-Hub-)
- [๐ Built With ](#-built-with-)
- [Tech Stack ](#tech-stack-)
- [Key Features ](#key-features-)
- [Deployment Link:](#deployment-link)
- [๐ป Getting Started with Create React App ](#-getting-started-with-create-react-app-)
- [Available Scripts](#available-scripts)
- [`npm start`](#npm-start)
- [`npm test`](#npm-test)
- [`npm run build`](#npm-run-build)
- [๐ฅ Author ](#-author-)
- [๐ญ Future Features ](#-future-features-)
- [๐ค Contributing ](#-contributing-)
- [โญ๏ธ Show your support ](#๏ธ-show-your-support-)
- [๐ Acknowledgments ](#-acknowledgments-)
- [๐ License](#-license)
<!-- PROJECT DESCRIPTION -->
# ๐ Space Travelers' Hub <a name="about-project"></a>
**Space Travelers' Hub** The app works with real live data from the SpaceX API to display rockets, dragons and missions. It lets the user to reserve rockets, book dragons and join mission and allows a user to view all reserved rockets, dragons, and space missions.
## ๐ Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
> Describe the tech stack and include only the relevant sections that apply to your project.
<details>
<summary>Programming languages</summary>
<ul>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/CSS">CSS</a></li>
<li><a href="https://www.javascript.com/">JavaScript</a></li>
<li><a href="https://reactjs.org/">React</a></li>
<li><a href="https://redux.js.org/">Redux</a></li>
</ul>
</details>
<details>
<summary>Technologies</summary>
<ul>
<li><a href="https://git-scm.com/">Git</a></li>
<li><a href="https://github.com/">Github</a></li>
<li><a href="https://eslint.org/">Linters</a></li>
<li><a href="https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow">Gitflow</a></li>
</ul>
</details>
<details>
<summary>Frameworks</summary>
<ul>
<li><a href="https://getbootstrap.com/">Bootstrap 5</a></li>
</ul>
</details>
<details>
<summary>Modules</summary>
</details>
<details>
<summary>Server</summary>
</details>
<details>
<summary>Database</summary>
</details>
### Key Features <a name="key-features"></a>
- SPA has 4 pages
- The user can reserve a rocket and cancel the reservation
- The user can join a mission and leave the mission
- The user can book a dragon and cancel the booking
- All of the revervations show in the `My Profile` page
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## Deployment Link:
[space-travelers-hub.com](https://enchanting-mousse-dd4b6f.netlify.app/)
## ๐ป Getting Started with Create React App <a name="getting-started"></a>
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
To get a local copy up and running, follow these steps.
### Prerequisites
- Install git in your computer.
- Install a code editor.
- And web browser to view the output.
### Setup
Clone this repository to your desired folder:
- `cd my-folder`
- `git clone https://github.com/haliljon/Space-travelers`
### Install
Navigate to directory with `cd my-project`
- Run `npm install` to install the dependencies.
## 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.
## ๐ฅ Authors <a name="author"></a>
๐ค **Haliljon Juraboev**
- GitHub: [@githubhaliljon](https://github.com/haliljon)
- Twitter: [@twitterhaliljon1](https://twitter.com/haliljon1)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/juraboev-haliljon)
๐ค **George M'sapenda**
- GitHub: [@github](https://github.com/c00p75)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/georgemsapenda/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
FUTURE FEATURES
## ๐ญ Future Features <a name="future-features"></a>
>
- [ ] **[I would like to improve the look and feel of the application]**
<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/haliljon/bookstore/issues).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## โญ๏ธ Show your support <a name="support"></a>
Please consider giving a โญ๏ธ if you like this project!
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ๐ Acknowledgments <a name="acknowledgements"></a>
> Give credit to everyone who inspired your codebase.
We would like to thank [Microverse](https://www.microverse.org/)
P.S. stackoverflow and google ๐
<p align="right">(<a href="#readme-top">back to top</a>)</p>
### ๐ License
- This project is [MIT](./LICENSE) lincensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| The app works with real live data from the SpaceX API to display rockets, dragons and missions. It lets the user to reserve rockets, book dragons and join mission and allows a user to view all reserved rockets, dragons, and space missions. | api,bootstrap5,javascript,jest-tests,react,redux | 2023-02-06T08:22:51Z | 2023-02-11T20:26:42Z | null | 2 | 13 | 34 | 0 | 1 | 5 | null | MIT | JavaScript |
haliljon/Bookstore | development | # Bookstore
# ๐ Table of Contents
- [Bookstore](#bookstore)
- [๐ Table of Contents](#-table-of-contents)
- [๐ Bookstore ](#-bookstore-)
- [๐ Built With ](#-built-with-)
- [Tech Stack ](#tech-stack-)
- [Key Features ](#key-features-)
- [Deployment Link:](#deployment-link)
- [๐ป Getting Started with Create React App ](#-getting-started-with-create-react-app-)
- [Available Scripts](#available-scripts)
- [`npm start`](#npm-start)
- [`npm test`](#npm-test)
- [`npm run build`](#npm-run-build)
- [๐ฅ Author ](#-author-)
- [๐ญ Future Features ](#-future-features-)
- [๐ค Contributing ](#-contributing-)
- [โญ๏ธ Show your support ](#๏ธ-show-your-support-)
- [๐ Acknowledgments ](#-acknowledgments-)
- [๐ License](#-license)
<!-- PROJECT DESCRIPTION -->
# ๐ Bookstore <a name="about-project"></a>
**Bookstore** The app lets the user to input items into to do list, edit, delete and so on
## ๐ Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
> Describe the tech stack and include only the relevant sections that apply to your project.
<details>
<summary>Programming languages</summary>
<ul>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/CSS">CSS</a></li>
<li><a href="https://www.javascript.com/">JavaScript</a></li>
<li><a href="https://reactjs.org/">React</a></li>
<li><a href="https://redux.js.org/">Redux</a></li>
</ul>
</details>
<details>
<summary>Technologies</summary>
<ul>
<li><a href="https://git-scm.com/">Git</a></li>
<li><a href="https://github.com/">Github</a></li>
<li><a href="https://eslint.org/">Linters</a></li>
<li><a href="https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow">Gitflow</a></li>
</ul>
</details>
<details>
<summary>Frameworks</summary>
</details>
<details>
<summary>Modules</summary>
</details>
<details>
<summary>Server</summary>
</details>
<details>
<summary>Database</summary>
</details>
### Key Features <a name="key-features"></a>
- User can read book
- User can add book to the book list
- User can delete book from the book list
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ๐ Live Demo
Please use the following link to access the website:
[react-bookstore.com](https://serene-truffle-54e4c3.netlify.app/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## Deployment Link:
## ๐ป Getting Started with Create React App <a name="getting-started"></a>
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
## Available Scripts
In the project directory, you can run:
### `npm start`
Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
The page will reload when you make changes.\
You may also see any lint errors in the console.
### `npm test`
Launches the test runner in the interactive watch mode.\
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
### `npm run build`
Builds the app for production to the `build` folder.\
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.\
Your app is ready to be deployed!
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
## ๐ฅ Author <a name="author"></a>
๐ค **Haliljon Juraboev**
- GitHub: [@githubhaliljon](https://github.com/haliljon)
- Twitter: [@twitterhaliljon1](https://twitter.com/haliljon1)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/juraboev-haliljon)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
FUTURE FEATURES
## ๐ญ Future Features <a name="future-features"></a>
- [ ] **Planning to add some content to the categories page**
<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/haliljon/bookstore/issues).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## โญ๏ธ Show your support <a name="support"></a>
Please consider giving a โญ๏ธ if you like this project!
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ๐ Acknowledgments <a name="acknowledgements"></a>
> Give credit to everyone who inspired your codebase.
I would like to thank [Microverse](https://www.microverse.org/)
P.S. stackoverflow and google ๐
<p align="right">(<a href="#readme-top">back to top</a>)</p>
### ๐ License
- This project is [MIT](./LICENSE) lincensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| A web application to store Book name, Author name and Category name in in remote. It allows the user to add and remove books to the list. | css,javascript,react-redux | 2023-01-27T15:24:38Z | 2023-07-15T13:35:05Z | null | 1 | 6 | 27 | 0 | 0 | 5 | null | MIT | JavaScript |
sanieni6/Module_1-Capstone-project | main | <a name="readme-top"></a>
<div align="center">
<a href="https://imgbox.com/ftUpMLFI" target="_blank"><img src="https://images2.imgbox.com/fd/29/ftUpMLFI_o.png" alt="personal logo"/ width="220" height="auto"></a>
<br/>
</div>
# ๐ Table of Contents
- [๐ About the Project](#about-project)
- [๐ Built With](#built-with)
- [๐ Live Demo](#live-demo)
- [๐ป Getting Started](#getting-started)
- [Prerequisites](#prerequisites)
- [Setup](#setup)
- [Usage](#usage)
- [๐ฅ Authors](#authors)
- [๐ญ Future Features](#future-features)
- [๐ค Contributing](#contributing)
- [โญ๏ธ Show your support](#support)
- [๐ Acknowledgements](#acknowledgements)
# ๐ Capstone Project module 1: Conference page <a name="about-project"></a>
This is the first capstone project of the Microverve program corresponding to module one.
For this project, I developed a webpage for a music festival in my native city, Quevedo. I was inspired by the local environment, the music, and the flow to create webpage designs that reflect my country's unique festival style. <br>
Based on an original design idea by Cindy Shin in Behance.
## ๐ Built With <a name="built-with"></a>
+ Git
+ HTML
+ CSS
+ Javascript
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ๐ Live Demo <a name="live-demo"></a>
- [[Github-pages]](https://sanieni6.github.io/Module_1-Capstone-project/)
- [[Loom-video]](https://www.loom.com/share/b5c817f95099406b918e48eb4cc324fe)
<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 computer with an internet connection
+ A web browser
### Setup
Clone this repository to your computer
### Usage
To run the project, execute the "index.html" file in your browser
### Deployment
Just open it in your browser.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ๐ฅ Authors <a name="authors"></a>
Luis Sanchez Zamora
Github: [@sanieni6](https://github.com/sanieni6/)
Twitter: [@its_luis_sz23](https://twitter.com/its_luis_sz23)
Linkedin: [Linkedin](https://www.linkedin.com/in/luissanchezz3/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ๐ญ Future Features <a name="future-features"></a>
+ Implement this webpage in a real environment.
+ Conclude all the functionalities of the webpage.
+ deploy in a real server
<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>
If you like this project you can follow my work through my social networks
You can follow the author of the original template on [Behance](https://www.behance.net/adagio07)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ๐ Acknowledgments <a name="acknowledgements"></a>
I would like to thank Microverse and Cindy shin for the inspiring.[Behance](https://www.behance.net/adagio07)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ๐License <a name="license"></a>
This project is [Creative commons](LICENSE.md) licensed. <br>
Based on an original design idea by Cindy Shin in Behance.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| HTML, CSS & JavaScript capstone project where I build an online conference website following design guidelines. | html,javascript | 2023-02-06T13:45:08Z | 2023-07-29T03:37:08Z | null | 1 | 1 | 25 | 1 | 0 | 5 | null | MIT | CSS |
rivasbolinga/Leaderboard | dev | <a name="readme-top"></a>
<div align="center">

</div>
<div align="center">
<img width="640" alt="Screenshot 2023-02-01 at 15 24 43" src="https://user-images.githubusercontent.com/103900838/216071213-548a40c1-1745-412b-ad32-608e37e5acc1.png">
</div>
# ๐ LEADERBOARD
<a name="about-project"></a>
<!-- PROJECT DESCRIPTION -->
**Leaderboard** displays scores submitted by different players. It also allows you to submit your score. All data is preserved thanks to the external Leaderboard API service. Project part of the Microverse curriculum.
<!-- 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)
- [๐ฅ Authors](#authors)
- [๐ญ Future Features](#future-features)
- [โญ๏ธ Show your support](#support)
- [๐ License](#license)
</div>
## ๐ Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<a href="https://www.w3.org/html/" target="_blank"><img align="center" src="https://raw.githubusercontent.com/devicons/devicon/master/icons/html5/html5-original-wordmark.svg" alt="html5" width="55" height="55"/></a><a href="https://www.w3schools.com/css/" target="_blank"><img align="center" src="https://raw.githubusercontent.com/devicons/devicon/master/icons/css3/css3-original-wordmark.svg" alt="css3" width="55" height="55"/></a><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" target="_blank" rel="noreferrer"><img align="center" src="https://raw.githubusercontent.com/devicons/devicon/master/icons/javascript/javascript-original.svg" alt="javascript" width="55" height="55"/></a>
<a href="https://webpack.js.org/" target="_blank"><img align="center" src="https://github.com/webpack/media/blob/master/logo/icon.svg" alt="webpack" width="55" height="55"/></a>
<!-- Features -->
### Key Features <a name="key-features"></a>
<!-- > Describe between 1-3 key features of the application.-->
- [ ] **Create a new game using an API**
- [ ] **Implement the "Refresh" button that will get all scores for a game created by you from the API**
- [ ] **Implement the form "Submit" button that will save a score for a game created by you**
- [ ] **Use async and await JavaScript features to consume the API**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LIVE DEMO -->
## ๐ Live Demo <a name="live-demo"></a>
For a live demo to our project, follow the link below
- [Live Demo Link](https://rivasbolinga.github.io/Leaderboard/)
<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 PC running any operating system like Windows, Linux, or MacOS
- [ ] An Internet connection
- [ ] Git installed
- [ ] Webpack installed
- [ ] Knowledge of some basic Git commands
### Setup
- [ ] Link your PC to GitHub
- [ ] Clone this repository to your desired folder:
```
git clone https://github.com/rivasbolinga/Leaderboard.git
```
- [ ] Open the file in your code editor
- [ ] Setup JavaScript + CSS + HTML linter
Run the following codes in your project folder in your IDE:
```
npm install --save-dev stylelint@13.x stylelint-scss@3.x stylelint-config-standard@21.x stylelint-csstree-validator@1.x
```
```
npm install --save-dev eslint@7.x eslint-config-airbnb-base@14.x eslint-plugin-import@2.x babel-eslint@10.x
```
### Install
Install this project with:
- [ ] node_modules
```
npm install -g node-modules
```
- [ ] webpack
```
npm install -g webpack
```
```
npm install -g webpack-cli
```
- [ ] project dependencies
```
npm install
```
### Usage
Start the server
```
npm run start
```
### Run tests <a name="run-tests"></a>
To run Stylelint and ESLint tests, run the following commands respectively:
```
npx stylelint "**/*.{css,scss}"
```
```
npx eslint .
```
### Deployment <a name="deployment"></a>
To deploy this project run
```
npm run deploy
```
- GitHub Pages was used to deploy this website
- For more information about publishing sources, see "[About github page](https://docs.github.com/en/pages/getting-started-with-github-pages/about-github-pages#publishing-sources-for-github-pages-sites)"
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## ๐ฅ Authors <a name="authors"></a>
๐ค **Andrea Rivas**
- GitHub: [@rivasbolinga](https://github.com/rivasbolinga)
- Twitter: [@AndreaRivasPal](https://twitter.com/AndreaRivasPal)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## ๐ญ Future Features <a name="future-features"></a>
- [ ] **Improve styling**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## ๐ Acknowledgments <a name="acknowledgements"></a>
I would like to thank - Microverse
****
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- SUPPORT -->
## โญ๏ธ Show your support <a name="support"></a>
<!-- > Write a message to encourage readers to support your project -->
Give a โญ๏ธ if you like this project!
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LICENSE -->
## ๐ License <a name="license"></a>
This project is [MIT](https://github.com/rivasbolinga/AwesomeBooks-library/blob/master/MIT.md) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| The leaderboard website displays scores submitted by different players. It also allows you to submit your score. All data is preserved thanks to the external Leaderboard API service. | css,html,javascript,webpack | 2023-01-28T10:42:51Z | 2023-05-31T06:34:41Z | null | 1 | 8 | 57 | 1 | 1 | 5 | null | null | JavaScript |
itsvaibhavmishra/amazon-clone | main | ### <div align="center">Amazon-Clone</div>
## Features
- Build on React JS
- React Context API
- Responsive Design
- Cart Section
- Checkout Section
- User Authentication using Firebase
<br/>
## Project Live On
<a href="https://clone-7ad5f.web.app/">Firebase</a> |
<a href="https://copy-amazon.netlify.app/">Netlify</a>
<br/>
## Technology Used
<div align="center">
<a href="https://reactjs.org/" target="_blank"><img style="margin: 10px" src="https://profilinator.rishav.dev/skills-assets/react-original-wordmark.svg" alt="React" height="50" /></a>
<a href="https://www.w3schools.com/css/" target="_blank"><img style="margin: 10px" src="https://profilinator.rishav.dev/skills-assets/css3-original-wordmark.svg" alt="CSS3" height="50" /></a>
<a href="https://en.wikipedia.org/wiki/HTML5" target="_blank"><img style="margin: 10px" src="https://profilinator.rishav.dev/skills-assets/html5-original-wordmark.svg" alt="HTML5" height="50" /></a>
<a href="https://www.javascript.com/" target="_blank"><img style="margin: 10px" src="https://profilinator.rishav.dev/skills-assets/javascript-original.svg" alt="JavaScript" height="50" /></a>
<a href="https://firebase.google.com/" target="_blank"><img style="margin: 10px" src="https://profilinator.rishav.dev/skills-assets/firebase.png" alt="Firebase" height="50" /></a>
<a href="https://nodejs.org/" target="_blank"><img style="margin: 10px" src="https://profilinator.rishav.dev/skills-assets/nodejs-original-wordmark.svg" alt="Node.js" height="50" /></a>
<a href="https://github.com/" target="_blank"><img style="margin: 10px" src="https://profilinator.rishav.dev/skills-assets/git-scm-icon.svg" alt="Git" height="50" /></a>
<a href="https://mui.com/" target="_blank"><img style="margin: 10px" src="https://profilinator.rishav.dev/skills-assets/mui.png" alt="Material UI" height="50" /></a>
<a href="http://getbem.com/" target="_blank"><img style="margin: 10px" src="https://profilinator.rishav.dev/skills-assets/bem.svg" alt="BEM" height="50" /></a>
</div>
<br/>
## Commands
```bash
$ npm install --force
```
Installs all the required packages
```bash
$ npm start
```
Runs on localhost
```bash
$ npm run build
```
Creates an optimized production build
<div align="center">
<img src="https://komarev.com/ghpvc/?username=itsvaibhavmishra&&style=flat-square" align="center" />
</div>
<br/>
<div align="center">
<a href="https://www.buymeacoffee.com/vaibhawmishra" target="_blank" style="display: inline-block;">
<img
src="https://img.shields.io/badge/Donate-Buy%20Me%20A%20Coffee-orange.svg?style=flat-square&logo=buymeacoffee"
align="center"
/>
</a></div>
<br />
----
<div align="center">Generated using <a href="https://profilinator.rishav.dev/" target="_blank">Github Profilinator</a></div>
| Amazon-Clone Website build on React JS | context-api,firebase,nodejs,reactjs,bem,material-ui,css,html5,javascript | 2023-01-30T05:19:21Z | 2023-02-22T17:48:30Z | null | 1 | 0 | 43 | 0 | 0 | 4 | null | null | JavaScript |
djo1975/Leaderboard | dev | <a name="readme-top"></a>
<div>
<h1><b>Leaderboard: final touches</b></h1><br/><br/>
</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)
- [Deployment](#triangular_flag_on_post-deployment)
- [๐ฅ Authors](#authors)
- [๐ญ Future Features](#future-features)
- [๐ค Contributing](#contributing)
- [โญ๏ธ Show your support](#support)
- [๐ Acknowledgements](#acknowledgements)
- [๐ License](#license)
# ๐ Leaderboard: final touches<a name="about-project"></a>
** Leaderboard: final touches** In this activity you will finalize the Leaderboard list app, adding the styles needed to make it look great.
## ๐ Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<summary>Client</summary>
<ul>
<li><a href="https://html.com/html5/">HTML5</a></li>
<li><a href="https://developer.mozilla.org/en-US/docs/Learn/CSS/First_steps/What_is_CSS">CSS</a></li>
<li><a href="https://www.javascript.com/">JavaScript</a></li>
</ul>
### Key Features <a name="key-features"></a>
- **Add and remove books**
- The website that displays a list of tasks and allows you to add and remove task from that list.
- **JavaScript Classes**
- The tasks are managed and manipulated using classes and helper functions within those classes.
- **Store and retrieve data**
- The displayed tasks are stored and retrieved from the local storage of the browser.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ๐ Live Demo <a name="live-demo"></a>
Visit the live demo []
- [Click here](https://cool-marzipan-523145.netlify.app)
<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 (e.g. Firefox)
- An IDE (e.g. [Vususal Studio Code](https://code.visualstudio.com/download))
- [npm](https://nodejs.org/en/)
- Terminal
### Setup
To clone this repository to your desired folder, follow the steps below:
**Using the command line**
- Use the following commands
```sh
cd my-folder
git clone https://github.com/djo1975/Webpack.git
```
**Using GitHub Desktop app**
- Follow the steps below
- Visit this link "https://github.com/djo1975/Webpack.git"
- Click the green button labelled "code"
- Select the "Open with GitHub Desktop" option
- After the GitHub Desktop add opens, click the "clone repo" button
### Usage
To run the project, execute the following command:
**Click the "Go Live" button on your IDE(VS Code in this case)**
### Deployment
You can deploy this project by:
- visiting your repository on [GitHub](https://github.com)
- Click on settings
- Go to the "Pages" option
- Select the main branch and save
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ๐ฅ Authors <a name="authors"></a>
๐ค ๐ค **Mladan Ilic**
- GitHub: [@githubhandle]()
- Twitter: [@twitterhandle]()
- LinkedIn: [LinkedIn]()
## ๐ญ Future Features <a name="future-features"></a>
- [ ] **[will improve page elements]**
- [ ] **[will improve styles]**
- [ ] **[will improve js functionality]**
<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>
If you like this project, give it a โญ๏ธ and let us know what you like in particular.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ๐ Acknowledgments <a name="acknowledgements"></a>
We would like to thank the whole Microverse community for their help and contributions towards this 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 is race leaderboard . You can add scores of the imaginary game you played It is build with api so one you will add your score so it will be visibles to whomsoever vists on website. | css,html,javascript | 2023-02-06T12:52:38Z | 2023-04-17T13:51:58Z | null | 1 | 3 | 23 | 1 | 0 | 4 | null | MIT | JavaScript |
rammewerk/csshtml-module | main | null | A CLI tool that converts CSS/HTML to JS/TS modules, making it easier to develop Web Components with normal CSS/HTML files. | cli,compiler,css,css-compiler,css-converter,esm,html,intellij,javascript,phpstorm | 2023-02-07T22:35:27Z | 2023-02-10T15:12:44Z | 2023-02-09T12:34:37Z | 2 | 0 | 20 | 0 | 0 | 4 | null | null | JavaScript |
slick-codes/object-2-html | main |
# Installation
You can install object-2-html using npm , yarn or pnpm
````bash
npm install object-2-html
````
You can also insert the CDN directly to your project header
```html
<script src="https://unpkg.com/@slickcodes/object-2-html@1.0.0/dist/index.js"></script>
```
#Usage
To reader your object to html you'll need to use the reader method provided with the o2h object.
```javascript
import oth from 'object-2-html'
const obj = {
type: "element",
tagName: "div",
style: {background: "purple"},
classes: ["container","example"],
childNodes: [ // adding children
{
type: "comment",
text: "the following code is an h1 tag"
},
{
type: "element",
tagName: "h1",
text: "Join our news letter"
},
{
type: "element",
tagName: "input",
attributes: [{type: "input"}, {placeholder:"email address"}]
},
{
type: "text",
text: "Submit email"
},
{
type: "element",
tagName: "button",
text: "Submit form",
events: { // adding event listener
click: (event) => console.log('submit form')
}
}
]
}
// use this to render the generated array to the body element
// o2h.render(o2h, document.querySelector('body') )
const html = o2h.render(o2h)
console.log(html)
```
### Output
``` html
<div class="container example" style="background: blue;">
<!--the following code is an h1 tag-->
<h1 data-name="news letter text">Join our news letter</h1>
<input type="input" placeholder="email address">
Submit email
<button>Submit form</button>
</div>
```
the event will be tied to the button element and will be triggered once the button is clicked.
childNode consist of Text, Element and Comment, the rendering sequence is determined by how the nodes are stacked.
you can also render the object directly to a parent element.
```javascript
o2h.render(obj, document.querySelector('body'))
```
Whilst text can be rendered as a as a childNode it can also be inserted directly to the element. using the text key.
```javascript
import o2h from 'object-2-html'
const obj = {
type: "element",
tagName: "h1",
text: "Hello Word", // render text directly to h1 element
style: {color: "blue"}
}
```
### Result
```html
<h1 style="color:blue">Hello Word</h1>
```
## Revert html to object
you can revert html elements to object using the undoRender method.
```html
<h1 class="header-title" title="object to html" > object to html</h1>
<script>
o2h.undoRender(document.querySelector('h1'))
</script>
```
### Output
```javascript
{
type: "element",
tagName: "h1",
attributes: [{title: "object to html"}],
classes: ["header-title"],
childNodes: [
{
type: "text",
text: "object to html"
}
]
}
```
| A javascript library that allows developers convert a javascript object to HTML | dom,html,javascript | 2023-02-02T23:09:46Z | 2023-02-27T16:40:54Z | null | 1 | 1 | 40 | 2 | 1 | 4 | null | null | TypeScript |
SeanAllen19/GIT-IDEAS | main | # Git Ideas
## Description
Git Ideas is an app that allows the user to search GitHub for project inspiration. Users can search GitHub repositories by keyword, and search results can be annotated and saved into a user's personal library. Users can create unique tags (e.g., Project 1) to further organize their library. All saved items can be further edited or deleted once in the user's library. The user's library and all associated tags and comments are password protected, and the user must be logged in to access the app's functionality.
<br>
## Table of Contents
- [Getting Started](#getting-started)
- [Schema](#schema)
- [Screenshots](#screenshots)
- [Built Using](#built-using)
- [Authors](#authors)
- [Saved for Later](#saved-for-later)
- [Acknowledgments](#acknowledgments)
- [License](#license)
<br>
## Getting Started
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
1. Within GitHub, navigate to the main page of the repository.
2. Click the Clone or download button.
3. Copy the clone URL for the repository.
4. Open Terminal or CMD Prompt(Windows).
5. Change your current working directory to the location where you'd like the cloned directory be stored.
6. Type git clone, and then paste the URL you copied in Step 3.
git clone https://github.com/SeanAllen19/GIT-IDEAS.git
7. Press Enter and a new local cloned repository will be created.
<br>
## Schema

<br>
## Screenshots
### Home page

### Navigation Bar

### Login and Sign Up Page

### Results Page

### Save and Edit Page

### Saved Results Page

<br>
## Built Using
GitHub - https://github.com/
GitHub Rest API - https://docs.github.com/en/rest
Axios - https://axios-http.com/docs/intro
Handlebars - https://handlebarsjs.com/
Bootstrap - https://getbootstrap.com/
Mysql - https://www.mysql.com/
Sequelize - https://sequelize.org/
Jawsdb - https://www.jawsdb.com/
<br>
## Authors
Rebecca Girndt - [GitHub](https://github.com/Re-Gi)
Michael Smith - [GitHub](https://github.com/AustinBQ02)
Brett Nachman - [GitHub](https://github.com/brettnachman)
Sean Allen - [GitHub](https://github.com/SeanAllen19)
<br>
## Saved for Later
Refine results returned by GitHub
Pull from Codepen and other sources
Improve handling of tags and saved projects
Add results filtering
Add results pagination
Develop admin tools to manage tags, notes, and users
Implement stricter limits on tags and notes
<br>
## Acknowledgments
The Nighttime Study Group
Ian Darland
Leah Nelson
Diem Ly
Shaun Roshan
Canva - https://www.canva.com/
<br>
## License
Please see LICENSE file.
 | Git Ideas is an app that allows the user to search GitHub for project inspiration. Users can search GitHub repositories by keyword, and search results can be annotated and saved into a userโs personal library. The userโs library and all associated tags and comments are password protected, and the user must be logged in to access the appโs features. | axios,bcrypt,css,handlebars-js,html,javascript,nodejs,sequelize,sql | 2023-02-09T18:42:00Z | 2023-02-17T00:37:20Z | null | 4 | 44 | 126 | 1 | 0 | 4 | null | MIT | JavaScript |
JoyceFatima/rocketseat-feed | main | <div align="center">
<img height="60" src="https://i.imgur.com/05Qqcra.png" />
</div>
###
<h1 align="center">Ignite Feed<br><br>Ignite - React da Rocketseat.</h1>
###
<h3 align="center">Desktop</h3>
###
<div align="center">
<img height="350" src="src/assets/images/IginiteFeed.png" />
</div>
###
<h3 align="center">Mobile</h3>
###
<div align="center">
<img height="350" src="src/assets/images/IgniteFeedMobile.png" />
</div>
###
<br clear="both">
<h2 align="left">Tecnologias</h2>
###
<div align="center">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/react/react-original.svg" height="40" width="52" alt="React logo" />
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/javascript/javascript-original.svg" height="40" width="52" alt="JavaScript logo" />
<img src="https://upload.wikimedia.org/wikipedia/commons/4/4c/Typescript_logo_2020.svg" height="40" width="52" alt="TypeScript logo" />
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/css3/css3-original.svg" height="40" width="52" alt="CSS3 logo" />
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/html5/html5-original.svg" height="40" width="52" alt="HTML5 logo" />
</div>
###
## Rodando o projeto
Clone the project and access the folder.
```bash
$ git clone https://github.com/JoyceFatima/Ignite-Feed.git
$ cd Ignite-Feed
```
Follow the steps below:
```bash
# Install the dependencies
$ yarn or npm i
# Start the project
$ yarn dev or npm run dev
```
The app will be available for access on your browser at http://localhost:3000
## ๐ License
This project is licensed under the MIT License. See the [LICENSE](LICENSE.md) file for details.
---
<p align="center">Made by <a href="https://github.com/JoyceFatima">Joyce de Fรกtima</a></p>
| Ignite Feed - Rockeseat Program | javascript,react,typescript | 2023-02-01T12:47:53Z | 2023-02-01T13:44:34Z | null | 1 | 0 | 5 | 0 | 2 | 4 | null | MIT | TypeScript |
ViktorSvertoka/goit-js-hw-06 | main | **Read in other languages: [ะฃะบัะฐัะฝััะบะฐ](README.md), [English](README.en.md).**
# ะัะธัะตััั ะฟัะธะนะผะฐะฝะฝั
- ะกัะฒะพัะตะฝะพ ัะตะฟะพะทะธัะพััะน `goit-js-hw-06`.
- ะะพะผะฐัะฝั ัะพะฑะพัะฐ ะผัััะธัั ะดะฒะฐ ะฟะพัะธะปะฐะฝะฝั: ะฝะฐ ะฒะธั
ัะดะฝั ัะฐะนะปะธ ั ัะพะฑะพัั ััะพััะฝะบั ะฝะฐ
`GitHub Pages`.
- ะะฐะฒะดะฐะฝะฝั ะฒะธะบะพะฝะฐะฝั ั ัะพัะฝัะน ะฒัะดะฟะพะฒัะดะฝะพััั ะดะพ ะขะ (ะทะฐะฑะพัะพะฝัััััั ะทะผัะฝัะฒะฐัะธ
ะฒะธั
ัะดะฝะธะน HTML ะทะฐะฒะดะฐะฝะฝั).
- ะ ะบะพะฝัะพะปั ะฒัะดัััะฝั ะฟะพะผะธะปะบะธ ั ะฟะพะฟะตัะตะดะถะตะฝะฝั ะฟัะด ัะฐั ะฒัะดะบัะธััั ะถะธะฒะพั ััะพััะฝะบะธ
ะทะฐะฒะดะฐะฝะฝั.
- ะะผะตะฝะฐ ะทะผัะฝะฝะธั
ั ััะฝะบััะน - ะทัะพะทัะผัะปั ัะฐ ะพะฟะธัะพะฒั.
- ะะพะด ะฒัะดัะพัะผะฐัะพะฒะฐะฝะธะน ะทะฐ ะดะพะฟะพะผะพะณะพั `Prettier`.
## ะกัะฐััะพะฒั ัะฐะนะปะธ
ะฃ [ะฟะฐะฟัั src](./src) ะทะฝะฐะนะดะตั ััะฐััะพะฒั ัะฐะนะปะธ ะท ะณะพัะพะฒะพั ัะพะทะผััะบะพั ั ะฟัะดะบะปััะตะฝะธะผะธ
ัะฐะนะปะฐะผะธ ัะบัะธะฟััะฒ ะดะปั ะบะพะถะฝะพะณะพ ะทะฐะฒะดะฐะฝะฝั. ะกะบะพะฟััะน ัั
ัะพะฑั ั ะฟัะพะตะบั. ะะปั ััะพะณะพ
ะทะฐะฒะฐะฝัะฐะถ ัะตะน ัะตะฟะพะทะธัะพััะน ัะบ ะฐัั
ัะฒ ะฐะฑะพ ะฒะธะบะพัะธััะพะฒัะน
[ัะตัะฒัั DownGit](https://downgit.github.io/) ะดะปั ะทะฐะฒะฐะฝัะฐะถะตะฝะฝั ะพะบัะตะผะพั ะฟะฐะฟะบะธ ะท
ัะตะฟะพะทะธัะพััั.
## ะะฐะฒะดะฐะฝะฝั 1
HTML ะผัััะธัั ัะฟะธัะพะบ ะบะฐัะตะณะพััะน `ul#categories`.
```html
<ul id="categories">
<li class="item">
<h2>Animals</h2>
<ul>
<li>Cat</li>
<li>Hamster</li>
<li>Horse</li>
<li>Parrot</li>
</ul>
</li>
<li class="item">
<h2>Products</h2>
<ul>
<li>Bread</li>
<li>Prasley</li>
<li>Cheese</li>
</ul>
</li>
<li class="item">
<h2>Technologies</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>React</li>
<li>Node.js</li>
</ul>
</li>
</ul>
```
ะะฐะฟะธัะธ ัะบัะธะฟั, ัะบะธะน:
1. ะะพัะฐั
ัั ั ะฒะธะฒะตะดะต ะฒ ะบะพะฝัะพะปั ะบัะปัะบัััั ะบะฐัะตะณะพััะน ะฒ `ul#categories`, ัะพะฑัะพ
ะตะปะตะผะตะฝััะฒ `li.item`.
2. ะะปั ะบะพะถะฝะพะณะพ ัะปะตะผะตะฝัะฐ `li.item` ั ัะฟะธะบั `ul#categories`, ะทะฝะฐะนะดะต ั ะฒะธะฒะตะดะต ะฒ
ะบะพะฝัะพะปั ัะตะบัั ะทะฐะณะพะปะพะฒะบั ะตะปะตะผะตะฝัะฐ (ัะตะณั `<h2>`) ั ะบัะปัะบัััั ะตะปะตะผะตะฝััะฒ ะฒ
ะบะฐัะตะณะพััั (ัััั
`<li>`, ะฒะบะปะฐะดะตะฝะธั
ะฒ ะฝัะพะณะพ).
ะ ัะตะทัะปััะฐัั, ะฒ ะบะพะฝัะพะปั ะฑัะดััั ะฒะธะฒะตะดะตะฝั ะฝะฐัััะฟะฝั ะฟะพะฒัะดะพะผะปะตะฝะฝั.
```bash
Number of categories: 3
Category: Animals
Elements: 4
Category: Products
Elements: 3
Category: Technologies
Elements: 5
```
## ะะฐะฒะดะฐะฝะฝั 2
HTML ะผัััะธัั ะฟะพัะพะถะฝัะน ัะฟะธัะพะบ `ul#ingredients`.
```html
<ul id="ingredients"></ul>
```
JavaScript ะผัััะธัั ะผะฐัะธะฒ ััะดะบัะฒ.
```js
const ingredients = [
'Potatoes',
'Mushrooms',
'Garlic',
'Tomatos',
'Herbs',
'Condiments',
];
```
ะะฐะฟะธัะธ ัะบัะธะฟั, ัะบะธะน ะดะปั ะบะพะถะฝะพะณะพ ะตะปะตะผะตะฝัะฐ ะผะฐัะธะฒั `ingredients`:
1. ะกัะฒะพัะธัั ะพะบัะตะผะธะน ะตะปะตะผะตะฝั `<li>`. ะะฑะพะฒ'ัะทะบะพะฒะพ ะฒะธะบะพัะธััะพะฒัะน ะผะตัะพะด
`document.createElement()`.
2. ะะพะดะฐััั ะฝะฐะทะฒั ัะฝะณัะตะดััะฝัะฐ ัะบ ะนะพะณะพ ัะตะบััะพะฒะธะน ะฒะผััั.
3. ะะพะดะฐััั ะตะปะตะผะตะฝัั ะบะปะฐั `item`.
4. ะััะปั ัะพะณะพ, ะฒััะฐะฒะธัั ััั `<li>` ะทะฐ ะพะดะฝั ะพะฟะตัะฐััั ั ัะฟะธัะพะบ `ul.ingredients`.
## ะะฐะฒะดะฐะฝะฝั 3
ะะฐะฟะธัะธ ัะบัะธะฟั ะดะปั ััะฒะพัะตะฝะฝั ะณะฐะปะตัะตั ะทะพะฑัะฐะถะตะฝั ะฝะฐ ะฟัะดััะฐะฒั ะผะฐัะธะฒั ะดะฐะฝะธั
. HTML
ะผัััะธัั ัะฟะธัะพะบ `ul.gallery`.
```html
<ul class="gallery"></ul>
```
ะะธะบะพัะธััะพะฒัะน ะผะฐัะธะฒ ะพะฑ'ัะบััะฒ `images` ะดะปั ััะฒะพัะตะฝะฝั ะตะปะตะผะตะฝััะฒ `<img>`, ะฒะบะปะฐะดะตะฝะธั
ะฒ `<li>`. ะะปั ััะฒะพัะตะฝะฝั ัะพะทะผััะบะธ ะฒะธะบะพัะธััะพะฒัะน ัะฐะฑะปะพะฝะฝั ััะดะบะธ ั ะผะตัะพะด
`insertAdjacentHTML()`.
- ะฃัั ะตะปะตะผะตะฝัะธ ะณะฐะปะตัะตั ะฟะพะฒะธะฝะฝั ะดะพะดะฐะฒะฐัะธัั ะฒ DOM ะทะฐ ะพะดะฝั ะพะฟะตัะฐััั ะดะพะดะฐะฒะฐะฝะฝั.
- ะะพะดะฐะน ะผัะฝัะผะฐะปัะฝะต ะพัะพัะผะปะตะฝะฝั ะณะฐะปะตัะตั ัะปะตะบัะฑะพะบัะฐะผะธ ะฐะฑะพ ะณััะดะฐะผะธ ัะตัะตะท CSS ะบะปะฐัะธ.
```js
const images = [
{
url: 'https://images.pexels.com/photos/140134/pexels-photo-140134.jpeg?dpr=2&h=750&w=1260',
alt: 'White and Black Long Fur Cat',
},
{
url: 'https://images.pexels.com/photos/213399/pexels-photo-213399.jpeg?dpr=2&h=750&w=1260',
alt: 'Orange and White Koi Fish Near Yellow Koi Fish',
},
{
url: 'https://images.pexels.com/photos/219943/pexels-photo-219943.jpeg?dpr=2&h=750&w=1260',
alt: 'Group of Horses Running',
},
];
```
## ะะฐะฒะดะฐะฝะฝั 4
ะััะธะปัะฝะธะบ ัะบะปะฐะดะฐััััั ะทั ัะฟะฐะฝั ั ะบะฝะพะฟะพะบ, ัะบั ะฟะพ ะบะปัะบั ะฟะพะฒะธะฝะฝั ะทะฑัะปัััะฒะฐัะธ ั
ะทะผะตะฝััะฒะฐัะธ ะนะพะณะพ ะทะฝะฐัะตะฝะฝั ะฝะฐ ะพะดะธะฝะธัั.
```html
<div id="counter">
<button type="button" data-action="decrement">-1</button>
<span id="value">0</span>
<button type="button" data-action="increment">+1</button>
</div>
```
- ะกัะฒะพัะธ ะทะผัะฝะฝั `counterValue`, ะฒ ัะบัะน ะฑัะดะต ะทะฑะตััะณะฐัะธัั ะฟะพัะพัะฝะต ะทะฝะฐัะตะฝะฝั
ะปััะธะปัะฝะธะบะฐ ัะฐ ัะฝัััะฐะปัะทัะน ัั ะทะฝะฐัะตะฝะฝัะผ `0`.
- ะะพะดะฐะน ัะปัั
ะฐััะฒ ะบะปัะบัะฒ ะดะพ ะบะฝะพะฟะพะบ, ะฒัะตัะตะดะธะฝั ัะบะธั
ะทะฑัะปัััะน ะฐะฑะพ ะทะผะตะฝััะน ะทะฝะฐัะตะฝะฝั
ะปััะธะปัะฝะธะบะฐ.
- ะะฝะพะฒะปัะน ัะฝัะตััะตะนั ะฝะพะฒะธะผ ะทะฝะฐัะตะฝะฝัะผ ะทะผัะฝะฝะพั `counterValue`.
## ะะฐะฒะดะฐะฝะฝั 5
ะะฐะฟะธัะธ ัะบัะธะฟั, ัะบะธะน ะฟัะด ัะฐั ะฝะฐะฑะพัั ัะตะบััั ะฒ ัะฝะฟััั `input#name-input` (ะฟะพะดัั
`input`), ะฟัะดััะฐะฒะปัั ะนะพะณะพ ะฟะพัะพัะฝะต ะทะฝะฐัะตะฝะฝั ะฒ `span#name-output`. ะฏะบัะพ ัะฝะฟัั
ะฟะพัะพะถะฝัะน, ั ัะฟะฐะฝั ะฟะพะฒะธะฝะตะฝ ะฒัะดะพะฑัะฐะถะฐัะธัั ััะดะพะบ `"Anonymous"`.
```html
<input type="text" id="name-input" placeholder="Please enter your name" />
<h1>Hello, <span id="name-output">Anonymous</span>!</h1>
```
## ะะฐะฒะดะฐะฝะฝั 6
ะะฐะฟะธัะธ ัะบัะธะฟั, ัะบะธะน ะฟัะด ัะฐั ะฒััะฐัะธ ัะพะบััั ะฝะฐ ัะฝะฟััั (ะฟะพะดัั `blur`), ะฟะตัะตะฒัััั
ะนะพะณะพ ะฒะผััั ัะพะดะพ ะฟัะฐะฒะธะปัะฝะพั ะบัะปัะบะพััั ะฒะฒะตะดะตะฝะธั
ัะธะผะฒะพะปัะฒ.
```html
<input
type="text"
id="validation-input"
data-length="6"
placeholder="Please enter 6 symbols"
/>
```
- ะฏะบะฐ ะบัะปัะบัััั ัะผะธะฒะพะปัะฒ ะฟะพะฒะธะฝะฝะฐ ะฑััะธ ะฒ ัะฝะฟััั, ะทะฐะทะฝะฐัะฐััััั ะฒ ะนะพะณะพ ะฐััะธะฑััั
`data-length`.
- ะฏะบัะพ ะฒะฒะตะดะตะฝะฐ ะฟัะฐะฒะธะปัะฝะฐ ะบัะปัะบัััั ัะธะผะฒะพะปัะฒ, ัะพ `border` ัะฝะฟััั ััะฐั ะทะตะปะตะฝะธะผ,
ัะบัะพ ะฝะตะฟัะฐะฒะธะปัะฝะฐ ะบัะปัะบัััั - ัะตัะฒะพะฝะธะผ.
ะะปั ะดะพะดะฐะฒะฐะฝะฝั ััะธะปัะฒ ะฒะธะบะพัะธััะพะฒัะน CSS-ะบะปะฐัะธ `valid` ั `invalid`, ัะบั ะผะธ ะฒะถะต
ะดะพะดะฐะปะธ ั ะฒะธั
ัะดะฝั ัะฐะนะปะธ ะทะฐะฒะดะฐะฝะฝั.
```css
#validation-input {
border: 3px solid #bdbdbd;
}
#validation-input.valid {
border-color: #4caf50;
}
#validation-input.invalid {
border-color: #f44336;
}
```
## ะะฐะฒะดะฐะฝะฝั 7
ะะฐะฟะธัะธ ัะบัะธะฟั, ัะบะธะน ัะตะฐะณัั ะฝะฐ ะทะผัะฝั ะทะฝะฐัะตะฝะฝั `input#font-size-control` (ะฟะพะดัั
`input`) ั ะทะผัะฝัั ัะฝะปะฐะนะฝ-ััะธะปั `span#text`, ะพะฝะพะฒะปัััะธ ะฒะปะฐััะธะฒัััั `font-size`. ะ
ัะตะทัะปััะฐัั, ะฟะตัะตััะณัััะธ ะฟะพะฒะทัะฝะพะบ, ะฑัะดะต ะทะผัะฝัะฒะฐัะธัั ัะพะทะผัั ัะตะบััั.
```html
<input id="font-size-control" type="range" min="16" max="96" />
<br />
<span id="text">Abracadabra!</span>
```
## ะะฐะฒะดะฐะฝะฝั 8
ะะฐะฟะธัะธ ัะบัะธะฟั ัะฟัะฐะฒะปัะฝะฝั ัะพัะผะพั ะปะพะณัะฝะฐ.
```html
<form class="login-form">
<label>
Email
<input type="email" name="email" />
</label>
<label>
Password
<input type="password" name="password" />
</label>
<button type="submit">Login</button>
</form>
```
1. ะะฑัะพะฑะบะฐ ะฒัะดะฟัะฐะฒะปะตะฝะฝั ัะพัะผะธ `form.login-form` ะฟะพะฒะธะฝะฝะฐ ะฒัะดะฑัะฒะฐัะธัั ะฒัะดะฟะพะฒัะดะฝะพ
ะดะพ ะฟะพะดัั `submit`.
2. ะัะด ัะฐั ะฒัะดะฟัะฐะฒะปะตะฝะฝั ัะพัะผะธ ััะพััะฝะบะฐ ะฝะต ะฟะพะฒะธะฝะฝะฐ ะฟะตัะตะทะฐะฒะฐะฝัะฐะถัะฒะฐัะธัั.
3. ะฏะบัะพ ั ัะพัะผั ั ะฝะตะทะฐะฟะพะฒะฝะตะฝั ะฟะพะปั, ะฒะธะฒะพะดั `alert` ะท ะฟะพะฟะตัะตะดะถะตะฝะฝัะผ ะฟัะพ ัะต, ัะพ
ะฒัั ะฟะพะปั ะฟะพะฒะธะฝะฝั ะฑััะธ ะทะฐะฟะพะฒะฝะตะฝั.
4. ะฏะบัะพ ะบะพัะธัััะฒะฐั ะทะฐะฟะพะฒะฝะธะฒ ััั ะฟะพะปั ั ะฒัะดะฟัะฐะฒะธะฒ ัะพัะผั, ะทะฑะตัะธ ะทะฝะฐัะตะฝะฝั ะฟะพะปัะฒ ะฒ
ะพะฑ'ัะบั, ะดะต ัะผ'ั ะฟะพะปั ะฑัะดะต ัะผ'ัะผ ะฒะปะฐััะธะฒะพััั, ะฐ ะทะฝะฐัะตะฝะฝั ะฟะพะปั - ะทะฝะฐัะตะฝะฝัะผ
ะฒะปะฐััะธะฒะพััั. ะะปั ะดะพัััะฟั ะดะพ ะตะปะตะผะตะฝััะฒ ัะพัะผะธ ะฒะธะบะพัะธััะพะฒัะน ะฒะปะฐััะธะฒัััั
`elements`.
5. ะะธะฒะตะดะธ ะพะฑ'ัะบั ัะท ะฒะฒะตะดะตะฝะธะผะธ ะดะฐะฝะธะผะธ ะฒ ะบะพะฝัะพะปั ั ะพัะธััะธ ะทะฝะฐัะตะฝะฝั ะฟะพะปัะฒ ัะพัะผะธ
ะผะตัะพะดะพะผ `reset`.
## ะะฐะฒะดะฐะฝะฝั 9
ะะฐะฟะธัะธ ัะบัะธะฟั, ัะบะธะน ะทะผัะฝัั ะบะพะปัะพัะธ ัะพะฝั ะตะปะตะผะตะฝัะฐ `<body>` ัะตัะตะท ัะฝะปะฐะนะฝ-ััะธะปั ะฟะพ
ะบะปัะบั ะฝะฐ `button.change-color` ั ะฒะธะฒะพะดะธัั ะทะฝะฐัะตะฝะฝั ะบะพะปัะพัั ะฒ `span.color`.
```html
<div class="widget">
<p>Background color: <span class="color">-</span></p>
<button type="button" class="change-color">Change color</button>
</div>
```
ะะปั ะณะตะฝะตััะฒะฐะฝะฝั ะฒะธะฟะฐะดะบะพะฒะพะณะพ ะบะพะปัะพัั ะฒะธะบะพัะธััะพะฒัะน ััะฝะบััั `getRandomHexColor`.
```js
function getRandomHexColor() {
return `#${Math.floor(Math.random() * 16777215).toString(16)}`;
}
```
## ะะฐะฒะดะฐะฝะฝั 10 (ะฒะธะบะพะฝัะฒะฐัะธ ะฝะต ะพะฑะพะฒ'ัะทะบะพะฒะพ)
ะะฐะฟะธัะธ ัะบัะธะฟั ััะฒะพัะตะฝะฝั ั ะพัะธัะตะฝะฝั ะบะพะปะตะบััั ะตะปะตะผะตะฝััะฒ. ะะพัะธัััะฒะฐั ะฒะฒะพะดะธัั
ะบัะปัะบัััั ะตะปะตะผะตะฝััะฒ ะฒ `input` ั ะฝะฐัะธัะบะฐั ะบะฝะพะฟะบั `ะกัะฒะพัะธัะธ`, ะฟััะปั ัะพะณะพ
ัะตะฝะดะตัะธัััั ะบะพะปะตะบััั. ะะฐัะธัะฝะตะฝะฝัะผ ะฝะฐ ะบะฝะพะฟะบั `ะัะธััะธัะธ`, ะบะพะปะตะบััั ะตะปะตะผะตะฝััะฒ
ะพัะธัะฐััััั.
```html
<div id="controls">
<input type="number" min="1" max="100" step="1" />
<button type="button" data-create>Create</button>
<button type="button" data-destroy>Destroy</button>
</div>
<div id="boxes"></div>
```
ะกัะฒะพัะธ ััะฝะบััั `createBoxes(amount)`, ัะบะฐ ะฟัะธะนะผะฐั ะพะดะธะฝ ะฟะฐัะฐะผะตัั - ัะธัะปะพ. ะคัะฝะบััั
ััะฒะพััั ัััะปัะบะธ `<div>`, ัะบัะปัะบะธ ะฒะบะฐะทะฐะฝะพ ะฒ `amount` ั ะดะพะดะฐั ัั
ั `div#boxes`.
1. ะ ะพะทะผััะธ ะฝะฐะนะฟะตััะพะณะพ `<div>` - 30px ะฝะฐ 30px.
2. ะะพะถะตะฝ ะตะปะตะผะตะฝั ะฟััะปั ะฟะตััะพะณะพ ะฟะพะฒะธะฝะตะฝ ะฑััะธ ัะธััะธะผ ั ะฒะธัะธะผ ะฒัะด ะฟะพะฟะตัะตะดะฝัะพะณะพ ะฝะฐ
10px.
3. ะัั ะตะปะตะผะตะฝัะธ ะฟะพะฒะธะฝะฝั ะผะฐัะธ ะฒะธะฟะฐะดะบะพะฒะธะน ะบะพะปัั ัะพะฝั ั ัะพัะผะฐัั HEX. ะะธะบะพัะธััะพะฒัะน
ะณะพัะพะฒั ััะฝะบััั `getRandomHexColor` ะดะปั ะพััะธะผะฐะฝะฝั ะบะพะปัะพัั.
```js
function getRandomHexColor() {
return `#${Math.floor(Math.random() * 16777215).toString(16)}`;
}
```
ะกัะฒะพัะธ ััะฝะบััั `destroyBoxes()`, ัะบะฐ ะพัะธัะฐั ะฒะผััั `div#boxes`, ั ัะฐะบะธะน ัะฟะพััะฑ
ะฒะธะดะฐะปัััะธ ะฒัั ััะฒะพัะตะฝั ะตะปะตะผะตะฝัะธ.
| Home task for JavaScript course๐ ---DOM / Events--- | goit-js-hw-06,homework,javascript,learning-javascript,practice,practice-javascript,goit,css3,html5,ukraine | 2023-02-08T16:57:39Z | 2023-03-02T22:13:40Z | null | 1 | 43 | 88 | 0 | 1 | 4 | null | null | JavaScript |
free-domains/free-domains.github.io | main | null | Website for Free Domains | html,html5,javascript,js,tailwind,tailwindcss,website | 2023-01-28T09:46:44Z | 2024-01-16T09:05:01Z | null | 2 | 0 | 28 | 0 | 0 | 4 | null | MIT | HTML |
zobayerdev/Snake_Highlight | main | # Snake_Highlight
a login page made with html, css, javascript.

| a login page made with html, css, javascript. | css,html,javascript | 2023-01-29T18:56:11Z | 2023-01-29T19:25:49Z | null | 1 | 0 | 6 | 0 | 0 | 4 | null | MIT | CSS |
Lucas-zz/Midjourney-backend | main | null | Backend for the Midjourney - DALL โข E 2 Clone using MongoDB for the cluster and Render to deploy. | dall-e,dalle2,image-generation,javascript,mongodb,openai,openai-api,cloudinary,express | 2023-02-09T01:42:49Z | 2023-02-09T01:48:13Z | null | 1 | 0 | 5 | 0 | 2 | 4 | null | null | JavaScript |
MdRasen/Modern-Portfolio-Website | main | # Modern-Portfolio-Website
A complete responsive personal portfolio website design by using HTML CSS and Vanilla JavaScript from scratch.
Live: <a href="https://mdrasen.github.io/Modern-Portfolio-Website/" target="_blank">https://mdrasen.github.io/Modern-Portfolio-Website/</a>
| A complete responsive modern portfolio website design by using HTML CSS and Vanilla JavaScript from scratch. | css,html,javascript,modern-portfolio,portfolio-website,vanila-javascript | 2023-02-03T14:13:44Z | 2023-02-23T06:33:35Z | null | 1 | 0 | 25 | 0 | 1 | 4 | null | MIT | HTML |
bugsnag/bugsnag-js-performance | next | <div align="center">
<a href="https://www.bugsnag.com/platforms/javascript">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://assets.smartbear.com/m/3dab7e6cf880aa2b/original/BugSnag-Repository-Header-Dark.svg">
<img alt="SmartBear BugSnag logo" src="https://assets.smartbear.com/m/3945e02cdc983893/original/BugSnag-Repository-Header-Light.svg">
</picture>
</a>
<h1>Performance monitoring for JavaScript</h1>
</div>
[](https://docs.bugsnag.com/performance/browser-js/)
[](https://buildkite.com/bugsnag/bugsnag-js-performance)
[](https://github.com/bugsnag/bugsnag-js-performance/actions/workflows/node-ci.yml)
Monitor the page load speed, capture [WebVitals](https://web.dev/vitals/) and take other measurements in your web app and see the results in your [BugSnag](https://www.bugsnag.com) dashboard.
## Features
- Reporting of page loads with WebVital metrics
- Automatic measurement of fetch and XHR request times
- Start and end your own spans to record custom parts of your code
## Getting started
For integration instructions, see our online docs: [docs.bugsnag.com/performance/browser-js](https://docs.bugsnag.com/performance/browser-js)
## Support
* [Read the integration guide](https://docs.bugsnag.com/performance/browser-js/)
* [Search open and closed issues](https://github.com/bugsnag/bugsnag-js-performance/issues?utf8=โ&q=is%3Aissue) for similar problems
* [Report a bug or request a feature](https://github.com/bugsnag/bugsnag-js-performance/issues/new)
## License
The BugSnag JavaScript Performance SDK is free software released under the MIT License. See the [LICENSE](https://github.com/bugsnag/bugsnag-js-performance/blob/master/LICENSE) for details. | Monitor the performance of your JavaScript (web and React Native) and see the results in your BugSnag dashboard. | performance,platforms,bugsnag,javascript,real-user-monitoring | 2023-02-01T11:08:05Z | 2024-05-21T08:20:33Z | 2024-05-02T08:55:53Z | 76 | 445 | 1,891 | 3 | 1 | 4 | null | MIT | TypeScript |
gustavohdab/rocketmovies | main | <h1 align="center">
Projeto completo - RocketMovies (Desafio 10 - Explorer)
</h1>
## ๐ป Projeto
O RocketMovies รฉ um projeto para cadastro de anotaรงรตes de filmes, desenvolvido durante o curso Explorer da Rocketseat.
Me desafiei a desenvolver o prejeto utilizando o framework TailwindCSS, que รฉ um framework de CSS que utiliza classes para estilizar os componentes e TypeScript, que รฉ um super set do JavaScript que adiciona tipagem estรกtica.
## Funcionalidades desenvolvidas:
- Criar uma nova conta
- Logar na aplicaรงรฃo
- Cadastro de anotaรงรตes de filmes; Tรญtulo, Nota de 0 a 5, Observaรงรตes, e tags que representam o gรชnero do filme.
- Pesquisar por tรญtulos das anotaรงรตes.
- Editar o perfil do usuรกrio; foto, nome, email e senha.
## Funcionalidades extras desenvolvidas (Desafios pessoais):
- Utilizar o framework TailwindCSS โ
- Utilizar o TypeScript โ
- Filtrar as anotaรงรตes por gรชnero (Tags) โ
- Excluir uma anotaรงรฃo โ
- Responsividade para mobile. โ
<p align="center">
<a href="#-tecnologias">Tecnologias</a> |
<a href="#-projeto">Projeto</a> </a>
</p>
<br>
## ๐จ Layout
<p align="center">
<img alt="preview" src=".github/preview.png" width="100%">
</p>
## ๐ Tecnologias
Esse projeto foi desenvolvido com as seguintes tecnologias:
- [React](https://reactjs.org)
- [TypeScript](https://www.typescriptlang.org/)
- [Vite](https://vitejs.dev/)
- [TailwindCSS](https://tailwindcss.com/)
- [React Router Dom](https://reactrouter.com/web/guides/quick-start)
- [react-icons](https://react-icons.github.io/react-icons/)
## ๐ TODO:
- [x] Deploy do projeto.
https://rocketmovies-gustavohdab.netlify.app/
## Preview
https://user-images.githubusercontent.com/112674398/215760718-b66041de-6aa5-4a99-8be5-81e4ebd57495.mp4
---
Feito com โฅ by Gustavo Batista :wave: [LinkedIn](https://www.linkedin.com/in/gustavo-h-batista/) e [GitHub](https://github.com/gustavohdab)
| RocketMovies is a movie annotation project developed during Rocketseat's Explorer course. It was built with React, TypeScript, Vite, TailwindCSS, React Router Dom and react-icons. Features include creating a new account, logging into the application, adding movie annotations, searching by title, editing user profile and deleting an annotation. | axios,reactjs,typescript,javascript,nodejs,reacr-router-dom,react-icons,learn | 2023-01-31T01:37:10Z | 2023-01-31T19:41:24Z | null | 1 | 1 | 10 | 0 | 0 | 4 | null | MIT | TypeScript |
Vimugithub/Car_run.road | main | # Car_run.road
Running
<!DOCTYPE html>
index.html
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Car</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="night">
<div class="surface">
<div class="car">
<img src="./Img_06.png" alt="">
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.6.3.min.js" integrity="sha256-pvPw+upLPUjgMXY0G+8O0xUf+/Im1MZjXxxgOcBQBXU=" crossorigin="anonymous"></script>
<script type="light.js"></script>
</body>
</html>
| Running | html,active,css,github-actions,javascript | 2023-02-02T10:51:22Z | 2023-02-03T11:45:02Z | null | 2 | 0 | 8 | 0 | 0 | 4 | null | null | CSS |
RoyJumah/Space-Travelers-Hub | main |
<a name="readme-top"></a>
<div align="center">
<h3><b>Space Travelers Hub README</b></h3>
</div>
<!-- TABLE OF CONTENTS -->
# ๐ Table of Contents
- [๐ Table of Contents](#-table-of-contents)
- [๐ \[Space Travelers Hub\] ](#-space-travelers-hub-)
- [๐ 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-)
<!-- PROJECT DESCRIPTION -->
# ๐ [Space Travelers Hub] <a name="about-project"></a>
**[Space Travelers Hub]** is a web application for a (fictional)company that provides commercial and scientific space travel services. The application will allow users to book rockets and join selected space missions. Uses real live data from the SpaceX API.
## ๐ Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<ul>
<li><a href="https://reactjs.org/">React.js</a></li>
<li><a href="https://redux.js.org/">Redux</a></li>
</ul>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **Reserve rocket**
- **Cancel rocket reservation**
- **Join mission**
- **Leave mission**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LIVE DEMO -->
## ๐ Live Demo <a name="live-demo"></a>
> Add a link to your deployed project.
- [Live Demo Link](https://space-travelers-hub-2023.netlify.app/)
<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
$ sudo apt install node
```
### Setup
Clone this repository to your desired folder:
```sh
$ cd my-folder
$ git clone https://github.com/yuvenalmash/space-travelers-hub.git
```
### Usage
To run the project, execute the following command:
```sh
$ npm install
$ npm run start
```
### Run tests
To run tests, run the following command:
```sh
$ npm run test
```
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## ๐ฅ Authors <a name="authors"></a>
> Mention all of the collaborators of this project.
๐ค **Yuvenal Njoroge**
- GitHub: [@yuvenalmash](https://github.com/yuvenalmash)
- Twitter: [@_Juvenal_](https://twitter.com/_Juvenal)
- LinkedIn: [Yuvenal Njoroge](https://linkedin.com/in/yuvenal-njoroge)
๐ค **Roy Jumah**
- GitHub: [@RoyJumah](https://github.com/RoyJumah)
- Twitter: [@_royissues](https://twitter.com/_royissues)
- LinkedIn: [Roy Jumah](https://www.linkedin.com/in/roy-jumah/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## ๐ญ Future Features <a name="future-features"></a>
- [ ] **Login and logout functionality**
<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/yuvenalmash/space-travelers-hub/issues).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- SUPPORT -->
## โญ๏ธ Show your support <a name="support"></a>
If you like this project you can give it a star
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## ๐ Acknowledgments <a name="acknowledgements"></a>
I would like to thank microverse for the inspiration
<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>
| Web application for a company (fictional) that provides commercial and scientific space travel services. The application will allow users to book rockets and join selected space missions. Uses real live data from the SpaceX API. Built with React and CSS3 | css3,react,redux,spacex-api,javascript,redux-toolkit | 2023-02-03T03:14:10Z | 2023-02-03T04:22:08Z | null | 1 | 0 | 86 | 0 | 0 | 4 | null | MIT | JavaScript |
xleddyl/telegen-ts | master | # Telegen-TS
A simple and effective library that solely provides an implementation of the official [Telegram Bot API](https://core.telegram.org/bots/api).
- Current version: [**Bot API 6.8**](https://core.telegram.org/bots/api#august-18-2023) (_august-18-2023_)
## ๐ Docs
This module doesn't need much documentation as all the infos can be retrieved from the official telegram's docs: <https://core.telegram.org/bots/api>
However all the methods and types are well documented within the editor's linter ๐
## ๐ก How does Telegen-TS works?
EASY! Telegen works by scraping all the important info relative to methods and types from the official API page (cited above). Then it autogenerates (_telegram + autogen = telegen_ eheheh) two files:
- [autogen-Methods.ts](./src/core/telegram/autogen-Methods.ts) contains the abstract class `Methods`, containing all the methods
- `TelegenTS` extends `Methods`
- all the methods simply call `Methods.makeRequest(...)` with the right parameters
- `makeRequest` is an abstract method that is then implemented in`TelegenTS`
- [autogen-types.ts](./src/core/telegram/autogen-types.ts) containing TypeScript's interfaces
- used in `Methods` for defining the types for parameters
Finally we have the most importante piece of the puzzle: [translator.js](./src/utils/translator.js)\
This is the file that manages the scraping and the translation of the API (surely it can be improved but literally who cares, probably no one other than me will ever read it lol)
## โ๏ธ Installation
```cli
npm install @xleddyl/telegen-ts
```
## ๐ป Usage
First import `@xleddyl/telegen-ts` into your project
```js
const { TelegenTS, Types } = require('@xleddyl/telegen-ts') // JavaScript
import { TelegenTS, Types } from '@xleddyl/telegen-ts' // TypeScript
```
Then create a new `TelegenTS` instance by passing your bot's token to the constructor
```js
const bot = new TelegenTS(TOKEN)
```
And you are pretty much ready to go now. Here I just leave a small recap on what you will import from this library:
- `TelegenTS` is a class from which all the [Available methods](https://core.telegram.org/bots/api#available-methods) can be called (alongside with the ones explained [here](https://core.telegram.org/bots/api#getting-updates))
- `Types` contains all the [Available types](https://core.telegram.org/bots/api#available-types) used as return values/function parameters (alongside with the ones explained [here](https://core.telegram.org/bots/api#getting-updates))
- suitable for type casting in TypeScript
- note: for return types manual inference is required ๐คง (read the docs to determine the return type of methods)
## ๐งช Examples
### Get the latest message sent to the bot and respond with the same text
JavaScript example
```js
const { TelegenTS, Types } = require('@xleddyl/telegen-ts')
const bot = new TelegenTS('1234567890:ASDFGHJKL')
const update = (await bot.getUpdates()).pop() // .pop() to get only the last message
const msg = update.message
if(msg !== undefined) {
await bot.sendMessage(msg.text, msg.chat.id, { reply_to_message_id: msg.message_id })
}
```
### Very simple and dumb polling mechanism
TypeScript example
```js
import { TelegenTS, Types } from '@xleddyl/telegen-ts'
const bot = new TelegenTS('1234567890:ASDFGHJKL')
async function poll(callbackfn: (updates: Types.Update[]) => Promise<void>) {
let lastUpdateId = 0
while (1) {
try {
const updates: Types.Update[] = await bot.getUpdates({ offset: lastUpdateId })
if (updates === undefined) break
if (updates.length === 0) continue
lastUpdateId = updates[updates.length - 1].update_id + 1
await callbackfn(updates)
} catch (e) {
console.log(e)
return
}
}
}
async function handler(update: Update[]) {
try {
for (const update of updates) {
const msg = update.message
if(msg === undefined) continue
await bot.sendMessage('ciao', msg.chat.id, {reply_to_message_id: msg.message_id})
}
} catch (e) {
console.log(e)
}
}
poll(handler)
```
### Sending a media file
If you want you can send files whenever the API specifies that the method accepts an `InputFile` type as parameter. To do so please use `fs.createReadStream(path)` (I've not tested other methods for uploading files so you'll need to experiment)
```js
const fs = require('fs')
const img = fs.createReadStream('./testimg.png')
await bot.sendPhoto(img, msg.chat.id)
```
---
And that's pretty much it!! ๐ฅณ\
Happy botting! ๐ค
| The autogenerated TypeScript library for the official Telegram Bot API | bot,javascript,nodejs,telegram,telegram-bot,typescript | 2023-01-28T09:27:38Z | 2023-08-23T12:00:19Z | null | 1 | 0 | 19 | 0 | 0 | 4 | null | GPL-3.0 | TypeScript |
bangle-io/nalanda | dev | <p align="center">
<a href="https://nalanda.bangle.io">
<img src="https://raw.githubusercontent.com/bangle-io/nalanda/dev/documentation/public/nalanda.png"
alt="screen" width="128" >
</a>
</p>
<h2 align="center">
Nalanda
</h2>
<p align="center">
Effortlessly Powerful State Management Simple to Start, Designed to Scale.
</p>
<div align="center">
<a href="https://nalanda.bangle.io/docs">Read the docs</a>
</div>
## Features
- **Predictable State Management:** No magic, predictable state management that scales with your app.
- **Performance Optimized:** With explicit dependency management, slices of state only update when necessary, ensuring optimal performance.
- **TypeScript First:** Leverages TypeScript to catch errors at compile-time.
- **Powerful Effects System:** Handle complex logic outside of your UI components.
- **Scalability:** Allows you to break your app into small, testable, and maintainable slices.
- **Framework Agnostic:** Works seamlessly with any framework.
### Installation
```sh
npm i @nalanda/core
# for react
npm i @nalanda/react
```
## Quick Start
### Creating a Slice
Lets start by creating a simple counter slice.
```tsx filename="counter-slice.ts"
import { createKey } from '@nalanda/core';
// The key is a local helper used to define various components of your slice.
const key = createKey('counterSlice', []);
// State fields define part of your state.
const counter = key.field(0);
// Actions define how a field/s should be updated.
function increment() {
return counter.update((c) => c + 1);
}
// A slice serves as an interface, revealing the specified fields
// and actions to the entire application.
export const counterSlice = key.slice({
counter,
increment,
});
```
### Setting up the Store
At the root of your React app, set up a store and encapsulate your app with the StoreProvider component:
```tsx copy filename="app.tsx"
import { StoreProvider } from '@nalanda/react';
import { createStore } from '@nalanda/core';
import { counterSlice } from './counter-slice';
// Establish a global store incorporating your slices.
const store = createStore({
slices: [counterSlice],
});
ReactDOM.render(
// use the StoreProvider to make the store available to the entire app.
<StoreProvider store={store}>
<App />
</StoreProvider>,
document.getElementById('root'),
);
```
### Displaying the counter
With the store in place, employ the useSlice hook to access the state and actions from the slice:
```tsx copy filename="counter.tsx"
import { useTrack, useStore } from '@nalanda/react';
import { counterSlice } from './counter-slice';
export function Counter() {
// useTrack re-render the component whenever `counter` changes
const { counter } = useTrack(counterSlice);
const store = useStore();
const increment = () => {
// Dispatch an action to update the slice
store.dispatch(counterSlice.increment());
};
return (
<div>
<h1>Counter</h1>
<p>{counter}</p>
<button onClick={increment}>increment</button>
</div>
);
}
```
### Next Steps
- Dive deeper into Nalanda by exploring our [official documentation](https://nalanda.bangle.io).
- View [real-world examples](https://nalanda.bangle.io/docs/examples) to see Nalanda in action.
### Contribute to Nalanda
Your contribution can make `nalanda` even better! If you're interested in lending a hand, please consult our [CONTRIBUTING.md](CONTRIBUTING.md) guide.
| A state management library | react,state,state-management,javascript,react-state-management,state-manager,typescript | 2023-01-29T23:23:26Z | 2023-11-18T21:15:33Z | 2023-11-18T19:17:10Z | 1 | 59 | 194 | 13 | 0 | 4 | null | null | TypeScript |
somiibo/tumblr-bot | main | <p align="center">
<a href="https://somiibo.com/platforms/tumblr-bot">
<img src="https://cdn.itwcreativeworks.com/assets/somiibo/images/logo/somiibo-brandmark-blue-x.svg" width="100px">
</a>
</p>
<p align="center">
<img src="https://img.shields.io/github/package-json/v/itw-creative-works/node-powertools.svg">
<br>
<img src="https://img.shields.io/npm/dm/node-powertools.svg">
<img src="https://img.shields.io/website/https/itwcreativeworks.com.svg">
<img src="https://img.shields.io/github/contributors/itw-creative-works/node-powertools.svg">
<br>
<br>
<strong>Tumblr Bot</strong> is a free software that automatically follows users and likes, reposts & comments on posts
</p>
# ๐ป Installation
### Direct link
[](https://somiibo.com/download?download=windows)
[](https://somiibo.com/download?download=macos)
[](https://somiibo.com/download?download=linux)
[](https://somiibo.com/download?download=null)
### Command line
Clone this repo then run the following commands:
```shell
cd <download-directory>
npm install
npm start
```
# ๐ Features
- Grow your Tumblr organically
- Automatically follows users and likes, reposts & comments on posts
- Those users will then become organic followers
# ๐โโ๏ธ Want to contribute?
Want to contribute? Great! All contributions are welcome, from code to documentation to graphics to design suggestions to bug reports.
[Join our Discord server](https://somiibo.com/discord) to participate
| Tumblr Bot. Automatically follows users and likes, reposts & comments on posts | agency,automation,front-end,frontend,javascript,marketing,marketing-automation,nodejs,saas,social-media | 2023-02-07T13:13:53Z | 2024-05-23T01:45:09Z | null | 2 | 0 | 469 | 0 | 0 | 4 | null | null | JavaScript |
Re4GD/node-coinbase-commerce | main | # Node.js Typescript Coinbase Commerce API



Node.js connector for the Coinbase Commerce API with Typescript.
- Simple and unopiniated connector.
- Actively maintained with a modern, promise-driven interface.
- Strongly typed on all requests and responses.
- Lightweight package and snappy DX.
- Proxy support via axios integration.
- Client samples, webhook samples and code snippet examples
# Installation
`npm install node-coinbase-commerce`
# Examples
Refer to the [examples](./examples) folder for implementation demos.
# Usage
## Create an API client
```typescript
import { CoinbaseCommerceClient } from "node-coinbase-commerce";
export const client = new CoinbaseCommerceClient(API_KEY);
```
## Charges
```typescript
const charges = await client.listCharges();
```
```typescript
const checkout = await client.createCharge({
name: "Product name",
description: "Product description",
pricing_type: "fixed_price",
local_price: {
amount: 100,
currency: "USDT", // BTC, ETH, USDT
},
metadata: {
customer_id: "Customer id",
customer_name: "Customer name",
},
redirect_url: "http://example.com/redirect_url",
cancel_url: "http://example.com/cancel_url",
});
```
```typescript
const charge = await client.showCharge({
charge_code_or_charge_id: "XXX",
});
```
```typescript
const charge = await client.cancelCharge({
charge_code_or_charge_id: "XXX",
});
```
```typescript
const charge = await client.resolveCharge({
charge_code_or_charge_id: "XXX",
});
```
## Checkouts
```typescript
const checkouts = await client.listCheckouts();
```
```typescript
const checkout = await client.createCheckout({
name: "Product name",
description: "Product description",
requested_info: ["name", "email", "address", "phone"],
pricing_type: "fixed_price",
local_price: {
amount: 100,
currency: "USDT", // BTC, ETH, USDT
},
});
```
```typescript
const checkout = await client.showCheckout({
checkout_id: "XXX",
});
```
```typescript
const checkout = await client.updateCheckout({
checkout_id: "XXX",
name: "Product name",
description: "Product description",
requested_info: ["name", "email", "address", "phone"],
pricing_type: "fixed_price",
local_price: {
amount: 100,
currency: "USDT", // BTC, ETH, USDT
},
});
```
```typescript
await client.deleteCheckout({
checkout_id: "XXX",
});
```
## Invoices
```typescript
const invoices = await client.listInvoices();
```
```typescript
const invoice = await client.createInvoice({
business_name: "XXX",
customer_email: "xxx@xxx.xxx", // has to be email
customer_name: "XXX",
memo: "XXX",
local_price: {
amount: 100,
currency: "USDT", // BTC, ETH, USDT
};
})
```
```typescript
const invoice = await client.showInvoice({
invoice_code_or_invoice_id: "XXX",
});
```
```typescript
const invoice = await client.voidInvoice({
invoice_code_or_invoice_id: "XXX",
});
```
```typescript
const invoice = await client.resolveInvoice({
invoice_code_or_invoice_id: "XXX",
});
```
## Events
```typescript
const events = await client.listEvents();
```
```typescript
const invoice = await client.showEvent({
event_id: "XXX", // uuidv4
});
```
# Webhooks
## Verify a webhook
```typescript
const { isVerified, error, typedBody } = verifyWebhook(
req.body,
req.headers["x-cc-webhook-signature"],
WEBHOOK_SHARED_SECRET,
);
```
| Node.js Typescript Coinbase Commerce API | coinbase,coinbase-commerce,javascript,nodejs,typescript | 2023-02-07T12:09:47Z | 2023-04-07T16:53:30Z | null | 1 | 1 | 86 | 5 | 0 | 4 | null | MIT | TypeScript |
notkearash/guess-number-game | main | # Guess the number. Game.
---
My confidence of having the enough knowledge about a Programming language/Framework is when I can make a "Guess the number game" with it. So here is the VueJS version of it! Here is a screenshot of it:

## Notes
+ Dirty and quick project
+ But still usable
Licensed by MIT | Guess the number. The Game. | game,javascript,vue | 2023-02-07T21:15:42Z | 2023-02-07T21:16:22Z | null | 1 | 0 | 1 | 0 | 1 | 4 | null | MIT | Vue |
yuvenalmash/space-travelers-hub | dev |
<a name="readme-top"></a>
<div align="center">
<h3><b>Space Travelers Hub README</b></h3>
</div>
<!-- TABLE OF CONTENTS -->
# ๐ Table of Contents
- [๐ Table of Contents](#-table-of-contents)
- [๐ \[Space Travelers Hub\] ](#-space-travelers-hub-)
- [๐ 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-)
<!-- PROJECT DESCRIPTION -->
# ๐ [Space Travelers Hub] <a name="about-project"></a>
**[Space Travelers Hub]** is a web application for a (fictional)company that provides commercial and scientific space travel services. The application will allow users to book rockets and join selected space missions. Uses real live data from the SpaceX API.
## ๐ Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<ul>
<li><a href="https://reactjs.org/">React.js</a></li>
<li><a href="https://redux.js.org/">Redux</a></li>
</ul>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **Reserve rocket**
- **Cancel rocket reservation**
- **Join mission**
- **Leave mission**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LIVE DEMO -->
## ๐ Live Demo <a name="live-demo"></a>
> Add a link to your deployed project.
- [Live Demo Link](https://space-travelers-hub-2023.netlify.app/)
<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
$ sudo apt install node
```
### Setup
Clone this repository to your desired folder:
```sh
$ cd my-folder
$ git clone https://github.com/yuvenalmash/space-travelers-hub.git
```
### Usage
To run the project, execute the following command:
```sh
$ npm install
$ npm run start
```
### Run tests
To run tests, run the following command:
```sh
$ npm run test
```
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## ๐ฅ Authors <a name="authors"></a>
> Mention all of the collaborators of this project.
๐ค **Yuvenal Njoroge**
- GitHub: [@yuvenalmash](https://github.com/yuvenalmash)
- Twitter: [@_Juvenal_](https://twitter.com/_Juvenal)
- LinkedIn: [Yuvenal Njoroge](https://linkedin.com/in/yuvenal-njoroge)
๐ค **Roy Jumah**
- GitHub: [@RoyJumah](https://github.com/RoyJumah)
- Twitter: [@_royissues](https://twitter.com/_royissues)
- LinkedIn: [Roy Jumah](https://www.linkedin.com/in/roy-jumah/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## ๐ญ Future Features <a name="future-features"></a>
- [ ] **Login and logout functionality**
<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/yuvenalmash/space-travelers-hub/issues).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- SUPPORT -->
## โญ๏ธ Show your support <a name="support"></a>
If you like this project you can give it a star
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## ๐ Acknowledgments <a name="acknowledgements"></a>
I would like to thank microverse for the inspiration
<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>
| Web application for a company (fictional) that provides commercial and scientific space travel services. The application will allow users to book rockets and join selected space missions. Uses real live data from the SpaceX API. | javascript,reactjs,redux-toolkit,spacex-api | 2023-01-30T09:50:03Z | 2023-02-03T06:28:13Z | null | 2 | 19 | 85 | 0 | 0 | 4 | null | MIT | JavaScript |
LokeshGola/LokeshGola.github.io | master | null | It is portfolio repository where you can see all my skills , projects , experience. | css,html,javascript | 2023-01-30T15:14:27Z | 2023-11-05T14:23:12Z | null | 1 | 0 | 117 | 0 | 0 | 4 | null | null | HTML |
kauamoreno/portifolio-api | main | <h1 align="center">Portifรณlio API</h1>

Este รฉ o meu projeto de portfรณlio de consumo de API, que eu criei para exibir meus projetos e habilidades de maneira atraente e acessรญvel. <br> <br>
Eu utilizei duas API externa para buscar e exibir informaรงรตes sobre meus projetos. Alรฉm disso, eu tambรฉm incluรญ uma seรงรฃo (footer) com informaรงรตes de contato para que as pessoas possam entrar em contato comigo. <br><br>
Com uma interface amigรกvel e um design responsivo, este portfรณlio รฉ a minha escolha perfeita para exibir minhas realizaรงรตes e destacar minha presenรงa na web.
<br><br>
## Licenรงa
Este projeto estรก sob a licenรงa MIT, para mais informaรงรตes consulte o arquivo [LICENSE](LICENSE) .
<br><br>
> Feito por Kauรฃ Moreno
[](https://www.linkedin.com/in/kauamoreno/)
[](mailto:kaua.moreno2005@gmail.com)
| Portfรณlio sobre meus projetos envolvendo o consumo de API's pรบblicas e internas. | api,desenvolvimento-web,javascript,portfolio,sass,api-consumer | 2023-01-26T14:24:32Z | 2023-03-05T21:11:17Z | 2023-03-05T21:11:17Z | 1 | 2 | 58 | 0 | 0 | 4 | null | MIT | HTML |
oucystong/oucystong.github.io | main | # ๆชๅ
ฝๅฏผ่ช
## ๅผๅงไนๅ
1ใๆต่งๅจ็ๆถ่ๅคนๅ
ๅฎนๅๆฅ่ถๅค๏ผๆๆถๅๆ ๆณๅพๅฟซ็ๆพๅฐไธไธชไธๅธธ็จ็็ฝๅ๏ผๆไปฅ่็ไบไธไธชๆณๆณ๏ผๆไธไธช่ชๅทฑ็ไธชไบบๅฏผ่ช้กตใ
2ใๅฆๆไฝ ่ทๆๆไธๆ ท็้ๆฑ๏ผ้ฃไนๅฏไปฅ่ฏ่ฏๆชๅ
ฝๅฏผ่ช๏ผ้จ็ฝฒๆนไพฟ็ฎๅ๏ผไธ้่ฆไปปไฝๆๅกๅจๆๆฌ๏ผๅฏไปฅ่ฏดๆฏ๏ผ้ถๆๆฌใ
3ใๅฏไธ้่ฆ็่ฝๅๅฐฑๆฏไผ็ฎๅไฝฟ็จGitใGithubๅ็ฎๅ็ไฟฎๆนๅ็ซฏไปฃ็ ใ
## ๆผ็คบๆๆ
>ไฝ้ชๅฐๅ๏ผhttps://codermonster.top/
1ใๆฅ้ดๆจกๅผ

2ใๅค้ดๆจกๅผ

## ไธ่ฝฝ้จ็ฝฒ
>ๅๆ๏ผๆฌๅฐๅทฒ็ปๅฎ่ฃ
้
็ฝฎไบGitๅทฅๅ
ทใ
1ใๅ
้้กน็ฎ
```shell
// ๅ
้้กน็ฎ
git clone https://github.com/oucystong/oucystong.github.io.git
```
2ใๆฅ็้กน็ฎ็่ฟ็จๅฐๅ
```shell
// ๆฅ็้กน็ฎ็่ฟ็จๅฐๅ
git remote -v
```
>ๆญคๆถ่ฟ็จๅฐๅไธบๆฌ้กน็ฎ็่ฟ็จๅฐๅ๏ผ้่ฆไฟฎๆนๆไฝ ่ชๅทฑ็่ฟ็จๅฐๅ๏ผๅฆๅๅ็ปญไฟฎๆนไปฃ็ ๅๆ ๆณๆจ้ๅ้จ็ฝฒใ
3ใๆณจๅGithub่ดฆๅท๏ผๅนถไธๆ็
งๅฆไธๅพ็่ฆๆฑๆฐๅปบไปๅบ

4ใ่ทๅๆฐๅปบไปๅบๅฐๅๅนถไธ่ฎพ็ฝฎๆฌๅฐ้กน็ฎ็่ฟ็จๅฐๅ
```shell
# ่ฎพ็ฝฎ่ฟ็จไปๅบๅฐๅ
git remote set-url origin https://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@github.com/oucystong/oucystong.github.io.git
# ๆฅ็่ฟ็จไปๅบๅฐๅ
git remote -v
```
>ๆณจๆ๏ผ
>
>1ใไฝ ็ๆฐๅปบไปๅบๅฐๅๅฏ่ฝ่ทไธ่ฟฐไปๅบๆ ผๅผไธๅคชไธๆ ท๏ผๅฟ
้กป่ฆ่ทไธ่ฟฐไปๅบๆ ผๅผ็ธๅๆๅฏไปฅ๏ผๅฆๅๆ ๆณๆจ้๏ผ่ฟๆฏๅ ไธบGithubไธๅๅ
่ฎธ้่ฟ็จๆทๅๅๅฏ็ ็ๆนๅผ่ฟ่ก้ช่ฏใ
>
>2ใ่งฃๅณๆนๆก๏ผhttps://blog.csdn.net/yjw123456/article/details/119696726
5ใไฟฎๆนไปฃ็
>ไปฃ็ ๅบๆฌ้ฝๅฏไปฅ่งๅ็ฅๆ๏ผ่ชๅฎไนๅ
ๅฎนๆฟๆขไธบ่ชๅทฑ็ๅณๅฏใ
6ใๆไบคไปฃ็
```shell
# ไธๅฅไธ่ฟๆ
git add .
git commit -m "update"
git push -u origin main
```
7ใ้่ฟGithub Pages้จ็ฝฒ้กน็ฎ

8ใ้่ฟGithub Pages็ๆ็็ฝๅๆต่ฏ่ฎฟ้ฎ
9ใๅฆๆๆณ่ชๅฎไนๅๅ๏ผๅฏไปฅ้่ฟ้ฟ้ไบๆ่
่
พ่ฎฏไบ็ดๆฅ็ณ่ฏท๏ผๅฆๆไป
ไป
ไฝไธบGithub Pages็็ปๅฎๅๅ๏ผๅไธ้่ฆๅคๆก
> * ๆไบคCNAMEๆไปถๅฐไปๅบไธญ๏ผCNAMEๆไปถๅ
ๅฎนๆฏ็ณ่ฏท็ๅๅใ
> * ๅจ้ฟ้ไบๆ่
่
พ่ฎฏไบไธญ้
็ฝฎๅๅ่งฃๆใ
## ๅ่้กน็ฎ
* [WebStack](https://github.com/WebStackPage/WebStackPage.github.io/)
* [WebStack-Hugo](https://github.com/shenweiyan/WebStack-Hugo)
## ่ฏทๅๅฏไน
่งๅพๆๅธฎๅฉ็ๅฐไผไผด๏ผๆฌข่ฟ่ฏทไฝ่
ๅๆฏ่ฅๅฎ
ๅฟซไนๆฐด๏ผ
<img src="images/่ต่ต็ .JPG" width = "300" height = "300" alt="ๅพ็ๅ็งฐ" align="center" />
## ๅ
ณๆณจๆชๅ
ฝ
็ ๅๆชๅ
ฝ๏ผไธๅชๅๆฌข็ ็ฉถๆๆฏใ็งๆใๆๆณใ่ฝฏไปถใ่ตๆบใไบงๅ็้ไธๆญฃ็ป็UPไธป๏ผๅฆๆๆไปปไฝ้ฎ้ขๅฏไปฅๅ
ณๆณจๆชๅ
ฝ็ๅพฎไฟกๅ
ฌไผๅทๅๆถ็่จๅ้ฆ๏ผ

| ็ ๅๆชๅ
ฝ | ๆชๅ
ฝๅฏผ่ช | navigation,css,html,javascript,markdown | 2023-02-08T20:07:57Z | 2023-12-24T15:59:16Z | null | 1 | 1 | 44 | 0 | 9 | 4 | null | MIT | HTML |
KaShiekzmi/Coursera-HTML-CSS-and-Javascript-for-web-developers | main | # Coursera
Assessments for HTML, CSS, and Javascript for Web Developers by Kashif Abbas Kazmi from Johns Hopkins University are available in the Coursera-HTML-CSS-and-Javascript-for-web-developers repository. In order to view assignment outputs, click the link below. Do not Copy.

# Outputs
1. [Module 2](https://kashiekzmi.github.io/Coursera-HTML-CSS-and-Javascript-for-web-developers/Coursera%20Solutions/Assignment%202/index.html)
2. [Module 3](https://kashiekzmi.github.io/Coursera-HTML-CSS-and-Javascript-for-web-developers/Coursera%20Solutions/Assignment%203/index.html)
3. [Module 4](https://kashiekzmi.github.io/Coursera-HTML-CSS-and-Javascript-for-web-developers/Coursera%20Solutions/Assignment%204/index.html)
4. [Module 5](https://kashiekzmi.github.io/Coursera-HTML-CSS-and-Javascript-for-web-developers/Coursera%20Solutions/Assignment%205/index.html)
| Web development course teaching HTML, CSS, and JavaScript basics including website design, responsive layout creation, and dynamic user interaction implementation. | css,html,javascript,cssframework | 2023-02-06T07:23:45Z | 2023-02-09T12:09:26Z | null | 1 | 0 | 34 | 0 | 0 | 4 | null | null | JavaScript |
Hossara/vanilla_js_drag-drop_with_progress | main | # Vanilla.js and php drag & drop file handler with progress bar
Developed by: Hossein Araghi

#### If you want to donate me, [buy me a coffee ๐](https://coffeebede.ir/hossara)
- **Contact me**
- [YasTech](https://github.com/YasTechOrg)
- [Website](https://hossara.com)
- [LinkedIn](https://linkedin.com/in/hossara)
- [Instagram](https://instagram.com/hossara.dev)
- [Email](mailto:hoseinaraghi84@gmail.com) | Vanilla.js and php drag & drop file handler with progress bar | drag-and-drop,file-upload,javascript,js,php,php7,progress-bar,vanilla-js | 2023-01-27T09:05:06Z | 2023-01-27T18:14:18Z | null | 1 | 0 | 4 | 0 | 0 | 4 | null | MIT | JavaScript |
cedekpoole/favourite-music-dashboard | main | # Favourite Music Dashboard
## Description
Link to deployed application: https://cedekpoole.github.io/favourite-music-dashboard/
Welcome to the repo! The 'Favourite Music Dashboard' is a web application that allows users to effortlessly find their favourite artists and songs. With ease and accessibility in mind, this application is to be used by users for the purpose of finding song lyrics without having to scour the internet for them. Frequently, music fans struggle to find the lyrics of their favourite songs. They may not remember all the words or they may want to sing along to a song theyโve never heard before. Our project solves this issue - users are able to save specific songs and view the lyrics in just a few clicks. The app provides a more comprehensive and accurate source of lyrics, ensuring that users can find the lyrics theyโre looking for.
This project was a collaborative venture (contributors listed below). As a team, we practiced agile development where our first objective was to create a MVP (minimum viable product). This entailed the implementation of core features - in addition to the elimination of any overarching bugs - in order to get a working version of the app. While following agile principles, it was of crucial importance to have an early version up and running prior to the implementation of additional features. Soon after, we created a colour scheme and styled the page to fit the theme that we were aiming for. The final step was adding supplementary functionality to the page.

The mockup above was used as a guide and reference for how we should structure our application. We used bootstrap - the most popular CSS framework for building responsive websites - as means to help with the styling and structuring of the page. The modal components were particularly helpful to us in our aim of creating a clean, modern website. We used the JavaScript library 'jQuery' to aid us with DOM tree transversal and manipulation. Not only that, we sent Ajax (Asynchronous JavaScript and XML) requests via jQuery using the $.ajax method, allowing us to retreive data in JSON (JavaScript Object Notation) format from server-side APIs. We used two server-side APIs for this project: 'Deezer' and 'Some Random API'.
### Technologies Used:
- HTML, CSS
- Javascript
- [Bootstrap (v5.3)](https://getbootstrap.com/)
- [jQuery (v3.6.3)](https://api.jquery.com/)
- Server-side APIs ([Deezer](https://developers.deezer.com/api) for the artist info and [Some Random API](https://some-random-api.ml/docs/welcome/introduction) for the song lyrics)
### User Story:
As a music lover, I want to be able to search and store my favourite songs and easily access the lyrics for each saved song.
### General Acceptance Criteria:
- Use Bootstrap.
- Be deployed to GitHub Pages.
- Be interactive (in other words, accept and respond to user input).
- Use at least two server-side APIs Links to an external site..
- Use modals instead of alerts, confirms, or prompts.
- Use client-side storage to store persistent data.
- Be responsive.
- Have a polished UI.
- Have a clean repository that meets quality coding standards (file structure, naming conventions, best practices for class/id naming conventions, indentation, quality comments, and so on).
- Have a quality README (including a unique name, description, technologies used, screenshot, and link to the deployed application).
Provide a short description explaining the what, why, and how of your project.
## Installation
N/A
## Usage
### Users
To visit the website, [please click this link.](https://cedekpoole.github.io/favourite-music-dashboard/)
You will be directed to the webpage where you can enter an artist and/or a song name, you will then be shown the search results for that particular input. When the 'Add to Favs' button is clicked, the song will be stored as persistent data in local storage, being placed in the aside section of the page for easy access.

When the 'View Lyrics' button is clicked, users can view the lyrics for that particular song from within a modal pop up. From within the modal, users are also given the option to add those lyrics to favourites so it can be stored as persistent data.

### Developers
1. Navigate to the main page of the repository
2. Click the green โCodeโ button and copy the SSH or HTTPS key
3. In terminal (Mac) or Git Bash (Windows) clone into the directory you want the repo in using the โgit cloneโ command followed by pasting your SSH or HTTPS key
4. Open the directory in your code editor
5. Inspect the html and js files to see how the application works!
## Credits
Project contributors:
- [bethanyryalls](https://github.com/bethanyryalls)
- Created the skeleton of the page (HTML + Bootstrap)
- Dynamically generated the playlist and the search result cards
- Implemented the 'load more' buttons
- Added responsiveness to page and had creative input on page design
- General refactoring of code base
- [c4rli](https://github.com/c4rli)
- Managed the lyrics server-side API
- Retrieved lyric data and created modals for the lyric buttons
- Dealt with ajax request errors
- Creative input on page design
- General refactoring of code base
- [DollyA-bit](https://github.com/DollyA-bit)
- Picked the colour scheme of the page
- [cedekpoole](https://github.com/cedekpoole)
- Dynamically generated the 'favourite songs' cards
- Added functionality to said cards (delete songs individually or collectively + stop duplication)
- Dealt with local storage
- Managed the README file
- General refactoring of code base
## License
Please refer to the LICENSE in the repo.
---
## Features
- The user can search for either an artist or a specific song for easy access to lyrics
- All cards on the page are generated dynamically via jQuery
- Modals have been used for the lyric buttons
- 'Load more' button has been implemented
- Favourite songs are saved to local storage
- When an error occurs, a modal pop up is returned
- Delete each favourite song - which is stored in local storage - individually or collectively
- When a song is already added to favourites, a modal pops up that states that the song is already in the favourites section
- **Coming Soon**: A variety of playlists are shown on the welcome screen (to give users more choice on the playlists they want to look at)
## Roadmap
- Use Youtube Data API to add the music video of that particular song in the modal?
- Add the audio for each song in the lyric modal
- ~~Add playlist cards to the welcome screen (to give users more choice on the playlists they want to look at)~~ **DONE**: in forked version of repo - need to merge with main branch
- ~~Create a logo for the page~~ **DONE**: has been pushed to main | Favourite Music Dashboard ๐ถ is an application that allows users to effortlessly look up lyrics to their favourite songs. | ajax,css,html,javascript,jquery | 2023-01-31T20:28:11Z | 2023-02-09T20:07:46Z | null | 4 | 0 | 79 | 0 | 2 | 4 | null | MIT | JavaScript |
HenriqueBarucco/Node-Sequelize-API | main | null | Rest API using Node + Express with Sequelize ORM. | backend,javascript,sequelize | 2023-01-29T20:28:39Z | 2023-02-12T17:57:15Z | null | 1 | 0 | 15 | 0 | 0 | 4 | null | null | JavaScript |
Daltonic/dappCinemas | main | # How to Build a Cinema Ticket Booking Dapp with React, Solidity, and CometChat
Read the full tutorial here: [**>> How to Build a Cinema Ticket Booking Dapp with React, Solidity, and CometChat**](https://daltonic.github.io)
This example shows How to Build a Cinema Ticket Booking Dapp with React, Solidity, and CometChat:

<center><figcaption>Dapp Cinemas Adding Movie</figcaption></center>

<center><figcaption>Dapp Cinemas Project</figcaption></center>

<center><figcaption>Dapp Cinemas Chat</figcaption></center>
## Technology
This demo uses:
- Metamask
- Hardhat
- Infuria
- ReactJs
- Tailwind CSS
- Solidity
- EthersJs
- Faucet
## Running the demo
To run the demo follow these steps:
1. Clone the project with the code below.
```sh
# Make sure you have the above prerequisites installed already!
git clone https://github.com/Daltonic/dappCinemas PROJECT_NAME
cd PROJECT_NAME # Navigate to the new folder.
yarn install # Installs all the dependencies.
```
2. Create a CometChat project, copy and paste your key in the spaces below.
3. Update the `.env` file with the following details.
```sh
REACT_APP_COMET_CHAT_APP_ID=<CometChat_APP_ID>
REACT_APP_COMET_CHAT_AUTH_KEY=<Comet_Chat_AUTH_KEY>
REACT_APP_COMET_CHAT_REGION=<CometChat_REGION>
REACT_APP_RPC_URL=<http://127.0.0.1:8545>
```
4. Run the app using the following commands.
```sh
yarn install
yarn hardhat node
yarn hardhat run scripts/deploy.js
```
5. On another terminal, run `yarn start` to launch the project on the browser.
6. Add some hardhat accounts, connect your wallet and interact with the app.
<br/>
If your confuse about the installation, check out this **TUTORIAL** to see how you should run it.
Questions about running the demo? [Open an issue](https://github.com/Daltonic/dappCinemas/issues). We're here to help โ๏ธ
Access the [Teaching Guide Here](https://docs.google.com/document/d/13bBRyAO0bEwRt776FXbYgWm6-OBFiUu6zTeOgRbXXyI/edit?usp=sharing).
## Useful links
- ๐ [Website](https://dappmentors.org/)
- โฝ [Metamask](https://metamask.io/)
- ๐ [CometChat](https://try.cometchat.com/oj0s7hrm5v78)
- ๐ก [Hardhat](https://hardhat.org/)
- ๐ [Infuria](https://infura.io/)
- ๐ฅ [ReactJs](https://reactjs.org/)
- ๐ป [Solidity](https://soliditylang.org/)
- ๐ [EthersJs](https://docs.ethers.io/v5/)
- ๐
[Faucet](https://www.alchemy.com/faucets)
- โจ [Live Demo](https://dapp-cinemas.web.app/)
| Dapp Cinemas is a decentralized application that uses blockchain technology to revolutionize the movie industry. The project offers a comprehensive solution for movie management, showtime scheduling, ticket booking, and revenue tracking. Please leave a star | cometchat,ethersjs,javascript,react,smart-contracts,solidity,tailwindcss,web3 | 2023-01-26T14:54:41Z | 2023-06-27T13:26:38Z | null | 3 | 7 | 42 | 0 | 0 | 4 | null | null | JavaScript |
cardtunic/macrowizard | master | <img src="https://i.imgur.com/8Ka66k3.png"/>
<p align="center">
<a href="#whatis">What is?</a> โข
<a href="#demo">Demo</a> โข
<a href="#features">Features</a> โข
<a href="#goals">Goals</a> โข
<a href="#tech">Tech</a> โข
<a href="#author">Author</a> โข
<a href="#licence">License</a>
</p>
<h2 id="whatis">๐ค What is?</h2>
macrowizard is an application that helps you create macros for a program called [LuaMacros](https://github.com/me2d13/luamacros), without you having to programing, simplifying the whole process.
<a target="_blank" href="https://cardtunic.github.io/macrowizard/">
<img src="https://i.imgur.com/P2P6drn.png"/>
</a>
<h4 align="center">
๐ง This project is under development ๐ง
</h4>
---
<h2 id="demo">๐ป Demo</h2>
<img src="https://i.imgur.com/KUXjFGL.gif"/>
<a target="_blank" href="https://www.figma.com/file/jmtKL15XAlYc5IH1oFZs0j/macrowizard_---Web-Page?node-id=49%3A38&t=aOeXjEDy4e9oHMNR-1">
<img src="https://img.shields.io/static/v1?label=Access the layout&message=FIGMA&color=f14e1e&style=for-the-badge&logo=<LOGO>"/>
</a>
---
<h2 id="features">โจ Features</h2>
- Create new macros
- Delete macros
- Use multiple modifier keys
- View your created macros
- Export/Import your settings
- Save macros as .lua files
---
<h2 id="goals">๐ฏ Goals</h2>
- [ ] Refactor parts of code
- [ ] Make the website responsive
- [ ] Add an initial guide, with more information
- [ ] Add multiple language support
---
<h2 id="tech">๐ง Tech</h2>
All this was done with:
- [HTML5](https://developer.mozilla.org/pt-BR/docs/Web/HTML)
- [CSS](https://developer.mozilla.org/pt-BR/docs/Web/css)
- [Javascript](https://developer.mozilla.org/pt-BR/docs/Web/javascript)
---
<h2 id="author">๐ค Author</h2>
<a href="hhttps://github.com/cardtunic/">
<img style="border-radius: 50%;" src="https://avatars.githubusercontent.com/u/67842899?s=1000&v=4" width="100px;" alt=""/>
<br />
<sub><b>Kaleb Mendes</b></sub></a> <a href="hhttps://github.com/cardtunic/"></a>
Hi, I made it!
<h3>Contacts</h3>
[](http://twitter.com/cardtunic)
[](mailto:tuniccontato@gmail.com)
[](https://www.linkedin.com/in/kaleb-souza-mendes-a696991b0/)
---
<h2 id="licence">๐ License</h2>
This project is under the [MIT](./LICENSE) license.
| macrowizard_ is an wesbite that helps you create macros for your keyboard. ๐ช | css,hid,hidmacros,luamacros,macro,macros,numpad-hotkeys,streamdeck,html,javascript | 2023-02-05T02:06:23Z | 2023-02-14T16:26:15Z | null | 1 | 0 | 12 | 0 | 0 | 4 | null | MIT | HTML |
aditya-ahlawat-1309/telegramClone | master | # Telegram Clone
The Telegram Clone is a messaging application inspired by the popular Telegram messaging platform. It allows users to send messages, create groups, and interact with each other in real-time. This project is built using React.js for the frontend, Node.js for the backend, and MongoDB for the database.
## Features
- **User Registration and Authentication:** Users can register an account and authenticate themselves to access the messaging functionality.
- **Real-time Messaging:** Users can send and receive messages in real-time, creating a seamless and interactive messaging experience.
- **Group Chats:** Users can create and participate in group chats with multiple participants, enabling efficient communication and collaboration.
- **Multimedia Sharing:** Users can share text messages, images, videos, and other supported file formats within individual and group chats.
- **Notifications:** Users receive notifications for new messages and updates, ensuring they stay informed and connected.
- **User Profiles:** Users can create and update their profiles, including profile pictures and status messages.
- **Search Functionality:** Users can search for other users and groups, making it easy to find and connect with friends and communities.
- **Security and Privacy:** Implement security measures, such as end-to-end encryption and data protection, to ensure user privacy and confidentiality.
## Getting Started
To run the Telegram Clone application, follow these steps:
1. Clone the repository: `git clone https://github.com/your-username/telegram-clone.git`
2. Change into the project directory: `cd telegram-clone`
3. Set up the backend:
- Install dependencies: `cd backend && npm install`
- Configure the MongoDB connection in the `.env` file.
- Start the backend server: `npm start`
4. Set up the frontend:
- Install dependencies: `cd ../frontend && npm install`
- Configure the backend API endpoint in the `.env` file.
- Start the development server: `npm start`
5. Open your browser and navigate to `http://localhost:3000` to access the Telegram Clone application.
## Technologies Used
The Telegram Clone project utilizes the following technologies:
- React.js: A popular JavaScript library for building user interfaces.
- Node.js: A JavaScript runtime environment for server-side development.
- Express.js: A web application framework for building APIs and handling backend logic.
- MongoDB: A NoSQL database for storing and managing user data.
- Socket.io: A library for enabling real-time, bidirectional communication between the server and client.
- Other libraries or frameworks as per project requirements.
## Contributing
Contributions to the Telegram Clone project are welcome. If you would like to contribute, please follow these guidelines:
1. Fork the repository.
2. Create a new branch for your feature or bug fix: `git checkout -b my-feature`.
3. Make your changes and commit them: `git commit -m 'Add new feature'`.
4. Push the branch to your forked repository: `git push origin my-feature`.
5. Submit a pull request to the original repository.
## License
This project is licensed under the [MIT License](LICENSE).
## Acknowledgements
- [List any third-party libraries or resources used in the project]
- [Credits or acknowledgements for any external assets or inspirations]
- [Any other acknowledgements or credits]
# Getting Started with Create React App
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
## Available Scripts
In the project directory, you can run:
### `npm start`
Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
The page will reload when you make changes.\
You may also see any lint errors in the console.
### `npm test`
Launches the test runner in the interactive watch mode.\
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
### `npm run build`
Builds the app for production to the `build` folder.\
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.\
Your app is ready to be deployed!
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
### `npm run eject`
**Note: this is a one-way operation. Once you `eject`, you can't go back!**
If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.
You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.
## Learn More
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
To learn React, check out the [React documentation](https://reactjs.org/).
### Code Splitting
This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
### Analyzing the Bundle Size
This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
### Making a Progressive Web App
This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
### Advanced Configuration
This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
### Deployment
This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
### `npm run build` fails to minify
This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
| The Telegram Clone is a messaging application inspired by the popular Telegram messaging platform. It allows users to send messages, create groups, and interact with each other in real-time. | css,html,javascript,jsx,mongo,mongoose,netlify,nodejs,reactjs | 2023-01-31T18:40:52Z | 2023-07-01T11:10:16Z | null | 1 | 0 | 12 | 0 | 2 | 4 | null | null | JavaScript |
DragonSenses/custom-audio-player | main | # custom-audio-player
A custom audio player using the HTML5 audio element and it's JavaScript API. Be able to play audio files stored in a folder.
Personally use this to play customized music playlists or audiobooks.
# Description
Audio player with a custom UI design to play music or audiobooks of your choice in a given folder.
HTML5 includes the `<audio>` tag to embed audio into web pages. The attribute `controls` enables the default set of playback controls. Browser controls allow the user to control
volume, seeking, and pause/resume playback.
The problem with native browser controls is that they are different in each browser - not good for cross-browser support. They also aren't very keyboard-accessible. The solution is to hide the native controls (removing `controls` attribute) and program your own with HTML, CSS, JavaScript.
# Technologies:
HTML5, CSS3, JavaScript
# Instructions to Run
1. Clone this repo (or download as zip from GitHub)
2. Open it open and go to the directory its located
3. Open `index.html` to the browser of your choice
* Bookmark the page
# How to use
To make a custom playlist:
1. Place audio files in the `audio` folder.
2. Add their corresponding images with filenames named after their respective audio filename.
* For example, for `elevate.mp3` in the `audio` folder add `elevate.jpg` in the `img` folder.
3. After adding all the necessary files to the folders, put their names in `script.js` in the files array.
```js
// audio files
const files = ['elevate', 'evolution', 'littleidea'];
```
4. Open up `index.html`, and enjoy!
* As of now, only supports `.mp3` and `.jpg` file extensions.
# Specifications
- [x] Play & Pause functionality
- [x] Play & Pause with Spacebar
- [x] Next & Previous audio file functionality
- [x] Progress Bar
- [x] Interactive Progress Bar where user can set current time of audio file
- [x] Display customized audio player, styled with CSS
- [x] Spinning cover image animation
- [x] Audio file details pop-up
- [x] Details: Name & Progress Bar
Planning to add:
- [ ] Display time in mins and seconds
- [ ] Make custom playlists easier without changing the javascript code and just putting files in their respective folders
- [ ] Default image to play for audio files with no cover image
- [ ] Support file extensions `.flac` and image file extensions: `.png`, , `.gif`, `.webp`
- [ ] Randomize next
- [ ] Looper
# Attribution
Sample stock music files are made by Benjamin Tissot, found at [bensound](https://www.bensound.com/free-music-for-videos).
Bensound.com/royalty-free-music | A custom audio player using the HTML5 audio element and it's JavaScript API. Be able to play audio files stored in a folder. | audio-player,css3,css3-animations,html5,javascript,music-player | 2023-02-09T20:06:28Z | 2023-02-10T00:30:00Z | null | 1 | 0 | 11 | 0 | 1 | 4 | null | GPL-3.0 | JavaScript |
lukecd/view-from-my-window | main | # View From My Window

A long, long time ago there was a hashtag trending on Instagram titled #ViewFroMyWindow. At a time when Instagram was all about showing your most polished side, #ViewFroMyWindow was all about showing just whatever you were looking at. Your view might be the beach, or it might be a car on blocks, it might be beautiful, it might be banal ... the point wasn't to impress with your amazing view, the point was to feel closer to people by seeing the world through their eyes.
When I started thinking about a project I could use in some online workshops, I somehow wandered back to #ViewFroMyWindow. I got to thinking about how people in this workshop would be spread across the world, in condos, in houses, in cities and in the countryside. Sometimes we'll know each other's names, sometimes they'll just be anon and a photo. But if we each share our view, we might end up feeling just a little bit closer.
My goal with this project is to teach the workshop multiple times, each time using the same code base so that our community of students grows and we each keep sharing our views.
I will continue hosting the UI on my site at https://myview.luke.gallery, however as the data exists in [Bundlr](https://bundlr.network) and on [Lens,](htts://lens.xyz) anyone can build a new UI that pulls from the same dataset. Anyone can add new features, anyone can experiment and take it in new directions.
What follows is a mini-tutorial, a written guide designed to accompany my physical presentations. The guide is very focused and covers using Bundlr and using Lens. It intentionally skips over React basics, Tailwind basics, and all that jazz.
## Project Overview
This project uses the [Bundlr SDK](https://www.youtube.com/watch?v=Wxfyd0veaEc) to handle uploads to Bundlr and the [React hooks for Lens](https://docs.lens.xyz/docs/sdk-react-intro) to handle uploads to Lens. As we're using the React hooks, we don't have to write any GraphQL ourselves ... it's way easier this way. Way easier.
### App.js Setup
When working with React, the provider pattern allows you to easily share data between components. You wrap a parent component with a provider tag set and then that parent and any of its children can access the data exposed by the provider. In our case, we're going to use three providers:
- wagmi: To access the wagmi hooks
- RainbowKit: For wallet connect
- Lens: For lens functionality
All of our interactions with Lens will be via the React hooks, and by wrapping our main parent components with the Lens provider, all of those React hooks will have the right configuration options.
All three providers are configured using these values:
```js
const { chains, provider, webSocketProvider } = configureChains(
[polygonMumbai, polygon],
[publicProvider()],
);
const { connectors } = getDefaultWallets({
appName: "View From My Window",
chains,
});
const wagmiClient = createClient({
autoConnect: true,
connectors,
provider,
});
// By adding sources: ["viewfrommywindow"] to the config,
// I automatically restrict React hook queries to my app only
const lensConfig = {
bindings: wagmiBindings(),
environment: staging,
sources: ["viewfrommywindow"],
storage: localStorage(),
};
```
And then we wrap our components in the providers as follows:
```js
export default function App() {
return (
<WagmiConfig client={wagmiClient}>
<RainbowKitProvider chains={chains}>
<LensProvider config={lensConfig}>
...
<MAIN-COMPONENTS />
...
</LensProvider>
</RainbowKitProvider>
</WagmiConfig>
);
}
```
### Creating A Publication / Post

When working with Lens, social posts are called Publications. To create a Publication you create structured metadata describing the Publication, upload that metadata to Bundlr and then pass the URL of the metadata to a Lens React hook.
Since we're doing image posts, there's one extra step. Before uploading the metadata to Bundlr, you need to upload the image to Bundlr and then embed the image URL in the post metadata. So for image Publications (Posts), you'll require n+1 uploads to Bundlr, where n is the number of images used in the post.
Most of this code is in the file `Pages/MyView.js`.
### Uploading To Bundlr

Uploading to Bundlr is super easy, basically 3-4 lines of code.
#### Step 1: Connect To A Node
You start by connecting to a node. Specify a node address, a currency to pay, and a reference to an injected provider. If you're connecting to our Devnet (where you pay with free faucet currencies), you also need to provide a provider URL.
```js
const bundlr = new WebBundlr("https://node1.bundlr.network", "matic", provider);
const bundlr = new WebBundlr("https://devnet.bundlr.network", "matic", provider, {
providerUrl: "https://matic-mumbai.chainstacklabs.com",
});
```
#### Step 2: Fund A Node (If Needed)
Next up, you fund the node to pay for the upload. When working with Bundlr, you pay once and store forever. So your file, once uploaded, is there forever. When working with our Devnet, it's stored for a shorter period, ~2 months.
In my code below, I first check the price of the upload and then see if I have enough funded balance to pay for the upload. I only fund if needed.
```js
const price = await bundlr.getPrice(dataStream.size);
const balance = await bundlr.getLoadedBalance();
if (price > balance) {
setMessage(`Funding Upload ....`);
await bundlr.fund(price);
}
```
#### Step 3: Upload Data
Finally, we upload. Bundlr supports [adding custom metadata](https://docs.bundlr.network/sdk/tags) to any upload, a feature that supports a variety of different use-cases. In the case of images you wanted to be rendered by a browser, you must to set the Content-Type MIME type tag.
```js
const tx = await bundlr.upload(dataStream, {
tags: [{ name: "Content-Type", value: fileType }],
});
console.log(`File uploaded ==> https://arweave.net/${tx.id}`);
```
### Creating A Post

Once the image is uploaded, we need to create the post metadata and upload that to Bundlr. This is done using the `useCreatePost()` React hook. There's a couple of interesting things happening here.
It exposes a function called `create()` that handles creating the actual metadata for you. Also, it's passed another function called `upload()` that you have to implement.
```js
const { create, error, isPending } = useCreatePost({ profile, upload });
```
```js
await create({
profileId: profile.id,
image: imageUrl,
imageMimeType: fileType,
contentFocus: ContentFocus.IMAGE,
locale: "en",
collect: {
type: CollectPolicyType.NO_COLLECT,
},
reference: ReferencePolicy.ANYBODY,
media: [
{
url: imageUrl,
mimeType: fileType,
},
],
});
```
The `upload()` function (defined in `/utils/upload.js`) needs to match the following signature.
```js
export const upload = (data: unknown): Promise<string> => {
const serialized = JSON.stringify(data);
const url = // upload serialized to a public location
return url;
}
```
In my implementation, I do two things. First I modify the metadata to include my custom app id. This is a bit hacky, but it's needed right now as the `create()` function doesn't allow for passing an app id. (It's going to be added in a future release.)
The second thing I do is actually upload the metadata.
```js
export const upload = async (data) => {
// hack to add appid
data.appId = "viewfrommywindow";
const metadataUrl = await uploadMetadata(data);
console.log("metadataUrl=", metadataUrl);
return metadataUrl;
};
```
There's no need to show the whole `uploadMetadata()` function here, as it's basically the same as what I do when uploading the image, but it's worth calling out that you must use the `Content-Type` MIME type to specify that the file is `json` data. If you leave that out, things won't work right when passing the metadata URL to Lens.
```js
const serialized = JSON.stringify(data);
const tx = await bundlr.upload(serialized, {
tags: [{ name: "Content-Type", value: "application/json" }],
});
```
You'll notice on line 6 of the `upload()` function, I end by returning the URL to the post metadata. This return value is then picked up by the Lens React hook and used to create the post. It's one of the places these React hooks really shine and make your job much easier. When using the Lens SDK via GraphQL, you have to do much more work for this last step.
### Wallet Stuff

Before letting someone post a photo, they need to connect their wallet and login to Lens. When you log into Lens, you get back an authentication token that's used in subsequent transactions that involve saving data.
To test if someone has connected their wallet, we use the following hook from WAGMI.
```js
const { isConnected } = useAccount();
```
Then I test if the user has an active profile with `useActiveProfile()` and if they do, I know they are logged in and have an active profile. If they don't have an active profile, I use `useWalletLogin()` to log them in.
When working with Lens, a single wallet can have more than one profile ... but for the sake of simplicity, I haven't built a component that shows all profiles and allows a user to switch between them (but that's a great idea for a post tutorial challenge if you want to push your skills:)).
```js
const { data: profile, loading: profileLoading } = useActiveProfile();
const { login, error, isPending } = useWalletLogin();
```
### Creating A Profile

All of this code is contained in `pages/CreateProfile.js`.
Ok, you can post images, but only if you're logged in and you can only login if you have a profile ... so how to create a profile?
On the Lens Mainnet, you have to be whitelisted to create a new profile, so nothing we can do there. BUT on the Mumbai testnet where we're deploying this project, anyone can create as many accounts as they want.
Handles created on the testnet are in the form "foo.test", handles created on mainnet are in the form "foo.lens". When passing in a handle to check if valid or create new, only pass the "foo" part, do not include the ".lens" or ".test".
The `isValidHandle()` React hook returns true if the handle passed is valid.
To actually create a profile use the `create()` function exposed by the `useCreateProfile()` React hook. After calling `create()`, if `error` has a value of `DuplicatedHandleError`, we know the value passed wasn't unique. If `error` is `null` and `isPending` is false, the account has been created.
```js
const { create, error, isPending } = useCreateProfile();
```
### Reading Posts
This code is all in `pages/EnjoyTheView.js`.

For reading posts, we use the React hook `useExplorePublications()`, which allows you to "explore different publications on Lens Protocol from a variety of people that you may not yet follow". What's interesting is that since we used our app id as an optional parameter when setting up the Lens Provider, all publications exposed will be from our #ViewFromMyWindow app. This is similar to the "explore" tab in Instagram.
```js
const { data: publications, loading, hasMore, next } = useExplorePublications();
```
There's room here to challenge yourself further and build some more features. You could add the the ability to click through to a profile and see all view posts from that profile. You could add the ability to follow profiles. You could add a second feed page that shows only posts from profiles you follow.
## Project Setup
There are two branches in this project
- main: Full source code
- framework: UI-only source code
As the goal of this project is to teach using Bundlr and Lens to create an image-based social network, there is very little coverage of how the UI was built. I recommend forking the "framework" branch and integrating Bundlr and Lens as you follow along.
If you do want to start from scratch, perhaps to challenge yourself to design a new UI, the following steps will guide you through setting up a new project.
### React
```console
mkdir view-from-my-window
cd view-from-my-window
npx create-react-app .
npm install react-router-dom
npm install filereader-stream
```
### Tailwind
https://tailwindcss.com/docs/guides/create-react-app
```console
npm install -D tailwindcss
npx tailwindcss init
```
Change your `tailwind.config.js` to match:
```js
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {},
},
plugins: [],
};
```
Change your `index.css` to match:
```css
@tailwind base;
@tailwind components;
@tailwind utilities;
```
### Lens
```console
npm install wagmi @lens-protocol/wagmi
```
### Bundlr
https://docs.bundlr.network/recipes/bundlr-react
```console
npm install @bundlr-network/client
npm install react-app-rewired
npm install --save-dev --force crypto-browserify stream-browserify assert stream-http https-browserify os-browserify url buffer process
npm install --force browserify-zlib path-browserify path
```
Create a file in your document root titled `config-overrides.js` and paste in the following.
```js
const webpack = require("webpack");
module.exports = function override(config) {
const fallback = config.resolve.fallback || {};
Object.assign(fallback, {
crypto: require.resolve("crypto-browserify"),
stream: require.resolve("stream-browserify"),
assert: require.resolve("assert"),
http: require.resolve("stream-http"),
https: require.resolve("https-browserify"),
os: require.resolve("os-browserify"),
url: require.resolve("url"),
zlib: require.resolve("browserify-zlib"),
});
config.resolve.fallback = fallback;
config.plugins = (config.plugins || []).concat([
new webpack.ProvidePlugin({
process: "process/browser",
Buffer: ["buffer", "Buffer"],
}),
]);
config.module.rules = [
...config.module.rules,
{
test: /\.m?js/,
resolve: {
fullySpecified: false,
},
},
];
return config;
};
```
Open your `package.json` and change this
```json
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
```
to this.
```json
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject"
},
```
## Assets Used
The following third-party assets and designs were used.
- Spinning Earth (purchased)
https://www.istockphoto.com/vector/earth-globe-map-turning-set-gm864531708-143362339
- CSS stars https://www.youtube.com/watch?v=aywzn9cf-_U
## Libraries Used
Image resize
- https://github.com/nodeca/pica
Wagmi hooks
- https://wagmi.sh/
Lens
- https://www.lens.xyz/garden
RainbowKit
- https://www.rainbowkit.com/
| A decentralized re-imagining of that 90s website | arweave,bundlr,javascript,decentralized-applications,decentralized-social-networks,decentralized-storage,lens-protocol,reactjs,tailwind | 2023-02-03T04:14:05Z | 2023-02-23T03:35:41Z | null | 1 | 0 | 11 | 0 | 5 | 4 | null | null | CSS |
masif2002/admin-dashboard | master | # Admin Dashboard
A simple dashboard application for viewing list of employees in an organization.
## Static Webpage
* The [hosted webpage](https://masif2002.github.io/admin-dashboard/) is static and is built from the [static branch](https://github.com/masif2002/admin-dashboard/tree/static)
## Webpage Screenshots
### Login Page


### Home Page

### List of Employees

### Employee Profile

### Add Employee


| A simple yet sleek dashboard application | css,html,dashboard,javascript | 2023-02-06T15:07:52Z | 2023-02-13T01:36:32Z | null | 1 | 0 | 13 | 0 | 1 | 4 | null | null | JavaScript |
Lakshya-GG/TesseractJS | main | # Tesseract.JS
Tesseract.js is an open-source JavaScript library that provides OCR (Optical Character Recognition) functionalities in the browser. It is a port of the Tesseract OCR engine, which is a popular open-source OCR engine that has been developed by Google since 2006.
## Features
<ul>
<li> Real-time OCR for images or scanned documents within web applications
</li>
<li> Supports over 100 languages
</li>
<li> Provides a powerful API for customizing and improving OCR accuracy
</li>
<li> Supports training your own models
</li>
</ul>
# DEPLOYED VERSION
<a href = "https://lakshya-gg.github.io/TesseractJS" target = "_blank">Click here to checkout the deployed version of TesseractJS</a>
## Getting Started
To get started with Moneymate, follow the steps below:
1. Install Node.js on your machine.
2. Clone the repository: `https://github.com/Lakshya-GG/TesseractJS.git`
3. Install dependencies: `npm install`
4. Start the development server: `npm run dev`
5. Open the app in your browser: <a href = "http://localhost:3000 ">`http://localhost:3000`</a>
## Usage
To recognize text from an image or scanned document, you can use the recognize method:
```javascript
Tesseract.recognize('https://tesseract.projectnaptha.com/img/eng_bw.png')
.then(function(result) {
console.log(result.text);
});
```
This will output the recognized text from the image.
## Ouput Sample
The Input image :
<img title="Input" alt="Alt text" src="samples/testocr.jpeg" width = 480>
Generated Output :
<img title="Output" alt="Alt text" src="samples/demo.jpg" >
## Code Demo
This is a React component that utilizes the Tesseract.js library to perform OCR (Optical Character Recognition) on an image dropped or selected by the user.
The component starts by defining state variables using the '**useState hook**', including '**imageData**' which stores the image data URL of the selected image,
```typescript
const Home = () => {
const [imageData, setImageData] = useState<null | string>(null);
const loadFile = (file: File) => {
const reader = new FileReader();
reader.onloadend = () => {
const imageDataUri = reader.result;
setImageData(imageDataUri as string);
};
reader.readAsDataURL(file);
}};
```
'**progress**' and '**progressLabel**' which are used to track the progress of OCR,
```typescript
const [progress, setProgress] = useState(0);
const [progressLabel, setProgressLabel] = useState('idle');
```
and '**ocrResult**' which stores the recognized text.
```typescript
const [ocrResult, setOcrResult] = useState('');
```
The '**loadFile**' function uses the '**FileReader**' API to convert the selected image file into a data URL and update the '**imageData**' state.
The component then creates a '**workerRef**' using the '**useRef**' hook, which will hold a reference to the Tesseract worker that performs OCR.
```typescript
const workerRef = useRef<Tesseract.Worker | null>(null);
```
The '**useEffect**' hook is used to initialize the '**workerRef**' with a new Tesseract worker and terminate it when the component unmounts.
```typescript
useEffect(() => {
workerRef.current = createWorker({
logger: message => {
if ('progress' in message) {
setProgress(message.progress);
setProgressLabel(message.progress == 1 ? 'Done' : message.status);
}
}
});
return () => {
workerRef.current?.terminate();
workerRef.current = null;
}
}, []);
```
The '**handleExtract**' function is called when the user clicks the "Extract" button. It first sets the progress and progress label to indicate that OCR is starting.
```typescript
const handleExtract = async () => {
setProgress(0);
setProgressLabel('starting');
```
Then, it loads the Tesseract worker, language data, and initializes it.
```typescript
const worker = workerRef.current!;
await worker.load();
await worker.loadLanguage('eng');
await worker.initialize('eng');
```
Finally, it performs OCR on the selected image using the '**recognize**' method of the Tesseract worker and updates the '**ocrResult**' state with the recognized text.
```typescript
const response = await worker.recognize(imageData!);
setOcrResult(response.data.text);
console.log(response.data);
```
The component renders a '**Dropzone**' from the '**@mantine/dropzone**' library that allows the user to select or drag and drop an image file. If an image has been selected, it displays the image using the Image component from the '**@mantine/core**' library.
```typescript
<Dropzone
onDrop={(files) => loadFile(files[0])}
accept={IMAGE_MIME_TYPE}
multiple={false}
>{() => (
<Text size="xl" inline>
Drag image here or click to select file
</Text>
)}
</Dropzone>
```
The component also renders a button that calls the '**handleExtract**' function when clicked, and displays the progress of OCR using the '**Progress**' component and the progress label using the '**Text**' component.
```typescript
<Text>{progressLabel.toUpperCase()}</Text>
<Progress value={progress * 100} />
```
If OCR has been performed and text has been recognized, the component displays the recognized text using the '**Text**' component with a monospace font and a black background.
```typescript
<Text size='xl'>RESULT</Text>
<Text style={{ fontFamily: 'monospace', background: 'black', padding: '10px' }}>{ocrResult}
</Text>
```
## Training
If you need to recognize text in a specific language or font, you can train your own model using Tesseract.js. The training process involves creating training data and training the model using the tesstrain command-line tool.
For more information on training your own model, please refer to the <a href = "https://tesseract-ocr.github.io/tessdoc/Training-Tesseract-4.00.html" target = "_blank">official Tesseract documentation.</a>
## Conclusion
Overall, Tesseract.js is a powerful and easy-to-use OCR library for web developers who need to recognize text from images or scanned documents in their web applications. With its support for multiple languages and powerful API, it's a great choice for any OCR-related task.
## Contributing
Contributions to this project are welcome. To contribute, follow these steps:
1. Fork the repository: `https://github.com/Lakshya-GG/TesseractJS.git`
2. Create a new branch: `git checkout -b feature/your-feature`
3. Make changes and commit them: `git commit -am 'Add some feature'`
4. Push to the branch: `git push origin feature/your-feature`
5. Submit a pull request
## ๐งพ License
This game is licensed under the [MIT License](https://opensource.org/license/mit/). Please see the [LICENSE](https://github.com/Lakshya-GG/TesseractJS/blob/main/LICENSE) file for more information.
| A process called Optical Character Recognition converts printed texts into digital image files. It is commonly used to recognize text in scanned documents and images. | javascript,ocr-recognition,ocr-text-reader,typescript | 2023-02-04T20:52:37Z | 2023-05-12T06:38:07Z | null | 1 | 0 | 17 | 0 | 0 | 4 | null | MIT | TypeScript |
DawnSee0823/React-top-navbar-sidebar | master | This project is a modren way of making user interface for the web. As in the past we mostly use drop down menus in the website to make user interfaces but after the arrival of frontend libraries the thing changes. Now the sidebar menu is the fastest way of making user interfaces for the website. It has many advantages over the old drop down based user interface.
#how to use?
Clone the repository
run npm install
run npm start
#Note: Looking forward to develop a professional website like this. Feel free to contact at contact@musk-technology.com
| This project is a modren way of making user interface for the web. As in the past we mostly use drop down menus in the website to make user interfaces but after the arrival of frontend libraries the thing changes. Now the sidebar menu is the fastest way of making user interfaces for the website. | css,html,javascript,navbar,react,sidebar | 2023-02-08T06:16:25Z | 2022-12-14T06:57:55Z | null | 1 | 0 | 8 | 0 | 0 | 4 | null | null | JavaScript |
thehassanshaikh/movie-as-per-mood | main | # Movie Booking Application
Experience the ultimate movie-going convenience with our movie booking application. Browse movies details, watch trailers, and securely purchase tickets all from the comfort of your own device. Say goodbye to long lines and hassle, and hello to seamless and efficient movie booking app.
| Experience the ultimate movie-going convenience with our movie booking application. Browse movies details, watch trailers, and securely purchase tickets all from the comfort of your own device. Say goodbye to long lines and hassle, and hello to seamless and efficient movie booking. | api,html,javascript | 2023-02-01T20:41:59Z | 2023-05-23T08:26:22Z | null | 1 | 5 | 52 | 0 | 0 | 4 | null | null | HTML |
JefersonLucas/todo-list-mobile | main | # ToDo List Mobile

Aplicaรงรฃo de controle de tarefas no estilo **to-do list**, que contรฉm as seguintes funcionalidades:
- Adicionar uma nova tarefa
- Marcar e desmarcar uma tarefa como concluรญda
- Remover uma tarefa da listagem
- Mostrar o progresso de conclusรฃo das tarefas
Conceitos aplicados como:
- Estados
- Imutabilidade do estado
- Listas e chaves no React Native
- Propriedades
- Componentizaรงรฃo
| task tracking mobile application | ignite,ignite-rocketseat,javascript,react-native,react-native-expo,react-native-typescript,reactjs,typescript | 2023-02-02T15:35:52Z | 2023-04-04T17:51:59Z | null | 1 | 0 | 40 | 0 | 0 | 4 | null | null | TypeScript |
parham-ab/github-fetch-users | master | null | React-GitHub-Fetch-Users | api,auth0,authentication,git,github,github-fetcher,github-user-search,oauth,oauth2,css | 2023-01-31T06:06:54Z | 2023-02-14T05:05:09Z | null | 1 | 0 | 44 | 0 | 0 | 4 | null | null | JavaScript |
aliseyedi01/Menu-shop-tailwind-gsap | main | ## Menu Shop
# Use of Tailwind + Gsap
<a href="https://codepen.io/aliseyedi1/full/vYaaWOV" target="_blank" rel="noreferrer">See online in Code Pen</a>
| Tailwind v3.2.4 + gsap v3.11.4 | dark-mode,gsap3,javascript,menu,tailwindcss,responsive | 2023-01-29T13:31:53Z | 2023-02-07T17:39:04Z | null | 1 | 0 | 8 | 0 | 0 | 4 | null | null | HTML |
dzmitry-duboyski/GeeTest-demo | main | <b>[English](README.md)</b> | [ไธญๅฝ่ฏญๆ็ง](README.zh.md) | [ะ ัััะบะธะน](README.ru.md)

# Example for solving of GeeTest Captcha in JavaScript using Puppeteer library
# Description
This example clearly shows how you can automate the GeeTest captcha solution. In the example, the captcha is bypassed on the [demo page](https://2captcha.com/demo/geetest), but the principle of bypassing the captcha is similar everywhere.
## How to start
### Cloning:
`git clone https://github.com/dzmitry-duboyski/GeeTest-demo.git`
### Installing dependencies:
`npm install`
### Set your apikey in `.env` file
### Start:
`npm run start`
---
>[GeeTest](https://www.geetest.com/) security platform is used on many popular sites. In this manual, it is described how to successfully undergo a [GeeTest](https://www.geetest.com/) security check using service [2Captcha.com](https://2captcha.com/?from=16653706) and [Puppeteer](https://pptr.dev/). For a successful check of the [GeeTest](https://www.geetest.com/) captcha, you must have an account in the [2Captcha.com](https://2captcha.com/?from=16653706) service.
This example describes how to solve captcha GeeTest on the demo page [https://2captcha.com/demo/geetest](https://2captcha.com/demo/geetest?from=16653706).
## Description of the GeeTest solution algorithm:
1. Find captcha parameters `gt`, `challenge`, `api_server`:
1.1. You can find the value of `gt` in the page code.
Screenshot:

1.2 Finding the meaning of `challenge` is a bit more difficult.
To do this, you need to find the request that the captcha makes on this page, this request must contain the value `challenge`.
The response to the request will be in the following format:
`{"success":1,"challenge":"21aaa1c62221631516179b492b9e80cc","gt":"81388ea1fc187e0c335c0a8907ff2625"}`. From this answer, you need to take the value `challenge`.
>If we consider the example with a captcha on the page [https://2captcha.com/demo/geetest](https://2captcha.com/demo/geetest?from=16653706), then in this case it will be a request to https://2captcha.com/api/v1/captcha-demo/gee-test/. The response to this request contains the required `challenge'.
>Response: `{"success":1,"challenge":"21aaa1c62221631516179b492b9e80cc","gt":"81388ea1fc187e0c335c0a8907ff2625"}`.
>
>Screenshot:

You can read more about the `challenge` on the [page](https://2captcha.com/p/geetest?from=16653706).
2. Sending captcha to API.
To solve the captcha, you need to send the found captcha parameters to the API:
```json
"key":"your_api_key",
"method":"geetest"
"pageurl":"https://2captcha.com/demo/geetest"
"gt": "81388ea1fc187e0c335c0a8907ff2625",
"challenge": "21aaa1c62221631516179b492b9e80cc"
```
3. Getting a answer for Captcha.
After successfully solving the captcha, the API will return a response with the solution. Example of a response with a solution from the API:
```json
{
"status": 1,
"request": {
"geetest_challenge": "fd4847c8a368356a0e3a6636392c2854k9",
"geetest_validate": "4606cdf89c8c2e5a43c5a14fe475fc40",
"geetest_seccode": "4606cdf89c8c2e5a43c5a14fe475fc40|jordan"
}
}
```
4. Using the solution.
The resulting values must be inserted into the corresponding html elements of the GeeTest captcha on the page.
Example:
```html
<div class="geetest_form">
<input type="hidden" name="geetest_challenge" value="fd4847c8a368356a0e3a6636392c2854k9">
<input type="hidden" name="geetest_validate" value="4606cdf89c8c2e5a43c5a14fe475fc40">
<input type="hidden" name="geetest_seccode" value="4606cdf89c8c2e5a43c5a14fe475fc40">
</div>
```
Screenshot:

Done. After that, you can proceed to perform actions on the page. In this example, after that, the "Check" button is clicked.
The source code is available in the file [index.js](/index.js)
### Additional information:
- [GeeTest Submission Documentation](https://2captcha.com/2captcha-api#solving_geetest?from=16653706).
- [Demo page with GeeTest](https://2captcha.com/demo/geetest?from=16653706).
- [Learn more about the GeeTest solving](https://2captcha.com/p/geetest?from=16653706).
| This is demonstration how to solve GeeTest captcha (่กไธบ้ช่ฏ) with puppeteer (JavaScript) and 2captcha service | geetest,geetest-captcha,geetest-solver,puppeteer,2captcha,2captcha-api,javascript,nodejs,puppeteer-demo | 2023-01-29T07:03:31Z | 2023-11-03T21:10:45Z | null | 1 | 0 | 19 | 1 | 0 | 4 | null | null | JavaScript |
coelhoalexandre/imersao-dev-6-alura | main | <h1 align="center"> Imersรฃo Dev 6 </h1>
<div align="center">
<img src="https://www.alura.com.br/assets/img/imersoes/dev-2021/logo-imersao-aluraflix.svg" alt="Logo da Imersรฃo Dev">
</div>
<br>
<p align="center"> <strong>Evento sensacional que consegue fazer qualquer um entender como รฉ o mundo do desenvolvimento!</strong> </p>
<div align="center">
<a href="https://github.com/coelhoalexandre/imersao-dev-6-alura/blob/main/LICENSE" target="_blank"><img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License: MIT"></a> <img src="https://img.shields.io/badge/Concluรญdo-sucess.svg" alt="Concluรญdo">
</div>
## Visรฃo Geral
Todos os projetos foram realizados seguindo como base as aulas da Imersรฃo Dev 6. Entretanto todos eles haverรฃo modificaรงรตes por questรตes de aprendizagem e/ou solicitaรงรฃo dos instrutores.
## Instrutores
### Paulo Silveira (CEO da Alura)
<a href="https://www.linkedin.com/in/paulosilveira/" target="_blank"><img src="https://img.shields.io/badge/-LinkedIn-%230077B5?style=for-the-badge&logo=linkedin&logoColor=white" alt="LinkedIn Badge"></a>
<a href = "https://github.com/peas" target="_blank"><img src="https://img.shields.io/badge/GitHub-%23333?style=for-the-badge&logo=github&logoColor=white" alt="GitHub Badge"></a>
### Rafaella Ballerini (Instrutora Front-end da Alura)
<a href="https://www.linkedin.com/in/rafaella-ballerini-45875016a/" target="_blank"><img src="https://img.shields.io/badge/-LinkedIn-%230077B5?style=for-the-badge&logo=linkedin&logoColor=white" alt="LinkedIn Badge"></a>
<a href = "https://github.com/rafaballerini" target="_blank"><img src="https://img.shields.io/badge/GitHub-%23333?style=for-the-badge&logo=github&logoColor=white" target="_blank" alt="GitHub Badge"></a>
### Guilherme Lima (Instrutor da Imersรฃo Dev da Alura)
<a href="https://www.linkedin.com/in/guilherme-lima-developer/" target="_blank"><img src="https://img.shields.io/badge/-LinkedIn-%230077B5?style=for-the-badge&logo=linkedin&logoColor=white" alt="LinkedIn Badge"></a>
<a href = "https://github.com/guilhermeonrails" target="_blank"><img src="https://img.shields.io/badge/GitHub-%23333?style=for-the-badge&logo=github&logoColor=white" alt="GitHub Badge"></a>
## Autor
Oi, eu sou Alexandre Coelho! Sou autor deste ReadMe e estudante de Desenvolvimento Web. Logo colocarei os links para vizualizar os projetos, porรฉm antes disponiblizarei os meus principais links para vocรชs darem uma olhada no que mais interessa-los:
<div align="center">
<a href = "https://www.frontendmentor.io/profile/coelhoalexandre" target="_blank"><img src="https://img.shields.io/badge/Frontend_Mentor-black?style=for-the-badge&logo=frontendmentor&logoColor=aqua" alt="FrontEnd Mentor Badge">
<a href = "https://github.com/coelhoalexandre" target="_blank"><img src="https://img.shields.io/badge/GitHub-%23333?style=for-the-badge&logo=github&logoColor=white" alt="GitHub Badge"></a>
<a href="https://www.linkedin.com/in/-coelhoalexandre/" target="_blank"><img src="https://img.shields.io/badge/-LinkedIn-%230077B5?style=for-the-badge&logo=linkedin&logoColor=white" alt="LinkedIn Badge"></a>
<a href = "mailto:alexandrecoelhocontato@gmail.com" target="_blank"><img src="https://img.shields.io/badge/-Gmail-critical?style=for-the-badge&logo=gmail&logoColor=white" target="_blank" alt="Gmail Badge"></a>
<div align="left">
<h2>Como Vizualizar os Projetos</h2>
Para vizualizar os projetos basta clicar no links que estarรฃo abaixo. Caso deseje saber como foi o processo, logo ao lado estarรก o ReadMe de cada projeto.
</div>
<br>
<div align="left">
<ul>
<li><a href="https://coelhoalexandre.github.io/imersao-dev-6-alura/aula01/" target="_blank"> Aula 01 - Conversรฃo de Real para outras Moedas</a> | <a href="https://github.com/coelhoalexandre/imersao-dev-6-alura/blob/main/aula01/README.md" target="_blank">README</a>
<li><a href="https://coelhoalexandre.github.io/imersao-dev-6-alura/aula02/" target="_blank"> Aula 02 - Mentalista</a> | <a href="https://github.com/coelhoalexandre/imersao-dev-6-alura/blob/main/aula02/README.md" target="_blank">README</a>
<li><a href="https://coelhoalexandre.github.io/imersao-dev-6-alura/aula03/" target="_blank"> Aula 03 - AluraFlix - 01</a> | <a href="https://github.com/coelhoalexandre/imersao-dev-6-alura/blob/main/aula03/README.md" target="_blank">README</a>
<li><a href="https://coelhoalexandre.github.io/imersao-dev-6-alura/aula04/" target="_blank"> Aula 04 - AluraFlix - 02</a> | <a href="https://github.com/coelhoalexandre/imersao-dev-6-alura/blob/main/aula04/README.md" target="_blank">README</a>
<li><a href="https://coelhoalexandre.github.io/imersao-dev-6-alura/aula05/" target="_blank"> Aula 05 - Tabela de Pontuaรงรฃo</a> | <a href="https://github.com/coelhoalexandre/imersao-dev-6-alura/blob/main/aula05/README.md" target="_blank">README</a>
| Projetos realizados atravรฉs das 5 aulas da Imersรฃo Dev 6 da Alura | alura,aluradev,front-end,front-end-development,frontend,imersao-alura,imersaodev,imersaodev-alura,javascript | 2023-01-31T09:13:05Z | 2023-02-03T16:18:22Z | null | 1 | 0 | 59 | 0 | 1 | 4 | null | MIT | CSS |
Sidebridge/api-pool | main | # API Pool
API Pool helps you find the right API to bring your next idea to life
## Getting Started
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
1. Clone this repository.
2. Run `npm ci` or `yarn ci` to install the dependencies.
3. Run the development server.
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
```
4. Open `http://localhost:3000/` in your browser to view the frontend.
## Contributing
Pull requests are welcome. To get started, have a look at the [contribution guidelines](#).
## License
--
| The open-source Zillow for API Products and Services | api,api-gateway,javascript,nextjs,open-source,reactjs,supabase,typescript,simplr-state | 2023-02-06T16:19:59Z | 2023-06-16T22:53:41Z | null | 3 | 2 | 129 | 0 | 0 | 4 | null | NOASSERTION | TypeScript |
st1xkz/walden | main | # walden
Walden is an educational Discord bot that provides information about Earth's countries and continents. With various commands, users can access country-specific information such as capital cities, flags, populations, and more. So whether you're a seasoned globetrotter or a geography novice, explore the world with Waldenโyour personal geography companion! ๐บ๏ธ
| An educational Discord geography bot that provides information about Earth's countries and continents. | discord-bot,discord-js,geography,javascript | 2023-02-07T03:39:46Z | 2023-12-28T00:43:30Z | null | 1 | 1 | 34 | 0 | 1 | 4 | null | BSD-3-Clause | JavaScript |
vpedrota/montador-de-grades | main | # Montador de grades

Este รฉ um projeto que consiste em um site que ajuda a montar a grade curricular de alunos de uma universidade. Com este site, os alunos poderรฃo escolher as disciplinas que desejam cursar e o sistema irรก verificar se hรก conflito de horรกrios entre elas. Caso haja algum conflito, o sistema nรฃo permitirรก que as disciplinas sejam selecionadas.
## Como usar
* Acesse o site do [Montador de grades](https://montadordegrades.online/).
* Escolha as disciplinas que deseja cursar.
* Verifique se hรก conflito de horรกrios entre as disciplinas selecionadas.
* Caso haja conflito, remova alguma disciplina e tente novamente.
*Apรณs selecionar as disciplinas sem conflitos, finalize a montagem da sua grade.
# Tecnologias utilizadas
Este projeto foi desenvolvido utilizando as seguintes tecnologias:
* HTML
* CSS
* JavaScript
* Vue.js 3
* Tailwind 3
# Como contribuir
* Faรงa um fork deste repositรณrio.
* Crie uma branch com a sua feature: git checkout -b minha-feature.
* Faรงa commit das suas alteraรงรตes: git commit -m 'feat: Minha nova feature'.
* Envie a sua branch: git push origin minha-feature.
* Abra um Pull Request explicando as suas alteraรงรตes.
| Este รฉ um projeto que consiste em um site que ajuda a montar a grade curricular de alunos de uma universidade. | css,html,javascript | 2023-02-08T22:44:16Z | 2024-02-08T20:39:49Z | null | 8 | 10 | 95 | 1 | 6 | 4 | null | null | Jupyter Notebook |
xleddyl/PoliTo-FilmManager | master | # DSP Exam Call 1 - Edoardo Alberti (s305922)
The structure of this repository is the following:
- [JSON_Schemas](./JSON_Schemas/) contains the JSON schemas
- [REST_APIs_Design](./REST_APIs_Design/) contains the full Open API documentation of the REST APIs, including examples of JSON documents to be used when invoking the operations in the form of insomnia/postman collections
- [REST_APIs_Implementation](./REST_APIs_Implementation/) contains the code of the Film Manager service application
## Introduction
My solution for this exam call is based on the code provided in [this repository](https://github.com/polito-DSP-2022-23/lab01-json-rest), which is the official solution for [Lab01](./Lab01.pdf).
I've extended the REST APIs, by introducing the possibility to have reviews that must be completed by more than one user in a cooperative way, according to the following specifications (a full and detailed explanation can be found [here](./DSP_20230201.pdf)):
1. When a film owner assigns a review, the review may be assigned either to a single user or to more users, in which case the review is cooperative and the review process follows the specifications provided here
2. An assignee of a cooperative review can create a review draft including a proposed review rating and a proposed review textual description
3. When a draft is created, it is said to be open, and each one of the other co-assignees of the review can express either an agreement or a disagreement on the draft. A disagreement must include a text which expresses the reason for disagreement, while an agreement has no associated text
4. When a draft has received agreement or disagreement from all the review co-assignees, the draft becomes closed, and no additional activity is possible on it
5. Only one draft at a time can be open for each review
6. If a draft gets closed with the agreement of all co-assignees, the corresponding review is automatically and immediately updated, with the rating and review text taken from the draft
## Design choices
The choices that I made are the following:
- Add two new schemas ([draft](./JSON_Schemas/draft.json) and [judgment](./JSON_Schemas/judgment.json)) wich will contain schemas for drafts objects and their relative judgments
- Modify the [review](./JSON_Schemas/review.json) schema in order to have an extra field called `coop` which will indicate if the review is a co-operative one or not. Based on the boolean value of `coop`, `reviewersId` or `reviewerId` will be present in mutual exclusion as a reference to the actual reviewers/reviewer of the review
- Modify the [database](./REST_APIs_Implementation/database/database.sql) in order to decouple the `reviewerId` from the `reviews` table (thus allowing to have multiple reviewers assigned to the same review). I've also added some new constraints in order to facilitate the INSERT and DELETE operations (default values/on delete rules)
## API routes
From lines `118-143` inside [index.js](./REST_APIs_Implementation/index.js) there are the routes of the Film Manager application. I've added comments to indicate the ones that I've created and the ones that I've modified with respect to the provided Lab01 solution
### New
- `GET` `/api/films/public/:filmId/reviews/:reviewId/drafts`
- `GET` `/api/films/public/:filmId/reviews/:reviewId/drafts/:draftId`
- `POST` `/api/films/public/:filmId/reviews/:reviewId/drafts`
- `PUT` `/api/films/public/:filmId/reviews/:reviewId/drafts/:draftId`
### Modified
- `GET` `/api/films/public/invited`
- implementation
- `GET` `/api/films/public/:filmId/reviews`
- implementation
- `GET` `/api/films/public/:filmId/reviews/:reviewId`
- route and implementation
- `POST` `/api/films/public/:filmId/reviews`
- implementation
- `PUT` `/api/films/public/:filmId/reviews/:reviewId`
- route and implementation
- `DELETE` `/api/films/public/:filmId/reviews/:reviewId`
- route and implementation
### Extra
I've also fixed two endpoints:
- `DELETE` `/api/films/public/:filmId`
- `DELETE` `/api/films/private/:filmId`
There was a bug that allowed the user to delete a film regardless of its state (public/private):\
For example we would have been able to delete a private film from `/api/films/public/:filmId`.
Moreover the manual deletion of the eventual associated `reviews` table entry is no longer needed thanks to the introduced constraints.
## Operations example
I will now showcase the new features by performing a sequence of operations on the Film Manager application:
1. **Login**
- _request_
`POST /api/users/authenticator?type=login`
```json
{
"email": "user.dsp@polito.it",
"password": "password"
}
```
- _response_
`200 OK`
```json
{
"id": 1,
"name": "User",
"email": "user.dsp@polito.it"
}
```
2. **Issue a normal and a co-operative film reviews**
- _request_
`POST /api/films/public/9/reviews`
```json
[
{
"filmId": 9,
"coop": true,
"reviewersId": [1, 2]
},
{
"filmId": 9,
"reviewerId": 3
}
]
```
- _response_
`201 Created`
```json
[
{
"id": 11,
"filmId": 9,
"completed": false,
"coop": false,
"reviewer": 3,
"self": "http://localhost:3001/api/films/public/9/reviews/11"
},
{
"id": 12,
"filmId": 9,
"completed": false,
"coop": true,
"reviewers": [1, 2],
"self": "http://localhost:3001/api/films/public/9/reviews/12"
}
]
```
3. **Open a draft on a review that is not co-op**
- _request_
`POST /api/films/public/9/reviews/11/drafts`
```json
{
"reviewId": 11,
"reviewerId": 1,
"proposedRating": 6,
"proposedReview": "A review that should make sense"
}
```
- _response_
`418 I'm a Teapot`
```json
{
"errors": [
{
"param": "Server",
"msg": "The review is not a coop one (not the right endpoint)"
}
]
}
```
4. **Open a draft on the correct review**
- _request_
`POST /api/films/public/9/reviews/12/drafts`
```json
{
"reviewId": 12,
"reviewerId": 1,
"proposedRating": 6,
"proposedReview": "A comment that should make sense"
}
```
- _response_
`201 Created`
5. **User 2 agrees with the newly created draft**
- _skipped_
6. **Retrieve the draft**
- _request_
`GET /api/films/public/9/reviews/12/drafts/1`
- _response_
`200 OK`
```json
{
"id": 1,
"reviewId": 12,
"reviewerId": 1,
"open": false,
"proposedRating": 6,
"proposedReview": "A review that should make sense",
"judgments": [
{
"reviewerId": 1,
"agree": true
},
{
"reviewerId": 2,
"agree": true
}
],
"self": "http://localhost:3001/api/films/public/undefined/reviews/12/drafts/1"
}
```
7. **Retrieve the review**
- _request_
`GET /api/films/public/9/reviews/12`
- _response_
`200 OK`
```json
{
"id": 12,
"filmId": 9,
"completed": true,
"coop": true,
"reviewers": [1, 2],
"reviewDate": "2023-01-20",
"rating": 6,
"review": "A review that should make sense",
"self": "http://localhost:3001/api/films/public/9/reviews/12"
}
```
---
To test the APIs, an Insomnia/Postman collection can be found [here](./REST_APIs_Design/examples/)
| The project relative to the first call of "Distributed Systems Programming" exam, held at Politecnico di Torino during A.Y. 2022/2023 | express,javascript,openapi,rest-api | 2023-01-31T09:58:59Z | 2023-01-31T09:59:29Z | null | 1 | 0 | 1 | 0 | 0 | 4 | null | null | JavaScript |
erkamesen/Portfolio-Flask | master | # Portfolio-Flask
*Simple Portfolio app designed for show your abilities to people with Flask Microframework*
## Content
- [Features](https://github.com/erkamesen/Portfolio-Flask/blob/master/README.md#features)
- [Technologies](https://github.com/erkamesen/Portfolio-Flask/blob/master/README.md#technologies)
- [Database - mongoDB](https://github.com/erkamesen/Portfolio-Flask/blob/master/README.md#database---mongodb)
- [Installation & Usage](https://github.com/erkamesen/Portfolio-Flask/blob/master/README.md#installation--usage)
- [Snaps](https://github.com/erkamesen/Portfolio-Flask/blob/master/README.md#snaps)
## Features
- *You can show people your skills and get feedback from them.*
- *You can show your projects to people*
- *You can show your services to people.*
- *You can share the details of your projects.*
- *People can comment on your projects.*
- *Each commenter is given a different robot profile picture with gravatar.*
- *People can send you messages from the contact section and these messages will come to your telegram instantly.*
- *If you are logged in as an admin, you can add projects and services.*
- *Project and services can be rearranged after sharing*
- *If you are logged in as an admin, you can delete comments.*
- *If the user sends a request to an incorrect endpoint, a customized 404 page is shown.*
- *Users can download your resume"
## Technologies
<div align=center>
<img src=https://user-images.githubusercontent.com/25181517/192107854-765620d7-f909-4953-a6da-36e1ef69eea6.png wirdth=60 height=60>
<img src=https://user-images.githubusercontent.com/25181517/192158954-f88b5814-d510-4564-b285-dff7d6400dad.png wirdth=60 height=60>
<img src=https://user-images.githubusercontent.com/25181517/183898674-75a4a1b1-f960-4ea9-abcb-637170a00a75.png wirdth=60 height=60>
<img src=https://user-images.githubusercontent.com/25181517/117447155-6a868a00-af3d-11eb-9cfe-245df15c9f3f.png wirdth=60 height=60>
<img src=https://user-images.githubusercontent.com/25181517/183423507-c056a6f9-1ba8-4312-a350-19bcbc5a8697.png wirdth=60 height=60>
<img src=https://user-images.githubusercontent.com/25181517/183423775-2276e25d-d43d-4e58-890b-edbc88e915f7.png wirdth=60 height=60>
<img src=https://user-images.githubusercontent.com/25181517/182884177-d48a8579-2cd0-447a-b9a6-ffc7cb02560e.png wirdth=60 height=60>
</div>
## Database - mongoDB
*Before we start, we need to create an account in mongodb and get the necessary information for the connection.* <br>
<br>
*You can reach the mini guide I prepared for mongodb from the link below. This guide has been prepared in Turkish, but you can follow the pictures to create an account and get important information.*
<br> <br>
[Guide](https://github.com/erkamesen/Python-MongoDB#ba%C5%9Flang%C4%B1%C3%A7---kurulum) ๐๐๐
<br> <br>
*You will use the username and password you received from mongodb for the cluster connection in python as follows.*
*models.py*
```
from pymongo import MongoClient
from dotenv import load_dotenv
import os
load_dotenv()
username = os.getenv("USERNAME")
password = os.getenv("PASSWORD")
class Database:
_client_URL = MongoClient(
f"mongodb+srv://{username}:{password}@cluster1.dumyfbl.mongodb.net/?retryWrites=true&w=majority") # Main connector
db_name = _client_URL["PortfolyoFlask"] # Database Name
```
*Replace {password} with the password and {username} with the username.*
## Installation & Usage
- *Clone the repository:*
```
git clone https://github.com/erkamesen/Portfolio-Flask.git
```
- *Navigate to the directory:*
```
cd Portfolio-Flask
```
- *To get started with the Portfolio app, you'll need to have the following dependencies installed on your machine:*
- *install the requirements:*
```
pip install -r requirements.txt
```
- *Set Telegram token*
- *Set [MongoDB](https://github.com/erkamesen/Portfolio-Flask/blob/master/README.md#database---mongodb)
account in models.py.*
- *Set Admin username and password in admin.py*
- *Run the application:*
```
flask run
```
*Portfolio project should now be running on your local machine at http://localhost:5000*
## Snaps
<div align=center>
<h4 > Index </h4>
<img src=https://user-images.githubusercontent.com/120065120/221109410-bc0f2b57-9632-4fa2-8bde-6b1837bbb743.png>
<div>
<div align=center>
<h4 > About </h4>
<img src=https://user-images.githubusercontent.com/120065120/221108951-6f9cd46e-e9d9-4165-87f0-9220e3bc8a5e.png>
<div>
<div align=center>
<h4 > Services </h4>
<img src=https://user-images.githubusercontent.com/120065120/221108959-9f9ade0d-6430-4020-af18-ee3632d4c141.png>
<div>
<div align=center>
<h4 > Projects </h4>
<img src=https://user-images.githubusercontent.com/120065120/221147764-f1e84393-3b06-4db6-940b-5aabf7ed7326.png>
<div>
<div align=center>
<h4 > Contacts </h4>
<img src=https://user-images.githubusercontent.com/120065120/221108984-762b5ed6-ee57-481f-9a34-2521e722bbdb.png>
<div>
<div align=center>
<h4 > 404 Page </h4>
<img src=https://user-images.githubusercontent.com/120065120/221160873-793da93c-fd07-4662-978b-c36b50c3ae24.png>
<div>
<div align=center>
<h4 > Add Project </h4>
<img src=https://user-images.githubusercontent.com/120065120/221160940-6dbe2433-4efb-4bf1-9d9d-575e591cf9ae.png>
<div>
<div align=center>
<h4 > Admin </h4>
<img src=https://user-images.githubusercontent.com/120065120/221160948-46ee1dcb-97f2-424d-be2f-d9460387c097.png>
<div>
<div align=center>
<h4 > Admin - Navbar </h4>
<img src=https://user-images.githubusercontent.com/120065120/221160955-11fac0e8-2433-4cc1-b956-b273e4710404.png>
<div>
<div align=center>
<h4 > Comment </h4>
<img src=https://user-images.githubusercontent.com/120065120/221160958-96a36705-e8f3-4535-ae17-0b04f5e1ed5d.png>
<div>
<div align=center>
<h4 > Project - Details </h4>
<img src=https://user-images.githubusercontent.com/120065120/221161377-2fed9005-2dc1-4b8d-a35c-eb809d876211.png>
<div>
| Simple Portfolio app designed for show your abilities to people with Flask Microframework | css,flask,html,javascript,mongodb,python | 2023-02-02T13:33:46Z | 2024-01-06T18:12:11Z | null | 1 | 1 | 41 | 0 | 3 | 4 | null | MIT | Python |
sbt5731/portfolio | main | Here, I have made my portfolio where I have showcased my project, skills, education, and certificate that I have posses.
I have used HTML/CSS and Bootstrap for the UI and Javascript for the backend.
https://saurabhtiwari-portfolio.netlify.app/
| Here, I have made my portfolio where I have showcased my project, skills, education, and certificate that I have posses. | bootstrap,css,font-awesome,html,html5,javascript | 2023-01-29T20:26:01Z | 2023-04-25T08:18:56Z | null | 1 | 0 | 9 | 0 | 1 | 4 | null | MIT | HTML |
Harsh971/14DaysOfJavascript | main | <p align="center">
<a href="https://14daysofjs.netlify.app/">
<img alt="Banner" height="100%" width="100%" src="https://www.linkpicture.com/q/Banner_13.png">
</a>
</p>
## ๐ Tech Stack Used in this Repository...
<a href="" target="_blank"> <img src="https://camo.githubusercontent.com/c3a116928dc4560b0b08d4b4afe69b34844171f896529cc7572674965f2cd66c/68747470733a2f2f63646e2d69636f6e732d706e672e666c617469636f6e2e636f6d2f3132382f3137342f3137343835342e706e67" alt="html5" height="50" width="50"/> </a>
<a href="" target="_blank"> <img src="https://camo.githubusercontent.com/19245ec17eda7364486b88211a4f9893001661c78d384430843df7584f30ec4e/68747470733a2f2f63646e2d69636f6e732d706e672e666c617469636f6e2e636f6d2f3132382f3733322f3733323139302e706e67" alt="css3" height="50" width="50"/> </a>
<a href="" target="_blank"> <img src="https://camo.githubusercontent.com/c5b45f4b07364324947b8a0cb15e93ff32890d94321295fb8254aa06d1c5dc55/68747470733a2f2f63646e2d69636f6e732d706e672e666c617469636f6e2e636f6d2f3132382f353936382f353936383239322e706e67" alt="javascript" height="50" width="50"/> </a>
## 14 Days 14 Projects
| Status | Project Title | Completion Date | Source Code | Project Link |
|:-: | :-: |:-: | :-: | :-: |
| โ
| Digital Clock | 10-Feb-2023 | [Click Here](https://github.com/Harsh971/14DaysOfJavascript/tree/main/Digital%20Clock) | [Click Here](https://14daysofjs-digitalclock.netlify.app/) |
| โ
| Analog Clock | 11-Feb-2023 | [Click Here](https://github.com/Harsh971/14DaysOfJavascript/tree/main/Analog%20Clock) | [Click Here](https://14daysofjs-analogclock.netlify.app/) |
| โ
| Month Calendar | 12-Feb-2023 | [Click Here](https://github.com/Harsh971/14DaysOfJavascript/tree/main/Month%20Calendar) | [Click Here](https://14daysofjs-monthcalender.netlify.app/) |
| โ
| Random Password Generator | 13-Feb-2023 | [Click Here](https://github.com/Harsh971/14DaysOfJavascript/tree/main/Random%20Password%20Generator) | [Click Here](https://14daysofjs-randompasswordgenerator.netlify.app/) |
| โ
| Heart Trail Animation | 14-Feb-2023 | [Click Here](https://github.com/Harsh971/14DaysOfJavascript/tree/main/Heart%20Trail%20Animation) | [Click Here](https://14daysofjs-hearttrailanimation.netlify.app//) |
| โ
| Animated Search Bar | 15-Feb-2023 | [Click Here](https://github.com/Harsh971/14DaysOfJavascript/tree/main/Animated%20Search%20Bar) |[Click Here](https://14daysofjs-animatedsearchbar.netlify.app/)|
| โ
| Sticky Navbar | 16-Feb-2023 | [Click Here](https://github.com/Harsh971/14DaysOfJavascript/tree/main/Sticky%20Navbar) |[Click Here](https://14daysofjs-stickynavbar.netlify.app/)|
| โ
| Dark Mode Toggle | 17-Feb-2023 | [Click Here](https://github.com/Harsh971/14DaysOfJavascript/tree/main/Dark%20Mode%20Toggle) |[Click Here](https://14daysofjs-darkmodetoggle.netlify.app)|
| โ
| Auto Text Effect Animation| 18-Feb-2023 | [Click Here](https://github.com/Harsh971/14DaysOfJavascript/tree/main/Auto%20Text%20Effect%20Animation) |[Click Here](https://14daysofjs-autotexteffectanimation.netlify.app/)|
| โ
| Image Slider | 19-Feb-2023 | [Click Here](https://github.com/Harsh971/14DaysOfJavascript/tree/main/Image%20Slider) |[Click Here](https://14daysofjs-imageslider.netlify.app/)|
| โ
| Step Progress Bar | 20-Feb-2023 | [Click Here](https://github.com/Harsh971/14DaysOfJavascript/tree/main/Step%20Progress%20Bar) |[Click Here](https://14daysofjs-stepprogressbar.netlify.app/)|
| โ
| English Dictionary | 21-Feb-2023 | [Click Here](https://github.com/Harsh971/14DaysOfJavascript/tree/main/English%20Dictionary) |[Click Here](https://14daysofjs-englishdictionary.netlify.app/)|
| โ
| Random Quote Generator | 22-Feb-2023 | [Click Here](https://github.com/Harsh971/14DaysOfJavascript/tree/main/Random%20Quote%20Generator) |[Click Here](https://14daysofjs-randomquotegenerator.netlify.app/)|
| โ
| Note App | 23-Feb-2023 | [Click Here](https://github.com/Harsh971/14DaysOfJavascript/tree/main/Note%20App) |[Click Here](https://14daysofjs-noteapp.netlify.app/)|
## <img src="https://camo.githubusercontent.com/7d747cc08b78d016646aed967d248840d37bb148002f56f7f24bc0f4e56ff540/68747470733a2f2f63646e2d69636f6e732d706e672e666c617469636f6e2e636f6d2f3132382f333433372f333433373239372e706e67" width="30" /> Connect with Me
<p>
<a href="https://twitter.com/HarshThakkar971" target="blank"><img align="center" src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4f/Twitter-logo.svg/1200px-Twitter-logo.svg.png" alt="HarshThakkar971" height="40" width="50" /></a>
<a href="https://linkedin.com/in/harsh-thakkar-7764bb1a4" target="blank"><img align="center" src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/LinkedIn_logo_initials.png/800px-LinkedIn_logo_initials.png" alt="harsh-thakkar-7764bb1a4" height="40" width="40" /></a>
<a href="https://instagram.com/harsh_thakkar09" target="blank"><img align="center" src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Instagram_logo_2016.svg/768px-Instagram_logo_2016.svg.png" alt="harsh_thakkar09" height="40" width="40" /></a>
<h3 align="left">Support:</h3>
<p><a href="https://www.buymeacoffee.com/harshthakkar971"> <img align="left" src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" height="50" width="210" alt="harshthakkar971" /></a></p>
</p>
| 14 Days 14 Projects using HTML, CSS and Javascript | css3,html-css-javascript,html5,javascript | 2023-02-07T16:15:03Z | 2023-02-23T13:38:33Z | null | 2 | 1 | 54 | 0 | 5 | 4 | null | MIT | CSS |
zbari023/test_bootstrap3 | main | # test_bootstrap3
# Merging 2 projects in one Page
# to visit the Page online : https://zbari023.github.io/test_bootstrap3/

| Merging 2 projects in one Page | bootstrap5,css3,cssanimations,html5,javascript | 2023-02-07T21:13:51Z | 2023-02-10T23:18:17Z | null | 1 | 1 | 11 | 1 | 1 | 4 | null | null | HTML |
NicolasAndrehh/First-Capstone-Project | main | <a name="readme-top"></a>
<div align="center">
<!-- You are encouraged to replace this logo with your own! Otherwise you can also remove it. -->
<img src="/images/shikimori.jpg" alt="logo" width="140" height="auto" />
<br/>
<h3><b>First Capstone 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)
- [๐ Live Demo](#live-demo)
- [Loom Walkthrough](#loom-walkthrough)
- [๐ป 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 -->
# ๐ [First Capstone Project] <a name="about-project"></a>
**[First Capstone Project]** is a the capstone project of the first module of Microverse where I have to use HTML, CSS and JS to create an online website.
## ๐ 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>
<details>
<summary>Server</summary>
<ul>
<li>GitHub Pages</li>
</ul>
</details>
<details>
<summary>Database</summary>
<ul>
<li>No database was required for this project</li>
</ul>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **[This project use Linters for HTML, CSS and JavaScript]**
- **[This project does a correct use of GitHub Flows]**
<p align="right"><a href="#readme-top">Back to top</a></p>
<!-- LIVE DEMO -->
## ๐ Live Demo <a name="live-demo"></a>
[First Capstone Project - Live Demo](https://nicolasandrehh.github.io/First-Capstone-Project/)
<p align="right"><a href="#readme-top">Back to top</a></p>
## Loom Walkthrough <a name="loom-walkthrough"></a>
[See presentation](https://www.loom.com/share/274f7b72950e41d2aafccd08a9a34a9b)
<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
- You'll need any code editor
<!--
Example command:
```sh
gem install rails
```
-->
### Setup
Clone this repository to your desired folder:
```sh
git clone git@github.com:NicolasAndrehh/First-Capstone-Project.git
```
### Install
Install this project with:
```sh
npm install
```
### Usage
To run the project, execute the following command:
- This project doesn't need any command to run
### Run tests
To run tests, run the following command:
- This project doesn't have tests
### Deployment
You can deploy this project using:
- Check the [live demo](#๐-live-demo) to see the project deployed
<p align="right"><a href="#readme-top">Back to top</a></p>
<!-- AUTHORS -->
## ๐ฅ Authors <a name="authors"></a>
๐ค **Nicolas Olaya**
- GitHub: [@NicolasAndrehh](https://github.com/NicolasAndrehh)
- Twitter: [@nicolasolaya22](https://twitter.com/nicolasolaya22)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/nicolas-andres-olaya-gamba-3b032b248/)
<p align="right"><a href="#readme-top">Back to top</a></p>
<!-- FUTURE FEATURES -->
## ๐ญ Future Features <a name="future-features"></a>
- [ ] **[Desktop version]**
<p align="right"><a href="#readme-top">Back to top</a></p>
<!-- CONTRIBUTING -->
## ๐ค Contributing <a name="contributing"></a>
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](../../issues/).
<p align="right"><a href="#readme-top">Back to top</a></p>
<!-- SUPPORT -->
## โญ๏ธ Show your support <a name="support"></a>
If you like this project you can share it to other people!
<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](https://www.behance.net/adagio07) because this project is based on her original design idea.
<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>
| HTML, CSS & JavaScript capstone project where I build an online website following design guidelines. | css,html,ecmascript6,javascript,linters | 2023-02-06T14:44:26Z | 2023-02-08T22:10:42Z | null | 1 | 1 | 25 | 0 | 0 | 4 | null | MIT | CSS |
akpi816218/pronouns.js | gitmaster | <div align="center">
<h1 style="margin-bottom:0;">pronouns.js</h1>
<img src="https://raw.githubusercontent.com/akpi816218/pronouns.js/gitmaster/files/pronouns.js_animated_banner.gif" style="width:1200px;max-width:50vw;margin:1.5em;margin-top:0;">
<br>
[ ](https://npmjs.com/package/pronouns.js)
[](https://www.npmjs.com/package/pronouns.js?activeTab=dependencies)


[](https://github.com/akpi816218/pronouns.js/commits/gitmaster)
[](https://github.com/akpi816218/pronouns.js/releases/latest) [](https://github.com/akpi816218/pronouns.js)
A simple system to keep track of pronouns โ and genders โ with JavaScript and TypeScript.
</div>
A simple and lightweight JavaScript library for managing and creating pronouns. **_Supports custom pronouns!_**
I got carried away one day and now this library also has genders.
Contibutions welcome.
The programmatic (API) documentation is available [here](/?api). Built using [Docma](https://onury.io/docma). For browser usage, see the "browser" section below.
For examples, see the `examples/` folder.
## Installation
Install from NPM. Type definitions are included for you TypeScript people (including me), so there's no need to try and install `@types/pronouns.js` as a devDependency โ it probably doesn't exist anyways.
```bash
$ npm i pronouns.js
```
## Browser functionality
You may use any one of the following imports:
```html
<!--
Recommended for production - does not rely on a CDN, fixed version
You must download the minified webpack.js file from the GitHub repository and then include it like so
-->
<script src="../dist/webpack.js"></script>
<!--
Recommended for testing and development
"https://unpkg.com/pronouns.js" automatically redirects to the specified file of the latest version
i.e. "https://unpkg.com/pronouns.js@3.3.0/dist/webpack.js"
you may use tag @latest to select the latest version (i.e. "https://unpkg.com/pronouns.js@latest")
For production, it is HIGHLY RECOMMENDED you use a fixed version.
-->
<script src="https://unpkg.com/pronouns.js"></script>
<!--
Secondary CDN - not tested
"https://cdn.jsdelivr.net/npm/pronouns.js" serves latest version, default file
add version tag similar to unpkg for a specified version
For production, it is HIGHLY RECOMMENDED you use a fixed version.
-->
<script src="https://cdn.jsdelivr.net/npm/pronouns.js@latest/dist/webpack.js"></script>
```
## Support
There is no support for CJS modules (`require()`). Use ESM instead (`import ... from ...`). If it works for one version, that's a coincidence. There is no intended support for CommonJS modules, only the modular syntax introduced in ES6. See [MDN's JavaScript module guide](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules).
| null | javascript,library,pronouns | 2023-01-26T18:06:09Z | 2023-07-26T19:22:31Z | 2023-07-26T19:13:38Z | 2 | 1 | 74 | 0 | 0 | 4 | null | MIT | TypeScript |
Sherdos/Library-Django | main | ๏ปฟ# Library-Django
django library site
| Library site on Django with user authorization on the site, with the ability to read a book online, with data caching and with a convenient admin panel | css,django,html,javascript,python3,sqlite3 | 2023-01-28T08:23:59Z | 2024-04-10T16:17:36Z | null | 1 | 0 | 23 | 0 | 1 | 4 | null | null | Python |
lasborne/RegularNFT | master | # RegularNFT
Regular ERC721-standard contract, built inheriting all the attributes of the OpenZeppelin ERC721 smart contract.
Contains basic functions like mint. This 'Mint' function is not allowed for use by the contract owner, a user can only mint the NFT once, and is guarded for ReEntrancy attacks.
The user is allowed to mint only if a value of 0.005 Ether is sent along (nothing more nor less) while invoking the mint function.
The funds received by the 'Mint' function from the sender is immediately transferred to the contract owner.
No Scripts, just basic tests.
MintAll function is only available to the BasicNFT contract deployer.
This is a raw skeletal framework of an ERC721 function customized for minting 1 NFT per user and can be further modified by any developer to suit specific needs.
| This is a raw skeletal framework of an ERC721 function customized for minting 1 NFT per user and can be further modified by any developer to suit specific needs. | erc721,ethereum-contract,ethersjs,hardhat,javascript,nft,nft-smart-contract,solidity,web3 | 2023-02-06T06:33:50Z | 2023-02-06T06:43:29Z | null | 1 | 0 | 1 | 0 | 2 | 4 | null | null | Shell |
Jacoste-js/Jacoste_sophomore | main | # Study Rules
## 1. ๋ฉค๋ฒ
|๋ฉค๋ฒ|github|velog|
|:--:|:--:|:--:|
|๐ฅ ๊น์งํ(jihyukim)|[tamagoyakii](https://github.com/tamagoyakii)|[tamagoyakii.log](https://velog.io/@tamagoyakii)|
|๐ฐ ๋ฐฐ์ฌ์(jabae)|[pearpearB](https://github.com/pearpearB)|[pearpearb.log](https://velog.io/@pearpearb)|
|๐ป ๊น๋ํ(daekim)|[KimDae-hyun](https://github.com/KimDae-hyun)|[daekim.log](https://velog.io/@dev_kdh)|
|๐ฑ ๊น์ง์ค(jiyokim)|[kjy00](https://github.com/kjy00)|[jyoonIT](https://jyoonit.tistory.com/)|
|๐ฆ ์ ๋ํ(rjeong)|[raehy19](https://github.com/raehy19)||
## 2. ์๊ฐ
๋งค์ฃผ ํ ์์ผ 2:00pm
## 3. ์คํฐ๋ ๋ฐฉ์
ํ ์ฅ์์ ๋ชจ์ฌ ์ ํด์ง ์๊ฐ ๋์ ๋ฌธ์ ๋ฅผ ํผ ๋ค ๊ฐ์์ ์ฝ๋ ๋ฆฌ๋ทฐ ๋ฐ ๊ณต๋ถ
## 4. ๋ฌธ์ ์ ํ
ํ๋ก๊ทธ๋๋จธ์ค Lv.1 ๋ฌธ์ 4๊ฐ, Lv.2 ๋ฌธ์ 2๊ฐ
## 5. ์
๋ก๋ ๋ฐฉ์
ํด๋น ๋ฌธ์ `.md` ํ์ผ์ ์ ์ถ<br>
e.g.) `algorithm/Level1/๋ฌธ์ ์ด๋ฆ.md`<br><br>
jihyukim
```js
// code
```
jabae
```js
// code
```
daekim
```js
// code
```
jiyokim
```js
//code
```
rjeong
```js
//code
```
| ์๋ฐ์คํธ๋ฆฝํธ ์๊ณ ๋ฆฌ์ฆ ์คํฐ๋ 2๊ธฐ | algorithm,coding-test,javascript,programmers,programmers-solutions | 2023-01-27T06:59:01Z | 2023-04-29T04:41:24Z | null | 5 | 0 | 214 | 0 | 1 | 4 | null | null | null |
Pa1mekala37/ReactJs-Event-Registration | main | In this project, let's build an **Events** app by applying the concepts we have learned till now.
### Refer to the image below:
<br/>
<div style="text-align: center;">
<img src="https://assets.ccbp.in/frontend/content/react-js/events-output.gif" alt="events output" style="max-width:70%;box-shadow:0 2.8px 2.2px rgba(0, 0, 0, 0.12)">
</div>
<br/>
### Design Files
<details>
<summary>Click to view</summary>
- [Large (Size >= 992px) and Extra Large (Size >= 1200px) - No Active Event](https://assets.ccbp.in/frontend/content/react-js/events-no-active-event-view-output.png)
- [Large (Size >= 992px) and Extra Large (Size >= 1200px) - Yet To Register](https://assets.ccbp.in/frontend/content/react-js/events-yet-to-register-view-output.png)
- [Large (Size >= 992px) and Extra Large (Size >= 1200px) - Registered](https://assets.ccbp.in/frontend/content/react-js/events-registered-view-output.png)
- [Large (Size >= 992px) and Extra Large (Size >= 1200px) - Registrations Closed](https://assets.ccbp.in/frontend/content/react-js/events-registrations-closed-view-output.png)
</details>
### Set Up Instructions
<details>
<summary>Click to view</summary>
- Download dependencies by running `npm install`
- Start up the app using `npm start`
</details>
### Completion Instructions
<details>
<summary>Functionality to be added</summary>
<br/>
The app must have the following functionalities
- Initially, the page should have the [No Active Event View](https://assets.ccbp.in/frontend/content/react-js/events-no-active-event-view-output.png)
- When the image of an event item with `registrationStatus` as `YET_TO_REGISTER` is clicked, then the [Yet To Register View](https://assets.ccbp.in/frontend/content/react-js/events-yet-to-register-view-output.png) should be displayed
- When the image of an event item with `registrationStatus` as `REGISTERED` is clicked, then the [Registered View](https://assets.ccbp.in/frontend/content/react-js/events-registered-view-output.png) should be displayed
- When the image of an event item with `registrationStatus` as `REGISTRATIONS_CLOSED` is clicked, then the [Registrations Closed View](https://assets.ccbp.in/frontend/content/react-js/events-registrations-closed-view-output.png) should be displayed
- The `Events` component is provided with `eventsList`. It consists of a list of event objects with the following properties in each event object
| Key | Data Type |
| :----------------: | :-------: |
| id | String |
| imageUrl | String |
| name | String |
| location | String |
| registrationStatus | String |
</details>
<details>
<summary>Components Structure</summary>
<br/>
<div style="text-align: center;">
<img src="https://assets.ccbp.in/frontend/content/react-js/events-compoment-structure-breakdown.png" alt="component structure breakdown" style="max-width:100%;box-shadow:0 2.8px 2.2px rgba(0, 0, 0, 0.12)">
</div>
<br/>
</details>
<details>
<summary>Implementation Files</summary>
<br/>
Use these files to complete the implementation:
- `src/components/Events/index.js`
- `src/components/Events/index.css`
- `src/components/EventItem/index.js`
- `src/components/EventItem/index.css`
- `src/components/ActiveEventRegistrationDetails/index.js`
- `src/components/ActiveEventRegistrationDetails/index.css`
</details>
### Important Note
<details>
<summary>Click to view</summary>
<br/>
**The following instructions are required for the tests to pass**
- The image for each event item should have alt attribute value as **event**
</details>
### Resources
<details>
<summary>Image URLs</summary>
- [https://assets.ccbp.in/frontend/react-js/events-register-img.png](https://assets.ccbp.in/frontend/react-js/events-register-img.png) alt should be **yet to register**
- [https://assets.ccbp.in/frontend/react-js/events-regestered-img.png](https://assets.ccbp.in/frontend/react-js/events-regestered-img.png) alt should be **registered**
- [https://assets.ccbp.in/frontend/react-js/events-registrations-closed-img.png](https://assets.ccbp.in/frontend/react-js/events-registrations-closed-img.png) alt should be **registrations closed**
</details>
<details>
<summary>Colors</summary>
<br/>
<div style="background-color: #64748b; width: 150px; padding: 10px; color: white">Hex: #64748b</div>
<div style="background-color: #0967d2; width: 150px; padding: 10px; color: white">Hex: #0967d2</div>
<div style="background-color: #323f4b; width: 150px; padding: 10px; color: white">Hex: #323f4b</div>
<div style="background-color: #f8fafc; width: 150px; padding: 10px; color: black">Hex: #f8fafc</div>
<div style="background-color: #475569; width: 150px; padding: 10px; color: white">Hex: #475569</div>
<div style="background-color: #ffffff; width: 150px; padding: 10px; color: black">Hex: #ffffff</div>
<div style="background-color: #2dd4bf; width: 150px; padding: 10px; color: black">Hex: #2dd4bf</div>
<div style="background-color: #3a4b63; width: 150px; padding: 10px; color: white">Hex: #3a4b63</div>
<br/>
</details>
<details>
<summary>Font-families</summary>
- Roboto
</details>
> ### _Things to Keep in Mind_
>
> - All components you implement should go in the `src/components` directory.
> - Don't change the component folder names as those are the files being imported into the tests.
> - **Do not remove the pre-filled code**
> - Want to quickly review some of the concepts youโve been learning? Take a look at the Cheat Sheets.
| Event Registration using React.js | css,html,javascript,npm,react-router,reactjs,jsx | 2023-02-02T07:25:33Z | 2023-02-02T07:25:56Z | null | 1 | 0 | 1 | 0 | 2 | 4 | null | null | JavaScript |
SamDorn/OscarChessPlatform | main | # OscarChessPlatform
- [What is it?](#what-is-it)
- [How does it work?](#how-does-it-work)
* [Against computer](#against-computer)
* [Against player](#against-player)
* [Learn secton](#learn-section)
+ [Puzzle](#puzzle)
* [Watch another player](#watch-another-player)
- [Credits](#credits)
## What is it?
It's a web application that allow you to do different things.\
For now you can play against the computer and another player.
## How does it work?
### Against computer
When the user land on the vsComputer page it will connect to a webSocket server and every time\
he makes a move a message is sent indicating the request(VsComputer), the current fen position, the skill of the\
computer the player chose, the username (which is a uniqueId) and a jwt. \
On the server side when the server receive a vsComputer request thanks to stockfish-py \
it uses the stockfish engine to calculate the best move according to the skill provided\
then the move is saved in a .txt file with the name of the username which will be unique for everyone.\
The server will be then be able to read the content of the file, get the best move, and send it back\
to who sent the message. The file then gets deleted.
The idea of the jwt token sent is to save games in the database if the player is logged in \
but this needs to be implemented.
### Against player
As for the versus computer, the vsPlayer uses web socket to send and receive information\
about the game. The logic of the game is based on a switch case. That's because\
for example when the user first lands on the page a request vsPlayer is sent with a state of\
newGame: the server will check if the user is already in an existing match and if he is it will sends\
all the information he needs to continue playing the game. If the server doesn't found any game\
he was playing in he will check if there are other player waiting for a second player to join. If there\
are it will join that game and start the match, if there aren't it will create a game with a status of \
waiting another player. When another user will look for a game and find the game created it will notify \
the user who created the game and start the match.\
Every time a player makes a move it will send an update state changing the PGN and the last move and will send\
a message to the other player containing the PGN and the move he played.\
When a game is over a finsh message is sent and there could be some scenarios. Since there is no timer\
if the player send a message finish it has either draw or win since you can't lose on your turn.\
A msg is sent along with the state finish indicating if the player has won or draw. In either case it will\
notify the other user of the state of the game.
### Learn section
#### Puzzle
Uses lichess.org api to get the information to display the puzzle by sending a get\
request. Example https://lichess.org/api/puzzle/00008. The ids are stored in the database\
with the elo which rapresent the dificulty and keywords that defines the category.
### Watch another player
To define
## Credits
| Name | Author |Link |
| --------------- | --------------------- | ---------------------------- |
| Chess.js| https://github.com/jhlywa|https://github.com/jhlywa/chess.js |
| cm-chessboard | https://github.com/shaack/ | https://github.com/shaack/cm-chessboard |
| Stockfish.py | https://github.com/zhelyabuzhsky | https://github.com/zhelyabuzhsky/stockfish |
| Stockfish 15 | https://github.com/official-stockfish | https://github.com/official-stockfish/Stockfish |
| jQuery | https://github.com/jquery | https://github.com/jquery/jquery |
| Php Ratchet | https://github.com/ratchetphp | https://github.com/ratchetphp/Ratchet |
| Google auth | https://github.com/googleapis | https://github.com/googleapis/google-auth-library-php |
| Chess platform where you can play against the computer or another player, resolve puzzles and watch your favorite player playing. | chess,javascript,jquery,php,python,mvc-architecture,ajax,chess-puzzle,stockfish,chess-game | 2023-02-02T15:32:19Z | 2023-05-28T19:57:34Z | null | 1 | 0 | 56 | 0 | 1 | 4 | null | MIT | JavaScript |
riyaroy2086/Code-Less | main |
<p align="center">
<img width="200" src="https://github.com/riyaroy2086/Code-Less/blob/main/icon.png">
</p>
# Code-Less
๐ฉโ๐ป Coding the repeatitive templates can be tiresome sometimes. Code-Less creates boiler templates for HTML and CSS effectively.๐
Helps to code conventional and customized ReactJs Hooks and VueJS Components. ๐
CSS and SCSS code snippets include GlassMorphism Effect styled components.
## Features
- Creates boiler templates with maximum utility.
- Get rid of initial tiresome CSS, HTML, ReactJS , VueJS and NuxtJS starter and functionality implementation code.
- Effective in generating React Hooks and Vue components.
- Generates Redux and Vuex functionality code.
- Capable of generating NuxtJS functionality code.
- Saves time while coding and increases productivity.
## Usage Instructions
1. Open the command palette (Ctrl+Shift+P on Windows and Linux, Cmd+Shift+P on OS X) and search for Code-Less.
2. Type the prefix and you are good to go.
## Snippets
| Snippet | Render |
| ---------------------------- | -------------------------------------------------- |
| !html | HTML Boilerplate |
| !css | CSS Boilerplate |
| form-html | HTML for creating a basic form |
| search-form-html | HTML for creating a search navbar |
| nav-html | HTML for creating a navbar |
| fixed-nav-css | Fixed Navbar CSS |
| center-div-css | Center convoluted div |
| form-css | CSS for creating a basic form |
| full-bg-img-css | Full Background Image |
| top-nav-css | Top Navbar Basic CSS |
| side-nav-css | Side Navbar Basic CSS |
| footer-css | CSS for creating a footer |
| grid-css | CSS for creating a grid |
| table-css | CSS for creating a table |
| 2-cols-css | CSS for creating 2 column structure |
| grad-css | CSS for color gradient |
| mask-css | CSS for masking one image above another |
| card-css | CSS for creating a card |
| btn-css | CSS for creating a button |
| search-css | CSS for creating a search bar |
| form-html | Responsive Form HTML |
| search-form-html | Search Navbar |
| nav-html | Simple Navbar |
| glass-card-htm | Glass Effect Card |
| glass-card-css | GLass Effect Card CSS |
| glass-button | Glass Button |
| glass-button-css | Glass Button CSS |
| bd | Backdrop |
| d-bd-scss | Dark Backdrop SCSS |
| l-bd-scss | Light Backdrop SCSS |
| header | Header |
| header-css | Header CSS |
| bd-nt | Night Backdrop |
| !react | React Starter Template |
| usestate | React UseState |
| usestate-array | React UseState Arrays |
| usestate-form | React UseState Form |
| react-rouitng | React Routing |
| react-rouitng-layout | React Routing Layout |
| react-rouitng-home | React Routing Home |
| useeffect-fetch | React useEffect Fetch |
| useeffect-fetch-aa | React useEffect Fetch Async Await |
| useeffect-fetch-aa-error | React useEffect Fetch Async Await Error Handling |
| useeffect-timer | React useEffect Timer |
| useeffect-axios | React useEffect Axios |
| usecontext-context | React useContext Context |
| usecontext-reducer | React useContext Context with Reducer |
| useref | React useRef |
| useref-i | React useRef with Initial Value |
| useref-i-focus | React useRef with Initial Value and Focus |
| usereducer-reducer | React useReducer with Reducer |
| usecallback | React useCallback |
| usememo | React useMemo |
| usememo-dependency | React useMemo with Dependency |
| uselayouteffect | React useLayoutEffect ` |
| usecallback-dependency | React useCallback with Dependency |
| !vue | Vue Template |
| vue-component | Vue Component |
| vue-component-props | Vue Component with Props |
| vue-toggle | Vue Component Toggle with v-if |
| vue-sidebar | Vue Sidebar |
| vue-tabs | Vue Tabs Component |
| vue-navbar | Vue Navbar |
| vue-footer | Vue footer |
| react-redux | React Redux starter template |
| react-redux-action | React Redux Action |
| react-redux-reducer | React Redux Reducer |
| react-redux-store | React Redux Store |
| react-redux-thunk | React Redux Thunk |
| react-redux-thunk | React Redux Thunk |
| react-redux-thunk-action | React Redux Thunk Action |
| vuex | Vuex starter template |
| vuex-module | Vuex Module template |
| vuex-action | Vuex Action template |
| vuex-mutation | Vuex Mutation template |
| vuex-getter | Vuex Getter template |
| vue-router | Vue Router |
| vue-router-view | Vue Router View |
| vue-router-link | Vue Router Link |
| vue-router-link-params | Vue Router Link with Params |
| nuxt-link | Nuxt-Link |
| nuxt-link-params | Nuxt-Link with Params |
| nuxt-link-query | Nuxt-Link with Query |
| nuxt-fetch | Nuxt Fetch |
| nuxt-fetch-params-query | Nuxt Fetch with Params and Query |
| uxt-fetch-store-params | Nuxt Fetch with Store and Params |
| uxt-fetch-store-query | Nuxt Fetch with Store and Query |
---





| VS CODE SNIPPET GENERATOR | css,html,javascript,reactjs,nuxtjs,reacthooks,redux,vuejs,vuex | 2023-02-07T16:22:08Z | 2023-07-19T07:48:36Z | null | 1 | 0 | 11 | 0 | 0 | 4 | null | null | null |
joehachemx/documentation-generator-pii | master | 
Source code for the documentation-generator-pii extension on VSCode.
<br>
## ๐ Features
- Generates a documentation from custom comments in seconds
- Documentation in Markdown format only
- Supports many languages ( Python, Javascript, C++, C#, Ruby ... )
- Smart comments ( ChatGPT integration )
<br>
## ๐ช Benefits
- Faster documentation creation
- Improved code readability
- Increased productivity and time saving
<br>
## ๐ Requirements
- VS Code
- Node.js
<br>
## ๐น Demo
Insert gif or link to demo
<br>
## ๐ป Installation
Search for it in the extension marketplace or click here. *link here*
### Smart Comments Integration
Open the settings view, search for the extension and paste your own API token. You might need to relaunch the extension afterwards.
<br>
## ๐ Known Issues
- Formatting bug on some functions
- Parser bugs if the language comment symbol is used in a code snippet
- Comment ID generation might lag
<br>
## ๐
โโ๏ธ Limitations
- Code becomes unreadable if a toddlers uses the extension
- Syntax of custom comments hard not admirable
- We need custom comments
<br>
## ๐ TODO
- Support HTML and PDF
- More designs
- Bug fixes
<br>
## โน๏ธ For more information
| Source code of the documentation generator pii extension on VSCode | chatgpt-api,docuemntation-tool,documentation-generator,javascript,vscode-extension | 2023-02-02T07:59:46Z | 2023-04-30T16:24:53Z | null | 6 | 15 | 71 | 0 | 0 | 4 | null | MIT | JavaScript |
daniel-oliv3/Desenvolvimento-Web-Compacto-e-Completo | main | ##
### Desenvolvimento Web Compacto e Completo
##
### HTML5 & CSS3 - Nรญvel 1
- Introduรงรฃo ao HTML5 e CSS3
- Elementos fundamentais do HTML5
- Conceitos essenciais de CSS3
- O 'alfabeto' indispensรกvel para comeรงar
### HTML5 & CSS3 - Nรญvel 2
- Hiperligaรงรตes
- Tabelas
- Formulรกrios
- Conceitos mais avanรงados
### CSS3 - Nรญvel 2
- Propriedades de texto & fonts
- Backgrounds e gradientes
- Layouts, float, display, posicionamento
- Flexbox
- CSS grid
- Media Queries
### JavaScript para o DOM
- O essencial da linguagem
- Como interagir com HTML e CSS com JS
- Interaรงรฃo com o Document Object Model
- Sintaxe da linguagem
- Eventos no DOM
- Exercรญcios prรกticos
### Bootstrap 5.x
- Tudo o que se precisas saber sobre Bootstrap
- Grid Layout: containers, rows, columns
- Alinhamentos e tipografia
- Responsividade
- Formulรกrios
- Componentes do Bootstrap
### PHP 8 - Bรกsico e Intermรฉdio
- Criaรงรฃo de conteรบdo web dinรขmico
- Sintaxe essencial da linguagem
- Variรกveis, constantes, data types, operadores
- String, array, instruรงรตes condicionais, ciclos
- Include e require, sessรตes, cookies, filesystem
- Funรงรตes e validaรงรฃo bรกsica de formulรกrios
### PHP 8 - Orientado a Objetos
- Classes & Objetos
- Construtor, Destructor, Heranรงa
- Classes Abstratas, Interfaces, Traits
- Mรฉtodo e Classes estรกticas
- Namespaces, strict types e muito mais...
- Autoload de classes
### MySQL & SQL Bรกsico
- Bases de dados
- Structured Query Language
- Como criar bases de dados
- Como usar SQL para interaรงรฃo com os dados
- PhpMyAdmin, HeidiSQL, MySQL Workbench
- Importar e exportar bases de dados
### PHP 8 e Conexรฃo com MySQL
- PHP Data Objects (PDO)
- Acesso a base de dados
- Execuรงรฃo de queries seguras
- Seguranรงa e SQL Injection
- Exercรญcios CRUD
### SQL Fundamental
- O fundamental da Structured Query Language
- SELECT, clรกusulas, Operadores, Joins
- GROUP BY, Having, Union
- INSERT, UPDATE, DELETE
- SQL Data Types e Alteraรงรฃo de Schema
- Keys, Funรงรตes para Strings, Nรบmeros e Datas
### PHP 8 Avanรงado
- Introduรงรฃo as Frameworks e padrรฃo MVC
- Construรงรฃo de uma micro framework MVC
- Projeto completo de uma aplicaรงรฃo
- Monolog, PHPMailer, mPDF, Datatables.net
- ChartJS, Flatpickr, PHPSpreadsheet, Composer
- Conceitos avanรงados na prรกtica
### PHP no terminal
- PHP CLI e execuรงรฃo de scripts no Terminal
- Captaรงรฃo de Parรขmetros
- Validaรงรฃo de Argumentos
- Manipulando o Filesystem
- PHP Standard Input
- Vรกrios exercรญcios
### PHP REST APIs
- Como criar uma API Rest
- HTTP Request Methods
- HTTP Basic Auth, API key, JWT
- Utilizaรงรฃo do Postman e Thunder Client
- Exemplos prรกticos de construรงรฃo de API
- Documentar uma API
### GIT & GitHub Fundamental
- O que precisas saber sobre GIT
- Repositรณrios locais e remotos
- GIT na linha de comando
- Como criar uma conta no Github
- Operaรงรตes remotas com GIT
- Muitos exemplos prรกticos
### Hospedagem Web Fundamental
- Hospedagem e Domรญnios
- Como escolher os serviรงos de hospedagem
- Registro de domรญnio e hospedagem partilhada
- Gestรฃo da hospedagem com cPanel
- Emails, FTP, Subdomรญnios, PhpMyAdmin
- Instalaรงรฃo de Aplicaรงรตes e muito mais...
### JavaScript AJAX, Sync & Async
### NodeJS Essencial
| Do ZERO atรฉ PROFISSIONAL do desenvolvimento WEB. Aprende as principais tecnologias para desenvolvimento de pรกginas e aplicaรงรตes WEB | bootstrap,css,html,javascript,mysql,php,ajax | 2023-02-09T12:24:17Z | 2023-11-29T14:12:06Z | null | 1 | 0 | 746 | 0 | 1 | 4 | null | null | HTML |
ibelgin/KryoTech | production | # KryoTech
A Simple App to Fetch data from Raspberry Pi to React Native App With Firebase.
# Screenshots
Run this app to see the live version
<img src="https://user-images.githubusercontent.com/61349423/223452849-fc25dc5e-8369-439b-809f-6000699a7a58.png" width="240" height="480"> <img src="https://user-images.githubusercontent.com/61349423/223452824-956b9161-2c47-478c-811d-19347995999c.png" width="240" height="480"> <img src="https://user-images.githubusercontent.com/61349423/223452863-51b12e3b-4f85-471c-b9e1-483e2791edb6.png" width="240" height="480">
# Author
* **Belgin Jarosh** - *App Developer*
* **Jagadhesh** - *IoT Dev*
* **Vishal** - *Product Developer - Hardware*
* **Suraj** - *Product Developer - Hardware*
| A Simple App to Fetch data from Raspberry Pi to React Native App With Firebase. | firebase,javascript,python,raspberry-pi,raspberry-pi-3,react,react-native,react-native-app,reactnative,typescript | 2023-01-26T09:14:33Z | 2023-05-21T16:25:20Z | null | 1 | 13 | 32 | 0 | 1 | 4 | null | MIT | TypeScript |
ngducnhatt/template-discordjs-v14 | main | <p align="center">
<img src="https://github-readme-stats.vercel.app/api/pin/?username=ngnducnhat&repo=template-discordjs-v14&theme=dark">
</p>
<p align="center">
<img src="https://img.shields.io/github/v/release/ngnducnhat/template-discordjs-v14?style=flat-square">
<img src="https://img.shields.io/github/forks/ngnducnhat/template-discordjs-v14?style=flat-square">
<img src="https://img.shields.io/github/stars/ngnducnhat/template-discordjs-v14?color=yellow&style=flat-square">
<img src="https://img.shields.io/github/license/ngnducnhat/template-discordjs-v14?style=flat-square">
<img src="https://img.shields.io/github/issues/ngnducnhat/template-discordjs-v14?color=yellow&style=flat-square">
<img src="https://img.shields.io/github/issues-closed-raw/ngnducnhat/template-discordjs-v14?style=flat-square">
</p>
# Introduction
This is a very simple template for beginners with discordjs and creating their own first discord bot. I've tried to be as minimal as possible while still being fully functional if you want to expand your idea. In this version I handled Events, Slash Commands and used discord.js v14.
Give me 1 star if you like that. Thank you all. Have a nice day.
[Discord.js](https://discord.js.org/)
# Features
- Slash Commands
- `/ping` | Speed test
- `/contact` | My informations
- `/button` | Example Buttons
- Mention Commands
- Events Handle
- Slash Commands Handle
- Custom status
# Setup
### I. Requirements:
- <a href="https://nodejs.org/en/"><img src="https://img.shields.io/badge/v18.13.0-100000?style=flat-square&logo=node.js&label=Node.js&color=blue&logoColor=lime"></a>
- <a href="https://www.npmjs.com/package/discord.js"><img src="https://img.shields.io/badge/14.7.1-100000?style=flat-square&logo=npm&label=Discord.js&color=blue"></a>
### II. Setup this bot
- 1). Create a new discord bot in <a href="https://discord.com/developers/applications"><img src="https://img.shields.io/badge/Discord-7289DA?style=flat-square&logo=discord&logoColor=white"></a>
- 2). Download or clone source code <a href="https://github.com/ngnducnhat/template-discordjs-v14/releases/latest"><img src="https://img.shields.io/badge/Download-1.0.0-blue?style=flat-square"></a>
- 3). Change bot token in `config.json` file.
- 4). Run `install.bat` or use `npm i` in terminal
https://user-images.githubusercontent.com/69428695/215223482-70965b1f-2a55-4586-9d66-25a99f3dd897.mp4
# Support and contact
<a href="https://bit.ly/3ykbdSS?r=lp"><img src="https://img.shields.io/badge/Facebook-1877F2?style=flat-square&logo=facebook&logoColor=white"></a>
<a href="https://github.com/ngnducnhat"><img src="https://img.shields.io/badge/GitHub-100000?style=flat-square&logo=github&logoColor=white"></a>
<a href="mailto:contactwithme.isme@gmail.com"><img src="https://img.shields.io/badge/Gmail-D14836?style=flat-square&logo=gmail&logoColor=white"></a>
<a href="https://bit.ly/m/perlescent_1"><img src="https://img.shields.io/badge/website-000000?style=flat-square&logo=About.me&logoColor=white"></a>
| This is a simple template to create discord bot using discordjs v14 | discord,discord-bot,discordjs,javascript,template,button,command-handler,nodejs,slash-commands,v14 | 2023-01-27T20:05:17Z | 2023-02-14T15:11:30Z | 2023-01-27T20:05:17Z | 1 | 0 | 11 | 0 | 2 | 4 | null | MIT | JavaScript |
RiadhAdrani/customizable-layout | master | # Customizable Layout
| Customizable Layout | javascript,layout-manager,typescript,ui | 2023-01-29T16:17:51Z | 2023-02-02T14:59:44Z | null | 1 | 0 | 9 | 0 | 0 | 4 | null | null | TypeScript |
Chmod351/scraper | master | 
# THE APP IS LIVE ON Render, SO IT WILL TAKE SOME TIME TO LOAD ON THE FIRST LOAD
 
    
## Index ๐
- [FAQ](https://github.com/yamilt351/scraper/blob/master/src/FAQ.md)
- [Demo](https://scraper-5ask.onrender.com/public/html.html)
- [UMLs](https://github.com/yamilt351/scraper/blob/master/UML.md)
- [Objetive](#Objetive)
- [Documentation](#Documentation)
- [Custom Usage](#Custom-Usage)
- [Body Example](#Body-Example)
- [Response Example](#Response-Example)
- [Usage Limitations](#Usage-Limitations)
- [Contributions](#Contributions)
- [Contributing Guidelines](https://github.com/yamilt351/scraper/blob/master/CONTRIBUTING.md)
- [Code Of Conduct](https://github.com/yamilt351/scraper/blob/master/CODE_OF_CONDUCT.md)
## Enjoying this project? Please consider giving it a star โญ๏ธ. Your support means a lot to us!
## Objetive โญ <a name="Objetive"></a>
This application not only allows you to `automate API creation`, `analyze and compare` various websites, and generate insightful reports, but also enables you to `export` the obtained information in `Excel format` and retrieve specific results using keywords. The main goal of this web scraper is to gather information from `any website` by utilizing its URL and the designated target CSS class. Its adaptable design empowers you to collect data from your preferred sites without being constrained by predefined limits."
## Documentation ๐ <a name="Documentation"></a>
[Postman Documentation](https://www.postman.com/orange-trinity-332576/workspace/scrapper/request/21643141-9324c29a-d14b-44c0-9a4d-2bf51d823d54?ctx=documentation)
## Custom Usage โ๏ธ <a name="Custom-Usage"></a>
The code makes a `POST` request to the `/scrappe` endpoint at `https://scraper-5ask.onrender.com/api/v1`. The request body should contain the following parameters:
- `keyWord` (string): The keyword to filter articles by (`optional`).
- `url` (string): The URL of the web page to scrape (`mandatory`).
- `objectClass` (string): The CSS class of the elements to scrape from the web page (`mandatory`).
The API endpoint responds with a JSON object containing the following properties:
- `state`: A string indicating the state of the scraping process.
- `objects found`: The number of objects found after filtering.
- `key-word`: The keyword used for filtering.
- `scanned webpage`: The URL of the webpage that was scraped.
- `found articles`: An array of articles that match the filtering criteria.
if the response is too big the api use [`compression`](https://www.npmjs.com/package/compression) middleware to reduce the size.
- implementing [`findOrCreate`](https://www.npmjs.com/package/mongoose-findorcreate) method for mongoose is a powerful tool to ensure that the scraping of websites doesn't lead to duplicated results in the database.
### Body Example <a name="Body-Example"></a>
```javascript
{
"url":"https://www.url.com.ar",
"objectClass":".css-class-selector",
"keyWord":"keyword"
}
```
### Response Example <a name="Response-Example"></a>
```javascript
{
"state": "success",
"objects found": 2,
"key-word": {
"doc": {
"_id": "64d40fa677d90019c57302ed",
"keyword": "keyword",
"createdAt": "2023-08-09T22:13:58.108Z",
"updatedAt": "2023-08-10T17:08:08.459Z",
"__v": 0,
"usedTimes": 28
},
"created": false
},
"scanned webpage": {
"_id": "64d3e3459686e7f4087acfdb",
"cssClass": ".css-class-selector",
"url": "https://www.url.com.ar",
"__v": 0,
"createdAt": "2023-08-09T19:04:37.137Z",
"scrapedTimes": 69,
"updatedAt": "2023-08-10T17:08:08.328Z"
},
"found articles": [
{
"_id": "64d4fcf821aef9f1dd17bbb8",
"websiteTarget": "64d3e3459686e7f4087acfdb",
"keywords": [
"64d40fa677d90019c57302ed"
],
"title": "Some Title",
"link": "/some/link/related/to/the/article",
"createdAt": "2023-08-10T15:06:32.535Z",
"updatedAt": "2023-08-10T17:08:08.643Z",
"__v": 2
},
]
}
```
### Export data to xlsx
- Make a `Post` request to `/export/to-excel`
- The request body should contain the following parameters:
- `scanned webpage` (Object): Response for `/scrappe` (`mandatory`)
- `found articles` (Objects Array): Response for `/scrappe` (`mandatory`).
body example:
```Javascript
{
"scanned webpage": {
"_id": "64d3e3459686e7f4087acfdb",
"cssClass": ".css-class-selector",
"url": "https://www.url.com.ar",
"__v": 0,
"createdAt": "2023-08-09T19:04:37.137Z",
"scrapedTimes": 69,
"updatedAt": "2023-08-10T17:08:08.328Z"
},
"found articles":[
{
"_id": "64d4fcf821aef9f1dd17bbb8",
"websiteTarget": "64d3e3459686e7f4087acfdb",
"keywords": [
"64d40fa677d90019c57302ed"
],
"title": "Some Title",
"link": "/some/link/related/to/the/article",
"createdAt": "2023-08-10T15:06:32.535Z",
"updatedAt": "2023-08-10T17:08:08.643Z",
"__v": 2
}
]
}
```
[Documentation](https://www.postman.com/orange-trinity-332576/workspace/scrapper/request/21643141-9324c29a-d14b-44c0-9a4d-2bf51d823d54?ctx=documentation)
## Usage Limitations <a name="Usage-Limitations"></a>
- You can only send up to 100 requests per 10 minutes.
- If the webpage has incorrect element nesting, the scraper will fail
- before use this tool please read [FAQ](https://github.com/yamilt351/scraper/blob/master/src/FAQ.md)
## Contributors โค๏ธ
Especial thanks to:
|๐ Frontend | ๐ Designers |
|------------|-------------|
|[@Robertw8](https://github.com/Robertw8)| [@LorenaGambarrota](https://github.com/LorenaGambarrota)|
| [@conorvenus](https://github.com/conorvenus)| |
| [@sudeepmahato16 ](https://github.com/sudeepmahato16)| |
| [@2div](https://github.com/2div) | |
| [@PraveenShinde3](https://github.com/PraveenShinde3) | |
| [@Rayen-Allaya](https://github.com/Rayen-Allaya) | |
| [@Piyush-Desmukh](https://github.com/Piyush-Deshmukh) | |
|[@Bolaji06](https://github.com/Bolaji06 ) | |
## Contributions ๐ <a name="Contributions"></a>
- Contributions are welcome! please read our [guidelines](https://github.com/yamilt351/scraper/blob/master/CONTRIBUTING.md)
| obtain information from any website, just by using its URL and the target CSS class that you want to scrape. It doesn't have a predefined purpose, so you can use it to gather information from any site you like | scraper,api,application,scraping,scraping-websites,web-application,web-service,open-source,javascript,nodejs | 2023-01-30T21:54:20Z | 2023-11-10T05:38:57Z | 2023-08-22T17:18:23Z | 9 | 83 | 442 | 8 | 9 | 4 | null | GPL-3.0 | JavaScript |
shahadat3669/metrics-webapp | dev | <a name="readme-top"></a>
<div align="center">
<img src="./public/logo512.png" alt="logo" width="140" height="auto" />
<h1><b>Metrics Webapp</b></h1>
</div>
<div align="center">
<img src="./public/cover.png" alt="cover" height="auto" />
</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](#faq)
- [๐ License](#license)
<!-- PROJECT DESCRIPTION -->
# ๐ฏ Metrics Webapp<a name="about-project"></a>
> This React capstone project is about building a mobile web application to check a list of metrics (numeric values) that make by use of React and Redux.
## ๐ Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>Technology</summary>
<ul>
<li>React</li>
<li>SCSS</li>
<li>Redux</li>
<li>Redux Toolkit</li>
<li>React Router Dom</li>
</ul>
</details>
<details>
<summary>Tools</summary>
<ul>
<li>VS Code</li>
<li>GIT</li>
<li>GITHUB</li>
</ul>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
This project is a simple metrics app. The main features are:
- **Mainly consists of two page:**
- **Home page with a list of regions and countries of that region that could be filter**
- **Detail page for the country details; in the example, the detail page for Czech Republic cities with number of views.**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LIVE DEMO -->
## ๐ Live Demo <a name="live-demo"></a>
https://user-images.githubusercontent.com/55840999/218153654-be83251f-4a86-4c5e-89a4-ccde3aa9fc02.mp4
- [Live Demo Link](https://matrics.onrender.com/)
- [Presentation slide](presentation_slide.pdf)
- [Presentation Link](presentation_video.mp4)
<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 simple example steps.
### Prerequisites
you have to those tools in your local machine.
- [ ] NPM
- [ ] GIT & GITHUB
- [ ] Any Code Editor (VS Code, Brackets, etc)
### Setup
Clone the project.
```bash
git clone git@github.com:shahadat3669/metrics-webapp.git
```
Go to the project directory.
```bash
cd metrics-webapp
```
In the project directory, you can run:
```bash
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.
```bash
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.
```bash
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.
Your app is ready to be deployed!
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
## 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/).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## ๐ฅ Authors <a name="authors"></a>
### First Author:
**Shahadat Hossain**
[](https://github.com/shahadat3669) [](https://linkedin.com/in/shahadat-cseng) [](https://twitter.com/shahadat3669)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ๐ญ Future Features <a name="future-features"></a>
- [ ] **We will implement city details 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](../../issues/).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- SUPPORT -->
## ๐ Show your support <a name="support"></a>
Give a โญ๏ธ if you like this project!
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## ๐ญAcknowledgments <a name="acknowledgements"></a>
- My Family.
- [Microverse Team](https://www.microverse.org/).
- [Rest Countries API](https://restcountries.com/)
- [Original design](<https://www.behance.net/gallery/31579789/Ballhead-App-(Free-PSDs)>) idea by [Nelson Sakwa](https://www.behance.net/sakwadesignstudio) on Behance.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FAQ (optional) -->
## โ FAQ <a name="faq"></a>
- **Are you using database?**
- No, I am not using any database.
- **Can I use this project for personal use?**
- Yes, you can use it.
<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 React capstone project is about building a mobile web application to check a list of metrics (numeric values) that make by use of React and Redux. | javascript,metrics,react,redux,redux-thunk,redux-toolkit,restcountries-api,swiper | 2023-02-06T17:18:27Z | 2023-05-29T15:34:38Z | null | 1 | 8 | 89 | 0 | 0 | 4 | null | MIT | JavaScript |
noodlapp/modules | main | # Noodl Modules - Expand Noodl with Custom Core Nodes
## Overview
Noodl Modules is a collection of custom modules written in JavaScript or TypeScript that expand the functionality of Noodl by introducing new core nodes
These modules are designed to enhance your Noodl development experience and provide additional capabilities for building interactive web applications.
## SDK
Not all the modules in this repository is using the SDK.
The way the SDK is built is a wrapper around the core Noodl API,
is it recommended to always use the SDK, but in some cases the SDK is limited.
Our internal core Noodl API might change in the future so the modules will not be compatible.
Here is a list of all the modules in this repository that is using the SDK:
- [Custom HTML](modules/custom-html-module)
- [Data Context](modules/data-context)
- [Geospatial Analysis](modules/geospatial-analysis)
- [Google Analytics Module](modules/google-analytics-module)
- [Mapbox](modules/mapbox)
- [Chart.js](modules/noodl-chartjs)
- [GraphQL](modules/noodl-graphql-module)
- [Google Sheets](modules/noodl-gsheets-module)
- [i18next Module](modules/noodl-i18next-module)
- [Lottie](modules/noodl-lottie-module)
- [Markdown](modules/noodl-markdown-module)
and more...
## Installation
In `.\module\webpack.config.js` you will see `outputPath` close to the top,
change this path to where your Noodl project is located and include `/noodl_modules/` at the end.
```sh
# Go to the module folder
$ cd ./module
# Install dependencies
$ npm install
# Build the module in dev mode with watch,
# so when you make a change it will rebuild the project.
#
# This will build unoptimized javascript code of the module.
$ npm run dev
# Build optimized javascript code of the module.
$ npm run build
```
## Contributing
[How to write a module?](https://docs.noodl.net/#/javascript/extending/overview/)
| A collection of Noodl modules. | javascript,noodl | 2023-01-27T11:24:53Z | 2023-12-20T13:14:31Z | null | 5 | 20 | 61 | 5 | 5 | 4 | null | null | JavaScript |
AmolShelke2/Discord-UI | master | # Discord UI
A Discord website UI clone created with HTML CSS and JavaScript. It is fully responsive on Every device.
Give a โญ to this repository if you like this project โค๏ธ
<hr/>
## Different Sections
- Hero section
- Collabaration section
- Voice Channel section
- Moderation Tool section
- Video Call section
- Footer
<hr/>
## Tech Stack
- HTML
- CSS
- JavaScript
<hr/>
## Live
[Discord UI clone](https://discord-ui-ten.vercel.app/)
<hr/>
## Preview

<hr/>
## More about myself
I'm Amol Shelke 2nd Year undergraduate student Learning web development
And mostly work on Front-end. I love to write JS codeโค๏ธ
| Discord landing page created using HTML CSS and JavaScript. | css3,html,javascript,webdevelopment,website | 2023-01-26T08:24:57Z | 2023-07-24T17:46:10Z | null | 1 | 0 | 69 | 0 | 0 | 4 | null | null | HTML |
GraceHtet/leaderboard | dev | <a name="readme-top"></a>
<!--
HOW TO USE:
This is an example of how you may give instructions on setting up your project locally.
Modify this file to match your project and remove sections that don't apply.
REQUIRED SECTIONS:
- Table of Contents
- About the Project
- Built With
- Live Demo
- Getting Started
- Authors
- Future Features
- Contributing
- Show your support
- Acknowledgements
- License
After you're finished please remove all the comments and instructions!
-->
<div align="center">
<!-- <img src="murple_logo.png" alt="logo" width="140" height="auto" />
<br/> -->
<h3><b>LeaderBoard 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)
- [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 -->
# ๐ [Leaderboard] <a name="Leaderboard-project"></a>
> This is the project using webpack.
**[Leaderboard]** website displays scores submitted by different players. And you can also submit your score.
<img src="./src/assets/img/leaderBoard.png" alt="leaderboard"/>
## ๐ Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
> HTML| CSS| JS
> Webpack
<!--<details>
<summary>Client</summary>
<ul>
<li><a href="https://reactjs.org/">React.js</a></li>
</ul>
</details>
<details>
<summary>Server</summary>
<ul>
<li><a href="https://expressjs.com/">Express.js</a></li>
</ul>
</details>
<details>
<summary>Database</summary>
<ul>
<li><a href="https://www.postgresql.org/">PostgreSQL</a></li>
</ul>
</details> -->
<!-- Features -->
### Key Features <a name="key-features"></a>
<!-- > Describe between 1-3 key features of the application. -->
- **[Add Score]**
- **[Display Score]**
<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://gracehtet.github.io/leaderboard/dist/)
<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 to:
<!--
Example command:
```sh
gem install rails
```
-->
### Setup
Clone this repository to your desired folder:
https://github.com/GraceHtet/leaderboard.git
and you are ready to use it. You don't need to install anything or setup anything.
Good luck!
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## ๐ฅ Authors <a name="authors"></a>
๐ค **Grace Htet**
- GitHub: [Grace Htet](https://github.com/GraceHtet)
- LinkedIn: [Thiri Htet](https://www.linkedin.com/in/thiri-htet-418047204/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## ๐ญ Future Features <a name="future-features"></a>
<!-- > Describe 1 - 3 features you will add to the project. -->
- [ ] **[Upgrade UI/UX]**
<!-- - [ ] **[Update UI/UX Design]** -->
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- CONTRIBUTING -->
## ๐ค Contributing <a name="contributing"></a>
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](../../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 don't forget to follow me and give me advice so that I can improve more.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## ๐ Acknowledgments <a name="acknowledgements"></a>
I would like to thank Microverse.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FAQ (optional) -->
## โ FAQ <a name="faq"></a>
<!-- > Add at least 2 questions new developers would ask when they decide to use your project. -->
- **Can you make a list of 10 Most Popular Books based of the inputs in your page?**
- Hi! Thank you for the suggestion. It would be an honor to please our readers. We will do that ASAP.
<!-- - **[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>
| You can see the scores from others which are fetched from API. And you can also add your score. Once you refresh the page, you will see your result in the table. | css,html,javascript,webpack | 2023-01-31T15:32:55Z | 2023-02-28T15:10:10Z | null | 1 | 5 | 18 | 0 | 0 | 4 | null | MIT | CSS |
greeenboi/Suvans-website | master | null | The code for my website; feel free to study it | html,css,javascript,three-js,threejs-example | 2023-02-08T10:15:59Z | 2023-05-08T05:34:18Z | null | 1 | 1 | 8 | 0 | 0 | 4 | null | null | JavaScript |
HypeDMZ/ssopa | main | # ssopa
"ssopa" is a community site for Korean high school students, built using Spring Boot and React.
## Technology Stack
- Spring Boot 2.7.8
- Java 17
- React
- MySQL
- Redis
- Websocket
- Stomp
## Production Period
February 2nd, 2023
## Deployment
We use non-disruptive distribution through Jenkins and automated distribution technology using CI/CD.
## Contributing
We welcome contributions to the project! To contribute, please follow these steps:
1. Fork the repository
2. Make your changes
3. Create a pull request
## Contact
#### Back-end Developer
- [Jiho Seo](https://github.com/swiftsjh02)
- [Taewan Cho](https://github.com/taewan2002)
- [Heejin Chang](https://github.com/heejinChang)
#### Front-end Developer
- [Uijin Kim](https://github.com/whitekuj02)
- [Jiwon Park](https://github.com/jione-park)
- [Sungmin Chung](https://github.com/jione-park)
#### Designer
- Suhyun Lim(hyunn1912@gmail.com)
## Design tools
- [Figma](https://www.figma.com/file/zCOEwkoaO4Ffh150D6VnBx/DMZ%ED%94%84%EB%A1%9C%EC%A0%9D%ED%8A%B8?node-id=0%3A1&t=eaxh9W1MtBV9mL0b-0)
## Organization
- [DMZ](https://github.com/dmzgachon)
| ๊ณ ๋ฑํ์ ์ปค๋ฎค๋ํฐ ํ๋ก์ ํธ ssopa | spring-boot,react,java,javascript,websocket | 2023-02-07T14:36:12Z | 2023-09-30T12:46:51Z | null | 6 | 165 | 559 | 0 | 6 | 4 | null | null | Java |
avivharuzi/m3u8-dln | main | <div align="center">
<h1>m3u8-dln</h1>
<p>A complete m3u8 downloader ๐บ</p>
<p>An npm package and CLI tool to download M3U8/HLS streams and merge all the chunks to a MP4 video.</p>
<p>
<img alt="NPM" src="https://img.shields.io/npm/v/m3u8-dln?style=for-the-badge">
<img alt="GitHub" src="https://img.shields.io/github/license/avivharuzi/m3u8-dln?style=for-the-badge">
</p>
<p>
<a href="https://github.com/github_username/m3u8-dln/issues">Report Bug</a>
ยท
<a href="https://github.com/github_username/m3u8-dln/issues">Request Feature</a>
</p>
</div>
---
## ๐ Table of Contents
- [Features](#-Features)
- [Prerequisites](#-Prerequisites)
- [Installation](#-Installation)
- [Usage](#-Usage)
- [License](#-License)
## โจ Features
โ
Vey fast ๐๏ธ
โ
Can be used via CLI or in code
โ
Support http headers in case of authentication
โ
Can download from m3u8 master playlist and all his videos inside or specific one
โ
Can merge video and audio together (works only if the m3u8 master playlist was provided)
โ
Preserve original quality (without encoding)
## ๐ฏ Prerequisites
- [ffmpeg](https://ffmpeg.org) (ffmpeg will be used as the last step to create the mp4 file)
## ๐ ๏ธ Installation
Using via code (for CLI no need to install locally).
> NOTE: The package is using esm modules!
Install the package locally.
```
npm i m3u8-dln
```
Basic example.
```ts
import { m3u8DLN } from 'm3u8-dln';
await m3u8DLN('https://www.example.com/some-path/master.m3u8', './');
```
With options.
```ts
import { m3u8DLN } from 'm3u8-dln';
const response = await m3u8DLN(
'https://www.example.com/some-path/master.m3u8',
'./',
{
httpHeaders: {}, // HTTP headers that can be pass to the http calls.
segmentBatch: 8, // The number of segment files to download at the same time.
streamBatch: 4, // The number of streams to download at the same time.
streamSelection: {
// 'all' | 'first-one' | 'last-one' | 'highest-bandwidth' | 'highest-resolution'
strategy: 'highest-resolution', // Choose what streams to download.
},
}
);
console.log(response); // [{ outputFilePaths: ['ced0b1120d6954b6229bbbc12c162c6a_1920x1080_25.mp4'] }]
```
## โก๏ธ Usage
Using via CLI.
```sh
npx m3u8-dln --help
```
Download example with input.
```sh
npx m3u8-dln -i https://www.example.com/some-path/master.m3u8
```
## ๐ License
[MIT](LICENSE)
| A complete m3u8 downloader ๐บ | nodejs,hls,javascript,m3u8,m3u8-downloader,npm,npm-package,typescript | 2023-02-07T16:54:30Z | 2023-02-13T21:04:31Z | null | 1 | 0 | 41 | 0 | 0 | 4 | null | MIT | TypeScript |
ISEDemoLab/ISE_Guest_Webinar | main | null | HTML and Javascript code samples for configuration of ISE Guest Portals. | cisco,guest,html,identity,ise,javascript,webinar | 2023-02-06T14:30:12Z | 2024-03-12T13:33:44Z | null | 1 | 0 | 10 | 0 | 1 | 4 | null | MIT | null |
JUSTINAYA/justinaya.github.io | main | null | ๐ ๆ็ไธชไบบๅๅฎข | web,css,html,javascript | 2023-01-29T04:40:45Z | 2024-04-08T15:08:27Z | null | 1 | 0 | 41 | 0 | 0 | 4 | null | null | HTML |
flemton/leaderboard | dev | <a name="readme-top"></a>
<div align="center">
<h3><b>Microverse README Template</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)
- [๐ฅ Author](#author)
- [๐ญ Future Features](#future-features)
- [๐ค Contributing](#contributing)
- [โญ๏ธ Show your support](#support)
- [๐ Acknowledgements](#acknowledgements)
- [๐ License](#license)
<!-- PROJECT DESCRIPTION -->
# ๐ Leaderboard <a name="about-project"></a>
**Leaderboard** is a webapp that allows users to add their names and scores and view leaderboard for everyone who has added theirs
## ๐ Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>Client</summary>
<ul>
<li><a href="https://webpack.js.org/">Webpack</a></li>
</ul>
</details>
<details>
<summary>Server</summary>
<ul>
<li><a href="https://webpack.js.org/">Webpack</a></li>
</ul>
</details>
<details>
<summary>Database</summary>
None.
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **[Add scores]**
- **[See leaderboard]**
<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://flemton.github.io/leaderboard/dist)
<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: [Node LTS](http://nodejs.org/) installed
### Setup
Clone this repository to your desired folder using the below command:
```sh
cd my-folder
git clone git@github.com:flemton/leaderboard.git
```
### Install
Install this project with:
```sh
cd leaderboard
npm i
```
### Usage
To run the project, execute the following command:
```sh
npm start
```
### Run tests
To run tests, run the following command:
```sh
npx eslint .
```
<!-- AUTHOR -->
## ๐ฅ Author <a name="author"></a>
๐ค **Author**
- GitHub: [@flemton](https://github.com/flemton)
- Twitter: [@oalhassan847](https://twitter.com/oalhassan847)
- LinkedIn: [Alhassan Osman](https://www.linkedin.com/in/alhassan-o-83039a80/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## ๐ญ Future Features <a name="future-features"></a>
- [ ] **[Get real scores from games]**
- [ ] **[add picture]**
<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, considering giving it a star
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## ๐ Acknowledgments <a name="acknowledgements"></a>
I would like to thank [Microverse](@microverseinc) for giving me this project to work on
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LICENSE -->
## ๐ License <a name="license"></a>
This project is [MIT](./LICENSE) licensed.
| Leaderboard is a webapp that allows users to add their names and scores and view leaderboard for everyone who has added theirs, this is a block project at @microverseinc | api-rest,html-css-javascript,javascript,wepback | 2023-01-31T22:53:07Z | 2023-02-05T01:37:07Z | null | 1 | 4 | 28 | 1 | 0 | 4 | null | null | JavaScript |
somiibo/soundcloud-bot | main | <p align="center">
<a href="https://somiibo.com/platforms/soundcloud-bot">
<img src="https://cdn.itwcreativeworks.com/assets/somiibo/images/logo/somiibo-brandmark-blue-x.svg" width="100px">
</a>
</p>
<p align="center">
<img src="https://img.shields.io/github/package-json/v/itw-creative-works/node-powertools.svg">
<br>
<img src="https://img.shields.io/npm/dm/node-powertools.svg">
<img src="https://img.shields.io/website/https/itwcreativeworks.com.svg">
<img src="https://img.shields.io/github/contributors/itw-creative-works/node-powertools.svg">
<br>
<br>
<strong>SoundCloud Bot</strong> is a free software that automatically follows users and likes, reposts & comments on tracks
</p>
# ๐ป Installation
### Direct link
[](https://somiibo.com/download?download=windows)
[](https://somiibo.com/download?download=macos)
[](https://somiibo.com/download?download=linux)
[](https://somiibo.com/download?download=null)
### Command line
Clone this repo then run the following commands:
```shell
cd <download-directory>
npm install
npm start
```
# ๐ Features
- Grow your SoundCloud organically
- Automatically follows users and likes, reposts & comments on tracks
- Those users will then become organic followers
# ๐โโ๏ธ Want to contribute?
Want to contribute? Great! All contributions are welcome, from code to documentation to graphics to design suggestions to bug reports.
[Join our Discord server](https://somiibo.com/discord) to participate
| SoundCloud bot. Automatically follows users and likes, reposts & comments on tracks. | agency,automation,front-end,frontend,javascript,marketing,marketing-automation,nodejs,saas,social-media | 2023-02-07T11:37:13Z | 2024-05-23T01:56:37Z | null | 2 | 0 | 467 | 0 | 0 | 4 | null | null | JavaScript |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.