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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
WorldWideDevelop/vue-ecommerce | main | # vue-ecommerce
## Project setup
```
npm install
```
### Compiles and hot-reloads for development
```
npm run serve
```
### Compiles and minifies for production
```
npm run build
```
### Run your unit tests
```
npm run test:unit
```
### Lints and fixes files
```
npm run lint
```
### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).
| It is a complete flow of online store where users come to search products and place orders. Tech Stack: JavaScript, Vue.js, Vuex, Html, CSS, Vue-Antd design. | css,ecommerce,ecommerce-website,html,javascript,vue-antd,vuejs | 2023-06-26T17:48:34Z | 2021-11-30T22:10:39Z | null | 1 | 0 | 96 | 0 | 1 | 3 | null | null | Vue |
VRajaSubramanian/Hospital-Management-System | main |
# Hospital Management System
This is a hospital management system developed using Node.js, JavaScript, HTML, CSS, and MongoDB. It allows users to register as patients or doctors, book appointments, view medical records, and more.
## Features
* Patient registration and login
* Doctor registration and login
* Appointment booking
* View medical records
* Generate prescriptions
* Manage doctor schedules
* Send notifications
## Requirements
* Node.js
* MongoDB
## Installation
1. Clone the repository from GitHub.
2. Install the dependencies using `npm install`.
3. Create a MongoDB database and initialize it with the `new.js` file.
4. Run the application using `npm start`.
## Usage
The application is accessible at `localhost:3002`.
## Credits
* This project was developed by Raja Subramanian V & Vijaya Gokul K .
* https://github.com/VRajaSubramanian/
* https://github.com/VijayaGokul
* The code is licensed under the MIT License.
## Contact
If you have any questions or feedback, please contact rajasubramanianvel@gmail.com
| A hospital management system (HMS) is a software application that helps hospitals to manage operations to track patient records, manage appointments. | angularjs,css,html,javascript,mongodb,nodejs | 2023-06-23T04:53:08Z | 2023-06-23T07:08:12Z | null | 2 | 0 | 8 | 0 | 0 | 3 | null | null | HTML |
C-ZLTV/news-api-js-advanced | master | null | News API based project for the JavaScript Advanced course. | api,fetch-api,javascript,lodash,newsapi,responsive-website,weather-app | 2023-06-09T17:30:07Z | 2023-06-10T14:04:01Z | null | 1 | 0 | 10 | 0 | 0 | 3 | null | null | JavaScript |
Atanu8250/Google-docs-clone | master | # Google-docs-clone
Company assignment of [App Avangers](https://www.appavengers.co/)
Google-docs-clone (DOC DEPOT), here you can create your own docs and can see other's public docs. Can collaborate remotely in a doc from the same user's account, changes will be applied in real-time
## Teach-Stack
| UI-Part | Controller | Server-Part |
|---------|------------------|--------------|
|   | |  |
## Deployments
|FRONTEND|BACKEND|DATABASE|
|--------|-------|--------|
|||
## Pages
### :small_blue_diamond: Sign-up Page
Sign-up by providing a unique username, your email & password
----

### :small_blue_diamond: Sign-in Page
Sign-in with your unique credentails [email, password]
----

### :small_blue_diamond: Home Page
After successfully authenticated you will be redirected to HOME page, there you will see the list of public documents.
----

### :small_blue_diamond: Create Document
Create document by providing the name
----

### :small_blue_diamond: My-applications
Checkout your own private and public applications
----

### :small_blue_diamond: Single Document
Edit and see single doc, edit only if it's your
----

---
## API Routes
The following table lists the available API routes and their descriptions:
| Route | Method | Description |
|-------|-------------|----------|
| auth/signup/ | `POST` | Register user's data in Database |
| auth/signin/ | `POST` | By checking user's credentials allow them to log-in in the web-applicattion |
| profile/ | `PATCH` | Update logged-in user's profile |
| docs/ | `GET` | Get all public docs |
| docs/user | `GET` | Get all docs for the logged-in user |
| docs/ | `POST` | Post / Create document |
| docs/:docId | `PATCH` | Update specific doc's details and allowed only for the author |
| docs/:docId | `DELETE` | Delete specific doc and allowed only for the author |
Thank you 💙
| Google-docs-clone (DOC DEPOT), here you can create your own docs and can see other's public docs. Can collaborate remotely in a doc, changes will be applied in real-time | css3,expressjs,google-docs-clone,javascript,nodejs,reactjs,redux,socket-io | 2023-06-16T14:59:05Z | 2023-08-31T07:50:31Z | null | 1 | 0 | 22 | 0 | 0 | 3 | null | null | JavaScript |
gitmohamed/quicktarot | main | [](https://app.netlify.com/sites/quicktarot/deploys)
[![Quick Tarot Screenshot][screen]](https://quicktarot.netlify.app/)
# Quick Tarot
Quick Tarot is a NodeJS and vanilla JavaScript application that allows you to draw random tarot cards. Providing a fast and efficient way to generate sets of randomized cards, the application combines the Tarot Car API (below) with the original Rider-Waite Smith cards, which have been made accessible by Luciella Scarlett.
---
## Tarot Card API
[_Explore this repo_](https://github.com/ekelen/tarot-api)
> For all your cybermysticism needs. 🔮
Provides information parsed from AE Waite's The Pictorial Key to the Tarot, meeting the OpenAPI 3 spec. This was created as a friendly introduction to REST APIs.
---
## API Usage
1. [See full documentation + play with the API on SwaggerHub](https://app.swaggerhub.com/apis/ekswagger/tarot-api/1.3)
2. See below for quick start
### Quick start
JS:
```javascript
fetch("https://tarot-api-3hv5.onrender.com/api/v1/cards/random?n=10")
.then(function (response) {
return response.json();
})
.then(function (response) {
// handle ten random cards
})
.catch(function (error) {
// handle what went wrong
});
```
### Condensed documentation
| GET path | Result | Params |
| :---------------------------- | --------------------------------------- | :-------------------------------------------------------------------------------------------------------------- |
| `/api/v1/` or `/api/v1/cards` | return all cards | |
| `/api/v1/cards/:name_short` | return card with specified `name_short` | **minors:** `/swac`, `/wa02`, ..., `/cupa`, `/pequ`, `/waqu`, `/swki`, **majors** `/ar01`, `/ar02`, ...`/ar[n]` |
| `/api/v1/cards/search` | search all cards | `q={text}`, `meaning={text}`, `meaning_rev={text}` |
| `/api/v1/cards/random` | get random card(s) | _optional_ `n={integer <= 78}` |
### Examples:
Get all cards with word "peace" in meaning (reversed or upright):
https://tarot-api-3hv5.onrender.com/api/v1/cards/search?meaning=peace (free dyno == super slow, sorry)
Get 10 random cards:
https://tarot-api-3hv5.onrender.com/api/v1/cards/random?n=10
Get the Knight of Wands:
https://tarot-api-3hv5.onrender.com/api/v1/cards/wakn
---
## 💻 Local development
(Novice-friendly!)
1. You are welcome to [just grab the JSON file](./static/card_data.json) that serves as the data source and use it for your own projects.
2. Clone or fork this repository and install dependencies locally. Requires Node 10.0.0 or higher, and npm 6.0.0 or higher.
```sh
git clone https://github.com/gitmohamed/quicktarot.git
# or git@github.com:gitmohamed/quicktarot.git
# -OR- click fork on this project's Github page, then:
git clone https://github.com/YOUR-USERNAME/quicktarot.git
```
Then:
```sh
cd quicktarot
npm install
npm run dev
```
---
[screen]: ./static/screenshot.png | Simple web app for drawing random tarot cards | express-js,html-css-javascript,javascript,nodejs,tarot-cards | 2023-06-14T07:34:39Z | 2024-01-17T06:45:34Z | null | 3 | 0 | 108 | 0 | 0 | 3 | null | null | HTML |
Keegan-20/ImagiFix | master | null | ImagiFix: Unleash Your Creativity with this Powerful Photo Editing Web App! 📸 Crafted in pure JavaScript, ImagiFix offers a suite of essential features, including Crop, Rotate, Flip, Undo/Redo, and an array of stunning filters🎨. Elevate your editing experience with a design that seamlessly transitions into an offline-friendly Progressive Web App | javascript,canvas,filters,image,image-editor,image-manipulation,pwa-app | 2023-06-10T08:39:18Z | 2024-01-09T15:42:58Z | null | 1 | 0 | 152 | 0 | 0 | 3 | null | null | JavaScript |
GDSC-MVJCE/gdscmvjce-website | main | # GDSC MVJCE Website
The GDSC MVJCE Website is a dynamic platform developed using Next.js 13, styled-components, react-three-fiber, prisma and various other packages. It serves as the central hub for the Google Developer Student Club community at MVJ College of Engineering, providing interactive sections, event registration, blog showcases, team information, and FAQs.
It is a comprehensive platform designed to facilitate engagement and collaboration within the Google Developer Student Club community at MVJ College of Engineering. Whether you're exploring past events, registering for upcoming events, reading insightful blogs, or learning about the GDSC team, you'll find everything you need right here.
## Table of Contents
- [Screenshots](#screenshots)
- [Demo](#demo)
- [Features](#features)
- [Technologies Used](#technologies-used)
- [Packages Used](#packages-used)
- [Environment Variables](#environment-variables)
- [Getting Started](#getting-started)
- [Folder Structure](#folder-structure)
- [Running the Application](#running-the-application)
- [Authors](#authors)
- [Contributing](#contributing)
- [License](#license)
- [Documentation](#documentation)
## Screenshots





## Demo
You can explore a live demo of the GDSC MVJCE Website at [Demo Link](https://gdscmvjce.tech).
## Features
- Interactive landing page with various sections
- Showcase of past events with detailed information
- Registration for upcoming events
- Display of blogs written by GDSC members
- View the present and past GDSC teams for each batch
- FAQ page covering various topics such as general queries, registration, application process, community involvement, and newsletters
## Technologies Used
- Next.js 13
- Styled-components
- React-three-fiber
- Prisma
## Packages Used
Here are the main packages used in the project:
- `@dnd-kit/core`: Drag and drop utilities for React applications.
- `@dnd-kit/modifiers`: Modifiers for Drag and Drop interactions.
- `@emotion/react`: Library for CSS-in-JS styling with Emotion.
- `@emotion/styled`: Styled components for Emotion.
- `@mui/icons-material`: Material-UI icons for UI design.
- `@mui/material`: Material-UI components for modern web applications.
- `@fullcalendar/react`: React wrapper for FullCalendar.
- `dayjs`: Library for date and time formatting.
- `http-status-codes`: Library for HTTP status codes.
- `lottie-react`: Library for rendering Lottie animations in React.
- `next`: Framework for server-rendered React applications.
- `nextjs-toploader`: Top loader for Next.js applications.
- `prisma`: ORM for database management.
- `ra-data-simple-prisma`: Data provider for React Admin using Prisma.
- `ra-data-simple-rest`: Simple REST data provider for React Admin.
- `ra-input-rich-text`: Rich text input for React Admin.
- `react`: JavaScript library for building user interfaces.
- `react-dom`: React library for DOM rendering.
- `react-infinite-scroll-component`: Infinite scroll component for React.
- `react-intersection-observer`: Library for observing elements entering or exiting the viewport.
- `react-parallax-tilt`: Parallax tilt effect component for React.
- `react-scroll-motion`: Scroll motion library for React.
- `react-spring-3d-carousel`: 3D carousel component for React Spring.
- `react-vertical-timeline-component`: Vertical timeline component for React.
- `react-xarrows`: React component for drawing customizable arrows.
## Environment Variables
The project relies on environment variables stored in a .env. file located at the root of the directory to manage configurations. Ensure that essential variables such as database connection strings, API keys, or any other sensitive information are properly set up.
```bash
DATABASE_URL: "*YOUR-DB-URL*"
NEXT_PUBLIC_APIKEY: "*YOUR-NEXT-PUBLIC-KEY*".
```
Be sure to replace `*YOUR-DB-URL*` with your actual MySQL database url containing data and `*YOUR-NEXT-PUBLIC-KEY*` with your Next.js public API key. These values should be obtained from the respective services and kept confidential.
**Note**: Environment variables containing sensitive information like API keys, database credentials, or any other secrets should not be committed to version control. Ensure that the `.env` files are included in your project's `.gitignore` file to prevent accidental exposure of sensitive data.
## Getting Started
Follow these steps to set up the project locally:
1. Clone this repository to your local machine:
```bash
git clone https://github.com/GDSC-MVJCE/gdscmvjce-website.git
```
2. Change to the project directory:
```bash
cd gdscmvjce-website
```
3. Install dependencies and start the development server:
```bash
npm install
npx prisma generate
npx prisma db push
npm run dev
```
## Folder Structure
The project structure is organized as follows:
```
gdscmvjce-website/
├── components/ # Contains reusable React components used throughout the application.
├── constants/ # Contains constants or configurations used in the application.
├── controllers/ # Contains route controllers for handling HTTP requests.
├── hooks/ # Contains custom React hooks for reusing logic across components.
├── lib/ # Contains utility functions or libraries used in the application.
├── pages/ # Contains different pages for the website.
├── prisma/ # Contains Prisma database models.
├── public/ # Contains public assets such as images, fonts, etc.
├── utils/ # Contains utility functions used across the application.
├── .env # Environment variables file (not committed to version control).
├── next.config.js # Next.js configuration file.
├── package.json # Contains project metadata and dependencies.
└── README.md # Readme file providing information about the project.
```
## Running the Application
To run the application locally, use the following commands:
```bash
npm install # Install dependencies
npx prisma generate # Generate Prisma client
npx prisma db push # Push database changes
npm run dev # Start the development server
```
## Authors
- [@Shivam-Sharma-1](https://github.com/Shivam-Sharma-1)
- [@sid-js](https://github.com/sid-js)
- [@Vector-ops](https://github.com/Vector-ops)
- [@notBigO](https://github.com/notBigO)
- [@karanadam](https://github.com/karanadam)
## Contributing
We welcome contributions from the community! If you have ideas for new features, improvements, or bug fixes, feel free to open an issue or submit a pull request.
## License
This project is licensed under the [MIT License](LICENSE).
Thank you for visiting the GDSC MVJCE Website repository! We hope you find the content here inspiring and engaging. If you have any questions or feedback, don't hesitate to reach out. Happy coding! 🚀
## Documentation
- **[React Documentation](https://reactjs.org/docs/getting-started.html)**: Learn more about React for building user interfaces.
- **[Next.js Documentation](https://nextjs.org/docs/getting-started)**: Discover Next.js documentation for React framework.
- **[React Three Fiber Documentation](https://docs.pmnd.rs/react-three-fiber/getting-started/introduction)**: Dive into React Three Fiber documentation for creating 3D graphics in React.
- **[Styled-Components Documentation](https://styled-components.com/docs)**: Learn about Styled-Components for styling React components.
- **[Day.js Documentation](https://day.js.org/docs/en/installation/installation)**: Explore Day.js documentation for lightweight date and time library.
- **[Lottie React Documentation](https://www.npmjs.com/package/lottie-react)**: Discover Lottie React documentation for using Lottie animations in React.
- **[React Admin Documentation](https://marmelab.com/react-admin/Readme.html)**: Learn about React Admin for building administration user interfaces.
- **[SWR Documentation](https://swr.vercel.app/docs/getting-started)**: Explore SWR documentation for data fetching library for React.
- **[React Infinite Scroll Component Documentation](https://www.npmjs.com/package/react-infinite-scroll-component)**: Discover React Infinite Scroll Component documentation for creating infinite scroll in React.
- **[React Intersection Observer Documentation](https://www.npmjs.com/package/react-intersection-observer)**: Learn about React Intersection Observer for detecting elements' visibility in the viewport.
- **[Prisma Documentation](https://www.prisma.io/docs/)**: Dive into Prisma documentation for ORM and database management.
**GDSC MVJCE Team**
**Connect. Learn. Grow.**
| The GDSC MVJCE Website is a dynamic platform developed using Next.js 13, styled-components, react-three-fiber, prisma and various other packages. It serves as the central hub for the Google Developer Student Club community at MVJ College of Engineering, providing interactive sections, event registration, blog showcases, team information, and FAQs. | gdsc,nextjs,css3,html5,javascript,prisma,react,styled-components,react-three-drei,react-three-fiber | 2023-06-25T05:56:59Z | 2024-05-05T05:23:35Z | null | 5 | 99 | 554 | 0 | 3 | 3 | null | null | JavaScript |
smilewithkhushi/sample-portfolio | master | <h1 align="center" id="title">Portfolio Website</h1>
<p id="description">A Sample portfolio website for developers and community members which can help you showcase your work to the world!🤩</p>
<h2>🚀 Demo</h2>
[https://sampleportfolio4u.vercel.app](https://sampleportfolio4u.vercel.app)
<h2>🧐 Features</h2>
Here're some of the project's best features:
* A beginner friendly repository for beginners who are learning ReactJS
* Easy to understand CSS and JavaScript Code
<h2>🛠️ Installation Steps:</h2>
<p>1. Clone the repository</p>
```
git clone https://github.com/smilewithkhushi/sample-portfolio.git
```
<p>2. Open the project directory</p>
```
cd sample-portfolio
```
<p>3. Install the npm packages</p>
```
npm install
```
<p>4. Run the project on localhost</p>
```
npm run start
```
<h2>🍰 Contribution Guidelines:</h2>
<ol>
<li>To star contributing to this project, create a new issue you'd like to work on </li>
<li>Once the issue gets assigned, you can start working on the project :
<ul>
<li>Star and Fork the Repository</li>
<li>Clone the Repository on your system</li>
<li>Make changes and push the changes to a new branch</li>
<li>Raise a pull request and mention what changes you made</li>
<li>Wait for the PR to get merged 🎉</li>
</ul>
</ol>
<h2>💻 Built with</h2>
Technologies used in the project:
* ReactJS
* CSS
<h2>🛡️ License:</h2>
This project is licensed under the MIT
| A portfolio website Template | Simple UI | React JS | Animation | css,html,javascript,react,reactjs,ui,webapp,website | 2023-06-13T12:23:37Z | 2024-01-25T06:07:16Z | null | 2 | 1 | 16 | 0 | 1 | 3 | null | null | JavaScript |
boywithkeyboard/sms | main | null | A JavaScript library for sending SMS messages. | deno,gatewayapi,javascript,node,sms,typescript,cjs,esm | 2023-06-22T17:30:43Z | 2024-02-17T20:52:22Z | 2023-11-06T14:05:16Z | 1 | 33 | 33 | 0 | 0 | 3 | null | Apache-2.0 | TypeScript |
arpankumarde/freeCodeCamp | main | null | Repository of whatever I am building for revision | freecodecamp,css,html,javascript | 2023-06-13T17:28:27Z | 2023-07-10T17:08:44Z | null | 1 | 0 | 17 | 0 | 0 | 3 | null | null | HTML |
sho1374k/Toys-No.018_WebGLSchool-Task03-Earth | main | # Task.03 ~ WebGL スクール第 10 期
## 🪬 ~ 要件
- 「地球上を飛ぶ旅客機」のような動きを実現すること
## 👾 ~ Demo
- https://dev.shoya-kajita.com/018/
<img src="screenshot.webp">
<img src="screenshot2.webp">
## 🎮 ~ Getting Started
- node : v.17.0.0
- npm : 8.1.0
```
// install
npm i
// development
npm run dev
// production
npm run build
// build preview
npm run preview
```
## 📝 ~ Note
| WebGLスクール課題03 | blender,javascript,noise,threejs,webgl,webgl2 | 2023-06-15T02:27:11Z | 2023-06-17T14:36:41Z | null | 1 | 0 | 4 | 0 | 1 | 3 | null | null | JavaScript |
brunoglvm/link-in-bio | main | ### link-in-bio/link-tree/all-my-links
<img src="https://raw.githubusercontent.com/bremer404/link-in-bio/main/.github/preview.jpg" width="100%">
This project was built using the following technologies:
- HTML & CSS
- JavaScript
- Photoshop
- Figma
---
art by: blxckovt2k
| ⛓ Link in bio page for my social media profiles | all-my-links,css,html,javascript,link-in-bio,link-tree,web | 2023-06-13T18:03:48Z | 2024-03-30T19:22:23Z | null | 1 | 0 | 39 | 0 | 2 | 3 | null | null | CSS |
LelsersLasers/CollatzConjectureVisualization | main | # Collatz Conjecture Visualizations
Customizable visualizations of the Collatz conjecture in JavaScript.
Running live on the web at:
- https://lelserslasers.itch.io/collatz-conjecture (graph visualization)
- https://lelserslasers.itch.io/collatz-conjecture-2 (tree visualization)
## Graph

## Tree

## What is the Collatz conjecture?
The Collatz conjecture, also known as the 3n+1 conjecture or the hailstone sequence, is an unsolved mathematical problem. It was first proposed by German mathematician Lothar Collatz in 1937. The conjecture is defined as follows:
Start with any positive integer n. If n is even, divide it by 2 to get n/2. If n is odd, multiply it by 3 and add 1 to get 3n+1. Repeat the process with the resulting number, and continue iterating in the same way.
The conjecture states that no matter what positive integer you start with, this process will eventually reach the number 1. Once you reach 1, the sequence will enter a loop that repeats indefinitely: 1, 4, 2, 1, 4, 2, 1, and so on.
For example, let's take the starting number 6. The sequence will be: 6, 3, 10, 5, 16, 8, 4, 2, 1. In this case, it took eight steps to reach 1. However, the conjecture claims that for any positive integer, this sequence will eventually reach 1, even though the number of steps it takes may vary.
Despite its simplicity, the Collatz conjecture remains an unsolved problem in mathematics. No counterexamples have been found, meaning that all numbers tested so far eventually reach 1. However, no general proof has been established to show that this is true for all positive integers and the conjecture continues to be an active area of research. | Customizable visualization of the Collatz conjecture in JavaScript | collatz,collatz-conjecture,itch-io,javascript,js | 2023-06-09T00:14:25Z | 2023-06-10T02:55:11Z | null | 2 | 0 | 27 | 0 | 0 | 3 | null | null | JavaScript |
erikfinkel/boredApe | main |
https://boredapemint.netlify.app


#To run the dapp Locally
### npm run dev
Try running some of the following tasks:
```shell
npx hardhat compile
npx hardhat accounts
npx hardhat clean
npx hardhat test
npx hardhat node
node scripts/sample-script.js
npx hardhat help
npx hardhat run scripts/deployContract.js --network rinkeby
npx hardhat run scripts/verifyContract.js --network rinkeby
Successfully verified contract BoredApe on Etherscan.
https://rinkeby.etherscan.io/address/0x923130181b7F075cBebFc9743D6e923646FD9148#code
npx hardhat verify --network rinkeby 0xc904d4fA240d2f13D05642D850D8803642DDEB8e
```
## Console.log data
import "hardhat/console.sol";
contract Greeter {
string private greeting;
```js
constructor(string memory _greeting) {
console.log("Deploying a Greeter with greeting:", _greeting);##
greeting = _greeting;
}
```
Deploying on mainnet
When you are done with making changes and your minting dapp is just as you wanted it is time to deploy on ethereum mainnet. To do that;
Make sure you changed all env variables with yours. And also for the network you need to chose ethereum mainnet.
Update hardhat.config.js so that as network option you use mainnet not rinkeby. hardhat
While deploying your contract with hardhat you need to use mainnet as network-name
# This command will deploy your smart contract on ethereum mainnet
npx hardhat run scripts/deployContract.js --network mainnet
# This command will verify your smart contract on mainnet etherscan
npx hardhat run scripts/verifyContract.js --network mainnet
#Tech Stack
Client: React, TailwindCSS, web3.js
Server: Alchemy, NextJS, Hardhat
https://testnets.opensea.io/Sam03
Personal Note: Auto deploy Deactivated. Eslint Disable on deploy
| NFT mint - BoredApe | hardhat,javascript,nextjs,smart-contracts,solidity,typescript | 2023-06-11T10:02:52Z | 2023-06-11T10:03:34Z | null | 1 | 0 | 1 | 0 | 0 | 3 | null | null | JavaScript |
HenriqueDiasSilva/Ulbragram | main | <h1 align="center"> ULBRAGRAM </h1>
<p align="center">
ULBRAGRAM é um projeto concebido para o minicurso "Projeto Verão na Programação", uma iniciativa promovida pelo projeto "Informática e Sociedade" dos cursos de TI da Ulbra Palmas, que contém como objetivo disseminar o conhecimento básico de programação web para indivíduos que possuem pouco ou nenhum conhecimento no tema, permitindo-lhes, ao mesmo tempo, a oportunidade de colocar em prática o aprendizado através de um projeto real. <br/>
</p>
<p align="center">
<a href="#-tecnologias">Tecnologias</a> |
<a href="#-projeto">Projeto</a> |
<a href="#-layout">Layout</a> |
<a href="#%EF%B8%8F-licença">Licença</a>
</p>
<p align="center">
<img alt="Licença" src="https://img.shields.io/static/v1?label=license&message=MIT&color=49AA26&labelColor=000000">
</p>
## 🚀 Tecnologias
Este projeto foi desenvolvido com as seguintes tecnologias:
- Figma
- HTML
- CSS
- Bootstrap
- JavaScript
## 💻 Projeto
ULBRAGRAM é uma versão simplificada do Instagram, desenvolvida com o propósito de elucidar os conceitos fundamentais da programação web.
- [Visite o projeto online](https://henriquediassilva.github.io/Ulbragram/)
## 🔖 Layout
Você pode visualizar o layout do projeto através [DESTE LINK](https://www.figma.com/file/NTDgUNNFvpSDAdd4q5cb8u/Curso-de-F%C3%A9rias?type=design&node-id=1%3A2&mode=design&t=6LFNZa1MTQtI29ge-1). É necessário ter uma conta no [Figma](https://figma.com) para acessá-lo.
## 🖊️ Licença
Este projeto é licenciado sob a licença MIT.
---
Projeto desenvolvido com ♥ por Anne Ingrid, Felipe Nóbrega, Henrique Dias Silva, Jayane Xavier, Lucas Oliveira, Lucas Vieira, Maria Fernanda Toletino e Mário Matheus Pombal.
| ULBRAGRAM é uma versão simplificada do Instagram, desenvolvida com o propósito de elucidar os conceitos fundamentais da programação web. | css,html,javascript,minicurso | 2023-06-26T14:12:13Z | 2023-07-13T18:20:37Z | null | 4 | 3 | 18 | 0 | 1 | 3 | null | null | HTML |
iamsjunaid/space-travelers-hub | dev |
<a id="readme-top"></a>
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#triangular_flag_on_post-deployment)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [❓ FAQ (OPTIONAL)](#faq)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
# 📖 Space Travelers Hub <a name="about-project"></a>
**Space Travelers Hub** In this project, We have worked with real live data from the SpaceX API. We have built a web application that provides commercial and scientific space travel services. The application will allow users to book rockets and join selected space missions.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>HTML</summary>
<ul>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/HTML">HTML5</a></li>
</ul>
</details>
<details>
<summary>CSS</summary>
<ul>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/CSS">CSS3</a></li>
</ul>
</details>
<details>
<summary>Javascript</summary>
<ul>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript">Javascript</a></li>
</ul>
</details>
<details>
<summary>ReactJS</summary>
<ul>
<li><a href="https://legacy.reactjs.org/docs/getting-started.html">ReactJS</a></li>
</ul>
</details>
<details>
<summary>Redux</summary>
<ul>
<li><a href="https://redux.js.org/">Redux</a></li>
</ul>
</details>
<p align="right">(<a href="#readme-top">back to top</a>)</p>
### Key Features <a name="key-features"></a>
*Rocket reservation and Management: Users can reserve a rocket,book a mission and a dragon providing a central place to organize their work.*<br>
*Categorization and Labels: Each feature is categorized into different categories or assign labels, helping them to quickly identify based on specific criteria.*
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🚀 Live Demo <a name="live-demo"></a>
- [Live Demo Link](https://space-travelers-hub-dhiu.onrender.com)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 💻 Getting Started <a name="getting-started"></a>
To get a local copy up and running, follow these steps.
### Prerequisites
In order to run this project you need to clone or fork and run it in a browser
### Setup
Clone this repository to your desired folder:
Example commands:
```sh
cd my-folder
git clone https://github.com/iamsjunaid/space-travelers-hub.git
```
For more information on how to clone or fork a repository:
- <a href="https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository">How to clone a repo</a>
- <a href="https://docs.github.com/en/get-started/quickstart/fork-a-repo">How to fork a repo</a>
### Install
- To install the package
```sh
npm install
```
### Usage
- To run the project
```sh
npm start
```
### Tests
- To test the project run the following `cmd`:
```sh
npm run test
OR
npm test
```
- To check the linter issues
```sh
npx eslint "**/*.{js,jsx}"
```
```sh
npx stylelint "**/*.{css,scss}"
```
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 Author : **Junaid Ahmed Syed**
- Github : [@GitHub](https://github.com/iamsjunaid)
- LinkedIn : [@LinkedIn](https://www.linkedin.com/in/junaidahmedsyed/)
## 👥 Collaborators <a name="authors"></a>
👤 Collaborator : **Bwambale Wolter**
- Github : [@GitHub](https://github.com/wolterbwambale)
- LinkedIn : [@LinkedIn](https://www.linkedin.com/in/bwambale-benny-wolter-a9284925a/)
👤 Collaborator : **Abdelaziz Soleman**
- Github : [@GitHub](https://github.com/abdelazizsoleman)
- LinkedIn : [@LinkedIn](https://www.linkedin.com/in/abdelaziz-soliman-16989b89/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
UI changes
Animations
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🤝 Contributing <a name="contributing"></a>
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](https://github.com/iamsjunaid/space-travelers-hub/issues ).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ⭐️ Show your support <a name="support"></a>
If you like this project you can give a Star at project's [GitHub page](https://github.com/iamsjunaid/space-travelers-hub).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank Microverse and the code reviewers for making this project better.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 📝 License <a name="license"></a>
This project is [MIT](https://github.com/iamsjunaid/space-travelers-hub/blob/main/LICENSE) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| Space Travelers Hub In this project, We have worked with real live data from the SpaceX API. We have built a web application that provides commercial and scientific space travel services. The application will allow users to book rockets and join selected space missions. | css,es6,html,javascript,jest,react-testing-library,reactjs,redix-toolkit,redux,redux-thunk | 2023-06-26T07:57:02Z | 2023-11-25T08:33:40Z | null | 3 | 26 | 181 | 0 | 0 | 3 | null | MIT | JavaScript |
zhouzhihu/sweet-api | master | [简介](#简介) | [特性](#特性) | [文档](https://s-sweet.gitee.io/sweet-api-docs/#/) | [模块介绍](#模块介绍) | <a target="_blank" href="https://s-sweet.gitee.io/sweet-api-docs/#/pages/changelog/">更新日志</a> | [项目截图](#项目截图)
## 简介
Sweet-API是基于Java的HTTP API快速接口开发框架,线上完成接口开发、调试和发布,自动映射为HTTP接口。 无需定义Controller、Service、Dao、Mapper、XML、VO等Java对象即可完成常见的HTTP API接口开发。

## 特性
* 支持MySQL、达梦、Oracle、SQLServer等支持jdbc规范的数据库;
* 支持非关系型数据库Redis、ElasticSearch;
* 支持第三方接口API和WebService;
* 支持多租户模式;
* 支持多数据源配置,支持在线配置数据源;
* 支持分页查询以及自定义分页查询;
* 支持自定义JSON结果、自定义分页结果;
* 支持运行时动态修改数据源;
* 支持可插拔式的插件机制;
* 支持数据库事务、SQL支持拼接,占位符,判断等语法;
* 支持文件上传、下载、输出图片;
## 模块介绍
* sweet-core:`sweet-api`向外提供的服务接口,包括:API执行器、数据源扩展、动态插件扩展、资源管理和多租户管理等接口。
* sweet-api:实现`sweet-api`核心框架,包括动态API实现、GraalJS实现和内置插件实现等;
* [sweet-api-starters](./sweet-api-starters):`sweet-api`启动器模块,可以理解为第三方接口的集成模块。包括多数据源管理以及扩展插件Excel、ElasticSearch、RabbitMQ、Redis、Wechat等插件的启动器实现;
* sweet-api-plugins:利用`sweet-core`提供的服务接口扩展插件,同时提供操作API给`sweet-editor`使用。包括:ElasticSearch插件、Excel插件、RabbitMQ插件、Redis插件、Task插件和Wechat微信插件等;
* sweet-api-spring-boot-starter:`sweet-api`提供的spring boot启动器;
* [sweet-api-web](./sweet-api-web):采用`Spring Boot`技术为`Sweet-Api`提供`数据存储`,为`Sweet-Editor`提供`RESTful API`接口服务;
* [sweet-editor](./sweet-editor):前端在线编辑器,提供在线书写`JavaScirpt`脚本,线上完成接口开发、调试和发布;
# 项目截图
|  |  |
|---|---|
|  |  |
|  |  | | 基于Spring Boot的插件化HTTP API快速接口开发框架,线上完成接口开发、调试和发布。 | api,plugin,rest-api,spring-boot,rest,api-framework,automatic-api,http-api,javascript,http-api-generator | 2023-06-20T06:01:28Z | 2023-06-20T03:36:12Z | null | 1 | 0 | 31 | 1 | 3 | 3 | null | MIT | Java |
Gichbuoy/hordzee-zombie-game | main | # hordzee-zombie-game
- Created with CodeSandbox.
- This is a 2D zombie shooter game created using JavaScript
- This game includes:
* Animations
* Basic Enemy AI
* Audio
* Input Handling
* Particles
* Game State
* Collision detection
## Getting Started
- To run the game locally, follow the following steps:
- Clone the repository or download the game source code.
git clone https://github.com/Gichbuoy/hordzee-zombie-game.git
- Open the index.html file in a web browser of your choice.
- Use the cursor to control the player character.
- Press the left mouse button to shoot the zombies.
- Survive as long as possible, aiming for a high score!
### Installation
- To get started with the project, follow the steps below to install the necessary dependencies:
* Ensure that you have [prerequisites such as Node.js or npm] installed on your machine.
* Clone or download the project repository to your local machine. You can use the following command to clone the repository:
- https://github.com/Gichbuoy/hordzee-zombie-game.git
* Open a terminal or command prompt and navigate to the project directory:
- cd hordzee-zombie.git
* Run the following command to install the project dependencies:
- [npm install]
### Contributing
Contributions to the game are welcome! If you would like to contribute, please follow these guidelines:
* Fork the repository and clone it locally.
* Create a new branch for your feature or bug fix.
* Make your changes and test thoroughly.
* Commit your changes with clear and descriptive commit messages.
* Push your branch to your forked repository.
* Create a pull request with a detailed description of your changes.
### License
- This game is licensed under the MIT License. Feel free to use, modify, and distribute the code as per the terms of the license.
### Acknowledgements
- The game is developed using JavaScript and HTML5 canvas.
- Special thanks to my instructor -Morgan Page- for helping me build this game
- Enjoy the game and happy zombie hunting!!!
| 2D javascript game Created with CodeSandbox | javascript,pixi-js,animations,arrays,classes,es6,functions,objects,spritesheet | 2023-06-21T18:45:32Z | 2023-08-04T20:52:59Z | null | 1 | 0 | 20 | 0 | 0 | 3 | null | MIT | JavaScript |
JLpensador/Nirvana | main | # Nirvana
Um carrossel de imagens da banda de rock dos anos 90 Nirvana
<br>( agradecimentos ao meu amigo Enzo Davi https://github.com/davrff )
<br> <br>





| Um carrossel de imagens da banda de rock dos anos 90 Nirvana ( agradecimentos ao meu amigo Enzo Davi https://github.com/davrff ) | css,html,html-css,html-css-javascript,html5,javascript,css3 | 2023-06-22T19:07:48Z | 2023-10-25T15:31:59Z | null | 2 | 0 | 4 | 0 | 0 | 3 | null | null | HTML |
Yezuss/Clothing-e-commerce-website | master | <p align="center">
<h1 align="center">Clothing E Commerce Website</h1>
</p>
# Introduction
Here is my java source code for Clothing E Commerce Website. with my code, you could:
* **Login and Logout**
* **Payment**
* **View personal information**
* **View order history**
* **View all purchased products**
# Experiments
## 1. Sign up, Sign in & Forgot password
The login function:
* **Allows users to log in to the system.**
* **Users enter their full information => Click [Sign In].**
USER

ADMIN

The register function:
* **Allows users to register for an account.**
* **Users enter their full information => Click [Register].**

The function of the forgot password page:
Allows users to reset their forgotten password.
* **Step 1: Enter username and perform verification.**
* **Step 2: After the system verifies that the entered account exists, the system will send a confirmation code to the registered email of that account. After receiving the code, the user needs to enter the correct code into the input box and click on the button to reset the password.**

## 2. Home
PAGE HOME USER

PAGE HOME ADMIN
## 3. Products
The function of the shop page:
* **Allows users to view product information.**
* **Add products to the shopping cart.**
* **Paginate products.**
* **Search and paginate products.**
* **Filter products by category and paginate them accordingly.**

* **View details of the product such as: images, price, description...**
* **Add the product to the shopping cart.**
* **Related products.**

## 4. Profile Account
* **Displays the user's personal information such as name, email, profile picture, phone number, etc.**
* **Allows users to change their displayed personal information and change their password.**
PROFILE USER

PROFILE ADMIN

## 5. History
The function of the order history page:
* **Displays information about the user's purchase history.**
* **Allows users to view the detailed information of each order.**

## 6. Shopping Cart & Payments
* **Displays the products added to the cart.**
* **Allows users to remove unwanted products from the cart.**
* **Updates the quantity of products in the cart => Click "Update Cart".**
* **Proceeds to purchase the products => Click "Proceed to Checkout".**
SHOPPING CART

CHECK OUT

INVOICE

PAYMENTS BY MOMO

# ⭐ Future Features
- Pending
_Feel free to fork and contribute to include these features._ ❤︎
# 🚀 Technologies
Programming tools and languages used:
- Database management system: MySQL.
- Programming tools: Spring Tool Suite 4, Visual Studio Code, Eclipse.
- Programming language: Java.
Supported libraries and frameworks:
- Spring Boot, Spring Data JPA, Thymeleaf, Lombok, and some other libraries
# 🤝 Contribute
To contribute, fork the repository and push the changes to the **master** branch. Then submit a pull request for merging with the source. If your code passes the review and checks it will be merged into the master branch.
# 💬 Feedback
Feel free to send us feedback on [gmail]. Feature requests are always welcome.
# 📝 License
Licensed under the [MIT License].
| A complete virtual pants selling website using Spring Boot | css,html,java,javascript,scss | 2023-06-11T20:31:56Z | 2023-06-20T14:05:29Z | null | 1 | 0 | 24 | 0 | 1 | 3 | null | null | CSS |
sujin-lifology/project-pilot | main | # project_pilot
project_pilot is a task management open source software designed for individuals and teams to help organize and manage their daily tasks efficiently. It offers a range of features such as task lists, due dates, priority levels, and progress tracking. With project_pilot, users can easily collaborate with team members, delegate tasks, and monitor progress.
# Purpose
The purpose of project_pilot is to simplify task management, streamline workflow, and increase productivity. It is an ideal solution for individuals and teams who want to stay on top of their tasks and projects while reducing the risk of missing deadlines.
In this open-source project, project_pilot provides an opportunity for developers to contribute to the software's development and customization. The project is open to contributions and feedback from the community, with the aim of improving the software's functionality and features.
To get started with project_pilot, simply clone the software from the repository and follow the instructions in the readme file.
To quickly start the project_pilot project, follow the instructions below.
# Prerequisites
Node.js (v14 or higher) and npm should be installed on your machine.
# Installation
Clone this repository to your local machine.
Open a terminal and navigate to the project's root directory.
Running the Application
Windows Users
Open a command prompt and navigate to the project's root directory.
Run the following command to start the client:
```
cd client
npm install
npm run dev
```
Open another command prompt and navigate to the project's root directory.
Run the following command to start the server:
```
cd server
npm install
npm start
```
macOS and Linux Users
Open a terminal and navigate to the project's root directory.
Run the following command to make the shell script(bash) executable:
```
chmod +x start.sh
```
Run the following command to start both the client and server:
bash
```
./start.sh
```
The application will be available at:
```
http://localhost:3000/
http://localhost:7996/
```
Enjoy Coding!
Don't forget to make a pull request:)
| project-pilot is a task management open source software designed for individuals and teams to help organize and manage their daily tasks efficiently. | developer,developer-tools,productivity,task-manager,typescript,github,javascript,open-source | 2023-06-10T08:38:57Z | 2023-06-13T04:34:43Z | null | 1 | 4 | 6 | 2 | 0 | 3 | null | MIT | TypeScript |
mskelton/flashlight | main | # Flashlight
CLI tool to help you analyze code usage in your project.
Flashlight allows you to perform searches that would be difficult with normal
string or regex searching such as:
- Find all imports from `react` that imported `useMemo`
- Find all `<Button>` tags with the attribute `type="primary"`
Regex searches can work for this at times, but it becomes very complex when
imports or tags span multiple lines. Flashlight provides a much easier way to
perform these searches.
## Installation
You can install Flashlight by running the install script which will download
the [latest release](https://github.com/mskelton/flashlight/releases/latest).
```bash
curl -LSfs https://go.mskelton.dev/flashlight/install | sh
```
Or you can build from source.
```bash
git clone git@github.com:mskelton/flashlight.git
cd flashlight
cargo install --path .
```
## Commands
### `imports`
Searches for all imports for a given import source.
```bash
flashlight imports react
```
You can also search for a specific import specifier.
```bash
flashlight imports react useState
```
### `tags`
Searches for all JSX elements with the given name.
```bash
flashlight tags Button
```
You can also search for elements with a specific attribute or attribute/value
pair.
```bash
flashlight tags Button variant
flashlight tags Button variant=primary
```
## Flags
### Change working directory
By default, flashlight uses the current working directory to search. You can
change the working directory using the `--cwd` argument.
```bash
flashlight --cwd ./packages/a imports react
```
### Format
You can customize the output format based on your use case. The supported
formats are:
- `default` - The default console format
- `json` - Formats the output as JSON
- `quickfix` - Formats the output as a Vim quickfix list (alias `vi`)
```bash
flashlight --format json imports react
```
| Find usages of imported symbols in your codebase. | javascript,search,swc,symbols,typescript | 2023-06-26T16:49:45Z | 2024-04-06T13:06:22Z | 2023-12-30T06:54:43Z | 1 | 4 | 33 | 0 | 0 | 3 | null | ISC | Rust |
zola-25/Explain-My-Energy | main |  
# Explain My Energy
This is an open-source hobby project that provides a standalone, serverless Blazor WebAssembly app to enable UK-based users easy access to detailed insights on their energy usage and energy costs.
Full documentation can be found at [docs.explainmyenergy.net](https://docs.explainmyenergy.net/)
The application is essentially a client-side wrapper around the consumer API provided by [n3rgy](https://www.n3rgy.com/consumer/), providing detailed energy analysis not available to many consumers - maybe due to the limitations of their energy provider, and often requiring the use of pay-to-use energy apps for the same level of insight.
The analysis includes showing the effects of seasonal temperature on energy usage and costs, as well as daily, weekly and monthly summaries of historical, present and forecast energy usage and costs.
The best way to get a feel of the app is to try the [demo site](https://demo.explainmyenergy.net/), pre-configured with dummy data.
## Visual Example

## Note on Browser Support and Security
The application should be fully functional on up-to-date desktop browsers. It has been tested on the latest desktop versions of Chrome, Firefox, Edge and Safari\*.
The application currently makes extensive use of browser local storage and the initial app download size is quite large. Currently ***it may not be functional on some mobile browsers***, as these browsers usually have comparatively smaller local storage and cache limits.
However both the main app and the demo site have been tested on iPhone 13\* and Galaxy S8, although out of date mobile OS versions may have issues. For iOS ideally use the latest version (17.4 at time of writing), and likewise for Android (version 14 at time of writing). Your mileage may vary.
Initial App download size comes with the territory of Blazor WebAssembly apps right now. App size has been reduced with the cautious use of the [.NET Trimmer](https://learn.microsoft.com/en-us/dotnet/core/deploying/trimming/trimming-options?pivots=dotnet-7-0), but there may be more to gain here.
> [!NOTE]
> **\*WebKit** based browsers such as Safari display intermittent issues using test emulators, regardless of the platform, but appear to be working fine in the wild.
### Security
> [!IMPORTANT]
> Be aware that all data is stored unencrypted in the browser's local storage. No personal data is requested or stored by the application, but to function, the app requires a smart meter IHD (In Home Device) MAC ID, and energy meter MPAN and MPRN numbers. The documentation has more details on these numbers on the [setup page](https://docs.explainmyenergy.net/setup.html).
>
> > There is a feature to lock and encrypt potentially sensitive data, given a user provided password: [app lock docs](https://docs.explainmyenergy.net/setup/app-data-locking.html).
> > This doesn't require server-held user accounts or third-party authentication providers.
>
> Data stored in browser local storage is only accessible by the web app that created it, and XSS attack risks have been minimized - however, don't use this app on a shared device or a device that you don't trust.
>
## Getting Started
There's comprehensive documentation at [docs.explainmyenergy.net](https://docs.explainmyenergy.net/).
Exploring the **demo** implementation, pre-configured with dummy data and requiring no setup, is recommended and available at [demo.explainmyenergy.net](https://demo.explainmyenergy.net/)
The **live** version that you can to analyze your own energy data, is available at [explainmyenergy.net](https://explainmyenergy.net/)
| UK Home Energy Analysis App with Blazor WebAssembly. Config is minimal, should work for most homes. | amcharts,blazor,blazor-webassembly,csharp,dotnet,energy,energy-consumption,energy-efficiency,energy-management,energy-monitor | 2023-06-28T01:21:47Z | 2024-04-15T19:09:21Z | 2023-12-19T00:13:47Z | 1 | 102 | 384 | 0 | 0 | 3 | null | Apache-2.0 | C# |
digitalers/java-2023 | main | [](https://github.com/digitalers/Java-2023/actions/workflows/greetings.yml)
# Java-2023
Repositorio del programa de formación gratuita en desarrollo de software y oficios digitales [Java Full Stack]
## Terminos y condiciones
Para ser elegible para el certificado del Curso de Programación, cada participante debe cumplir con los siguientes criterios:
### a. Asistencia: Cada participante debe asistir al menos al 80% de las sesiones del curso. La asistencia será monitoreada y registrada vía zoom por el equipo del curso.
### b. Realización de Actividades: Cada participante debe completar y presentar las actividades del curso asignadas por el equipo docente. Las actividades pueden incluir, pero no se limitan a, tareas, proyectos, pruebas y ejercicios.
El certificado de finalización del Curso de Programación se otorgará solo a aquellos participantes que cumplan con los criterios anteriores.
Los participantes que no cumplan con estos criterios no recibirán un certificado al final del curso. La decisión final sobre la emisión de certificados la toma el equipo del curso, y se basará en los registros de asistencia y la finalización de las actividades. Al inscribirse en este curso, el participante acepta estos términos y condiciones para la certificación.
| Repositorio del programa de formación gratuita en desarrollo de software y oficios digitales [Java Full Stack]. Sobre el curso online de Java: ¿Qué voy a aprender? Este curso te proporcionará las herramientas y conocimientos básicos necesarios para desarrollar aplicaciones web basadas en tecnología Java. | angular,css3,dbms,ddd-architecture,html5,jakarta-ee,java,javaee,javascript,oops-in-java | 2023-06-20T20:51:08Z | 2023-08-14T18:18:56Z | null | 2 | 11 | 10 | 11 | 0 | 3 | null | CC0-1.0 | null |
shubham-masai/Trakkerz | main | # subdued-neck-2197
it traveling website
netlfify-link:https://651bc1fbf13ca03c77460946--preeminent-bombolone-bfea0d.netlify.app/
| Your go-to platform for effortless tourist place bookings. Discover, book, and customize your dream vacations with ease. Verified listings, exclusive deals, and 24/7 support - all to make your travel experience unforgettable. Explore the world, simplified with Trakkerz. | css5,html5,javascript | 2023-06-13T15:55:02Z | 2024-03-29T10:17:58Z | null | 2 | 5 | 16 | 4 | 0 | 3 | null | null | HTML |
montasim/Next-Level-Web-Development | main | <img loading="lazy" src="https://readme-typing-svg.demolab.com?font=Poppins&weight=700&size=24&duration=1&pause=1&color=EB008B¢er=true&vCenter=true&repeat=false&width=370&height=40&lines=NEXT+LEVEL+WEB+DEVELOPMENT" alt="NEXT LEVEL WEB DEVELOPMENT" />
<!-- repository summary badges start -->
<div>
<img alt="GitHub watchers" src="https://img.shields.io/github/watchers/montasim/Next-Level-Web-Development?&labelColor=EB008B&color=00B8B5">
<img alt="goto badge" src="https://img.shields.io/github/search/montasim/Next-Level-Web-Development/goto?&labelColor=EB008B&color=00B8B5">
<img alt="GitHub repo file count" src="https://img.shields.io/github/directory-file-count/montasim/Next-Level-Web-Development?&labelColor=EB008B&color=00B8B5">
<img alt="GitHub repo size" src="https://img.shields.io/github/repo-size/montasim/Next-Level-Web-Development?&labelColor=EB008B&color=00B8B5">
<img alt="GitHub" src="https://img.shields.io/github/license/montasim/Next-Level-Web-Development?&labelColor=EB008B&color=00B8B5">
<img alt="GitHub commit activity" src="https://img.shields.io/github/commit-activity/w/montasim/Next-Level-Web-Development?&labelColor=EB008B&color=00B8B5">
<img alt="GitHub contributors" src="https://img.shields.io/github/contributors/montasim/Next-Level-Web-Development?&labelColor=EB008B&color=00B8B5">
<img alt="GitHub last commit" src="https://img.shields.io/github/last-commit/montasim/Next-Level-Web-Development?&labelColor=EB008B&color=00B8B5">
</div>
<!-- repository summary badges end -->
<br/>
All the codes, notes, and ideas from the Next Level Web Development courses will be added here.
<br/>
```
NOTE: Notes will be added by Mission name
```
<br/>
## CONTENTS:
- [Roadmap](#roadmap)
- [Missions](#missions)
- [Used Packages](#used-packages)
- [Tools](#tools)
- [Articles](#articles)
- [Video Tutorials](#tutorials)
- [Inspirations](#inspirations)
- [Contribute](#contribute)
- [License](#license)
<br/>
## Roadmap
1. [Roadmap](./media/pdf/Next%20Level%20Web%20Development.pdf)
<br/>
## MISSIONS
<details>
<summary> Mission 0: Welcome To Next Level Web Development (Module: 0 - 1) </summary>
<br/>
</details>
<details>
<summary> Mission 1: Be a TypeScript Technocrat (Module: 2 - 5.5) </summary>
<ol>
<li>
<a href="./missions/mission-1/module-2/notes.md"> Module 2: Explore Basic Types of TypeScript </a>
</li>
<li>
<a href="./missions/mission-1/module-3/notes.md"> Module 3: Explore Advance Types of TypeScript </a>
</li>
<li>
<a href="./missions/mission-1/module-4/notes.md"> Module 4: Object-Oriented Programming in TypeScript </a>
</li>
<li>
<a href="./missions/mission-1/module-5/notes.md"> Module 5 Assignment 1 </a>
</li>
<li>
<a href="./missions/mission-1/module-5.5/notes.md"> Module 5.5: Bonus Module </a>
</li>
</ol>
</details>
<details>
<summary> Mission 2: Be A Mongoose Master (Module: 6 - 9) </summary>
<ol>
<li>
<a href="./missions/mission-2/module-6/notes.md"> Module 6: Installation and Explore Read and Write Queries </a>
</li>
<li>
<a href="./missions/mission-2/module-7/notes.md"> Module 7: Explore Mongoose More Queries </a>
</li>
<li>
<a href="./missions/mission-2/module-8/notes.md"> Module 8: MongoDB Aggregation Framework and Indexing </a>
</li>
<li>
<a href="./missions/mission-2/module-8.5/notes.md"> Module 8.5: Simple Mongoose Practice </a>
</li>
<li>
<a href="./missions/mission-2/module-9/notes.md"> Module 9: Assignment 2 </a>
</li>
</ol>
</details>
<details>
<summary> Mission 3: Be A NoSQL Backend Braniac (Module: 10 - 19) </summary>
<ol>
<li>
<a href="./missions/mission-3/module-10/notes.md"> Module 10: SDLC, Requirement Analysis and Project Setup </a>
</li>
<li>
<a href="./missions/mission-3/module-11/notes.md"> Module 11: How to set up and organize your project professionally </a>
</li>
<li>
<a href="./missions/mission-3/module-12/notes.md"> Module 12: Building The Auth Service Part 2 </a>
</li>
<li>
<a href="./missions/mission-3/module-13/notes.md"> Module 13: Error handling, Zod, Pagination & Academic Semester </a>
</li>
<li>
<a href="./missions/mission-3/module-14/notes.md"> Module 14: Pagination, Filtering, Complete Academic Semester </a>
</li>
<li>
<a href="./missions/mission-3/module-15/notes.md"> Module 15: Complete Student Module, Implement Transaction and Rollback, Practice Faculty Module </a>
</li>
<li>
<a href="./missions/mission-3/module-15.5/notes.md"> Module 15.5: Practice Day </a>
</li>
<li>
<a href="./missions/mission-3/module-16/notes.md"> Module 16: Assignment 3 </a>
</li>
<li>
<a href="./missions/mission-3/module-17/notes.md"> Module 17: Implement Authentication & Authorization using JWT </a>
</li>
<li>
<a href="./missions/mission-3/module-18/notes.md"> Module 18: Assignment 4 </a>
</li>
<li>
<a href="./missions/mission-3/module-19/notes.md"> Module 19: Complete Update Password System </a>
</li>
</ol>
</details>
<details>
<summary> Mission 4: Be A Redux Reaper (Module: 20 - 23) </summary>
<ol>
<li>
<a href="./missions/mission-4/module-20/notes.md"> Module 20: Get started with Redux. A deep dive into Redux's philosophy </a>
</li>
<li>
<a href="./missions/mission-4/module-21/notes.md"> Module 21: Hands-on State Management & Crud Operation </a>
</li>
<li>
<a href="./missions/mission-4/module-22/notes.md"> Module 22: Handling async tasks using Redux </a>
</li>
<li>
<a href="./missions/mission-4/module-23/notes.md"> Module 23: Assignment 5 </a>
</li>
</ol>
</details>
<details>
<summary> Mission 5: Be A NextJS Ninja (Module: 24 - 27) </summary>
<ol>
<li>
<a href="./missions/mission-5/module-24/notes.md"> Module 24: Fundamentals of Next.Js </a>
</li>
<li>
<a href="./missions/mission-5/module-25/notes.md"> Module 25: Next Level Data Fetching in Next.Js </a>
</li>
<li>
<a href="./missions/mission-5/module-26/notes.md"> Module 26: Explore NextAuth & App Router </a>
</li>
<li>
<a href="./missions/mission-5/module-26.5/notes.md"> Module 26.5: Practice Day </a>
</li>
<li>
<a href="./missions/mission-5/module-27/notes.md"> Module 27: Assignment-6 </a>
</li>
</ol>
</details>
<br/>
## USED PACKAGES
1. [yarn](https://yarnpkg.com/) - *Yarn is a package manager that doubles down as project manager*
2. [typescript](https://www.typescriptlang.org/) - *TypeScript is JavaScript with syntax for types*
3. [nodemon](https://nodemon.io/) - *Simple monitor script for use during development of a Node.js app*
4. [ts-node-dev](https://www.npmjs.com/package/ts-node-dev) - *TypeScript execution environment and REPL for node.js*
5. [antd](https://ant.design/docs/react/introduce) - *An enterprise-class UI design language and React UI library with a set of high-quality React components, one of best React UI library for enterprises*
6. [json-server](https://www.npmjs.com/package/json-server) - *Get a full fake REST API with zero coding in less than 30 seconds (seriously)*
7. [react-redux](https://redux-toolkit.js.org/tutorials/quick-start) - *The official, opinionated, batteries-included toolset for efficient Redux development*
8. [mongodb](https://www.npmjs.com/package/mongodb) - *The official MongoDB driver for Node.js.*
9. [vite](https://vitejs.dev/guide/) - *Next Generation Frontend Tooling.*
10. [tailwindcss](https://tailwindcss.com/docs/installation) - *A utility-first CSS framework.*
11. [react-router-dom](https://reactrouter.com/en/main/start/tutorial#setup) - *React Router enables "client side routing".*
12. [@reduxjs/toolkit](https://redux-toolkit.js.org/introduction/getting-started) - *The Redux Toolkit package is intended to be the standard way to write Redux logic.*
13. [react-redux](https://react-redux.js.org/introduction/getting-started) - *React Redux is the official React UI bindings layer for Redux.*
<br/>
## TOOLS
1. [typescript-mongoose-eslint-husky-staged boilerplate](https://github.com/tauhid-hasan-dev/typescript-mongo-mongoose-express-server-with-eslint-prettier-husky-lint-staged)
2. [BreakTimer](https://breaktimer.app/#download)
3. [Redux DevTools](https://microsoftedge.microsoft.com/addons/detail/redux-devtools/nnkgneoiohoecpdiaponcejilbhhikei)
<br/>
## ARTICLES
1. [NVM for Windows – How to Download and Install Node Version Manager in Windows 10](https://www.freecodecamp.org/news/nvm-for-windows-how-to-download-and-install-node-version-manager-in-windows-10/)
2. [Pick Function Refactoring & Property Management](./articles/pick-function-refactoring-property-management.md)
3. [All about Express Error Handling](./articles/all-about-express-error-handling.md)
4. [Exploring $exists, $type and $size operators](./articles/exploring-exists-type-and-size-operators.md)
5. [Exploring the Power of $inc, $max, $min, and $mul Operators of MongoDb](./articles/exploring-the-power-of-inc-max-min-and-mul-operators-of-mongodb.md)
6. [MongoDB $and Operator](./articles/mongodb-and-operator.md)
7. [MongoDB's Update Operators: Mastering $push, $set, and $addToSet for Efficient Data Management](./articles/mongodbs-update-operators.md)
8. [Unleashing the Power of Querying : Discover MongoDB's $not and $nor Operators](./articles/unleashing-the-power-of-querying.md)
9. [Boost Your MongoDB Queries: Deep Dive into $in, $nin, and $or Operators](./articles/deep-dive-into-in-nin-and-or-operators.md)
10. [Permanently removing a file from git history](https://stackoverflow.com/questions/58161926/permanently-removing-a-file-from-git-history)
11. [Create a JSON server](./articles/create-a-json-server.md)
12. [What is the difference between fallback false vs true vs blocking of getStaticPaths with and without revalidate in Next.js SSR/ISR?](https://stackoverflow.com/questions/67787456/what-is-the-difference-between-fallback-false-vs-true-vs-blocking-of-getstaticpa/67787457#67787457)
13. [How to use different .env files with nextjs?](https://stackoverflow.com/questions/59462614/how-to-use-different-env-files-with-nextjs)
<br/>
## DO NOT FORGET TO DO
<details>
<summary> Vercel এ ডেপ্লয় এর ক্ষেত্রে কয়েকটি জিনিস খেয়াল রাখতে হবে </summary>
<br/>
Vercel এ ডেপ্লয় এর ক্ষেত্রে কয়েকটি জিনিস খেয়াল রাখতে হবে
- tsconfig.json এর মধ্যে
```json
"module": "commonjs" */* Specify what module code is generated. */*,
"rootDir": "./src" */* Specify the root folder within your source files. */*,
"outDir": "./dist" */* Specify an output folder for all emitted files. */*,
```
এই কনফিগটি add করে নিতে হবে যদি আগে থেকে করা না থাকে
- package.json এর মধ্যে
```json
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"start": "node dist/server.js",
"build": "tsc"
}
```
- প্রজেক্টের রুট এর মধ্যে vercel.json ফাইল বানিইয়ে নিতে হবে
```json
{
"version": 2,
"builds": [
{
"src": "dist/server.js",
"use": "@vercel/node"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "dist/server.js"
}
]
}
```
এরপর Cli দিয়ে deploy করে নিলেই কাজ শেষ , সার্ভার রেডি
If you need to change the environment variable of `Vercel` production always make sure to have a push to the `main branch`.
</details>
<br/>
## TUTORIALS
1. [Git - How to Duplicate a Repository with History ( Full duplicate, no fork)](https://www.youtube.com/watch?v=lhlUOSfZu24)
2. [How to test a local website on your phone](https://www.youtube.com/watch?v=uRYHX4EwYYA)
<br/>
## INSPIRATIONS
1. [Wallpaper - For daily inspiration](./media/images/inspiration-wallpaper.jpeg)
<br/>
## CONTRIBUTE
Contributions are always welcome!
Please read the [contribution guidelines](CONTRIBUTION.md) first.
<br/>
## SPECIAL THANKS
1. [Tauhid Hasan](https://github.com/tauhid-hasan-dev) for his [typescript-mongoose-eslint-husky-staged boilerplate](https://github.com/tauhid-hasan-dev/typescript-mongo-mongoose-express-server-with-eslint-prettier-husky-lint-staged)
2. [Dipto Karmaker](https://www.facebook.com/dipto.karmaker.9) for his suggestion to use [BreakTimer](https://breaktimer.app/#download)
3. [Mezbaul Abedin Forhan](https://www.facebook.com/groups/196275986482127/user/100051687471216/?__cft__[0]=AZUHgThDMuNrBxWNfQMNWGsF5OF3rKdgg2DbSG3mrAe6uRnaNCNRBYD3oZ2M9U25njZjOZMMeJWUzXEMn5mWDJJIjezco9JFGBzE86Trm1__fo6EIAdKiPedc4GFe5XT0ZqJi8Mjj7PQ1jhbjFbj_ygt&__tn__=-UC%2CP-R) for [Pick Function Refactoring & Property Management](./articles/pick-function-refactoring-property-management.md)
4. [Mezbaul Abedin Forhan](https://www.facebook.com/groups/196275986482127/user/100051687471216/?__cft__[0]=AZUHgThDMuNrBxWNfQMNWGsF5OF3rKdgg2DbSG3mrAe6uRnaNCNRBYD3oZ2M9U25njZjOZMMeJWUzXEMn5mWDJJIjezco9JFGBzE86Trm1__fo6EIAdKiPedc4GFe5XT0ZqJi8Mjj7PQ1jhbjFbj_ygt&__tn__=-UC%2CP-R) for [All about Express Error Handling](./articles/all-about-express-error-handling.md)
5. [Mezbaul Abedin Forhan](https://www.facebook.com/groups/196275986482127/user/100051687471216/?__cft__[0]=AZUHgThDMuNrBxWNfQMNWGsF5OF3rKdgg2DbSG3mrAe6uRnaNCNRBYD3oZ2M9U25njZjOZMMeJWUzXEMn5mWDJJIjezco9JFGBzE86Trm1__fo6EIAdKiPedc4GFe5XT0ZqJi8Mjj7PQ1jhbjFbj_ygt&__tn__=-UC%2CP-R) for [MongoDB $and Operator](./articles/mongodb-and-operator.md)
6. [Ehtisam Haq](https://www.facebook.com/groups/196275986482127/user/100054686322018/?__cft__[0]=AZXWZQsOJLRUlOnAZXCcdBSnHgV8L_0wHengcczizEHGUOKbtzVlWLpouOzQWUxHonIdIGpIjO8UOacomwLALreh79ZWpTrVVgYS-CcRdd8uznQtmaI7fFqpL3FAn1aOD3WWJI7xD8MEbSgo0cfw0Nco&__tn__=-UC%2CP-R) for [Exploring $exists, $type and $size operators](./articles/exploring-exists-type-and-size-operators.md)
7. [Anisur Rahman](https://www.facebook.com/groups/196275986482127/user/100008280541615/?__cft__[0]=AZWt1z3R3gtFybgOz_zMiyB8XKgGZFf7GBycrIhdCV60RCskF4F_EqMwVBElP6q_RU5i0-pkfT-ZDHC6bnT2uqyQ6i1rO7F6QJuuLLhqjGp__2ENKq7qamMp0j6oSniqndu9aCVaQ7qbhzAPrFZBCgaM&__tn__=-UC%2CP-R) for [Exploring the Power of $inc, $max, $min, and $mul Operators of MongoDb](./articles/exploring-the-power-of-inc-max-min-and-mul-operators-of-mongodb.md)
8. [Mehedi Anik](https://www.facebook.com/groups/196275986482127/user/100005038366015/?__cft__[0]=AZWT2tLQUda8c7i9m_lbGsy3ZAsCgKj-UOGZomNYcmWhJl0isEYWm2QkfEPGpfUUoqU1UtyRwD-zgemkiVMA5Ju6AaLu2SDX_aV2lXqwVeA_qsNqwQN-0Zr8uEtV0PN_0oorrkAeOXIW70aJhfpzMZo_&__tn__=-UC%2CP-R) for [MongoDB's Update Operators: Mastering $push, $set, and $addToSet for Efficient Data Management](./articles/mongodbs-update-operators.md)
9. [Samin Israr Ravi](https://www.facebook.com/groups/196275986482127/user/100024504072245/?__cft__[0]=AZVXMf8IphXlnTvY7qwcQ0QO7uiL7oRHma-Y2f4ZYZmLuA5utedOgUforGrAAzwhRGABmlKi90kbpUgMv73adUjUM-BtRg_mDji7n4qiApFa0DLdIfx8xsNHQ-QsKBM6AgGDhkclvR7Il49uPqSpFbpW&__tn__=-UC%2CP-R) for [Unleashing the Power of Querying : Discover MongoDB's $not and $nor Operators](./articles/unleashing-the-power-of-querying.md)
10. [Tanmoy Parvez](https://www.facebook.com/groups/196275986482127/user/100009656776349/?__cft__[0]=AZUTBiFBXKkM2Ou-flLonre4RhYVx3SnK18PebfVuXDUlrxpsfhojJ_LVew6cxFtkyWkZBcwnG3IZpWXN_2-NEt6wqrJhqSSQIXhgjuN5ZKkevXcd4fnDUmYmp-uC73SL7YdPz8q5V86RcSICkG3F2_e&__tn__=-UC%2CP-R) for [Boost Your MongoDB Queries: Deep Dive into $in, $nin, and $or Operators](./articles/deep-dive-into-in-nin-and-or-operators.md)
11. [Simba](https://stackoverflow.com/users/5101148/simba) for [Permanently removing a file from git history](https://stackoverflow.com/questions/58161926/permanently-removing-a-file-from-git-history)
12. [Jason Cheung](https://www.youtube.com/@jasoncheung94) for [Git - How to Duplicate a Repository with History ( Full duplicate, no fork)](https://www.youtube.com/watch?v=lhlUOSfZu24)
<br/>
## LICENSE
[](https://creativecommons.org/publicdomain/zero/1.0/)
To the extent possible under law, [M♢NTΛSIM](http://montasim-dev.web.app/) has waived all copyright and related or neighboring rights to this work.
<br/>
<br/>
<br/>
<br/>
<!-- feel free to contact me text start -->
<div>
<img loading="lazy" src="https://readme-typing-svg.demolab.com?font=Poppins&weight=600&size=21&duration=1&pause=1&color=00B8B5¢er=true&vCenter=true&repeat=false&width=370&height=21&lines=FEEL+FREE+TO+CONTACT+ME+ANYTIME" alt="feel free to contact me svg" />
</div>
<!-- feel free to contact me text end -->
<br/>
<!-- social media links start -->
<table>
<thead align="center">
<tr>
<th>
<a href="https://www.linkedin.com/in/montasim">
<img alt="Linkedin icon" src="https://cdn.simpleicons.org/linkedin" width="35px">
</a>
</th>
<th>
<a href="https://www.github.com/montasim">
<img alt="GitHub icon" src="https://cdn.simpleicons.org/github/white" width="35px">
</a>
</th>
<th>
<a href="https://stackoverflow.com/users/20348607/montasim">
<img alt="StackOverflow icon" src="https://cdn.simpleicons.org/stackoverflow" width="35px">
</a>
</th>
<th>
<a href="https://montasim-dev.web.app/">
<img alt="web icon" src="https://cdn.simpleicons.org/googlechrome" width="35px">
</a>
</th>
<th>
<a href="mailto:montasimmamun@gmail.com">
<img alt="Gmail icon" src="https://cdn.simpleicons.org/gmail" width="35px">
</a>
</th>
<th>
<a href="https://www.facebook.com/montasimmamun/">
<img alt="Facebook icon" src="https://cdn.simpleicons.org/facebook" width="35px">
</a>
</th>
<th>
<a href="https://twitter.com/montasimmamun">
<img alt="Twitter icon" src="https://cdn.simpleicons.org/twitter" width="35px">
</a>
</th>
</tr>
</thead>
</table>
<!-- social media links end -->
<!-- connect with me end -->
<br/>
<br/>
<br/>
| All of the codes, notes, and ideas from the Next Level Web Development courses will be added here. | nodemon,notes,programming-hero,programming-hero-class,ts-node-dev,typescript,yarn,next-level-web-development,programming-hero-notes,javascript | 2023-06-20T05:27:16Z | 2023-07-25T19:33:29Z | null | 2 | 14 | 133 | 0 | 0 | 3 | null | CC0-1.0 | JavaScript |
RahulKrishna-A/GestureAIlock-MachineLearning_Powered_Hand_Gesture_Password_Detection | main | # Gesturelock-Hand_Gesture_Password_Detection
**GestureLock** is a web application that utilizes MediaPipe ML library to detect hand landmarks and process them to identify the gestures displayed. It offers a secure and innovative approach to password authentication by replacing traditional alphanumeric passwords with hand gestures.
## Key Features
- Gesture Recognition: GestureLoc accurately detects and recognizes various hand gestures(which is currently limited to digits 1 to 5).
- Password Replacement: Users can create a personalized hand gesture password instead of using traditional alphanumeric passwords.
- Secure Authentication: GestureLock provides an additional layer of security by utilizing unique hand gestures for user authentication.
- User-Friendly Interface: The web application offers an intuitive and user-friendly interface for seamless user experience.
## MediaPipe
MediaPipe is google's Library which provides pre-trained models, algorithms, and APIs specifically designed for hand tracking and recognition tasks. By leveraging these resources, GestureLoc ensures reliable and precise hand gesture recognition, enhancing the security and usability of the web application.
To learn more about MediaPipe ML and its features, visit [the MediaPipe ML website.](https://developers.google.com/mediapipe)
## Technologies Used
- HTML5
- CSS3
- JavaScript
- Mediapipe
- Async Await
## Working screenshots



## Live Demo
[https://rahulkrishna-a.github.io/GestureAIlock-MachineLearning_Powered_Hand_Gesture_Password_Detection/](https://rahulkrishna-a.github.io/GestureAIlock-MachineLearning_Powered_Hand_Gesture_Password_Detection/)
## credits
- mediapipe API : [https://www.weatherapi.com/](https://developers.google.com/mediapipe/api/solutions/js/tasks-audio)
- Design Inspirations : https://dribbble.com/
- Fonts : https://fonts.google.com/
## Getting started
In order to setup and work on this project on your own, you will need to:
1. Clone this project:
`git@github.com:RahulKrishna-A/GestureAIlock-MachineLearning_Powered_Hand_Gesture_Password_Detection.git`
2. Once you have cloned this project, you can install the required dependencies by using:
`npm install`
3. A live demo of the project can be started by opening:
`index.html`
## 🤝 Contributing
Contributions, issues, and feature requests are welcome!
If you got until here, show your love hitting the ⭐️ button, I'd really appreciate it.
| GestureLock is a web application that utilizes MediaPipe library to detect hand landmarks and identify the gestures displayed. | css3,html5,javascript,machine-learning,mediapipe | 2023-06-11T20:58:02Z | 2024-01-23T07:23:08Z | null | 1 | 0 | 9 | 0 | 0 | 3 | null | null | HTML |
leticiapalaro/cinepedia-react-tmdb | main | # Cinepédia-v2
Aplicação web no formato SPA, feita com React alimentada com a API do TMDB (The Movie Data Base). A aplicação possui recomendações de filmes/séries e uma busca por algum item específico.
[Projeto Online](https://cinepedia-v2.vercel.app)
# Pré-requisitos
Antes de executar este projeto, verifique se você atende aos seguintes requisitos:
1. Node.js (versão 18.16.0 ou superior)
2. Visual Studio Code (ou qualquer outro editor de sua preferência)
Certifique-se de ter o Node.js instalado em seu sistema e definido no PATH. Você pode verificar se o Node.js está instalado digitando o seguinte comando no terminal:
```
node --version
```
Além disso, é recomendado utilizar o Visual Studio Code como editor de código, mas você pode optar por qualquer outro editor de sua preferência.
# Para utilizar o Projeto
Siga as etapas abaixo para configurar e executar o projeto:
1. Adicione sua chave no TMDB em src/services/api.js.
2. No prompt, navegue até a pasta raiz do projeto.
3.Instale as dependências necessárias executando o comando:
```
yarn install
```
ou
```
npm install
```
4. Rode o projeto utilizando o comando:
```
yarn start
```
ou
```
npm start
```
**Certifique-se de substituir sua-chave pelo valor correto da sua chave no arquivo `src/services/api.js`.**
# Créditos
1. Icone da aplicação retirado do site Flaticon: <a href="https://www.flaticon.com/free-icons/cinema" title="cinema icons">Cinema icons created by Freepik - Flaticon</a>
2. Fundos SVG retirados do site HeroPatterns: [Hero Patterns](https://heropatterns.com)
# Inspiração
A idéia veio do projeto AluraFlix, o último challenge do Projeto Oracle ONE da formação front-end.
A base era um site com links fixos de vídeos do YouTube baseados em algum tema.
Resolvi adaptar e fazer um site com informações de filmes e séries, alimentado por uma API.
# Funcionalidades
1. ## Carrosséis de Recomendação
1. Na página inicial, há um carrossel com os filmes mais buscados e com as melhores notas, e também existe uma página dedicada a dois carrosséis, de novidades e futuros lançamentos.
1. Feito com `react-alice-carousel`.
2. O carrossel com os filmes mais buscados está disponível apenas para computador, devido as limitações de tamanho da tela. Mas página a dedicada a dois carrosséis, de novidades e futuros lançamentos permanece para a versão mobile.
3. O carrossel gira automaticamente a cada 2 segundos, ele para de girar colocando o cursor em cima do carrossel, permitindo arrastar ou clicar nos botões para navegar entre os itens.
4. Ao clicar no pôster, uma janela flutuante é exibida com mais informações.
1. Para fechar a janela flutuante, basta clicar no botão fechar, pressionar a tecla ESC ou clicar fora da janela.
5. Cada item trás o tipo de mídia (filme ou série), poster, título, nota e data de lançamento.
1. A nota possui um css que varia de acordo com a nota, sendo preenchido com um radial grandient e varias especificações via JS para refletir melhor a nota visualmente.
2. ## Pesquisa de Filmes/Séries
1. É possível pesquisar por um item específico (filme ou série) com 3 campos: uma palavra chave que faz parte do nome do item (obrigatório), ano de lançamento (opcional - não é o ano mínimo, mas o ano exato do lançamento), nota mínima (opcional).
2. Ele retorna um carrossel semelhante ao carrossel de recomendações, a única diferença é que ele não gira automaticamente para o usuário poder analisar melhor os resultados, a navegação é feita arrastando ou clicando nos botões para navegar entre os itens.
3. ## Janela flutuante com detalhes dos itens
1. A janela flutuante trás informações como: nome da mídia, tipo de mídia, gênero da mídia, ano de lançamento, sinopse (se disponível), trailers (se disponível), provedores para assistir (se disponível) - ex: amazon, netflix, etc.
1. Janela flutuante feita com `react-modal-dialog` e devido as restrições dos frames com link por variáveis, player de vídeo feito com `react-player`.
2. Para fechar a janela flutuante, basta clicar no botão fechar, pressionar a tecla ESC ou clicar fora da janela.
3. Os provedores para assistir estão separados por streaming, aluguel e compra. Eles também estão filtrados para mostrarem somente opções que tenham conteúdo dublado ou legendado em pt-BR.
4. ## Variação de Temas - Escuro (padrão) e Claro
1. Botão de switch de temas, que altera a imagem de background, a cor do background, a cor das sombras, a cor das fontes, a cor das bordas, etc.
1. Feito com ThemeProvider do `styled-components`.
2. Utilizado um hook personalizado para switch dos temas e outros componentes que precisam de controles true/false.
5. ## Responsivo
1. Todos os itens foram trabalhados de forma responsiva, se adaptando a desktops e dispositivos móveis.
1. Dentro do GlobalStyles, foram configuradas duas classes globais `apenas-desktop` e `apenas-mobile`, ao colocar essa classe em um item ele irá ser um item que renderiza somente em um determinado tipo de resolução.
# Imagens do Projeto
## Desktop










## Mobile










# Sobre a Dev
Olá! Sou Letícia Palaro, uma mulher entusiasmada e determinada, formada em Análise e Desenvolvimento de Sistemas e atualmente cursando uma pós-graduação em Gestão de Projetos.
Desde a minha infância, fui cativada pela tecnologia. Tudo começou com o incrível universo dos jogos, onde embarquei em emocionantes aventuras com o meu querido Nintendo64. À medida que o tempo passava, acompanhei a evolução tecnológica, migrando para os jogos de computador e experimentando novas possibilidades.
Sou movida pela paixão de aprender constantemente, e essa mentalidade me impulsiona a me concentrar ao máximo nas minhas atividades.
Com determinação e entusiasmo, estou pronta para enfrentar os desafios futuros e contribuir para um mundo impulsionado pela tecnologia.
# Contato
<div align="center">
<img height="200vh" src="https://github.com/leticiapalaro/leticiapalaro/blob/main/ok.gif?raw=true"><br> <a href="https://www.linkedin.com/in/leticiapalaro/" target="_blank"><img height="25vh" src="https://github.com/leticiapalaro/leticiapalaro/blob/main/linkedin.png?raw=true" target="_blank"></a>
<a href = "mailto:leticiapalaro@live.com"><img height="25vh" src="https://github.com/leticiapalaro/leticiapalaro/blob/main/contato.png?raw=true" target="_blank"></a><br>
</div>
| Aplicação web no formato SPA, feita com React alimentada com a API do TMDB (The Movie Data Base). A aplicação possui recomendações de filmes/séries e uma busca por algum item específico. | alura,alura-latam,aluraflix,challengealura4edicao,front-end,javascript,material-ui,oracle,oracle-one,oracle-one-next-education | 2023-06-10T15:32:19Z | 2023-06-15T20:27:00Z | null | 1 | 0 | 11 | 0 | 1 | 3 | null | null | JavaScript |
JLpensador/Jogo_da_Memoria | main | # Jogo_da_Memoria
Um jogo da Memória com tema de carros, incluindo carros das marcas: Nissan ( Skyline r34), Koenigsegg (One), Ferrari (F40) , Lamborghini (Murcielago), Toyota (Ae86), Chevrolet (Corvette c5 z06), Mazda (rx7 FD3s), Subaru (Impreza), McLaren (F1), Ford (Gt), Audi (Quattro), Dmc (Delorean), Honda (Nsx), Mitsubishi (Evolution) e a lendária McLaren MP4/5
<br> <br>





| Um jogo da Memória com tema de carros, incluindo carros das marcas: Nissan ( Skyline r34), Koenigsegg (One), Ferrari (F40) , Lamborghini (Murcielago), Toyota (Ae86), Chevrolet (Corvette c5 z06), Mazda (rx7 FD3s), Subaru (Impreza), McLaren (F1), Ford (Gt), Audi (Quattro), Dmc (Delorean), Honda (Nsx), Mitsubishi (Evolution) e a lendária McLaren MP4/5 | css,css3,html,html-css-javascript,html5,javascript,html-css | 2023-06-25T23:39:50Z | 2023-10-25T15:30:43Z | null | 1 | 0 | 6 | 0 | 0 | 3 | null | null | JavaScript |
melihsahtulek/react-multi-select | master | null | An example Multi Select Component With React. | contextapi,css,javascript,react,typesc,vitejs,multiselect,multiselect-drodpdown,multiselectdropdown,reactmultiselect | 2023-06-21T18:54:05Z | 2023-08-08T21:38:00Z | null | 1 | 0 | 13 | 0 | 0 | 3 | null | null | TypeScript |
ISO53/Backgammon-Game-Server-and-Client | master | # Backgammon Game Server and Client
This project consists of a Java server that provides a multiplayer Backgammon game functionality, allowing clients to connect to a room and engage in interactive gameplay, with the client-side implemented using Electron.js.
## How to Run?
To set up and run the backgammon game application with a Java backend server and Electron.js frontend, follow these steps:
1. Clone the repository or download the source code files from the project's GitHub repository.
2. Ensure that Java Development Kit (JDK) and Maven are installed on your system. If not, download and install them.
3. Open a terminal or command prompt and navigate to the backend server directory.
4. Build the Java backend server by running the following command:
```
mvn clean package
```
5. Once the build is successful, start the Java backend server by running the following command:
```
java -jar target/TavlaGameServer-1.0-SNAPSHOT
```
*The backend server will start running on a specified port, usually 8080.*
6. Open another terminal or command prompt and navigate to the Electron.js frontend directory.
7. Make sure Node.js and npm (Node Package Manager) are installed on your system. If not, download and install them.
8. Install the required dependencies by running the following command:
```
npm install
```
9. After the dependencies are installed, start the Electron.js frontend by running the following command:
```
npm start
```
*The Electron.js application will be launched, and you can now access the real-time chat application from the user interface.*
## Usage
### Server Usage
When all of these steps done correctly the program will display an ASCII art logo and prompt you to customize the server settings. You can choose to change the server address, maximum number of connections, and port number. Respond with `y` or `n` to indicate your preference. If you choose `n`, server will run locally on `localhost` or `127.0.0.1` server address with port number `8080` and a maximum number of connections set to `100`. If you choose `y` you should customize these yourself. Keep in mind that if you want to run this application on a cloud system like AWS you should use private IPv4 address as your server address but the frontend should use public IPv4 address to connect to server.
Once the settings are configured, you will be prompted to start the server by typing `start`. When you type `start` the server will start running and display a message confirming that it has started successfully.
> There may be some logical errors in the backgammon game engine that causes illegal moves.
### Client Usage
Type a user name and log in to start the game application. You can create a game room or join an existing room to play a game with someone. The pieces you can play will be highlighted green and if you click on those pieces you can see the locations you can play these pieces. You should `drag-and-drop` the pieces to move.
## How to Play Backgammon
If you want to learn more about how to play Backgammon you can click [here](https://www.ymimports.com/pages/how-to-play-backgammon)!
## Requirements
* Java Development Kit (JDK)
* Maven
* Node.js and npm
## License
This project is licensed under the [GNU General Public License v3.0](LICENSE).
<br>
[](https://github.com/iso53)
| This project consists of a Java server that provides a multiplayer Backgammon game functionality, allowing clients to connect to a room and engage in interactive gameplay, with the client-side implemented using Electron.js. | chat,electronjs,game-server,java,javascript,multithreading,socket-programming,maven,npm | 2023-06-12T10:42:59Z | 2023-09-07T08:10:08Z | null | 1 | 0 | 8 | 0 | 0 | 3 | null | GPL-3.0 | Java |
smartman1234/chat-with-gpt | main | # ExtraGPT
ExtraGPT is an open-source, unofficial ChatGPT app with extra features and more ways to customize your experience. It connects ChatGPT with ElevenLabs to give ChatGPT a realistic human voice.
Try out the hosted version at: https://www.chatwithgpt.ai
Or [self-host with Docker](#running-on-your-own-computer).
Powered by the new ChatGPT API from OpenAI, this app has been developed using TypeScript + React. We welcome pull requests from the community!
https://user-images.githubusercontent.com/127109874/223613258-0c4fef2e-1d05-43a1-ac38-e972dafc2f98.mp4
## Features
- 🚀 **Fast** response times.
- 🔎 **Search** through your past chat conversations.
- 📄 View and customize the System Prompt - the **secret prompt** the system shows the AI before your messages.
- 🌡 Adjust the **creativity and randomness** of responses by setting the Temperature setting. Higher temperature means more creativity.
- 💬 Give ChatGPT AI a **realistic human voice** by connecting your ElevenLabs text-to-speech account, or using your browser's built-in text-to-speech.
- 🎤 **Speech recognition** powered by OpenAI Whisper.
- ✉ **Share** your favorite chat sessions online using public share URLs.
- 📋 Easily **copy-and-paste** ChatGPT messages.
- ✏️ Edit your messages
- 🔁 Regenerate ChatGPT messages
- 🖼 **Full markdown support** including code, tables, and math.
- 🫰 Pay for only what you use with the ChatGPT API.
## Bring your own API keys
### OpenAI
To get started with ExtraGPT, you will need to add your OpenAI API key on the settings screen. Click "Connect your OpenAI account to get started" on the home page to begin. Once you have added your API key, you can start chatting with ChatGPT.
Your API key is stored only on your device and is never transmitted to anyone except OpenAI. Please note that OpenAI API key usage is billed at a pay-as-you-go rate, separate from your ChatGPT subscription.
### ElevenLabs
To use the realistic AI text-to-speech feature, you will need to add your ElevenLabs API key by clicking "Play" next to any message.
Your API key is stored only on your device and never transmitted to anyone except ElevenLabs.
## Running on your own computer
To run on your own device, you can use Docker:
```
docker run -v $(pwd)/data:/app/data -p 3000:3000 ghcr.io/cogentapps/chat-with-gpt:release
```
Then navigate to http://localhost:3000 to view the app.
### Store your API keys on the server
For convenience, you can store your API keys on your computer instead of entering them in the browser.
_Warning:_ Be very careful doing this if anyone else has access to your self-hosted version of the app. They will be able to use the app through your API key as well.
Create a file called `config.yaml` in your `data` folder with the following contents:
```
services:
openai:
apiKey: (your api key)
elevenlabs:
apiKey: (your api key)
```
and restart the server. Login is required.
## Updating
```
docker pull ghcr.io/cogentapps/chat-with-gpt:release
```
## License
ExtraGPT is licensed under the MIT license. See the LICENSE file for more information.
| About ExtraGPT project use with openai, GPT 4 and Whisper API | chatbot,chatgpt,gpt,javascript,whisper | 2023-06-26T22:39:25Z | 2023-06-19T15:22:01Z | null | 1 | 0 | 143 | 0 | 1 | 3 | null | MIT | TypeScript |
abdalazard/PortfolioCreator | main | 
This project is a PHP-based portfolio creator that stores standardized data in a MySQL database. Additionally, it provides users with the ability to create their own custom templates.
## Current Project Status
- ~~**Step 1 Completed:** Implementation of the portfolio builder.~~
- ~~**Step 2 Completed:** Currently working on the portfolio editing feature and deletion option.~~
- ~~**Step 3 In Progress:** Developing the template system and the ability to select different styles.~~
- ~~**Step 4 :** Testing - Working at~~
- ~~**Step 5 :** Update user data modal.~~

## Contributions
This project is open source, and contributions are highly welcome! If you have ideas, suggestions, or corrections, feel free to [open an issue](https://github.com/abdalazard/PortfolioCreator/issues/new) or submit a [pull request](https://github.com/abdalazard/PortfolioCreator/compare).
## Technologies Used
- **Backend:** PHP
- **Frontend:** jQuery
- **Database:** MySQL
## How to Contribute
1. Fork the repository
2. Create a branch for your contribution (`git checkout -b new-feature`)
3. Make desired changes and commit (`git commit -m 'Adding new feature'`)
4. Push to the branch (`git push origin new-feature`)
5. Open a [pull request]((https://github.com/abdalazard/PortfolioCreator/compare)).
6. Create a .env file. In terminal line, write: ```touch db/.env```. Now you'll find the .env inside of db/ folder.
7. **Create a empty database** for this project and then fill up the .env file with your database information:
```
PROJECT_NAME=my-project-name
DB_HOST=localhost
DB_USERNAME=root
DB_PASSWORD=mypassword
MY_PORTFOLIO_NAME=mydatabase
MY_PORTFOLIO_PAGE=https:my-website.com
```
8. In terminal, install all dependencies: ```composer install```
9. For the last, in terminal command line you need to write the next command line for create your user access: ```php migrate.php```
I appreciate your contributions in advance!
Default user:
```
Login: admin
Default password: 123
```
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Este projeto é um criador de portfolios desenvolvido em PHP que registra dados padronizados em um banco de dados MySQL. Além disso, oferece ao usuário a capacidade de criar seus próprios templates personalizados.
## Estado Atual do Projeto
- ~~**Fase 1 Concluída:** Implementação do construtor de portfolios.~~
- ~~**Fase 2 Concluída:** Atualmente trabalhando na funcionalidade de edição de portfolios e na opção de exclusão.~~
- ~~**Fase 3 Em andamento:** Desenvolvimento do sistema de templates e a capacidade de selecionar diferentes estilos.~~
- ~~**Fase 4 :** Testando até agora - Em andamento~~
~~- **Fase 5 :** Modal de atualização de dados do usuário.~~

## Contribuições
Este projeto é de código aberto e contribuições são muito bem-vindas! Se você tem ideias, sugestões ou correções, sinta-se à vontade para [abrir uma issue](https://github.com/abdalazard/PortfolioCreator/issues/new) ou enviar um [pull request](https://github.com/abdalazard/PortfolioCreator/compare).
## Tecnologias Utilizadas
- **Backend:** PHP
- **Frontend:** jQuery
- **Banco de Dados:** MySQL
## Como Contribuir
1. Faça um fork do repositório
2. Crie um branch para sua contribuição (`git checkout -b nova-feature`)
3. Faça as mudanças desejadas e faça commit (`git commit -m 'Adicionando nova feature'`)
4. Faça push para o branch (`git push origin nova-feature`)
5. Abra um [pull request](https://github.com/abdalazard/PortfolioCreator/compare).
6. Crie um arquivo .env. Digite no terminal: ```touch db/.env```. Agora você encontrará o arquivo env dentro da pasta db/
7. Crie um banco de dados vazio para este projeto e então preencha o arquivo .env com os dados sobre o banco criado.
```
PROJECT_NAME=nome-do-meu-projeto
DB_HOST=localhost
DB_USERNAME=root
DB_PASSWORD=minhasenha
MY_PORTFOLIO_NAME=meubancodedados
MY_PORTFOLIO_PAGE=https:meu-site.com
```
8. Ainda no terminal, instale todas as dependências do projeto: ```composer install```
9. Por último, você precisa escrever no terminal o seguinte código para criar seu usuário padrão de acesso e uso: ```php migrate.php```
Usuário Padrão:
```
Login: admin
Default password: 123
```
Agradeço antecipadamente por suas contribuições!
| Portfolio creator, based in PHP, jQuery and MySQL | css,html,javascript,mysql,php,jquery | 2023-06-15T00:32:38Z | 2024-02-17T23:52:02Z | null | 1 | 35 | 236 | 0 | 0 | 3 | null | null | PHP |
MihirRajeshPanchal/codelinelogger | main | # CodeLineLogger VS Code Extension
<p align="center">
<img src="assets/logo-dark.png" alt="CodeLineLogger Icon" width="200">
<br>
CodeLineLogger
</p>
Welcome to the CodeLineLogger VS Code Extension! This extension enhances your coding experience by allowing you to seamlessly add line logging statements to your code in various programming languages.
<p align="center">
<img src="assets/CodeLineLogger.gif" alt="CodeLineLogger Icon" width="1000">
<br>
Working
</p>
## Features
- **Effortless Line Logging:** With a simple keyboard shortcut, you can wrap the selected line of code in a log statement, making debugging and analysis easier.
- **Multi-Language Support:** CodeLineLogger supports multiple programming languages, including JavaScript, Python, Java, C#, Ruby, PHP, Go, Swift, Kotlin, C/C++, Rust, TypeScript, Lua, PowerShell, and Perl.
- **Automatic Formatting:** The extension ensures that the log statement retains the original line's indentation, preserving code readability.
- **Smart Log Statements:** Depending on the language and context, CodeLineLogger intelligently adds log statements specific to each language, such as `console.log` in JavaScript, `print` in Python, or `System.out.println` in Java.
- **Selective Logging:** CodeLineLogger detects if the selected line is a function or object and adjusts the log statement accordingly, omitting quotes for non-string values.
- **Semicolon Handling:** The extension takes care of adding or omitting semicolons at the end of log statements based on the language's syntax conventions.
## Installation
1. Launch Visual Studio Code.
2. Open the Extensions view by clicking on the square icon in the left sidebar or by pressing `Ctrl+Shift+X` (`Cmd+Shift+X` on macOS).
3. Search for "CodeLineLogger" in the Extensions Marketplace.
4. Click on the "Install" button for the CodeLineLogger VS Code Extension.
5. Once installed, click on the "Reload" button to activate the extension.
## Usage
To wrap a selected line with a log statement using CodeLineLogger, follow these steps:
1. Select the desired line(s) in the editor.
2. Press `Ctrl+.` (`Cmd+.` on macOS) to wrap the selected line with a log statement.
3. CodeLineLogger will automatically add the appropriate log statement for the selected programming language, including proper formatting and context-aware behavior.
## Website
Please do visit our website for more information at [CodeLineLogger](https://codelinelogger.netlify.app/) <br>
Docker Repository [Docker](https://hub.docker.com/r/mihir5400/codelinelogger-extension)
## Feedback and Contributions
Feedback and contributions are highly appreciated! If you encounter any issues, have suggestions for improvements, or would like to contribute to the project, please visit the [GitHub repository](https://github.com/MihirRajeshPanchal/codelinelogger) for the CodeLineLogger VS Code Extension.
## License
This extension is released under the [MIT License](LICENSE).
## Credits
The CodeLineLogger extension was created by [Mihir Panchal](https://github.com/MihirRajeshPanchal). Special thanks to the following contributors for their valuable input and support.
<p align="start">
<a href="https://github.com/MihirRajeshPanchal/codelinelogger/graphs/contributors">
<img src="https://contrib.rocks/image?repo=MihirRajeshPanchal/codelinelogger"/>
</a>
</p>
Thank you for choosing the CodeLineLogger VS Code Extension! We hope you find it useful and enjoy enhancing your debugging and analysis capabilities with seamless line logging. If you have any questions or need assistance, feel free to reach out. Happy coding!
| A VS Code extension that enables seamless line logging for multiple programming languages https://codelinelogger.netlify.app/ | c,cpp,csharp,go,java,javascript,kotlin,lua,perl,php | 2023-06-17T05:46:29Z | 2024-03-05T14:09:21Z | 2023-06-18T11:03:34Z | 3 | 2 | 29 | 1 | 1 | 3 | null | MIT | JavaScript |
achingachris/fetch-and-get | main | # FETCH AND GET
## Dummy JSON Server
## APIs in Python
## APIs in JavaScript | null | javascript,python | 2023-06-29T21:48:01Z | 2023-12-15T14:37:07Z | null | 1 | 1 | 19 | 0 | 2 | 3 | null | null | Jupyter Notebook |
raxitamathukiya/Timewizard-Online-Appointment-Booking-Website | main | # TimeWizard
Website detail:To schedule a meeting, simply click the 'Schedule Meeting' button below and choose a convenient date and time from our available options. We offer flexible meeting arrangements, including in-person, online video calls, and phone meetings.
You can see the landing page screenshot below
# Deployed Link :https://timewizard1.netlify.app/

You can see the Login page screenshot below

You can see the Registration page screenshot below

You can see the Resources page screenshot below

You can see the Contect Form page screenshot below

You can see the Calender page screenshot below

You can see the UserConform page screenshot below

You can see the Appointment Conform page screenshot below

| To schedule a meeting, simply click the 'Schedule Meeting' button below and choose a convenient date and time from our available options. We offer flexible meeting arrangements, including in-person, online video calls, and phone meetings. | css,expressjs,html,javascript,mongodb,nodejs,nodemailer,outh | 2023-06-13T08:29:24Z | 2023-09-13T14:31:29Z | null | 4 | 25 | 80 | 1 | 3 | 3 | null | null | HTML |
nitishkumar31/imdb-lite | main | # IMDb Clone
This project is a web application that utilizes the power of vanilla JavaScript to provide a seamless user experience. The main feature of the app is its ability to search for movie and provide a trailer of that movie using the tmdb API and youtube API. APIs return a variety of data related to the searched movie, such as movie title, year, and other important information. The app then displays this information in an easy-to-read format, allowing users to quickly find the movie details they are looking for to watch.
In addition to the search feature, the app also includes the ability for users to view details of the selected movie. This includes a more in-depth look at the movie's details with a trailer. Users can also mark their favorite movie for easy access in the future.
Overall, this project demonstrates your skills in working with APIs, JavaScript, and web development in general. The use of vanilla JavaScript allows for a lightweight and fast-performing application, without the need for any additional JavaScript frameworks.
## Demo
Check out the live demo of the application at https://nitishkumar31.github.io/imdb-clone/
## Key Features
- Search movies by name and can see ratings and the release date
- Auto sugestion on pressed keyword
- Save favrouite movies for future use
- Ability to restore saved movies even after reopening the browser
- Can watch trailer of the particular movie in the movie section
## Getting Started
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
### Prerequisites
- A web browser (e.g. Google Chrome, Firefox, Safari)
- An internet connection
- A code editor (e.g. VS Code, Atom)
### Installing
1. Clone or download the repository to your local machine
2. Open the project in your code editor
3. Open the index.html file in your web browser to run the app
## Built With
- HTML
- CSS
- JavaScript
## Author
- [@nitishkumar31](https://github.com/nitishkumar31)
| IMDb clone using vanilla JavaScript, which gives ratings of the latest movies | css,html,javascript | 2023-06-17T20:10:33Z | 2023-06-17T20:53:51Z | null | 1 | 0 | 9 | 0 | 0 | 3 | null | null | HTML |
BlakvGhost/WebP2MS | main | # WebP2MS
WebP2MS (Web Platform for Managing and Monitoring Schedules) est une application web de gestion des emplois du temps en temps réel pour les établissements d'enseignement supérieur ou secondaire.
[<img alt="Deployed with FTP Deploy Action" src="https://img.shields.io/badge/Deployed With-FTP DEPLOY ACTION-%3CCOLOR%3E?style=for-the-badge&color=2b9348">](https://github.com/SamKirkland/FTP-Deploy-Action)
## Fonctionnalités
- Gestion des enseignants, des salles de cours et de la masse horaire [fait par les Coordonnateurs de formation]
- Planification des emplois de temps [fait par les Coordonnateurs de formation]
- Consultation des emplois du temps publiés [par les étudiants]
- Capacité de chatter sur un emploi du temps entre les enseignants et l'administration
- Envoi des emails sur divers événements(ajout ou modification d'un emploi du temps) à tout les acteurs concernés.
- Capacité d'installer l'application sur smartphone et sur PC en tant que application PWA
## DEMO
Vous pouvez tester la démo de l'application sur la [version en ligne](https://webp2ms.kabirou-alassane.com) avec ce compte administrateur :
- Email : exemple@exemple.com
- password : passme
Pour les autres types de comptes (étudiant, professeur) veuillez les créés respectivement à partir du formulaire d'inscription ou sur le dashboard en se connectant en tant que administrateur.
## Tech Stack
**Client:** HTML5, CSS3, Bootstrap 5, VueJS
**Server:** Django, MySQL
## License
Ce projet est distribué sous la licence
[MIT](https://choosealicense.com/licenses/mit/).
## Capture d'écran


| Application web de gestion des emplois du temps en temps réel pour les établissements d'enseignement supérieur ou secondaire. | javascript,timetable-management,webapp,django-application | 2023-06-11T13:26:25Z | 2024-05-17T21:07:42Z | null | 6 | 11 | 216 | 0 | 1 | 3 | null | MIT | JavaScript |
otmanTR/nice-car-front-and | development | # 📗 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)
- [❓ FAQ](#faq)
- [📝 License](#license)
# 📖 Nice Car Renta Application <a name="about-project"></a>
> This is the Front-end of Nice Car Rental Application that allows users to reserve a car, add a new car or delete an existing one.
## 🛠 Built With <a name="built-with"></a>
- [JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript)
- [ReactJs](https://react.dev/)
- [Redux](https://redux.js.org/)
### Key Features <a name="key-features"></a>
- See various car models
- Reserve cars
- Add cars
- Delete cars
### Back End App
Click [here](https://github.com/otmanTR/nice-car-back-and) to acess the backend app that was built with ruby on rails.
### Live Demo
- To see the live demo, you can visit the links below:
- [Live](https://singular-speculoos-77f925.netlify.app)
### API Documentation
- Check [swagger documentation](https://car-rental-j96f.onrender.com/api-docs/index.html)
### Kanban Board
- [Link to kanban board](https://github.com/otmanTR/nice-car-back-and/projects/2)
- Our team consist of 4 members:
[@burakotman](https://github.com/otmanTR)
[@jodavid444]((https://github.com/jodavid444))
[@alicemirigo]((https://github.com/alicemirigo92))
[@becky](https://github.com/Becky449)
### Intial state 👇
<img src="/src/images/initial state.jpg" alt="Intial-state-img">
### After 1 week iteration 👇
<img src="/src/images/week 1 iteration.jpg" alt="week-1-iteration-img">
### Completed 👇
<img src="/src/images/week 2 iteration.jpg" alt="week-2-iteration-img">
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 💻 Getting Started <a name="getting-started"></a>
To get a local copy up and running, follow these steps.
### Prerequisites
In order to run this project you need to install these prerequisites:
- If you're running on Windows you can download the prerequisites from the links down below:
[Nodejs](https://nodejs.org/en)
[Git](https://git-scm.com/)
If you're running on Linux follow these steps down below:
- Install git.
``` sh
sudo apt install git
```
- Install nodejs and npm.
``` sh
sudo apt install nodejs
```
### Setup
- First Clone this repository to your desired folder by using the command line:
run this commands:
```sh
git clone https://github.com/otmanTR/nice-car-front-and.git
```
### Install
- Install all the dependencies with the following command:
```sh
npm install
```
### Usage
- Create an .env file with the following:
``` sh
REACT_APP_BASE_URL=https://nice-car-back-and.onrender.com/
```
- To run the project, execute the following command:
``` sh
npm start
```
### Run Tests
To run test execute the following command:
```sh
npm run test
```
## Authors <a name="authors"></a>
👤 **Joseph David**
- GitHub: [@jodavid444](https://github.com/jodavid444)
- Twitter: [@jodavid444dave](https://twitter.com/jodavid444dave)
- LinkedIn: [@joseph-david](https://www.linkedin.com/in/joseph-david-/)
👤 **Recep Burak Otman**
- GitHub: [@otmanTR](https://github.com/otmanTR)
- Twitter: [@hotumanzade](https://twitter.com/hotumanzade)
- LinkedIn: [@burakotman](https://www.linkedin.com/in/joseph-david-/)
👤 **Alice Mirigo**
- GitHub: [@alicemirigo92](https://github.com/alicemirigo92)
- Twitter: [@GathoniMirigo](https://twitter.com/GathoniMirigo)
- LinkedIn: [@alicemirig](https://www.linkedin.com/in/alice-mirigo/)
👤 **Rebbeca Nabwire**
- GitHub: [@Becky449](https://github.com/Becky449)
- LinkedIn: [@rebbeca nabwire](https://www.linkedin.com/in/rabeccanabwire/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
- [ ] **[Add rating system]**
- [ ] **[Update car details]**
- [ ] **[Filter user by their role]**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🤝 Contributing <a name="contributing"></a>
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](../../issues/).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## ⭐️ Show your support <a name="support"></a>
If you like this project please leave a star. Thank 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 the great project idea.
- Unsplash for providing content related free pictures.
- All Thanks to [Murat Korkmaz](https://www.behance.net/muratk) on Behance. For the original Design [guidelines](https://www.behance.net/gallery/26425031/Vespa-Responsive-Redesign)
- Thanks to my teammates, learning and coding 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>
| Nice Car is an application which you can rent cars, add cars and delete the cars. For front end used React, for back and use Postgresql and Ruby on Rails | css,javascript,postgresql,reactjs,ruby-on-rails | 2023-06-15T06:33:16Z | 2023-07-12T08:35:59Z | null | 4 | 21 | 104 | 0 | 3 | 3 | null | null | JavaScript |
jony0418/OptiCrew | main |
# OptiCrew :people_holding_hands:
Welcome to OptiCrew!!!
👥 OptiCrew is the Human Resources software that simplifies all your processes.
🖇️ Centralize, automate, and integrate your Human Resources processes on a platform where you interact with your employees.
🗂️ Don't waste time searching for paper files or outdated spreadsheets.
💵 Grow your business and streamline your human operations, from tracking incidences, vacation, absences to team's payroll.
🏅 OptiCrew is easy-to-use software that your team will love
## Key Features :key:
1. **Easy-to-use Interface**: Our design principles are rooted in simplicity and efficiency, making navigation and functionality as straightforward as possible.
2. **Smooth User Experience**: We've put a lot of thought into the user journey to ensure seamless transitions and interactions.
3. **Fast and Efficient**: Built with performance in mind, OptiCrew promises a fast, lag-free experience.
## User Acceptance Criteria :clipboard:
### For Admins
- Easily add, update, and remove employees.
- Generate comprehensive reports.
- Set and manage roles and permissions for employees.
- Handle payroll and other HR functions.
### For Employees
- Easy access to personal profiles.
- Smooth interaction with HR processes including leave applications, benefits, etc.
- Access to necessary resources and company updates.
## Getting Started :runner:
To get a local copy up and running, follow these simple steps:
1. Clone the repo
```sh
git clone https://github.com/your_username_/Project-Name.git
```
2. Install NPM packages
```sh
npm install
```
3. Start the server
```sh
npm start
```
Now, navigate to `http://localhost:3001` on your browser to start exploring OptiCrew!
## Project Architecture :building_construction:
OptiCrew is built using Node.js with the Express.js framework for the backend. For the frontend, we're using Handlebars as our view engine. The application is organized as follows:
- `views`: This directory contains all the Handlebars templates.
- `routes`: This directory contains all the route handlers for the application.
- `public`: This directory contains all the public assets such as stylesheets, images, and client-side JavaScript.
We're using bcrypt for password hashing, providing basic security for user's data.
## Contact :email:
For any questions, feel free to reach out!
- Project Link:
https://github.com/jony0418
https://github.com/AlexTrejo92
https://github.com/ChemaKing13
https://github.com/3rikMtz
Enjoy using OptiCrew! :smiley:
| Welcome to OptiCrew!!! 👥 OptiCrew is the Human Resources software that simplifies all your processes. 🖇️ Centralize, automate, and integrate your Human Resources processes on a platform where you interact with your employees. | css,javascript,js,nodejs,nodemailer | 2023-06-16T02:34:51Z | 2023-06-28T01:18:57Z | null | 5 | 74 | 169 | 7 | 1 | 3 | null | null | JavaScript |
0xabdulkhalid/restaurant-page | main | 
# Junkier Foodies / Restaurant Page
- A single page web application, build during partial completion of Odin Project
- Goal is to build the entire site with JavaScript which is seperated as modules.
- The modules are further imported and bundled with `Webpack`
- Building this project helps me to understand the basic concepts of `Webpack` easily
- This project uses `npm` package manager, so make sure to install it.
<br>
### Installating Dependencies
```bash
npm install
```
### Building app from source
```bash
npm run build
```
<br>
---
$\textcolor{#2F81F7}{\textsf{🛈 NOTE}}$ : The `dist` can be found on branch `gh-pages` of this repository
| An assessment from Odin Project Curriculam | bundler,css,html,javascript,odin-project,webpack,js | 2023-06-20T04:50:31Z | 2023-06-20T06:40:10Z | null | 1 | 0 | 7 | 0 | 0 | 3 | null | MIT | JavaScript |
CoderCaleb/ChatVibe | main | ChatVibe ⭐️
=================
Discover a dynamic realm of real-time communication with our Chat Web App. Seamlessly join conversations, connect with others, and engage in interactive messaging like never before. This platform enables users to effortlessly join chats using unique chat codes, fostering a sense of community and ease of communication.
Check out the live version of ChatVibe: [ChatVibe Web App](https://chatvibe-app.netlify.app)
## Table of Contents
- [About](#screenshots)
- [Features](#features)
- [Getting Started](#getting-started)
- [Technologies Used](#technologies-used)
- [Communication](#communication)
## Screenshots






## Features
- **Real-time Messaging:** Enjoy seamless communication with other users through real-time messaging.
- **Message Threading (Reply):** Engage in threaded conversations by replying to specific messages, enhancing the organization and context of discussions.
- **Group Admin Functionality:** Empower selected users with admin privileges, allowing them to remove members, promote others to admin status, and manage the group's activities effectively.
- **Unread Message Count:** Stay informed with the number of unread messages displayed, enabling users to catch up easily on new content.
- **Leave Chat:** Have the flexibility to exit a chat whenever desired, ensuring users are in control of their participation.
- **Direct Message (DM) Creation:** Create one-on-one DM chats effortlessly by using the other party's username, streamlining the process for initiating private conversations.
- **Group Chat Profile Customization** Personalize group chat profile pictures by choosing emojis that represent the chat's identity.
- **Edit About Me:** Modify your profile's "About Me" section, allowing users to share more about themselves and their interests.
- **Admin Privileges for Group Chats:** Group admins possess the authority to remove participants from the chat group, ensuring a safe and respectful environment.
- **Group Admin Management:** Admins can promote or demote participants to/from admin status, optimizing group dynamics and responsibilities.
- **Custom Profile Pictures**: Users have the ability to upload their own profile pictures. Whether it's an avatar, selfie, or anything in between, users can express themselves visually.
## Getting Started
To set up and run the ChatVibe project on your local machine, follow these steps:
- **Clone the Repository:**
```bash
git clone https://github.com/CoderCaleb/ChatVibe.git
```
- **Navigate to the Project Directory:**
```bash
cd ChatVibe
```
- **Install Dependencies:**
```bash
npm install
```
- **Configure Firebase:**
- Create a Realtime Database and set up User Authentication (choose email and password) and Storage in your Firebase project.
- Download the template JSON file provided in ./chatvibe_final.json and import it into your Firebase Realtime Database.
- Copy the template for the Firebase Realtime Database rules in ./firebase_rules.json and paste it into your Firebase Realtime Database Rules.
- Copy the template for the Firebase Storage rules in ./storage_rules.txt and paste it into your Firebase Storage Rules.
- **Add Firebase Config:**
- Get the Firebase configuration object (SDK config) from your Firebase project.
- Open src/App.js and paste the Firebase configuration object in the "// Paste your Firebase config SDK here" part.
- **Run the Application:**
```bash
npm start
```
Feel free to reach out if you have any questions or encounter any issues during the setup process. We're here to help!
For bug reports, feature requests, or any other discussions related to the project, you can also use our GitHub Issues and Discussions boards.
Happy chatting! 🚀
## Technologies Used
- **React:** JavaScript library for building user interfaces.
- **Tailwind CSS:** Utility-first CSS framework for styling the user interface.
- **Firebase Realtime Database:** Backend service for real-time data synchronization and user authentication.
- **Firebase Authentication**: Secure user authentication and authorization for seamless access to app features.
- **Firebase Storage**: Cloud storage solution for efficiently storing and managing files, like user profile pictures.
## Contributing
Thank you for considering contributing to ChatVibe! We appreciate any contributions, whether they're large features, bug fixes, or improvements to code readability. Please keep in mind that the codebase might currently be a bit messy, but your contributions to enhance code quality are highly welcomed!
Before you proceed, here are a few things to keep in mind:
- The codebase might be a bit messy at the moment. We welcome your help in enhancing the code's organization and readability.
- All contributions will be thoroughly reviewed. This is to ensure that we maintain the quality and consistency of the project.
- Your contributions, no matter the size, are valuable to us. Every contribution helps us make ChatVibe better.
To get started:
1. **Fork this repository.**
2. **Create a new branch for your feature/fix:** `git checkout -b feature/your-feature-name`
3. **Make your changes and commit them:** `git commit -m 'Add some feature'`
4. **Push to your branch:** `git push origin feature/your-feature-name`
5. **Open a pull request against the `main` branch** of this repository.
We're excited to see your contributions and appreciate your help in making ChatVibe an even better platform for users to connect and communicate!
## Communication
Feel free to reach out if you have any questions, suggestions, or feedback regarding the **ChatVibe** project. We value your input and are eager to engage in meaningful conversations.
- **Issue Tracker:** If you come across any bugs, issues, or feature requests, please open an issue on our [GitHub repository](https://github.com/CoderCaleb/ChatVibe/issues). This allows us to track and address your concerns promptly.
- **Discussions:** Join the conversation on our [Discussions board](https://github.com/CoderCaleb/ChatVibe/discussions). Feel free to ask questions, share your thoughts, or engage with the community.
We believe that effective communication is essential for the growth and success of the project. We're excited to hear from you!
⚠️ **Note:** The codebase of this project is currently quite messy, as it was developed over a short period and only by one person. We appreciate your understanding and patience as we work towards improving its structure and readability. I would really appreciate help cleaning up the codebase.
Feel free to explore the features and start chatting with other users!
Any contributions, large or small, major features, bug fixes, are welcomed and appreciated
## About the Author
Hello there! I'm the developer behind ChatVibe. This project represents my first dive into the world of web development. Despite being fairly new to React, GitHub, and all things coding, I've poured my heart into ChatVibe over the course of about 1.5 months.
As a solo developer, I've navigated through challenges and learning curves. While I'm not an expert, I'm excited to share this platform that I've put together. ChatVibe aims to provide a seamless messaging experience and foster connections.
Your feedback and contributions are incredibly valuable to me. Let's make ChatVibe better together. Feel free to join in, suggest improvements, or just say hi!
Thanks for being a part of this journey with me. | "ChatVibe: Enhance your communication experience with our modern web chat application. Seamlessly engage in real-time messaging through a user-friendly interface. Connect effortlessly with friends and loved ones! " | communication,group-chat,javascript,open-source,react,react-router,reactjs,realtime-database,tailwindcss,webdevelopment | 2023-06-24T08:36:37Z | 2023-10-24T11:58:03Z | null | 1 | 0 | 56 | 0 | 1 | 3 | null | MIT | JavaScript |
andrianarivo/covid-19-metrics | develop | <a name="readme-top"></a>
<div align="center">
<br/>
<h3><b>Covid-19 Metrics</b></h3>
</div>
<div align="center">
<img src="./destkop.JPG" alt="Screenshot 1" width="300" style="display: inline-block; margin-right: 10px;" />
<img src="country_breakdown.JPG" alt="Screenshot 1" width="300" style="display: inline-block; margin-right: 10px;" />
</div>
<!-- TABLE OF CONTENTS -->
# 📗 Table of Contents
- [📖 Covid-19 Metrics](#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](#deployment)
- [👥 Authors ](#-authors-)
- [🔭 Future Features ](#-future-features-)
- [🤝 Contributing ](#-contributing-)
- [⭐️ Show your support ](#️-show-your-support-)
- [🙏 Acknowledgments ](#-acknowledgments-)
- [📝 License ](#-license-)
<!-- PROJECT DESCRIPTION -->
# 📖 Covid-19 Metrics <a name="about-project"></a>
**Covid-19 Metrics** is a React-based web application that provides real-time information about the
number of active COVID-19 cases on each continent and allows users to explore further by displaying
the active cases for each country within a selected continent.
The primary objective of the "Covid-19 Metrics" app is to help people stay informed about the
COVID-19 situation across different continents and countries. By providing real-time data, the app
enables users to make informed decisions regarding travel plans, business operations, and general
safety measures.
## 🛠 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/">React.js</a></li>
<li><a href="https://styled-components.com/">Styled Components</a></li>
</ul>
</details>
<details>
<summary>API</summary>
<ul>
<li><a href="https://disease.sh/">Diseases.sh</a></li>
</ul>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **Real-Time Data**
- **Continent Overview**
- **Country Breakdown**
- **User-Friendly Interface**
- **Responsive Design**
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LIVE DEMO -->
## 🚀 Live Demo <a name="live-demo"></a>
- [Video presentation](https://www.loom.com/share/29a86f6742234a628d52fab2d3672f83?sid=2d776efe-947f-4a93-bd27-d1ee2ba5ec4e)
- [Live Demo Link](https://extraordinary-kitten-6a3f95.netlify.app/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- GETTING STARTED -->
## 💻 Getting Started <a name="getting-started"></a>
To get a local copy up and running, follow these steps.
### Prerequisites
In order to run this project you need:
- `NodeJS`
- `Code editor (VSCode)`
### Setup
Clone this repository to your desired folder:
```sh
cd my-folder
git clone https://github.com/andrianarivo/covid-19-metrics.git
```
### Install
Install this project with:
```sh
cd my-project
npm install
```
### Usage
To run the project, execute the following command:
```sh
npm start
```
### Run tests
To run tests, run the following command:
```sh
npm test
```
### Deployment
You can deploy this project using your own deployment solution (Netlify, Render, Gh-Pages)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 **Author1**
- GitHub: [@andrianarivo](https://github.com/andrianarivo)
- Twitter: [@dandrianarivo](https://twitter.com/dandrianarivo)
- LinkedIn: [andrianarivo](https://linkedin.com/in/andrianarivo)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- [ ] **Choosing theme**
<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/andrianarivo/covid-19-metrics/issues).
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- SUPPORT -->
## ⭐️ Show your support <a name="support"></a>
If you like this project consider giving a ⭐
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank the Microverse Community!
Original design idea by [Nelson Sakwa on Behance](https://www.behance.net/sakwadesignstudio).
<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 "Covid-19 Metrics" is a React-based web application that provides real-time information about the number of active COVID-19 cases on each continent and allows users to explore further by displaying the active cases for each country within a selected continent. | covid-19,javascript,reactjs,redux,redux-thunk | 2023-06-26T17:14:21Z | 2023-06-30T11:33:36Z | null | 1 | 1 | 22 | 0 | 0 | 3 | null | null | JavaScript |
Ysn4Irix/shrinker | main | <p align="center">
<img width="300px" src="https://res.cloudinary.com/ydevcloud/image/upload/v1685399080/YsnIrix/lsmcx9owkq68cw4qhuwz.svg" align="center" alt="screens" />
</p>
<br>
<p align="center">
<b>A full stack URL shortener web application with user authentication built with
</b>
</p>
<p align="center">
<a href="https://kit.svelte.dev">
<img width="100px" src="https://res.cloudinary.com/ydevcloud/image/upload/v1663804918/yassi/mxrjfvymnux04jhjwlh2.svg" align="center" alt="svelte" />
</a>
</a>
<a href="https://tailwindcss.com">
<img width="300px" src="https://res.cloudinary.com/ydevcloud/image/upload/v1660842725/yassi/dglubft3rg2iuh6fxsaf.svg" align="center" alt="tailwind" />
</a>
<a href="https://preline.co">
<img width="300px" src="https://res.cloudinary.com/ydevcloud/image/upload/v1685913498/YsnIrix/eppcq6spuxlainlyono3.svg" align="center" alt="pr" />
</a>
<a href="https://pocketbase.io">
<img width="300px" src="https://res.cloudinary.com/ydevcloud/image/upload/v1685915741/YsnIrix/nxonent0unhxsmsm45qa.svg" align="center" alt="pb" />
</a>
</p>
<br>
<p align="center">
<img src="https://res.cloudinary.com/ydevcloud/image/upload/v1685915350/YsnIrix/ayjp66iqmnaqhwvnm3ib.png" alt="screens" width="1000px" style="border-radius: 5px;">
</p>
<br>
**_I start learning the most beloved framework [Sveltekit](https://kit.svelte.dev) and that's what i'm using in the frontend_**
## ❯ Features
- Login/register with Google
- Login/register with Github
- Authentication using email/password with email verification
- Resetting the Password
- Create a short link and set an expire period to it (Optional)
- Get all links associated with the authenticated user
- Delete the short link
- Edit user profile (Profile Photo & Fullname)
- Edit user account (Changing email & username)
- Edit user security (Changing password & deleting user account)
- All User entries are server side validated using [Zod](https://zod.dev/)

## ❯ Getting Started
Live demonstration of the application available [Here](https://shrinker.ysnirix.xyz/)
- Download the [latest version of Pocketbase](https://pocketbase.io/docs/) and run the executable with `./pocketbase serve` or deploy it to a cloud provider
- Import collections from `pocketbase-collections.json` to your pocketbase instance found in this link: [http://localhost:8090/\_/?#/settings/import-collections](http://localhost:8090/_/?#/settings/import-collections).
- Register an app with your OAuth provider to acquire a `Client ID` and `Client Secret` :
(for Google, you can create a [Google App here](https://developers.google.com/identity/oauth2/web/guides/get-google-api-clientid)).
(for Github, you can create a [Github App here](https://docs.github.com/en/apps/oauth-apps/building-oauth-apps/authorizing-oauth-apps)).
From there, you should be able to set the `Redirect URL` (if applicable) of your OAuth App to `http://localhost:5173/auth/login`
- Register your app as an OAuth provider inside pocketbase (which can be accessed [here](http://localhost:8090/_/?#/settings/auth-providers) if you're working locally with the default PB host settings) or read the docs [here](https://pocketbase.io/docs/authentication/#oauth2-integration)
### Env
Rename the `.env.example` file in the root directory of the repo to `.env` and populate it with the following:
```bash
PUBLIC_POCKETBASE_URL="http://localhost:8090" # default
```
### Developing
Once you've cloned the project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
```bash
npm run dev
# or start and open the app in a new browser tab
npm run dev -- --open
```
### Building
```bash
npm run build
node build
```
> You can preview the built client app with `npm run preview`,This should _not_ be used to serve your app in production.
<br>

## ❯ About
<summary><strong>Contributing</strong></summary>
Pull requests and stars are always welcome. For bugs and features requests, [please create an issue](../../issues/new).

## ❯ License
Copyright © 2023-present, [Ysn4Irix](https://github.com/Ysn4Irix).
Released under the [MIT License](LICENSE).
| A full stack url shortener web application with user authentication built with SvelteKit and PocketBase as a BaaS. | javascript,pocketbase,preline,svelte,sveltejs,sveltekit,tailwindcss,url-shortener | 2023-06-21T21:21:50Z | 2023-06-26T14:40:49Z | 2023-06-26T14:40:49Z | 1 | 0 | 23 | 0 | 0 | 3 | null | MIT | Svelte |
amoskyalo/Katsura | main | # Katsura
A food delivery app built using React Native.




## Introduction
Welcome to Katsura. This is a mobile application built using React Native and Tailwind CSS. The app allows users to make orders for food of their choice.
## Feature
1. Browse: Users can explore a wide range of restaurants and their menus. They can filter and search for specific cuisines, dishes, or restaurants based on their preferences.
2. Order: Users can select items from the menu, customize their order (e.g., choose toppings, specify dietary preferences), and add items to their cart. They can also view the order summary before placing it.
3. Payment: The app supports secure payment methods, such as credit/debit cards, digital wallets, or cash on delivery. Users can securely complete their transactions within the app.
4. Track Order: Once an order is placed, users can track the status of their order in real time. They receive updates on the preparation, packaging, and delivery stages. Notifications keep them informed about estimated delivery times.
5. User Profiles: Users can create and manage their profiles within the app. They can save their delivery addresses, payment details, and favorite restaurants for a personalized experience.
## Technologies
These are the main technologies that I used. You can check the other dependencies in `package.json`.
1. React Native: A popular JavaScript framework for building native mobile applications.
2. Tailwind CSS: A utility-first CSS framework for rapidly building responsive user interfaces.
## Installation
1. Fork the project to your GitHub account
2. Clone the project to your local machine.
3. Navigate to your folder and run `npx expo install`
4. Start the development server: `npx expo start`. This command will launch the Expo development server and provide you with options to run the app on an emulator, physical device, or web browser.
## Contributing
Contributions to the Katsura App project are welcome! First, you can check all open issues and try to solve them ( there are a couple of pages that I haven't finished. I have opened issues for them and you can go ahead and attempt them ). If you encounter any bugs, have suggestions for improvements, or would like to add new features, please feel free to open an issue or submit a pull request. Here is the Figma file https://www.figma.com/file/MZ6SSGBeQv9xBGeO1TGC7q/Kilimanjaro?type=design&node-id=0-1&mode=design&t=i7BLeJmSAEhmvIar-0
## Acknowledgements
I want to acknowledge Vincent for agreeing to build the user interface for me. He is a talented UI/UX designer. You can get in touch with him here: vinniemioru@gmail.com
## Contacts.
If you encounter any problems, or you have a suggestion, please feel free to contact me at amoskyalo927@gmail.com.
| This is a food delivery app build using React Native | javascript,react,react-native,tailwind-css | 2023-06-27T16:08:14Z | 2024-01-04T17:53:44Z | null | 2 | 4 | 32 | 6 | 2 | 3 | null | null | JavaScript |
sousa-p/jogo-sociologia | main | # jogo-sociologia
Jogo realizado, para o trabalho de sociologia
## Link do jogo:
https://sousa-p.github.io/jogo-sociologia/
## Devs:
* Pedro Vintage - Programação
* Luiz Fiuza - Sprites
* Marlon Passos - Músicas
## Desktop -

## Mobile -

| Jogo realizado, para o trabalho de sociologia | game,javascript,vuejs | 2023-06-09T13:35:07Z | 2023-12-10T23:10:38Z | null | 3 | 0 | 28 | 0 | 0 | 3 | null | null | JavaScript |
merndev1101/CDK-TypeScript-project | main | # Welcome to your CDK TypeScript project
This is a project for CDK development with TypeScript.
The `cdk.json` file tells the CDK Toolkit how to execute your app.
## Useful commands
* `npm run build` compile typescript to js
* `npm run watch` watch for changes and compile
* `npm run test` perform the jest unit tests
* `cdk deploy` deploy this stack to your default AWS account/region
* `cdk diff` compare deployed stack with current state
* `cdk synth` emits the synthesized CloudFormation template
| This is a project for CDK development with TypeScript. | cdk,javascript,typescript | 2023-06-28T16:08:23Z | 2023-06-28T16:10:01Z | null | 1 | 0 | 1 | 0 | 0 | 3 | null | null | JavaScript |
BaseMax/JokeGraphQLTS | main | # Joke GraphQL API
This repository contains a GraphQL-based API project built with TypeScript and Apollo GraphQL. It provides various functionalities related to jokes, including retrieving jokes, filtering and ordering them, searching within jokes, adding new jokes, editing existing jokes, and deleting jokes. Additionally, the API supports user authentication for admin access, while allowing guest users to access most of the available queries. Users can also like jokes, add comments to jokes, retrieve all comments sorted by criteria, and admins have the ability to activate or deactivate comments. The project includes tests and can be deployed using Docker.
## Installation
Clone the repository:
```shell
git clone https://github.com/BaseMax/JokeGraphQLTS
cd JokeGraphQLTS
```
Install the dependencies:
```shell
npm install
```
## Usage
Configure the environment variables by creating a .env file in the project's root directory. You can use the .env.example file as a template.
Build the project:
```shell
npm run build
```
Start the server:
```shell
npm start
```
The API should now be accessible at http://localhost:4000.
## API Documentation
The API documentation can be accessed by visiting http://localhost:4000/graphql while the server is running. The documentation provides details about available queries, mutations, and their input/output types.
## Screenshots





## Authentication
The API supports user authentication using JSON Web Tokens (JWT). In order to perform admin actions, you need to authenticate as an admin user. Here's how you can obtain an access token:
- Make a mutations request to /graphql with valid login credentials.
- If the login is successful, you will receive a response containing an access token.
- Include the access token in the Authorization header of subsequent requests using the format: Bearer <access_token>.
Please note that admin authentication is required for mutations related to adding, editing, and deleting jokes, as well as managing comments.
## Queries
The following queries are available:
- `getAllJokes`: Retrieves all jokes.
- `getJokesByFilter`: Retrieves jokes based on specified filters (e.g., category, rating).
- `searchJokes`: Searches for jokes based on a provided query string.
- `getCommentsByJoke`: Retrieves all comments for a specific joke, sorted by specified criteria (e.g., newest, highest rated).
- `getHotJokes`: Retrieves the hottest jokes based on likes and comment activity.
- `getJokeById`: Retrieves a joke by its unique identifier.
- `getTopJokes`: Retrieves the top-rated jokes based on user ratings.
- `getRandomJoke`: Retrieves a random joke from the collection.
- `getUserLikedJokes`: Retrieves jokes that a specific user has liked.
Guest users can access all of these queries.
## Mutations
The following mutations are available:
- `addJoke`: Adds a new joke to the system. Requires admin authentication.
- `editJoke`: Edits an existing joke. Requires admin authentication.
- `deleteJoke`: Deletes a joke. Requires admin authentication.
- `likeJoke`: Likes a joke.
- `reportJoke`: Report a joke
- `addComment`: Adds a comment to a joke.
- `activateComment`: Activates a comment. Requires admin authentication.
- `deactivateComment`: Deactivates a comment. Requires admin authentication.
- `registerUser`: Registers a new user in the system.
- `loginUser`: Login user in system
- `rateJoke`: Rates a joke with a given score (e.g., 1-5 stars).
- `updateUserProfile`: Updates the profile information for a user.
- `deleteUser`: Deletes a user from the system.
- `addCategory`: Adds a new category for jokes.
- `editCategory`: Edits the details of an existing category.
- `deleteCategory`: Deletes a category from the system.
- `createTag`: create a new tag
- `addTagToJoke`: Adds a tag to a joke for better categorization.
- `removeTagFromJoke`: Removes a tag from a joke.
- `getPopularTags`: Retrieves the most popular tags used for jokes.
Please note that the likeJoke, addComment, activateComment, and deactivateComment mutations require user authentication.
## Subscriptions
The following subscriptions are available:
- `jokeAdded`: Real-time display of a new joke that adds to the system
## Testing
To run the tests, use the following command:
```shell
npm run test:e2e
```
This will execute the test suite and provide the test results.
## Deployment
To deploy the API using Docker, follow these steps:
Build the Docker image:
```shell
docker build -t joke-api .
```
Run the Docker container:
```shell
docker run -p 4000:4000 joke-api
```
Also you can run api and postgres with docker-compose:
```shell
docker compose up -d
```
The API will be accessible at http://localhost:4000 within the Docker container.
## Migration
integrates with prisma schema for data modeling in deveolpment stage:
```shell
npm run migrate:dev
```
production stage:
```shell
npm run migrate:prod
```
push current init migration:
```shell
npm run db:push
```
## Models
**Joke Model**
```typescript
interface Joke {
id: string;
text: string;
category: Category;
likes: number;
createdAt: Date;
updatedAt: Date;
comments: Comment[];
tags: string[];
}
```
**Comment Model**
```typescript
interface Comment {
id: string;
text: string;
user: User;
active: boolean;
createdAt: Date;
updatedAt: Date;
}
```
**User Model**
```typescript
interface User {
id: string;
username: string;
email: string;
password: string;
isAdmin: boolean;
likedJokes: Joke[];
createdAt: Date;
updatedAt: Date;
}
```
**Category Model**
```typescript
interface Category {
id: string;
name: string;
description: string;
createdAt: Date;
updatedAt: Date;
}
```
**Tag Model**
```typescript
interface Tag {
id: string;
name: string;
createdAt: Date;
updatedAt: Date;
}
```
**Rating Model**
```typescript
interface Rating {
id: string;
joke: Joke;
user: User;
score: number;
createdAt: Date;
updatedAt: Date;
}
```
**Like Model**
```typescript
interface Like {
id: string;
joke: Joke;
user: User;
createdAt: Date;
updatedAt: Date;
}
```
**TagCategory Model**
```typescript
interface TagCategory {
id: string;
tag: Tag;
category: Category;
createdAt: Date;
updatedAt: Date;
}
```
**UserProfile Model**
```typescript
interface UserProfile {
id: string;
user: User;
firstName: string;
lastName: string;
bio: string;
avatar: string;
createdAt: Date;
updatedAt: Date;
}
```
**Report Model**
```typescript
interface Report {
id: string;
joke: Joke;
user: User;
reason: string;
createdAt: Date;
updatedAt: Date;
}
```
**Admin Model**
```typescript
interface Admin {
id: string;
user: User;
createdAt: Date;
updatedAt: Date;
}
```
**Activity Model**
```typescript
interface Activity {
id: string;
joke: Joke;
comment: Comment;
user: User;
type: string; // e.g., "like", "comment", "rating"
createdAt: Date;
updatedAt: Date;
}
```
**Notification Model**
```typescript
interface Notification {
id: string;
user: User;
message: string;
read: boolean;
createdAt: Date;
updatedAt: Date;
}
```
Feel free to extend or modify these models based on the specific requirements and additional fields you may need for your Joke API.
## Contributing
Contributions to this project are welcome. Feel free to open issues and submit pull requests.
## License
This project is licensed under the GPL-3.0 License.
Copyright 2023, Max Base
| This repository contains a GraphQL-based API project built with TypeScript and Apollo GraphQL. It provides various functionalities related to jokes, including retrieving jokes, filtering and ordering them, searching within jokes, adding new jokes, editing existing jokes, and deleting jokes. Additionally, the API supports user authentication for adm | graphql,javascript,js,ts,typescript | 2023-06-26T05:46:15Z | 2024-03-29T11:09:32Z | null | 1 | 7 | 83 | 0 | 1 | 3 | null | GPL-3.0 | TypeScript |
yeyunwen/little | main | # little
Make a little progress every day
每天进步一点点
## 关于仓库
我是一名前端小白,我在学习的过程发现,如果光有输入没有输出,那么输入再多,学得再多都是白搭,而且这种学习模式效率很低。所以我希望能在输入的同时做到一定的输出,做到多学多练,每天进步一点点。
这个项目用于记录✍️ 我在学习前端的过程中的收获、对一些知识点的理解、还有遇到的Bug。
| 记录✍️ 我在学习前端的过程中的收获、对一些知识点的理解、还有遇到的Bug。 | blog,frontend,javascript,learning | 2023-06-19T01:53:24Z | 2024-05-05T16:03:20Z | null | 1 | 0 | 111 | 0 | 0 | 3 | null | null | TypeScript |
kunal8987/synthai-hackathon | main | # synthai-hackathon
Synth Ai can be used for various applications, including answering questions, providing explanations, offering suggestions, and engaging in general conversation.
Team Member :- Vinaykumar Hatwar , Susheel Kumar , Monojoy Rabha , Kunal Deotale , Ankit Choubey , Swapnil Solanki
Java Backend :- ( Ankit Choubey, Susheel Kumar ) we have created spring boot project and integrated with Open AI. For this first we neet Open Api key.
we have not deploy anywhere so we need to run backend server manualy. we need some tool like ( IntelliJ IDEA / VS Code / Eclipse / STS ) for starting application.
Java Backend Port :- `https://localhost:8888/chat?prompt="Your question"`
Node Backend :-
(Monojoy Rabha , Swapnil Solanki).We have created the backend route for Registration and Login for the user.We also Imlemented Google Auth where user can login with google.
Frontend :-
( Vinaykumar Hatwar , Kunal Deotale )
we have use the react app to show the ui of the synth Ai and use the tailwind css for designing



| Synth Ai can be used for various applications, including answering questions, providing explanations, offering suggestions, and engaging in general conversation. | express,java,javascript,jwt-authentication,mongodb,nodejs,oauth2,openai,reactjs,spring-boot | 2023-06-22T16:56:56Z | 2023-06-25T18:59:04Z | null | 6 | 8 | 30 | 0 | 2 | 3 | null | null | JavaScript |
qninhdt/chatchat | main | <h1><i> chatChat - Hãy chat theo cách của bạn ! </i></h1>
Một trang web giúp bạn có thể trò chuyện trực tuyến trên phạm vi toàn cầu bởi hình thức nhắn tin . <br /> <br />
Một nơi có thể giúp bạn tìm kiếm bạn bè, chia sẻ những sở thích, suy nghĩ để có thể mở rộng thế giới quan của mình hơn . <br /> <br />
Thế giới này ngập tràn những điều thú vị mà bạn có thể khám phá thông qua những người bạn trực tuyến của mình . <br /> <br />
Thấu hiểu điều đó , chúng tôi ( các thành viên của chatChat team ) đã tạo ra một môi trường trực tuyến an toàn , tiện lợi để bạn có thể dễ dàng kết bạn và trò chuyện , chúng tôi cam kết rằng bạn sẽ có những trải nghiệm tuyệt vời khi sử dụng chatChat . <br /> <br />
<b> Chần chừ gì mà không thử ngay hả bạn ơi ? </b> <br /> <br />
( Để xem thông tin chi tiết về những thành viên của chatChat team , vui lòng xem thêm tại mục "About" của trang web : <a href = "https://chatchat-uet.netlify.app/about.html" target = "_blank"> link </a>)
| UET Codecamp project (lắm bug đừng hack plz) | bootstrap,chat,javascript,jwt,mongodb,realtime,scss,socket-io,uetcodecamp | 2023-06-27T06:56:08Z | 2023-07-03T12:43:26Z | null | 4 | 0 | 82 | 0 | 2 | 3 | null | MIT | JavaScript |
cuww/mono | main | # Cuww - React Framework made on top of Next.js
**Work in Progress**
## Introduction
There are plenty of challenges we face day-to-day while developing front-end applications. It's hard to organize the architecture from scratch to make it clean and maintainable. Cuww is a powerful React framework built on top of Next.js, inspired by the top backend frameworks. It aims to address these challenges by providing a structured and scalable architecture following the MVCS (Model-View-Control-Service) pattern.
## Key Features
- **Micro-frontend:** Domain-Driven-Development implementation for collaborative teamwork.
- **Code Organizing:** MVCS (Model-View-Control-Service) pattern.
- **Service Caching:** Improve performance and reduce server load for the services / business logic
- **Realtime Environments:** Support for seamless updates and improved user experience. Cloud Native, no more build time envs.
- **Product Analytics:** Integration with analytics tools for data-driven decisions.
- **Robust State Management:** Use TypeScript for models, atom design for storage and logic.
- **Formatting:** Enforce code formatting standards with Prettier.
- **Multi-language Support:** Easy internationalization of your application.
- **TypeScript / Prettier:** Leverage TypeScript for type safety and improved development experience.
- **Healthchecks:** Ensure cloud-native compatibility with built-in healthchecks.
- **Error Handler:** Graceful error handling mechanism.
- **Events and Listeners:** Event-driven architecture support.
- **Theme & UI Configuration:** Customize the UI and configure themes easily.
## Contributing
We welcome contributions from the community to make Cuww better and cleaner for end users. If you have any ideas, bug fixes, or feature suggestions, please feel free to submit a pull request or open an issue in the [GitHub repository](link-to-repo).
## Getting Started
To get started with Cuww, please follow the installation and setup instructions provided in the [documentation](link-to-docs).
## License
Cuww is released under the [license name]. Please see the [license file](link-to-license-file) for more details.
## Acknowledgements
We would like to express our gratitude to the open-source community for their invaluable contributions. Without their dedication and support, Cuww would not have been possible.
## Conclusion
Cuww aims to simplify front-end development by providing a comprehensive set of tools and a clean architecture inspired by Laravel. By leveraging Next.js and React, it covers a wide range of challenges faced in building modern web applications. We hope you find Cuww useful and enjoy using it to create exceptional user experiences.
For more information, please refer to the [documentation](link-to-docs) or visit our [website](link-to-website).
| Cuww is a revolutionary React framework for Next.js, empowering developers with an awe-inspiring architecture to create exceptional front-end masterpieces. | framework,javascript,nextjs,react,typescript | 2023-06-23T08:06:39Z | 2023-07-07T08:34:32Z | null | 1 | 0 | 38 | 1 | 0 | 3 | null | null | TypeScript |
kieranperk/Number-Scroller | main | # Number Scroller
<a href="https://numberscroller.com"><img src="https://img.shields.io/badge/View%20Live%20Site-4078c0"></a>
<a href="https://github.com/kieranperk/Number-Scroller/stargazers"><img src="https://img.shields.io/github/stars/kieranperk/Number-Scroller?color=2d2d2d"></a>
<a><img src="https://img.shields.io/github/contributors/kieranperk/Number-Scroller?color=2d2d2d"></a>
Scroll down the page to increase the score. Its such a simple website, and might just be the most useless thing on the internet!
<img src="https://raw.githubusercontent.com/kieranperk/Number-Scroller/main/images/card.png">
## Features
- [x] Real time scroll counter
- [x] Light & Dark mode for night owls
- [x] Scroll Shop - Buyable upgrades like 2x scrolls to help your playthrough
- [ ] Prestiges - Increase your scrolling ability, but reset your progress too?
## Contributing
Pull requests are welcome.
Please make sure to test as appropriate.
## License
[GNU GPLv3](https://choosealicense.com/licenses/gpl-3.0/)
| 🖱️ Number Scroller is a website that makes you incredibly unproductive. Enter if you dare... How far can you scroll? | contributions-welcome,css,html,javascript,number,scroller | 2023-06-15T22:23:09Z | 2023-12-22T15:10:32Z | null | 3 | 5 | 43 | 2 | 3 | 3 | null | GPL-3.0 | JavaScript |
ArhamShameem/filmyverse | main | # Getting Started with Create React App
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
## Available Scripts
In the project directory, you can run:
### `npm start`
Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
The page will reload when you make changes.\
You may also see any lint errors in the console.
### `npm test`
Launches the test runner in the interactive watch mode.\
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
### `npm run build`
Builds the app for production to the `build` folder.\
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.\
Your app is ready to be deployed!
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
### `npm run eject`
**Note: this is a one-way operation. Once you `eject`, you can't go back!**
If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.
You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.
## Learn More
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
To learn React, check out the [React documentation](https://reactjs.org/).
### Code Splitting
This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
### Analyzing the Bundle Size
This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
### Making a Progressive Web App
This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
### Advanced Configuration
This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
### Deployment
This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
### `npm run build` fails to minify
This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
| On this platform, users can provide ratings to movies, expressing their evaluation of the film's quality and overall experience. They can also write detailed reviews, sharing their insights, opinions, and recommendations about the movies they have watched. | firebase,javascript,reactjs,tailwindcss,versel | 2023-06-28T19:08:28Z | 2023-07-17T21:28:27Z | null | 1 | 0 | 2 | 0 | 0 | 3 | null | null | JavaScript |
Orliluq/Integrador-Rick_and_morty | main | 
# **RICK AND MORTY** | Proyecto Integrador
## **📌 OBJETIVOS**
- Construir una Single Page Application utlizando las tecnologías: **React**, **Redux**, **Node**, **Express** y **Sequelize**.
- Poner en práctica recursos básicos de estilos y diseño (UX : UI).
- Afirmar y conectar los conceptos aprendidos en la carrera.
- Aprender mejores prácticas.
- Aprender y practicar el workflow de GIT.
- Utilizar y practicar testing.
## **⚠️ IMPORTANTE**
Es necesario contar minimamente con la última versión estable de NodeJS y NPM. Asegúrate de contar con ella para poder instalar correctamente las dependecias necesarias para correr el proyecto. Actualmente las versiónes necesarias son:
- **Node**: 12.18.3 o mayor
- **NPM**: 6.14.16 o mayor
Para verificar que versión tienes instalada:
```bash
node -v
npm -v
```
## **📋 PARA COMENZAR...**
1. Deberás forkear este repositorio para tener una copia del mismo en tu cuenta personal de GitHub.
2. Clona el repositorio en tu computadora para comenzar a trabajar.
3. Al abrir la carpeta debe hacer npm install y npm start.
---
## **📖 ENUNCIADO GENERAL**
La idea de este proyecto es construir una aplicación web a partir de la API (https://rickandmortyapi.com/) en la que se pueda:
- Buscar characters.
- Visualizar la información de los personajes.
- Filtrarlos.
- Ordenarlos.

| Proyecto Integrador Soy Henry | css,express,javascript,nodejs,postgresql,react,redux,sequelize | 2023-06-23T19:42:28Z | 2023-08-17T20:42:46Z | null | 1 | 0 | 18 | 0 | 1 | 3 | null | MIT | JavaScript |
kochan4php/kusonime-api | main | <h1 align="center">🌟 Unofficial Kusonime API 🌟</h1>
## Setup production project with docker compose
```bash
# cloning this project
git clone https://github.com/kochan4php/kusonime-api.git
# install pnpm globally if you don't have
npm i -g pnpm
# go to the project folder
cd kusonime-api
# run docker compose using pnpm
pnpm docker:up
# after run docker:up command, now open the url in :
http://localhost:8000
```
### See the documentation below ⬇️
- [Unofficial Kusonime REST API Documentation](https://brick-red-cricket-gown.cyclic.app/api-docs) | Unofficial Kusonime REST API | anime-scraper,cheerio,javascript,nodejs,web-scraper,kusonime-scrapper | 2023-06-10T04:46:57Z | 2024-02-07T02:55:44Z | 2023-11-02T08:51:50Z | 2 | 1 | 120 | 0 | 1 | 3 | null | null | TypeScript |
jvinicius-ribeiro/pokedex | main | null | Criação de uma Pokedéx, utilizando HTML, CSS e JavaScript. Esse projeto foi criado para desenvolver os meus conhecimentos aprendidos em cursos de programação web e front-end! | css,front,html,javascript,junior-developer,learning-by-doing,pokedex,pokemon,webpage | 2023-06-29T20:14:22Z | 2023-07-02T02:09:05Z | null | 1 | 0 | 9 | 0 | 0 | 3 | null | null | HTML |
edonosotti/tauri-sveltekit-playground-app | master | 

[](https://codebeat.co/projects/github-com-edonosotti-tauri-sveltekit-playground-app-master)
[](https://codeclimate.com/github/edonosotti/tauri-sveltekit-playground-app/maintainability)
# Tauri + SvelteKit + Flowbite UI Kit playground app
A skeleton multi-platform desktop application built with:
* [`Tauri`](https://tauri.app)
* [`SvelteKit`](https://kit.svelte.dev)
* [`Flowbite Svelte (UI kit)`](https://flowbite-svelte.com)
* [`Svelte-Heros-v2 (Icons)`](https://svelte-heros-v2.codewithshin.com)
Use this application as a playground to learn about portable
app development with `Tauri`. It was created to complement this
[article](https://medium.com/rockedscience/portable-desktop-apps-with-tauri-svelte-tailwind-52b806280426).
## Features
* Routing: [src/routes/+page.svelte](src/routes/+page.svelte)
describes how to configure a router to programmatically
switch between components in a Single Page Application
* Events: [src/routes/+page.svelte](src/routes/+page.svelte)
and [src/routes/Info.svelte](src/routes/Info.svelte)
describe how to create event handlers and dispatch
events across multiple components
* Stores: [src/routes/+page.svelte](src/routes/+page.svelte),
[src/routes/Welcome.svelte](src/routes/Welcome.svelte)
and [src/routes/Info.svelte](src/routes/Info.svelte)
describe how to use `context` and `stores` to persist
the application state across multiple components and
dinamically update the rendered view as the stored
values get updated
* App window customization: the `tauri.windows` section of
[src-tauri/tauri.conf.json](src-tauri/tauri.conf.json)
has been customized to set the title, the default size
and initial positioning of the application window
* UI Kit: `Flowbite Svelte` is used to rapidly design
an interface for the application
* Icons: the `Svelte-Heros-v2` icon set is used to
improve the appearance of the user interface
* TypeScript: the code of the components describes
how to use TypeScript with SvelteKit
## Prerequisites
* [`Rust 1.69.0`](https://www.rust-lang.org)
* [`Node.JS 18.x.x LTS`](https://nodejs.org)
## Quickstart
1. Start the local development server as described in the
**Usage** paragraph
2. Check the `Flowbite Svelte` docs to learn about the
[components](https://flowbite-svelte.com/docs/components/accordion)
available to build the `UI`
3. Check the [Tailwind](https://tailwindcss.com/docs/installation)
docs to learn about the `CSS` utility classes that are
available to customize the `UI`
4. Make some changes to the following files:
* [`src/routes/Welcome.svelte`](src/routes/Welcome.svelte)
* [`src/routes/Info.svelte`](src/routes/Info.svelte)
the application will automatically update while it is
running to display the changes
## Usage
To start the application in development mode, run:
```bash
$ npm ci
$ npm run tauri dev
```
depending on the computational capacity of your computer the first
compilation could take a few minutes. Once the development server
is started, you will get automated hot-reload and the next starts
of the application will be much faster, as long as no new Rust
code needs compilation.
## Release
To create a release for the current system architecture, run:
```bash
$ npm ci
$ npm run tauri build
```
For more information, check the official docs at:
https://tauri.app/v1/guides/building/
### Build in CI/CD pipelines
The offical docs offer a tutorial to build apps for
multiple targets using GitHub Actions:
https://tauri.app/v1/guides/building/cross-platform#tauri-github-action
## License
This code is distributed under the
[MIT](LICENSE) license.
Check this [Wikipedia page](https://en.wikipedia.org/wiki/MIT_License)
for further details on the license.
### EU law notice
Attempting to mandate some baseline security practices to improve
the safety of the software distributed in its territory, the EU
published a very poorly designed draft of a new law.
The draft in its current form threatens the very existence of
open source software, making it impractical for independent
developers to safely distribute software and code.
I appreciate the intent, but the execution was just terrible.
I am writing this note to raise the awarness and encourage
everyone to act.
Please read the following articles and support the cause
of the independent software development:
* https://www.eff.org/deeplinks/2023/05/eus-proposed-cyber-resilience-act-raises-concerns-open-source-and-cybersecurity
* https://avvocloud.net/blog/english/cyber-resilience-act-open-source
* https://ec.europa.eu/info/law/better-regulation/have-your-say/initiatives/13410-Cyber-resilience-act-new-cybersecurity-rules-for-digital-products-and-ancillary-services/F3376627_en
* https://blog.opensource.org/what-is-the-cyber-resilience-act-and-why-its-important-for-open-source/
* https://hackaday.com/2023/04/21/the-cyber-resilience-act-threatens-open-source/
| A skeleton multi-platform desktop application built with Tauri and SvelteKit. Use this application as a playground to learn about portable app development with Tauri. | flowbite-svelte,javascript,portable,portableapps,svelte,sveltekit,tailwind,tailwind-css,tailwindcss,tauri | 2023-06-27T18:37:58Z | 2023-06-27T21:08:52Z | null | 1 | 0 | 8 | 0 | 1 | 3 | null | MIT | Svelte |
jordanpapaditsas/countdown-timer | main | # Countdown Timer
## Description
A simple countdown timer, can be set to give the exact time remaining till an event happens.
## Live Preview
https://jordanpapaditsas.github.io/countdown-timer/
## Technologies
Tech-stack used for the project:
- HTML5
- CSS
- JavaScript
## Copyrights ©️
The picture used for the app, is only for personal use.
| An app for a countdown timer, can easily altered to the desired date and time. | css3,html5,javascript,responsive-design,reusable-components | 2023-06-19T14:46:10Z | 2023-06-28T11:41:34Z | null | 1 | 0 | 14 | 0 | 0 | 3 | null | null | JavaScript |
Anandakrishnan21/rootry-our-family-tree | main | # Family-Tree-Website
## Project Structure
The project includes the following folders and files:
public: This folder contains static files such as CSS, JavaScript, and images.
views: This folder consists of EJS template files (.ejs files) that contain a mix of HTML, CSS, JavaScript code and other files that are publicly accessible.
models: This folder is used to define the data models or schemas for interacting with the database.
index.js: This is the server file which has the routes set up and all the necessary configurations.
package.json: This file contains the project's metadata and dependencies.
## Getting Started
Clone this repository to your local machine.
Install Node.js and NPM on your machine.
Install the project dependencies by running npm install or npm i command in the root directory of the project.
Run the command 'mongod' in the terminal to start the mongoDB server
Run the project using the command 'npm run devStart' or 'nodemon index.js'. This will start the server and the website can be accessed at http://localhost:3000.
| "Rootry" is a platform for creating family trees where people can add their family members, thereby linking distant relatives and can form groups for personal communication. The website is developed using express, EJS, node.js, MongoDB. | authentication,css,ejs,expressjs,html,javascript,mongo,node | 2023-06-14T20:34:13Z | 2023-08-06T11:36:27Z | null | 1 | 0 | 13 | 0 | 2 | 3 | null | null | EJS |
luhoro/meteora | main | # E-commerce Meteora
[Acesse o site aqui! ✨](https://luhoro.github.io/meteora/)
## Descrição
Projeto realizado para o Challenge Frontend 7ª edição, fornecido pela Alura. Para esse desafio foi necessário atender às demandas da empresa detalhado em tópicos, e o prazo para término do projeto foi de 4 semanas.
[Para rodar o projeto em sua máquina clique aqui](#rodar-localmente)
## Tecnologias utilizadas





## Materiais fornecidos
Para o desenvolvimento do projeto, foi fornecido 3 planos de estudos com os assuntos necessários para nos guiar. Para nos organizarmos e respeitarmos o prazo, foi fornecido também um modelo kanban no aplicativo Trello para cada semana.
| **Planos de estudos** | **Cards Trello** |
| - | - |
| [Meteora - Semana 1](https://cursos.alura.com.br/meteora-alura-challenge-semana-1-monicahillman-1684248914638-p592517?_gl=1*1re64n9*_ga*MjA3ODk5MjAyLjE2NzQ1NzM4NjY.*_ga_59FP0KYKSM*MTY4OTYyMTE2OC41MTEuMS4xNjg5NjIyOTExLjAuMC4w*_fplc*ZUZiQThXWGVQJTJGOFI3T3ZZU2lwYjc3R3BrRWFiSTd0YmlTTzclMkJVOEV6SHRqMUlkRUY1cmpWcnVmN2lOUjNzUDJ2VCUyQnlrUGhqSCUyRkdENjhCMmxJSUVPNTFBTnd3eHZBZXh2aTh6VW4zQXlCMWt4enFsbyUyQmw2QkNzdmpyUFJGQSUzRCUzRA..) | [Meteora - Semana 1](https://trello.com/b/8stNxpRc/challenge-front-end-semana-1) |
| [Meteora - Semana 2 ](https://cursos.alura.com.br/meteora-alura-challenge-semana-2-monicahillman-1684248986060-p592519?_gl=1*lb2l87*_ga*MjA3ODk5MjAyLjE2NzQ1NzM4NjY.*_ga_59FP0KYKSM*MTY4OTYyMTE2OC41MTEuMS4xNjg5NjIyOTExLjAuMC4w*_fplc*ZUZiQThXWGVQJTJGOFI3T3ZZU2lwYjc3R3BrRWFiSTd0YmlTTzclMkJVOEV6SHRqMUlkRUY1cmpWcnVmN2lOUjNzUDJ2VCUyQnlrUGhqSCUyRkdENjhCMmxJSUVPNTFBTnd3eHZBZXh2aTh6VW4zQXlCMWt4enFsbyUyQmw2QkNzdmpyUFJGQSUzRCUzRA..) | [Meteora - Semana 2](https://trello.com/b/7RIfsNFO/challenge-front-end-semana-2) |
| [Meteora - Semana 3 e 4](https://cursos.alura.com.br/meteora-alura-challenge-semana-3-e-4-monicahillman-1684249122472-p592524?_gl=1*lb2l87*_ga*MjA3ODk5MjAyLjE2NzQ1NzM4NjY.*_ga_59FP0KYKSM*MTY4OTYyMTE2OC41MTEuMS4xNjg5NjIyOTExLjAuMC4w*_fplc*ZUZiQThXWGVQJTJGOFI3T3ZZU2lwYjc3R3BrRWFiSTd0YmlTTzclMkJVOEV6SHRqMUlkRUY1cmpWcnVmN2lOUjNzUDJ2VCUyQnlrUGhqSCUyRkdENjhCMmxJSUVPNTFBTnd3eHZBZXh2aTh6VW4zQXlCMWt4enFsbyUyQmw2QkNzdmpyUFJGQSUzRCUzRA..) | [Meteora- Semana 3 e 4](https://trello.com/b/0Lneryvl/challenge-front-end-semanas-3-e-4) |
### Design
[Acesse o figma do Projeto aqui](https://www.figma.com/file/2TLgt8UjsWUViWlmpXu5Fz/Challenge-Front-end-%7C-Loja-Meteora?type=design&node-id=2386-3188&mode=design&t=bpa8eE2IWC8XAD9Q-0)

## História
A Meteora é uma empresa do comércio eletrônico de roupas atemporais, casuais e sem gênero. Ela acredita que a moda é muito mais do que apenas tendências passageiras e oferece peças versáteis que se adaptam a qualquer estilo e ocasião.
A empresa tem por objetivo se tornar referência no mercado, atraindo mais clientes e impulsionando suas vendas, buscando alcançar um novo patamar e consolidando-se como uma empresa mais digital.
Para isso, eles solicitaram nossa ajuda como desenvolvedores para criar um site de um e-commerce, que proporcionem uma experiência de compra incrível para seus clientes, e que atendam aos seguintes requisitos:
- Uma página inicial que contenha um buscador de produtos oferecidos pela empresa;
- Um banner/carrossel que contenha informações sobre a coleção do momento;
- Uma galeria com as categorias dos produtos disponíveis na loja;
- Uma galeria com as informações dos produtos, como: imagem, nome do produto, descrição e link que leva até a página de “Saiba mais sobre o produto”.
- Uma modal que contenha a imagem, o nome, a descrição, o preço, as variações do produto e a opção de adicionar na sacola;
- Uma seção para divulgar as facilidades que a loja proporciona para realizar as compras;
- Uma seção para cadastrar na newsletter e receber novidades;
- Um rodapé com informação do site.
Um detalhe muito importante é que o site precisa ser responsivo, para proporcionar aos clientes facilidade de compra através de dispositivos mobiles.
## Rodar localmente
Clone o repositório com
``` git clone https://github.com/luhoro/meteora.git```
Vá para a pasta do projeto
``` cd meteora ```
Instale as dependências com
``` npm install ```
Baixe a extensão [Liver Server (VS Code) aqui](https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer)
e rode apertando em "Go Live" no canto inferior direto.
| Loja de moda realizada como desafio durante o Challenge Front-end 7ª Edição fornecido pela Alura. | css,html,javascript,js,tailwind,tailwindcss | 2023-06-19T19:55:27Z | 2023-07-31T01:39:32Z | null | 1 | 0 | 33 | 0 | 0 | 3 | null | null | CSS |
perk-bevis/phone-sshop | master | # WEBSIITE PHONE SHOP
link : https://perk-bevis.github.io/phone-sshop/
# TECHNOLOGY
HTML, CSS ,JAVASCRIPT
| My personal project about phone shop is written in Vietnamese | css,html,javascript | 2023-06-10T13:13:01Z | 2023-08-17T17:25:25Z | null | 1 | 0 | 11 | 0 | 1 | 3 | null | null | HTML |
Gustavonn07/Studytime | main | <h1 align='center'>StudyTime (v1.0.1)</h1>
## Objetivo:
Ajudar estudantes a manter o foco, organização e diciplina com 2 elementos que podem ser utilizados gratuitamente:
- Cronômetro
- Criador de roteiros (salva na nuvem)
## Objetivos Futuros:
- Implementar React + Typescript.
- Implementar Styled-components.
- Melhorar roteiro.
#### Link: https://studytime-nu.vercel.app/




## Como foi criado:
Para criar esse site usei meus conhecimentos de:
- <img alt="Gustavo-JS" height="30" width="40" src="https://raw.githubusercontent.com/devicons/devicon/master/icons/javascript/javascript-plain.svg">
<img alt="Gustavo-HTML" height="30" width="40" src="https://raw.githubusercontent.com/devicons/devicon/master/icons/html5/html5-original.svg">
<img alt="Gustavo-CSS" height="30" width="40" src="https://raw.githubusercontent.com/devicons/devicon/master/icons/css3/css3-original.svg">
- AOS animation
- MediaQuerys
## Atualizações:
- v1.0.1: Adicionado dominio vercel.app.
| A repository that will help you study with a timer and a to-do list --- (v1.0.1) | aos-animation,css3,html5,javascript,study,timer,todo-list,website | 2023-06-11T12:02:24Z | 2023-09-06T19:29:40Z | null | 1 | 2 | 27 | 7 | 0 | 3 | null | MIT | CSS |
alyconr/leaderboard | develop | <a name="readme-top"></a>
<div align="center">
<img src="./src/assets/images/logo.png" alt="logo" width="140" height="auto" />
<br/>
<h3><b>Leaderboard API 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](#deployment)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [❓ FAQ (OPTIONAL)](#faq)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
# 📖 [LEADERBOARD APP'] <a name="about-project"></a>
**[Leader Board App]** The Leaderboard API Application is a powerful and versatile JavaScript application that utilizes REST methods to provide users with the ability to create games, submit scores, and retrieve scores for a selected game. The codebase is structured into various modules, each responsible for specific functionalities within the game. By incorporating cutting-edge technologies such as ES6 modules, Webpack, and the Leaderboard API's RESTful interface, this application offers a comprehensive solution for effectively tracking, displaying, and analyzing scores in an intuitive and efficient manner.
## 🛠 Built With <a name="built-with"></a>
<p> This project was built using:
HTML, CSS and JAVASCRIPT, WEBPACK
</p>
### Tech Stack <a name="tech-stack"></a>
<li> HTML </li>
<li> CSS </li>
<li> Javascript </li>
<li> Webpack </li>
<li> Git </li>
<li> Github </li>
<li> Netlify</li>
<details>
<summary>Client</summary>
<ul>
<li><a href="https://www.w3schools.com/html/">HTML</a></li>
</ul>
</details>
<details>
<summary>Styles</summary>
<ul>
<li><a href="https://www.w3.org/Style/CSS/Overview.en.html">CSS</a></li>
</ul>
</details>
<details>
<summary>Language</summary>
<ul>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript">CSS</a></li>
</ul>
</details>
<details>
<summary>Database</summary>
<ul>
<li><a href="https://github.com/">GIT</a></li>
</ul>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **[HTML & CSS Best practices]**
- **[Add New Game]**
- **[Add User and Score]**
- **[Display Users and Scores ]**
- **[Update Task ]**
- **[Seamless Integration ]**
- **[ES6 Modules ]**
- **[Webpack Bundling ]**
- **[CI and CD Deployment with Netlify]**
### Create Game:
Users can create new games by specifying a game name. The application utilizes the HTTP POST method to send a request to the Leaderboard API, which generates a unique game ID and stores the game name and ID in the database.
### Submit User Score:
Users can submit their scores for a selected game by providing their name and score. The application employs the HTTP POST method to send the score data to the Leaderboard API, associating it with the corresponding game ID in the database.
### Retrieve Scores:
Users can retrieve scores for a selected game using the HTTP GET method. The application sends a request to the Leaderboard API, which responds with an array of scores sorted in descending order. These scores are then displayed in the user interface.
<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://leaderboardaly.netlify.app/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- GETTING STARTED -->
## 💻 Getting Started <a name="getting-started"></a>
To get a local copy up and running, follow these steps.
### Prerequisites
To run this project you need the following tools:
- [VS Code ]
- [Git and GitHub ]
- [Webpack Installation ]
- [CI CD Netlify Bot Instalation]
- [Nodejs ]
### Setup
Clone this repository to your desired folder:
```sh
cd leaderboard
git clone git@github.com:alyconr/leaderboard.git
```
### Install
Install this project with:
Lighthouse run
```sh
npm install -g @lhci/cli@0.7.x
```
Webhint:
```sh
npm install --save-dev hint@7.x
```
Stylelint:
```sh
npm install --save-dev stylelint@13.x stylelint-scss@3.x stylelint-config-standard@21.x stylelint-csstree-validator@1.x
```
Eslint
```sh
npm install --save-dev eslint@7.x eslint-config-airbnb-base@14.x eslint-plugin-import@2.x babel-eslint@10.x
```
Webpack
```sh
npm init -y
npm install webpack webpack-cli --save-dev
```
Webpack Css loader
```sh
npm install --save-dev style-loader css-loader
```
Webpack html plugin
```sh
npm install --save-dev html-webpack-plugin
```
Webpack dev server
```sh
npm install --save-dev webpack-dev-server
```
### Usage
To run locally run the following command:
```sh
npm run build
npm run start
```
### Run tests
To run tests, run the following command:
To test the Stylelint linter:
```sh
npx stylelint "**/*.{css,scss}"
```
To test the Webhint:
```sh
npx hint .
```
To test the ESLint linter:
```sh
npx eslint .
```
### Deployment
You can deploy this project using your local enviroment or use Netlify bot to deploy it online.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
JEYSSON CONTRERAS
👤 **Author1**
- GitHub: [@alyconr](https://github.com/alyconr)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/jeysson-aly-contreras/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
- [ ] **[User Authentication]**
- [ ] **[Sorting and Filtering]**
- [ ] **[Score Analytics]**
<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/alyconr/leaderboard.git/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 please give one start.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank God for giving me the strength to carry out this project.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FAQ (optional) -->
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LICENSE -->
## 📝 License <a name="license"></a>
This project is [MIT](LICENSE.md) licensed.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| The Leaderboard API Application is a powerful and versatile JavaScript application that utilizes REST methods to provide users with the ability to create games, submit scores, and retrieve scores for a selected game. | css,gitflow-workflow,html5,javascript,webpack | 2023-06-20T20:30:54Z | 2023-07-03T21:19:36Z | null | 1 | 1 | 30 | 0 | 0 | 3 | null | NOASSERTION | JavaScript |
disa4148/Denwa | main | # Denwa
"Denwa" - фриланс-биржа для поиска работы, построенная на React JS.
Этот репозиторий содержит исходный код и ресурсы, необходимые для разработки и запуска проекта "Denwa". Здесь вы найдете компоненты пользовательского интерфейса, логику работы с данными, и другие основные функциональности, которые делают "Denwa" полноценной платформой для фриланса. Присоединяйтесь к нам и помогайте нам развивать "Denwa" вместе!
Мы, команда проекта "Denwa", используем передовые технологии и библиотеки, такие как React JS, TypeScript, SCSS, CSS Vite, HTML, JavaScript, React Hook Form, React Query, Redux, Redux Toolkit и другие мелкие библиотеки.
С их помощью мы разрабатываем фриланс-биржу "Denwa" - платформу, которая помогает пользователям найти работу и фрилансеров. Мы создаем мощный пользовательский интерфейс, обрабатываем формы, взаимодействуем с сервером, управляем состоянием приложения и применяем методологию Future Slice Design (FSD) для создания чистой, организованной и поддерживаемой архитектуры кода.
Наша цель - предоставить высококачественный и инновационный продукт для наших пользователей, и мы постоянно следим за новыми тенденциями и инструментами, чтобы быть впереди и обеспечивать лучший опыт работы на нашей платформе.
# Инструкция по установке
Склонируйте репозиторий на свой локальный компьютер:
`git clone https://github.com/disa4148/Denwa.git`
Перейдите в директорию проекта:
`cd denwa`
Убедитесь, что у вас установлен Node.js и npm, выполнив следующую команду:
`node --version`
`npm --version`
Если Node.js или npm не установлены, установите их с официального сайта Node.js (https://nodejs.org).
Установите зависимости проекта, выполнив команду:
`npm install`
# Запуск приложения
После установки зависимостей, вы можете запустить наше React приложение
Запустите приложение в режиме разработки:
`npm run dev`
Эта команда запустит приложение в режиме разработки на локальном сервере. Откройте ваш веб-браузер и перейдите по адресу http://localhost:5173, чтобы увидеть ваше приложение.
Вы также можете собрать приложение для развертывания в продакшене, выполнив команду:
`npm run build`
# Вклад в проект
## Если вы хотите внести вклад в развитие этого проекта, вы можете сделать форк репозитория и создать ветку для ваших изменений. После внесения изменений вы можете отправить запрос на слияние (Pull Request), чтобы мы могли рассмотреть их и включить в основную ветку проекта.
| "Denwa" - фриланс-биржа для поиска работы, построенная на React JS и TypeScript. | javascript,react,reactjs,scss,ts,typescript,vite,website | 2023-06-11T12:18:54Z | 2023-07-01T14:10:51Z | null | 3 | 0 | 89 | 0 | 0 | 3 | null | null | TypeScript |
smartman1234/fsw-p5-murphys-map | main | # Murphy's Map: Udacity Nanodegree - Full Stack Web Developer Project 5
A google maps app showcasing Murphy Group locations in PEI. Created to learn Knockout.js, Google Maps API, CSS Grid, Node and front-end package management, it's the 5th project in the Udacity Nanodegree: Full Stack Web Developer.
## Usage & Screenshots
### Home
*Upon opening the app, the user can see a map of the Murphy Group locations on PEI. Clicking on any one of the list view or map markers opens an infowindow with details pulled from FourSquare's API.*

### Responsive
*The app is fully responsive, viewable on tablet and mobile devices.*

## Getting Started With Development
- This project is built and tested with:
- Node version: 9.9.0
- NPM version: 5.6.0
- Webpack version: 4.5
### Setup
- `npm install` -> Download dependencies
- Populate `constants.js` with your FourSquare API client id and secret
- Populate `script` tag in `index.html` with your own Google Maps API key
### Run ESLint to validate JavaScript Code Style
- `./node_modules/.bin/eslint src`
### Running the App: Dev
- `npm start` -> Run in dev mode
### Build Prod
- `npm run build` -> Create `bundle.js` production distribution
| A google maps app showcasing Murphy Group locations in PEI. Created to learn Knockout.js, Google Maps API and front-end package management, it's the 5th project in the Udacity Nanodegree: Full Stack Web Developer. | google-maps-api,javascript,knockoutjs | 2023-06-14T10:54:11Z | 2019-03-28T14:17:56Z | null | 1 | 0 | 43 | 0 | 0 | 2 | null | MIT | JavaScript |
ak-hu/random-quote-machine-jquery | main | # Random Quote Machine
The Random Quote Machine jQuery is a simple web application that generates random quotes using jQuery. It provides users with an interactive experience to discover and share inspiring quotes.

## Features
- Random Quote Generation: The application generates random quotes with the click of a button, offering users a fresh quote each time.
- Quote Sharing: Users can easily share quotes on social media platforms or copy them to the clipboard for further use.
- Customization: The application allows users to customize the appearance of the quote display, such as font size, background color, and more.
## Technologies Used
The Random Quote Machine jQuery project utilizes the following technologies:
- HTML: The structure and layout of the application are created using HTML.
- CSS: CSS is used for styling the application's interface, including fonts, colors, and layout.
- JavaScript: JavaScript, along with the jQuery library, is used to implement the random quote generation and interactive features.
## Usage
To use the Random Quote Machine jQuery application locally, follow these steps:
1. Clone the repository: `git clone https://github.com/ak-hu/random-quote-machine-jquery.git`
2. Open the `index.html` file in your preferred web browser.
## Contributing
Contributions to the Random Quote Machine jQuery project are welcome! If you have any ideas for improvements, bug fixes, or new features, feel free to open an issue or submit a pull request.
Please make sure to follow the existing coding style and guidelines when contributing.
## License
This project does not have a specific license.
| Simple web application that generates random quotes using jQuery. It provides users with an interactive experience to discover and share inspiring quotes. | api-client,css,css3,html,html-css-javascript,html5,javascript,javascript-library,jquery,jquery-ajax | 2023-06-18T12:51:07Z | 2023-06-20T00:49:05Z | null | 1 | 0 | 7 | 0 | 0 | 2 | null | null | JavaScript |
smartman1234/bike-plan | main | # Bike-Plan
## Overview
Visualize several map layers related to the city's bicycle network
Displays past, present, 5 year plan, and 30 year plan
## Screenshots
<img src="https://raw.github.com/cityofboston/bike-plan/gh-pages/screenshot.png"/>
<img src="https://raw.github.com/cityofboston/bike-plan/gh-pages/screenshot2.png"/>
<img src="https://raw.github.com/cityofboston/bike-plan/gh-pages/screenshot3.png"/>
## JS and CSS tweaks
Aerial Photo map is converted to grayscale using CSS (plus an SVG filter on WebKit-based browsers)
jQuery slider is hard-coded to make the +5 and +30 year steps longer than other steps on the timeline
jQuery slider and tooltip have modified background, font size, and border
## Technologies Used
* <a href="http://leafletjs.com">Leaflet.js</a>
* <a href="http://esri.github.io/esri-leaflet/">Esri-Leaflet Plugin</a>
* <a href="http://jquery.com">jQuery</a> and <a href="http://jqueryui.com/">jQuery UI</a>
* Creative Commons and public domain icons from <a href="http://thenounproject.com/">The Noun Project</a>
* ArcGIS Server
* <a href="http://pages.github.com/">GitHub Pages</a> | Map of current and future bike routes | arcgis,javascript,jquery | 2023-06-16T11:01:06Z | 2013-09-27T16:12:26Z | null | 1 | 0 | 53 | 0 | 0 | 2 | null | null | JavaScript |
MoyasiGinko/React-BookStore | development | # Portfolio<a name="readme-top"></a>
<div align="center">
<h1> Book Store </h1>
<br/>
</div>
# 📗 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)
# BookStore <a name="about-project"></a>
**Book Store** is a project the 2nd project of the 3rd modules. I have implemented the knowledge of react to ceate this project.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack"></a>
<details>
<summary>Client</summary>
<ul>
<li><a href="https://reactjs.org/">HTML</a></li>
<li><a href="https://reactjs.org/">CSS</a></li>
<li><a href="https://reactjs.org/">JavaScript</a></li>
<li><a href="https://reactjs.org/">React</a></li>
</ul>
</details>
### Key Features <a name="key-features"></a>
- **To Display my books**
## 💻 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:
<p> A Text Editor</p>
<p> A Browser </p>
### Setup
Clone this repository to your desired folder:
Example commands:
```
cd my-folder
git clone https://github.com/moyasiginko/react-bookstore
```
### Install
Install this project with:
`npm install`
<p>No special installation needed</p>
### Usage
To run the project, execute the following command:
`npm start`
### Run tests
To run tests, run the following command:
<p> No test available </p>
<p>But you can inspect the project's webpages by the browser's developer mode </p>
### Deployment
You can deploy this project using:
<p>Any Browser</p>
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 👥 Authors <a name="authors"></a>
👤 **Moyasi**
- GitHub: [@MoyasiGinko](https://github.com/MoyasiGinko)
- Twitter: [@MoyasiGinko](https://twitter.com/moyasi_ginko)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/mahmudur-rahman-a8a151257)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🔭 Future Features <a name="future-features"></a>
- [ ] **[Beautiful Ui Structure]**
- [ ] **[Interactive 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 project please try to contribute or rate it or put a comment
<p align="right">(<a href="#readme-top">back to top</a>)</p>
## 🙏 Acknowledgments <a name="acknowledgements"></a>
I would like to thank to my coding partners.
<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>
| Welcome to the React Bookstore repository! This project showcases a dynamic and interactive online bookstore built with React. Explore the codebase to discover how the frontend components are structured, how Redux is used for state management, and how API calls are made to retrieve book data. Dive in, contribute. | javascript,reactjs | 2023-06-17T18:32:30Z | 2023-06-25T05:06:43Z | null | 1 | 5 | 26 | 0 | 0 | 2 | null | NOASSERTION | JavaScript |
EliotPu/eslint-config-el | main | # JavaScript EL Style - ESLint Shareable Config
[](https://github.com/standard/eslint-config-standard/actions/workflows/ci.yml)
[](http://standardjs.com)
This config extends and overites some of the [`ESlint:recommended`](https://eslint.org/) & [`Standard`](https://standardjs.com) via [`eslint-config-standard`](https://www.npmjs.com/package/eslint-config-standard?activeTab=readme).
ESM style.
## Install
```bash
npm install --save-dev eslint-config-el
```
## Usage
Shareable configs are designed to work with the `extends` feature of `.eslintrc` files.
You can learn more about
[`Shareable Configs`](http://eslint.org/docs/developer-guide/shareable-configs) on the
official ESLint website.
Then, add this to your `.eslintrc` file:
```json
{
"extends": "el"
}
```
or
```json
{
"root": true,
"extends": "el"
}
```
**"root": true**
> To limit ESLint to a specific project, place "root": true inside the .eslintrc.* file or eslintConfig field of the package.json file or in the .eslintrc.* file at your project's root level. ESLint stops looking in parent folders once it finds a configuration with "root": true .
[Cascading and hierarchy in Configuration Files](https://eslint.org/docs/latest/use/configure/configuration-files#cascading-and-hierarchy).
**Important!**
ESLint config's field "env": seted only "es2022" in true.
And `"es2021": true`, `"node": true` in [eslint-config-standard](https://github.com/standard/eslint-config-standard/blob/master/.eslintrc.json).
In your project set your environments. [`All environment options`](https://eslint.org/docs/latest/use/configure/language-options#specifying-environments).
You can also refer to [`specifying parser options`](https://eslint.org/docs/latest/use/configure/language-options#specifying-parser-options)
*Example:*
```json
{
"root": true,
"extends": "el",
"env": {
"browser": true,
"node": false,
"jest": true
}
}
```
You can override settings from the shareable config by adding them directly into your
`.eslintrc` file. All rules [`see`](https://eslint.org/docs/latest/rules/).
*Example:*
```json
{
"root": true,
"extends": "el",
"rules": {
"indent": [
"error",
4,
{
"SwitchCase": 0
}
]
}
}
```
*NOTE: We omitted the `eslint-config-` prefix since it is automatically assumed by ESLint.*
Now you can use the command line by writing `npx eslint .` - to show admonitions and `npx eslint . --fix` - to fix it.
You can also add scripts to your package, e.g. (in your package.json, in the "script" section):
```json
"scripts": {
"lint": "eslint . --ext js,mjs,cjs",
"lint:fix": "eslint . --fix --ext js,mjs,cjs",
}
```
And then at your command line, type `npm run lint` - to run the lint script command (just for guidance).
And `npm run lint:fix` to fix your code.
*NOTE: ("`.`" - points to the project root, check everything in starting from the project root)*
*NOTE: the `--ext js,mjs,cjs` option tells eslint which extensions to check, in this example the three types js, mjs (ESM), cjs (CommunmJS)*
*NOTE: You may want your IDE to highlight the code according to the rules of the config,
and if you are the owner of the VS Code,
you will need an [`ESLint plugin`](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) for it.
**You may need just wait a bit or to restart the IDE.***
### Looking for something easier than this?
The easiest way to use JavaScript Standard Style to check your code is to use the
[`standard`](http://standardjs.com) package. This comes with a global
Node command line program (`standard`) that you can run or add to your `npm test` script
to quickly check your style.
Or another style something like this [`ESLint`](https://eslint.org/docs/latest/use/getting-started).
## Author
**EliotPu <78807845+EliotPu@users.noreply.github.com>**
* [<img alt="GitHub" width="18px" src="https://raw.githubusercontent.com/EliotPu/ESLint-config-El/main/tech/github-logo.png" /> GitHub](https://github.com/EliotPu)
| JavaScript EL Style - ESLint Shareable Config | development,ecmascript,es,es2021,es2022,es6,eslint,eslintconfig,javascript,linter | 2023-06-29T18:14:22Z | 2023-07-10T17:03:27Z | 2023-06-30T20:47:21Z | 1 | 0 | 26 | 0 | 0 | 2 | null | MIT | JavaScript |
Slqmy/Rock-Paper-Scissors | main | # 🥌📰✂ Rock Paper Scissors
A simple rock paper scissors game made using `HTML`, `CSS`, and `JS`. This was part of the [JS course](https://www.youtube.com/watch?v=SBmSRK3feww) by [SuperSimpleDev](https://www.youtube.com/@SuperSimpleDev) that I took.
## Features
- Basic rock paper scissors gameplay
- Wins, losses and ties are stored in the local storage
- Reset score button
- Auto-play mode
- Keyboard support
[](https://choosealicense.com/licenses/isc/)
| A simple rock paper scissors game made using HTML, CSS, and JS. This was part of the JS course by @SuperSimpleDev that I took. | css,html,js,rock-paper-scissors,website,cascading-style-sheets,html-css-js,html-css-js-project,hypertext-markup-language,javascript | 2023-06-15T13:34:25Z | 2023-06-18T11:38:31Z | null | 1 | 0 | 11 | 0 | 1 | 2 | null | null | JavaScript |
apolomoraes/form-multi_step | main | <h1 align="center">Formulário</h1>
<p align="center">
Formulário Multi Step
</p>
<p align="center">
<a href="#-tecnologias">Tecnologias</a> |
<a href="#-projeto">Projeto</a> |
</p>
<br>
<p align="center">
<img src=".github/project.png" width="100%">
</p>
## 🚀 Tecnologias
Esse projeto foi desenvolvido com as seguintes tecnologias:
- HTML
- CSS
- JavaScript
##
## 💻 Projeto
- Desafio #boraCodar 23 | Formulário dividido em etapas feito no evento boraCodar da Rocketseat | boracodar,css,html,javascript | 2023-06-16T14:44:02Z | 2023-06-17T03:22:13Z | null | 1 | 0 | 4 | 0 | 0 | 2 | null | null | HTML |
seanpm2001/SDE_MobileServer_Plugins_MathJax | SDE_MobileServer_Plugins_MathJax_Main-dev |
***
# SDE MobileServer Plugin for MathJax
[:octocat: `🏠️ Home repository`](https://github.com/seanpm2001/SDE_MobileServer/)
`🇸-🇩-🇪📱️🌐️💾️🔌️ SDE MobileServer MathJax support plugin.`
***
## Summary
This plugin adds MathJax support to your server.
***
**🌱️ This [`README.md`](/README.md) file is a major stub, and needs significant expansion.**
***
# File info
**File version:** `1 (2023, Saturday, June 17th at 09:24 pm PST)`
***
| 🇸-🇩-🇪📱️🌐️💾️🔌️ SDE MobileServer MathJax support plugin. | gpl3,gplv3,javascript,javascript-lang,javascript-language,mathjax,md,mobile-server,mobileserver,plugin | 2023-06-17T23:23:29Z | 2023-06-18T04:24:34Z | null | 1 | 0 | 21 | 0 | 1 | 2 | null | GPL-3.0 | JavaScript |
fahadPathan7/fahadPathan7.github.io | main | # My_Portfolio
| My personal portfolio website. | css3,html5,javascript | 2023-06-09T08:14:38Z | 2023-06-22T15:44:06Z | null | 1 | 0 | 10 | 0 | 0 | 2 | null | null | CSS |
SrNightmare09/chess-fen-reader | master | # Chess FEN Reader
A chess FEN reader which generates a board based on the FEN input.
<img src="assets/preview.jpg" width="50%"></img>
###### *FEN: r1bk3r/p2pBpNp/n4n2/1p1NP2P/6P1/3P4/P1P1K3/q5b1*
## [Roadmap](https://github.com/users/SrNightmare09/projects/1)
- [x] Add numbers and letters to the side of the board
- [ ] Add terminal board theme to site
- [ ] Add terminal piece theme to site
- [ ] Make proper button panel for better UI experience
- [ ] Add functionality to process other parts of FEN
- [ ] Allow user to continue playing from a position
## Contributing
If you wish to contribute, make sure to read the [CODE OF CONDUCT](CODE_OF_CONDUCT.md) and [Contributing guidelines](CONTRIBUTING.md) before doing so.
## Awesome Contributors
<a href="https://github.com/srnightmare09/chess-fen-reader/graphs/contributors">
<img src="https://contrib.rocks/image?repo=srnightmare09/chess-fen-reader" />
</a>
## License
This project is licensed under the [MIT License](LICENSE.md).
| A simple FEN reader which generates a chessboard | chess,css,html,javascript | 2023-06-25T15:57:54Z | 2023-10-20T16:50:37Z | null | 4 | 24 | 145 | 6 | 4 | 2 | null | MIT | JavaScript |
serhatzunluoglu/Anasayfa | main | # Trendyol Partner
- Freelance olarak yaptığım bir proje
- Projeye [buradan](https://partner-trendyol.netlify.app/) ulaşabilirsiniz.
### Desktop View

### Mobile View



| Freelance olarak yaptığım ilk projem. Trendyol Partner sayfasının aynısını yapmam istendi ve sıfırdan HTML, CSS ve Javascript yazarak yaptım. Aşağıdaki linkten sayfayı inceleyebilirsiniz. | css3,display-flex,html5,javascript | 2023-06-20T16:45:04Z | 2023-07-01T11:08:32Z | null | 1 | 0 | 32 | 0 | 0 | 2 | null | null | HTML |
dalbrechtmartin/TwineGame-PerduDansUneForet | main | <a name="readme-top"></a>
<!-- PROJECT SHIELDS -->
[![LinkedIn][linkedin-shield]][linkedin-url]
<div class="badge-base LI-profile-badge" data-locale="fr_FR" data-size="medium" data-theme="dark" data-type="HORIZONTAL" data-vanity="danaé-albrecht-martin-541a02244" data-version="v1">Danaé ALBRECHT--MARTIN</div>
<!-- PROJECT LOGO -->
<br />
<div align="center">
<h3 align="center"> Jeu narratif - Twine <br> "Vous êtes perdu dans une forêt" </h3>
<br>
<a align="center" href="https://dalbrechtmartin.github.io/TwineGame-PerduDansUneForet/">Demo</a>
</div>
<br>
<!-- ABOUT THE PROJECT -->
## À propos
<br>
Twine est un outil open source pour raconter des histoires interactives et non linéaires.
Généralement, il n'y a pas besoin d'écrire de code pour créer une histoire simple avec Twine. <br>
Cependant, il est tout à fait possible d'étendre une histoire avec des variables, une logique conditionnelle, des images, du CSS et du JavaScript etc. <br>
Comme réalisé ici, avec ce projet. <br>
Twine publie directement au format HTML. <br>
Le fichier [index.html](https://github.com/dalbrechtmartin/TwineGame-PerduDansUneForet/blob/main/index.html) à été créer automatiquement.
*Cliquez sur le lien de [demo](https://dalbrechtmartin.github.io/TwineGame-PerduDansUneForet/) pour tester le jeu.* <br>
!! JEU ENCORE EN COURS DE CRÉATION !!
<!--[![Product Name Screen Shot][product-screenshot]](https://example.com)-->
<br>
### Outils
<br>
* [Twine](http://twinery.org/)
<br>
### Languages
<br>
* ![HTML]
* ![CSS]
* ![JavaScript]
</div>
<br>
<!-- CONTACT -->
## Contact
<a href="mailto:dev.danae@gmail.com"><img src="https://img.shields.io/badge/Email-dev.danae@gmail.com-blue"></a>
<br>
<p align="right">(<a href="#readme-top">Retour en haut</a>)</p>
<!-- MARKDOWN LINKS & IMAGES -->
<!-- https://www.markdownguide.org/basic-syntax/#reference-style-links -->
<!--[license-shield]: https://img.shields.io/github/license/icube-interface-projet-paradise/paradise-project-interface.svg?style=for-the-badge
[license-url]: https://git.unistra.fr/icube-interface-projet-paradise/paradise-project-interface/blob/master/LICENSE.txt-->
[linkedin-shield]: https://img.shields.io/badge/LinkedIn-0077B5?style=for-the-badge&logo=linkedin&logoColor=white
[linkedin-url]: https://linkedin.com/in/danaé-albrechtmartin
[HTML]: https://img.shields.io/badge/HTML5-E34F26?style=for-the-badge&logo=html5&logoColor=white
[CSS]: https://img.shields.io/badge/CSS3-1572B6?style=for-the-badge&logo=css3&logoColor=white
[JavaScript]: https://img.shields.io/badge/javascript-%23323330.svg?style=for-the-badge&logo=javascript&logoColor=%23F7DF1E
| Small narrative game in French made with the help of Twine: an open-source tool for interactive telling, nonlinear stories. | css,css3,game,game-development,html,html-css,html-css-javascript,html5,javascript,jquery | 2023-06-26T19:49:52Z | 2023-06-26T20:39:42Z | null | 1 | 0 | 4 | 0 | 0 | 2 | null | null | HTML |
theprinceraj/PlayPal | main | # PlayPal
A simple discord bot with lots of commands meant for entertainment and fun.
| A simple discord bot with lots of commands meant for entertainment and fun. | discord,discord-bot,discord-js,entertainment,fun,javascript | 2023-06-12T17:13:54Z | 2024-05-03T10:44:07Z | null | 1 | 0 | 206 | 0 | 1 | 2 | null | null | JavaScript |
ashish-sng/Product-listing-platform | main | # Job Listing Platform - Client
## Description
Job Listing Platform is a web application built using the MERN stack (MongoDB, Express, React, Node.js). This repository contains the client-side code for the Job Listing Platform. The platform provides a user interface where users can post job projects, and anyone can like and comment on them. Only authorized users have the ability to add and edit projects on the platform. The application is mobile responsive and adapts to different screen sizes using media queries. JWT tokens are used for authorization and authentication.
## Video
https://github.com/ashish-sng/Product-listing-platform/assets/68745052/e5f2439c-11d9-4f6f-b0f6-97a0e579bd14
## Installation
1. Clone the repository:
git clone https://github.com/ashish-sng/Product-listing-platform
2. Navigate to the client directory:
cd job-listing-platform/client
3. Install the dependencies:
npm install
4. Set up environment variables:
- Create a `.env` file in the client directory.
- Add the necessary environment variables (e.g., API endpoint URL, etc.) to the `.env` file.
5. Start the development server:
npm start
6. Open your browser and visit `http://localhost:3000` to access the Job Listing Platform client.
## Features
- User-friendly interface for posting and interacting with job projects.
- Mobile-responsive design with media queries to adapt to different screen sizes.
- Integration with the Job Listing Platform API for data retrieval and manipulation.
- JWT token-based authentication and authorization for secure access.
- Like and comment functionality for projects.
## Contributing
Contributions are welcome! If you find any bugs or have suggestions for new features, please open an issue or submit a pull request.
## License
This project is licensed under the [MIT License](LICENSE).
| My product listing platform offers a user-friendly interface where authenticated users have the ability to add and edit products, creating a curated collection that reflects their offerings. With the implementation of JWT (JSON Web Tokens) for authentication, user accounts are secured and users can seamlessly access the platform. | context-api,forms,javascript,react-hooks,react-router,react-state-management,reactjs,useeffect-hook,usestate-hook | 2023-06-17T05:37:08Z | 2023-07-01T12:37:04Z | null | 1 | 0 | 42 | 0 | 0 | 2 | null | null | JavaScript |
cashfree/cashfree-browser-data | main |
# Cashfree Browser Data Collection SDK
     
The Cashfree Browser Data Collection SDK is a user-friendly solution that allows businesses to gather important data directly from users' browsers. This SDK seamlessly captures essential information about users' browsing behavior and preferences, providing businesses with valuable insights. By leveraging this browser-specific data, businesses can optimize their services, personalize user experiences, and make informed decisions based on accurate and reliable information.
#### Preview: https://cashfree.github.io/cashfree-browser-data/src/
## Installation
1. Using NPM package
```
npm i @cashfreepayments/cashfree-browser-data
```
```
import {getBrowserData} from "cashfree-browser-data";
```
2. Using CDN URL
```
<script src="https://cdn.jsdelivr.net/gh/cashfree/cashfree-browser-data@latest/dist/browser.min.js"></script>
```
Note: Make sure only one of the above is present in your application
## Implementation
1. Using NPM package
```
let data = await getBrowserData();
```
2. Using CDN URL
```
let data = await browserInfo.getBrowserData();
```
Make sure it is invoked inside an async function
## Parameters Fetched
The data variable will be a json object which has the following parameters
| Parameter | Information |
| -------------------- | ------------------------------------------ |
|device_type |Screen Information either mobile or desktop |
|session_id |Hash of Browser Cookies |
|device_hash |Unique Identifier for Browser |
|os_name |Device Operating System Name |
|os_version |Device Operating System Version |
|user_agent |Browser User Agent Data |
|browser_hash |Hash of Browser User Agent |
|browser_name |Browser Application Name |
|private_mode |Incognito or not |
|browser_version |Browser Version |
|cookie_enabled |Browser Cookies enabled or not |
|screen_width |Device Screen Width |
|screen_height |Device Screen Height |
|region_timezone |Timezone Data |
|region_timezone_offset|Timezone Offset Value |
|region_language |Browser Language |
|installed_fonts |Browser Installed Fonts |
|installed_plugins |Browser Installed Plugins |
|battery_percentage |Device Battery Percentage |
|gpu_renderer |GPU Information |
| cashfree-browser-data | cashfree,javascript,cashfree- | 2023-06-26T10:41:27Z | 2024-02-10T05:32:44Z | 2024-02-08T08:19:05Z | 2 | 9 | 32 | 0 | 2 | 2 | null | MIT | JavaScript |
Itsfoss0/alx-backend-javascript | main | 

## Modern JavaScript
This Repo documents the concepts, projects and resources learning Modern JavaScript(ES6), NodeJs and TypeScript at [ALX Africa](www.alxafrica.com) during the backend short specialization phase
## Table of contents
[0x00](0x00-ES6_basic): Introduction to ES6
[0x01](0x01-ES6_promise): JavaScript Promises
[0x02](0x02-ES6_classes): JavaScript Classes
[0x03](0x03-ES6_data_manipulation): Data Manipulation
[0x04](0x04-TypeScript): TypeScript
[0x05](0x05-Node_JS_basic): NodeJS Basics
[0x06](0x06-unittests_in_js): Unit testing
| This Repository holds the concepts, projects and documentation for my journey learning modern JavaScript (ES6) and TypeScript at ALX Africa in the Software Engineering specialization | alx-backend,alx-curriculum,babel,es6,holbertonschool,javascript,typescript | 2023-06-26T13:21:43Z | 2023-09-27T18:20:44Z | null | 1 | 0 | 391 | 0 | 0 | 2 | null | MIT | JavaScript |
philibus-dev/node-angular-docker-boilerplate | main | null | Boilerplate for a project that contains nodeJS (with express) and Angular that is dockerized. Basic functionality in the project that has angular make a call to nodeJS API to get data. This project is still under development. | actions,angular,boilerplate,docker,express,javascript,nodejs | 2023-06-25T15:55:50Z | 2023-11-26T05:12:33Z | 2023-11-19T15:11:16Z | 2 | 28 | 132 | 0 | 1 | 2 | null | MIT | JavaScript |
prasadashu/aws_predictive_platform | main | # AWS Predictive Platform
A predictive platform setup on AWS using Localstack.
- This project is a POC of a Machine Learning predictive platform based on an **Event Driven Architecture**.
- The current deployment of the platform uses the **Iris Dataset** to train a **Support Vector Machine Binary Classifier**.
<p align="center"><img src="./docs/architecture_diagram.png" width="1200"/></p>
- The training data is supplied to the platform in a `.npy` format. For the purpose of demonstration, a `.npy` file for the **Iris Dataset** has been provided in the `app` directory and instructions have been given below to upload the dataset and train the model.
- The training data accepts a default format where the last column is the target and remaining columns are features on which the Machine Learning model will be trained.
- The **Lambda** function handling the generation of *pre-signed URL* and sending a training request to **SQS** is a Javascript based function.
- The **Lambda** function handling training and prediction of the machine learning model is a Python based function.
- The **SQS** decouples the platform to allow asynchronous training of machine learning models.
## Steps to run source code
### 1. Clone this repository
- Clone the repsoitory.
```shell
git clone https://github.com/prasadashu/aws_predictive_platform.git
```
- Change directory to the cloned directory.
```shell
cd explore_localstack
```
### 2. Build the infrastructure
- Run the below shell script to build the platform.
- We are using `source` to run the shell file to export environment variables.
- The exported environment variables are used in other shell files.
```shell
source build_infrastructure.sh
```
### 3. Upload training data
- Change directory to `app`.
```shell
cd app
```
- The client shell file has two parameters.
- Pass `--userid` value specific to the user.
- Pass `--file` as the training data.
| :exclamation: | Note: For the purpose of demonstration, a `sample_data.npy` file has already been given in the `app` directory. |
|---------------|:------------------------|
```shell
bash client_app.sh --userid=<sample_userid> --file=sample_data.npy
```
### 4. Begin the training process
- Hit the **Platform** REST API on the `train` endpoint to begin the training process.
- Pass `--userid` value as specified above.
```shell
curl -s -d '{"userID":"<sample_userid>"}' -H "Content-Type: application/json" -X POST "http://localhost:4566/restapis/$PLATFORM_API_ID/test/_user_request_/train"
```
### 5. Get predictions on sample data
- Hit the **Predictive** REST API with sample instance on the `prediction` endpoint.
- Pass `userid` value as specified above.
- Pass `array` as a numeric array corresponding to the features.
```shell
curl -s -d '{"userID":"<sample_userid>", "array": [6.5, 2.8, 4.6, 1.5]}' -H "Content-Type: application/json" -X POST "http://localhost:4566/restapis/$PREDICTIVE_API_ID/test/_user_request_/prediction"
```
## Refrences
- Further documentation to expand functionality using AWS SDK can be found in the below link: [AWS SDK Documentation](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-s3/index.html) | This project demonstrates a Machine Learning predictive platform built on AWS using Localstack. It embraces an Event-Driven Architecture, ensuring smooth integration and scalability. | aws-cdk,docker,docker-compose,localstack,nodejs,api-gateway,javascript,lambda-functions,python,s3 | 2023-06-09T03:50:21Z | 2023-07-31T16:52:03Z | null | 1 | 7 | 84 | 0 | 0 | 2 | null | BSD-3-Clause | Shell |
SadmanYasar/prompt-treasure | main | null | Marketplace for Prompts | discord,graphql,javascript,meilisearch,nextauth,nextjs,strapi,swagger,typescript,cloudinary | 2023-06-28T14:50:24Z | 2023-07-26T05:48:55Z | null | 1 | 12 | 29 | 0 | 1 | 2 | null | null | TypeScript |
geekayushk/Club-Management-System | master | # Club Management System: Streamlining Participant and Co-ordinator Data with MySQL
This database management system provides immense value to club workshop organizers aiming to enhance their operations and effectively handle participants data. With its intuitive interface and robust functionalities, it presents an excellent solution for individuals seeking to efficiently organize and manage a thriving club events.
# Technology used :
phpmyadmin used for mysql database
php used for backend
html5, css, javascript and bootstrap4 for frontend
Xampp server
# Guidline :
step 1:- Install Xampp
step 2:- Open Xampp folder and paste the whole project inside htdocs folder
step 3:- Start Xampp server and start apache and mysql
step 4:- open phpmyadmin using this link http://localhost/phpmyadmin/ and create a database with name (dance) and name should be same otherwise it will show error
step 5:- inside the project folder a file is dance.sql is import in phpmyadmin inside dance database
step 6:- check your project http://localhost/cms/
step 7:- admin username :-admin and password : admin
if any query you can contact me at any time at linkedIn :- https://www.linkedin.com/in/ayush-kumar-72a6231b6/
If it is helpfull for you then, please give it a star



 | mini project for database management(DBMS) using mysql , its basically for managing the clubs of a university where a group can organize a workshop or event and can manage the participant and co-ordinator data. | club-management,css,database-management,dbms-project,html,javascript,mysql,php,xampp | 2023-06-23T19:39:07Z | 2023-06-24T06:44:45Z | null | 2 | 0 | 7 | 0 | 0 | 2 | null | null | CSS |
Dharshan078/sivadharshan-portfolio | main | <h2 align="center">
Personal Website of<br/>
<a href="https://sivadharshan.netlify.app/" target="_blank">Sivadharshan</a>
</h2>
<div align="center">
<img alt="Demo" src="./Images/readme-img1.png" />
</div>
<br/>
<center>
[](https://forthebadge.com)
[](https://forthebadge.com)
</center>
<h3 align="center">
🔹
<a href="https://github.com/Dharshan078/sivadharshan-portfolio/issues">Report Bug</a>
</h3>
## Built With
My personal portfolio <a href="https://sivadharshan.netlify.app/" target="_blank">Sivadharshan</a> which features some of my github projects as well as my resume and technical skills.<br/>
This project was designed & built using these technologies.
- React.js
- Node.js
- CSS3
- VsCode
- Figma
- Netlify
## Features
**📖 Multi-Page Layout**
**🎨 Styled with React-Bootstrap and Css with easy to customize colors**
**📱 Fully Responsive**
## Getting Started
Clone down this repository. You will need `node.js` and `git` installed globally on your machine.
## 🛠 Installation and Setup Instructions
1. Installation: `npm install`
2. In the project directory, you can run: `npm start`
Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
The page will reload if you make edits.
## Usage Instructions
Open the project folder and Navigate to `/src/components/`. <br/>
You will find all the components used and you can edit your information accordingly.
| Its an Open Source Portfolio that can be easily customized with your project and profile details. Contributions are always welcomed | css,css3,html,html5,javascript,javascript-framework,open-source,opensource,react,reactjs | 2023-06-17T11:07:48Z | 2024-05-13T13:35:04Z | null | 1 | 0 | 35 | 0 | 0 | 2 | null | null | JavaScript |
David-Inkheart/alx-files_manager | main | # File Manager Backend Service
This project is a summary of my back-end learning journey. It encompasses various concepts and technologies including authentication, NodeJS, MongoDB, Redis, pagination, and background processing.
The objective of this project is to build a simple platform for file management. The key features of this platform include:
1. User Authentication via Token: Users will be able to authenticate themselves using a token-based authentication system.
2. File Listing: Users can view a list of all files uploaded to the platform.
3. File Upload: Users can upload new files to the platform.
4. File Permission Management: Users can change the permission settings of their uploaded files.
5. File Viewing: Users can view the contents of a file.
6. Thumbnail Generation: The platform will automatically generate thumbnails for image files.
Throughout the development process, I will be guided step by step, but I will have the freedom to make certain implementation choices. This includes organizing code into separate files and utilizing the utils folder for additional functionality.
It is important to note that similar file management services already exist in real life. However, the purpose of this project is purely for learning and practicing the different components required to build a complete product.
## Learning Objectives
By completing this project, I aim to achieve the following learning objectives:
1. Creating an API with Express: I will gain a comprehensive understanding of how to build a robust API using the Express framework.
2. User Authentication: I will learn how to implement user authentication using token-based authentication techniques.
3. Data Storage with MongoDB: I will understand how to store and retrieve data using MongoDB, a popular NoSQL database.
4. Temporary Data Storage with Redis: I will explore the concept of using Redis as a temporary data store for efficient caching and session management.
5. Background Worker Setup and Usage: I will gain practical experience in setting up and utilizing background workers to perform asynchronous tasks.
Throughout the development process, I will strive to achieve a deep understanding of these concepts and be able to confidently explain them to others without the need for external references.
## Getting Started
To get started with this project, follow the instructions provided in the [installation guide](installation.md). This guide will walk you through the necessary steps to set up the project on your local machine and start building the file manager backend service.
## Contribution Guidelines
If you find any issues or have suggestions for improving this project, please feel free to contribute. You can follow the [contribution guidelines](contributing.md) to contribute to this project.
## License
This project is licensed under the [MIT License](LICENSE). Feel free to use and modify this project for your own learning purposes.
## Acknowledgements
I would like to express my gratitude to the mentors and instructors of alx_africa who have guided me throughout this learning journey. Their support and expertise have been invaluable in helping me gain a solid understanding of backend development and build this file manager backend service. | File Manager Backend Service | back-end-development,es6,expressjs,javascript,kue,mongodb,nodejs,nosql,redis | 2023-06-23T07:46:49Z | 2023-06-26T18:55:49Z | null | 1 | 0 | 25 | 0 | 0 | 2 | null | null | JavaScript |
Thoth1111/Multi-Step-Form | main | <a name="readme-top"></a>
<!-- TABLE OF CONTENTS -->
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Run tests](#run-tests)
- [👥 Authors](#authors)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [📝 License](#license)
<!-- PROJECT DESCRIPTION -->
# 📖 Multi-Step Form <a name="about-project"></a>
**Multi-Step Form** is my execution of a [multi-step-form](www.frontendmentor.io/challenges/multistep-form-YVAnSdqQBJ) from Frontend Mentor.
## 🛠 Built With <a name="built-with"></a>
### Tech Stack <a name="tech-stack">
React, Redux, Bootstrap
</a>
<details>
<summary>Client</summary>
</details>
<details>
<summary>Server</summary>
None
</details>
<details>
<summary>Database</summary>
</details>
<!-- Features -->
### Key Features <a name="key-features"></a>
- **State management using Redux**
- **Responsiveness**
<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://multi-step-form-hbyi.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:
-Access the repository and fork it
-OR click 'Code', copy the link and clone the repository to your local environment.
### Setup
Clone this repository to your desired folder:
'$ git clone https://github.com/Thoth1111/Multi-Step-Form.git' Run this in your terminal without the quotes.
### Run
'npm run dev'
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- AUTHORS -->
## 👥 Authors <a name="authors"></a>
👤 **Alwyn Androvelle**
- GitHub: [@Thoth1111](https://github.com/Thoth1111)
- Twitter: [@androvelle](https://twitter.com/androvelle)
- LinkedIn: [LinkedIn](https://www.linkedin.com/in/alwyn-androvelle-simiyu/)
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- FUTURE FEATURES -->
## 🔭 Future Features <a name="future-features"></a>
<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/Thoth1111/Multi-Step-Form/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 star the repo.
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- ACKNOWLEDGEMENTS -->
## 🙏 Acknowledgments <a name="acknowledgements"></a>
<p align="right">(<a href="#readme-top">back to top</a>)</p>
<!-- LICENSE -->
## 📝 License <a name="license"></a>
<p align="right">(<a href="#readme-top">back to top</a>)</p>
| My execution of a multi-step-form from Frontend Mentor using React & Redux | javascript,react,redux,bootstrap5 | 2023-06-29T17:20:34Z | 2023-08-29T06:30:15Z | null | 1 | 26 | 112 | 2 | 0 | 2 | null | null | JavaScript |
NimeshPiyumantha/Simple-To-Do_App | master | This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
## Getting Started
First, run the development server:
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
## Learn More
To learn more about Next.js, take a look at the following resources:
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
## Deploy on Vercel
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
# Simple-To-Do_App
This is a Learn CRUD Operations in Next js 13.
###
[](https://wakatime.com/badge/user/bde2acba-42bd-46e8-a905-d74c6f260407/project/964f9727-65f2-459e-90da-d678ee02a4d0)
### - Technology
- Next Js 13
- React Ts
- TypeScript
- JavaScript
- Tailwind CSS
- JSON Server
<div align="center">
<img src="https://github.com/NimeshPiyumantha/Simple-To-Do_App/blob/master/src/assests/gif/todoApp.gif" alt="Alt Text">
</div>
#### - Setup in Project
### `Install Next js last version`
```
npx create-next-app@latest
```
### `Install Tailwindcss`
```
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -p
```
### `Install Daisy UI last version`
```
npm i -D daisyui@latest
```
### `Install React Icons`
```
npm install react-icons --save
```
### `Install JSON Server`
```
npm install -g json-server
```
### `Install uuid`
```
npm i uuid
```
##
### - `Run Project`
#### - Front End
```
npm run dev
```
#### - Back End
```
npm run json-server
```
##
###
### Clone this repository ✅
```md
https://github.com/NimeshPiyumantha/Simple-To-Do_App.git
```
## Connect with me
#### If you have any bugs or issues , If you want to explain my code please contact me on :
<div align="center">
<br><b>MAIL ME</b>
<a href="mailto:nimeshpiyumantha11@gmail.com">
<img width="20px" src="https://github.com/NimeshPiyumantha/red-alpha/blob/main/gmail.svg" />
</a></p>
</div>
##
<p align="center">
<a href="https://twitter.com/NPiyumantha60"><img align="center" src="https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/twitter.svg" alt="__NimeshPiyumantha__" height="30" width="40" /></a>
<a href="https://www.linkedin.com/in/nimesh-piyumantha-33736a222" target="blank"><img align="center" src="https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/linked-in-alt.svg" alt="https://www.linkedin.com/public-profile/settings?trk=d_flagship3_profile_self_view_public_profile" height="30" width="40" /></a>
<a href="https://www.facebook.com/profile.php?id=100025931563090" target="blank"><img align="center" src="https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/facebook.svg" alt="Nimesh Piyumantha" height="30" width="40" /></a>
<a href="https://www.instagram.com/_.nimmaa._/" target="blank"><img align="center" src="https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/instagram.svg" alt="_.nimmaa._" height="30" width="40" /></a>
</p>
##
<div align="center">





</div>
| This is a Learn CRUD Operations in Next js 13. | javascript,json-server,nextjs,reactts,tailwindcss,typescript | 2023-06-26T09:22:36Z | 2023-06-26T20:37:51Z | null | 1 | 0 | 61 | 0 | 0 | 2 | null | MIT | TypeScript |
emilyfas/The-Office-Survival | main | # The Office Survival

## Find the Scranton Strangler
Este projeto é um site interativo baseado na série de televisão "The Office". O objetivo principal é desvendar a identidade do famoso "Scranton Strangler" ao clicar em cards com fotos dos personagens da série. Cada vez que um card é selecionado, uma mensagem é exibida indicando se o personagem é o Scranton Strangler ou não. Além disso, o site apresenta um vídeo com uma cena icônica envolvendo o personagem selecionado.
---
# Índice
* [Título e Imagem de capa](#the-office-survival)
* [Sobre o Site](#find-the-scranton-strangler)
* [Índice](#índice)
* [Funcionalidades principais](#funcionalidades)
* [Como utilizar o site](#acesso-ao-projeto)
* [Contribuição](#contribuicao)
* [Responsividade](#responsividade)
* [Licença](#licensa)
* [Tecnologias utilizadas](#tecnologias-utilizadas)
* [Contato](#contato)
---
<div id="funcionalidades">
## Funcionalidades principais: <img src="https://github.com/Tarikul-Islam-Anik/Animated-Fluent-Emojis/blob/master/Emojis/Objects/Desktop%20Computer.png?raw=true" alt="motion emoji" width="30" height="30"/>
- Exibição de cards com fotos dos personagens de "The Office".
- Verificação interativa para identificar se o personagem clicado é o Scranton Strangler.
- Feedback imediato com uma mensagem indicando a resposta correta.
- Vídeo com uma cena icônica do personagem selecionado (Os vídeos foram extraídos de episódios da série "The Office").
</div>
<div align="right">
[Índice :point_up:](#índice)
</div>
---
<div id="acesso-ao-projeto">
## Como utilizar o site: <img src="https://github.com/Tarikul-Islam-Anik/Animated-Fluent-Emojis/blob/master/Emojis/People%20with%20professions/Technologist%20Light%20Skin%20Tone.png?raw=true" alt="motion emoji" width="35" height="35"/>
1. Acesse o site do projeto através do link [https://emilyfas.github.io/The-Office-Survival/].
2. Na página principal, você verá uma grade de cards contendo fotos dos personagens de "The Office".
3. Clique em um card para selecionar um personagem.
4. Após selecionar o personagem, uma mensagem será exibida indicando se o personagem é o Scranton Strangler ou não.
5. Além da mensagem, um vídeo com uma cena icônica do personagem será exibido para sua diversão.
6. Repita os passos 3 a 5 para tentar encontrar o verdadeiro Scranton Strangler!
Você tambem pode [acessar o código fonte do projeto inicial](https://github.com/emilyfas/The-Office-Survival.git) ou [baixar o arquivo .zip](https://github.com/emilyfas/The-Office-Survival/archive/refs/heads/main.zip).
</div>
<div align="right">
[Índice :point_up:](#índice)
</div>
---
<div id="contribuicao">
## Contribuição: <img src="https://github.com/Tarikul-Islam-Anik/Animated-Fluent-Emojis/blob/master/Emojis/People/People%20Hugging.png?raw=true" alt="motion emoji" width="35" height="35"/>
Se você quiser contribuir para o desenvolvimento deste projeto, siga as etapas abaixo:
1. Faça um fork deste repositório.
2. Crie uma branch para suas modificações (`git checkout -b feature/nova-funcionalidade`).
3. Faça as alterações desejadas e adicione uma descrição clara do que foi implementado.
4. Envie um pull request descrevendo suas modificações e aguarde a revisão.
</div>
<div align="right">
[Índice :point_up:](#índice)
</div>
---
<div id="responsividade">
## Responsividade: <img src="https://github.com/Tarikul-Islam-Anik/Animated-Fluent-Emojis/blob/master/Emojis/Objects/Mobile%20Phone%20with%20Arrow.png?raw=true" width="35" height="35"/>
O site é totalmente responsivo com dois <i>break points</i> para garantir a funcionalidade do site em todos os tipos de telas, grandes, medias e pequenas.
<img src="https://github.com/emilyfas/The-Office-Survival/assets/115494759/cab492e7-df25-459c-80f2-8ec46a9e6fb4" width="50%">
<img src="https://github.com/emilyfas/The-Office-Survival/assets/115494759/587cc44f-e89a-400e-b4eb-9c8eaca2cf90" width="25%">
<img src="https://github.com/emilyfas/The-Office-Survival/assets/115494759/b2b7c50e-e2e3-405e-96c8-70909dbd8532" width="20%">
</div>
<div align="right">
[Índice :point_up:](#índice)
</div>
---
<div id="licensa">
## Licença: <img src="https://github.com/Tarikul-Islam-Anik/Animated-Fluent-Emojis/blob/master/Emojis/Objects/Page%20with%20Curl.png?raw=true" alt="motion emoji" width="25" height="25"/>
Este projeto está licenciado sob MIT License. Para mais detalhes, consulte o arquivo `LICENSE.md`.
</div>
<div align="right">
[Índice :point_up:](#índice)
</div>
---
<div id="tecnologias-utilizadas">
## Tecnologias usadas no projeto: <img src="https://github.com/Tarikul-Islam-Anik/Animated-Fluent-Emojis/blob/master/Emojis/Objects/Toolbox.png?raw=true" alt="motion emoji" width="25" height="25"/>



</div>
<div align="right">
[Índice :point_up:](#índice)
</div>
---
<div id="contato">
## Contato: <img src="https://github.com/Tarikul-Islam-Anik/Animated-Fluent-Emojis/blob/master/Emojis/Hand%20gestures/Call%20Me%20Hand%20Light%20Skin%20Tone.png?raw=true" alt="motion emoji" width="25" height="25"/>
### Emilly Fernandes
Se você tiver alguma dúvida, sugestão ou quiser entrar em contato:
<div>
<a href="https://wa.me/5531989018696?text=Me+mande+um+Oi+%3A%29" target="_blank"><img src="https://img.shields.io/badge/WhatsApp-25D366?style=for-the-badge&logo=whatsapp&logoColor=white" target="_blank"></a>
<a href="https://instagram.com/emillygarai" target="_blank"><img src="https://img.shields.io/badge/-Instagram-%23E4405F?style=for-the-badge&logo=instagram&logoColor=white" target="_blank"></a>
<a href="https://twitter.com/emilly_fernads" target="_blank"><img src="https://img.shields.io/badge/Twitter-1DA1F2?style=for-the-badge&logo=twitter&logoColor=white" target="_blank"></a>
<a href = "mailto:emilly.fernandesads@gmail.com"><img src="https://img.shields.io/badge/Gmail-D14836?style=for-the-badge&logo=gmail&logoColor=white" target="_blank"></a>
<a href="https://www.linkedin.com/in/emilly-fernandes" target="_blank"><img src="https://img.shields.io/badge/-LinkedIn-%230077B5?style=for-the-badge&logo=linkedin&logoColor=white" target="_blank"></a>
</div>
</div>
<div align="right">
[Índice :point_up:](#índice)
</div>
---
<div align="center">
Divirta-se encontrando o Scranton Strangler! <img src="https://media.giphy.com/media/7j2hfyeVcDtf2/giphy.gif" width="50" />
</div>
---
| Um site engraçado e totalmente responsivo, baseado na serie The Office. | css,funny,html,html-css-javascript,javascript,project | 2023-06-21T12:10:25Z | 2023-06-21T23:25:24Z | null | 1 | 0 | 28 | 0 | 0 | 2 | null | MIT | HTML |
Alamin0x01/Curry-Kingdom | main | # Project name: Curry Kingdom
## Live Link
Hosted in Firebase: https://chef-recipe-hunter-client-side.web.app/
## Technology
- React
- Tailwind
- Firebase
- Swiper
- DaisyUI
- React-Toastify
- React-pdf/renderer
- React-icons
- React-lazy
- React-to-pdf
- React-to-print
## Functionalities
- Anyone can register and login
- User can see some chefs data and category in our home page
- User can add chefs to favorite list
- User can add recipes to favorite list
- User Can user their favorite recipes
## Complete Project 💫
- Github Repo -> [Client-Side](https://github.com/Alamin0x01/Curry-Kingdom)
- Github Repo -> [Server-Side](https://github.com/Alamin0x01/Curry-Kingdom-Server)
| Top Chef: World All-Stars | firebase,javascript,reactjs,tailwind | 2023-06-19T15:50:42Z | 2023-10-26T17:39:40Z | null | 1 | 1 | 23 | 0 | 0 | 2 | null | null | JavaScript |
Alamin0x01/Curry-Kingdom-Server | main | # Curry-Kingdom-Server-side
Hosted in Vercel: https://chef-recipe-hunter-server-side-snowy.vercel.app/
## Complete Project 💫
- Github Repo -> [Client-Side](https://github.com/Alamin0x01/Curry-Kingdom)
- Github Repo -> [Server-Side](https://github.com/Alamin0x01/Curry-Kingdom-Server)
| Curry Kingdom Server Side | express,javascript | 2023-06-19T17:05:11Z | 2023-06-20T04:59:06Z | null | 1 | 0 | 13 | 0 | 0 | 2 | null | null | JavaScript |
laeth0/Portfolio | main | # Getting Started with Create React App
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
## Available Scripts
In the project directory, you can run:
### `npm start`
Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
The page will reload when you make changes.\
You may also see any lint errors in the console.
### `npm test`
Launches the test runner in the interactive watch mode.\
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
### `npm run build`
Builds the app for production to the `build` folder.\
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.\
Your app is ready to be deployed!
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
### `npm run eject`
**Note: this is a one-way operation. Once you `eject`, you can't go back!**
If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.
You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.
## Learn More
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
To learn React, check out the [React documentation](https://reactjs.org/).
### Code Splitting
This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
### Analyzing the Bundle Size
This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
### Making a Progressive Web App
This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
### Advanced Configuration
This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
### Deployment
This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
### `npm run build` fails to minify
This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
| this is my first portfolio .I am proud to have reached this advanced stage | css3,flowbite,html5,javascript,reactjs,tailwindcss,tailwindcss-plugin,portfolio-website,responsive-design | 2023-06-24T09:33:24Z | 2023-06-24T09:34:05Z | null | 1 | 0 | 3 | 0 | 0 | 2 | null | null | JavaScript |
Guilherme-G-Cadilhe/Filmpire | main | <h1 align="center">
<img alt="Filmpire" title="Filmpire" src="/public/favicon.ico" width="50px" />
Filmpire
</h1>
<p align="center">
<a href="#about">About</a> |
<a href="#Features">Features</a> |
<a href="#Technologies">Technologies</a> |
<a href="#Learned">License</a>
</p>
---
<p align="center">
<img alt="FilmpireDemo" title="Filmpire" src="./public/githubMedia/fullDemo.gif"/>
</p>
---
<br>
<details align = "left">
<summary> <b> Summary of the Contents </b> <i>(Click here to Expand it!)</i> </summary>
<br>
<!--ts-->
- About
- Features
- Toggleable NightMode
- Choose the Language of your choosing, PT-BR or EN-US
- Navigate with an AI Assistant when in the EN-US language
- Expanding and Responsive Menu Hamburguer with Avaliable Genres and Categories
- Up to Date Movie Cards dynamic generated via API acting as Links to Movie Details
- Rating and Tooltip of ?/10 of each Movie Card on Hover
- Dynamic Genre list generated via API
- Search for any Movie using the SearchBar
- Create your account to save your favorite movies and see personalized recommendations.
- Movie Details with:
- Titles, Taglines, Ratings, Genres, Overview, Top Cast
- Links to Website, IMDB, Trailer Modal with embeded Youtube Video, Favorite Option and Watchlist Option
- Recommendations of Movies based on your Favorites, Watchlist and History
- Actor Details with:
- Birthday
- Biography
- Movies it was casted also
- Profile Details with:
- Favorite Movies
- Watchlisted Movies
- Technologies
- Installing and Contributing
- What have i learned?
- License
- Contributors
- Author
<!--te-->
</details
<br>
<br>
<h1 align="center" >
<a href="https://bobnini-filmpire.netlify.app/">🚀 Website Page With Deploy on NETLIFY </a>
</h1>
<h2 id ="about" align="center">📌 About</h2>
**Filmpire** is an AI-Powered Movie Web Application that replicates the popular features of Netflix. It is built using advanced JavaScript tools, including React.js, Redux, Material UI, and Alan AI.
---
> **Track** all your **Movies** with **Filmpire**, never miss the latests and popular Movies, and easily **Learn more about its Details**, Cast and Save as Favorite or to Watch Later.
<h2 id="Features" align="center">⚙️ Features</h2>
<h3> 🧷 Toggleable NightMode</h3>
- On the **Navigation Bar** you can easily toogle between **Dark and Light modes** using the **First Icon (Second Icon on Mobile)**.
<details>
<summary> <b> Demonstration Gif </b> <i>(Click here to Expand it!)</i> </summary>
<br>
<img alt="X" title="Filmpire" src="./public/githubMedia/darkmode-feature.gif" width="800px" />
</details
<br>
---
<h3> 🧷 Choose the Language of your choosing, PT-BR or EN-US</h3>
- On the **Navigation Bar** you can easily toogle languages between **PT-BR and EN-US**.
- Changing Language changes the **UI** and the **Data**.
- When in **EN-US**, the **AI Assistant** is **ENABLED**.
<details>
<summary> <b> Demonstration Gif </b> <i>(Click here to Expand it!)</i> </summary>
<br>
<img alt="X" title="Filmpire" src="./public/githubMedia/language-feature.gif" width="800px" />
</details
<br>
---
<h3> 🧷 Navigate with an AI Assistant (EN-US)</h3>
- When in **EN-US**, the **AI Alan Button appears on the Bottom Right Corner of the Screen**.
- Make it **Listen for Voice Commands after Clicking on its Icon** ( Allow Access to Microphone First).
- Try to say **"Help"** or **"What do you do?"** to get an Overview about the Application and some Commands.
<details>
<summary> <b> List of Commands </b> <i>(Click here to Expand it!)</i> </summary>
**Overview**
> 'Instructions','Help','What do you do?','What does this app do?', 'What can I do here?', 'What is this app about?'
> **Toggle DarkMode**
> 'Make it dark', 'darkmode', 'dark'
> **Toggle LightMode**
> 'Make it light', 'lightmode', 'light'
> **Login**
> 'Log in', 'Login'
> **Logout**
> 'Log out', 'Logout'
> **Go to an Genre(Fantasy) or Category(Top Rated, etc.)**
> 'go to {Genre/Category}'
> **Search for a Movie**
> 'search for {name of movie}'
> **Randomize going to a Genre/Category**
> 'surprise me'
</details>
<details>
<summary> <b> Demonstration Gif </b> <i>(Click here to Expand it!)</i> </summary>
<br>
<img alt="X" title="Filmpire" src="./public/githubMedia/AI-feature.gif" width="800px" />
</details
<br>
---
<h3> 🧷 Menu Hamburguer ( Mobile Friendly )</h3>
- On **Mobile** the Fixed Menu turns into a **Expanding and Responsive Menu Hamburguer with Avaliable Genres and Categories**.
- Clicking on any of the Options refreshes the Movies and Closes the Menu.
<details>
<summary> <b> Demonstration Gif </b> <i>(Click here to Expand it!)</i> </summary>
<br>
<img alt="X" title="Filmpire" src="./public/githubMedia/menuHamburguer-feature.gif" width="200px" height="400px" />
</details
<br>
---
<h3> 🧷 Search Bar</h3>
- **Search for Movies Names** using the search bar in the Middle of the Navigation Bar.
<details>
<summary> <b> Demonstration Gif </b> <i>(Click here to Expand it!)</i> </summary>
<br>
<img alt="X" title="Filmpire" src="./public/githubMedia/search-feature.gif" width="800px" />
</details
<br>
---
<h3> 🧷 Profile Account</h3>
- Create your account to save your **Favorite Movies** and see personalized recommendations..
<details>
<summary> <b> Demonstration Gif </b> <i>(Click here to Expand it!)</i> </summary>
<br>
<img alt="X" title="Filmpire" src="./public/githubMedia/profile-feature.gif" width="800px" />
</details
<br>
---
<h3> 🧷 Movie Details</h3>
- **Up to Date** Movie Cards dynamic generated via API acting as **Links to Movie Details**.
- Movie Details Page with the following Features:
- **Titles, Taglines, Ratings, Genres, Overview, Top Cast**.
- Links to: **Website, IMDB, Trailer Modal with embeded Youtube Video, Favorite Option and Watchlist Option**.
- **Recommendations of Movies**
<details>
<summary> <b> Demonstration Gif </b> <i>(Click here to Expand it!)</i> </summary>
<br>
<img alt="X" title="Filmpire" src="./public/githubMedia/movieDetails-feature.gif" width="800px" />
</details
<br>
---
<h3> 🧷 Actor Details</h3>
- **Birthday, Biography**.
- **List of Movies it was casted also** on the Recommendations at the Bottom.
<details>
<summary> <b> Demonstration Gif </b> <i>(Click here to Expand it!)</i> </summary>
<br>
<img alt="X" title="Filmpire" src="./public/githubMedia/actorDetails-feature.gif" width="800px" />
</details
<br>
---
<h3> 🧷 Profile Details</h3>
- **List of Favorited Movies on the Account**.
- **List of Watchlisted Movies on the Account**.
<details>
<summary> <b> Demonstration Gif </b> <i>(Click here to Expand it!)</i> </summary>
<br>
<img alt="X" title="Filmpire" src="./public/githubMedia/profile-feature.gif" width="800px" />
</details
<br>
---
<h2 id="Technologies" align="center">💻 Technologies</h2>
In this project it was utilized: <i>**Javascript, React && Redux ToolKit, MUI, Alan AI, ESLint**</i><br><br>
- <i>**JavaScript**</i> - The **Programming Language**.<br>
- <i>**React && Redux ToolKit**</i> - The **Builder of User Interfaces** and responsible for **Persisting Data** and **Dynamically Consuming APIs**.<br>
- <i>**MUI**</i> - The **Page layout, Responsiveness and Style**<br>
- <i>**Alan AI**</i> - The **Voice AI Assistant** that **Navigates and Interacts** with the application.<br>
- <i>**ESLint**</i> - The **Tool that makes your Code Clean**.<br>
<h2 align="center"> 📦 Installing and Contributing</h2>
To get started, fork the repository and then run the following commands:
1. Install NPM packages
```sh
npm install
```
2. Configure your .ENV
Get a free TMDB API Key at - [https://www.themoviedb.org/](https://www.themoviedb.org/).
```sh
REACT_APP_TMDB_KEY=<put your key here>
```
(Optional) Get your Alan AI Key at - [https://alan.app/](https://alan.app/)
```sh
REACT_APP_ALAN_SDK_KEY=<put your key here>
```
3. Start the Local Server
```sh
npm run start
```
4. If you have problems connecting with REST Calls, disable any Adblock/Ghostery or similar extensions.
<br>
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.
</br></br>
✏️ To contribute, do the following:
1. Fork the Project
2. Create your Feature Branch. (`git checkout -b feature/AmazingFeature`)
3. Commit your Changes. (`git commit -m 'Adding some AmazingFeature'`)
4. Push to the Branch. (`git push origin feature/AmazingFeature`)
5. Open a Pull Request
<h2 id="Learned" align="center">☕ What have i learned?</h2>
> With this project i was able to further advance my **Technical Skills and Knowledge** with React and Javascript in general, using **Redux Toolkit** to persist my Data and **RTK Query** to easily integrate the whole Aplication by **Dynamically Consuming APIs**<br>
> It was also my first contact with **Material UI (MUI)** and i love how simple it is to create **Good and Responsive Styles** with its **suite of UI tools full of fully-loaded component library**. Its also easy to **Integrate your Custom Styles** with it too.<br>
> Got to learn how to **Use and Integrate a Personal AI Assistant** on the Application, capable of **Interacting with different Options and Making Actions via English Voice Command**.<br>
> I learned how to setup and configure **ESlint** to my needs to mantain **Clean and Formatted Structured Code**.<br>
> Also learned the one of the best **Refactoring and Componentization Practices** on the actual Market. <br>
> It inspired me to create my own **Custom Language Options** for the User to **Switch between 'pt-BR' and 'en-US'**.
## 📝 License
Distributed under the **MIT** License.
## 🤝 Contributors
Thanks to the following people who contributed to this project in some way:
<br><br>
<b>Nobody yet, see something that you want to improve on this project? Share it with me!.<b/>
<!--<table>
<tr>
<td align="center">
<a href="">
<!--<img src="" alt=""/><br>
<sub>
<b></b>
</sub>
</a>
</td>
</tr>
</table>-->
<h2>Author</h2>
Made with 💜 and dedication by me **Guilherme G Cadilhe** Aka: **Bobnini**. <br>
<h2>Acknowledgments</h2>
Used resources:
- [The Movie DB API Documentation](https://developers.themoviedb.org/3/getting-started/introduction)
- [Alan AI Documentation](https://alan.app/docs/)
- [MUI Library](https://mui.com/)
- [JavaScript Mastery](https://www.jsmastery.pro/)
| AI-Powered Movie Web Application that replicates the popular features of Netflix. It is built using advanced JavaScript tools, including React.js, Redux, Material UI, and Alan AI. | alan-ai,javascript,material-ui,mui-icons,mui-material,react,redux-toolkit | 2023-06-12T14:59:57Z | 2023-07-16T02:36:04Z | null | 1 | 0 | 23 | 0 | 0 | 2 | null | MIT | JavaScript |
Tsiangana/luterest | master | Pinterest Clone
Recriei o site do Pinterest. 🚀 Começando
Essas instruções permitirão que você obtenha uma cópia do projeto em operação na sua máquina local para fins de desenvolvimento e teste.
Consulte Implantação para saber como implantar o projeto. 📋 Pré-requisitos
Mysql Xampp
Dar exemplos
Faça download do xampp no google e istale-o em seguida faça download do Mysql
Uma série de exemplos passo-a-passo que informam o que você deve executar para ter um ambiente de desenvolvimento em execução.
Essa etapa será:
No repositório tem uma pasta de nome bd dentro da pasata possui a base de dados .
Para usar:
Abra o Xammp ativa o Mysql e o Apache e dê dois cliques no arquivo dentro da pasta bd
⚙️ Executando os testes
Quando dar o clique a base de dados ja estará instalada, depois apenas de acessar ao arquivo atraves do apache 🔩 Analise os testes de ponta a ponta
Apache
⌨️ Acessando o apache
Com o Apache instalado, abra o seu navegador e digite "Localhost"
Serás levado para uma area com nome de várias pastas, selecione o nome da pasta do arquivo
📦 Dúvidas Em caso de dúvida podes sempre criar uma issue e me dizer em que voce tem problemas.
🛠️ Construído com
Mysql - Base de dados
Xampp - Apk que transforma a sua máquina em um servidor locar
Html - estrutura
CSS - estilizaçao
JS - Dinámica
Php - Linguagem de comunicaçao entre a base de dados e o front-end
🖇️ Colaborando
Por favor, leia o COLABORACAO.md para obter detalhes sobre o nosso código de conduta e o processo para nos enviar pedidos de solicitação. 📌 Versão
Nós usamos SemVer para controle de versão. Para as versões disponíveis, observe as tags neste repositório. ✒️ Autores
Você também pode ver a lista de todos os colaboradores que participaram deste projeto. 📄 Licença
Este projeto está sob a licença (sua licença) - veja o arquivo LICENSE.md para detalhes. 🎁 Expressões de gratidão
Conte a outras pessoas sobre este projeto 📢;
Convide alguém da equipe para uma cerveja 🍺;
Um agradecimento publicamente 🫂;
etc.
⌨️ com ❤️ por Tsiangana 😊
| Este é um site do genero rede social de compartilhamento de imagem, ou seja, é um cole do "Printerest" mais numa versao um pouqinho mais simples | css,css3,html,html5,javascript,mysql-database,php,sql | 2023-06-16T18:53:47Z | 2024-01-29T20:36:43Z | null | 1 | 0 | 8 | 0 | 1 | 2 | null | MIT | JavaScript |
AgusT613/app_crud_rest_api | main | # Application with a RestAPI and Database
This proyect implements the standard python library sqlite3 to create a database
and connects to it through different methods and functions.
### Content
- Backend
- FastAPI
- SQLite3
- [Random User API](randomuser.me)
## About the proyect
The main class `Table` (on `tables.py`) is an object in which it is being implemented
the different queries as methods and functions that can be called from the FastAPI
application.
### How it starts
> Creates a new table object named 'Users'
```
user_table = Table('Users')
```
> Creates the table 'Users' on database
```
user_table.create()
```
> Import a number of random users from [Random User API](randomuser.me)
```
user_table.import_random_users(45)
```
In addition, the data will be able to be manipulated by a frontend user
in future commits.
## About the path of the database
By default the database is named as `user.db` in the same directory as `tables.py`.
| App CRUD with FastAPI and SQLite3 | api,application,backend,crud,database,fastapi,frontend,python,sqlite3,randomuser-api | 2023-06-28T02:46:04Z | 2023-07-07T00:52:02Z | null | 1 | 0 | 19 | 1 | 1 | 2 | null | null | Python |
furkansimw/Ecommerce_Stationery__NextJs | main | # [Preview](https://ecommerce-stationery-next-js.vercel.app/)
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
## Getting Started
First, run the development server:
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
You can start editing the page by modifying `app/page.js`. The page auto-updates as you edit the file.
This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
## Learn More
To learn more about Next.js, take a look at the following resources:
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
## Deploy on Vercel
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
| Ecommerce Stationery NextJs | ecommerce,nextjs,reactjs,javascript,sass,typescript | 2023-06-21T20:05:46Z | 2023-06-23T17:39:39Z | null | 1 | 0 | 7 | 0 | 1 | 2 | null | MIT | JavaScript |
sarthakvs/url_shortener | main | # Url-Shortener
The URL Shortener is a web application that generates shorter URLs for long links. It consists of a client-side component (HTML, CSS, JS) and a server-side component (Node.js, Express, MongoDB).
The client-side allows users to enter long URLs, sends requests to the server, and displays the generated short URLs. It dynamically updates an HTML table to show the stored long URLs and their corresponding short URLs.
The server-side handles URL shortening, retrieval, and redirection. It utilizes Node.js, Express, and MongoDB. Existing URLs are fetched from the database, and new ones are stored in the database url-shortener.urls

Github Repo:- [sarthakvs/url_shortener](https://github.com/sarthakvs/url_shortener)
# How to run
1. Download and extract the project
2. In the command prompt,go to the project Directory and run `npm install`
3. After installing run `npm start` or `nodemon server.js`
4. Enjoy :)
| A web application that allows users to shorten long URLs and generate shorter, more manageable URLs.This project is built using Node.js, Express, and MongoDB for the server-side implementation, and HTML, CSS, and JavaScript for the client-side user interface. | css,express,html,mongodb,node,javascript | 2023-06-22T08:45:57Z | 2024-04-11T19:57:34Z | null | 2 | 2 | 28 | 0 | 1 | 2 | null | null | JavaScript |
abbasbayat0/CVProject-expired | main | # CVProject
my first project

| my first project | css,cv,first-project,html,javascript,personal-website,resume | 2023-06-11T16:44:24Z | 2023-11-24T09:19:24Z | null | 1 | 0 | 38 | 0 | 0 | 2 | null | null | JavaScript |
SAFAIDAM/PFA_eventmemo | main | # PFA_eventmemo Platfome
| This is a flask app that allows users / customers to create / manage / track their events and also allows people how wants to go to your event get an invitation this app is build with FLASK framework / PYTHON / JAVASCRIPT / SQL / HTML / CSS | flask,flask-admin,flask-application,flask-login,flask-sqlalchemy,javascript,python | 2023-06-18T20:43:57Z | 2023-07-26T15:43:02Z | null | 1 | 0 | 23 | 0 | 0 | 2 | null | null | Python |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.