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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
manancodes/Screenbows | master | # Screenbows
Screenbows is a web-based color generation tool that allows you to create and download beautiful color palettes as image files for your design and development projects
The project is deployed at [Screenbows](https://manancodes.github.io/Screenbows/)




## Why Screenbows?
Screenbows offers a user-friendly way to generate and download beautiful colors for your projects.
Whether you need color inspiration or want to create eye-catching visuals, Screenbows simplifies the process by providing a range of features for color generation and customization.
With Screenbows, you can effortlessly obtain hex codes for colors and save your preferred color as an image, making it an essential tool for designers, developers, and anyone in need of vibrant color schemes.
## Table of Contents
- [Features](#features)
- [Installation](#installation)
- [Prerequisites](#prerequisites)
- [Installation Steps](#installation-steps)
- [Usage](#usage)
- [Contributing](#contributing)
## Features
- Click on the button with the shuffle icon to generate a new color.
- Get the hex code of the color that is generated.
- Download the color as an image with one click.
- Adjustable width and height of the image.
- Easy-to-use.
- The hex code can be added manually as well, simply type the preferred code in the hexa code input box
## Installation
### Prerequisites
Before you begin, ensure you have met the following requirements:
- Node.js installed on your local machine.
- Git installed on your local machine.
### Installation Steps
1. Clone the repository to your local machine:
`git clone https://github.com/manancodes/Screenbows`
2. Change directory to the project folder:
`cd Screenbows`
3. Install the dependencies:
`npm install`
4. Run Screenbows:
`npm start`
## Usage
Screenbows is designed to be user-friendly and is accessible on both desktop and mobile devices. Follow these steps to make the most of this color generation tool:
1. **Generate a New Color:** Click the "Shuffle icon" button to generate a new color.

2. **Get the Hex Code:** Once a color is generated, you can easily obtain the hex code of the color by copying it.

3. **Download as Image:** Want to save the color for later use? Simply click the "Download" button to save it as an image.

4. **Customize Image Dimensions:** If you need a color of specific dimensions, you can adjust the width and height of the image before downloading it.

5. **Manually Enter Hex Code:** If you have a specific color in mind, you can manually input the hex code in the provided input box to generate that exact color.

## Contributing
We welcome contributions from the community. If you would like to contribute to Screenbows, please follow these steps:
- Fork the repository on GitHub.
- Clone your fork to your local machine.
- Create a new branch with a descriptive name.
- Make your changes and commit them.
- Push your changes to your fork on GitHub.
- Open a pull request on the main repository.
| Magical colours for your screen | hacktoberfest,hacktoberfest-accepted,hacktoberfest2023,css,html,html-css-javascript,javascript,open-source,opensource,react | 2023-02-16T07:48:16Z | 2023-10-27T20:26:08Z | null | 7 | 29 | 70 | 5 | 10 | 11 | null | null | JavaScript |
DateDreamer/datedreamer | main | # DateDreamer
An easy to use lightweight javascript calendar library.
## Install & Usage
### Install
Install DateDreamer with either yarn or npm.
```bash
npm install datedreamer
```
```bash
yarn install datedreamer
```
### Use
```html
<script src="node_modules/datedreamer/datedreamer.js">
<div id="calendar"></div>
<script>
window.onload = () => {
new datedreamer.calendar({...options})
}
</script>
```
OR
```typescript
import * as datedreamer from "datedreamer";
new datedreamer.calendar({...options});
```
OR
```typescript
import {calendar} from "datedreamer";
new calendar({...options});
```
## Standalone Calendar
Use this if you want a standalone calendar that comes with an input filled and a Today button.
* `element`: Sets where to insert the calendar to. Can be either a CSS selector string or an HTMLElement object.
* `selectedDate`: Sets the starting date for the calendar. Can be set to a date string, Date object, or null. If null, todays date will be selected by default. If a string is passed, the `format` option should also be passed in order for the calendar to know the format of the `selectedDate` that you are passing.
* `format`: Use this to specify the input AND output format of the date. Please see the available formats from [DayJS](https://day.js.org/docs/en/display/format). <br>Example: `'DD/MM/YYYY'`
* `iconNext`: Sets the next arrow icon. You can pass it either text or an svg.
* `iconPrev`: Sets the previous arrow icon. You can pass it either text or an svg.
* `inputLabel`: Sets the label of the date input element.
* `inputPlaceholder`: Sets the placeholder of the date input element.
* `hideInputs`: Hides the input and today button from the UI.
* `onChange`: Use this to provide a callback function that the calendar will call when the date is changed. The callback function will receive a `CustomEvent` argument that will include the chosen date inside the detail property.
```javascript
new datedreamer.calendar({
...,
onChange: (e) => {
// Get Date object from event
console.log(e.detail);
}
})
```
* `onRender`: Use this to provide a callback function that the calendar will call when the calendar is rendered. The callback function will receive a `CustomEvent` argument that will include a `calendar` property inside of the event `detail` property.
```javascript
new datedreamer.calendar({
...,
onRender: (e) => {
// Calendar has rendered
console.log(e.detail.calendar);
}
})
```
* `theme`: Sets the style template to use. Options are `unstyled` and `lite-purple`.
* `unstyled`:

* `lite-purple`:

* `styles`: Use this property to pass css styles that will be passed into the components style tag.
```javascript
new datedreamer.calendar({
...,
styles: `
button {
color: blue
}
`
})
```
## Toggle Calendar
The toggle calendar has the same options as the Standalone Calendar, however the input is a standalone input element which when clicked, triggers the calendar to show.


```javascript
new datedreamer.calendarToggle({
...options
});
```
## Development
### Install dependencies using yarn
```yarn install```
### Run development server
```yarn start```
<br /><br />
[Developed with love by Jorge Felico](https://jorgefelico.com)
| An easy to use lightweight javascript calendar library. | calendar,datepicker,javascript,typescript | 2023-02-10T16:37:28Z | 2024-04-15T01:29:47Z | 2024-04-15T01:29:47Z | 2 | 109 | 177 | 1 | 2 | 11 | null | GPL-3.0 | TypeScript |
aamirxshaikh/30-days-of-js | main | # 30 Days of JavaScript
This repository contains my solutions for the 30 Days of JavaScript coding challenge. The original challenge was created by [Asabeneh](https://github.com/Asabeneh) and consists of 30 coding exercises designed to help improve your skills in JavaScript.
## Table of Contents
- [Days](#days)
- [Installation](#installation)
- [Usage](#usage)
- [Contributing](#contributing)
- [License](#license)
## Days
- `Day 01 Introduction`: This challenge provides an introduction to the course and covers basic JavaScript concepts such as variables, and data types.
- `Day 02 Data Types`: This challenge covers data types in JavaScript, including primitive data types, and non-primitive data types.
- `Day 03 Booleans, Operators, and Dates`: This challenge covers booleans and operators in JavaScript, as well as working with dates.
- `Day 04 Conditionals`: This challenge covers conditional statements in JavaScript, including if-else statements, switch statements, and ternary operators.
- `Day 05 Arrays`: This challenge covers arrays in JavaScript, including array methods, iteration, and manipulation.
- `Day 06 Loops`: This challenge covers loops in JavaScript, including for loops, while loops, do-while loops, break, and continue statements.
- `Day 07 Functions`: This challenge covers various aspects of functions, including function declaration, function expression, arrow functions, and self-invoking functions. It also covers different types of parameters in functions, including unlimited parameters in regular and arrow functions, default parameters, and anonymous functions.
- `Day 08 Objects`: This challenge covers scope and objects in JavaScript, including window global object, global scope, and local scope, creating an empty object, creating an objecting with values, getting values from an object, creating object methods, setting new key for an object, and object methods
- `Day 09 Higher Order Functions`: This challenge covers the concept of higher-order functions, callbacks, returning functions, setting time using setInterval and setTimeout functions, and functional programming methods such as forEach, map, filter, reduce, every, find, findIndex, some, and sort for string, numeric values, and object arrays.
- `Day 10 Sets and Maps`: This challenge covers sets and maps, including creating an empty set, creating a set from an array, adding and deleting an element to a set, checking an element in the set, clearing the set, union, intersection, and difference of sets. It also covers creating an empty map, creating a map from an array, adding and getting values from map, and checking keys in map.
- `Day 11 Destructuring and Spreading`: This challenge covers advanced JavaScript concepts including destructuring arrays and objects, renaming during destructuring, using destructuring during iteration, utilizing the spread or rest operator to copy arrays and objects, and using the spread operator with arrow functions for concise coding.
- `Day 12 Regular Expressions`: This challenge covers creating and working with regular expressions in JavaScript, including creating patterns with RegExp Constructor or without, RegExp parameters such as flags and patterns, using square brackets and escape characters, and working with quantifiers and the caret symbol. It also covers RegExp object methods for testing, matching, and replacing strings.
- `Day 13 Console Object Methods`: This challenge covers the console object methods in JavaScript, such as logging messages with console.log(), displaying tables with console.table(), measuring code performance with console.time(), and more.
- `Day 14 Error Handling`: This challenge covers error handling in JavaScript, including error types and handling, try-catch block, and throwing and catching errors.
- `Day 15 Classes`: This challenge covers creating and instantiating classes in JavaScript, defining constructors, methods, properties with initial values, and using getter, setter, and static methods. It also explores inheritance, including overriding methods.
- `Day 16 JSON`: This challenge covers JSON, a lightweight data-interchange format, including converting JSON to JavaScript objects, using a reviver function with JSON.parse(), converting objects to JSON, and using a filter array with JSON.stringify().
- `Day 17 Web Storages`: This challenge covers HTML5 Web Storage in JavaScript, covering topics such as sessionStorage and localStorage, setting and getting items from localStorage, and clearing the localStorage for different use cases.
- `Day 18 Promises`: This challenge covers the fundamental concepts of Promises in JavaScript, including working with callbacks, utilizing the Promise constructor, making use of the Fetch API, and implementing async and await functionality.
- `Day 19 Closures`: This challenge covers closures in JavaScript, which allow functions to access variables from their outer functions.
- `Day 20 Writing Clean Codes`: This challenge covers JavaScript style guides and coding conventions, including the importance of adhering to a style guide, commonly used style guides like Airbnb, Standard, and Google, and conventions for variables, arrays, functions, loops, objects, conditionals, and classes.
- `Day 21 Document Object Model (DOM)`: This challenge covers the Document Object Model (DOM) and introduces techniques for working with JavaScript, including getting elements by tag name, class name, or ID, using querySelector methods, adding attributes and classes, adding text content to HTML elements using textContent or innerHTML, and adding styles such as color, background color, and font size.
- `Day 22 Manipulating DOM Objects`: This challenge covers the manipulation of Document Object Model (DOM) objects, including creating elements, appending them to parent elements, and removing child elements from parent nodes. It provides hands-on practice in working with the DOM to modify the structure and content of web pages.
- `Day 23 Event Listeners`: This challenge covers the implementation of event listeners in the Document Object Model (DOM), including handling click, double click, and mouse enter events. It also explores retrieving values from input elements, handling input events, blur events, and keyboard events such as keypress, keydown, and keyup. It provides hands-on practice in adding interactivity to web pages through event-driven programming.
- `Day 24 Project Solar System`: This challenge focuses on developing a small application that calculates the weight of an object on a specific planet within the solar system.
- `Day 25 World Countries Data Visualization (Part 1)`: This challenge dives into the visualization of data by using DOM to display the ten most populated countries and the ten most spoken languages in the world. It involves fetching country information from the provided countries.js array of objects and dynamically presenting the data in a visually appealing bar graph format.
<!-- - `Day 26`: World Countries Data Visualization (Part 2) -->
<!-- - `Day 27`: Mini Project: Portfolio -->
<!-- - `Day 28`: Mini Project: Leaderboard -->
<!-- - `Day 29`: Mini Project: Animating Characters -->
<!-- - `Day 30`: Mini Project: Final -->
## Installation
1. To run the projects in this repository, you'll need to have a text editor and a web browser installed on your local machine.
2. Install a code editor such as Visual Studio Code.
- To install Visual Studio Code, follow the instructions on the [official website](https://code.visualstudio.com/Download).
## Usage
1. To use the projects in this repository, simply clone the repository to your local machine using the following command:
`git clone https://github.com/aamirxshaikh/30-days-of-js`
2. After you've cloned the repository to your local machine, you can either open the project directory in your preferred IDE or use a text editor to edit the code.
3. Each day's project is contained in a separate folder, so to run a particular day's project, navigate to that day's folder and open the `index.html` file in your web browser.
4. In addition to the browser, you can also use the Quokka extension to quickly run and debug JavaScript code directly in the editor. With Quokka, you can see the output of your code in real-time and easily experiment with different inputs and outputs.
## Contributing
Feel free to contribute to this repository by adding your own custom challenges or improving the existing ones. Simply fork the repository, make your changes, and create a pull request. I'll be happy to review and merge your changes.
## License
This repository is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
| This repository contains 30 Days of JavaScript challenges and exercises, covering a wide range of topics such as variables, data types, loops, functions, classes, and more. Each challenge is designed to improve your coding skills and knowledge of the language, and is accompanied by code examples and explanations. | javascript | 2023-02-10T16:22:19Z | 2023-07-22T12:24:58Z | null | 1 | 29 | 161 | 0 | 1 | 11 | null | null | JavaScript |
ekkolon/gelato-admin-node | main | # Gelato Node.js SDK
A lightweight Node.js SDK to seamlessly integrate [Gelato](https://dashboard.gelato.com/docs/)'s powerful print-on-demand services into your Node applications.
## Table of Contents
- [Features](#features)
- [Getting Started](#getting-started)
- [Usage](#usage)
- [Using API services](#using-api-services)
- [Running tests](#running-tests)
- [License](#license)
- [Authors](#authors)
- [Disclaimer](#disclaimer)
## Features
- :page_facing_up: Simple and intuitive API
- :sparkles: Query and mutate data from different Gelato accounts
- :deciduous_tree: Tree-shakable - only use and compile services you need
- :shield: Battle-tested
## Getting Started
### Prerequisites
Before you can use this library, you must complete the following steps:
1. [Create a Gelato Account](https://gelato.com)
2. [Generate an API Key](https://dashboard.gelato.com/keys/manage)
### Installation
```bash
# npm
npm install gelato-admin
# yarn
yarn add gelato-admin
```
## Usage
Every API service is tied to a `GelatoClient` instance, whose sole purpose is to handle the request/response life-cycle when querying and mutating your Gelato data.
There are two ways to initialize a `GelatoClient`:
### 1. Using an environment variable (recommended)
See [.env.example](./.env.example).
```bash
# .env
GELATO_API_KEY=my-api-key
```
```ts
import { initializeClient } from 'gelato-admin';
// Auto-detect API key from `.env` file
const client = initializeClient();
// The above snippet is a short-hand equivalent for:
const client = initializeClient({ apiKey: process.env.GELATO_API_KEY });
```
### 2. Setting API key explicitly
> Useful for on-demand client initialization. Required for _named_ clients.
```ts
import { initializeClient } from 'gelato-admin';
const client = initializeClient({ apiKey: 'my-api-key' });
```
### Using named clients
> Note: The usage of named clients _is not_ a native Gelato API feature. It is a design decision based on the idea that you may have different Gelato accounts you want to use within the same application context.
You may initialize as many client instances as you like, provided you initialize them with a unique name. If you only have a single Gelato account, however, there is no need to use named clients at all.
To initialize a _named_ client, pass an unique name as the second argument.
```ts
import { initializeClient } from 'gelato-admin';
// Auto-detect API key from `.env` file, but use a specific name for the client instance.
const myDefaultNamedClient = initializeClient({}, 'my-named-client');
// Use another Gelato account API key
const myOtherClient = initializeClient({ apiKey: 'other-account-api-key' }, 'other-account-client');
```
### Accessing client instances
```ts
import { getClient } from 'gelato-admin';
// Get the default client
const defaultClient = getClient();
// Get a named client
const myNamedClient = getClient('my-named-client');
```
## Using API services
Here is an overview of Gelato API services available in this library.
| Name | Module | Service |
| ------------- | ------------------------ | ------------------- |
| **Orders** | `gelato-admin/orders` | `getOrdersAPI()` |
| **Products** | `gelato-admin/products` | `getProductsAPI()` |
| **Shipment** | `gelato-admin/shipment` | `getShipmentAPI()` |
| **Ecommerce** | `gelato-admin/ecommerce` | `getEcommerceAPI()` |
### Default client
```ts
import { getProductsAPI } from 'gelato-admin/products';
// Get the products API service from the default client.
const productsAPI = getProductsAPI();
// Get a list of all catalogs
const catalogs = await productsAPI.getCatalogs();
```
### Named client
To target a _named_ client, pass the client instance as the first argument to the desired API service function:
```ts
import { initializeClient } from 'gelato-admin';
import { getOrdersAPI } from 'gelato-admin/orders';
// Initialize a named client with the API key from the environment variable
const mySpecialClient = initializeClient({ apiKey: 'my-other-api-key' }, 'my-special-client');
// Get the products API service using the named client.
const ordersAPI = getOrdersAPI(mySpecialClient);
// Get a list of all orders
const orders = await ordersAPI.getOrders();
```
## Running tests
### Unit tests
```bash
yarn run test
```
### E2E tests
```bash
yarn run test:e2e
```
E2E tests only create draft orders. In case E2E tests fail, make sure to check your Gelato dashboard for whether any orders other than `draft orders` were created. If so, you must delete them manually.
## License
This project is licensed under the Apache License (2.0) - see the [LICENSE](LICENSE) file for more details.
## Authors
- [Nelson Dominguez](https://www.github.com/ekkolon)
## Disclaimer
Please note that this is **_not_ an official Gelato product**. I am in no way affiliated with Gelato. However, I started this library to make it easier for developers to work with Gelato's powerful print-on-demand platform.
> You bear complete responsibility for your utilization of this library. See [LICENSE](/LICENSE) file for more information.
| Node.js API for Gelato's print-on-demand services. | gelato,javascript,nodejs,typescript,gelato-api,print-on-demand,api,api-client | 2023-02-22T18:27:34Z | 2024-02-20T16:03:33Z | 2024-02-20T16:03:33Z | 1 | 44 | 178 | 0 | 3 | 11 | null | Apache-2.0 | TypeScript |
Muhammad0602/To-Do-list | main | # To Do list
<a name="readme-top"></a>
<div align="center">
<h3><b> My To Do list README</b></h3>
</div>
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Usage](#usage)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [📝 License](#license)
# 📖 To Do list <a name="about-project"></a>
This is a To Do list project, where you can add, remove, mark as read your daily tasks. It was build with JavaScript.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>Client</summary>
<ul>
<li><a href="https://reactjs.org/">HTML</a></li>
<li><a href="https://reactjs.org/">JavaScript</a></li>
</ul>
</details>
### Key Features <a name="key-features"></a>
- Easy to use.
- Responsive.
- Time tracking.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🚀 Live Demo <a name="live-demo"></a>
- [check live version](https://muhammad0602.github.io/To-Do-list/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 💻 Getting Started <a name="getting-started"></a>
To get a local copy up and running, follow these steps.
### Prerequisites
In order to run this project you need:
-Install Git
-Install NPM
-Install a code editor
### Setup
Clone this repository to your desired folder:
git clone github.com/Muhammad0602/Portfolio-mobile-first.git
### Usage
To run the project, execute the following command:
open the project by launching the Live Server plugging in visual studio code(or your code editor)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 👥 Authors <a name="authors"></a>
👤 **Muhammad Davlatov**
- GitHub: [Muhammad0602](https://github.com/Muhammad0602)
- Twitter: [Muhammad Davlatov](https://twitter.com/MuhammadDavla20)
- LinkedIn: [Muhammad Davlatov](https://www.linkedin.com/in/muhammad-davlatov-6a8536254/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
- I am working to add some interactions.
- I am working to make it responsive, so it works on any screensize.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🤝 Contributing <a name="contributing"></a>
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](../../issues/).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ⭐️ Show your support <a name="support"></a>
If you like this project leave it a star.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank everyone who helped me to finish this project, without whom it would be very difficult.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 📝 License <a name="license"></a>
This project is [MIT](./LICENSE) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| A simple to-do list project built with JavaScript. You can add, remove, and edit your daily tasks. You can also mark as done the tasks you completed. | javascript,css3,html5 | 2023-02-21T19:40:45Z | 2023-03-06T22:31:24Z | null | 2 | 4 | 35 | 2 | 0 | 11 | null | MIT | JavaScript |
Mr-Soni532/Edito-Code-Editor | main | # EDITO 👨🏻💻
<br/>
<p align="center">
<img src="https://edito-code-editor.vercel.app/images/main.png.png" alt="Ace Logo">
</p>
<br/>
## 🏷️ What is Edito?
Edito is an online code editor that provides coders with a collaborative workspace to showcase and test their HTML, CSS, and JS code snippets while working in a collaborative environment. With Edito, coders can create new projects and share their room ID with other coders to join them, so they can all work together on the same code.
---
<br/>
## 🏷️ Special Features :-
- __Code Execution__ - Manual | Automatic
- __Save Code__ - Manual | Automatic
- __Themes__ - 25+ themes to work with
- __Layouts__ - 3 Different Layout to work on
- __Collaborate with team members__ in real-time
- __Real-time preview__ of HTML, CSS, and JS code
- __Active user details__ in the side user pannel
- __Tolerate Inactivity__ for 7 days on workspace
---
<br/>
## 🏷️ Tech Stack Used :-
> ## Frontend
- HTML5
- CSS3
- JavaScript
> ## Backend
- Node.js
- Express.js
- Socket.io
- MongoDb
<br/>
## Contributing
> If you would like to contribute to Edito, please fork the repository and submit a pull request. We welcome all contributions, big or small!
## <br/>
---
## Edito WorkSpace

<br/>
<br/>
## Layouts



---
## More Project Details :-
- Type : Group Project
- Total Members who contributed - 4
- <a style="color:#ffd41f" href="https://www.linkedin.com/in/bhupender-soni/">Bhupender Soni</a>
- <a style="color:#ffd41f" href="https://github.com/themanvendra00">Manvendra Singh</a>
- <a style="color:#ffd41f" href="https://github.com/mujaheed13">Mohammad Mujaheed</a>
- <a style="color:#ffd41f" href="https://github.com/anonymous10062002">Ashish Pal</a>
---
<br/>
<h3 align="center" >Thankyou for your Time 💝</h3>
| Edito is an online platform, which provides collabrative workspace for coders where they can test and showcase their HTML, CSS and JavaScript code snipets. | css,html,bootstrap,codemirror-editor,expressjs,javascript,nodejs,socket-io,mongodb,editor | 2023-02-18T09:17:07Z | 2023-05-15T12:53:17Z | null | 5 | 46 | 169 | 0 | 2 | 11 | null | null | JavaScript |
ji4ozhu/Auto.js4.1.1 | main | Auto.js 4.1.1 原版 代码仓库克隆收藏研究.
适配来喜群控
https://www.laixi.app
原作者代码仓库:
https://github.com/hyb1996
官网: https://pro.autojs.org
官方文档: https://pro.autojs.org/docs
官方博客: https://blog.autojs.org
基于Mozilla Public License Version 2.0 并附加以下条款:
非商业性使用 — 不得将此项目及其衍生的项目的源代码和二进制产品用于任何商业和盈利用途
| Auto.js 4.1.1 原代码仓库克隆收藏研究 | android,autojs,automation,javascript,javascript-ide,nodejs,tasker,uiautomator,workflow | 2023-02-16T12:49:37Z | 2023-02-16T13:08:34Z | null | 1 | 0 | 6 | 0 | 28 | 11 | null | null | null |
shubhambhoyar077/to-do-list | main | <a name="readme-top"></a>
<div align="center">
<h1><b>To Do List</b></h1>
</div>
<!-- TABLE OF CONTENTS -->
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#triangular_flag_on_post-deployment)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [❓ FAQ (OPTIONAL)](#faq)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
# 📖 [To Do List] <a name="about-project"></a>
**[To Do List]** is created using html, css, js and webpack.
## 🛠 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>N/A</li>
</ul>
</details>
<details>
<summary>Database</summary>
<ul>
<li>N/A</li>
</ul>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **[Simple Design]**
- **[Support all device size]**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LIVE DEMO -->
## 🚀 Live Demo <a name="live-demo"></a>
- [Live Demo](https://shubhambhoyar077.github.io/to-do-list/dist/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- GETTING STARTED -->
## 💻 Getting Started <a name="getting-started"></a>
To get a local copy up and running, follow these steps.
### Prerequisites
In order to run this project you need: any web-browser.
### Setup
Clone this [repository](https://github.com/shubhambhoyar077/to-do-list) to your desired folder.
### Install
This project does not require installation.
### Usage
**To run the project follow the following instruction:-**
- Clone this [repository](https://github.com/shubhambhoyar077/to-do-list) in your local machine with correct branch.
- Terminal:- **npm run build** it will create **dist** folder. In that folder you have open index.html in any browser.
- **or** Terminal:- **npm start** it will run on port 8080.
### Run tests
To run tests, open index.html in any web browser.
### Deployment
You can deploy this project using: Project is incomplete.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 **Shubham Bhoyar**
- GitHub: [@shubhambhoyar077](https://github.com/shubhambhoyar077)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- [ ] **[Support any device resolution]**
- [ ] **[CRUD functionality]**
- [ ] **[Complete task check]**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- CONTRIBUTING -->
## 🤝 Contributing <a name="contributing"></a>
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](../../issues/).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- SUPPORT -->
## ⭐️ Show your support <a name="support"></a>
If you like this project give a ⭐️.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank Microverse.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FAQ (optional) -->
## ❓ FAQ (OPTIONAL) <a name="faq"></a>
- **[Can I use this project for my website?]**
- [It's MIT license, feel free to use as you like.]
<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> | Simple ToDo list to keep track of your daily tasks | css,html,javascript | 2023-02-21T08:33:57Z | 2023-03-01T12:00:46Z | null | 2 | 5 | 83 | 3 | 0 | 11 | null | MIT | HTML |
anita00001/My-awesome-book | master | <a name="readme-top"></a>
<!-- TABLE OF CONTENTS -->
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#triangular_flag_on_post-deployment)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
# 📖 My Awesome Book <a name="about-project"></a>
> **My Awesome Book** is a website that allows a user to add their favourite book and display them in a table. It also allows user to remove the desired book.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
> This project is built using <br> HTML, <br> CSS and <br> JavaScript.
<details>
<summary>HTML</summary>
<ul>
<li><a href="https://html.com/#What_is_HTML">index.html</a></li>
</ul>
</details>
<details>
<summary>CSS</summary>
<ul>
<li><a href="https://html.com/css/#What_is_CSS">style.css</a></li>
</ul>
</details>
<details>
<summary>Javascript</summary>
<ul>
<li><a href="https://www.javascripttutorial.net/javascript-dom/document-object-model-in-javascript/">script.js</a></li>
</ul>
</details>
<br>
<!-- Features -->
### Key Features <a name="key-features"></a>
> - **No linter errors** <br>
> - **Use of correct GitHub flow**
> - **Documented in a professional way**
> - **Follow best practices for HTML, CSS and Javascript**
<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://anita00001.github.io/My-awesome-book/)
<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:
> - **Visual Studio Code**
> - **Git Bash**
### Setup
> Clone this repository to your desired folder:<br>
> - <code>cd your-folder</code><br>
> - <code>git clone https://github.com/anita00001/Awesome-Book</code>
### Install
> Installation dependency for linters check
### Usage
> Run the project on Visual Studio Code Live Server.
### Run tests
> Not Available for this project.
### Deployment
> You can deploy this project using:
> - GitHub Pages
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
> 👤 **Anita Sharma**
> - GitHub: [@anita00001](https://github.com/anita00001)
> - Twitter: [@anitaa_sharmaa](https://twitter.com/anitaa_sharmaa)
> - LinkedIn: [anitaa-sharmaa](https://www.linkedin.com/in/anitaa-sharmaa/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
> Build a history page to display all added books.
<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! <br>
> Feel free to check the [issues page](https://github.com/anita00001/My-awesome-book/issues).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- SUPPORT -->
## ⭐️ Show your support <a name="support"></a>
> If you like this project feel comfortable to endorse the authors. Give a star in github repository.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
> We would like to thank my coding partners, mentors and Microverse for their support in building the project.
<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>
| The book managing app allows users to add entries for a book using the title and author name, reject duplicate entries, and delete books. Built with HTML, CSS and JavaScript. | css3,html,javascript,javascript-modules | 2023-02-20T14:39:04Z | 2023-03-18T08:42:25Z | null | 1 | 1 | 20 | 1 | 1 | 11 | null | null | JavaScript |
analyticsinmotion/chatgpt-sentiment-analysis-in-excel | main | # Sentiment Analysis in Excel using ChatGPT
Discover awesome ChatGPT features you can use in Excel
<br /><br />
<!-- badges: start -->

[](https://nodejs.org/en/)



[](https://chat.openai.com)
[](https://github.com/analyticsinmotion/chatgpt-sentiment-analysis-in-excel/blob/main/LICENSE.md)

[](https://github.com/analyticsinmotion/chatgpt-sentiment-analysis-in-excel/actions/workflows/webpack.yml)
[](https://github.com/analyticsinmotion/chatgpt-sentiment-analysis-in-excel/actions/workflows/codeql.yml)
[](https://openai.com)
[](https://www.analyticsinmotion.com)
<!-- badges: end -->
<!-- DESCRIPTION -->
## 1. Description
With an Excel Custom Function Add-in you can make direct calls to ChatGPT for NLP capabilities such as text Moderation and Sentiment Analysis. Results from ChatGPT will be returned to your worksheet almost instantly.
<br /><br />
https://user-images.githubusercontent.com/52817125/221394461-92dd3f83-5d41-4f32-9f48-3d701f523b2e.mp4
<br />
<!-- GETTING STARTED -->
## 2. Getting Started
### 2.1 Dependencies
- Requires an OpenAI API Key (create an account and get API Key at <a href="https://chat.openai.com">https://chat.openai.com</a>)
- Requires Microsoft Excel (<a href="https://www.microsoft.com/en-us">https://www.microsoft.com/en-us</a>)
- Requires Node.js (>= 18.14.2 LTS) (<a href="https://nodejs.org/en/">https://nodejs.org/en/</a>)
- Requires NPM (>= 9.5.0) (<a href="https://www.npmjs.com">https://www.npmjs.com</a>)
- Requires dotenv-webpack (<a href="https://www.npmjs.com/package/dotenv-webpack">https://www.npmjs.com/package/dotenv-webpack</a>)
- Requires Yo Office generator (<a href="https://github.com/OfficeDev/generator-office">https://github.com/OfficeDev/generator-office</a>)
Please be aware of the [costs](https://openai.com/pricing) associated with using the OpenAI API when utilizing this project.
### 2.2 Editing, Debugging and Testing
- Visual Studio Code (<a href="https://code.visualstudio.com/">https://code.visualstudio.com/</a>)
- NPM Intellisense Extension (RECOMMENDED)
- Microsoft Edge Tools for VS Code Extension (RECOMMENDED)
### 2.3 Directory Structure
This repository contains the architecture and source code used by the Yeoman generator for Office Add-ins (Yo Office generator). The generator creates the scaffolding of files for a variety of Office Add-in projects. Listed below are the main directories/files that were added or edited for this project.
.
├── assets
├── src
│ ├── functions
│ │ └── functions.js
│ └── taskpane
│ │ ├── taskpane.css
│ │ └── taskpane.html
├── .env
├── manifest.xml
├── tsconfig.json
└── webpack.config.js
<br />
<!-- INSTRUCTIONS -->
## 3. Instructions
This Excel Custom Function provides two formulas that can be applied to text data - *Moderation* and *Sentiment*.<br />
<br />
To utilize these formulas simply type ```=chatgpt``` in the formula bar and the predictive formula dropdown should appear. You can either continue to type the formula or select one of the dropdown options.
<br />
<img src=".github/assets/images/aim-custom-function-chatgpt-excel-formulas.png" width=100% height=100%>
### 3.1 MODERATION Check Formula
Valid Moderation Input include:
Direct Cell References
```
=CHATGPT.MODERATION(A2)
```
Entering text directly. Please ensure any text is enclosed in double quotation marks.
```
=CHATGPT.MODERATION("Any text you want to be checked")
```
Valid Moderation Responses include:
- Passed
- Failed
- Blank
### 3.2 SENTIMENT Classifier Formula
Valid Sentiment Input include:
```
=CHATGPT.SENTIMENT(A2)
=CHATGPT.SENTIMENT("Any text you want to find the sentiment for")
```
Valid Sentiment Responses include:
- Positive
- Negative
- Neutral
- Blank
<br />
To apply the Sentiment Classifier only on text that has passed moderation you can apply a formula similar to this:
```
=IF(B2="Failed","",CHATGPT.SENTIMENT(A2))
```
### 3.3 Open Task Pane
To open the task pane and read more information about this custom function:
- Click the ribbon tab **AI Copilot**
- Select **NLP Functions**
The taks pane will open in the right-hand side of the workbook with the title **NLP Functions with ChatGPT**
<br /><br />
<img src=".github/assets/images/aim-custom-function-chatgpt-excel-opening-the task-pane.png" width=100% height=100%>
<br />
<!-- Installation -->
## 4. Installation
### 4.1 Install Node.js
- Download and install Node.js
### 4.2 Install YO OFFICE - Yeoman generator for Office Add-ins
- Install yo generator office at the Command Line.
Please ensure the command prompt has been opened with administrative priviledges
``` npm install -g yo generator-office```
### 4.3 Run YO OFFICE
- Change directory to the location where the project will be built
```
cd C:\path where project will be built
```
- Run yo office
```
yo office
```
<img src=".github/assets/images/aim-custom-function-chatgpt-run-yo-office.png" width=100% height=100%>
- Enter the following settings:
- **Choose a project type:** `Excel Custom Functions using a Shared Runtime`
- **Choose a script type:** `JavaScript`
- **What do you want to name your add-in?** `ChatGPT`
The Yeoman generator will create the project files and install supporting Node components.
<img src=".github/assets/images/aim-custom-function-chatgpt-yo-office-add-in-created.png" width=100% height=100%>
- Navigate to the root folder of the project (which is the name of your add-in)
```
cd ChatGPT
```
- Build the project
```
npm start
```
### 4.4 Install dotenv-webpack
Enter the following command to instal dotenv-webpack
```
npm install dotenv-webpack --save-dev
```
For further information about installing and configuring dotenv-webpack please read the following: <a href="https://github.com/mrsteele/dotenv-webpack/blob/master/README.md">https://github.com/mrsteele/dotenv-webpack/blob/master/README.md</a>
<br />
### 4.5 Add .env file into your project
- Copy the .env file from this repository and add it into the project root folder
- Open the .env file (in VS Code or any text editor) and replace the dummy API Key with your OpenAI API Key.
### 4.6 Open the manifest.xml file in your project
- Copy the ID tag. This is a unique identifier for each manifest file and should not be the same for any project
```
<Id>5qr6d5g8-76yt-4b8z-97jh-83577524e6e1</Id>
```
- Download the manifest.xml file from this repository. Replace the ID tag in that file with the one copied from your project.
### 4.7 Download the remaining directories/files in this repostory
- Please Note: This repository contains almost all the files from the Yeoman generator. Many of these files you will not need to edit and can be left alone. The files that willl need to be replaced or edited are specified in the directory structure in Section 2.3 above.
### 4.8 Validate the manifest.xml file
- To ensure that your XML file is correct and complete after editing please run the Office Add-in Validator. This will allow you to identify and fix any potential issues with the manifest.xml file
```
npm run validate
```
<img src=".github/assets/images/aim-custom-function-chatgpt-manifest-validation-check.png" width=100% height=100%>
<br />
<!-- OpenAI API Rate Limits -->
## 5. OpenAI API Rate Limits
A rate limit is a restriction that an API imposes on the number of times a user or client can access the server within a specified period of time.
Rate limits are a common practice for APIs, and they're put in place to help protect against abuse or misuse, help manage the aggregate load on infrastructure, and ensure that everyone has fair access.
To see the latest API rate limits per user tier please read the following: <a href="https://platform.openai.com/docs/guides/rate-limits/overview">https://platform.openai.com/docs/guides/rate-limits/overview</a>
Each cell in Excel where the CHATGPT.SENTIMENT formula is executed should be considered and counted as a single Request.
<br />
<!-- Best Practices for API Key Safety -->
## 6. Best Practices for API Key Safety
Your OpenAI APIKEY key/s should be kept secure and private at all times.
Please follow the best practices guide for API security from OpenAI
<br />
<a href="https://help.openai.com/en/articles/5112595-best-practices-for-api-key-safety">https://help.openai.com/en/articles/5112595-best-practices-for-api-key-safety</a>
| Discover NLP features powered by ChatGPT you can use in Excel | chatgpt,chatgpt-moderation,excel,microsoft-excel,nlp,nlp-machine-learning,nlp-sentiment-classifier,natural-language-processing,chatgpt-nlp,chatgpt-sentiment-analysis | 2023-02-24T05:46:06Z | 2024-02-21T03:00:56Z | null | 1 | 9 | 76 | 0 | 3 | 10 | null | MIT | JavaScript |
oliviagallucci/delete-twitter-likes | main | 
<div align="center">
# delete-twitter-likes
Bulk delete Tweets you have liked on Twitter! :bird:
<a href="https://twitter.com/OliviaGalluccii"></a>
<a href="https://github.com/oliviagallucci/delete-twitter-likes/blob/main/LICENSE.md">
<a href="https://www.javascript.com/"></a>
<a href="https://github.com/sponsors/oliviagallucci"></a>
</div>
## Usage

### Steps
1. Open a browser of your choice. I used [Brave](https://brave.com/).
2. [Login](https://twitter.com/login?lang=en) to Twitter
3. Navigate to your likes page: https://twitter.com/your_username/likes
4. Right-click anywhere on the page an hit `Inspect` or `Inspect Element`.
5. Navigate to the console
6. Paste the [JavaScript](https://github.com/oliviagallucci/delete-twitter-likes#default-script-usage) into the console and hit the `enter` key on your keyboard.
7. Watch the script unlike posts
8. Refresh your browser when you want to quit the script
## Warning
It's worth noting that automating actions like this on social media platforms can be against their terms of service, and may result in account suspension or other consequences.
Be careful!
## Default script usage
```JavaScript
setInterval(() => {
window.scrollTo(0, window.pageYOffset+300);
document.querySelectorAll('div[data-testid="unlike"]')[0].click();
}, 2000);
```
### Explanation
This code uses JavaScript to automate the process of unliking posts on a web page. It sets up a function that uses the `setInterval()` method to execute code repeatedly every 2000 milliseconds (or two seconds). Someone reported that waiting longer intervals--in this case, two seconds--decreases rate limiting by Twitter's API.
Within the `setInterval()`, the program selects all the `div` elements with the `data-testid` attribute set to "unlike" using the `document.querySelectorAll()` method. It then clicks on the first element it finds using the `click()` method.
After that, it scrolls the page down by 300 pixels using the `window.scrollTo()` method. This is done to make sure that more posts are loaded and available for unliking.
The code is meant to be executed in the browser console, and it assumes that the page being viewed has a "unlike" button for each post, as well as a scrollbar that can be scrolled down.
## Modifications
### Specify year
Here's an updated version of the JavaScript code that removes only the liked posts that were liked after 2020:
```JavaScript
setInterval(() => {
// scroll down the page to load more posts
window.scrollTo(0, window.pageYOffset+300);
// get all the like buttons in an array
let likeButtons = Array.from(document.querySelectorAll('div[data-testid="unlike"]'));
// filter the like buttons that were liked after [year]
let recentLikeButtons = likeButtons.filter(button => {
let likeDate = new Date(button.closest('div').querySelector('abbr').getAttribute('title'));
//
// == removes tweets on [year]
// MODIFY >= >= removes tweets before [year]
// <= removes tweets after [year]
//
return likeDate.getFullYear() >= 2020;
});
// click on the first recent like button found
if (recentLikeButtons.length > 0) {
recentLikeButtons[0].click();
}
}, 2000);
```
This code works similarly to the original, but it now includes a filtering step that only keeps the like buttons that were liked after 2020. It does this by first selecting all the like buttons on the page using `querySelectorAll()`, and then using the `filter()` method to keep only the ones whose like date is after 2020.
The date of each like is obtained by finding the `title` attribute of the nearest `abbr` element to the like button, and creating a new `Date` object from it. Then, we compare the year of the date to 2020 and return a boolean value that indicates whether the like is recent or not.
The code then proceeds to click on the first recent like button found, and scrolls down the page to load more posts as before.
### Date
```JavaScript
setInterval(() => {
// scroll down the page to load more posts
window.scrollTo(0, window.pageYOffset+300);
// get all the like buttons in an array
let likeButtons = Array.from(document.querySelectorAll('div[data-testid="unlike"]'));
// filter the like buttons that were liked after [date]
let recentLikeButtons = likeButtons.filter(button => {
let likeDate = new Date(button.closest('div').querySelector('abbr').getAttribute('title'));
//
//
// MODIFY DATE
//
//
let cutoffDate = new Date('February 2, 2020');
//
// == removes tweets on [date]
// MODIFY >= >= removes tweets before [date]
// <= removes tweets after [date]
//
return likeDate.getTime() >= cutoffDate.getTime();
});
// click on the first recent like button found
if (recentLikeButtons.length > 0) {
recentLikeButtons[0].click();
}
}, 2000);
```
This code is similar to the previous modification, but it includes a new filtering step that only keeps the like buttons that were liked after `February 2nd, 2020`.
This is done by creating a `Date` object for the cutoff date, which is `February 2nd, 2020`, and then comparing it to the like date for each like button using the `getTime()` method. Only the like buttons whose like date is after the cutoff date will be kept.
The rest of the code is the same as before, where the first recent like button found is clicked, and the page is scrolled down to load more posts.
## Releases
Beta 1.0
## Authors
* [Olivia Gallucci](https://github.com/oliviagallucci) - code author
* See also the list of [contributors](https://github.com/oliviagallucci/delete-twitter-likes) who participated in this project.
## Warranty
The author of this tool offers no warranty or guarantee for its performance, reliability, or suitability for any particular purpose.
The tool is provided "as is" without warranty of any kind, either express or implied, including but not limited to the implied warranties of merchantability, fitness for a particular purpose, or non-infringement.
Use of this tool is entirely at the user's own risk. The author does not accept any liability for any loss, damage or expense incurred by the user or any third party resulting from the use of this tool, whether direct or indirect.
Furthermore, the author expressly disclaims any responsibility or liability for the accuracy, content, or availability of information found through the use of this tool, or for any harm caused by viruses, malware, or other harmful components that may be introduced into your system as a result of using this tool.
By using this tool, the user acknowledges that they have read this warranty statement and agree to assume all risks associated with its use.
## License
This project is licensed under the General Public License version 3.0 - see the [LICENSE.md](LICENSE.md) file for details
| Bulk delete Tweets you have liked on Twitter! | twitter,twitter-api,javascript,brave,chrome,firefox | 2023-02-18T01:17:52Z | 2023-08-14T03:36:34Z | 2023-02-19T15:42:58Z | 2 | 2 | 27 | 1 | 1 | 10 | null | GPL-3.0 | JavaScript |
webdevnerdstuff/vuetify3-resize-drawer | main |
<p align="center">
<img alt="Vuetify Logo" width="100" src="https://raw.githubusercontent.com/webdevnerdstuff/vuetify3-resize-drawer/main/src/assets/vuetify-logo.svg">
</p>
<p>
<h1 align="center">Vuetify 3 Resize Drawer (Depreciated)</h1>
</p>
<p align="center">
<a href="https://www.npmjs.com/package/@wdns/vuetify-resize-drawer">
<img src="https://img.shields.io/npm/v/@wdns/vuetify-resize-drawer?color=1867c0&logo=npm" alt="NPM Package">
</a>
<a href="https://github.com/webdevnerdstuff/vuetify3-resize-drawer">
<img src="https://img.shields.io/badge/GitHub-WebDevNerdStuff-brightgreen.svg?logo=github" alt="@WebDevNerdStuff">
</a>
</p>
## Important Information
This repository and npm package has been depreciated and moved to the WebDevNerdStuff org @wdns.
You can find the new repository here:
[https://github.com/webdevnerdstuff/vuetify-resize-drawer](https://github.com/webdevnerdstuff/vuetify-resize-drawer)
You can find the new NPM package here:
[https://www.npmjs.com/package/@wdns/vuetify-resize-drawer](https://www.npmjs.com/package/@wdns/vuetify-resize-drawer)
## Description
The `vuetify-resize-drawer` component extends the functionality of the [v-navigation-drawer](https://vuetifyjs.com/en/components/navigation-drawers/) so that it is resizable by the user.
## Change Log
[CHANGELOG](https://github.com/webdevnerdstuff/vuetify3-resize-drawer/blob/master/CHANGELOG.md)
## License
Copyright (c) 2023 WebDevNerdStuff
Licensed under the [MIT license](https://github.com/webdevnerdstuff/vuetify3-resize-drawer/blob/master/LICENSE.md).
## Legal
Vuetify and the Vuetify logo are trademarks of Vuetify. This component was not created or endorsed by Vuetify.
| The vuetify3-resize-drawer component extends the functionality of the v-navigation-drawer so that it is resizable by the user. | component,javascript,typescript,vue,vuetify3 | 2023-02-12T03:04:33Z | 2023-11-10T19:42:13Z | 2023-08-25T00:13:06Z | 1 | 28 | 255 | 0 | 1 | 10 | null | MIT | TypeScript |
bbkx226/terminalWebsite | main | <h1 align="center">Terminal Website</h1>
<img src="./about/terminal.png">
Welcome to my personal terminal website! This website is built with simple HTML, CSS, and JavaScript, and it is intended to introduce myself briefly.
<br/>
You can access the website by clicking [here](https://bbkxterminal.web.app/).
## Getting Started
To access this website, simply click on the link provided above. Once you land on the page, you will see a terminal interface where you can interact with the website.
You can type `help` to see a list of available commands.
## Features
- Simple terminal interface
- Interactive commands
- Responsive design
- Easy to navigate
## Commands
Here is a list of available commands:
- `whois`: Displays a brief introduction about me
- `bbkx`: Opens a new tab with my portfolio website
- `projects`: View Coding Projects
- `social`: Display Social Networks
- `history`: View command history
- `help`: Display a list of available commands
- `email`: Contact me via Email
- `clear`: Clear terminal
- `banner`: Display the header shown above
- `LinkedIn`: Contact me via LinkedIn
- `GitHub`: Discover more projects on my GitHub profile
- `Facebook`: Contact me via Facebook
- `Instagram`: Contact me via Instagram
- `bmttuxd`: Unveil the obscurity that lies within me
## Contributions
If you find any issues or have suggestions for improving this website, feel free to open an issue or create a pull request on the [GitHub repository](https://github.com/bbkx226/terminalWebsite.git).
## Author
This website was created by Brandon Ban. You can learn more about me by typing `whois` in the terminal or by visiting my [GitHub profile](https://github.com/bbkx226).
## License
This project is licensed under the [MIT License](https://opensource.org/license/mit/) - see the LICENSE file for details.
| 💻 This is my personal website, designed to be viewed through the terminal. It provides an introduction to myself and my work in a simplified format. | css,html,javascript,linux-terminal | 2023-02-18T13:22:04Z | 2023-09-12T14:05:59Z | null | 1 | 1 | 17 | 0 | 1 | 10 | null | MIT | JavaScript |
teamjotted/jotted | main | 
# jotted
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
Our community is on a mission to turn the internet into an accessible, online university by curating the best digital resources already on the web into structured learning pathways (or courses).
join the discord: https://t.co/KiLrqHuLEr
visit our landing page: https://jotted.club/
## Getting Started
First, run the development server:
```bash
npm install
npm run dev
# or
yarn dev
# or
pnpm dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file.
[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.js`.
The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.
However most our our api work is done in the `/utils/api.js`
This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
## Learn More About Nextjs Framework
To learn more about Next.js, take a look at the following resources:
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
## Contributions
We handle our codebase and all changes through Github, so make a fork and a pull request if you want to contribute code. Below are the steps to making a proper contribution:
1. Fork the repo and create your branch from master.
1. If you've added code that should be tested, add tests.
1. If you've changed APIs, update the documentation.
1. Do testing on the code to ensure you haven't introduced breaking changes
1. Make sure your code lints.
1. Issue that pull request!
[Read More](https://github.com/teamjotted/jotted/blob/78b6791dcc7742d1cf6cc448c9452b566b5541a2/CONTRIBUTING.md)
## Fundamental Principles
1. Separation of Concerns: This principle states that each component in an application should be built independently and be responsible for a single purpose. This makes it easier to debug and maintain the codebase since each component can be tested separately.
2. Modularity: Modularity is the idea of breaking down an application into smaller, reusable components. This helps reduce code duplication and makes it easier to extend applications.
3. Performance: Performance is an important part of any web application. By using Next.js, developers can take advantage of features such as server-side rendering, code splitting, and lazy loading to ensure that the application is running as efficiently as possible.
4. Security: Security is always a top priority when developing web applications. Next.js provides features such as secure cookies, authentication strategies, and authorization schemes to ensure that your application is secure.
5. Scalability: Scalability is the ability of an application to handle increasing amounts of load. Next.js provides features such as server-side rendering, code splitting, and lazy loading to ensure that your application can scale seamlessly.
| jotted is an open source micro-learning community for curators and educators | javascript,education,ai,marketplace | 2023-02-15T14:56:11Z | 2023-08-12T16:02:15Z | null | 4 | 63 | 202 | 16 | 0 | 10 | null | GPL-3.0 | JavaScript |
Uri6/Genius-Enhancer | main | <div align="center">
<hr>
<p><img src="https://i.ibb.co/qmK7XS2/transp-Github.png" style="transform: scale(0.8);"></p>
<img src="https://img.shields.io/chrome-web-store/v/hnkhjljomklfcnfnbbikoddbolmpaifl?color=ffff65&label=Released%20Version&logo=Google%20Chrome&logoColor=white" alt="Released Version" style="max-width: 100%;">
<img src="https://img.shields.io/chrome-web-store/rating/hnkhjljomklfcnfnbbikoddbolmpaifl?label=Chrome%20Web%20Store%20Rating" alt="Chrome Web Store Rating" style="max-width: 100%;">
<a href="https://chrome.google.com/webstore/detail/hnkhjljomklfcnfnbbikoddbolmpaifl"><img src="https://badgen.net/badge/Download/%F0%9F%91%80/" alt="Download" style="max-width: 100%;"></a>
</div>
##
A Chrome extension featuring automation tools, productivity enhancements, and a modern style for Genius.com.
<hr>
## Features
- Streamline your workflow with automation tools such as:
- Effortlessly adding credits & tags to each song in an album
- Autofilling Youtube/SoundCloud links with a single playlist link
- Instantly linking artwork with the auto-link artwork button
- Edit with ease using productivity enhancements like:
- Color-coded brackets in the lyrics edit page
- One-click reply button for suggestions
- Alerts for missing bios & important metadata for each song on an album page
- A fresh, modern look and feel for Genius.com
## Installation
1. Download the extension from the [chrome web store](https://chrome.google.com/webstore/detail/hnkhjljomklfcnfnbbikoddbolmpaifl)
or
1. Clone the repository
```
git clone https://github.com/Uri6/Genius-Enhancer.git
```
2. Compile the scss files
3. Add your own API keys to the secrets.example.js file and rename it to secrets.js
4. Load the extension in Chrome
- Open up `chrome://extensions/` in your browser and click `Developer mode` in the top right
- Click `Load unpacked` and select the `Genius-Enhancer` directory
## Usage
1. Go to Genius.com
2. Enjoy the enhanced experience
## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
## License
Please refer to the [LICENSE.md](/LICENSE.md) file in the root folder for the terms of use of this project.
| A Chrome extension featuring automation tools, productivity enhancements, and a modern style for Genius.com | chrome-extension,javascript,scss | 2023-02-13T19:08:37Z | 2023-12-06T23:16:33Z | 2023-10-25T02:07:56Z | 6 | 27 | 342 | 28 | 2 | 10 | null | NOASSERTION | JavaScript |
loranYousef/2050-LandingPage | main | # 2050-LandingPage
demo: https://loranyousef.github.io/2050-LandingPage/

| Simple LandigPage. this Webpage still under upgrade . i will add more codes | html,css,bootstrap,git,github,javascript,wow-js | 2023-02-21T01:04:22Z | 2023-05-03T21:09:47Z | null | 1 | 0 | 29 | 0 | 5 | 10 | null | null | HTML |
baqar-abbas/Awesome-books-project | master | <a name="readme-top"></a>
<div align="center">
<br/>
<h3><b>Microverse README Template</b></h3>
</div>
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#triangular_flag_on_post-deployment)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [📝 License](#license)
# 📖 Awesome-books-project <a name="about-project"></a>
**Awesome-books-project** is a simple project which can add and remove books on the website.
## 🛠 Built With <a name="built-with"></a>
HTML and JavaScript
### Tech Stack <a name="tech-stack"></a>
### Key Features <a name="key-features"></a>
- **[html manipulated with JavaScript]**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🚀 Live Demo <a name="live-demo"> </a>
> The website will be hosted in the future.
<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
Web Browser, Code Editor.
### Setup
Clone this repository to your desired folder:
Example commands:
```sh
cd my-folder
git clone https://github.com/baqar-abbas/Awesome-books-project
```
### Install
VS CODE, Dev Dependencies (Linters), npm Package Manager
### Usage
Add a Book on Awesome books Website and view the list of available books and their authors.
### Run tests
Test Add, remove and available list.
### Deployment
This Project will be deployed after final approval.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 👥 Author <a name="authors"></a>
👤 **Baqar Abbas**
- GitHub: [@Baqar](https://github.com/baqar-abbas)
- Twitter: [@BaqarAbbas9](https://twitter.com/BaqarAbbas9)
- LinkedIn: [Baqar Abbas](https://www.linkedin.com/in/baqarlinkedin/)
👤 **Fuad Abdlemoin**
- GitHub: [@fuadmoin](https://github.com/fuadmoin)
- Twitter: [@Fuad01804580](https://twitter.com/Fuad01804580)
- LinkedIn: [Fuad Moin](https://www.linkedin.com/in/fuad-moin-a7b126259/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
- [ ] **[java script will be added ]**
<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 please consider leaving a review.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank my coding partner [@fuadmoin](https://github.com/fuadmoin) for creating this project with me.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 📝 License <a name="license"></a>
This project is [MIT](./MIT.md) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<a name="readme-top"></a>
| AwesomeBook is a simple website that displays a list of books and allows you to add and remove books from that list. | css3,html5,javascript | 2023-02-20T10:43:13Z | 2023-02-22T17:36:55Z | null | 2 | 3 | 13 | 0 | 0 | 10 | null | null | JavaScript |
Pasan-Pahasara/Image-Resizer | master | # Image-Resizer
This is a simple web application built using Html, CSS, and JavaScript to resize images.
#
### `Using Technologies`
* HTML
* Javascript
* jQuery
* CSS
* Boostrap Framework

#
#### Clone this repository ✅
```md
https://github.com/Pasan-Pahasara/Image-Resizer.git
```
###
###### If you think my code is good pleace drop a Star <img src="https://github.com/Pasan-Pahasara/md-alpha/blob/main/star.webp" width="40px">


### License 📝
[](https://github.com/Pasan-Pahasara/Room-Reservation-System/blob/master/LICENSE)
<div align="center">




</div>
<div align="center">
If you have any questions or just wanna say hi, <br><b>MAIL ME</b>
<a href="mailto:pasanpahasara7788@gmail.com">
<img width="20px" src="https://github.com/Pasan-Pahasara/md-alpha/blob/main/gmail.svg" />
</a></p>
</div>
<div align="center">
#### Developed by [Pasan Pahasara](https://github.com/Pasan-Pahasara/)
</div>
| This is a simple web application built using Html, CSS, and JavaScript to resize images. | bootstrap5,css,html,javascript,jquery | 2023-02-12T03:44:47Z | 2023-03-02T20:26:51Z | null | 1 | 0 | 32 | 0 | 1 | 10 | null | GPL-3.0 | CSS |
bpmn-io/feelers | main | # feelers
[](https://github.com/bpmn-io/feelers/actions/workflows/CI.yml)
A templating solution built on top of [DMN](https://www.omg.org/spec/DMN/) FEEL.
Like moustache / handlebars but with FEEL.

## What is inside
* A [lezer](https://lezer.codemirror.net/) grammar and consequently parser for the templating language
* A parseMixed language definition which brings `feelers` templating, `feel` parsing and an optional host language together
* An editor for feelers, build on top of [codemirror](https://codemirror.net/)
* An interpreter to fill your templates with data, powered by [feelin](https://github.com/nikku/feelin)
* A simple playground to showcase the language
## Usage
Feelers is a string templating tool, and will return string text or error.
```js
import { evaluate } from 'feelers'`
```
A simple string will always be returned as-is.
```js
evaluate("My simple string");
// "My simple string"
```
If your string is prefixed with an =, it will be evaluated as a single FEEL expression wrapped in a string conversion function.
```js
const context = { secondNumber: 12 };
evaluate("= 2 + secondNumber", context);
// "14"
```
Finally, if your string features feelers language features, the templating engine takes over.
```js
const context = { user: "Dave" };
evaluate("I'm sorry {{user}}, I'm afraid I can't do that.", context);
// I'm sorry Dave, I'm afraid I can't do that.
```
## Feelers templating language features
### Inserts
The simplest feature of feelers is inserting FEEL evaluations within your text. You may provide a variable context for the underlying FEEL engine to reference. Within these scopes, you have access to all features of the FEEL engine.
```js
const context = { user: "Dave", age: 24, hobbies: [ "surfing", "coding" ] };
evaluate(`Hey there {{user}}, welcome. {{if age >= 18 then "Have a beer!" else "Here's some apple juice."}}`, context);
// Hey there Dave. Have a beer!
evaluate(`Hobbies: {{hobbies}}`, context);
// Hobbies: ["surfing", "coding"]
evaluate(`{{user}}-{{user}}-{{user}}`, context);
// Dave-Dave-Dave
```
### Conditional sections
To simply display a section of the template, you may use a conditional section. While this can already be achieved via feel itself using `if then else`, this syntax is a lot easier to manage for large sections.
```js
const conditionExample = `{{#if count(users) > 1}}There are multiple users{{/if}}
{{#if false}}This should not display{{/if}}
{{#if true}}This should display{{/if}}`;
const context = { users: [ "Bob", "Dave" ] };
evaluate(conditionExample, context);
// There are multiple users
// This should display
```
### Loops
To handle dealing with arrays of data graciously, you can make use of loop tags. A special variable `this` is create granting you access to the current loop's element.
```js
const context = { user: "Dave", age: 24, hobbies: [ "surfing", "coding" ] };
const hobbyExpression = `{{user}}'s hobbies are:
{{#loop hobbies}}
- {{this}}
{{/loop}}`;
evaluate(hobbyExpression, context);
/// Dave's hobbies are:
/// - surfing
/// - coding
```
Loops may be nested when dealing with more complex data. When `this` is an object, you may access its variables directly within the loop. Although `this.name` would also work in the below example
```js
const context = {
users: [
{
name: "Bob",
hobbies: [ "building", "wearing hardhats" ]
},
{
name: "Dave",
hobbies: [ "surfing", "coding" ]
}
]
}
const complexLoops = `{{#loop users}}
{{name}}'s hobbies:
{{#loop hobbies}}
- {{this}}
{{/loop}}
{{/loop}}
`
evaluate(complexLoops, context);
// Bobs's hobbies:
// - building
// - wearing hardhats
// Dave's hobbies:
// - surfing
// - coding
```
> Loops actually create 4 helper variables: `this`, `parent`, `_this_` and `_parent_`. Parent refers to the context just outside of your loop, in case you need to refer to it. The underscored variants are fallbacks in case your context include variables named `this` and `parent`.
## Build and run
Build the project in a Posix environment. On Windows, that is [Git Bash](https://gitforwindows.org/) or WSL.
Note we currently support development environments with Node.js version 16 (and npm version 8). We encourage you to use a Node.js version manager (e.g., [`nvm`](https://github.com/nvm-sh/nvm) or [`n`](https://github.com/tj/n)) to set up the needed versions.
Prepare the project by installing all dependencies:
```sh
npm install
```
Then, depending on your use-case you may run any of the following commands:
```sh
# run all tests
npm run test
# runs single-start test case for development
npm start
npm run start
# generate the lezer parser from its grammar definition
npm run generate:parser
# build all dependencies locally and spool up playground
npm run start:playground
# build all dependencies locally and build playground
npm run build:playground
```
## Related
* [lezer-feel](https://github.com/nikku/lezer-feel) - FEEL language definition for the [Lezer](https://lezer.codemirror.net/) parser system
* [feel-playground](https://github.com/nikku/feel-playground) - Interactive playground to learn the FEEL language
## License
MIT
| A text templating solution built on top of FEEL | dmn,feel,javascript,template | 2023-02-16T10:43:45Z | 2024-04-17T14:34:16Z | null | 7 | 29 | 131 | 6 | 1 | 10 | null | MIT | JavaScript |
jucian0/turbo-version | main | # Turbo Version
> Automatically versioning for monorepos.
Turbo Version is a monorepo solution for managing package versions and releasing packages. It provides a set of tools and utilities that simplify versioning and releasing packages for monorepo projects.
## Packages
Turbo Version includes the following packages:
- `@turbo-version/version`: A package version management tool for monorepos. It allows you to manage versions of packages across multiple projects and release new versions of packages.[Docs](packages/turbo-version/README.md)
- `@turbo-version/release`: A command-line interface-tool for publishing packages inside Turbo repos to the npm registry with version validation. This tool validates whether a package version has already been published on the registry before attempting to publish it.[Docs](packages/turbo-release/README.md)
## Installation
You can install each package individually by running the following command:
```bash
npm install @turbo-version/version && npm install @turbo-version/release
```
## Usage
### `@turbo-version/version`
`@turbo-version/version` provides a set of CLI commands to manage package versions in monorepos.
Here's an example of how to use the `turbo-version -bump` command:
```bash
turbo-version -bump major
```
This command will bump the major version of all packages in the monorepo.
For more information on how to use `@turbo-version/release`, please refer to the [documentation](https://github.com/jucian0/turbo-version/tree/main/packages/turbo-version).
### `@turbo-version/release`
`@turbo-version/release` is a command-line interface tool for publishing packages inside Turbo repos to the npm registry with version validation.
Here's an example of how to use the `turbo-release` command:
```bash
turbo-release
```
This command will attempt to publish all packages inside the monorepo, but before publish, it's validate if the package version is already published.
For more information on how to use `@turbo-version/release`, please refer to the [documentation](https://github.com/jucian0/turbo-version/tree/main/packages/turbo-release).
## Contributing
We welcome contributions to Turbo Version! To contribute, please read our [contribution guidelines](./CONTRIBUTING.md) and [code of conduct](./CODE_OF_CONDUCT.md).
## Support Us
Thank you for your interest in supporting our project! We are a community-driven open-source project, and we welcome contributions from everyone.
### Ways to Contribute
- **Code Contributions:** If you are a developer, you can help us improve the project by contributing code. You can find our project on GitHub [here](https://github.com/jucian0/turbo-version), where you can create issues, fork the project, make changes, and submit pull requests.
- **Documentation:** We are always looking for help with documentation. If you have expertise in the project or have experience writing technical documentation, we would appreciate your contributions.
- **Bug Reports:** If you find a bug, please report it! You can create a new issue on GitHub and provide as much information as possible. This will help us reproduce the issue and fix it quickly.
- **Feature Requests:** If you have a feature request, please let us know by creating a new issue on GitHub. We welcome feedback and ideas for how to improve the project.
- **Spread the Word:** If you like our project, you can help us by sharing it with others. Tell your friends, colleagues, or anyone who might be interested. You can also follow us on social media and share our posts.
## License
Turbo Version is released under the [MIT License](LICENCE.MD).
| Automatically versioning for monorepos | monorepo,semantic,semanticversioning,semver,turborepo,hacktoberfest,hacktoberfest2023,javascript,nodejs,typescript | 2023-02-22T15:14:03Z | 2024-03-10T19:00:44Z | 2023-12-07T03:41:46Z | 1 | 3 | 248 | 0 | 1 | 10 | null | NOASSERTION | TypeScript |
iampranavdhar/campusmind | main | ## Campus Mind 📚
A Univeristy Manager App to manage all the daily activities of the university. It is a mobile application built using React Native and Expo. It has a backend built using NodeJs and ExpressJs. The database used is MongoDB Atlas. The app is deployed on Azure. The images are stored in Cloudinary. The app is built for both Android and iOS.

### Video Demo 🎥
[Complete Product Demo Link](https://drive.google.com/file/d/1pVJ-ipJoDPblyFOfCzTR_dOxIAInM77b/view?usp=drive_link)
Show some ❤️ and 🌟 the repo to support the project
## Index ✏️
- [Campus Mind 📚](#campus-mind-)
- [Video Demo 🎥](#video-demo-)
- [Index ✏️](#index-️)
- [Features Of Campus Mind 🚀](#features-of-campus-mind-)
- [Admin Features 👨💼](#admin-features-)
- [Student Features 👨🎓](#student-features-)
- [Disclaimer ⚠️](#disclaimer-️)
- [Setup 🔥](#setup-)
- [Frontend Setup 🍧](#frontend-setup-)
- [Troubleshooting ✅](#troubleshooting-)
- [Backend Setup 🍿](#backend-setup-)
- [Releasing the app 🚀](#releasing-the-app-)
- [FYI 📌](#fyi-)
- [Technologies 🛠](#technologies-)
- [Screenshots 🌄](#screenshots-)
- [References 💻](#references-)
- [Author 📝](#author-)
- [Connect Me On 🌍](#connect-me-on-)
- [License 🏆](#license-)
## Features Of Campus Mind 🚀
### Admin Features 👨💼
- Add a new student
- Add Assignments to the students with a deadline
- Add an event in the university
- Add an announcement to the students
- See the list of students
- Add Courses
- Add the images to the gallery
### Student Features 👨🎓
- To view the timetable for the day
- See and submit the assignments
- See the list of events
- See the list of announcements
- Get the details of the course
- Get Notifications for the assignments,event and announcements
- See the fee details
- Message your friends and teachers in the university
- Placement related details
- Gallery of the university
### Disclaimer ⚠️
- The app is still under development and many features are yet to be added. And some screens are just for the UI purpose and are not connected to the backend yet. You are free to contribute to this project and make it better. If you want to contribute to this project, please read the [Contributing Guidelines](CONTRIBUTING.md) first.
- Feel free to raise an issue if you find any bug in the application
- Feel free to raise a feature request if you think any feature is missing in the application
- Feel free to fork the repository and make your own changes if you want to make the app better and use it for your own purpose
## Setup 🔥
- Fork the Repo
- Clone the repo to your local machine
`git clone <repo-url>`
### Frontend Setup 🍧
1. Get into the chatapp directory
`cd frontend`
2. Run `yarn` to install dependencies
3. Create a `.env` file and create variables as mentioned in the `.env.example` with the values
4. Set up a new project in firebase and get the `google-services.json` file and place it in the `android/app` directory and follow the instructions of firebase while generating the file [ For Notifications ]
5. Run `yarn andorid` to start the application in android emulator
#### Troubleshooting ✅
- If you are getting an error null is not an object error, then you react-native-webview package might be not installed properly. To fix this, run `yarn add react-native-webview` and then run `yarn android` again.
- If you are facing the ViewPropTypes error, then might will be the react-native version problem. To fix this, run `yarn add deprecated-react-native-prop-types` and then go to `node_modules/react-native/index.js` replace from line 436 to four functions
with this:
```js
// Deprecated Prop Types
get ColorPropType(): $FlowFixMe {
return require('deprecated-react-native-prop-types').ColorPropType;
},
get EdgeInsetsPropType(): $FlowFixMe {
return require('deprecated-react-native-prop-types').EdgeInsetsPropType;
},
get PointPropType(): $FlowFixMe {
return require('deprecated-react-native-prop-types').PointPropType;
},
get ViewPropTypes(): $FlowFixMe {
return require('deprecated-react-native-prop-types').ViewPropTypes;
},
```
- In case of any other error try deleting the .gradle folder from the andorid and then run `yarn android` again
### Backend Setup 🍿
1. Get into backend directory `cd backend`
2. Run `yarn` to install dependencies
3. Create a MongoDB account and get the MONOGO_URL for connecting the server and the Database
4. Create a `.env` file and create variables as mentioned in the `.env.example` with the values
5. Run `nodemon server.js` to start the server [Should have installed nodemon globally]
### Releasing the app 🚀
1. Run `cd android && ./gradlew assembleRelease` to generate the release build of the app
2. You are done with the release build of the app 🎉🥳
3. Download your apk from `android/app/build/outputs/apk/release` which will be named as `app-release.apk`
4. Great! Now you can distribute this apk to anyone and they can install it on their android device, now its time to celebrate 🎉🎉. Please consider giving a star to this repo if you want me to make more such projects 😁
### FYI 📌
- The app is build using Expo and React Native and then ejected to use the native modules and better control over the app
## Technologies 🛠
- ReactNative
- NodeJs
- ExpressJs
- MongoDB Atlas
- Cloudinary
- AWS EC2
- Azure
## Screenshots 🌄




## References 💻
- [NodeJs Documentation](https://nodejs.org/en/docs/)
- [React Native Documentation](https://reactnative.dev/)
- [React Native Firebase Cloud Messaging](https://rnfirebase.io/messaging/usage)
## Author 📝
- [@iampranavdhar](https://www.github.com/iampranavdhar)
## Connect Me On 🌍
[](https://twitter.com/iampranavdhar)<br/>
[](https://in.linkedin.com/in/sai-pranavdhar-reddy-nalamalapu-038104206)
## License 🏆
This repository is licensed under MIT License. Find [LICENSE](LICENSE) to know more
| Campus Mind a Complete Full Stack Mobile Application which manages all the activities of a university | fullstack-development,javascript,nodejs,react-native,redux,university,android,firebase | 2023-02-19T14:39:23Z | 2023-07-25T13:21:09Z | null | 1 | 0 | 17 | 0 | 0 | 10 | null | MIT | JavaScript |
akashpawar43/epic-games-clone | main |
<h1 align="center" style="border-bottom: none;">Epic Games</h1>
<h3 align="center">This is a clone of Epic games.com.We have used HTML, CSS, Javascript, Node.js, Mongoose and MongoDB to achieve this.</h3>
# Technology We Used :computer:
1. HTML5
2. CSS3
3. JavaScript
4. node.js
6. MongoDB
## 🔗 Links
[](https://akashpawardev.netlify.app/)
[](https://www.linkedin.com/in/akashpawar23/)
## Instructions to Run the Code
If you want to run the latest code from git, here's how to get started:
1. Clone the code:
https://github.com/akashpawar43/epic-games-clone.git
cd epic-clone
2. Install the node-red dependencies
npm install
3. Create .env file with following variables
PORT = 4444
DB = "Insert your mongodb connection url"
4. Run
npm start
5. open your browser and visit
localhost:4444
<h2>Project Screenshots:</h2>
1. Login
<img src="https://github.com/akashpawar43/epic-games-clone/blob/main/public/images/tp_img/login.png" alt="project-screenshot" >
2. Register
<img src="https://github.com/akashpawar43/epic-games-clone/blob/main/public/images/tp_img/register.png" alt="project-screenshot" >
3. HomePage
<img src="https://github.com/akashpawar43/epic-games-clone/blob/main/public/images/tp_img/website1.png" alt="project-screenshot" >
<img src="https://github.com/akashpawar43/epic-games-clone/blob/main/public/images/tp_img/website2.png" alt="project-screenshot" >
<img src="https://github.com/akashpawar43/epic-games-clone/blob/main/public/images/tp_img/website3.png" alt="project-screenshot" >
<img src="https://github.com/akashpawar43/epic-games-clone/blob/main/public/images/tp_img/website4.png" alt="project-screenshot" >
<img src="https://github.com/akashpawar43/epic-games-clone/blob/main/public/images/tp_img/website5.png" alt="project-screenshot" >
<img src="https://github.com/akashpawar43/epic-games-clone/blob/main/public/images/tp_img/website6.png" alt="project-screenshot" >
3. GamesPage
<img src="https://github.com/akashpawar43/epic-games-clone/blob/main/public/images/tp_img/games1.png" alt="project-screenshot" >
<img src="https://github.com/akashpawar43/epic-games-clone/blob/main/public/images/tp_img/games2.png" alt="project-screenshot" >
<img src="https://github.com/akashpawar43/epic-games-clone/blob/main/public/images/tp_img/games3.png" alt="project-screenshot" >
<img src="https://github.com/akashpawar43/epic-games-clone/blob/main/public/images/tp_img/games4.png" alt="project-screenshot" > | web development project done with HTML, CSS, javascript, node.js and mongodb. | css3,dynamic-design,express,handlebars,html5,javascript,mongodb,nodejs,responsive-design,epic-games | 2023-02-12T14:05:31Z | 2024-01-04T05:10:20Z | null | 1 | 0 | 34 | 0 | 0 | 10 | null | null | CSS |
AbdusSattar-70/FirstCapstone | master | <a name="readme-top"></a>
<div align="center">
<h3><b>FirstCapstone
</b>.
</h3>
</div>
<div align="center">
<h3><b>Screenshot</b></h3>
<img src="images/sk1.png" alt="" width="500px">
<img src="images/Screenshotp.png" alt="" width="500px">
</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 and presentation video](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#triangular_flag_on_post-deployment)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
## 📖 First Capstone <a name="about-project"></a>
**FirstCapstone** is a personal learning project aimed at mastering the best practices for utilizing HTML, CSS, and JavaScript.
<h5>
<b>Arcadia MusicFest-2023<b> For over three decades, Arcadia Academy of Music has been hosting Musicfest, our biggest event that allows our students to showcase their musical talents in front of their peers, friends, and family. Due to the pandemic, last year's competition was held online, but this year, we are thrilled to announce that Musicfest is back as an in-person event! Musicfest is a testament to the exceptional teaching, support, and encouragement our students receive at Arcadia Academy of Music. This competition brings all of our locations together to celebrate and showcase the best and brightest musical talents from our community.</h5>
## 🛠 Built With <a name="built-with"></a>
## Tech Stack <a name="tech-stack"></a>
<details>
<summary>Client</summary>
<b>This project only works client side right now.</b>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JS</li>
</ul>
</details>
<details>
<summary>Server</summary>
<ul>
<li><a href=#>Server - It is Hosted on GitHub</a></li>
</ul>
</details>
<details>
<summary>Database</summary>
<ul>
<li>Currently it doesn't use database</li>
</ul>
</details>
<!-- Features -->
## Key Features <a name="key-features"></a>
- **css animation**
- **Upcoming Music fest time calculation**
- **Showcase music fest details**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LIVE DEMO -->
## 🚀 Live Demo and presentation video <a name="live-demo"></a>
- [Presentation video Link](https://www.loom.com/share/7d528a4ee1db40e7bb14eda9dcae25f2)
- [Live Demo Link](https://abdussattar-70.github.io/FirstCapstone/)
<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 <a name="prerequisites"></a>
- In order to run this project you need:
### It would be best if you had some familiarity with `HTML`, `CSS`,`JS`.
- A Computer (MAC or PC)
- code editor (VSCode,Atom etc...)
- A browser (Chrome,Mozilla,Safari etc...)
- Version Control System (Git and Github)
# Setup <a name="setup"></a>
Clone this repository to your desired folder:
```bash
git clone https://github.com/AbdusSattar-70/FirstCapstone.git
cd FirstCapstone
```
# Install <a name="install"></a>
Install this project with:
```bash
npm install
```
# Run tests and check errors <a name="run-tests"></a>
To run tests and check errors, run the following command:
- To check Styelint error:-
```bash
npm test
```
```bash
npx stylelint "\*_/_.{css,scss}"
```
- To check Eslint error:-
```bash
npx eslint .
```
# Deployment <a name="triangular_flag_on_post-deployment"></a>
You can deploy this project using:
- Render Hosting server or GitHub pages
```bash
npm install
npm run start
```
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
## 👤 Abdus Sattar
- GitHub: [AbdusSattar-70](https://github.com/AbdusSattar-70)
- Twitter: [Abdus Sattar](https://twitter.com/Abdus_Sattar70)
- LinkedIn: [Abdus Sattar](https://www.linkedin.com/in/abdus-sattar-a41a26215/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- **Web Responsiveness for all users**
- **Add web accessibility**
- **Add Login page**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- CONTRIBUTING -->
## 🤝 Contributing <a name="contributing"></a>
Everybody is welcome to suggest, changes,Contributions, issues, and feature request in this project.
In order to do it, fork this repository, create a new branch and open a Pull Request from your branch.
Feel free to check the [issues page](../../issues/).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- SUPPORT -->
## ⭐️ Show your support <a name="support"></a>
If you like this project, Please give me ⭐️ and you can use it following [MIT](./LICENSE) license.
<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 opportunity to learn how to set up this project.
The Original design idea is by <a href="https://www.behance.net/adagio07"><b>Cindy Shin in Behance</b> <a> Thanks ❤️ to <b>Cindy Shin</b> Creating such a beautiful design.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LICENSE -->
## 📝 License <a name="license"></a>
This project is under [MIT](./LICENSE) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| FirstCapstone is a personal learning project aimed at mastering the best practices for utilizing HTML, CSS, and JavaScript. | css3,html5,javascript | 2023-02-13T07:33:04Z | 2023-04-19T23:31:43Z | null | 1 | 5 | 22 | 0 | 0 | 10 | null | MIT | HTML |
orodrigojose/pomotext | main | <a href="top"></a>
<br />
<div align="center">
<a href="https://github.com/rodrigosj7/pomotext">
<img src="./public/logo.png" alt="Logo" width="120" height="120">
</a>
<h1 align="center">PomoText</h1>
<p align="center">
Simple pomodoro like terminal
<br />
<a href="https://pomotext.netlify.app/">
<strong>Demo of Project »</strong>
</a>
<br /> <br />
<a href="">
<img src="https://img.shields.io/website?down_color=red&down_message=offline&up_color=green&up_message=online&url=https://pomotext.netlify.app/" alt="online badge" />
</a>
<a href="">
<img src="https://img.shields.io/github/stars/rodrigosj7/pomotext?logo=github" alt="stars badge"/>
</a>
</p>
</div>
<div align="center">
<img
src="overview.png"
alt="overview"
width="650"
/>
</div>
## About the project
This project it's a simple pomodoro timer that uses commands to operate it
## Getting Started
### Dependencies
* You need to have [nodejs](https://nodejs.org/en/download/) installed in your machine.
### Installing
* To execute project locally you need fork it `git clone https://github.com/rodrigosj7/pomotext.git`
* Then go to the project folder and execute `npm i` to install the necessary dependencies
### Executing program locally
* How to run the program
* Step-by-Step
```
# Run development
$ npm run dev
# Build project
$ npm run build
# Preview builded project
$ npm run preview
```
## Contribute to the project
To contribute to the project, follow the next steps:
1. Fork this repository.
2. Create an branch: `git checkout -b <branch_name>`.
3. Make your changes and commit them using conventional commits, i recommend using [padroes-de-commits](https://github.com/iuricode/padroes-de-commits) as a reference for your commits
4. Send for the original branch: `git push origin <nome_do_projeto> / <local>`
5. Create the pull request(PR).
Alternatively, check the GitHub documentation on [how to create pull request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request).
## Built with
* 
* 
* 
* 
* 
## Features
- [ ] Create command to change the minutes and seconds
- [ ] Added dynamic title
- [ ] Create theme options
- [ ] Create PS1 customization
- [ ] Add more commands
## License
This project is licensed under the MIT License - see the LICENSE file for details
## Acknowledgments
Inspiration
* [Lofi_Code](https://github.com/YeyoM/lofi_code)
* [Creating an Interactive Terminal in React | Tutorial](https://www.youtube.com/watch?v=KCcU15nvFbI)
* [How to Build Pomodoro Timer in React | React Tutorial](https://www.youtube.com/watch?v=9z1qBcFwdXg&t=1s)
* [Como utilizar o Notification do Browser com Javascript | Insta Post Reminder #01](https://www.youtube.com/watch?v=Mhd6x2Z-F_w)
---
Made with 💜 by Rodrigo José(rodrigosj7)
---
[⬆ Back to the top](#top)<br>
| :tomato: Simple pomodoro timer like terminal style | javascript,pomodoro,reactjs,tailwindcss,terminal-style,vitejs | 2023-02-19T22:39:03Z | 2023-03-14T16:05:31Z | null | 1 | 1 | 32 | 0 | 0 | 10 | null | MIT | JavaScript |
aniketparmar29/paperfry-clone | master | ## pepperfry clone- woodennfry App
---
<img align="center" src="https://adroit-desire-6989.vercel.app/woodenfry2.png" alt="logo"/>
<p>
About
Pepperfry is an Indian online marketplace for furniture and home décor. The company was formed by Ex-eBay executives Ambareesh Murty and Ashish Shah started Pepperfry in Mumbai in 2012. The company is headquartered in Mumbai, Maharashtra and operates as a subsidiary of Trendsutra Platform Services Private Limited.
</p>
### Tech-Stack
___
* Reactjs
* Chakra UI
* Tailwind css
* javascript
* react-router
* redux
* Nodejs
* Miui
* Express
### Features
___
* User Authentication
* User Details Management
* Show Details.
* Sorting, Filtering, and
* Admin Panel
* Backend Api
* Animations
* Slider
### Fuctionality worked on-
| Team members | Functionality |
| ------ | ------ |
| Aniket Parmar | Product Page & Single Product Page |
| Daljeet Singh | Backend|
| Biswadip Roy | HomePage & Login |
| Vicky Das| Cart&Checkout&Wishlist |
| Vikram kumar | Admin Panel |
### Screenshots
___
<h2>Home Page</h2>
<img width="682" alt="Home" src="https://user-images.githubusercontent.com/80110392/221533362-aa398d90-6bcf-4267-9d4a-1c7b8d14b84d.png">
<h2>Login Page</h2>
<img width="646" alt="login" src="https://user-images.githubusercontent.com/80110392/221533419-5030614d-8bee-4227-bbb9-934111e0e505.png">
<h2>Product Page</h2>
<img width="669" alt="product" src="https://user-images.githubusercontent.com/80110392/221533493-da30e817-689b-429e-b7da-fd9304574825.png">
<h2>Single Product Page</h2>
<img width="681" alt="singelproduct" src="https://user-images.githubusercontent.com/80110392/221533527-d6f551b6-1b8a-4247-a19c-fb2f338d8b80.png">
<h2>footer part</h2>
<img width="677" alt="footer" src="https://user-images.githubusercontent.com/80110392/221533549-17991938-7ca6-4204-bcb8-0ad901701ba1.png">
| Pepperfry is an Indian online marketplace for furniture and home décor. The company was formed by Ex-eBay executives Ambareesh Murty and Ashish Shah started Pepperfry in Mumbai in 2012. The company is headquartered in Mumbai, Maharashtra and operates as a subsidiary of Trendsutra Platform Services Private Limited. | reactjs,chakraui,css3,express,javascript,nodejs,redux,tailwindcss | 2023-02-18T13:41:10Z | 2023-02-27T10:04:09Z | null | 6 | 19 | 70 | 0 | 1 | 10 | null | null | JavaScript |
SaneMyburg/ToDo-List | main | <a name="readme-top"></a>
<div align="center">
<h3><b>To Do List</b></h3>
</div>
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#triangular_flag_on_post-deployment)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [📝 License](#license)
# 📖 [To Do List] <a name="about-project"></a>
> This project is a to list app that helps you keep track of your planned activities for the day.
**[To do List]** is ...
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
- HTML
- CSS
- Javascript ES6
- Webpack
### Key Features <a name="key-features"></a>
> To do list let's you add and remove your tasks for the day.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🚀 Live Demo <a name="live-demo"></a>
- [Live Demo Link](https://SaneMyburg/github.io)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 💻 Getting Started <a name="getting-started"></a>
> Get a link of this repository and clone it to your local machine.
To get a local copy up and running, follow these steps:
- Get a copy of the project
- Come into the project directory
- Open the project using code editor of your choice
- Open your prefered browser
### Prerequisites
In order to run this project you need:
- You need a GitHub account.
- You need to have a Git client installed on your computer.
- You need to have a copy of the HTML CSS website codebase on your computer.
- You need a code Editor of your choice.
### Setup
Clone this repository to your desired folder:
```sh
cd my-folder
git clone https://github.com/SaneMyburg/ToDo-List.git
```
### Install
Install this project with:
### Usage
To run the project, simply run the HTML document to preferrably Google Chrome.
### Run tests
To run tests, you can use Chrome Developer tools, simply run the HTML document in Google Chrome and right-click the HTML element you want to inspect. Click on "Inspect" and you will have the tools to run, analyze, and even debug the code.
### Deployment
You can deploy this project using:
Github Pages
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 👥 Authors <a name="authors"></a>
> Sane Myburg
👤 **Author1**
- GitHub: [@githubhandle](https://github.com/SaneMyburg)
- Twitter: [@twitterhandle](https://twitter.com/@SaneMyburg)
- LinkedIn: [LinkedIn](https://linkedin.com/in/SaneMyburg)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
- [ ] **Edit your to do list**
## 🤝 Contributing <a name="contributing"></a>
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](https://github.com/SaneMyburg/Webpack/issues/).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ⭐️ 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>
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank [Microverse](www.microverse.com)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LICENSE -->
## 📝 License <a name="license"></a>
This project is [MIT](./LICENSE) licensed.
_NOTE: we recommend using the [MIT license](https://choosealicense.com/licenses/mit/) - you can set it up quickly by [using templates available on GitHub](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). You can also use [any other license](https://choosealicense.com/licenses/) if you wish._
<p align="right">(<a href="#readme-top">back to top</a>)</p> | To Do list is an app where a user can store, add, remove all his/her tasks for the day, the main feature is check and update the status and remove all completed tasks. | css,html,javascript | 2023-02-20T04:50:47Z | 2023-02-28T12:29:52Z | null | 1 | 3 | 24 | 1 | 0 | 10 | null | MIT | JavaScript |
CodingWithEnjoy/Color-Picker-Extension | main | <h2 align="center">Color Picker | انتخاب رنگ</h2>
###
<h4 align="center">دمو | Demo 😁</h4>
###
<p align="left"></p>
###
<p align="left"></p>
###
<div align="center">
<img height="350" src="https://user-images.githubusercontent.com/113675029/228469685-5a291ef0-cb1a-4122-8741-b8952cf0a78c.gif" />
</div>
###
<p align="left"></p>
###
<div align="center">
<img height="350" src="https://user-images.githubusercontent.com/113675029/228469613-7a01f09e-070e-487c-8982-2a15cb091922.png" />
</div>
###
<p align="left"></p>
###
<p align="left"></p>
###
<p align="left"></p>
###
<div align="center">
<a href="https://www.instagram.com/codingwithenjoy/" target="_blank">
<img src="https://raw.githubusercontent.com/maurodesouza/profile-readme-generator/master/src/assets/icons/social/instagram/default.svg" width="52" height="40" alt="instagram logo" />
</a>
<a href="https://www.youtube.com/@codingwithenjoy" target="_blank">
<img src="https://raw.githubusercontent.com/maurodesouza/profile-readme-generator/master/src/assets/icons/social/youtube/default.svg" width="52" height="40" alt="youtube logo" />
</a>
<a href="mailto:codingwithenjoy@gmail.com" target="_blank">
<img src="https://raw.githubusercontent.com/maurodesouza/profile-readme-generator/master/src/assets/icons/social/gmail/default.svg" width="52" height="40" alt="gmail logo" />
</a>
<a href="https://twitter.com/codingwithenjoy" target="_blank">
<img src="https://raw.githubusercontent.com/maurodesouza/profile-readme-generator/master/src/assets/icons/social/twitter/default.svg" width="52" height="40" alt="twitter logo" />
</a>
</div>
###
<p align="left"></p>
###
<h4 align="center">توسعه داده شده توسط برنامه نویسی با لذت</h4>
###
| با این افزونه ، قسمتی را مشخص کنید و کد رنگی آن رو بفهمید و کپی کنید 😊😉 | color,color-picker,css,extension,html,javascript,picker | 2023-02-24T16:05:25Z | 2023-04-13T09:04:09Z | null | 1 | 0 | 10 | 0 | 0 | 9 | null | Apache-2.0 | JavaScript |
subtopia-algo/subtopia-js-sdk | main | <p align="center"><img width=100% src="https://bafybeietopj64xoicecmuruwcn7n2vijfgffrcv3ur4vw3qh477ezllchm.ipfs.nftstorage.link/" /></p>
<p align="center">
<a href="https://www.npmjs.com/package/subtopia-js-sdk"><img src="https://badge.fury.io/js/subtopia-js-sdk.svg" alt="npm version"></a>
<a href="https://www.npmjs.com/package/subtopia-js-sdk" >
<img src="https://img.shields.io/npm/types/subtopia-js-sdk"/>
</a>
<a href="https://codecov.io/gh/subtopia-algo/subtopia-js-sdk" >
<img src="https://codecov.io/gh/subtopia-algo/subtopia-js-sdk/branch/main/graph/badge.svg?token=FEJBE5IAW5"/>
</a>
<a href="https://subtopia.io"><img src="https://img.shields.io/badge/platform-link-cyan.svg" /></a>
<a href="https://algorand.com"><img src="https://img.shields.io/badge/Powered by-Algorand-black.svg" /></a>
</p>
---
## 🌟 About
Subtopia JS SDK is a JavaScript library for interacting with the Subtopia Platform. It provides a simple interface for creating and managing `Products` (Contracts that are responsible for subscription management).
> For detailed documentation, refer to [sdk.subtopia.io](https://sdk.subtopia.io).
### ⚡ Examples
- [subtopia-js-examples](https://github.com/subtopia-algo/subtopia-js-examples) - A separate repository with examples of using the Subtopia JS SDK in React, Svelte, Vue and NextJS.
## 📦 Installation
### Install the package:
```bash
# with npm
npm install subtopia-js-sdk
# or with yarn
yarn add subtopia-js-sdk
```
### Import the package:
```ts
import { SubtopiaClient, SubtopiaRegistryClient } from "subtopia-js-sdk";
```
## 🛠️ Usage
Example snippets of using the Subtopia JS SDK.
### **Subscriptions**
### Purchasing a subscription:
```ts
import {
SubtopiaClient,
SubtopiaRegistryClient,
ChainType,
SUBTOPIA_REGISTRY_ID
} from "subtopia-js-sdk";
// ... your code
const subtopiaClient = await SubtopiaClient.init({
algodClient: PUT_ALGOD_INSTANCE_HERE,
chainType: PUT_CHAIN_TYPE_ENUM_HERE // 'testnet'|'mainnet'|'localnet'
productID: PUT_PRODUCT_ID_HERE,
registryID: SUBTOPIA_REGISTRY_ID(ChainType.{YOUR_CHAIN_TYPE_HERE}),
creator: { addr: PUT_WALLET_ADDRESS, signer: PUT_WALLET_SIGNER },
});
const response = await subtopiaClient.createSubscription(
{ subscriber: { addr: PUT_WALLET_ADDRESS, signer: PUT_WALLET_SIGNER } },
);
console.log(response.txID); // response is of type string
// ... rest of your code
```
### Subscription lookup:
```ts
// ... your code
const subscriptionRecord = await subtopiaClient.getSubscription({
subscriberAddress: PUT_SUBSCRIBER_ADDRESS,
algodClient: PUT_ALGOD_INSTANCE_HERE,
});
// SubscriptionRecord (throws Error if not subscribed)
console.log(subscriptionRecord);
// ... rest of your code
```
### Unsubscribing:
```ts
// ... your code
const deleteResult = await subtopiaClient.deleteSubscription({
subscriber: {
addr: PUT_SUBSCRIBER_ADDRESS,
signer: PUT_SUBSCRIBER_SIGNER,
},
subscriptionID: PUT_SUBSCRIPTION_ID,
});
// Transaction ID of the unsubscribe transaction
console.log(deleteResult.txID);
// ... your code
```
### Transfering subscription:
```ts
// ... your code
const transferResult = await subtopiaClient.transferSubscription({
oldSubscriber: {
addr: PUT_OLD_SUBSCRIBER_ADDRESS,
signer: PUT_OLD_SUBSCRIBER_SIGNER,
},
newSubscriberAddress: PUT_NEW_SUBSCRIBER_ADDRESS,
subscriptionID: PUT_SUBSCRIPTION_ID,
});
// Transaction ID of the transfer transaction
console.log(transferResult.txID);
// ... your code
```
### **Discounts**
### Creating a discount:
```ts
// ... your code
const subtopiaRegistryClient = await SubtopiaRegistryClient.init({
algodClient: PUT_ALGOD_INSTANCE_HERE,
creator: { addr: PUT_WALLET_ADDRESS, signer: PUT_WALLET_SIGNER },
chainType: PUT_CHAIN_TYPE_HERE,
});
const discount = await subtopiaRegistryClient.createDiscount({
discountType: PUT_DISCOUNT_TYPE_HERE, // number - the type of discount to apply. FIXED or PERCENTAGE
discountValue: PUT_DISCOUNT_VALUE_HERE, // number - the discount to be deducted from the subscription price
expiresIn: PUT_EXPIRATION_TIME_HERE, // (Optional) Set 0 for discount to never expire. Else set number of seconds to append to unix timestamp at time of creation.
});
console.log(discount.txID); // response is of type string
// ... rest of your code
```
### Discount lookup:
```ts
// ... your code
const discount = await subtopiaClient.getDiscount();
// DiscountRecord (throws Error if no active discount)
console.log(discount);
// ... rest of your code
```
### Deleting a discount:
```ts
// ... your code
const deleteResult = await subtopiaRegistryClient.deleteDiscount();
// Transaction ID of the delete discount transaction
console.log(deleteResult.txID);
// ... your code
```
## ⭐️ Stargazers
Special thanks to everyone who starred the repository ❤️
[](https://github.com/subtopia-algo/subtopia-js-sdk/stargazers)
| Official JS SDK for Subtopia Platform. Build your own UI to interact with Subtopia | algorand,dapps,javascript,sdk,subscription,typescript,subtopia,algorand-blockchain | 2023-02-19T17:16:27Z | 2024-05-01T04:40:06Z | 2024-01-29T01:20:25Z | 2 | 47 | 61 | 1 | 0 | 9 | null | NOASSERTION | TypeScript |
ritogk/transcription | main | # フロントエンド完結で文字起こしが行えるwebアプリケーション
https://transcription.homisoftware.net/index.html
| LP | APP |
| ---- | ---- |
|  |  |
## このアプリケーションは何?
[whisper](https://github.com/ggerganov/whisper.cpp/tree/master/examples/whisper.wasm)と[ffmepg](https://github.com/ffmpegwasm/ffmpeg.wasm)をブラウザで動かしてフロントエンド完結で文字起こしができるアプリケーション
## 技術記事
https://zenn.dev/homing/articles/9ea769ab12f310
## 良い点
メディアファイルの変換と文字起こしの処理をサーバではなくブラウザで実行しているのでサーバー代がかからない。
利用側はlinuxの知識無しで最新の文字起こしが使える。
## 悪い点
CのコードをWebAssemblyにコンパイルしたコードを使っているためメンテにCの知識が必要。
フロント側でほぼすべて完結しているので簡単にアプリがパクられる。
## setup
### 1.インフラ生成と更新
```
cd cdk
cp .env.base .env
cdk deploy --all
```
### 2.ファイルを配置
1. src配下のファイルをバケットに突っ込む
2. modelsはファイルサイズが大きいのでここから持ってきて手動で入れる(ファイルサイズがお大きいのでgit管理はしない。)
https://huggingface.co/ggerganov/whisper.cpp/tree/main
3. CloudFrontのキャッシュを更新
## インフラのあとかたずけ
1. バケットの中身を空にする
```
cd cdk
cdk destroy --all
```
| フロントエンド完結で文字起こしが行えるwebアプリケーション | javascript,webassembly | 2023-02-11T05:30:06Z | 2023-12-13T01:28:00Z | 2023-04-06T23:49:58Z | 1 | 0 | 52 | 0 | 1 | 9 | null | null | HTML |
liplum/Meditree | master | # Meditree
## Backend
### Node.js /backend-js
This is an Express.js server that provides the following features:
1. It serves a local file tree on the file system and monitors changes made to it.
2. It supports plugins to add more features.
To learn more about `backend-js`, please refer to its [README](/backend-js/README.md).
### Go /backend-go
To learn more about `backend-go` please refer to its [README](/backend-go/README.md).
## Frontend
### React /web-react
This is a single-page application (SPA) created with JavaScript and React Functional Component.
It offers the following features:
1. A directory-tree-like view that makes it easy to browse files in one place.
2. Case-insensitive file search in the root directory.
3. Client-side routing for a better loading experience and to reduce server-side overhead.
4. The same URL will end up with the same file. This can be shared across `web-react` and `web-vue`.
To learn more about `web-react` please refer to its [README](/web-react/README.md).
### Vue /web-vue
This is a single-page application (SPA) created with TypeScript and Vue3 Composition API.
It offers the following features:
1. A file-explorer-like view makes more sense for users.
2. Case-insensitive file search in the current directory.
3. Client-side routing for a better loading experience and to reduce server-side overhead.
4. The same URL will end up with the same file. This can be shared across `web-react` and `web-vue`.
To learn more about `web-vue` please refer to its [README](/web-vue/README.md).
## Application
### Flutter /app-flutter
To learn more about `app-flutter` please refer to its [README](/app-flutter/README.md).
## Deployment
You can combine ANY frontend implmenetation with ANY backend implmenetation
on the same server or multiple servers for free.
Here's an example to deploy the `backend-js` + `web-react` + `nginx`.
First, run `npm run build` to build the bundled production of `web-react`.
Then you can configure the `meditree.json` like below.
Note when you runs the `backend-js`, some essential settings will be generated on the fly.
```json5
{
"name": "My-Meditree", // Name to show.
"port": 8080, // 8080 doesn't require sudo on linux.
"root": "/path/to/root", // [optional] the root direcotry of a local file tree.
"plugin": {
"homepage": { // Use homepage plugin to serve a static webiste.
"root": "/path/to/web-react/dist"
},
"watch": true // Use watch plugin to watch local file changes.
}
}
```
After configuring, run `npm start` in `backend-js`.
You can access the "http://localhost:8080" to check if the homepage is available,
and access "http://localhost:8080/list" to ensure the backend is working.
Finally, configure the nginx for port forwarding.
```ruby
server {
listen 80;
server_name your_site.com;
# For example, serving the backend on 8080 port locally, and proxy it to 80 port and "/" externally.
location / {
proxy_pass http://localhost:8080;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}
```
## Interface
### Payload structure
```ts
interface File {
"*type": string
"*tag"?: Record<string, number | string | boolean>
"*hide"?: boolean
size?: number
}
interface Directory {
"*tag"?: Record<string, number | string | boolean>
"*hide"?: boolean
[name: string]: File | Directory | Directory["*tag"] | Directory["*hide"]
}
```
### Example
```json5
{
"name": "MyServer",
"root": {
// path: `/myText.txt`
"myText.txt": {
"*type": "text/plain",
},
// path: `/myFolder`
"myFolder": {
// path: `/myFolder/myVideo.mp4`
"myVideo.mp4": {
"*type": "video/mp4",
}
}
}
}
```
| Share your media anywhere in a tree with various backends and frontends. | express,javascript,react,typescript,flutter,nodejs,go,vue,fullstack,dart | 2023-02-13T09:48:22Z | 2024-05-23T11:32:37Z | null | 1 | 16 | 922 | 1 | 0 | 9 | null | null | TypeScript |
DarkHorseCorder/TailwindCSS-HTML-TrithLuxury | master | # TailwindCSS-HTML-TrithLuxury
 | null | html,javascript,tailwindcss | 2023-02-13T20:47:16Z | 2023-02-13T20:49:26Z | null | 1 | 0 | 10 | 0 | 0 | 9 | null | null | HTML |
planetarium/bencodex.js | main | <!-- deno-fmt-ignore-file -->
Bencodex.js
===========
[![deno.land/x/bencodex status][]][deno.land/x/bencodex]
[![npm status][]][@planetarium/bencodex]
[![CI status][]][GitHub Actions]
[![Coverage status][]][Coveralls]
This library is an alternative take on implementing [Bencodex] in JavaScript.
It focused to address the following problems from the existing JavaScript
implementation(s):
- *No Node.js-specific APIs*: It does not depend on Node.js-specific APIs
such as [`Buffer`]. Usable with web browsers, Deno, and Node.js.
- *Static-time and runtime type safety*: It is fully written in TypeScript,
and promise you, we use [`any`] nowhere, and it never trusts any data from
external sources thoughtlessly. Instead, it tries to parse data and
validate them whenever it reads data from external sources. It's not only
written in TypeScript, it also has runtime checks here and there so that
you could use it in vanilla JavaScript without fear.
- *Well-tested*: Passing only the Bencodex spec test suite is not enough to
guarantee the whole functionality of a library, as every library has their
own part to interpret data in JavaScript (how data should look like in
JavaScript values, where data are read from and written into, whether data
are streamed or given in a single big chunk, etc). It has its own unit
tests besides spec test suite, and we've done the best to reach
[near-100% test coverage][Coveralls].
- *Comprehensive docs*: Every non-trivial library needs the three types of
docs: tutorials for getting stated, in-depth manuals for common scenarios,
and complete API references with concise examples. It has all of them!
- *Reducing unnecessary memcpy*: Instead of creating chunks of
[`Uint8Array`]s and then allocating a large buffer to concatenate the whole
data once again, it allocates only the necessary buffer only once.
It is not just memory-efficient, also time-efficient as memcpy quite
takes time.
- *Proper binary keys*: It does not simply depend on [`Map`], which compares
its [`Uint8Array`] keys by reference equality. Instead, it implements its
own proper dictionary which compares [`Uint8Array`] by content equality.
Distributed under LGPL 2.1 or later.
[deno.land/x/bencodex status]: https://img.shields.io/github/v/tag/planetarium/bencodex.js?label=deno.land%2Fx%2Fbencodex
[deno.land/x/bencodex]: https://deno.land/x/bencodex
[npm status]: https://img.shields.io/npm/v/@planetarium/bencodex?label=npm%20i%20%40planetarium%2Fbencodex
[@planetarium/bencodex]: https://www.npmjs.com/package/@planetarium/bencodex
[CI status]: https://github.com/planetarium/bencodex.js/actions/workflows/main.yaml/badge.svg?branch=main
[GitHub Actions]: https://github.com/planetarium/bencodex.js/actions/workflows/main.yaml
[Coverage status]: https://coveralls.io/repos/github/planetarium/bencodex.js/badge.svg
[Coveralls]: https://coveralls.io/github/planetarium/bencodex.js
[Bencodex]: https://bencodex.org/
[`Buffer`]: https://nodejs.org/api/buffer.html
[`any`]: https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#any
[`Uint8Array`]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array
[`Map`]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Map
Getting started
---------------
See also the [complete API references] as well.
[complete API references]: https://deno.land/x/bencodex/mod.ts
### Deno
It's available on [deno.land/x/bencodex]:
~~~~ typescript
import { decode, encode } from "https://deno.land/x/bencodex/mod.ts";
const value = new Map([
["foo", true],
["bar", null],
["baz", new Uint8Array([0x73, 0x70, 0x61, 0x6d])],
[
new Uint8Array([0x68, 0x65, 0x6c, 0x6c, 0x6f]),
[
123456n,
"Unicode string",
false,
],
],
]);
const encoded = encode(value);
const decoded = decode(encoded);
~~~~
### Node.js
Add [@planetarium/bencodex] to your dependencies using your favorite package
manager:
~~~~ console
npm install @planetarium/bencodex
~~~~
The API usage is equivalent to the example above for Deno, except that you
need to import things from `"@planetarium/bencodex"` instead of the
*deno.land/x/* URL:
~~~~ typescript
import { decode, encode } from "@planetarium/bencodex";
~~~~
Types
-----
| Bencodex | TypeScript ([`Value`]) |
|------------|-------------------------------|
| Null | `null` |
| Boolean | `boolean` |
| Integer | `bigint` (not `number`) |
| Binary | [`Uint8Array`] |
| Text | `string` |
| List | `Value[]` |
| Dictionary | [`Dictionary`] |
[`Value`]: https://deno.land/x/bencodex/mod.ts?s=Value
[`Dictionary`]: https://deno.land/x/bencodex/mod.ts?s=Dictionary
Benchmarks
----------
~~~~ console
$ deno bench
cpu: 12th Gen Intel(R) Core(TM) i5-1235U
runtime: deno 1.30.3 (x86_64-unknown-linux-gnu)
file:///home/dahlia/src/planetarium/bencodex.js/bench/comparison.bench.ts
benchmark time (avg) (min … max) p75 p99 p995
------------------------------------------------------------------- -----------------------------
encoding (bencodex.js) 28.96 µs/iter (17.24 µs … 10.43 ms) 22.25 µs 117.5 µs 221.98 µs
encoding (disjukr/bencodex) 66.01 µs/iter (39.36 µs … 4.38 ms) 55.58 µs 215.2 µs 313.14 µs
summary
encoding (bencodex.js)
2.28x faster than encoding (disjukr/bencodex)
decoding (bencodex.js) 7.73 µs/iter (6.35 µs … 16.97 ms) 6.92 µs 17.39 µs 30.93 µs
decoding (disjukr/bencodex) 45.76 µs/iter (31.2 µs … 5.08 ms) 46.35 µs 135.29 µs 185.85 µs
summary
decoding (bencodex.js)
5.92x faster than decoding (disjukr/bencodex)
~~~~
You can run the benchmarks by `deno bench`.
| An alternative take on implementing Bencodex in TypeScript/JavaScript | bencodex,javascript,typescript | 2023-02-22T07:12:43Z | 2023-04-13T06:31:12Z | null | 14 | 0 | 51 | 0 | 0 | 9 | null | LGPL-2.1 | TypeScript |
Rahim-Chan/qiankun-rewrite | main | <p align="center">
<a href="https://qiankun.umijs.org">
<img src="https://gw.alipayobjects.com/zos/bmw-prod/8a74c1d3-16f3-4719-be63-15e467a68a24/km0cv8vn_w500_h500.png" alt="qiankun" width="180" />
</a>
</p>
# qiankun-rewrite
> 针对 qiankun 关于 Element, Document 原型链上部分方法打上补丁,从而满足元素隔离的需求。
## 🤔 Motivation
当使用 qiankun 中`loadMicroApp`方法加载两个相同子应用时,其中会产生`样式冲突`、`选择器冲突`,由于 sandbox 中开启`strictStyleIsolation`模式会导致兼容性问题,进而选择了`experimentalStyleIsolation`模式来解决`样式冲突`的问题。
> 而开启该模式会导致类似 antd 中 Modal 框样式[丢失的问题](https://github.com/umijs/qiankun/issues/1316)
因此萌发了代理 Document\Element 原型链上的的方法,使得子应用操作元素的范围在缩小在其容器内,以下该项目的修改点,可以让你清楚评估风险:
## 👀 Change Points
- 📍 基础版本:qiankun@2.8.2版本拓展。
- 新增:`<qiankun-body>{template}</qiankun-body>`容器。
- 新增:`appInstanceMap`用于存储 app 实例信息(最外层容器节点)。
- 注入:`document`, `document.body`, `document.head`打上标记(用于判断是否需要执行 patch)
- 补丁:Document\Element 原型链上的方法
| Document | Element |
| -------------------------- | ---------------------- |
| getElementById | querySelector |
| getElementsByName | querySelectorAll |
| getElementsByClassName | getElementsByClassName |
| getElementsByTagName | getElementsByTagName |
| querySelector | appendChild |
| querySelectorAll | append |
| createElement | prepend |
| createElementNS | insertBefore |
| rawDocumentCreateElementNS | cloneNode |
| | removeChild |
| | replaceChild |
## 📦 Installation
```shell
$ yarn add qiankun-rewrite # or npm i qiankun-rewrite -S
```
## 📖 TODO
- [x] 元素隔离
- [ ] 路由响应隔离(doing)
- [ ] history 隔离
## 💿 SelfTest
Inside the `examples` folder, there is a sample Shell app and multiple mounted Micro FE apps. To get it running, first clone `qiankun`:
```shell
$ git clone https://github.com/umijs/qiankun.git
$ cd qiankun
```
Now install and run the example:
```shell
$ yarn install
$ yarn examples:install
$ yarn examples:start
```
Visit `http://localhost:3000`.

## 🎁 Acknowledgements
- [MicroApp](https://zeroing.jd.com/) inspired by DOM sandbox!
| null | frontend,javascript,mircofrontend,qiankun,typescript | 2023-02-23T14:59:51Z | 2023-03-02T00:44:55Z | null | 1 | 0 | 7 | 1 | 2 | 9 | null | MIT | TypeScript |
vojtechhabes/web-crawler | main | # Web crawler
Tento Node.js program jako pavouk prochází webové stránky a sbírá o nich různá data. Tyto cenné informace jsou pak ukládány do PostgreSQL databáze a slouží jako zdroj informací pro další analýzy a výzkum.
## Dokumentace
Dokumentace tohoto projektu je dostupná na [GitHub Wiki](https://github.com/vojtechhabes/web-crawler/wiki).
## Prezentace
Prezentace web crawleru a [Ding search](https://github.com/vojtechhabes/ding-search) se nachází na [vojhab.page.link/pva-prezentace](https://vojhab.page.link/pva-prezentace).
## Cíl projektu
Cílem tohoto projektu je vytvořit sofistikované kompletní řešení pro automatické procházení webových stránek, sbírání dat a jejich následné ukládání do databáze. Možnosti využití tohoto web crawlera jsou nekonečné - lze ho použít například pro vytvoření nového vyhledávače nebo pro provádění různých analýz dat.
### Vyhledávač
[Vyhledávač Ding](https://github.com/vojtechhabes/ding-search) je vytvořený na základě tohoto projektu. Ding je vyhledávač, který využívá data získaná z tohoto web crawlera a umožňuje uživatelům vyhledávat webové stránky. Vyhledávač je stále ve vývoji a v budoucnu bude obsahovat mnoho dalších funkcí.
# Použité technologie
- [Node.js](https://nodejs.org): Open-source runtime pro běh JavaScriptového kódu na straně serveru.
- [PostgreSQL](https://www.postgresql.org): Databáze, která nabízí široké spektrum funkcí pro správu a ukládání dat a umožňuje uživatelům efektivně ukládat a vyhledávat data.
- [TensorFlow.js](https://www.tensorflow.org/js): Je open-source knihovna pro strojové učení a práci s neuronovými sítěmi, kterou lze použít v JavaScriptu jak v prohlížeči, tak i na straně serveru pomocí Node.js.
## npm balíčky
V tomto projektu jsou použity následující npm balíčky:
- [node-postgres](https://www.npmjs.com/package/pg): Umožňuje přístup k PostgreSQL databázi.
- [cheerio](https://www.npmjs.com/package/cheerio): Dokáže zpracovávat HTML stránky.
- [axios](https://www.npmjs.com/package/axios): Pro HTTP požadavky.
- [dotenv](https://www.npmjs.com/package/dotenv): Načítá proměnné z .env souboru.
- [@tensorflow/tfjs](https://www.npmjs.com/package/@tensorflow/tfjs): Jedná se o npm balíček pro použití knihovny TensorFlow.js v projektu.
- [@tensorflow-models/universal-sentence-encoder](https://www.npmjs.com/package/@tensorflow-models/universal-sentence-encoder): Balíček umožňující použití modelu Universal Sentence Encoder.
## Spuštění
Návod na spuštění web crawleru se nachází v [dokumentaci](https://github.com/vojtechhabes/web-crawler/wiki/Spuštěn%C3%AD).
## Plánované změny a funkce
- [x] použít [pgvector](https://github.com/pgvector/pgvector) pro ukládání vnoření slov
- [x] pokud není dostupný popis stránky, vytvořit ho automaticky
- [ ] pokud nejsou dostupná klíčová slova stránky, extrahovat je pomocí [ml6team/keyphrase-extraction-distilbert-inspec](https://huggingface.co/ml6team/keyphrase-extraction-distilbert-inspec) (nebo podobného modelu)
- [x] použít [TensorFlow.js](https://www.tensorflow.org/js) místo Inference API k získávání vnoření slov
## Licence
Tento projekt je pod licencí [MIT](LICENSE).
## Tvůrce
[Vojtěch Habeš](https://www.github.com/vojtechhabes)
habes.vo.2022@ssps.cz
| Node.js web crawler, který prochází webové stránky a získává o nich různá data. | nodejs,npm,webcrawler,database,postgresql,javascript,bot,mit-license,search-engine,crawler | 2023-02-18T12:21:11Z | 2023-09-21T05:03:58Z | 2023-05-07T17:18:23Z | 2 | 8 | 100 | 0 | 0 | 9 | null | MIT | JavaScript |
CodingWithEnjoy/NextJs-Command-Tool | main | # NextJs-Command-Tool
دستورات yarn, npm, git, unix را یکجا داشته باشید 😊😊😊
اگه خوشتون اومد حتما پیج ما رو فالو کنید @codingwithenjoy
If you like this project , please follow us @codingwithenjoy
| دستورات yarn, npm, git, unix را یکجا داشته باشید 😊😊😊 | css,html,javascript,next,nextjs,react,reactjs,tailwind,tailwindcss,vercel | 2023-02-24T16:34:15Z | 2023-02-24T16:42:51Z | null | 1 | 0 | 6 | 0 | 0 | 9 | null | MIT | JavaScript |
radhikakhatrii/Forging-Your-Way | main | # Forging-Your-Way
[](https://www.codefactor.io/repository/github/qazalbash/forging-your-way)

A career counseling app.
# Prototype
| | | |
|:-------------------------:|:-------------------------:|:-------------------------:|
|<img width="1604" alt="communities" src="./dribbble-UI/communities_snip.png">| <img width="1604" alt="main" src="./dribbble-UI/main_snip.png">| <img width="1604" alt="consultation" src="./dribbble-UI/consultation_snip.png">|
| Community | Mainscreen | Consultation |
|<img width="1604" alt="profile" src="./dribbble-UI/profile_snip.png">| <img width="1604" alt="dashboard" src="./dribbble-UI/dashboard_snip.png">| <img width="1604" alt="settings" src="./dribbble-UI/settings_snip.png">|
| Profile | Dashboard | Settings |
# TestCases
Test Cases: [Google Sheet](https://docs.google.com/spreadsheets/d/1Q5QxBySwvrjjQQqevilt9sytoBQ9uKp8/edit#gid=2122455480)
# Contributors
<a href="https://github.com/Qazalbash/Forging-Your-Way/graphs/contributors">
<img src="https://contrib.rocks/image?repo=Qazalbash/Forging-Your-Way" />
</a>
Made with [contrib.rocks](https://contrib.rocks).
| React based career counseling app. | app,firebase,mobile-app,javascript,react,react-native,college,counselling,education,highschool | 2023-02-20T06:01:27Z | 2024-05-20T07:37:27Z | null | 4 | 0 | 43 | 0 | 0 | 9 | null | MIT | JavaScript |
tjay1760/Awesome-books | master | <a name="readme-top"></a>
<div align="center">
<br/>
<h3><b>Awesome books README</b></h3>
</div>
<!-- TABLE OF CONTENTS -->
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
# 📖 [Awesome Books] <a name="about-project"></a>
> The Awesome books Websites creates a catalogue of one's favorite books
**[Awesome Books]** is a books catalogue
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
> HTML5
> CSS
> Javascript
<!-- Features -->
### Key Features <a name="key-features"></a>
> Describe between 1-3 key features of the application.
- **[User can Add books]**
- **[User can remove books]**
- **[Books are stored in local storage]**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LIVE DEMO -->
## 🚀 Live Demo <a name="live-demo"></a>
> Page can be viewed by opening the index.html on your browser
<p align="right">(<a href="#readme-top">back to top</a>)</p>
To get a local copy up and running, follow these steps.
### Prerequisites
In order to run this project you need:
> Install Git in your computer Git
> Any text editor VSCode
> Install linters on your local env't
### Setup
Clone this repository to your desired folder:
git clone https://github.com/tjay1760/Awesome-books.git
<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.
👤 **Kelvin Irungu**
- GitHub: [@githubhandle](https://github.com/Kel-nana)
- Twitter: [@twitterhandle](https://twitter.com/irungu69/with_replies)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/kelvin-irungu-838923249/?originalSubdomain=ke)
👤 **John Thiongo**
- GitHub: [@githubhandle](https://github.com/tjay1760)
- Twitter: [@twitterhandle](https://twitter.com/twitterhandle)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/john-thiongo-10484347/)
<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.
- [ ] **[Adding Navigation Menu]**
- [ ] **[User friendly Styling]**
- [ ] **[Adding navigation Menu]**
<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>
> Write a message to encourage readers to support your project
If you like this project give it a ⭐️
<p align="right">(<a href="#readme-top">back to top</a>)</p>
I would like to thank Microverse
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LICENSE -->
## 📝 License <a name="license"></a>
This project is [MIT](./license) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| The Awesome books Websites creates a catalogue of one's favorite books | css,html,javascript | 2023-02-20T14:31:05Z | 2023-02-24T06:20:47Z | null | 2 | 4 | 23 | 1 | 0 | 9 | null | MIT | JavaScript |
SaneMyburg/My-Awesome-Books | main | <a name="readme-top"></a>
<div align="center">
<h3><b>My Awesome Books App</b></h3>
</div>
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#triangular_flag_on_post-deployment)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [📝 License](#license)
# 📖 [Awesome-Books] <a name="about-project"></a>
> This is a single page app that allows you to store your favourite books.
**[Awesome Books]** is ...
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
> JavaScript ES Modules
### Key Features <a name="key-features"></a>
> It is a single page app, it has a function to add and remove books.
- **[Add Book]**
- **[Remove]**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🚀 Live Demo <a name="live-demo"></a>
- [Live Demo Link](https://SaneMyburg/github.io)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 💻 Getting Started <a name="getting-started"></a>
> Get a link of this repository and clone it to your local machine.
To get a local copy up and running, follow these steps:
- Get a copy of the project
- Come into the project directory
- Open the project using code editor of your choice
- Open your prefered browser
### Prerequisites
In order to run this project you need:
- You need a GitHub account.
- You need to have a Git client installed on your computer.
- You need to have a copy of the HTML CSS website codebase on your computer.
- You need a code Editor of your choice.
### Setup
Clone this repository to your desired folder:
```sh
cd my-folder
git clone https://github.com/SaneMyburg/My-Awesome-Books.git
```
### Install
Install this project with:
### Usage
To run the project, simply run the HTML document to preferrably Google Chrome.
### Run tests
To run tests, you can use Chrome Developer tools, simply run the HTML document in Google Chrome and right-click the HTML element you want to inspect. Click on "Inspect" and you will have the tools to run, analyze, and even debug the code.
### Deployment
You can deploy this project using:
Github Pages
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 👥 Authors <a name="authors"></a>
> Sane Myburg
👤 **Author1**
- GitHub: [@githubhandle](https://github.com/SaneMyburg)
- Twitter: [@twitterhandle](https://twitter.com/@SaneMyburg)
- LinkedIn: [LinkedIn](https://linkedin.com/in/SaneMyburg)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
- [ ] **Advanced styles**
## 🤝 Contributing <a name="contributing"></a>
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](https://github.com/SaneMyburg/My-Awesome-Books/issues/).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ⭐️ 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>
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank [Microverse](www.microverse.com)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LICENSE -->
## 📝 License <a name="license"></a>
This project is [MIT](./LICENSE) licensed.
_NOTE: we recommend using the [MIT license](https://choosealicense.com/licenses/mit/) - you can set it up quickly by [using templates available on GitHub](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). You can also use [any other license](https://choosealicense.com/licenses/) if you wish._
<p align="right">(<a href="#readme-top">back to top</a>)</p> | The awesome books is a single page app that stores all your favourite books, you can add new book, or delete books. | css,html,javascript | 2023-02-18T16:29:51Z | 2023-02-20T09:44:43Z | null | 1 | 1 | 11 | 1 | 0 | 9 | null | MIT | JavaScript |
anita00001/Awesome-Book-week1 | master | <a name="readme-top"></a>
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Prerequisites](#prerequisites)
- [Setup](#setup)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#triangular_flag_on_post-deployment)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [❓ FAQ (OPTIONAL)](#faq)
- [📝 License](#license)
# 📖 Awesome Books <a name="about-project"></a>
**Awesome Books** is a website which allows a user to add and remove the collection of books from a BookList.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
This project is built using HTML, CSS and JavaScript.
<details>
<summary>HTML</summary>
<ul>
<li><a href="https://html.com/#What_is_HTML">index.html</a></li>
</ul>
</details>
<details>
<summary>CSS</summary>
<ul>
<li><a href="https://html.com/css/#What_is_CSS">style.css</a></li>
</ul>
</details>
<details>
<summary>Javascript</summary>
<ul>
<li><a href="https://www.javascripttutorial.net/javascript-dom/document-object-model-in-javascript/">script.js</a></li>
</ul>
</details>
### Key Features <a name="key-features"></a>
- **No linter errors**
- **Use of correct GitHub flow**
- **Documented in a professional way**
- **Follow best practices for HTML, CSS and Javascript**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🚀 Live Demo <a name="live-demo"></a>
- [Live Demo Link](https://anita00001.github.io/Awesome-Book/)
<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:
- **Visual Studio Code**
- **Git Bash**
### Setup
Clone this repository to your desired folder:
- **cd your-folder**
- **git clone https://github.com/anita00001/Awesome-Book**
### Install
Installation Not Required.
### Usage
Run the project on Visual Studio Code Live Server.
### Run tests
Not Available for this project.
### Deployment
You can deploy this project using:
- GitHub Pages
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 👥 Authors <a name="authors"></a>
👤 **Anita Sharma**
- GitHub: [@anita00001](https://github.com/anita00001)
- Twitter: [@anitaa_sharmaa](https://twitter.com/anitaa_sharmaa)
- LinkedIn: [anitaa-sharmaa](https://www.linkedin.com/in/anitaa-sharmaa/)
👤 **Vangelis Fotiadis**
- GitHub: [@githubhandle](https://github.com/vangelif)
- Twitter: [@twitterhandle](https://twitter.com/vangfot)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/vangfot/)
👤 **Benard Asiimwe Bataringaya**
- GitHub: [@githubhandle](hhttps://github.com/King-Benx)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/benard-asiimwe-bataringaya-4b673672/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
- **Build a complete website for user to add and remove desired Book**
<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/anita00001/Awesome-Book/issues).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ⭐️ Show your support <a name="support"></a>
If you like this project feel comfortable to endorse the authors.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🙏 Acknowledgments <a name="acknowledgements"></a>
We would like to thank my coding partners, mentors and Microverse for their support in building the 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> | The book managing app allows users to add entries for a book using the title and author name, reject duplicate entries, and delete books. Built with HTML, CSS and JavaScript. | css3,html,javascript | 2023-02-19T03:20:21Z | 2023-02-19T04:21:38Z | null | 1 | 2 | 8 | 0 | 0 | 9 | null | MIT | JavaScript |
Leeoasis/AwesomeBooks-Es6 | main | # 📗 Table of Contents
- [📖 About the Project](#Awesome books)
- [🛠 Built With](#built-with)
- [Tech Stack](#html-css)
- [Key Features](#home-page)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Run tests](#run-tests)
- [Deployment](#triangular_flag_on_post-deployment)
- [👥 Authors](#Leslie_Gudo)
- [🔭 Future Features](#the other pages)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#microverse)
- [❓ FAQ (OPTIONAL)](#faq)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
**[Awesome-books]** is a website that basically displays a list of the user favourite books. It has a function to add new books or remove any unwanted books from the list.
## 🛠 Built With <a name="html, css and JavaScript"></a>
### Tech Stack <a name="html, css and JavaScript"></a>
<details>
<ul>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/HTML">HTML</a></li>
</ul>
</details>
<details>
<ul>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/CSS">CSS</a></li>
</ul>
</details>
<details>
<ul>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript">JavaScript</a></li>
</ul>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **[Add-books-section]**
- **[Book-display]**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LIVE DEMO -->
<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.
### Setup
Clone this repository to your desired folder using the following command; git clone https://github.com/Leeoasis/Awesome-books.git
### Run tests
To run tests, run the following command: npx hint . and npx stylelint "\*_/_.{css,scss}" and npx eslint .
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 **Leslie Gudo**
- GitHub: [@githubhandle](https://github.com/Leeoasis)
- Twitter: [@twitterhandle](https://twitter.com/gudo_leslie)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/leslie-gudo-b08a4)
👤 **Sane Myburg**
- GitHub: [@githubhandle](https://github.com/SaneMyburg)
- Twitter: [@twitterhandle](https://twitter.com/@SaneMyburg)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/sane-myburg)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- [ ] **[home_page]**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- CONTRIBUTING -->
## 🤝 Contributing <a name="contributing"></a>
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](https://github.com/Leeoasis/Awesome-books/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 then don't forget to give a star ⭐ on this repository.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LICENSE -->
## 📝 License <a name="license"></a>
This project is [MIT](./LICENSE.md) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| Awesome-books is a website that basically displays a list of the user favourite books. It has a function to add new books or remove any unwanted books from the list. | css,css3,html,javascript | 2023-02-20T11:04:21Z | 2023-02-20T13:34:05Z | null | 1 | 1 | 10 | 0 | 0 | 9 | null | MIT | JavaScript |
shubhambhoyar077/awesome-book | main | <a name="readme-top"></a>
<div align="center">
<h1><b>Awesome books</b></h1>
</div>
<!-- TABLE OF CONTENTS -->
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#triangular_flag_on_post-deployment)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [❓ FAQ (OPTIONAL)](#faq)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
# 📖 [Awesome Books] <a name="about-project"></a>
**[Awesome Books]** is a book store project. Created using HTML, CSS and Javascript.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>Client</summary>
<ul>
<li>HTML, CSS and Javascript</li>
</ul>
</details>
<details>
<summary>Server</summary>
<ul>
<li></li>
</ul>
</details>
<details>
<summary>Database</summary>
<ul>
<li></li>
</ul>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **[Simple Design]**
- **[Support all device size]**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LIVE DEMO -->
## 🚀 Live Demo <a name="live-demo"></a>
- [Live Demo](https://shubhambhoyar077.github.io/awesome-book/)
<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: any web-browser.
### Setup
Clone this [repository](https://github.com/shubhambhoyar077/awesome-books) to your desired folder.
### Install
This project does not require installation.
### Usage
To run the project, open index.html in any web browser.
### Run tests
To run tests, open index.html in any web browser.
### Deployment
You can deploy this project using: Project is incomplete.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 **Shubham Bhoyar**
- GitHub: [@shubhambhoyar077]
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- [ ] **[Support any device resolution]**
- [ ] **[Navigation bar]**
<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 leave a ⭐️.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank Microverse.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FAQ (optional) -->
## ❓ FAQ (OPTIONAL) <a name="faq"></a>
- **[Can I use this project for my website?]**
- [It's GNU license, feel free to use as you like.]
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LICENSE -->
## 📝 License <a name="license"></a>
This project is [GNU](./LICENSE) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| Awesome Book, Created using ES6 javascript. | css,html,javascript | 2023-02-20T07:46:33Z | 2023-02-20T12:34:37Z | null | 1 | 4 | 42 | 1 | 0 | 9 | null | MIT | JavaScript |
Sandun-Induranga/Car-Rental-System | master | # 🚘 Car Rental System 🚘
**📲 Full Stack Web Application 📲**
<br>
<br>
***💻 Technologies 💻***
*Backend Technologies*
* Java
* Spring Web MVC
* Spring Data JPA
* Maven
* MySQL
* Hibernate
* Tomcat Server
* Lombok
*Frontend Technologies*
* Html
* CSS
* JavaScript
* jQuery
* Ajax
* Bootstrap
* Sweet Alert
**Admin Dashboard**

**User Car Page**

| Full Stack Web Application using Spring framework as backend. | bootstrap,css3,hibernate,html5,java,javascript,jquery,lombok,maven,mysql | 2023-02-10T16:00:44Z | 2023-03-29T15:55:24Z | null | 2 | 0 | 686 | 0 | 0 | 9 | null | null | HTML |
AbbasSarwar/Abbas-Portfolio | main | <a name="readme-top"></a>
<h3><b>Abbas Portfolio 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)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [❓ FAQ (OPTIONAL)](#faq)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
# 📖 [Abbas Portfolio] <a name="about-project"></a>
> Hello , This is a simple mobile first Portfolio Project.
**[Abbas Portfolio]** is a great responsive website for mobile and has a form that takes valid information and it same goes for the desktop version too However it's working fine with screens 375px -1920px.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>HTML</summary>
</details>
<details>
<summary>CSS</summary>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **[Simple Template]**
- **[Menu clickable]**
- **[Hover Buttons]**
- **[Responsive desplay]**
- **[colorful texts]**
- **[About ]**
- **[Icons ]**
- **[Validation Form]**
- **[Desplay Grid & Flex]**
- **[Aligned items]**
- **[Desktop screens supported]**
<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://abbassarwar.github.io/Abbas-Portfolio/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- GETTING STARTED -->
## 💻 Getting Started <a name="getting-started"></a>
To get a local copy up and running, follow these steps.
### Prerequisites
In order to run this project you need:
## Recommendation
1. A good Computer
2. Having proper knowledge about Css and Html **necessary**
* Proceed to live demo for first look.
* cd Mobile-First
* git clone https://github.com/AbbasSarwar/Abbas-Portfolio.git
* cd Abbas-Portfolio
* Go live through in VS code for further.
* Here we Go....
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
> Mention all of the collaborators of this project.
👤 **Author1**
- GitHub: [@AbbasSarwar](https://github.com/AbbasSarwar)
- Twitter: [@Abbas_sDev](https://twitter.com/Abbas_sDev)
- LinkedIn: [Abbas-Sarwar](https://www.linkedin.com/in/abbas-sarwar-4a0b16257/)
- outline project: [video](https://www.loom.com/share/615af7a9894d44b5af821be911da42f0)
👤 **Author2**
- GitHub: [@Abmart0803](https://github.com/Abmart0803)
- Twitter: [@MartinsAbmart](https://twitter.com/MartinsAbmart)
- LinkedIn: [@abmartcodingworld](https://www.linkedin.com/in/abmartcodingworld/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- [ ] **[Interactive bars]**
- [ ] **[Advance navigation]**
- [ ] **[Great flexability]**
- [ ] **[Fully advance]**
<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/AbbasSarwar/Abbas-Portfolio/issues/7).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- SUPPORT -->
## ⭐️ Show your support <a name="support"></a>
If you like my Portfolio statup project kindly comment or Follow me on LinkedIn, Twitter & twitter and always Your feedback will be really appreciated I have created issue if you want to share.
Thanks.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank you All Microverse community.
<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>
| I have built this portfolio site after completing my first module on the Microverse platform. | css,html,javascript,portfolio | 2023-02-15T12:57:39Z | 2023-09-07T07:27:31Z | null | 4 | 11 | 135 | 0 | 1 | 9 | null | null | CSS |
open-ish/utility | master | # Utility
This project was generated as a developer's utility belt, where they might find solutions to be used independently on the system solution (business-wise) and js framework.
## Project structure
It's a monorepo with npm packages, all installable independently
- **NX**: a set of extensible dev tools for monorepos, which helps us build and manage multiple projects within a single repository;
- **Typescript**: a typed superset of JavaScript that compiles to plain JavaScript, providing powerful tools for building large-scale applications;
- **Semantic-release**: semantic-release-plus is a drop in replacement for semantic release that adds some enhancements.
## Packages
- [trycatchfy](./packages/trycatchfy/): Standardize the way you try/catch HTTP request - [example](https://github.com/tassioFront/frontend-pattern/blob/main/src/hooks/useGetGHInfoByUserName/useGetGHInfoByUserName.ts#L47);
- [storagefy](./packages/storagefy/): LocalStorage helper - [example](https://github.com/tassioFront/frontend-pattern/blob/main/src/helpers/useInfo.ts#L6);
| This project was generated as a developer's utility belt, where they might find solutions to be used independently on the system solution (business-wise) and js framework. | javascript,js,localstorage,nx,trycatch,typescript,utility | 2023-02-15T00:23:32Z | 2023-04-04T22:10:42Z | 2023-04-04T22:10:42Z | 2 | 29 | 135 | 0 | 0 | 9 | null | MIT | TypeScript |
Leeoasis/ToDo-List | main | # 📗 Table of Contents
- [📖 About the Project](#To Do List)
- [🛠 Built With](#built-with)
- [Tech Stack](#html-css)
- [Key Features](#home-page)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Run tests](#run-tests)
- [Deployment](#triangular_flag_on_post-deployment)
- [👥 Authors](#Leslie_Gudo)
- [🔭 Future Features](#the other pages)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#microverse)
- [❓ FAQ (OPTIONAL)](#faq)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
**[To-Do-list]** is a website that basically displays a list of tasks the user has to perfom. It has a function to add new tasks or remove completed tasks from the list.
## 🛠 Built With <a name="html, css and JavaScript"></a>
### Tech Stack <a name="html, css and JavaScript"></a>
<details>
<ul>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/HTML">HTML</a></li>
</ul>
</details>
<details>
<ul>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/CSS">CSS</a></li>
</ul>
</details>
<details>
<ul>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript">JavaScript</a></li>
</ul>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **[Add-new-task]**
- **[Task-display]**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LIVE DEMO -->
Click on this link to view the live demo: ()
<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.
### Setup
Clone this repository to your desired folder using the following command; git clone https://github.com/Leeoasis/ToDo-List.git
### Run tests
To run tests, run the following command: npx hint . and npx stylelint "\*_/_.{css,scss}" and npx eslint .
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 **Leslie Gudo**
- GitHub: [@githubhandle](https://github.com/Leeoasis)
- Twitter: [@twitterhandle](https://twitter.com/gudo_leslie)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/leslie-gudo-b08a4)
👤 **Lengushuru Charles**
- GitHub: [@githubhandle](https://github.com/lengushuru)
- Twitter: [@twitterhandle](https://twitter.com/ngushuru)
- LinkedIn: [LinkedIn](https://linkedin.com/in/lengushuru-charles-a09371111/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- [ ] **[home_page]**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- CONTRIBUTING -->
## 🤝 Contributing <a name="contributing"></a>
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](https://github.com/Leeoasis/ToDo-List/issues).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- SUPPORT -->
## ⭐️ Show your support <a name="support"></a>
If you like this project then don't forget to give a star ⭐ on this repository.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LICENSE -->
## 📝 License <a name="license"></a>
This project is [MIT](./LICENSE.md) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| To-Do-list is a website that basically displays a list of tasks the user has to perfom. It has a function to add new tasks or remove completed tasks from the list. | css,html,javascript,testing,webpack | 2023-02-20T22:06:04Z | 2023-03-03T11:52:36Z | null | 2 | 5 | 37 | 3 | 0 | 9 | null | MIT | JavaScript |
Reynanwq/Happy-Cake | main | # Happy-Cake

> Status: Developing ⚠️
<h2 align="center"> 🛠 Technologies Used: </h2>
<table align="center">
<tr>
<td>HTML</td>
<td>CSS</td>
<td>JavaScript</td>
<td>Git</td>
</tr>
<table>
---
<h2 align="center"> 🤓 Contato</h2>
<p align="center">reynanwq@gmail.com</p>
---
<h2 align="center">Como Contribuir 💪</h2>
```
- Fork o projeto
- Cria uma nova branch com suas mudanças:
$ git checkout -b my-feature
- Salve suas mudanças e crie uma mensagem de commit falando o que fez:
$ git commit -m "feature: My new feature"
- Envie suas mudanças:
$ git push origin my-feature
```
---
| A confeitaria que vai deixar a sua vida mais doce. | css,html,javascript | 2023-02-24T22:22:32Z | 2023-04-17T10:46:30Z | null | 3 | 2 | 131 | 0 | 3 | 8 | null | null | CSS |
rivasbolinga/math-magicians | dev | <div align="center">
<img src="https://user-images.githubusercontent.com/103900838/219034373-8a1ee6a4-9d0a-469b-a795-e9de496403a3.svg"
alt="logo" width="140" height="auto" />
<br/>
# 📖 MATH_MAGICIANS <a name="about-project"></a>
</div>
<img width="1007" align="center" alt="Screenshot 2023-02-14 at 09 32 47" src="https://user-images.githubusercontent.com/103900838/220071889-dc82ea13-d028-435d-84bd-7b8ede9ac33f.png">
<div align="center">
</div>
<a name="about-project"></a>
<!-- PROJECT DESCRIPTION -->
Welcome to Math Magicians, an innovative website built with React that empowers you to become a math magician yourself. With our user-friendly calculator, you can effortlessly perform simple mathematical operations and explore the fascinating world of numbers. Math Magicians is an integral part of the third module of the Microverse program curriculum, dedicated to mastering React and its powerful capabilities
<!-- 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)
- [🙏 Acknowledgements](#acknowledgements)
- [🔭 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://reactjs.org/" target="_blank" rel="noreferrer">
<img align="center" src="https://cdn-icons-png.flaticon.com/512/1183/1183672.png" alt="react" width="60" height="60"/></a>
<!-- Features -->
### Key Features <a name="key-features"></a>
<!-- > Describe between 1-3 key features of the application.-->
- [ ] **Totally responsive**
- [ ] **Pop-up menu for mobile version**
- [ ] **three pages: home, quote and calculator**
- [ ] **Calculator ot make simple operations**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LIVE DEMO -->
## 🚀 Live Demo <a name="live-demo"></a>
You can have a Live Demo: https://react-m-magicians.onrender.com/
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- GETTING STARTED -->
## 💻 Getting Started <a name="getting-started"></a>
To get a local copy up and running, follow these steps.
<!-- PREREQUISITES -->
### 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 -->
### Setup
- [ ] Link your PC to GitHub
- [ ] Clone this repository to your desired folder:
```
git clone https://github.com/rivasbolinga/React-Math-magicians.git
```
- [ ] Open the file in your code editor
<!-- INSTALL -->
### Install
Install this project with:
```
npm install
```
### Instal linters for React and Redux:
Here the link to install your linters: https://github.com/microverseinc/linters-config
<!-- USAGE -->
### Usage
To run the project, execute the following command:
```
npm start
```
<!-- RUN TESTS -->
### Run tests
To run Stylelint and ESLint tests, run the following commands respectively:
```
npx stylelint "**/*.{css,scss}"
```
```
npx eslint "**/*.{js,jsx}"
```
<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>
- [ ] **Previous and current operantion in the display opf the calculator**
- [ ] **Improve styling**
- [ ] **More problems**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank ****
<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/React-Math-magicians/blob/1-setup/MIT.md) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| A webapp that hosts 3 mathematical problems on the homepage, a calculator where you can solve these problems and a nice final mathematical quote. | css,html,javascript,react,sass | 2023-02-13T09:39:25Z | 2023-07-14T14:53:09Z | null | 1 | 9 | 62 | 2 | 2 | 8 | null | null | JavaScript |
ngeelani48/To-Do_List | main | <a name="readme-top"></a>
<div align="center">
<br/>
<h3><b>To DO List</b></h3>
</div>
# 📗 Table of Contents
- [📗 Table of Contents](#-table-of-contents)
- [📖 \[To Do List\] ](#-to-do-list-)
- [🛠 Built With ](#-built-with-)
- [Tech Stack ](#tech-stack-)
- [Key Features ](#key-features-)
- [🚀 Live Demo ](#-live-demo-)
- [💻 Getting Started ](#-getting-started-)
- [Prerequisites](#prerequisites)
- [Setup](#setup)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#deployment)
- [👥 Authors ](#-authors-)
- [🔭 Future Features ](#-future-features-)
- [🤝 Contributing ](#-contributing-)
- [⭐️ Show your support ](#️-show-your-support-)
- [🙏 Acknowledgments ](#-acknowledgments-)
- [📝 License ](#-license-)
# 📖 [To Do List] <a name="To Do List: Project setup with WebPack"></a>
**[To Do List]** is a tool that helps to organize your day. It simply lists the things that you need to do and allows you to mark them as complete. You can delete,edit and add more tasks.
## 🛠 Built With <a name="Visual Studio Code"></a>
### Tech Stack <a name="JavaScript HTML & CSS"></a>
- HTML
- CSS
- Javascript ES6
- Webpack
<!-- Features -->
### Key Features <a name="key-features"></a>
- **Adding task**
- **Removing task**
- **Completing task using check**
- **Removing all completed task using button**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LIVE DEMO -->
## 🚀 Live Demo <a name="live-demo"></a>
- [https://ngeelani48.github.io/To-Do_List/dist/]
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 💻 Getting Started <a name="getting-started"></a>
If you are a new developer then you can learn basic UI feature from this project.
To get a local copy up and running, follow these steps.
### Prerequisites
In order to run this project you need:
Browser setup in your computer
### Setup
Clone this repository to your desired folder:
```sh
cd my-folder
https://github.com/ngeelani48/To-Do_List.git
```
### Install
Install this project with:
- [Git](https://git-scm.com/downloads)
- [Node](https://nodejs.org/en/download/)
### Usage
To run the project, execute the following command:
- After Cloning this repo to your local machine
- Open the `index.html` in your browser
- Open with Live Server
### Run tests
To track linter errors locally follow these steps:
Download all the dependencies run:
```
npm install
```
Track HTML linter errors run:
```
npx hint .
```
Track CSS linter errors run:
```
npx stylelint "**/*.{css,scss}"
```
Track JavaScript linter errors run:
```
npx eslint .
```
Track Jest Test run:
```
npm test
```
### Deployment
You can deploy this project using:
(https://ngeelani48.github.io/To-Do_List/dist/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 👥 Authors <a name="authors"></a>
👤 **Muhammad Nafees**
- GitHub: [@ngeelani48](https://github.com/ngeelani48)
- Twitter: [@twitterhandle](https://twitter.com/ngeelani48)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/m-n-geelani-3446097275/)
👤 **Sane Myburg**
- GitHub: [@SaneMyburg](https://github.com/SaneMyburg)
- Twitter: [@SAneMyburg](https://twitter.com/SaneMyburg)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/SaneMyburg/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
- [Add some more updates] **[new_feature_1]**
<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 please give your valuable comments.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank my coding partners for their help and support and Microvers for this oppertunity.
<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>
| To Do List is a tool that helps to organize your day. It simply lists the things that you need to do and allows you to mark them as complete. You can delete,edit and add more tasks. | javascript,webpack | 2023-02-22T04:08:01Z | 2023-03-03T10:42:59Z | null | 2 | 5 | 44 | 5 | 0 | 8 | null | MIT | JavaScript |
gsmalik030/Math-Magicians | dev | <a name="readme-top"></a>
# 📗 Table of Contents
- [📗 Table of Contents](#-table-of-contents)
- [📖 Math magicians ](#-math-magicians-)
- [🛠 Built With ](#-built-with-)
- [Tech Stack ](#tech-stack-)
- [Key Features ](#key-features-)
- [🚀 Live Demo ](#-live-demo-)
- [💻 Getting Started ](#-getting-started-)
- [Prerequisites](#prerequisites)
- [Setup](#setup)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#deployment)
- [👥 Author ](#-author-)
- [🔭 Future Features ](#-future-features-)
- [🤝 Contributing ](#-contributing-)
- [⭐️ Show your support ](#️-show-your-support-)
- [🙏 Acknowledgments ](#-acknowledgments-)
- [📝 License ](#-license-)
# 📖 Math magicians <a name="about-project"></a>
**Math magicians** is a website for all fans of mathematics.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>Build With</summary>
<ul>
<li><a href="https://html.com/">HTML</a></li>
<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.js</a></li>
</ul>
</details>
### Key Features <a name="add components"></a>
- Do all your maths with this web app
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🚀 Live Demo <a name="live-demo"></a>
- [Live Demo](https://math-magicians-ohr8.onrender.com/calculator)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 💻 Getting Started <a name="getting-started"></a>
### Prerequisites
### Setup
Clone this repository to your desired folder:
```sh
cd math-magicians
git clone https://github.com/gsmalik030/Math-Magicians.git
```
### Install
Install this project with:
```sh
cd math-magicians
git clone https://github.com/gsmalik030/Math-Magicians.git
npm install
```
### Usage
Use this app by runing:
```sh
cd math-magicians
git clone https://github.com/gsmalik030/Math-Magicians.git
npm install
npm start
```
### Run tests
Test this app by runing:
```sh
cd math-magicians
git clone https://github.com/gsmalik030/Math-Magicians.git
npm install
npm test
```
### Deployment
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 👥 Author <a name="authors"></a>
👤 **Ghulam Subbhani(Malik)**
- GitHub: [@githubhandle](https://github.com/gsmalik030)
- Twitter: [@twitterhandle](https://twitter.com/gsmalik030)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/ghulam-subbhani-4b1281252/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
- [ ] **Use react hooks**
- [ ] **Implement full website**
<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/gsmalik030/Math-Magicians/issues).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ⭐️ Show your support <a name="support"></a>
If you like this project, please, give a star.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank to all my Microverse partners.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 📝 License <a name="license"></a>
This project is [MIT](MIT.md) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| "Math magicians" is a website for all fans of mathematics. It is a Single Page App (SPA) that allows users to: Make simple calculations. Read a random math-related quote. | css,html,javascript | 2023-02-13T09:58:38Z | 2023-07-04T09:11:33Z | null | 2 | 6 | 44 | 0 | 0 | 8 | null | null | JavaScript |
mwismann/to-do-list | main |
<a name="readme-top"></a>
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#triangular_flag_on_post-deployment)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [📝 License](#license)
# 📖 [to-do-list] <a name="about-project"></a>
**[to-do-list]** is a new project where I set up a repo with webpack configurations for the first time as practice exercise. After that I proceeded to set up the workflows. Then added markup content for the html template to be used with Html Webpack Plugin. From there on, I applied ES6 recommended practices to optimize the projects interactivity.
## 🛠 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 used in this project.</li>
</ul>
</details>
### Key Features <a name="key-features"></a>
- **[Correct set up of webpack.]**
- **[Correct set up of Linters and GitHub Flows.]**
- **[Dynamic rendering of list elements inside the to-do list]**
- **[List renders on page load]**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🚀 Live Demo <a name="live-demo"></a>
- https://mwismann.github.io/to-do-list/dist/
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 💻 Getting Started <a name="getting-started"></a>
To get a local copy up and running, follow these steps.
### Prerequisites
- You don't need any previous installation in order to run this project
### Setup
Clone this repository to your desired folder:
```sh
cd my-folder
git clone https://github.com/mwismann/to-do-list.git
```
### Install
- This is not an installable project
### Usage
- There's no command required to run the project
### Run tests
- There's no test for this project
### Deployment
- This is not a deployable project
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 👥 Authors <a name="authors"></a>
👤 **Mathias Wismann**
- GitHub: [@mwismann](https://github.com/mwismann)
- Twitter: [@mathias_wismann](https://twitter.com/mathias_wismann)
- LinkedIn: [Mathias Wismann](https://www.linkedin.com/in/math%C3%ADas-wismann/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
- **[Features allowing user to add a task]**
- **[Features allowing user to remove all completed task]**
- **[Features allowing user to edit tasks' description]**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🤝 Contributing <a name="contributing"></a>
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](../../issues/).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ⭐️ Show your support <a name="support"></a>
If you like this project it would be a great help if you could star this repo!
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank to Microverse for providing me the opportunity and inspiration for this work.
<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 a minimalist web app where users are able to add, edit, remove, check, and clear all checked tasks from a to-do list. The app takes advantage of the webpack bundler for better componentization. | css,html,javascript,webpack | 2023-02-21T19:35:31Z | 2023-03-02T21:30:14Z | null | 1 | 5 | 32 | 0 | 0 | 8 | null | MIT | JavaScript |
younes-nb/teslang-compiler | master | # Telslang Compiler
## Install Dependencies
```sh
npm i
```
## Run
```sh
npm run tes <your-app-path>
```
### For example
```sh
npm run tes ./examples/example2.tes
```
| A compiler for teslang language | compiler,javascript,nearley,typescript | 2023-02-11T17:29:22Z | 2023-02-11T17:32:57Z | null | 1 | 0 | 6 | 0 | 0 | 8 | null | null | TypeScript |
Booze33/My-Portfolio | main | # My-Portfolio
<a name="readme-top"></a>
<div align="center">
</div>
<!-- TABLE OF CONTENTS -->
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#triangular_flag_on_post-deployment)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
# 📖 [Portfolio: Mobile setup] <a name="about-project"></a>
**[Portfolio: Mobile setup]** is a project for week 1.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>Client</summary>
<ul>
<li><a href="https://reactjs.org/">HTML and CSS</a></li>
</ul>
</details>
<details>
<ul>
<li><a href="https://expressjs.com/">Express.js</a></li>
</ul>
</details>
<details>
<ul>
<li><a href="https://www.postgresql.org/">PostgreSQL</a></li>
</ul>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **Install stylelint for CSS**
- **Install Webhint**
- **Design your page**
<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://booze33.github.io/My-Portfolio/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- GETTING STARTED -->
## 💻 Getting Started <a name="getting-started"></a>
To get a local copy up and running, follow these steps.
- Copy branch URL
- Choose a local folder at the destination
- Paste the URL
- Clone the branch
### Prerequisites
In order to run this project you need:
<!--
Example command:
```sh
gem install rails
```
-->
### Setup
Clone this repository to your desired folder:
### Install
Install this project with:
- Copy the code and run it in your terminal
- Wait for it to install
- Then run the npm code in your terminal
### Usage
To run the project, execute the following command:
-Right click on the html file
-Click on live previeew
-A new tab will open on your browser running the page
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 👥 Authors <a name="authors"></a>
👤 **Author1**
- GitHub: [@Booze33](https://github.com/Booze33)
- Twitter: [@twitterhandle](https://twitter.com/twitterhandle)
- LinkedIn: [LinkedIn](https://linkedin.com/in/linkedinhandle)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
- [ ] **Add javascript to make page interactive**
- [ ] **Add more sttling to the page**
- [ ] **Keep the page simple**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🤝 Contributing <a name="contributing"></a>
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](../../issues/).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ⭐️ Show your support <a name="support"></a>
If you like this project...
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank...
<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>
## Walk through video
here is a video on how i created my portfolio:[Video](https://www.loom.com/share/ef6f79faaaaf4f22b27d619f594b3164)
| This is my portfolio, it contains some of my best projects and also contains my contact and information. I built this using HTML, CSS and JavaScript. | css,html,javascript | 2023-02-15T17:06:57Z | 2023-04-06T22:06:12Z | null | 3 | 16 | 118 | 1 | 0 | 8 | null | GPL-3.0 | CSS |
federicaulzurrun/porfolio_setup_mobileFirst | main | # 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [📝 License](#license)
# 📖 [My Porfolio] <a name="about-project"></a>
**Porfolio** it's the beggining of the creation of my porfolio page. The main page it's almost completly done. The tample it's copied from figma. I selected the firts of the five Microverse gave us to choose.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
First i use HTML 5 thas it's markup languange used for structuring and presenting content on the WWW. Then i used CSS 3 that is used for structuring and styling web pages, especially flexbox and grid too.
### <a name="walkthrough" href= "https://www.loom.com/share/4f8856c359c5475ebfaa59a578711397">Project Walkthrough</a>
### Key Features <a name="key-features"></a>
- **NavBar** : contains the logo of my profolio anda the hamburguer menu that in a future will allow my clients to look for specific sections of the page.
- **Presentation** : The main part of the page it's where i present myself and i let you know where to contact me.
- **Page Development** : Here you can see tha works that i'd already done and the languages that i use when i'm programing.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🚀 Live Demo <a name="live-demo"></a>
- <a href="https://federicaulzurrun.github.io/porfolio_setup_mobileFirst/"> Visit the site!</a>
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 💻 Getting Started <a name="getting-started"></a>
To get a local copy up and running, follow these steps.
### Prerequisites
In order to run this project you need:
1. Have VScode instale, it's a code editor.
2. Have downloaded Git.
3. Have a minimum knowledge of css and html
4. Live server extension
5. Npm
6. Node
7. Flexbox
### Setup
Clone this repository to your desired folder:
git clone https://federicaulzurrun.github.io/porfolio_setup_mobileFirst/
### Install
Install this project linters: *do not change the any config file in any way* .
1 - Create a .github folder that contains the workflows folder (reulst will look like .github/workflows in your VSC), then add a copy of the following file linters.yml. This way you now have Lightouse installed
2 - To instal Webhint, if you are using Windows, you will need to initialize npm and create a package.json file, you can do that with the following command: npm init -y.
- 2.1 After that, you will have to run npm install --save-dev hint@7.x
- 2.2 Then, you have to create a .hintrc file and copy its content.
- 2.3 Run npx hint .
- 2.4 Fix your validations errors
3 - To install Stylelint to avoid errors and enforce conventions in styles.
- 3.1 Run npm install --save-dev stylelint@13.x stylelint-scss@3.x stylelint-config-standard@21.x stylelint-csstree-validator@1.x
- 3.2 Create a .stylelintrc.json file and copy its content.
- 3.3 Run npx stylelint "**/*.{css,scss}" on the root of your directory of your project.
- 3.4 Fix linter errors.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 👥 Author <a name="authors"></a>
👤 **Federica Ulzurrun**
- GitHub: [@federicaulzurrun](https://github.com/federicaulzurrun)
- Twitter: [@ulzurrunfede](https://mobile.twitter.com/ulzurrunfede)
- LinkedIn: [Federica Ulzurrun](https://www.linkedin.com/in/federica-ulzurrun-293a86198)
👤 **Daniela Moreno**
- GitHub: [@daniela](https://github.com/danielamoreno699)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/daniela-moreno-06a139124/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
- **-Making the page more responsive** : Adding more than 1 breaking point.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🤝 Contributing <a name="contributing"></a>
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](../../issues/).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ⭐️ Show your support <a name="support"></a>
If you like this project let me know via twitter ! and i'll follow you!
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank Microverse for letting me be a part of something as huge and life changer as this program is and giving us the tools so we can change our futures!
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 📝 License <a name="license"></a>
This project is [MIT](./LICENSE) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
=======
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| The portfolio is a project that I created for Module 1 of Microverse Bootcamp. Built with JavaScript, Bootstrap, and inspired by a Figma design. | bootstrap,css,html,javascript | 2023-02-15T18:56:42Z | 2023-03-12T03:17:41Z | null | 3 | 8 | 84 | 4 | 0 | 8 | null | null | CSS |
torobucci/GlobalGroove-Concert | main | <a name="readme-top"></a>
<div align="center">
<img src="https://user-images.githubusercontent.com/103370560/219049776-6be6fb00-e39a-4055-ba01-f5f7a5ff48b4.png">
<h1 text-align="center">Global Groove Concert </b></h1>
</div>
<!-- TABLE OF CONTENTS -->
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#triangular_flag_on_post-deployment)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [❓ FAQ (OPTIONAL)](#faq)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
# 📖 [Global Groove Concert] <a name="about-project">
</a>
**[Global Groove Concert]** is a global concert website that shows its love to all types of music genre in the world!!
## 🛠 Built With <a name="built-with">
Html
Css
Javascript
</a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>Client</summary>
<ul>
<li><a href="https://www.w3schools.com/css/default.asp">style.css</a></li>
</ul>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **[Header link interactions]**
- **[Mobile menu toggle]**
- **[Featured speakers dynamic creation]**
- **[Show more/less button]**
<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://torobucci.github.io/GlobalGroove-Concert/)
<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.
fork the repository https://github.com/torobucci/GlobalGroove-Concert.git on github
### Prerequisites
In order to run this project you need:
Code editor eg. VScode
Web browser eg. chrome
### Setup
Clone this repository to your desired folder:
cd hello-world
git clone https://github.com/torobucci/GlobalGroove-Concert.git
### Install
To install linter run the following command:
`npm install --save-dev hint@7.x`
### Usage
To run the project click the run button on your VScode.
### Run tests
To run tests, run the following command:
`npx stylelint "**/*.{css,scss}"`
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 **Kevin Toro**
- GitHub: [@torobucii](https://github.com/torobucii)
- Twitter: [@torobucii](https://twitter.com/@torobucii)
- LinkedIn: [Kevin Toro](https://linkedin.com/in/KevinToro)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- [ ] **[Update more/less button]**
- [ ] **[Resposive screen to devices]**
<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 [GlobalGroove Concert issues](https://github.com/torobucci/GlobalGroove-Concert/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 hit the star button on our github repo
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank [Cindy Shin in Behance](https://www.behance.net/adagio07) on an amazing design.
The design is [MIT] licensed(https://creativecommons.org/licenses/by-nc/4.0/) by Behance and Cindy Shin.
<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/torobucci/Portfolio-finish-mobile-version/blob/main/MIT-LICENSE.txt) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| Global Groove Concert is a website project advertising a concert event by Global Groove. Its displays the main program events, featured artists and info about the organization | css,html,javascript | 2023-02-11T11:36:31Z | 2023-02-17T20:05:16Z | null | 1 | 2 | 23 | 0 | 0 | 8 | null | null | HTML |
Noumanabegum/Fusion-Kitchen | master |
# Fusion Kitchen
## Live preview: https://fusion-kitchen.netlify.app/
A simple responsive HTML and CSS website. The website has five sections in the navigation bar: Home, About Us, Dishes, Customers Reviews, and Contact. The Dishes section contains images of the top dishes served by the restaurant.
## Features :
1. Navigation bar : Provides easy access to all sections of the website, typically displayed at the top of the page.
2. Responsive design : Ensures that the website looks great and functions well on all devices, including desktops, laptops, tablets, and smartphones.
3. High-quality images : Uses high-resolution images of the restaurant, its dishes, and its team members to create a visually appealing and professional look.
4. User-friendly interface : Ensures that the website is easy to navigate and use, with clear labels, intuitive design, and fast loading times.
## Getting Started :
To access the website, simply open a web browser and enter the URL for the website. The website is designed to be user-friendly and intuitive, so you should be able to navigate it easily.
## Screenshots :
### Home

### About

### Dishes

### Review

### Contact

## Demo :
Watch Video - https://www.loom.com/share/426cea5b8ced4b53a7dd0525f2de82c9
## How to use :
* Clone the repository to your local machine using the command "git clone https://github.com/Noumanabegum/Fusion-Kitchen.git".
* Open the "index.html" file in your browser.
## Contributing :
If you would like to contribute to this project, you can fork the repository and create a pull request with your changes.
## License
This project is licensed under the [MIT](https://choosealicense.com/licenses/mit/) License. See the LICENSE file for more information.
| Food Order Website | css,html,javascript | 2023-02-16T12:08:53Z | 2023-03-29T05:51:12Z | null | 1 | 0 | 18 | 0 | 0 | 8 | null | null | HTML |
core-hacked/tesla-alerts-dictionary | master | [![Contributors][contributors-shield]][contributors-url]
[![Forks][forks-shield]][forks-url]
[![Stargazers][stars-shield]][stars-url]
[![Issues][issues-shield]][issues-url]
[![MIT License][license-shield]][license-url]
[![View Website][website-shield]][website-url]
<!-- PROJECT LOGO -->
<br />
<p align="center">
<a href="https://github.com/core-hacked/">
<img src="dist/images/logo.svg" alt="Logo" width="80" height="80">
</a>
<h3 align="center">Tesla Alerts Dictionary</h3>
<p align="center">
This repository aims to provide a dictionary of Tesla alerts and their meanings including an option to search for them.
<br />
<a href="https://tesla-alerts-dictionary.corehacked.com">View Website</a>
·
<a href="https://github.com/core-hacked/tesla-alerts-dictionary/issues">Report Issue</a>
·
<a href="https://github.com/core-hacked/tesla-alerts-dictionary/pulls">Contribute</a>
</p>
</p>
<!-- TABLE OF CONTENTS -->
<details open="open">
<summary><h2 style="display: inline-block">Table of Contents</h2></summary>
<ol>
<li>
<a href="#about-the-project">About The Project</a>
<ul>
<li><a href="#built-with">Built With</a></li>
</ul>
</li>
<li>
<a href="#getting-started">Getting Started</a>
<ul>
<li><a href="#prerequisites">Prerequisites</a></li>
<li><a href="#installation">Installation</a></li>
</ul>
</li>
<li><a href="#usage">Usage</a></li>
<li><a href="#roadmap">Roadmap</a></li>
<li><a href="#contributing">Contributing</a></li>
<li><a href="#license">License</a></li>
<li><a href="#contact">Contact</a></li>
</ol>
</details>
<!-- ABOUT THE PROJECT -->
## About The Project
### Built With
- [HTML5](https://github.com/whatwg/html)
- [JavaScript](https://github.com/tc39)
- [Flowbite](https://flowbite.com/)
- [Webpack](https://webpack.js.org/)
<!-- GETTING STARTED -->
## Getting Started
To get a local copy up and running follow these simple steps.
### Prerequisites
You can deploy the server however you want, this is just an example of how you can do it.
- Apache (for debian-based systems / using apt)
```sh
sudo apt install apache2
```
- Apache (for arch-based systems / using pacman)
```sh
pacman -S apache
```
### Installation
1. Clone the repo
```sh
git clone https://github.com/core-hacked/tesla-alerts-dictionary.git
```
2. Start an Apache server to run the repo
```sh
/etc/init.d/apache2 start
```
Or on Debian 8.x+ based systems | Or on Ubuntu 15.04+
```sh
systemctl start apache2.service
```
3. Copy the repo to the Apache server
```sh
cp -r tesla-alerts-dictionary/ /var/www/html/
```
````
4. Open the website in your browser
```sh
http://localhost/tesla-alerts-dictionary/
````
### If you make changes to the code, be sure to run the following commands, to ensure that it actually updates.
<br>
1. Install the dependencies
```sh
npm install
```
2. Build the project. The JavaScript file will be generated in the `dist` folder.
```sh
npm run build
```
3. Configure / run TailwindCSS to generate the CSS file. The CSS file will be generated in the `dist` folder. It will also watch for changes to the `src` folder and inside the HTML and automatically update the `output.css` file in `/dist/`.
```sh
npx tailwindcss -i ./src/input.css -o ./dist/output.css --watch
```
4. If you update the alerts dictionary/files inside the `/alerts/` folder, be sure to run the `maker.py` script to automatically generate the buttons for the alerts. Then just copy them into `index.html`. If needed reference the `index.html` file in the `/src/` folder. The buttons will be generated into the `alerts_index.html` file.
```sh
cd tools/
python3 maker.py
```
5. When contributing, be sure to run [prettier](https://prettier.io/) to format the code. You may ignore the alert buttons as they take a lot of time to format. Don't forget to delete the `alerts_index.html` file after you're done.
<!-- ROADMAP -->
## Roadmap
See the [open issues](https://github.com/core-hacked/tesla-alerts-dictionary/issues) for a list of proposed features (and known issues).
### Todo:
- [ ] Document alerts, fix typos, and add more infomation.
- [ ] Fix the header/button overlap when a successful search is made.
- [ ] Fix not being able to return to home on fullscreen/new-tab alerts when using as PWA
- [ ] Possibly add a button to copy the alert code to the clipboard.
- [ ] Make the buttons in the alert popup more mobile friendly/less cramped.
- [ ] Autofocus/search when <kbd>CTRL</kbd> + <kbd>F</kbd> is pressed.
- [ ] Make the search system not depend on buttons inside the dom, but rather a json file.
- [ ] Let js generate the buttons from the json file, instead of having to manually copy them into the html file.
- [ ] Sync the creation process to GitHub Actions on PRs.
- [ ] Streamline the deployment process, and make it a one-click deploy.
<!-- CONTRIBUTING -->
## Contributing
Contributions are what make the open source community such an amazing place to be... learn, inspire, and create. Any contributions you make are **greatly appreciated**.
1. Fork the Project
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
4. Push to the Branch (`git push origin feature/AmazingFeature`)
5. Open a Pull Request
<!-- LICENSE -->
## License
Distributed under the GNU GPL v3 License. See `LICENSE` for more information.
<!-- CONTACT -->
## Contact
[info@corehacked.com](mailto:info@corehacked.com)
<!-- MARKDOWN LINKS & IMAGES -->
<!-- https://www.markdownguide.org/basic-syntax/#reference-style-links -->
[contributors-shield]: https://img.shields.io/github/contributors/core-hacked/tesla-alerts-dictionary.svg?colorA=1e1e28&colorB=E38C8F&style=for-the-badge&logo=starship%20style=for-the-badge
[contributors-url]: https://github.com/core-hacked/tesla-alerts-dictionary/graphs/contributors
[forks-shield]: https://img.shields.io/github/forks/core-hacked/tesla-alerts-dictionary.svg?colorA=1e1e28&colorB=A4B9EF&style=for-the-badge&logo=starship%20style=for-the-badge
[forks-url]: https://github.com/core-hacked/tesla-alerts-dictionary/network/members
[stars-shield]: https://img.shields.io/github/stars/core-hacked/tesla-alerts-dictionary.svg?colorA=1e1e28&colorB=EBDDAA&style=for-the-badge&logo=starship%20style=for-the-badge
[stars-url]: https://github.com/core-hacked/tesla-alerts-dictionary/stargazers
[issues-shield]: https://img.shields.io/github/issues/core-hacked/tesla-alerts-dictionary.svg?colorA=1e1e28&colorB=B1E3AD&style=for-the-badge&logo=starship%20style=for-the-badge
[issues-url]: https://github.com/core-hacked/tesla-alerts-dictionary/issues
[license-shield]: https://img.shields.io/github/license/core-hacked/tesla-alerts-dictionary.svg?colorA=1e1e28&colorB=F9C096&style=for-the-badge&logo=starship%20style=for-the-badge
[license-url]: https://github.com/core-hacked/tesla-alerts-dictionary/blob/master/LICENSE
[website-shield]: https://img.shields.io/badge/Website-View%20Deployment-blue?colorA=1e1e28&colorB=A4B9EF&style=for-the-badge&logo=starship%20style=for-the-badge
[website-url]: https://tesla-alerts-dictionary.corehacked.com
| Tesla alert codes and their definitions. | documentation,flowbite,javascript,tailwind-css,tailwindcss,tesla,teslamotors,webpack,progressive-web-app,pwa | 2023-02-12T22:00:28Z | 2023-09-30T13:23:03Z | null | 1 | 1 | 17 | 1 | 0 | 8 | null | GPL-3.0 | HTML |
raihan2bd/react-auth-with-firebase | dev | # React Auth with Firebase
<p>
React Auth Firebase is a practice project that utilizes the React framework and Firebase authentication. It allows users to sign up and log in using the project and displays different routes depending on the user's authentication status. This project is intended to help developers improve their skills in building authentication features using React and Firebase.
</p>
## 💻 Getting Started
- To get star with this package first of all you have to clone the project ⬇️
``` bash
git clone https://github.com/raihan2bd/react-auth-with-firebase.git
```
- Make sure you have firebase authenticate api key. [See Firebase Rest Api documention](https://firebase.google.com/docs/reference/rest/auth)
- Then you have to create a file called **.env.local** in your project root lavel and you have to add your api key as like as below

- Then Make sure you have install [NodeJs](https://nodejs.org).
- Then make sure you have install [React](https://reactjs.org/) on your local mechine if you want to use this project as localy.
- To install all the npm packages navigate the folder address on your terminal and enter the below command ⬇️
``` bash
npm install
```
# Usages
> *Note: Before enter the below command make sure you are in the right directory.*
- After downloading the packages To build the project as a single executable just run the below command. ⬇️
``` bash
npm run build
```
- After finishing the avove instructions you can see the project in your local mechine by entering the below command ⬇️
```bash
npm start
```
- Then you can see this project live on your browser by this link http://localhost:3000 or your given the port nuber you set for the project.
## 👥 Author
👤 **Abu Raihan**
- GitHub: [@githubhandle](https://github.com/raihan2bd)
- Twitter: [@twitterhandle](https://twitter.com/raihan2bd)
- LinkedIn: [LinkedIn](https://linkedin.com/in/raihan2bd)
## ⭐️ Show your support <a name="support"></a>
> Thanks for visiting my repository. Give a ⭐️ if you like this project!
## 🙏 Acknowledgments <a name="acknowledgements"></a>
> Thanks a lot [Academind](https://academind.com/) especially **Maximilian Schwarzmüller** who help me learn React and redux and help me to build this project.
## 📝 License <a name="license"></a>
This project is [MIT](./LICENSE) licensed.
## Contribution
*Your suggestions will be more than appreciated. If you want to suggest anything for this project feel free to do that. :slightly_smiling_face:*
| React Auth Firebase is a sample React project for practicing authentication with Firebase. Users can sign up, log in, and access different routes based on their authentication status. | css,firebase,firebase-auth,html,javascript,localstorage,react,reactcontext | 2023-02-14T10:32:50Z | 2023-02-16T16:06:32Z | null | 1 | 1 | 9 | 0 | 0 | 8 | null | MIT | JavaScript |
CodingWithEnjoy/NextJs-LinkSnatch | main | # NextJs-LinkSnatch
Preview | نتیجه ی کار 😊😉
https://linksnatch.netlify.app/
| Preview | نتیجه ی کار 😊😉 | bookmarks,css,html,javascript,nextjs,react,tailwind,tailwindcss,linksnatch | 2023-02-23T08:37:21Z | 2023-02-23T08:45:00Z | null | 1 | 0 | 2 | 0 | 1 | 8 | null | null | JavaScript |
devXprite/SearchEx | main | <div align="center">
<img src="./public/logo.png" alt="SearchEx Logo" width="250" align="center">
<!-- <p>A working search engine clone built using Next.js 13</p> -->
</div>
## About The Project
SearchEx is a search engine clone developed using NextJs, providing a powerful and intuitive search experience. It allows users to search for web pages, images, news, and videos.
### Features
* Features
* Clean and user-friendly UI
* Comprehensive search capabilities
* Intelligent auto-suggestions
* Search history page
* Profile management
* User authentication with GitHub and auth0
* Pagination system for search results
* OpenAI integration for enhanced search intelligence
* Light & dark theme options
* Fully responsive design
## Getting Started
To get started with this project, you can simply clone this repository and install the necessary dependencies.
```bash
git clone https://github.com/devxprite/searchex.git
cd searchex
npm install
```
### Configuration
Before running the project, make sure to set up the environment variables in a .env file located in the root directory of the project. Below is a sample .env file:
```
GOOGLE_API_KEY=
GOOGLE_API_CX=
YOUTUBE_API_KEY=
NEWS_API_KEY=
OPENAI_API_KEY=
NEXTAUTH_URL=
NEXTAUTH_SECRET=
GITHUB_ID=
GITHUB_SECRET=
AUTH0_ISSUER_BASE_URL
AUTH0_CLIENT_ID
AUTH0_CLIENT_SECRET=
MONGODB_USERNAME=
MONGODB_PASSWORD=
MONGODB_HOST=
MONGODB_DB=
```
### Running the Project
Once you have set up the environment variables, you can start the development server with the following command:
```bash
npm run dev
```
This will start the Next.js development server at http://localhost:3000.
The website auto-updates as you edit the file.
The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.
## Screenshots




## License
This project is licensed under the MIT License. | Powerful Search Engine in NextJs | google-clone,search-engine,javascript,nextjs,nextjs13,react,search | 2023-02-11T12:10:26Z | 2023-07-08T07:40:58Z | null | 1 | 0 | 56 | 0 | 2 | 8 | null | null | JavaScript |
Koshao-sys/To-Do-List | main | <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
OPTIONAL SECTIONS:
- FAQ
After you're finished please remove all the comments and instructions!
-->
<div align="center">
<!-- You are encouraged to replace this logo with your own! Otherwise you can also remove it. -->
<!--<img src="murple_logo.png" alt="logo" width="140" height="auto" />-->
<br/>
<h3><b>TO DO LIST</b></h3>
</div>
<!-- TABLE OF CONTENTS -->
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
<!--- [Prerequisites](#prerequisites)-->
- [Install](#install)
<!--- [Usage](#usage)
- [Run tests](#run-tests)-->
- [Deployment](#triangular_flag_on_post-deployment)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
<!--- [❓ FAQ (OPTIONAL)](#faq)-->
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
# 📖 [TO DO LIST] <a name="about-project"></a>
**To do List** is site built with JavaScript, HTML and CSS to show, remove, edit and add to a to do List.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>Client</summary>
<ul>
<li><a href="https://html.com/">HTML</a></li>
</ul>
</details>
<details>
<summary>Server</summary>
<ul>
<li><a href="https://www.javascript.com/">JavaScript</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>
- **Add To do list array object**
- **Dynamically created html**
- **Remove from the to do list**
- **Edit teh To do List**
<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://koshao-sys.github.io/To-Do-List/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>-->
<!-- GETTING STARTED -->
## 💻 Getting Started <a name="getting-started"></a>
> Describe how a new developer could make use of your project.
To get a local copy up and running, follow these steps.
### Prerequisites
In order to run this project you need: To have VS code or any code editor installed on your computer.
<!--
Example command:
```sh
gem install rails
```
-->
### Setup
Clone this repository to your desired folder: https://github.com/Koshao-sys/To-Do-List.git
<!--
Example commands:
```sh
cd my-folder
git clone git@github.com:myaccount/my-project.git
```
--->
### Install
Install this project with: npm install
<!--
Example command:
```sh
cd my-project
gem install
```
--->
<!--### Usage
To run the project, execute the following command:-->
<!--
Example command:
```sh
rails server
```
--->
<!--### Run tests
To run tests, run the following command:-->
<!--
Example command:
```sh
bin/rails test test/models/article_test.rb
```
--->
### Deployment
You can deploy this project using: npm start
<!--
Example:
```sh
```
-->
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 **Koshao Kazungu Godfrey**
- GitHub: [@Koshao-sys](https://github.com/Koshao-sys)
- Twitter: [@KoshaoKG](https://twitter.com/KoshaoKG)
- LinkedIn: [Kosh](https://www.linkedin.com/in/godfrey-kazungu-b8b81b245/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- [ ] **[Interactive list]**
<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!
<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 kindly leave me ⭐️.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
Big thanks to the minimalist design.
I would like to thank Microverse for the great learning materials towards building this project.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FAQ (optional) -->
<!--## ❓ FAQ (OPTIONAL) <a name="faq"></a>
- **[How are you storing the books information.]**
- [I store it in the Local storage and reload it when then page runs.]
- **[How are you creating the content for the books]**
- [I create it dynamically from JavaScript.]
<p align="right">(<a href="#readme-top">back to top</a>)</p>-->
<!-- LICENSE -->
## 📝 License <a name="license"></a>
This project is [MIT](./LICENSE) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| This is To-Do list application built using JavaScript, HTML, and CSS, and running on the Webpack bundler. This application will allow users to create and manage their own personalized task lists, allowing them to keep track of their daily, weekly, and monthly tasks. | css,html5,javascript,webpack | 2023-02-21T15:05:08Z | 2023-02-24T09:13:21Z | null | 1 | 4 | 33 | 2 | 0 | 8 | null | null | JavaScript |
torobucci/Book-collection | main | <a name="readme-top"></a>
<h1 text-align="center"><b>Book Collection</b></h1>
</div>
<!-- TABLE OF CONTENTS -->
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#triangular_flag_on_post-deployment)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [❓ FAQ (OPTIONAL)](#faq)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
# 📖 [Book collection] <a name="about-project">
</a>
**[Book Collection]** is a project that displays and adds or remove user book collection.
## 🛠 Built With <a name="built-with">
Html
Css
</a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>Client</summary>
<ul>
<li><a href="https://www.w3schools.com/css/default.asp">style.css</a></li>
</ul>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
- [ ] **[Display book collection]**
- [ ] **[Remove book collection when remove button is clicked]**
- [ ] **[Store data when website is refreshed]**
<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://torobucci.github.io/Book-collection/)
<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.
fork the repository https://github.com/torobucci/Book-collection.git
### Prerequisites
In order to run this project you need:
Code editor eg. VScode
Web browser eg. chrome
### Setup
Clone this repository to your desired folder:
cd hello-world
git clone https://github.com/torobucci/Book-collection.git
<!--
Example commands:
```sh
cd my-folder
git clone git@github.com:myaccount/my-project.git
```
--->
### Install
To install linter run the following command:
npm install --save-dev hint@7.x
### Usage
To run the project click the run button on your VScode.
### Run tests
To run tests, run the following command:
npx stylelint "**/*.{css,scss}"
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 **Author1**
- GitHub: [@torobucii](https://github.com/torobucii)
- Twitter: [@torobucii](https://twitter.com/@torobucii)
- LinkedIn: [Kevin Toro](https://linkedin.com/in/KevinToro)
👤 **Author2**
- GitHub: [@Tshobohwa](https://github.com/Tshobohwa)
- Twitter: [@SalomonTshoboh1](https://twitter.com/SalomonTshoboh1)
- LinkedIn: [@Tshobohwa Salomon](https://www.linkedin.com/in/tshobohwa-salomon-4bb457245/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- [ ] **[Display book collection]**
- [ ] **[Remove book collection when remove button is clicked]**
- [ ] **[Store data when website is refreshed]**
<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 [Book collection](https://github.com/torobucci/Book-collection.git).
<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 hit the star button on our github repo
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank the Lets Code team that hepled us in every problem we had.
<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/torobucci/Portfolio-finish-mobile-version/blob/main/MIT-LICENSE.txt) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| Book collection is a mid Fidelity wireframe, single page project that enables a user to add and remove a book from his/her collection. | css3,html,javascript | 2023-02-20T07:18:27Z | 2023-02-24T08:54:45Z | null | 2 | 3 | 38 | 0 | 0 | 8 | null | null | JavaScript |
kateFrontend/js-sound-board | main | # Sound Board

## 🦉 Main information
Simple sound board built using HTML audio tag and Vanilla Js.
The project goal:
- when a user clicks a button, it makes a sound effect
- if the sound is still playing and a user clicks another one, it's going to stop tha effect and start the next one
- use audio tag methods play and pause
- set up in HTML, style it with CSS and add the functionality with JavaScript
## 🦊 Useful links to study
```
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/audio
```
## ⚡ Built With
[HTML5](https://www.w3schools.com/html/) / [CSS3](https://www.w3schools.com/css/) / [JavaScript](https://www.w3schools.com/js/) | Simple sound board built using HTML audio tag and Vanilla Js. | css3,html-css-javascript,html5,javascript,js,soundboard,sounds,vanilla-javascript | 2023-02-12T23:48:50Z | 2023-02-13T02:11:29Z | null | 1 | 0 | 9 | 0 | 0 | 8 | null | null | HTML |
Pujarini/neetcode-dsa | develop | ## Neetcode DSA problems
Tracking my DSA preparation here
- [x] Arrays & Hashing
- [x] Two pointers
- [x] Sliding window
- [x] Stacks
- [x] Linked List
- [x] Recursion
- [ ] Binary Search
- [ ] Graph
- [ ] Trees (upcoming)
- [ ] Dynamic programming
- [ ] Greedy Algorithms
- [ ] Sorting
Follow my youtube Channel for more solving questions
[Pujarini Jena](https://neetcode.io/practice)
## Link to practise
- [Neetcode](https://neetcode.io/practice)
- March Daily Leetcode challenge
## Support
Give a ⭐️ to support this repo.
| Solving dsa questions using Javascript | dsa,dsa-practice,dsa-questions,javascript,leetcode,neetcode150,algorithms | 2023-02-21T03:46:49Z | 2023-05-03T07:47:54Z | null | 1 | 0 | 62 | 0 | 1 | 8 | null | null | JavaScript |
jsheaven/perf | main | <h1 align="center">@jsheaven/perf</h1>
> Estimates the average runtime and time-complexity (big O notation) of (a)sync algorithms
<h2 align="center">User Stories</h2>
1. As a developer, I want to know the performance characteristics/complexity and thus the scalability of algorithms
<h2 align="center">Features</h2>
- ✅ Measures the runtime (duration) an algorithm (sync or async) takes
- ✅ Estimates the time complexity of an algorithm (sync or async) in big O notation
- ✅ Parallel execution using async generators
- ✅ Streaming implementation, chunked
- ✅ Available as a simple API
- ✅ Just `1403 byte` nano sized (ESM, gizpped)
- ✅ Tree-shakable and side-effect free
- ✅ Runs on Windows, Mac, Linux, CI tested
- ✅ First class TypeScript support
- ✅ 100% Unit Test coverage
<h2 align="center">Example usage (API)</h2>
<h3 align="center">Setup</h3>
- yarn: `yarn add @jsheaven/perf`
- npm: `npm install @jsheaven/perf`
<h3 align="center">ESM</h3>
```ts
import { perf } from '@jsheaven/perf'
// call your algorithm from within the candidate fn() object
// the size is the input size - a number to use for scaling
// O(1): Constant complexity.
const incrementByOne = {
name: 'LinearAdd',
fn: async (size) => {
function incrementByOne(num) {
return num + 1
}
incrementByOne(size)
},
}
// O(n^x): Polynomial complexity
const bubbleSort = {
name: 'BubbleSort',
fn: async (size) => {
const arr = Array.from({ length: size }).map(() => Math.random())
for (let i = 0; i < arr.length; i++) {
for (let j = 0; j < arr.length - 1; j++) {
if (arr[j] > arr[j + 1]) {
const tmp = arr[j]
arr[j] = arr[j + 1]
arr[j + 1] = tmp
}
}
}
},
}
// pass one or more algorithms
const measurement = await perf([incrementByOne, bubbleSort])
console.log('=== PERF: BubbleSort ===')
console.log('runtime duration', measurement['BubbleSort'].duration, 'ms')
console.log(JSON.stringify(measurement['BubbleSort'].estimatedDomains, null, 4))
console.log('=== PERF: LinearAdd ===')
console.log('runtime duration', measurement['LinearAdd'].duration, 'ms')
console.log(JSON.stringify(measurement['LinearAdd'].estimatedDomains, null, 4))
```
<img src="screenshot.png" height="300px" />
<h3 align="center">CommonJS</h3>
```ts
const { perf } = require('@jsheaven/perf')
// same API like ESM variant
```
<h2 align="center">Time complexity estimation</h2>
Big O notation is a metric used in computer science to classify an algorithm based on its time and space complexity. It’s written as O(x) and is based on how the algorithm would scale with an increase or decrease in the amount of input data.
The time and space here is not based on the actual number of operations performed or the amount of memory used per se, but rather how the algorithm would scale with an increase or decrease in the amount of input data.
The notation represents how an algorithm will run in a worst-case scenario, in other words what the maximum time or space an algorithm could use is. The complexity is written as O(x), where x is the growth rate of the algorithm in regards to n, which is the amount of data input. Throughout the rest of this post, input will be referred to as n.
<img align="center" src="https://upload.wikimedia.org/wikipedia/commons/4/4e/Big-O_Cheatsheet.png" height="300px" />
<h3 align="center">Types of Big O Notations</h3>
There are seven common types of big O notations. These include:
1. O(1): Constant complexity.
2. O(logn): Logarithmic complexity.
3. O(n): Linear complexity.
4. O(nlogn): Loglinear complexity.
5. O(n^x): Polynomial complexity.
6. O(X^n): Exponential time.
7. O(n!): Factorial complexity.
<h4 align="center">O(1): Constant Complexity</h4>
O(1) is known as constant complexity. This implies that the amount of time or memory does not scale with n. For time complexity, this means that n is not iterated on or recursed. Generally, a value will be selected and returned, or a value will be operated on and returned.
> operations are linear
```ts
const factorizeList = (n: number, list: Array<number>) => list[n] * 2
```
For space, no data structures can be created that are multiples of the size of n. Variables can be declared, but the number must not change with n.
<h4 align="center">O(logn): Logarithmic Complexity</h4>
O(logn) is known as logarithmic complexity. The logarithm in O(logn) has a base of two. The best way to wrap your head around this is to remember the concept of halving. Every time n increases by an amount k, the time or space increases by k/2. There are several common algorithms that are O(logn) a vast majority of the time, including: binary search, searching for a term in a binary search tree and adding items to a heap.
```ts
const needle = Math.random()
const haystack = Array.from({ length: size }, () => Math.random())
haystack.push(needle)
function binarySearch(array: number[], target: number): number {
let low = 0
let high = array.length - 1
while (low <= high) {
const mid = Math.floor((low + high) / 2)
if (array[mid] === target) {
return mid
} else if (array[mid] < target) {
low = mid + 1
} else {
high = mid - 1
}
}
return -1
}
binarySearch(haystack, needle)
```
O(logn) space complexity commonly happens during recursive algorithms. When a recursive call is made, all current variables get placed on the stack and new ones are created. If the number of recursive calls increases logarithmically, i.e., n is halved with every recursive call, then the space complexity will be O(logn). Space complexities of O(logn) are rarer to encounter.
<h4 align="center">O(n): Linear Complexity</h4>
O(n), or linear complexity, is perhaps the most straightforward complexity to understand. O(n) means that the time/space scales 1:1 with changes to the size of n. If a new operation or iteration is needed every time n increases by one, then the algorithm will run in O(n) time.
```ts
const haystack = Array.from({ length: size }, () => Math.random())
function sumArray(array: number[]): number {
let sum = 0
for (let i = 0; i < array.length; i++) {
sum += array[i]
}
return sum
}
sumArray(haystack)
```
When using data structures, if one more element is needed every time n increases by one, then the algorithm will use O(n) space.
<h4 align="center">O(nlogn): Loglinear Complexity</h4>
O(nlogn) is known as loglinear complexity. O(nlogn) implies that logn operations will occur n times. O(nlogn) time is common in recursive sorting algorithms, binary tree sorting algorithms and most other types of sorts.
```ts
const arr = Array.from({ length: size }).map(() => Math.random())
const partition = (arr: number[], low: number, high: number): number => {
const pivot = arr[high]
let i = low - 1
for (let j = low; j < high; j++) {
if (arr[j] < pivot) {
i++
const temp = arr[i]
arr[i] = arr[j]
arr[j] = temp
}
}
const temp = arr[i + 1]
arr[i + 1] = arr[high]
arr[high] = temp
return i + 1
}
const quickSort = (arr: number[], low: number, high: number): void => {
if (low < high) {
const pi = partition(arr, low, high)
quickSort(arr, low, pi - 1)
quickSort(arr, pi + 1, high)
}
}
quickSort(arr, 0, arr.length - 1)
```
Space complexities of O(nlogn) are extremely rare to the point that you don’t need to keep an eye out for it. Any algorithm that uses O(nlogn) space will likely be awkward enough that it will be apparent.
<h4 align="center">O(nˣ): Polynomial Complexity</h4>
O(nˣ), or polynomial complexity, covers a larger range of complexities depending on the value of x. X represents the number of times all of n will be processed for every n. Polynomial complexity is where we enter the danger zone. It’s extremely inefficient, and while it is the only way to create some algorithms, polynomial complexity should be regarded as a “warning sign” that the code can be refactored. This holds true for not just polynomial complexity, but for all following complexities we will cover.
A red flag that an algorithm will run in polynomial time is the presence of nested loops. A general rule of thumb is that x will equal the number of nested loops. A major exception to this rule is when you are working with matrices and multi-dimensional arrays. Nested loops are needed to traverse these data structures and do not represent polynomial time. Polynomial time will require the number of loops to equal 2y, where y is the number of dimensions present in the data structure.
```ts
const haystack = Array.from({ length: size }, () => Math.random())
function findDuplicates(array: string[]): string[] {
const result: string[] = []
for (let i = 0; i < array.length; i++) {
for (let j = i + 1; j < array.length; j++) {
if (array[i] === array[j] && !result.includes(array[i])) {
result.push(array[i])
}
}
}
return result
}
findDuplicates([...haystack, ...haystack])
```
For nested loops to create polynomial time complexity, all loops must be iterating over n.
Polynomial space complexity will generally be because of the creation of a matrix or multidimensional array in a function creating a table.
<h4 align="center">O(Xⁿ): Exponential Time</h4>
O(Xⁿ), known as exponential time, means that time or space will be raised to the power of n. Exponential time is extremely inefficient and should be avoided unless absolutely necessary. Often O(Xⁿ) results from having a recursive algorithm that calls X number of algorithms with n-1. Towers of Hanoi is a famous problem that has a recursive solution running in O(2ⁿ).
```ts
function fibonacci(n: number): number {
if (n <= 1) {
return n
}
return fibonacci(n - 1) + fibonacci(n - 2)
}
fibonacci(size)
```
You will probably never encounter algorithms using a space complexity of O(Xⁿ) in standard software engineering. It can be encountered when using Turing machines and the arithmetic model of computation, but this is extremely hard to implement using a JavaScript example, and beyond the scope of this project. Suffice to say, if O(Xⁿ) space complexity is ever encountered, it’s likely that something has gone horribly, horribly wrong.
<h4 align="center">O(n!): Factorial Complexity</h4>
O(n!), or factorial complexity, is the “worst” standard complexity that exists. To illustrate how fast factorial solutions will blow up in size, a standard deck of cards has 52 cards, with 52! possible orderings of cards after shuffling. This number is larger than the number of atoms on Earth. If someone were to shuffle a deck of cards every second from the beginning of the universe until the present second, they would not have encountered every possible ordering of a deck of cards. It is highly unlikely that any current deck of shuffled cards you encounter has ever existed in that order in history. To sum up: Factorial complexity is unimaginably inefficient.
```ts
const haystack = Array.from({ length: size }, () => Math.random())
function permuteArray(array: number[]): number[][] {
if (array.length <= 1) {
return [array]
}
const result: number[][] = []
for (let i = 0; i < array.length; i++) {
const [first] = array.splice(i, 1)
const perms = permuteArray(array)
for (let j = 0; j < perms.length; j++) {
result.push([first, ...perms[j]])
}
array.splice(i, 0, first)
}
return result
}
permuteArray(haystack)
```
<h3 align="center">Accuracy of measurements and correlation</h2>
The accuracy of the algorithm for estimating the time complexity of an algorithm based on the runtime measurements obtained from a series of input sizes depends on several factors, including the quality of the data and the assumptions made by the algorithm.
The algorithm for estimating the time complexity uses a <a href="https://en.wikipedia.org/wiki/Logistic_regression" target="_blank">logarithmic regression</a> to fit a curve to the data points, where the input size is the independent variable and the runtime is the dependent variable. The slope of the curve is used to estimate the growth rate of the algorithm as the input size increases, and this growth rate is mapped to a time complexity based on a series of pre-defined ranges.
This algorithm works reasonably well for many types of algorithms, particularly those that exhibit a predictable, non-random pattern of growth as the input size increases. However, there are some types of algorithms that may not fit well with this approach, such as algorithms that exhibit a non-monotonic pattern of growth or have complex, non-linear behavior.
In general, the accuracy of the algorithm depends on the quality of the data obtained from the performance measurements, as well as the assumptions made about the nature of the growth pattern. To obtain accurate estimates of the time complexity, it is important to use a wide range of input sizes, choose input sizes that reflect the expected use case of the algorithm, and carefully consider the assumptions made about the nature of the growth pattern.
Despite these limitations, the algorithm for estimating the time complexity of an algorithm based on the runtime measurements can be a useful tool for gaining insight into the performance characteristics of an algorithm and making informed decisions about algorithm design and optimization.
| Estimates the average runtime and time-complexity (big O notation) of (a)sync algorithms | performance-testing,big-o-notation,complexity-analysis,javascript,typescript,async,parallel-computing | 2023-02-19T02:05:44Z | 2023-02-19T19:37:43Z | null | 2 | 0 | 8 | 0 | 0 | 8 | null | MIT | TypeScript |
skabeo/my-portfolio | main | <a name="readme-top"></a>
<h1><b>My Portfolio</b></h1>
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Run tests](#run-tests)
- [👥 Author](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [📝 License](#license)
# 📖 Mobile-Version-2.0 <a name="about-project"></a>
**Mobile-Version-2.0** is a a simple project that shows the web page of a
developer depicting both soft and technical skills.
## 🛠 Built With <a name="built-with"></a>
- HTML
- CSS
- Javascript
### Key Features <a name="key-features"></a>
- **Javascipt script DOM manipulation is used for the functionality of the web page**
- **Flexbox is used to place elements in the page**
- **Mobile-First approach is used for the design**
- **A figma template is parsed to create the design of the web page**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🚀 Live Demo <a name="live-demo"></a>
- [Live Demo Link](https://skabeo.github.io/Mobile-Version-2.0/)
<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:
- Text editor. [VS code](https://code.visualstudio.com/download) is recommended.
- Know how with HTML and CSS.
### Setup
Clone this repository to your desired folder:
- git clone https://github.com/skabeo/Mobile-First.git
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## Authors
👤 **Spencer Okyere**
- GitHub: [@skabeo](https://github.com/skabeo)
- Twitter: [@black_okyere](https://twitter.com/black_okyere)
- LinkedIn: [LinkedIn](https://linkedin.com/in/okyere-spencer-9b602623b)
👤 **Benson Njuguna**
- GitHub: [@bennyjoez](https://github.com/bennyjoez)
- Twitter: [@bennyjoezz](https://twitter.com/bennyjoezz)
- LinkedIn: [LinkedIn](https://linkedin.com/in/bennyjoez)
👤 **Samuel Kwesi Obuobi**
- GitHub: [@kwesiObuobi](https://github.com/kwesiObuobi)
- Twitter: [@kwesiObuobi](https://twitter.com/kwesi_obuobi)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/kwesi-obuobi/)
👤 **Bertin Kambale**
- GitHub: [@bertinkambale](https://github.com/bertinkambale)
- Twitter: [@bertinkambale](https://twitter.com/bertinkambale)
- LinkedIn: [LinkedIn](https://linkedin.com/in/bertinkambale)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
- [ ] **An active pop up menu for project section**
- [ ] **A functional button that pops up details of a project**
- [ ] **Project details 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/skabeo/Mobile-Version-2.0/issues).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ⭐️ Show your support <a name="support"></a>
If you like this project give a ⭐️
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank
- Benson Njuguna
- Samuel Kwesi Obuobi
- Bertin Kambale
- Microverse Team
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 📝 License <a name="license"></a>
This project is [MIT](https://github.com/skabeo/Mobile-Version-2.0/blob/main/LICENSE.md) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| This repository is my personal portfolio website, showcasing my skills and experience as a web developer. It features a clean and modern design, with responsive layouts and optimized performance. The portfolio includes examples of my projects, a summary of my professional background, and contact information for potential clients or collaborators. | css,html,javascript | 2023-02-17T08:34:42Z | 2023-09-20T08:56:14Z | null | 4 | 13 | 130 | 3 | 0 | 8 | null | MIT | JavaScript |
dev348/bcaBatch3 | main | # Full Stack Web Development Course
This repository contains materials from the Full Stack Web Development Course, which covers the following topics:
- HTML
- CSS
- JavaScript
- Node.js
- React.js
- Express.js
- MongoDB
- Github and Github Education
## HTML
This section covers the basics of HTML, including tags, attributes, and document structure. See the [HTML slide](https://www.canva.com/design/DAFa7oaFChQ/v_as9FMwGtMO0xTAFVYflg/view?utm_content=DAFa7oaFChQ&utm_campaign=designshare&utm_medium=link&utm_source=publishsharelink) for more information.
## CSS
This section covers the basics of CSS, including selectors, properties, and values. See the [CSS slide](https://www.canva.com/design/DAFbBA0A5ws/_n18ByJDX1yZsRc-QS2GCQ/view?utm_content=DAFbBA0A5ws&utm_campaign=designshare&utm_medium=link&utm_source=publishsharelink)
for more information.
## JavaScript
This section covers the basics of JavaScript, including variables, functions, and control structures. See the [JavaScript slide](https://developer.mozilla.org/en-US/docs/Web/JavaScript) for more information.
## Node.js
This section covers the basics of Node.js, including modules, file I/O, and HTTP requests. See the [Node.js slide](https://nodejs.org/en/docs/) for more information.
## React.js
This section covers the basics of React.js, including components, props, and state. See the [React.js slide](https://reactjs.org/tutorial/tutorial.html) for more information.
## Express.js
This section covers the basics of Express.js, including routing, middleware, and templates. See the [Express.js slide](https://expressjs.com/en/starter/installing.html) for more information.
## MongoDB
This section covers the basics of MongoDB, including collections, documents, and queries. See the [MongoDB slide](https://www.mongodb.com/docs/) for more information.
## Github and Github Education
This section covers the basics of Github and Github Education, including version control, pull requests, and repositories. See the [Github slide](https://github.com/) for more information.
## [Responsive Web Design](https://www.freecodecamp.org/learn/2022/responsive-web-design/)
## [Google UX Design](https://grow.google/intl/en_in/ux-design-course/)
## [UX/UI Design](https://www.youtube.com/watch?v=keoL0B7NaEs&list=PLFW6ct83_wC_N-IrrU60lH4G0dV6u1B4n)
# JavaScript Material
### [JavaScript Course by Hitesh Choudhary ](https://www.youtube.com/watch?v=2md4HQNRqJA&list=PLRAV69dS1uWSxUIk5o3vQY2-_VKsOpXLD)
### [JavaScript Beginner Course by Microsoft ](https://www.youtube.com/watch?v=_EDM5aPVLmo&list=PLlrxD0HtieHhW0NCG7M536uHGOtJ95Ut2)
### [Typescript Course by Hitesh Choudhary](https://www.youtube.com/watch?v=j89BvWz8Eag&list=PLRAV69dS1uWRPSfKzwZsIm-Axxq-LxqhW)
# MARN Stack
### [MARN Stack Course](https://www.youtube.com/watch?v=fBNz5xF-Kx4&list=PL-_H2DG20qn6mhT1WLGzy-VCiTLQJd-ho)
Feel free to use these materials for your own learning purposes. Good luck!
| MARN Stack Courses | css,javascript,mongodb | 2023-02-20T08:10:09Z | 2023-02-24T09:21:22Z | null | 1 | 0 | 14 | 0 | 8 | 8 | null | MIT | HTML |
adeola003/My_Portfolio | main | <a name="readme-top"></a>
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Install](#install)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [📝 License](#license)
# 📖 Portfolio-setup <a name="about-project"></a>
> Portfolio website is one of the most important and first step that speak about you and your work. It's the only way to backtrack your previous experience and introduce yourself in a suitable and professional way.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
> This project is built using HTML and CSS.
<details>
<summary>HTML</summary>
<ul>
<li><a href="https://html.com/#What_is_HTML">index.html</a></li>
</ul>
</details>
<details>
<summary>CSS</summary>
<ul>
<li><a href="https://html.com/css/#What_is_CSS">style.css</a></li>
</ul>
</details>
### Key Features <a name="key-features"></a>
- **No linter errors**
- **Use of correct GitHub flow**
- **Documented in a professional way**
- **Follow best practices for HTML and CSS**
- **Header and Headline section**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🚀 Live Demo <a name="live-demo"></a>
- [<a href="https://adeola003.github.io/My_Portfolio/" target="_blank">Online version</a>](#)
- [Watch Presentation](#)
<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:
- **Visual Studio Code**
- **Git Bash**
### Setup
Clone this repository to your desired folder:
- **cd your-folder**
- **git clone https://github.com/adeola003/My_Portfolio.git**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 👥 Authors <a name="authors"></a>
**Author 1** **Abdel-Khafid SALAOU**
- GitHub: [@githubhandle](https://github.com/adeola003)
- Twitter: [@twitterhandle](https://twitter.com/khadaf6)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/abdel-khafid-salaou-a18396161)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
- **Build a complete Portfolio website**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🤝 Contributing <a name="contributing"></a>
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](../../issues/).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ⭐️ Show your support <a name="support"></a>
If you like this feel free to follow me on github and give this project a star.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank my coding partners, mentors and Microverse for their support in building the project.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 📝 License <a name="license"></a>
This project is [MIT](./LICENSE.md) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| This is my personal portfolio projects to describe my whole journey and list my projects | css,html,javascript | 2023-02-24T18:06:53Z | 2023-03-11T19:08:39Z | null | 2 | 4 | 41 | 0 | 0 | 8 | null | MIT | CSS |
younes-nb/ghokho | master | # Ghokho Project
## Install Dependencies
```sh
npm i
```
## Run the program
### Start the server
```sh
npm start server
```
### Start the commander
```sh
npm start commander
```
## Customize
You can change properties in [utils.ts](src/utils.ts) to customize the program.
```typescript
export const port = 3000;
export const address = `tcp://127.0.0.1:${port}`;
export const directory = './transaction_files/';
export const workerPath = './src/worker.ts';
export const workerProcessesCount = 5;
export const fileCheckerThreadsCount = 5;
export const corruptionChance: number = 1 / 3;
```
| A simple project for multiprocessing and multithreading | child-process,javascript,multiprocessing,multithreading,nodejs,typescript,worker-threads | 2023-02-11T18:05:23Z | 2023-02-11T18:07:44Z | null | 1 | 0 | 7 | 0 | 0 | 8 | null | null | TypeScript |
YoungC0DE/Shopping-list | main |
# ShoppingList
>
> Project made for organizing monthly shopping list in order to keep track of the total amount spent, along with the quantity of purchased products.
>
To start using it, just access the link below:
[](https://shopping-list-youngc0de.vercel.app/)
For the first time, it will be necessary to create a new account. After creating your account, log in to access the system.
## Features
- Edit user data;
- Add products to the list;
- Delete a product from the list;
- Edit a product from the list;
- Change language and theme.
## Technologies
- **i18n** - I implemented this library to do the internal translation of my application. At the moment, the pt-br and en-us languages are available;
- **v-mask** - To perform input data treatment;
- **boostrap** - To speed up the process of creating components and screens;
- **Sweet Alert** - Customized alerts;
- **Vue Toast** - Simple notifications;
- **Pinia** - For state control;
- **Axios** - To consume the API I developed in php in a simple and easy way.
<div>
<img width="50" title="VueJS" alt="Vuejs" src="https://skillicons.dev/icons?i=vue">
<img width="50" title="Vite" alt="vite Logo" src="https://skillicons.dev/icons?i=vite">
<img width="50" title="Javascript" alt="Javascript Logo" src="https://skillicons.dev/icons?i=js">
<img width="50" title="Boostrap" alt="Boostrap Logo" src="https://skillicons.dev/icons?i=bootstrap">
<img width="50" title="Eslint" alt="Eslint Logo" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/eslint/eslint.png">
<img width="50" title="Prettier" alt="Prettier Logo" src="https://prettier.io/icon.png">
</div>
## Environment Variables
If you want to test the project, it will be necessary to add this environment variable.
`VITE_BASE_API=`
## Screenshots
<div style="display: flex">
<img src="https://user-images.githubusercontent.com/68437256/228402955-a13dcea4-5938-475b-bff7-a202337bf246.png" width="500" height="250">
<img src="https://user-images.githubusercontent.com/68437256/228704190-c379c3aa-7353-409c-8880-163930b971c4.png" width="500" height="250">
<div>
## Run Locally
Clone the project
```bash
git clone https://github.com/YoungC0DE/Shopping-list
```
Go to the project directory
```bash
cd Shopping-list
```
Install dependencies
```bash
npm install
```
Start the server
```bash
npm run dev
```
## Support or Feedback
<a href="mailto:raphaelsantosajs@gmail.com?Subject=Friend%20from%20github&Body=Hello%20i%20liked%20your%20project..." target="_blank"><img src="https://img.shields.io/badge/-Gmail-%23ff4141?style=for-the-badge&logo=Gmail&logoColor=white" target="_blank"></a>
## License
[](https://github.com/YoungC0DE/Shopping-list/blob/main/LICENSE)
| Manage your Shopping list | api-rest,axios-vue,css3,html5,javascript,router,single-page-app,vuejs3,eslint,vscode | 2023-02-19T16:12:49Z | 2023-04-03T01:19:18Z | null | 1 | 3 | 46 | 0 | 0 | 7 | null | MIT | Vue |
hunghg255/reactjs-table-dnd | master | <p align="center">
<a href="https://www.npmjs.com/package/reactjs-table-dnd" target="_blank" rel="noopener noreferrer">
<img src="https://api.iconify.design/carbon:carousel-horizontal.svg?color=%2361d7ff" alt="logo" width='100'/></a>
</p>
<p align="center">
A Sort component for Reactjs and antd ✨.
</p>
<p align="center">
<a href="https://www.npmjs.com/package/reactjs-table-dnd" target="_blank" rel="noopener noreferrer"><img src="https://badge.fury.io/js/reactjs-table-dnd.svg" alt="NPM Version" /></a>
<a href="https://www.npmjs.com/package/reactjs-table-dnd" target="_blank" rel="noopener noreferrer"><img src="https://img.shields.io/npm/dt/reactjs-table-dnd.svg?logo=npm" alt="NPM Downloads" /></a>
<a href="https://bundlephobia.com/result?p=reactjs-table-dnd" target="_blank" rel="noopener noreferrer"><img src="https://img.shields.io/bundlephobia/minzip/reactjs-table-dnd" alt="Minizip" /></a>
<a href="https://github.com/hunghg255/reactjs-table-dnd/graphs/contributors" target="_blank" rel="noopener noreferrer"><img src="https://img.shields.io/badge/all_contributors-1-orange.svg" alt="Contributors" /></a>
<a href="https://github.com/hunghg255/reactjs-table-dnd/blob/main/LICENSE" target="_blank" rel="noopener noreferrer"><img src="https://badgen.net/github/license/hunghg255/reactjs-table-dnd" alt="License" /></a>
</p>
## Live demo
[Live Demo](https://reactjs-table-dnd.vercel.app/)
## Installation
[](https://nodei.co/npm/reactjs-table-dnd/)
## Example
[Example](./website/)
## Install
```
npm i reactjs-table-dnd@latest
```
## Usage
### Basic Example
```js
import React, { Component } from 'react';
import { render } from 'react-dom';
import { SortableContainer, SortableElement } from 'reactjs-table-dnd';
import arrayMove from 'array-move';
const SortableItem = SortableElement(({ value }) => <li>{value}</li>);
const SortableList = SortableContainer(({ items }) => {
return (
<ul>
{items.map((value, index) => (
<SortableItem key={`item-${value}`} index={index} value={value} />
))}
</ul>
);
});
class SortableComponent extends Component {
state = {
items: ['Item 1', 'Item 2', 'Item 3', 'Item 4', 'Item 5', 'Item 6'],
};
onSortEnd = ({ oldIndex, newIndex }) => {
this.setState(({ items }) => ({
items: arrayMove(items, oldIndex, newIndex),
}));
};
render() {
return <SortableList items={this.state.items} onSortEnd={this.onSortEnd} />;
}
}
render(<SortableComponent />, document.getElementById('root'));
```
That's it! React Sortable does not come with any styles by default, since it's meant to enhance your existing components.
## Why should I use this?
There are already a number of great Drag & Drop libraries out there (for instance, [react-dnd](https://github.com/gaearon/react-dnd/) is fantastic). If those libraries fit your needs, you should definitely give them a try first. However, most of those libraries rely on the HTML5 Drag & Drop API, which has some severe limitations. For instance, things rapidly become tricky if you need to support touch devices, if you need to lock dragging to an axis, or want to animate the nodes as they're being sorted. React Sortable HOC aims to provide a simple set of higher-order components to fill those gaps. If you're looking for a dead-simple, mobile-friendly way to add sortable functionality to your lists, then you're in the right place.
### Prop Types
#### SortableContainer HOC
| Property | Type | Default | Description |
| :-------------------------------- | :-------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| axis | String | `y` | Items can be sorted horizontally, vertically or in a grid. Possible values: `x`, `y` or `xy` |
| lockAxis | String | | If you'd like, you can lock movement to an axis while sorting. This is not something that is possible with HTML5 Drag & Drop. Possible values: `x` or `y`. |
| helperClass | String | | You can provide a class you'd like to add to the sortable helper to add some styles to it |
| transitionDuration | Number | `300` | The duration of the transition when elements shift positions. Set this to `0` if you'd like to disable transitions |
| keyboardSortingTransitionDuration | Number | `transitionDuration` | The duration of the transition when the helper is shifted during keyboard sorting. Set this to `0` if you'd like to disable transitions for the keyboard sorting helper. Defaults to the value set for `transitionDuration` if undefined |
| keyCodes | Array<Number> | `{`<br/> `lift: [32],`<br/> `drop: [32],`<br/> `cancel: [27],`<br/> `up: [38, 37],`<br/> `down: [40, 39]`<br/>`}` | An object containing an array of keycodes for each keyboard-accessible action. |
| pressDelay | Number | `0` | If you'd like elements to only become sortable after being pressed for a certain time, change this property. A good sensible default value for mobile is `200`. Cannot be used in conjunction with the `distance` prop. |
| pressThreshold | Number | `5` | Number of pixels of movement to tolerate before ignoring a press event. |
| distance | Number | `0` | If you'd like elements to only become sortable after being dragged a certain number of pixels. Cannot be used in conjunction with the `pressDelay` prop. |
| shouldCancelStart | Function | [Function](https://github.com/clauderic/reactjs-table-dnd/blob/master/src/SortableContainer/index.js#L48) | This function is invoked before sorting begins, and can be used to programatically cancel sorting before it begins. By default, it will cancel sorting if the event target is either an `input`, `textarea`, `select`, `option`, or `button`. |
| updateBeforeSortStart | Function | | This function is invoked before sorting begins. It can return a promise, allowing you to run asynchronous updates (such as `setState`) before sorting begins. `function({node, index, collection, isKeySorting}, event)` |
| onSortStart | Function | | Callback that is invoked when sorting begins. `function({node, index, collection, isKeySorting}, event)` |
| onSortMove | Function | | Callback that is invoked during sorting as the cursor moves. `function(event)` |
| onSortOver | Function | | Callback that is invoked when moving over an item. `function({index, oldIndex, newIndex, collection, isKeySorting}, e)` |
| onSortEnd | Function | | Callback that is invoked when sorting ends. `function({oldIndex, newIndex, collection, isKeySorting}, e)` |
| useDragHandle | Boolean | `false` | If you're using the `SortableHandle` HOC, set this to `true` |
| useWindowAsScrollContainer | Boolean | `false` | If you want, you can set the `window` as the scrolling container |
| hideSortableGhost | Boolean | `true` | Whether to auto-hide the ghost element. By default, as a convenience, React Sortable List will automatically hide the element that is currently being sorted. Set this to false if you would like to apply your own styling. |
| lockToContainerEdges | Boolean | `false` | You can lock movement of the sortable element to it's parent `SortableContainer` |
| lockOffset | `OffsetValue`\* | [`OffsetValue`\*, `OffsetValue`\*] | `"50%"` | When`lockToContainerEdges`is set to`true`, this controls the offset distance between the sortable helper and the top/bottom edges of it's parent`SortableContainer`. Percentage values are relative to the height of the item currently being sorted. If you wish to specify different behaviours for locking to the _top_ of the container vs the _bottom_, you may also pass in an`array`(For example:`["0%", "100%"]`). |
| getContainer | Function | | Optional function to return the scrollable container element. This property defaults to the `SortableContainer` element itself or (if `useWindowAsScrollContainer` is true) the window. Use this function to specify a custom container object (eg this is useful for integrating with certain 3rd party components such as `FlexTable`). This function is passed a single parameter (the `wrappedInstance` React element) and it is expected to return a DOM element. |
| getHelperDimensions | Function | [Function](https://github.com/clauderic/reactjs-table-dnd/blob/master/src/SortableContainer/index.js#L74-L77) | Optional `function({node, index, collection})` that should return the computed dimensions of the SortableHelper. See [default implementation](https://github.com/clauderic/reactjs-table-dnd/blob/master/src/SortableContainer/defaultGetHelperDimensions.js) for more details |
| helperContainer | HTMLElement | Function | `document.body` | By default, the cloned sortable helper is appended to the document body. Use this prop to specify a different container for the sortable clone to be appended to. Accepts an `HTMLElement` or a function returning an `HTMLElement` that will be invoked before right before sorting begins |
| disableAutoscroll | Boolean | `false` | Disables autoscrolling while dragging |
\* `OffsetValue` can either be a finite `Number` or a `String` made up of a number and a unit (`px` or `%`).
Examples: `10` (which is the same as `"10px"`), `"50%"`
#### SortableElement HOC
| Property | Type | Default | Required? | Description |
| :--------- | :--------------- | :------ | :-------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| index | Number | | ✓ | This is the element's sortableIndex within it's collection. This prop is required. |
| collection | Number or String | `0` | | The collection the element is part of. This is useful if you have multiple groups of sortable elements within the same `SortableContainer`. [Example](http://clauderic.github.io/reactjs-table-dnd/#/basic-configuration/multiple-lists) |
| disabled | Boolean | `false` | | Whether the element should be sortable or not |
### Accessibility
React Sortable HOC supports keyboard sorting out of the box. To enable it, make sure your `SortableElement` or `SortableHandle` is focusable. This can be done by setting `tabIndex={0}` on the outermost HTML node rendered by the component you're enhancing with `SortableElement` or `SortableHandle`.
Once an item is focused/tabbed to, pressing `SPACE` picks it up, `ArrowUp` or `ArrowLeft` moves it one place backward in the list, `ArrowDown` or `ArrowRight` moves items one place forward in the list, pressing `SPACE` again drops the item in its new position. Pressing `ESC` before the item is dropped will cancel the sort operations.
### Grid support
Need to sort items in a grid? We've got you covered! Just set the `axis` prop to `xy`. Grid support is currently limited to a setup where all the cells in the grid have the same width and height, though we're working hard to get variable width support in the near future.
### Item disappearing when sorting / CSS issues
Upon sorting, `reactjs-table-dnd` creates a clone of the element you are sorting (the _sortable-helper_) and appends it to the end of the `<body>` tag. The original element will still be in-place to preserve its position in the DOM until the end of the drag (with inline-styling to make it invisible). If the _sortable-helper_ gets messed up from a CSS standpoint, consider that maybe your selectors to the draggable item are dependent on a parent element which isn't present anymore (again, since the _sortable-helper_ is at the end of the `<body>`). This can also be a `z-index` issue, for example, when using `reactjs-table-dnd` within a Bootstrap modal, you'll need to increase the `z-index` of the SortableHelper so it is displayed on top of the modal
### Click events being swallowed
By default, `reactjs-table-dnd` is triggered immediately on `mousedown`. If you'd like to prevent this behaviour, there are a number of strategies readily available. You can use the `distance` prop to set a minimum distance (in pixels) to be dragged before sorting is enabled. You can also use the `pressDelay` prop to add a delay before sorting is enabled. Alternatively
### Wrapper props not passed down to wrapped Component
All props for `SortableContainer` and `SortableElement` listed above are intentionally consumed by the wrapper component and are **not** passed down to the wrapped component. To make them available pass down the desired prop again with a different name. E.g.:
```js
const SortableItem = SortableElement(({ value, sortIndex }) => (
<li>
{value} - #{sortIndex}
</li>
));
const SortableList = SortableContainer(({ items }) => {
return (
<ul>
{items.map((value, index) => (
<SortableItem key={`item-${index}`} index={index} sortIndex={index} value={value} />
))}
</ul>
);
});
```
### About
<a href="https://www.buymeacoffee.com/hunghg255" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/default-orange.png" alt="Buy Me A Coffee" height="41" width="174"></a>
Gia Hung – [hung.hg](https://hung.thedev.id)
| Reactjs table antd drag and drop | ant-design,drag-and-drop,javascript,npm | 2023-02-10T17:14:06Z | 2024-05-16T11:54:06Z | null | 1 | 0 | 7 | 0 | 1 | 7 | null | MIT | TypeScript |
Stephen-Adom/minimalist-todo-list | main | <div align="center">
<h3><b>Minimalist Todo Application</b></h3>
</div>
<!-- TABLE OF CONTENTS -->
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#triangular_flag_on_post-deployment)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
# 📖 [Project Summary] <a name="about-project"></a>
A web-based application that allows users to create and manage tasks. Users can add new tasks, edit existing ones, refresh the app and mark tasks as complete. The application also provides a clear completed task feature that allows users to filter out completed tasks. This helps users stay organized and on top of their tasks, reducing the chances of missing important deadlines. The project is designed to be user-friendly and intuitive, with a clean and modern interface. It is built with javascript, webpack, bootstrap 5 and rxjs for asynchronous tasks events.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
- **Html 5**
- **CSS 3**
- **Bootstrap 5**
- **Webpack 5**
- **Rxjs**
<!-- Features -->
### Key Features <a name="key-features"></a>
- **Add Todo**
- **Todo List**
- **Clear Completed Todos**
- **Refresh App**
- **Clear Completed tasks**
- **Mark task as complete**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LIVE DEMO -->
## 🚀 Live Demo <a name="live-demo"></a>
- Here is the link to the live demo version - [Minimalist Todo App](https://minimalist-todo-list.vercel.app/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- GETTING STARTED -->
## 💻 Getting Started <a name="getting-started"></a>
To get a local copy up and running, follow these steps.
### Prerequisites
In order to run this project you need:
<!--
Example command:
```sh
gem install rails
```
-->
### Setup
Clone this repository to your desired folder:
```sh
cd my-folder
git clone git@github.com/Stephen-Adom/minimalist-todo-list.git
```
-
### Install
Install this project with:
Example command:
```sh
cd my-project
npm install
```
-
### Usage
To run the project, execute the following command:
```sh
npm run start
```
-
### Run tests
To run tests, run the following command:
<!--
Example command:
```sh
bin/rails test test/models/article_test.rb
```
--->
### Deployment
You can deploy this project using:
<!--
Example:
```sh
```
-->
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
> Mention all of the collaborators of this project.
👤 **Stephen Addae**
- GitHub: [@Stephen-Adom](https://github.com/Stephen-Adom)
- Twitter: [@stephen_alaska](https://twitter.com/stephen_alaska)
- LinkedIn: [Stephen Addae](https://www.linkedin.com/in/stephen-addae-a32334154/)
<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.
- [ ] **Authentication**
<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...
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank (Valentino Gagliardi)['https://www.valentinog.com/blog/webpack/'] for his concise guide to getting started with webpack 5
<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>
| A web-based application that allows users to create and manage tasks. Users can add new tasks, edit existing ones, refresh the app and mark tasks as complete | javascript,rxjs,webpack5 | 2023-02-21T11:02:15Z | 2023-02-28T19:42:17Z | null | 1 | 6 | 39 | 2 | 0 | 7 | null | MIT | JavaScript |
abhideepghosh/Frontend-Interview-Preparation | master | # Frontend Interview Preparation
- This is the repo where I'll be updating all of my frontend interview preparation materials as well as questions from my experiences.
- The main focus of this repo is coding rounds and theory questions.
## Feel Free To Give This Repo A Star If It Helps!!
- By Abhideep Ghosh | This is the repo where I'll be updating all of my frontend interview preparation materials as well as questions from my experiences. | frontend,frontend-interview,frontend-interview-questions,interview-preparation,javascript,javascript-interview-questions,react | 2023-02-14T06:07:20Z | 2024-02-23T17:24:58Z | null | 1 | 0 | 63 | 0 | 1 | 7 | null | null | JavaScript |
Singh-Jii/indigo-expert-8695 | main | # FashionHub
Cloning of Anthropologie
Its a web application that provides a platform to buy fashion clothes products.It a user friendly E Commerce Website.

[website Url--](https://eclectic-jelly-7ae5cd.netlify.app/)
## Tech Stack
**Client:** Html ,Css
**Client Server Api:** Local Storage,Json Server.
## 🛠 Skills
Javascript, HTML, CSS...

##Admin page login
"email": "admin@gmail.com",
"password": "Admin@1212"
## Run Locally
Clone the project
```bash
git clone
https://github.com/Singh-Jii/indigo-expert-8695
Install dependencies
```bash
npm install
```
Live Running server -https://fashionhub-mrc2.onrender.com/
Start the server
```bash
npm run start
```
## Support
For support, email -gentalman1945@gmail.com
For Go to the website click the link:-[https://legendary-monstera-f8fb81.netlify.app/](https://eclectic-jelly-7ae5cd.netlify.app/)
GitHub Link:-https://github.com/Singh-Jii/indigo-expert-8695
## Screenshots






## Contributing
Contributions are always welcome!
## Authors
[Lovely Singh](https://github.com/gzbsingh/Singh-Jii)
-[Ramanjeet Singh](https://github.com/gzbsingh)
[Sabar Patel](https://github.com/saber003)
[Chandan Kumar Behara](https://github.com/chandankumar1425)
[Neelesh](https://github.com/Neelachari)
## Linkedin
[Lovely Singh](https://www.linkedin.com/in/lovely-kumari-86189a215)
-[Ramanjeet Singh](https://www.linkedin.com/in/ramanjeet-singh-212430190/)
[Sabar Patel](https://www.linkedin.com/in/saber-patel-992ab814a/)
[Chandan Kumar Behara](https://www.linkedin.com/in/kaushikchandan6372/)
[Neelesh](https://www.linkedin.com/in/neelesh-n-h-2704a7196/)
| It is a unique, full-lifestyle shopping website, with a mostly exclusive assortment of clothing, shoes, accessories, beauty, furniture, home décor, garden, bridal, and more. | css3,html5,javascript,json-server,api,localstorage | 2023-02-21T09:30:36Z | 2023-07-06T06:12:43Z | null | 6 | 7 | 71 | 5 | 3 | 7 | null | null | HTML |
Sonu-Shettiyar/SugarCosmetics-Clone | main | ## Sugar Cosmetics Clone Documentation
<!-- PROJECT LOGO -->
<br />
<div align="center">
<a href="https://github.com/github_username/repo_name">
<img src="lg.png" alt="Logo" width="80" height="80">
</a>
<h3 align="center">Beauty Bliss</h3>
</div>
This documentation provides an overview of the Sugar Cosmetics clone project developed during Construct Week in Unit-3 at Masai School. The project was a team effort involving four members and was completed within a span of 5 days.
### Project Details
- Project Name: BeautyBliss
- Project URL: [https://gleeful-lily-870fcb.netlify.app/](https://gleeful-lily-870fcb.netlify.app/)
- GitHub Repository: [https://github.com/Sonu-Shettiyar/bright-stamp-7114](https://github.com/Sonu-Shettiyar/bright-stamp-7114)
### About The Project
The Sugar Cosmetics clone project aimed to replicate the functionality and design of the original Sugar Cosmetics website. The cloned website, named BeautyBliss, is an e-commerce platform that specializes in selling cosmetics from a particular brand.
### Technologies Used
The team utilized the following technologies and tools to develop the Sugar Cosmetics clone:
- JavaScript
- HTML
- Bootstrap
- CSS
### Project Features
The BeautyBliss website is a dynamic and medium screen responsive application. The key features of the project include:
- E-commerce functionality: Users can browse through the available cosmetics and make purchases.
- Product listings: The website showcases a range of products available for sale, including detailed product descriptions and pricing information.
- Shopping cart: Users can add products to their cart and proceed to checkout.
- Checkout process: Users can enter their shipping details and complete the purchase.
- Responsive design: The website is optimized for medium-sized screens, ensuring a consistent user experience across devices.
### Team Members
The Sugar Cosmetics clone project was developed by the following team members:
- Team Member 1:
- Name: Sonu Shettiyar (Team Lead)
- LinkedIn Handle: [https://www.linkedin.com/in/sonu-shettiyar-071965228/]
- Email: sonushettiyar9393@gmail.com
- Team Member 2:
- Name: Amit Roy
- LinkedIn Handle: [https://www.linkedin.com/in/amit-roy-509698260/]
- Team Member 3:
- Name: Tejas Shelke
- LinkedIn Handle: [https://www.linkedin.com/in/tejas-shelke/]
- Team Member 4:
- Name: Mangalam Kumar
- LinkedIn: [https://www.linkedin.com/in/mangalam-kumar/]
- Email: mangalamkumar2002@gmail.com
-Signup/login page


- Cards with Sliding pagination



-Card Image

-Specific Category page

-Footer

<!-- CONTACT -->
### Conclusion
The Sugar Cosmetics clone, named BeautyBliss, is an e-commerce website that offers a seamless shopping experience for cosmetics enthusiasts. By leveraging JavaScript, HTML, Bootstrap, and CSS, the team successfully replicated the functionalities and design of the original website. For more information, refer to the provided project URL and GitHub repository links.
For any inquiries or further details about the project, please contact the team members mentioned above.
| The cloned website, named BeautyBliss, is an e-commerce platform that specializes in selling cosmetics from a particular brand. | boot,css3,html5,javascript,sugarcosmetics | 2023-02-20T17:43:02Z | 2023-07-28T09:42:52Z | null | 5 | 22 | 66 | 0 | 0 | 7 | null | null | CSS |
alanbaltabai/mybuh-test-task | master | # Test task for <a href="https://mybuh.kz">mybuh.kz</a>, online accounting company
<img src="https://github.com/devicons/devicon/blob/master/icons/html5/html5-original.svg" title="HTML5" alt="HTML" width="40" height="40"/>
<img src="https://github.com/devicons/devicon/blob/master/icons/css3/css3-original.svg" title="CSS3" alt="CSS" width="40" height="40"/> <img src="https://github.com/devicons/devicon/blob/master/icons/javascript/javascript-original.svg" title="JavaScript" alt="JavaScript" width="40" height="40"/> <img src="https://github.com/devicons/devicon/blob/master/icons/react/react-original.svg" title="React" alt="React" width="40" height="40"/>
## Table of contents
- [General info](#general-info)
- [Design](#design)
- [Technologies](#technologies)
- [Setup](#setup)
## General info
A test task for an online accounting company. They sent the design in Figma and all the JSON data. <br>
I implemented the app from scratch. I had an opportunity to practice dropdowns, modal windows, and render props pattern. The app has all CRUD operations: Creating, Reading, Updating and Deleting. <br>
Overall, the process was enjoyable and the final result came out good, but one thing I regret is using too little semantic elements in HTML while constructing markup and overusing "divs", and not taking advantage of the inheritance and the specificity in making styles in CSS and relying too much on "classes". <br>
Link to the website of the app: <a href="https://alanbaltabay-mybuh-test-task.netlify.app/">link</a> <br>
## Design
Design in Figma: <a href="https://www.figma.com/file/X8TYRlTNznfcTjjftgyeuU/Quizzical-App-(Copy)?node-id=0-1&t=llOxm2pYemM2rmnh-0">link to design</a>
## Technologies
- JavaScript (fetch API) <br>
- React (useState and useEffect hooks, state, props)
## Setup
To run this project (after downloading and installing the packages):
```
$ npm run dev
```
| Test task for mybuh.kz, implemented in React | javascript,react,css,html | 2023-02-10T10:13:29Z | 2023-04-25T13:40:43Z | null | 1 | 0 | 25 | 0 | 1 | 7 | null | null | JavaScript |
hunghg255/reactjs-s4y | master | <p align="center">
<a href="https://www.npmjs.com/package/reactjs-s4y" target="_blank" rel="noopener noreferrer">
<img src="https://api.iconify.design/solar:magic-stick-3-broken.svg?color=%23fdb4e2" alt="logo" width='100'/></a>
</p>
<p align="center">
A library sticky element for ReactJS
</p>
<p align="center">
<a href="https://www.npmjs.com/package/reactjs-s4y" target="_blank" rel="noopener noreferrer"><img src="https://badge.fury.io/js/csvs-parsers.svg" alt="NPM Version" /></a>
<a href="https://www.npmjs.com/package/reactjs-s4y" target="_blank" rel="noopener noreferrer"><img src="https://img.shields.io/npm/dt/csvs-parsers.svg?logo=npm" alt="NPM Downloads" /></a>
<a href="https://bundlephobia.com/result?p=reactjs-s4y" target="_blank" rel="noopener noreferrer"><img src="https://img.shields.io/bundlephobia/minzip/reactjs-s4y" alt="Minizip" /></a>
<a href="https://github.com/hunghg255/reactjs-s4y/graphs/contributors" target="_blank" rel="noopener noreferrer"><img src="https://img.shields.io/badge/all_contributors-1-orange.svg" alt="Contributors" /></a>
<a href="https://github.com/hunghg255/reactjs-s4y/blob/main/LICENSE" target="_blank" rel="noopener noreferrer"><img src="https://badgen.net/github/license/hunghg255/reactjs-s4y" alt="License" /></a>
</p>
## To install the latest stable version:
```
npm install --save reactjs-s4y
```
## Basic usage:
```jsx
import Sticky from "reactjs-s4y";
const Page = () => (
<div className="row">
<Sticky offsetTop={20} offsetBottom={20}>
<div>Sidebar</div>
</Sticky>
<div>Content</div>
</div>
);
```
## Or via the `useSticky` hook
```jsx
import {useSticky} from "reactjs-s4y";
const Page = () => {
const stickyRef = useSticky({offsetTop: 20, offsetBottom: 20})
<div className="row">
<aside ref={stickyRef}>
<div>Sidebar</div>
</aside>
<div>Content</div>
</div>
};
```
---
| Reactjs Sticky | javascript,react,sticky | 2023-02-10T16:18:56Z | 2024-01-10T06:34:38Z | 2023-07-29T20:24:49Z | 1 | 5 | 18 | 0 | 1 | 7 | null | MIT | TypeScript |
sheep-realms/Echo | master | # Echo
这是一款可以滚动输出文本的工具,可以用在对话框之类的应用场景中。
- [示例文案](doc/model_text.md)
## 消息格式
支持输入 String、Array、Object 类型的消息。当类型为 String 时,消息将被直接使用。当类型为 Object 时,消息会被序列化后再使用。当类型为 Array 时,将会遍历每一个子元素进行上述操作。
每一个 Object 消息对象包含以下值:
| 名称 | 类型 | 描述 |
| - | - | - |
| text | String | 【必选】显示的文本。 |
| class | String | 文本的 class 属性。 |
| style | Object | 文本的自定义样式。Echo 本身不定义样式,样式需要下游代码实现。 |
| pause | Number | 当前文本输出完毕后的停顿时间。( `Echo.printSpeed * pause` ms ) |
| speed | Number | 当前文本的打印速度,即每个打印循环所用时间(ms)。 |
| typewrite | String | 模拟打字动作。在输出 `text` 字段的内容之前先打印此字段的内容,随后被 `text` 字段的内容替换。 |
| event | String | 自定义事件名。 |
| data | Object | 自定义数据。 |
## 消息队列格式
消息队列为 Array 类型,每一个数组元素包含以下值:
| 名称 | 类型 | 描述 |
| - | - | - |
| message | String / Array / Object | 消息对象。 |
| data | Object | 打印启动参数。 |
## 打印启动参数格式
打印启动参数为 Object 类型,包含以下值:
| 名称 | 类型 | 描述 |
| - | - | - |
| printSpeed | Number | 打印速度。 |
| customData | Object | 自定义数据。 |
## 类:Echo
### 构建参数
| 名称 | 类型 | 描述 | 默认值 |
| - | - | - | - |
| $sel | String | 见 [#rd](#rd)。内容为空则不执行 `rd()` 方法。 | '' |
### 属性
| 名称 | 类型 | 描述 | 默认值 |
| - | - | - | - |
| message | String / Array / Object | 上一条消息。 | '' |
| messageBuffer | Array | 消息缓冲区。 | [] |
| messageList | Array | 消息队列。 | [] |
| dbChrBuffer | String | 中日韩字符缓冲区。 | '' |
| timer | Number | 定时器 ID。 | 0 |
| groupCount | Number | 分组计数。 | 0 |
| groupStack | Array | 分组堆栈。 | [] |
| printSpeed | Number | 打印速度。 | 30 |
| printSpeedStart | Number | 启动时的打印速度。 | 30 |
| printSpeedChange | Number | 打印过程中的打印速度。 | 30 |
| state | String | 运行状态。 | 'stop' |
| typewrite | String | 打字动作状态。 | 'none' |
| filter | Object | 过滤器状态开关。 | 见下文。 |
| event | Object | 用于绑定事件。 | 略 |
#### 属性 filter 中的值
| 名称 | 类型 | 描述 | 默认值 |
| - | - | - | - |
| HTMLFormat | Boolean | HTML 格式化,用于过滤空格、尖括号等可能影响 HTML 渲染的字符,阻止脚本注入。 | true |
### rd
快速部署,需要 JQuery 支持,适用于简单的应用场景,仅提供基本功能,不支持自定义样式、动作等高级功能。
| 名称 | 类型 | 描述 | 默认值 |
| - | - | - | - |
| $sel | String | JQuery 选择器,选择需要输出的元素。 | |
### ~~backspace~~
退格,触发 `backspace` 事件。(弃用方法,需要重写)
### clear
清空内容,触发 `clear` 事件。
### groupEnd
分组结束,触发 `groupEnd` 事件。
### groupStart
分组开始,触发 `groupStart` 事件。
| 参数名称 | 类型 | 描述 | 默认值 |
| - | - | - | - |
| obj | Object | 产生新分组的序列对象。 | |
### insertSequence
在消息缓冲区的头部插入自定义序列。当打印遇到自定义序列时触发 `customSequence` 事件。
| 参数名称 | 类型 | 描述 | 默认值 |
| - | - | - | - |
| data | Object | 自定义序列数据。 | {} |
| afterSpace | Number | 在自定义序列之前占用的打印循环次数。 | 0 |
| beforeSpace | Number | 在自定义序列之后占用的打印循环次数。 | 0 |
### messageSerialize
序列化消息对象。
| 参数名称 | 类型 | 描述 | 默认值 |
| - | - | - | - |
| msg | String / Array / Object | 消息对象。 | |
### next
打印消息队列中的下一条消息,触发 `next` 事件。
### on
绑定事件。可绑定的事件详见[事件列表](doc/event.md)。
| 参数名称 | 类型 | 描述 | 默认值 |
| - | - | - | - |
| eventName | String | 事件名称。| |
| action | Function | 函数。| function() {} |
### print
尝试从消息缓冲区中打印新字符,触发 `print` 事件。首次打印触发 `printStart` 事件,最后一次打印结束后触发 `printEnd` 事件。
| 参数名称 | 类型 | 描述 | 默认值 |
| - | - | - | - |
| that | String | Echo 对象自己,用于修正定时器 this 问题。 | this |
### send
开始打印新消息,触发 `send` 事件。
| 参数名称 | 类型 | 描述 | 默认值 |
| - | - | - | - |
| text | String / Array / Object | 消息对象。 | |
| data | Object | 打印启动参数。 | {} |
### sendList
使用消息队列开始打印新消息,依次触发 `sendList`、`next`、`send` 事件。
| 参数名称 | 类型 | 描述 | 默认值 |
| - | - | - | - |
| messageList | Array | 消息队列。 | |
### ~~skip~~
跳过打印过程,立即输出完整内容,触发 `skip` 事件。(弃用方法,需要重写)
### speed
在打印过程中修改打印速度。
| 参数名称 | 类型 | 描述 | 默认值 |
| - | - | - | - |
| value | Number | 定时器延时毫秒。 | undefined |
### stop
立即停止打印,触发 `stop` 事件,且不触发其他事件。
### typewriteEnd
打字动作效果结束,触发 `typewriteEnd` 事件。
| 这是一款可以滚动输出文本的工具,可以用在对话框之类的应用场景中。 | dialog,javascript,library,subtitles | 2023-02-17T16:28:46Z | 2024-04-23T16:08:04Z | 2024-04-23T16:08:04Z | 1 | 1 | 36 | 0 | 1 | 7 | null | GPL-3.0 | JavaScript |
epicestudar/FrontEnd-1semestre2023 | main | # readme being built...
| repository intended for studying FrontEnd of the Senai DEV course | bootstrap,css,css-flexbox,flexbox,frontend,html,html-css-javascript,javascript,markup-language,media-queries | 2023-02-10T19:40:29Z | 2023-09-20T17:34:57Z | null | 1 | 1 | 50 | 0 | 0 | 7 | null | null | HTML |
faiyaz7070/clone-of-amazone | main | # tangy-kittens-9660 | Amazon.com is a vast Internet-based enterprise that sells books, music, movies, housewares, electronics, toys, and many other goods, either directly or as the middleman between other retailers and Amazon.com's millions of customers. | css,expressjs,html,javascript,mongodb,mongoose,nodejs | 2023-02-21T03:50:38Z | 2024-02-19T04:16:35Z | null | 1 | 3 | 8 | 0 | 1 | 7 | null | null | HTML |
dev-mamun/awesome-books-with-ES6 | main | <a name="readme-top"></a>
<!-- TABLE OF CONTENTS -->
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Prerequisites](#prerequisites)
- [Setup](#setup)
- [Install](#install)
- [Usage](#usage)
- [Deployment](#triangular_flag_on_post-deployment)
- [👥 Author](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
# 📖 Awesome Books <a name="about-project"></a>
> It's a book collection project. Use only JavaScript ES6 & CSS to build this.
### 🛠 Tech Stack <a name="tech-stack"></a>
- HTML
- CSS
- JavaScript ES6
<!-- Features -->
### Key Features <a name="key-features"></a>
- Book List
- Add New
- Delete
<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://dev-mamun.github.io/awesome-books-with-ES6/))
- Live Demo currently no available
<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:
- GIT
- if you don't have git installed on your machine you can download it from [here](https://git-scm.com/downloads).
- Linter
- You can get install guide from <a href="https://github.com/microverseinc/linters-config/tree/master/html-css">
here</a>
- Node.js & Npm
- if you don't have npm installed on your machine you can download it from [here](https://nodejs.org/en/)
### Setup
Once you have git installed on your machine you can clone project by running the command below.
To clone your project to your local machine
```sh
git clone git@github.com:dev-mamun/awesome-books-with-ES6.git
```
Alternatively, you can download the zip file of your project by clicking on the `Code` button on the right side of your
project page and clicking on `Download ZIP`
### Install
Install this project with:
```sh
cd awesome-books-with-ES6
```
For this project, you don't need to install any dependencies but if you prefer to install any dev dependencies run:
```
npm install
npm init -y
npx hint .
npm install --save-dev stylelint@13.x stylelint-scss@3.x stylelint-config-standard@21.x stylelint-csstree-validator@1.x
```
### Usage
To run the project, use the following :
- VSCode use [Live Preview](https://marketplace.visualstudio.com/items?itemName=ms-vscode.live-server)
Alternative: Locate the folder where you cloned your project and open the `index.html` file in your browser to view your
project.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Author <a name="authors"></a>
👤 **Abdullah AL mamun**
- GitHub: [@dev-mamun](https://github.com/dev-mamun)
- Twitter: [@CoderKnight](https://twitter.com/CoderKnight)
- LinkedIn: [Mamun](https://www.linkedin.com/in/dev-mamun/)
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- Notification pop up
<!-- 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!
> If you like this project feel comfortable to endorse the author.
> You can contact the author via [Twitter](https://twitter.com/CoderKnight) or [Linkedin](https://www.linkedin.com/in/dev-mamun/) or directly message at mamun1214@gmail.com
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank...
- Teammates
- Mentors
- YouTube tutorials
- Microverse guides
- Google Search
<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>
| Its a book collection project, build using ES6. The goal is to make it more organized by using modules. | css,html,javascript,css3 | 2023-02-23T15:02:34Z | 2023-02-27T16:58:56Z | null | 1 | 1 | 9 | 0 | 0 | 7 | null | MIT | CSS |
pacehutt/Music-Remover | master | null | This is a music splitter 🛠️ application that separates the vocals from any song uploaded to the API and returns the vocals audio file in a .wav format. . . | api,javascript,nodejs,music-remover,python3,rest-api,music,servers,vocals,vocalshifter | 2023-02-24T16:51:37Z | 2024-01-27T22:18:14Z | null | 1 | 1 | 21 | 0 | 1 | 7 | null | MIT | JavaScript |
puja2795/mindless-wool-6764 | main | # mindless-wool-6764
https://industry-buying.vercel.app/
# Repository -> mindless-wool-6764
# Project Name -> Industry Buying
<img src="https://www.industrybuying.com/static/images/industry-buying-white-logo.png"/>
# Collabprators
### Pujarini Sahooo (Team Lead)
### Rinki Singh
### Abhishek Singh
### Soumya Ranjan
### Kapil
<img src="https://lh3.googleusercontent.com/-AftJ8468-PrK1RVe9Yd43j31SthPVLRoigdiPCeaZAu29q5bJOYC_GZi7URopF_WcrgTQ=s108"/>
## Tech Stacks
#### JavaScript
#### React
#### Redux
#### React-Redux
#### Json server
#### Chakra UI
#### CSS
## Project Structure
#### Home Page
#### Products Page
#### Cart Page
#### Checkout Page
#### Admin Panel
<img src="https://www.rolandberger.com/img/og/rb_dig_21_001_05_expertise_industrial_products_services_og.png"/>
| E-commerce website featuring exclusive range of utility products for all industrial purpose and caters the diverse needs of buyers and sellers. | css,html,javascript,react,reactjs,redux,redux-thunk | 2023-02-21T07:51:20Z | 2023-04-10T12:29:31Z | null | 6 | 37 | 103 | 2 | 3 | 7 | null | null | JavaScript |
laisfrigerio/7daysofcode-wordle-js | main | # 7 Days of Code - Clone Wordle Game
<p align="center">
<img src="./resources/assets/images/logo.svg" width="150" height="150"/>
</p>
Esse projeto foi idealizado por mim para o desafio de 7 dias de código, em parceria com a Alura - uma empresa de educação em tecnologia.
O design do projeto foi construído no Figma, e os alunos têm como desafio reproduzir esse layout em código, utilizando as tecnologias HTML (linguagem de marcação), CSS (linguagem de estilos) e Javascript, praticando tudo o que aprenderam sobre.
Nesse repositório contém o código final que eu desenvolvi, separado por "branches", onde cada branch contém o código do respectivo dia.
Não há código certo ou errado, pois cada desenvolvedor possui sua própria maneira de escrever sua solução. Portanto, fique a vontade para criar do seu jeito e não se preocupe caso a sua solução seja diferente da minha.
Eu desafio você a ir além do desafio proposto. Estimule sua criativade:
- Defina uma nova paleta de cores;
- Adicione animações com CSS;
- Adicione um tema de dark/light mode;
- Não esqueça da responsividade da sua página - Mobile First;
- Crie testes de unidade, integração e/ou E2E;
- Replique este desafio utilizando novas tecnologias: React, Vue, Angular, etc;
- Acessibilidade;
- SEO;
- E muuuuuuito mais;
O objetivo é praticar. Portanto, coloque em prática tudo o que você já aprendeu e adiquira novas conhecimentos!!!
Até a próxima!
| 7 Days Of Code - Clone Wordle Game with Javascript | 7daysofcode,alura,alura-challenge,challenge,css,html,javascript,wordle,wordle-clone,wordle-javascript | 2023-02-15T21:23:29Z | 2023-02-22T16:38:37Z | null | 1 | 9 | 40 | 0 | 2 | 7 | null | MIT | JavaScript |
oovillagran/Portfolio-project | main | <a name="readme-top"></a>
<div align="center">
<h1><b>Portfolio Project</b></h1>
<img src="images/screenshots/README.png" alt="Readme Image">
</div>
<!-- TABLE OF CONTENTS -->
# 📗 Table of Contents
- [📗 Table of Contents](#-table-of-contents)
- [📖 Portfolio Project: Setup and mobile first](#-portfolio-project-setup-and-mobile-first)
- [🛠 Built With ](#-built-with-)
- [Tech Stack ](#tech-stack-)
- [Key Features ](#key-features-)
- [🚀 Live Demo ](#-live-demo-)
- [🏎️ Loom Walktrough ](#️-loom-walktrough-)
- [💻 Getting Started ](#-getting-started-)
- [Prerequisites](#prerequisites)
- [Setup](#setup)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#deployment)
- [👥 Authors ](#-authors-)
- [🔭 Future Features ](#-future-features-)
- [🤝 Contributing ](#-contributing-)
- [⭐️ Show your support ](#️-show-your-support-)
- [🙏 Acknowledgments ](#-acknowledgments-)
- [📝 License ](#-license-)
<!-- PROJECT DESCRIPTION -->
# 📖 Portfolio Project: Setup and mobile first<a name="about-project"></a>
**Portfolio Project: Setup and mobile first** is the start point in order to create my own portfolio web site. This project uses the template number 1 from the **templates in Figma**.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>HTML</summary>
<ul>
<li>HTML</li>
</ul>
</details>
<details>
<summary>CSS</summary>
<ul>
<li>CSS</li>
</ul>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **Creating branches on repositories.**
- **Use of linter on HTML&CSS project.**
- **Write a correct descriptive README file.**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LIVE DEMO -->
## 🚀 Live Demo <a name="live-demo"></a>
- Here you can see a [Live Demo](https://oovillagran.github.io/Portfolio-project/) of my project.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- Walktrough-->
## 🏎️ Loom Walktrough <a name="walktrough"></a>
- This is the [Loom Walktrough](https://www.loom.com/share/dc581ee556564b79980452c969e5d524) of my project.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- GETTING STARTED -->
## 💻 Getting Started <a name="getting-started"></a>
To get a local copy up and running, follow the following steps steps.
### Prerequisites
In order to run this project you need:
- Create a repo on your repositores files.
- Clone or make a copy of this repo on your local machine.
- Follow GitHub flow.
- A carefully reading of this README.md is required.
### Setup
Clone this repository to your desired folder:
```bash
cd my-folder
git clone git@github.com:oovillagran/Portfolio-project.git
```
### Install
Install this project with:
```bash
npm install
```
### Usage
To run the project, you can use your favorite browser.
### Run tests
To run tests, execute the following command:
```bash
npx hint .
```
### Deployment
- You can deploy this project using GitHub pages.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 **Oscar Villagran**
- GitHub: [@oovillagran](https://github.com/oovillagran)
- Twitter: [@oovillagran](https://twitter.com/oovillagran)
- LinkedIn: [Oscar Villagran](https://www.linkedin.com/in/oovillagran/)
👤 **Hafed Efheij**
- GitHub: [@Hafed](https://github.com/hafedefheij)
- LinkedIn: [@Hafed](https://www.linkedin.com/in/hafedefheij)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- [ ] **Use of linter in HTML&CSS projects**
- [ ] **Flexbox tools are requiered**
- [ ] **Use README template file**
- [ ] **Ask for a code review**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- CONTRIBUTING -->
## 🤝 Contributing <a name="contributing"></a>
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](../../issues/).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- SUPPORT -->
## ⭐️ Show your support <a name="support"></a>
If you like this project feel free to make any comment, all contributions are welcome!.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank Microverse comunity, especially reviewers guys, they do an excellent job. I thank my learning, morning session and standup partners for supporting me.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 📝 License <a name="license"></a>
This project is [MIT](LICENSE.md) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| Portfolio project was my first project at Microverse, where I learn how to work using HTML, CSS and JavaScripts too. I have to make a copy of the original desing as shown in FIGMA template about a portofolio of a web developer professional. I learn how to work making a mobile first approach and working in a responsive way design. | css,html,javascript | 2023-02-16T15:25:16Z | 2023-04-12T16:57:56Z | null | 4 | 15 | 121 | 1 | 0 | 7 | null | MIT | CSS |
mwismann/awesome-books-with-es6 | main |
<a name="readme-top"></a>
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#triangular_flag_on_post-deployment)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [📝 License](#license)
# 📖 [awesome-books-with-es6] <a name="about-project"></a>
**[awesome-books-with-es6]** is my first project following the ES6 required syntax. For this, I set up a new modules directory for the implementation of multiple js modules. Then, I procceed to refactor my previous Awesome Books code to meet the ES6 standards. Lastly, I implemented the luxon library to diisplay the currrent local time on the homepage.
## 🛠 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 used in this project.</li>
</ul>
</details>
### Key Features <a name="key-features"></a>
- **[Correct set up of GitHub Flows.]**
- **[Implementation of modules directory for multiple js files]**
- **[Refacoring of Awesome Books with ES6 syntax]**
- **[Implementation of luxon library to display current local time]**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🚀 Live Demo <a name="live-demo"></a>
- https://mwismann.github.io/awesome-books-with-es6/
<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
- You don't need any previous installation in order to run this project
### Setup
Clone this repository to your desired folder:
```sh
cd my-folder
git clone https://github.com/mwismann/awesome-books-with-es6.git
```
### Install
- This is not an installable project
### Usage
- There's no command required to run the project
### Run tests
- There's no test for this project
### Deployment
- This is not a deployable project
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 👥 Authors <a name="authors"></a>
👤 **Mathias Wismann**
- GitHub: [@mwismann](https://github.com/mwismann)
- Twitter: [@mathias_wismann](https://twitter.com/mathias_wismann)
- LinkedIn: [Mathias Wismann](https://linkedin.com/in/mathías-wismann-bertolucci-8812a4194/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
- **[Enrichment of the project JS files]**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🤝 Contributing <a name="contributing"></a>
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](../../issues/).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ⭐️ Show your support <a name="support"></a>
If you like this project it would be a great help if you could star this repo!
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank to Microverse for providing me the opportunity and inspiration for this work.
<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>
| Awesome Books is a basic application where users can create a simple library by freely adding and removing books. Built with JavaScript. | css,es6,javascript,luxon | 2023-02-20T14:54:43Z | 2023-02-20T21:21:40Z | null | 1 | 1 | 9 | 1 | 0 | 7 | null | MIT | JavaScript |
kateFrontend/js-split-landing-page | main | # Split Landing Page

## 🦉 Main information
Split landing page built with Html5, CSS3 and Vanilla Js.
The project goal:
- create split screen with a background image and a button inside
- when user clicks on one side, it's going to stretch out to about 75% and for the other side 25%
- use CSS for styling and make smoothly transition
- use JavaScript for the hover effects
- set up in HTML, style it with CSS and add the functionality with JavaScript
## ⚡ Built With
[HTML5](https://www.w3schools.com/html/) / [CSS3](https://www.w3schools.com/css/) / [JavaScript](https://www.w3schools.com/js/) | Split landing page built with Html5, CSS3 and Vanilla JS | css3,html-css-javascript,html5,javascript,landing-page,split,transition,vanilla-javascript | 2023-02-10T19:56:29Z | 2023-02-10T21:06:46Z | null | 1 | 0 | 10 | 0 | 0 | 6 | null | null | CSS |
ritikarawat220/To-Do-List | main | 
# To-Do list
<table>
<td style="border: 1px solid black;"><img src="src/ss-todo-list.png" alt="To-Do-List" /></td>
</table>
A todo list app in which the user can add new tasks, edit, complete or delete them. The user can also clear all the completed tasks.
## Requirements
Build a Todo list using:
- HTML5
- CSS3
- JavaScript (ES6)
- Webpack
- Linters (Lighthouse, Webhint, Stylelint, Eslint)
## Built With
- HTML5
- CSS3
- JavaScript (ES6)
- Webpack
- Linters (Lighthouse, Webhint, Stylelint, Eslint)
## Live Demo
Check **Live Demo** [here.](https://ritikarawat220.github.io/To-Do-List/)
## Getting Started
To get a local copy up and running follow these simple example steps.
### Prerequisites
- A web browser (like Google Chrome, Opera...).
- A code editor (like Atom, VScode...).
### Setup
To setup the webpage locally: click on "**Code**" (dropdown list) then "**Download ZIP**".
### Install
Install this project with:
- npm install
- 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
### Deployment
To run the project open the downloaded folder (after extraction) then run the "**index.html**" file in your browser.
## Authors
👤 **Ritika Rawat**
- GitHub: [ritikarawat220](https://github.com/ritikarawat220)
- Twitter: [@ritikarawat22](https://twitter.com/Ritikarawat22)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/rawatritika/)
## 🤝 Contributing
Contributions, issues, and feature requests are welcome!
## Show your support
Give a ⭐️ if you like this project!!
## Acknowledgments
- Hat tip to code reviewers and to everyone who reviewed the project and made suggestions.
## 📝 License
This project is [MIT](./LICENSE) licensed.
| 📝 This is a simple to do list app that lets you add your daily tasks into a list. You can add or remove or modify your task, and you can mark the tasks as complete and delete completed tasks. | css,html,javascript,webpack | 2023-02-21T13:13:00Z | 2023-03-09T07:54:38Z | null | 1 | 5 | 36 | 2 | 0 | 6 | null | MIT | JavaScript |
zoeblow/fy.js | main | # fy <sup>[![Version Badge][npm-version-svg]][npm-url]</sup>
一个通用的 JavaScript 类型测试库
## 安装
```bash
$ npm install fy.js
# or
$ yarn add fy.js
```
## API
### 通用
- `fy.isA` (value, type) or `fy.isType` (value, type)
> 测试`value`的 typeOf 是否为`type`类型。
- `fy.isDefined` (value)
> 测试是否定义了`value`。
- `fy.isEmpty` (value)
> 测试`value`是否为空。
- `fy.isEqual` (value, other)
> 测试`value`是否等于`other`。
- `fy.isHosted` (value, host)
> 测试`value`是否由`Host`托管。
- `fy.isInstance` (value, constructor)
> 测试`value`是否为`constructor`的实例。
- `fy.isNull` (value)
> 测试`value`是否 `null`。
- `fy.isUndefined` (value)
> 测试`value`是否 `undefined`。
### 参数
- `fy.isArgs` (value)
> 测试`value`是否为参数对象。
- `fy.isArgs.isEmpty` (value)
> 测试`value`是否为空参数对象。
### 数组
- `fy.isArray` (value)
> 测试`value`是否为 `array`。
- `fy.isArray.isEmpty` (value)
> 测试`value`是否为空 `array`。
- `fy.isArrayLike` (value)
> 测试`value`是否是类 `array` 的对象。
### 布尔值
- `fy.isBool` (value)
> 测试`value`是否为布尔值。
- `fy.isTrue` (value)
> 测试`value`是否为`true`。
- `fy.isFalse` (value)
> 测试`value`是否为`false`。
### 日期
- `fy.isDate` (value)
> 测试`value`是否为日期。
### 节点元素
- `fy.isElement` (value)
> 测试`value`是否为 html 元素。
### 错误/异常
- `fy.isError` (value)
> 测试`value`是否为`error`对象。
### 函数
- `fy.isFn` (value)
> 测试`value`是否为函数对象。
### 数字
- `fy.isNumber` (value)
> 测试`value`是否为数字。
- `fy.isInfinite` (value)
> 测试`value`是正无穷大还是负无穷大。
- `fy.isDecimal` (value)
> 测试`value`是否为十进制数。
- `fy.isDivisibleBy` (value, n)
> 测试`value`是否可以被`N`整除。
- `fy.isInteger` (value)
> 测试`value`是否为整数。
- `fy.isMaximum/isMax` (value, others[])
> 测试`value`是否是`others`值中最大的。
- `fy.isMinimum/isMin` (value, others[])
> 测试`value`是否是`others`值中最小的。
- `fy.isNaN` (value)
> 测试`value`是否不是 NaN。
- `fy.isEven` (value)
> 测试`value`是否为偶数。
- `fy.isOdd` (value)
> 测试`value`是否为奇数。
- `fy.isGe` (value, other)
> 测试`value`是否大于或等于`other`。
- `fy.isGt` (value, other)
> 测试`value`是否大于`other`。
- `fy.isLe` (value, other)
> 测试`value`是否小于等于`other`。
- `fy.isLt` (value, other)
> 测试`value`是否小于`other`。
- `fy.isWithin` (value, start, finish)
> 测试`value`是否在`start`和`finish`之间。
### 对象
- `fy.isObject` (value)
> 测试`value`是否为 Object。
### 正则
- `fy.isRegexp` (value)
> 测试`value`是否为正则表达式。
### 字符串
- `fy.isString` (value)
> 测试`value`是否为字符串。
### 编码
- `fy.isBase64` (value)
> 测试`value`是否为有效的 Base64 编码字符串。
- `fy.isHex` (value)
> 测试 `value` 是否为有效的十六进制编码字符串。
### Symbols
- `fy.isSymbol` (value)
> 测试`value`是否为 ES6 Symbol。
### 大数字
- `fy.isBigint` (value)
> 测试`value`是否为 ES 建议的 BigInt
[npm-url]: https://npmjs.org/package/fy.js
[npm-version-svg]: https://versionbadg.es/zoeblow/fy.js.svg
| 一个自用的 JavaScript 类型测试库 | js,tools,javascript | 2023-02-17T07:12:19Z | 2023-02-21T01:54:45Z | 2023-02-21T01:54:45Z | 1 | 0 | 14 | 0 | 0 | 6 | null | MIT | JavaScript |
kateFrontend/js-form-input-wave | main | # Input Form Wave Animation

## 🦉 Main information
Simple login form with a wave effect on the labels.
The project goal:
- when a user clicks in the input, he can see the label wave up
- to do this effect, wrap a span around each letter of label using Vanilla JavaScript
- add a transition that the label moves up when an user focus on the input
- add a dynamic transition delay to gives it the wave effect
- set up in HTML, style it with CSS and add the functionality with JavaScript
## ⚡ Built With
[HTML5](https://www.w3schools.com/html/) / [CSS3](https://www.w3schools.com/css/) / [JavaScript](https://www.w3schools.com/js/) | Input form wave animation using Html5, CSS3 and Vanilla Js | animation-css,css3,form,html-css-javascript,html5,input,javascript,labels,vanilla-javascript,vanilla-js | 2023-02-11T19:38:48Z | 2023-02-11T20:30:35Z | null | 1 | 0 | 6 | 0 | 1 | 6 | null | null | CSS |
kateFrontend/js-event-keycodes | main | # Event Key Code

## 🦉 Main information
Simple application that shows you the key code and the code for any key on the keyboard.
The project goal:
- the user hits to any letter, for example L, it will show the actual key which is L, the keycode 76 and the code which is key L
- check if e.key equal an empty string, then it shows the word 'space'
- set up in HTML, style it with CSS and add the functionality with JavaScript
## 🦊 Useful links
KeyboardEvent.keyCode
```
https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/keyCode
```
## ⚡ Built With
[HTML5](https://www.w3schools.com/html/) / [CSS3](https://www.w3schools.com/css/) / [JavaScript](https://www.w3schools.com/js/)
| Event KeyCodes application | css3,html-css-javascript,html5,javascript,keyboard,keycode,keycode-info | 2023-02-14T17:51:15Z | 2023-02-14T22:05:32Z | null | 1 | 0 | 5 | 0 | 0 | 6 | null | null | CSS |
ChrisMunozCodes/PixelVisionize | main | <h1 align="center">
Pixel Visionize
</h1>
<h2 align="center">
Vision your creations with Pixel Visionize (text to image) app.
</h2>
<p align="center">
<a href="#-about-the-project">About the project</a> |
<a href="#-technologies">Technologies</a> |
<a href="#-getting-started">Getting started</a> |
<a href="#-how-to-contribute">How to contribute</a> |
<a href="#-license">License</a>
</p>
<p align="center">
<a href="https://ibb.co/0Fn6w11"><img src="https://i.ibb.co/z7mBkCC/512fa52f1f7581a8c64b2fba72c43c2e.jpg" alt="512fa52f1f7581a8c64b2fba72c43c2e" border="0"></a>
</p>
## 👨🏻💻 About the project
<p align="left" style="color: red;">Pixel Visionize is a text to image generation tool using OpenAI's API technology. Pixel Visionize will give you suggestions for text prompts, allow you to save your creations, and allow you to access your own gallery.</p>
## 🚀 Technologies
Technologies that I used to develop this api
- [Node.js](https://nodejs.org/en/)
- [Express](https://expressjs.com/pt-br/)
- [Nodemon](https://nodemon.io/)
- [JavaScript](https://www.javascript.com/)
- [HTML](https://www.w3schools.com/html/)
- [CSS](https://www.w3schools.com/css/)
## 💻 Getting started
- Enter "npm install" in your terminal to install dependencies.
- Add a .env file (You will store your enviornment variables here).
Within your new .env file include your environment variables
```
PORT= "*port goes here*"
OPENAI_API_KEY= "*key goes here*"
MONGODB_URL = "*Your mongo link here*"
**Clone the project and access the folder**
```
## 🤔 How to contribute
```bash
$ git clone https://github.com/ChrisMunozCodes/PixelVisionize.git
```
**Follow the steps below**
```bash
0. Leave a comment on the issue you would like to work on
1. Fork the original repository (top right corner next to watch and star buttons)
2. Under the dropdown menu from the button "code" copy the HTTPS link (from your forked repository) 'https://github.com/(your username)/PixelVisionize.git'
3. In the place you want to clone the project, use git clone (your https link here)
4. Once you have the project open in VSCODE use 'git remote add upstream https://github.com/ChrisMunozCodes/PixelVisionize.git' in the terminal, this will track the main repository
5. You can now use 'git fetch upstream' in the terminal to see a list of the different branches.
6. Use 'git checkout -b branch-name' replace branch-name with your branch. This will create a new branch for you to work within
7.. You can now use git add . & git commit -m ''
8. Use 'git push -u origin a-descriptive-branch-name' replace a-descriptive-branch-name with your branch name (this will push all your code)
9. Now go back to your github and a button will appear that prompts you to make a pull request
```
| AI image generator application using DALL·E generation technology. | css,html,javascript,nodejs,cloudinary,mongodb,express,openai | 2023-02-21T01:14:33Z | 2023-04-11T02:49:07Z | null | 4 | 36 | 80 | 12 | 2 | 6 | null | null | CSS |
newhoteng/Portfolio | main | # :open_book: Portfolio
**Portfolio** is a project to replicate a web application interface template from Figma in the form of personal portfolio website using industry best practices.
[Project Presentation](https://www.loom.com/share/fbad1f2b421e46f3bbea5332d0753187)
## :hammer_and_wrench: Build With
### Tech Stack
<details><summary>Client</summary>
<ul>
<li><a href="https://html.com/">HTML</a></li>
<li><a href="https://www.w3.org/TR/CSS/#css">CSS</a></li>
</ul>
</details>
<details><summary>Server</summary>
</details>
<details><summary>Database</summary>
</details>
### Key Features
- **Mobile Version**
- Introduction
- Recent Works
- About Me
- Contact Form
- **Desktop Version**
- Introduction
- Recent Works
- About Me
- Contact Form
<p align="right">(<a href="https://github.com/newhoteng/Portfolio#readme">back to top</a>)</p>
## :rocket: Live Demo
- [Portfolio](https://newhoteng.github.io/Portfolio/)
<p align="right">(<a href="https://github.com/newhoteng/Portfolio#readme">back to top</a>)</p>
## :computer: Getting Started
To get a local copy up and running, follow these steps.<br>
**Prerequisites**<br>
In order to run this project you need:
- Text editor
- GitHub account<br>
**Setup**<br>
Clone this repository to your desired folder:<br>
```
git clone https://github.com/newhoteng/Portfolio.git
```
**Install**<br>
Install this project with:<br>
```
npm install
```
<p align="right">(<a href="https://github.com/newhoteng/Portfolio#readme">back to top</a>)</p>
## :busts_in_silhouette: Authors
:bust_in_silhouette: **Harriet Oteng**
- GitHub: [@githubhandle](https://github.com/newhoteng)
- Twitter: [@twitterhandle](https://twitter.com/HarrietOteng1)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/harriet-oteng-75554666/)
<p align="right">(<a href="https://github.com/newhoteng/Portfolio#readme">back to top</a>)</p>
## :telescope: Future Features
- [x] **Desktop Version**
<p align="right">(<a href="https://github.com/newhoteng/Portfolio#readme">back to top</a>)</p>
## :handshake: Contributing
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](https://github.com/newhoteng/Portfolio/issues).
<p align="right">(<a href="https://github.com/newhoteng/Portfolio#readme">back to top</a>)</p>
## :star: Show your support
If you like this project follow me on GitHub.
<p align="right">(<a href="https://github.com/newhoteng/Portfolio#readme">back to top</a>)</p>
## :pray: Acknowledgements
I would like to thank my team mates.
<p align="right">(<a href="https://github.com/newhoteng/Portfolio#readme">back to top</a>)</p>
## :memo: License
[License](https://github.com/newhoteng/Portfolio/blob/main/LICENSE)
<p align="right">(<a href="https://github.com/newhoteng/Portfolio#readme">back to top</a>)</p>
| Its a replica of a web application interface template from Figma in the form of personal portfolio website using HTML, CSS and JavaScript best practices. | css,javascript,html | 2023-02-16T08:33:47Z | 2023-09-05T14:24:08Z | null | 5 | 12 | 116 | 0 | 0 | 6 | null | MIT | CSS |
Rajat24111994/flower.com | main | # casual-metal-9545
netlify link - https://genuine-malabi-a05086.netlify.app/
# Landing Page
Hear you can see the landing page of our project :

# Sign-In /Sign -Up

# Product page

# Search Option

# WishList

# Cart Page

# Order Page

# Checkout page

| Flower.com is an exquisite online ecommerce website that caters to the floral needs of individuals and businesses alike. As a premier destination for flower arrangements and gifts, Flower.com offers a wide selection of beautifully crafted floral arrangements and bouquets. | css,html,javascript | 2023-02-21T06:07:26Z | 2023-03-13T12:13:38Z | null | 5 | 28 | 74 | 0 | 1 | 6 | null | null | HTML |
arnab2001/socialite | main | <div align="center">
<img src="https://media.giphy.com/media/LnQjpWaON8nhr21vNW/giphy.gif" alt="Alt Text" width="13%"/>
<h1 >Socialite</h1> </div>
🌟 Welcome to Socialite - The Ultimate Social Connection Hub! 🌟
The community at Socialite is buzzing with excitement as new members join the platform. Users are invited to immerse themselves in a world where connections thrive, friendships flourish, and happiness knows no bounds.
<p align="center">
<img src="https://img.shields.io/badge/SVG-FFB13B.svg?style&logo=SVG&logoColor=black" alt="SVG" />
<img src="https://img.shields.io/badge/JavaScript-F7DF1E.svg?style&logo=JavaScript&logoColor=black" alt="JavaScript" />
<img src="https://img.shields.io/badge/.ENV-ECD53F.svg?style&logo=dotenv&logoColor=black" alt=".ENV" />
<img src="https://img.shields.io/badge/HTML5-E34F26.svg?style&logo=HTML5&logoColor=white" alt="HTML5" />
<img src="https://img.shields.io/badge/React-61DAFB.svg?style&logo=React&logoColor=black" alt="React" />
<img src="https://img.shields.io/badge/Docker-2496ED.svg?style&logo=Docker&logoColor=white" alt="Docker" />
<img src="https://img.shields.io/badge/GitHub%20Actions-2088FF.svg?style&logo=GitHub-Actions&logoColor=white" alt="GitHub%20Actions" />
<img src="https://img.shields.io/badge/JSON-000000.svg?style&logo=JSON&logoColor=white" alt="JSON" />
<img src="https://img.shields.io/badge/Markdown-000000.svg?style&logo=Markdown&logoColor=white" alt="Markdown" />
<img src="https://img.shields.io/badge/Express-000000.svg?style&logo=Express&logoColor=white" alt="Express" />
</p>
</div>
<div align="center">
[](https://github.com/ellerbrock/open-source-badges/)













<img src="https://img.shields.io/github/languages/top/arnab2001/socialite?style&color=5D6D7E" alt="GitHub top language" />
</div>
---
## 📖 Table of Contents
- [📖 Table of Contents](#-table-of-contents)
- [📍 Overview](#-overview)
- [📦 Features](#-features)
- [📂 Repository Structure](#-repository-structure)
- [⚙️ Modules](#modules)
- [🚀 Getting Started](#-getting-started)
- [🔧 Installation](#-installation)
- [🤖 Running socialite](#-running-socialite)
- [🧪 Tests](#-tests)
- [🛣 Roadmap](#-roadmap)
- [🤝 Contributing](#-contributing)
- [📄 License](#-license)
- [👏 Acknowledgments](#-acknowledgments)
---
## 📍 Overview
<img src="https://github.com/abhraneel2004/socialite_fork/assets/115551450/d1c96f1a-ff39-463f-a50a-94be7f5ab649" width="35%">
<img src="https://github.com/abhraneel2004/socialite_fork/assets/115551450/12872406-da52-4a03-9b09-64f8110c7f00" width="40%">
### Light Mode

### Dark Mode

---
## 📦 Features
HTTPStatus Exception: 429
---
## 📂 Repository Structure
```sh
└── socialite/
├── .dockerignore
├── .github/
│ └── workflows/
├── .gitignore
├── LICENSE
├── README.md
├── client/
│ ├── .gitignore
│ ├── Dockerfile
│ ├── jsconfig.json
│ ├── package.json
│ ├── public/
│ └── src/
├── docker-compose.yml
├── readme.md
└── server/
├── .env
├── Dockerfile
├── controllers/
├── index.js
├── middleware/
├── models/
├── package.json
├── public/
├── routes/
└── vercel.json
```
---
## ⚙️ Modules
<details closed><summary>Root</summary>
| File | Summary |
| --- | --- |
| [docker-compose.yml](https://github.com/arnab2001/socialite/blob/main/docker-compose.yml) | HTTPStatus Exception: 429 |
</details>
<details closed><summary>Server</summary>
| File | Summary |
| --- | --- |
| [index.js](https://github.com/arnab2001/socialite/blob/main/server/index.js) | HTTPStatus Exception: 429 |
| [Dockerfile](https://github.com/arnab2001/socialite/blob/main/server/Dockerfile) | HTTPStatus Exception: 429 |
</details>
<details closed><summary>Routes</summary>
| File | Summary |
| --- | --- |
| [users.js](https://github.com/arnab2001/socialite/blob/main/server/routes/users.js) | HTTPStatus Exception: 429 |
| [posts.js](https://github.com/arnab2001/socialite/blob/main/server/routes/posts.js) | HTTPStatus Exception: 429 |
| [auth.js](https://github.com/arnab2001/socialite/blob/main/server/routes/auth.js) | HTTPStatus Exception: 429 |
</details>
<details closed><summary>Models</summary>
| File | Summary |
| --- | --- |
| [User.js](https://github.com/arnab2001/socialite/blob/main/server/models/User.js) | HTTPStatus Exception: 429 |
| [Post.js](https://github.com/arnab2001/socialite/blob/main/server/models/Post.js) | HTTPStatus Exception: 429 |
</details>
<details closed><summary>Middleware</summary>
| File | Summary |
| --- | --- |
| [auth.js](https://github.com/arnab2001/socialite/blob/main/server/middleware/auth.js) | HTTPStatus Exception: 429 |
</details>
<details closed><summary>Controllers</summary>
| File | Summary |
| --- | --- |
| [users.js](https://github.com/arnab2001/socialite/blob/main/server/controllers/users.js) | HTTPStatus Exception: 429 |
| [posts.js](https://github.com/arnab2001/socialite/blob/main/server/controllers/posts.js) | HTTPStatus Exception: 429 |
| [auth.js](https://github.com/arnab2001/socialite/blob/main/server/controllers/auth.js) | HTTPStatus Exception: 429 |
</details>
<details closed><summary>Client</summary>
| File | Summary |
| --- | --- |
| [Dockerfile](https://github.com/arnab2001/socialite/blob/main/client/Dockerfile) | HTTPStatus Exception: 429 |
</details>
<details closed><summary>Src</summary>
| File | Summary |
| --- | --- |
| [theme.js](https://github.com/arnab2001/socialite/blob/main/client/src/theme.js) | HTTPStatus Exception: 429 |
| [index.js](https://github.com/arnab2001/socialite/blob/main/client/src/index.js) | HTTPStatus Exception: 429 |
| [index.css](https://github.com/arnab2001/socialite/blob/main/client/src/index.css) | HTTPStatus Exception: 429 |
| [App.js](https://github.com/arnab2001/socialite/blob/main/client/src/App.js) | HTTPStatus Exception: 429 |
</details>
<details closed><summary>State</summary>
| File | Summary |
| --- | --- |
| [index.js](https://github.com/arnab2001/socialite/blob/main/client/src/state/index.js) | HTTPStatus Exception: 429 |
</details>
<details closed><summary>Widgets</summary>
| File | Summary |
| --- | --- |
| [UserWidget.jsx](https://github.com/arnab2001/socialite/blob/main/client/src/scenes/widgets/UserWidget.jsx) | HTTPStatus Exception: 429 |
| [PostsWidget.jsx](https://github.com/arnab2001/socialite/blob/main/client/src/scenes/widgets/PostsWidget.jsx) | HTTPStatus Exception: 429 |
| [PostWidget.jsx](https://github.com/arnab2001/socialite/blob/main/client/src/scenes/widgets/PostWidget.jsx) | HTTPStatus Exception: 429 |
| [MyPostWidget.jsx](https://github.com/arnab2001/socialite/blob/main/client/src/scenes/widgets/MyPostWidget.jsx) | HTTPStatus Exception: 429 |
| [FriendListWidget.jsx](https://github.com/arnab2001/socialite/blob/main/client/src/scenes/widgets/FriendListWidget.jsx) | HTTPStatus Exception: 429 |
| [AdvertWidget.jsx](https://github.com/arnab2001/socialite/blob/main/client/src/scenes/widgets/AdvertWidget.jsx) | HTTPStatus Exception: 429 |
</details>
<details closed><summary>Profilepage</summary>
| File | Summary |
| --- | --- |
| [index.jsx](https://github.com/arnab2001/socialite/blob/main/client/src/scenes/profilePage/index.jsx) | HTTPStatus Exception: 429 |
</details>
<details closed><summary>Navbar</summary>
| File | Summary |
| --- | --- |
| [index.jsx](https://github.com/arnab2001/socialite/blob/main/client/src/scenes/navbar/index.jsx) | HTTPStatus Exception: 429 |
</details>
<details closed><summary>Loginpage</summary>
| File | Summary |
| --- | --- |
| [index.jsx](https://github.com/arnab2001/socialite/blob/main/client/src/scenes/loginPage/index.jsx) | HTTPStatus Exception: 429 |
| [Form.jsx](https://github.com/arnab2001/socialite/blob/main/client/src/scenes/loginPage/Form.jsx) | HTTPStatus Exception: 429 |
</details>
<details closed><summary>Homepage</summary>
| File | Summary |
| --- | --- |
| [index.jsx](https://github.com/arnab2001/socialite/blob/main/client/src/scenes/homePage/index.jsx) | HTTPStatus Exception: 429 |
</details>
<details closed><summary>Components</summary>
| File | Summary |
| --- | --- |
| [WidgetWrapper.jsx](https://github.com/arnab2001/socialite/blob/main/client/src/components/WidgetWrapper.jsx) | HTTPStatus Exception: 429 |
| [UserImage.jsx](https://github.com/arnab2001/socialite/blob/main/client/src/components/UserImage.jsx) | HTTPStatus Exception: 429 |
| [Friend.jsx](https://github.com/arnab2001/socialite/blob/main/client/src/components/Friend.jsx) | HTTPStatus Exception: 429 |
| [FlexBetween.jsx](https://github.com/arnab2001/socialite/blob/main/client/src/components/FlexBetween.jsx) | HTTPStatus Exception: 429 |
| [CommentSection.jsx](https://github.com/arnab2001/socialite/blob/main/client/src/components/CommentSection.jsx) | HTTPStatus Exception: 429 |
</details>
<details closed><summary>Public</summary>
| File | Summary |
| --- | --- |
| [robots.txt](https://github.com/arnab2001/socialite/blob/main/client/public/robots.txt) | HTTPStatus Exception: 429 |
| [index.html](https://github.com/arnab2001/socialite/blob/main/client/public/index.html) | HTTPStatus Exception: 429 |
</details>
<details closed><summary>Workflows</summary>
| File | Summary |
| --- | --- |
| [webpack.yml](https://github.com/arnab2001/socialite/blob/main/.github/workflows/webpack.yml) | HTTPStatus Exception: 429 |
</details>
---
## 🚀 Getting Started
***Dependencies***
Please ensure you have the following dependencies installed on your system:
`- ℹ️ NodeJs`
### 🔧 Installation
1. Clone the socialite repository:
```sh
git clone https://github.com/arnab2001/socialite
```
2. Change to the project directory:
```sh
cd socialite
```
3. Install the dependencies:
```sh
npm install
```
### 🤖 Running socialite
```sh
node app.js
```
------
## Run Without Docker
1. Go to client folder
```
cd .\client\
```
2. run the command
``` sh
npm i
```
3. Return to Socialite folder
``` sh
cd ..
```
4. Go to the server folder
```
cd .\server\
```
5. run the command
``` sh
npm i
```
6. install nodemon in the system :
**Reason:** Nodemon monitors the files in your project for any changes. When it detects a change, it automatically restarts your Node.js application. This eliminates the need for manual restarts, making the development process more efficient.
I. Open Windows PowerShell in run as administrator mode
II. run the command
``` sh
npm install -g nodemon
```
III. In case of an error run the following command
``` sh
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
```
IV. Again run command II
7. In the client folder run the command
``` sh
npm start
```
8. In the server folder run the command
``` sh
nodemon index.js
```
9. Update the mongo_db link in **.env** file
10. Restart the server because the .env has changed **IMPORTANT** .
-----
### 🧪 Tests
```sh
npm test
```
---
## 🛣 Roadmap
# socialite
mern stack social media app
## Progress:
### Backend ⚙️
- Real Time Chat
- Dockerization
- Caching using redis
### Frontend 🚀
- Better Ux
- Comment section
- Ui implementation of Chat window
---
## 🤝 Contributing
🌟 Contributions are always welcome! 🤝✨ Please follow these steps: 🚀
1. Fork the project repository. This creates a copy of the project on your account that you can modify without affecting the original project.
2. Clone the forked repository to your local machine using a Git client like Git or GitHub Desktop.
```bash
git clone https://github.com/arnab2001/socialite.git
```
3. Create a new branch with a descriptive name (e.g., `new-feature-branch` or `bugfix-issue-123`).
```sh
git checkout -b new-feature-branch
```
4. Make changes to the project's codebase.
5. Commit your changes to your local branch with a clear commit message that explains the changes you've made.
```sh
git commit -m 'feat: new feature.'
```
6. Push your changes to your forked repository on GitHub using the following command
```sh
git push origin new-feature-branch
```
7. Create a new pull request to the original project repository. In the pull request, describe the changes you've made and why they're necessary.
The project maintainers will review your changes and provide feedback or merge them into the main branch.
## Syncing with Upstream 🔄
If the original repository has been updated, sync your fork to include the latest changes:
1. **Add Upstream Remote:**
- Add the upstream repository as a remote.
```bash
git remote add upstream https://github.com/arnab2001/socialite.git
```
2. **Fetch Upstream Changes:**
- Fetch the changes from the upstream repository.
```bash
git fetch upstream
```
3. **Merge Upstream Changes:**
- Merge the changes from the upstream repository into your local branch.
```bash
git merge upstream/main
```
4. **Push Changes to Your Fork:**
- Push the updated changes to your fork on GitHub.
```bash
git push origin main
```
## Rollback a Commit ⏪
If you need to undo a commit, you can use the following command: ⚠️🔄
```bash
git revert <commit-hash>
```
Replace <commit-hash> with the actual hash of the commit you want to revert.
---
## 📄 License
This project is licensed under the `ℹ️ LICENSE-TYPE` License. See the [LICENSE-Type](LICENSE) file for additional info.
---
## 👏 Acknowledgments
### Development Resources
Here are some valuable resources for web development using React.js, Node.js, and Docker:
#### React.js
- Official React Documentation: [React Documentation](https://reactjs.org/docs/getting-started.html)
- React - A JavaScript library for building user interfaces.
#### Node.js
- Official Node.js Documentation: [Node.js Documentation](https://nodejs.org/en/docs/)
- Node.js - JavaScript runtime built on Chrome's V8 JavaScript engine.
#### Docker
- Official Docker Documentation: [Docker Documentation](https://docs.docker.com/)
- Docker - Platform for developing, shipping, and running applications in containers.
## Contributors ✨
Gratitude is extended to these amazing individuals 💜
<table>
<tr>
<td align="center"><a href="https://github.com/arnab2001"><img src="https://avatars.githubusercontent.com/u/63441472?v=4" width="100px;" alt=""/><br /><sub><b>Arnab Chatterjee</b></sub></a><br /><br><a href="#maintenance-Tlazypanda" title="Maintenance"><a href="https://github.com/arnab2001" target="blank"><img align="center" src="https://github.com/abhraneel2004/socialite_fork/assets/115551450/826c42f3-5f22-463c-8656-339ef95e8907" height="30" width="30" /></a></a><br></td>
<td align="center"><a href="https://github.com/ArnabChatterjee2001"><img src="https://avatars.githubusercontent.com/u/139915335?v=4" width="100px;" alt=""/><br /><sub><b>Arnab Chatterjee</b></sub></a><br /><br><a title="Code"><a href="https://github.com/ArnabChatterjee2001" target="blank"><img align="center" src="https://github.com/abhraneel2004/socialite_fork/assets/115551450/826c42f3-5f22-463c-8656-339ef95e8907" height="30" width="30" /></a><br></td>
<td align="center"><a href="https://github.com/itsyourap"><img src="https://avatars.githubusercontent.com/u/90060131?v=4" width="100px;" alt=""/><br /><sub><b>Ankan Pal</b></sub></a><br /><br><a title="Code"><a href="https://github.com/itsyourap" target="blank"><img align="center" src="https://github.com/abhraneel2004/socialite_fork/assets/115551450/826c42f3-5f22-463c-8656-339ef95e8907" height="30" width="30" /></a><br></td>
<td align="center"><a href="https://github.com/Sneha123-zudo"><img src="https://avatars.githubusercontent.com/u/145490348?v=4" width="100px;" alt=""/><br /><sub><b>Sneha123-zudo</b></sub></a><br /> <br> <a title="Code"><a href="https://github.com/Sneha123-zudo" target="blank"><img align="center" src="https://github.com/abhraneel2004/socialite_fork/assets/115551450/826c42f3-5f22-463c-8656-339ef95e8907" height="30" width="30"/></a><br></td>
<td align="center"><a href="https://github.com/abhraneel2004"><img src="https://avatars.githubusercontent.com/u/115551450?v=4" width="100px;" alt=""/><br /><sub><b>Abhraneel Karmakar</b></sub></a><br/><br><a title="Code"><a href="https://github.com/abhraneel2004" target="blank"><img align="center" src="https://github.com/abhraneel2004/socialite_fork/assets/115551450/826c42f3-5f22-463c-8656-339ef95e8907" height="30" width="30" alt="logo" /></a><br></td>
</tr>
</table>
<br><br>
<div align="center">
<img src ="https://media.giphy.com/media/atZII8NmbPGw0/giphy.gif" width="60%" >
</div>
---
| mern stack social media app | express,meterial-ui,mongodb,node,reactjs,social-media,hacktoberfest,hacktoberfest2023,javascript,mern | 2023-02-14T18:55:48Z | 2024-04-22T09:11:35Z | null | 6 | 44 | 112 | 4 | 9 | 6 | null | MIT | JavaScript |
ktsalik/sloticon-server | master | null | Online casino backend built with Node.js | javascript,nodejs,slot-machine,websocket | 2023-02-13T14:02:11Z | 2023-04-08T10:15:19Z | null | 1 | 0 | 33 | 0 | 7 | 6 | null | null | JavaScript |
TaiwoEnoch/Todo_List | master | <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="murple_logo.png" alt="logo" width="140" height="auto" />
<br/> -->
<h3><b>setup webpack</b></h3>
</div>
<!-- TABLE OF CONTENTS -->
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#triangular_flag_on_post-deployment)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
# 📖 [setup webpack] <a name="about-project"></a>
**Setup Webpack** is a project created to demonstrate the ability to set up Webpack.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>Client</summary>
<ul>
<li><a href="#">main.js</a>JavaScript</li>
</ul>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **Linters are set to ensure standard coding practices**
- **Gitignore was used to hide some irrelevant files**
- **GitHub flow was used for understanding the code and best practices**
- **When a user clicks the "Add" button:**
- **A new book is added to the collection.**
- **The new book is displayed on the page.**
- **When a user clicks the "Remove" button:**
- **The correct book is removed from the collection.**
- **The correct book disappears from the page.**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LIVE DEMO -->
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- GETTING STARTED -->
## 💻 Getting Started <a name="getting-started"></a>
To get a local copy up and running, follow these steps.
### Prerequisites
In order to run this project you need:
You can clone this repository in your terminal
### Setup
Clone this repository to your desired folder:
cd setup-web pack
git clone https://github.com/TaiwoEnoch/setup-webpack.git
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 **Taiwo Enoch**
- GitHub: [@TaiwoEnoch](https://github.com/TaiwoEnoch)
- Twitter: [@TaiwoEnoch4](https://twitter.com/taiwoenoch4)
- LinkedIn: [@TaiwoEnoch](https://linkedin.com/in/https://www.linkedin.com/in/taiwo-enoch-b88550222/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- [ ] **Implementation more JavaScript Functionalities**
- [ ] **Using of JavaScript Framework**
- [ ] **Using of CSS framework**
- [ ] **Using of HTML framework**
<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 do share it with friends.
<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 opportunity and privilege of creating such a platform to produce and build strong, problem-solving top-world developers.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LICENSE -->
## 📝 License <a name="license"></a>
This project is [MIT](./LICENSE) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| In this project, you will build a simple HTML list of To Do tasks. The list will be styled according to the specifications listed later in this lesson. This simple web page will be built using webpack and served by a webpack dev server. | css,html5,javascript,modules,webpack | 2023-02-24T17:27:28Z | 2024-01-17T13:09:06Z | null | 1 | 3 | 38 | 0 | 0 | 6 | null | MIT | JavaScript |
doganenes/quiz-app | main | null | HTML5, CSS3, Javascript, Bootstrap | bootstrap,css3,html5,javascript,quiz-app | 2023-02-16T20:51:11Z | 2023-08-18T19:52:17Z | null | 2 | 1 | 27 | 0 | 0 | 6 | null | null | JavaScript |
Shalini1908/Trendsy-Myntra-Clone | main | null | Online Shopping Site for Fashion & Lifestyle . Fashion Expert brings you a variety of footwear, Clothing, Accessories and lifestyle products. | chakra-ui,css,express,html,javascript,mongodb,nodejs,redux,redux-thunk,react | 2023-02-21T07:07:09Z | 2023-05-24T11:18:39Z | null | 6 | 48 | 179 | 5 | 4 | 6 | null | null | JavaScript |
shikhu51197/Avis-Rentals | main | > 💻 CLONE PROJECT NAME⭐ ====>>>> ✨AVIS RENTALS💫
<br>
<a href="https://drive.google.com/file/d/18ubJcPyNQTvUz4YCmmxmjzRizXB8QrOv/view"></a>
[](https://github.com/shikhu51197/backendcruise)
[](https://lime-silly-goshawk.cyclic.app/)
[](https://cruiserental.vercel.app/)
[](https://cruise-rental-admin-panel.vercel.app)
---

> Avis is India's leading mobility Company with services ranging from chauffeur drive and self-drive car rentals, car-Sales, operating lease and fleet management and has been present in the country for over 20 years.This was a collaborative Project which is made by 5 team members within 5 Days.
---
## 🔗 Collaborators Profile Links✨
| Collaborators | Github | Linkedin | Portfolio |
| ------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- |
| Shikha Gupta (Team Lead)| [](https://github.com/shikhu51197/)| [](https://www.linkedin.com/in/shikha-gupta-12a2b5199) |[](https://shikhu51197.github.io/) |
| Mandar Deshmukh (Member 1) | [](https://github.com/DeshmukhMandar3) | [](https://www.linkedin.com/in/mandar-deshmukh-62821b189/) | [](https://deshmukhmandar3.github.io/) |
| R Giri Reddy (Member 2) | [](https://github.com/geraltyen) |[](https://www.linkedin.com/in/giri-reddy-geralt/) | [](http://geraltyen.github.io) |
| Kallol Sarkar (Member 3)| [](https://github.com/kallol0011) |[](https://www.linkedin.com/in/kallol-sarkar-229000210/) | [](https://kallol0011.github.io/) |
| Himanshu Sharma (Member 4)| [](https://github.com/himanshu7582901182) |[](https://www.linkedin.com/in/himanshu-sharma7/) | [](https://himanshu7582901182.github.io/) |
<br>
💻Unique Project Name & logo :- CRUISE RENTALS🚗

---
## 💫Tech-Stack->
- #### For Frontend :-
- `HTML5`
- `CSS3`
- `JavaScript `
- `Redux`
- `ReactJS`
- `Typescript `
- `ES6 `
- #### For Backend :-
- `NodeJS`
- `ExpressJS`
- `MongoDB `
- #### For deploy database :-
- `cyclic `
- #### For Styling :-
- `Chakra UI `
- `BootStrap `
- #### For live Project : -
- `Vercel`

---
## Features ✨:-
---
| Serial No | Feature |
| ----------------- | ------------------------------------------------------------------ |
| 1 | User signup and Login |
| 2 | Products Page with Filter and Sort Functionalities |
| 3 | Dynamic SinglePage & payment feature |
| 4 | Dynamic cart page using userId |
| 5 | Admin Login & Deshboard Page |
| 6 | Homepage & Reservation Page |
---
# Package.json(Dependency)✨:-
| Serial No | Backend | Frontend |
| ----------------- | -------------------|------------------------ |
| 1 | bcrypt | Chakra-ui , BootStrap|
| 2 | mongoose | React Router dom |
| 3 | cors | redux ,react-icons |
| 4 | dotenv | react redux ,axios |
| 5 | express | typescript |
| 6 | jsonwebtoken | redux thunk |
---
## Flow
```mermaid
graph TD;
App-->HomePage
HomePage-->SignUpPage;
HomePage-->loginPage;
SignUpPage-->loginPage;
loginPage-->HomePage;
HomePage --> ReservationPage
ReservationPage-->CartPage
CartPage-->PaymentPage
HomePage -->CarSales
CarSales-->SinglePage
SinglePage --> CartPage
CartPage-->PaymentPage
HomePage --> AdminLogin
AdminLogin-->AdminDeshboard
AdminLogin -->CarsData
AdminLogin -->Users
AdminLogin -->Bookings
AdminLogin -->Feedback
AdminLogin -->Profile
```
---
## Screenshots 📷
---
# HomePage

# Signup | Login

# ReservationPage

# Products | SinglePage


# Payment

# Admin & AdminDeshboard


---
<h1 align="center">✨Thank You✨</h1>
| Avis is India's leading mobility Company with services ranging from chauffeur drive and self-drive car rentals, car-Sales, operating lease and fleet management and has been present in the country for over 20 years.This was a collaborative Project which is made by 5 team members within 5 Days. | chakra-ui,css3,expressjs,html5,javascript,mongodb,nodejs,reactjs,redux | 2023-02-20T16:07:41Z | 2023-03-02T19:50:50Z | null | 6 | 25 | 208 | 0 | 4 | 6 | null | null | JavaScript |
CodingWithEnjoy/NextJs-Moodly | main | # NextJs-Moodly
Preview | نتیجه ی کار 😊😉
https://moodly.netlify.app/
| Preview | نتیجه ی کار 😊😉 | relax,css,html,javascript,nextjs,react,relaxation,responsive | 2023-02-18T07:51:29Z | 2023-02-18T09:09:18Z | null | 1 | 0 | 2 | 0 | 0 | 6 | null | null | TypeScript |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.