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
K0ppai/leaderboard-list-app
dev
# Leaderboard List Project <a name="readme-top"></a> <div align="center"> <br/> <h3><b>Leaderboard List Project</b></h3> </div> <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment](#triangular_flag_on_post-deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [📝 License](#license) <!-- PROJECT DESCRIPTION --> # 📖 Leaderboard List Project <a name="about-project" id="about-project"></a> ***Leaderboard List Project*** is a website that displays scores submitted by different players. ## 🛠 Built With <a name="built-with"></a> - HTML. - CSS. - JavaScript - Webpack ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="https://developer.mozilla.org/en-US/docs/Web/HTML">HTML</a></li> <li><a href="https://developer.mozilla.org/en-US/docs/Web/CSS">CSS</a></li> <li><a href="https://www.javascript.com/">JavaScript</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> - **Use of async functions.** <!-- ![Screenshot](./images/Screenshot%202.png) --> <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo" id="live-demo"></a> - Click here for [live](https://leaderboard-list.netlify.app/) demo. <!-- - You can find the website [here](https://ochiengsteven.github.io/awesome-books/) --> <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- GETTING STARTED --> ## 💻 Getting Started <a name="getting-started"></a> To get a local copy up and running, follow these steps. ### Prerequisites In order to run this project you need: - A Chrome browser - npm ### Setup Clone this repository to your desired folder: ```sh cd my-folder git clone https://github.com/K0ppai/leaderboard-list-app.git ``` ### Install Install the prerequisites this project using: ```sh cd leaderboard-list-app npm init -y npm install --save-dev hint@7.x npm install --save-dev stylelint@13.x stylelint-scss@3.x stylelint-config-standard@21.x stylelint-csstree-validator@1.x ``` ### Usage To run the project: ``` index.html ``` ### Run tests To run tests after setting up the linters, run the following command: ```sh npx hint . ``` ```sh npx stylelint "**/*.{css,scss}" ``` <!-- Example command: ```sh bin/rails test test/models/article_test.rb ``` ---> ### Deployment You can deploy this project using: - Run index.html on your preferred browser. <!-- Example: ```sh ``` --> <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> 👤 **Paing Soe Thu** - GitHub: [@K0ppai](https://github.com/K0ppai) - Twitter: [@_koppai_](https://twitter.com/_koppai_) - LinkedIn: [LinkedIn](https://www.linkedin.com/in/paingsoe-thu) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> - [ ] **Send and receive data from API** - [ ] **Deploy live link** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- CONTRIBUTING --> ## 🤝 Contributing <a name="contributing"></a> Contributions, issues, and feature requests are welcome! Feel free to check the [issues page](../../issues/). <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- SUPPORT --> ## ⭐️ Show your support <a name="support"></a> If you like this project, don't forget to leave a star. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> - Thank you for code reviews and pull requests! <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> - This project is [MIT](./LICENSE) licensed. </br> <p align="right">(<a href="#readme-top">back to top</a>)</p>
This is an app that you can use to input your scores. It displays all of the user inputs from anywhere from best score to worst score.
api,bootstrap,javascript
2023-06-20T06:40:21Z
2023-07-27T10:48:41Z
null
1
3
24
1
0
2
null
MIT
JavaScript
jd-apprentice/discord-slack-gateway
master
# discord-slack-gateway ![IMAGE](https://venngage-wordpress.s3.amazonaws.com/uploads/2021/07/Slack-Discord-integration.png) Image from [HERE](https://venngage.com/blog/discord-integrations/) ## What is this? ![image](https://github.com/jd-apprentice/discord-slack-gateway/assets/68082746/a65751ae-885f-4d9e-9d4c-d911f4f815e3) This is a gateway between Discord and Slack. It allows you to send messages from Discord to Slack and vice versa. ## How to use it? ### Installation ``` npm i discord-slack-gateway ``` ### Example ```js const { DiscordSlackGateway } = require('discord-slack-gateway'); const gateway = new DiscordSlackGateway({ slack: { token: "...", appToken: "...", signingToken: "...", channelId: "...", webhookUrl: "...", socketMode: true }, discord: { webhookUrl: "...", channelId: "...", apiToken: "..." } }); ``` _I highly recommend using socket mode for Slack. It is much faster than the Events API. Also, use environment variables for tokens and other sensitive data_ ## What are the options? ### Slack **signingToken** - Slack signing token. Read https://api.slack.com/authentication/verifying-requests-from-slack **token** - Slack bot token. Read https://api.slack.com/authentication/token-types **appToken** - Slack app token. Read https://api.slack.com/authentication/token-types **channelId** - Slack channel id to listen to **webhookUrl** - Slack webhook url. Read https://api.slack.com/messaging/webhooks **socketMode** - Socket mode is a new way for apps to be installed to workspaces. Read https://api.slack.com/apis/connections/socket ### Discord **webhookUrl** - Discord webhook url generated from post method in https://discohook.org/ **channelId** - Discord channel id to listen to **apiToken** - Discord api token generated from https://discord.com/developers/applications ### LICENSE [MIT](./LICENSE)
📫 Send messages from both ways
discord,gateway,javascript,slack
2023-06-14T03:50:22Z
2023-06-16T02:23:04Z
null
1
3
30
1
0
2
null
MIT
JavaScript
BrunoCosta19/FamilyPirate-MEUSITE
main
null
Entreterimento
animes,download,html,javascript,video-streaming,css
2023-06-28T13:58:10Z
2023-06-28T13:59:05Z
null
1
0
1
0
0
2
null
MIT
JavaScript
seanpm2001/SDE_MobileServer_Plugins_NuxtJS
SDE_MobileServer_Plugins_NuxtJS_Main-dev
*** # SDE MobileServer Plugin for NuxtJS [:octocat: `🏠️ Home repository`](https://github.com/seanpm2001/SDE_MobileServer/) `🇸-🇩-🇪📱️🌐️💾️🔌️ SDE MobileServer NuxtJS support plugin.` *** ## Summary This plugin adds NuxtJS 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:02 pm PST)` ***
🇸-🇩-🇪📱️🌐️💾️🔌️ SDE MobileServer NuxtJS support plugin.
gpl3,gplv3,javascript,javascript-lang,javascript-language,md,mobile-server,mobileserver,nuxtjs,sde
2023-06-16T23:19:30Z
2023-06-18T04:02:45Z
null
1
0
21
0
2
2
null
GPL-3.0
JavaScript
harshit0571/ScrapeMaster
main
# ScrapeMaster It is robust web scraping tool that focuses specifically on extracting data from the renowned e-commerce giant, Amazon. By leveraging Puppeteer's capabilities, I was able to navigate through Amazon's web pages, interact with elements, and effortlessly retrieve valuable product information. ![image](https://github.com/harshit0571/ScrapeMaster/assets/62325935/b75b3594-3438-42c0-be85-1ddf97630217) ## How To Use Create a post request to `http://15.207.100.214:8000/` with body that contains search query in json format. <br> eg: ```shell { "search":"smartphones" } ``` ## Setup Here are the steps to run ScrapeMaster in your system. ### Step 1 Clone and cd to the repo ```shell $ git clone https://github.com/harshit/ScarpeMaster $ cd ScrapeMaster ``` ### Step 2 Download node modules ```shell $ npm i ``` ### step 3 To run the Amazon scrapper run: ```shell $ npm run amazon ``` ### step 4 To practice Puppeteer run: ```shell $ npm run practice ``` ## Features ScrapeMaster can retreive data from amazon product page and store it int json format ![image](https://github.com/harshit0571/ScrapeMaster/assets/62325935/b36e0a49-a583-4150-82d0-4496185000a3) <p align="center"> <img src="https://github.com/harshit0571/ScrapeMaster/assets/62325935/7ad037ee-3618-4462-b3f2-581c328ed7da" /> </p> ![image](https://github.com/harshit0571/ScrapeMaster/assets/62325935/e42c3c2c-2d0b-4a80-971a-115a0d8ed38f) ## Contributing Feel free to contribute by opening an issue. ## License This project is licensed under the [MIT License](LICENSE).
It is robust web scraping tool that focuses specifically on extracting data from the renowned e-commerce giant, Amazon. By leveraging Puppeteer's capabilities, I was able to navigate through Amazon's web pages, interact with elements, and effortlessly retrieve valuable product information.
javascript,puppeteer,webscraper,webscraping
2023-06-19T08:46:11Z
2023-06-21T15:50:13Z
null
1
0
32
1
0
2
null
null
JavaScript
Saiteja-Goli/Saiteja-Goli.github.io
main
null
My Portfolio Website
css,html5,javascript
2023-06-17T06:36:03Z
2023-07-18T15:10:53Z
2023-07-13T10:43:49Z
1
0
17
0
0
2
null
null
CSS
rafael-allves/likeMeetUp.com
main
# Building a "clone" of the MeetUp.com this is a simple project with the intuite to learn laravel php framework! In mosts commits u'll se something like a test of an attribute working! ### caution! If u're not familiar with backend development and by some reason are seeing this repo please note that read about connection and sensible data with .env (dotenv) ## techonologies ### PHP Laravel ### ### HTML ### ### CSS ### ### BootStrap CSS ### ### ION-ICONS ### ### Vanilla JS ### The HTML, CSS, JS aren't the main focus here! So this project design is simple and at this point has'nt responsive model and has just a large CSS page to every page link it but i'm proud to myself because the focus is backend development and i CAN DO IT !!! ### i'm actualy enjoying the proccess! ## License [MIT license](https://opensource.org/licenses/MIT).
A simple social network events based inspired by: MeetUp.com, this's a project to learn about phpLaravel
bootstrap,css3,html5,https,javascript,laravel,mysql,php,social-network,socialmedia
2023-06-29T07:19:01Z
2023-07-31T15:57:13Z
null
1
5
199
0
0
2
null
null
PHP
zeenatabrar/Ashray
main
<img src="https://i.postimg.cc/KvNq6Xjb/logo-no-background.png" alt="image" width="300"> # ASHRAY A modern and intuitive hotel booking website that allows users to search for hotels, view detailed information, and make bookings seamlessly. ## Description The Hotel Booking Website provides a user-friendly interface with a focus on usability and efficiency. It incorporates the following features and functionality: - **Attractive and Responsive Design:** The website boasts an appealing and responsive design that ensures a seamless experience across various devices and screen sizes. - **Advanced Search Capability:** Users can search for hotels based on location, dates, number of guests, and specific requirements like amenities, star ratings, and price range. - **Interactive Hotel Listings:** Each hotel listing provides comprehensive details, including high-resolution images, amenities, room types, availability, and user ratings and reviews. - **Real-time Availability and Pricing:** The website integrates with a hotel management system to fetch real-time availability and pricing information for accurate search results and bookings. - **Secure Booking Process:** Users can confidently make bookings with a secure and encrypted payment gateway, ensuring the protection of their personal and financial information. - **Social Media Integration:** Users can easily share their bookings and experiences on social media platforms, promoting the website and generating user engagement. - **Admin Dashboard:** An administrative dashboard allows authorized personnel to manage hotels, bookings, user accounts, and generate reports. ## Technologies Used - Front-end: HTML, CSS, JavaScript - Back-end: Node.js - API Integration: Hotel management system API for real-time data ![alt text](https://camo.githubusercontent.com/4d13bf1cb702ddb551e9c3206263ae73d9f75b38dfd9abdc5d89966282b89ffd/68747470733a2f2f736b696c6c732e7468696a732e67672f69636f6e733f693d68746d6c2c6373732c6a732c626f6f747374726170) ## BACKENED API The backend api server serves as a gateway between the frontend and the database, manipluating data through transaction queries and mongo aggregations to return the desired result that the frontend requests as well as broadcasting live updates across its socket connections. Because the backend server has to be able to serve different hotels each with different room numbers and their own reservations, a HotelID query string is used to differentiate API requests. All backend api requests go through /api route where an express router autenticates the request and sends the it to the matching router. A hotel check middleware also intercepts the request, obtains the HotelID of the request and stores it in a Conductor for it to use to run commands that execute the business logic. All login requests go through /user route where an express router directs login and logout requests to their matching router as well as join or leave socket rooms accordingly. The backend is currently encapsulated into three layers of logic - Controller: handles all API routes - Services: business logic - Date-Access: queries for databases with an OO approach to preserve encapsulation and resuse objects through JS prototypical inheritance - API is working on JSON server ## Table of Contents - [Installation](#installation) - [Usage](#usage) - [Contributing](#contributing) - [License](#license) ## Access the website: Open your web browser and visit `http://localhost:3000` to access the hotel booking website. ## Usage 1. Register a new user account or log in with an existing account. 2. Utilize the advanced search functionality to find hotels based on location, dates, number of guests, and specific requirements. 3. Browse through the search results and click on a hotel to view detailed information, including images, amenities, room types, availability, and user reviews. 4. Select desired dates, room types, and the number of guests, and proceed to make a booking. 5. During the booking process, securely enter payment details using the integrated Stripe payment gateway. 6. Manage your bookings, view your booking history, and save favorite hotels in your user profile. 7. Update personal information, change passwords, and customize preferences for a tailored experience. ## Contributing 1. Zeenat Abrar (Team Lead) 2. Mohammed Rafique (Admin site) 3. Narendra Patel (API site) 4. Subhash Rawat (Page development) ## License This project is licensed under the [ASHRAY] LICENSE.
A modern and intuitive hotel booking website that allows users to search for hotels, view detailed information, and make bookings seamlessly.
css,html,javascript
2023-06-12T22:38:13Z
2023-06-19T05:13:35Z
null
4
18
74
0
2
2
null
null
HTML
AhmedYahyaE/facebook-clone
main
# Facebook Homepage Clone This is totally Responsive (mobile first) Facebook Homepage Clone design. Technologies used are Bootstrap (used Bootstrap Grid System for responsive design), jQuery, JavaScript, CSS, HTML. Also, used Font-Awesome library. It's really close to the original Facebook! 😎👍 Enjoy!
Responsive Facebook Homepage Clone
bootstrap,clone,facebook-clone,font-awesome,javascript,jquery,mobile-first,responsive-design,web-design
2023-06-11T00:15:18Z
2023-06-11T00:32:25Z
null
1
0
3
0
1
2
null
null
HTML
richeyphu/dechroma.js
main
# dechroma.js [![NPM version](https://img.shields.io/npm/v/dechroma.svg)](https://www.npmjs.com/package/dechroma) [![NPM total downloads](https://img.shields.io/npm/dt/dechroma)](https://npmjs.org/package/dechroma) [![install size](https://packagephobia.com/badge?p=dechroma)](https://packagephobia.com/result?p=dechroma) [![minified size](https://img.shields.io/bundlephobia/min/dechroma)](https://bundlephobia.com/package/dechroma) Chroma key compositing (e.g., green screen) for HTML canvas-manipulated video, using [ImageData](https://developer.mozilla.org/en-US/docs/Web/API/ImageData). ## Install ```sh $ npm i dechroma # or $ yarn add dechroma # or $ pnpm add dechroma ``` ## Example ```js import { dechroma } from 'dechroma'; ... const video = document.querySelector('video'); const c = document.querySelector('canvas'); const ctx = c.getContext('2d'); ... video.addEventListener('play', drawVideo); function drawVideo() { ctx.drawImage(video, 0, 0, width, height); const frame = ctx.getImageData(0, 0, width, height); // Remove green screen dechroma(frame, [0, 100], [170, 255], [0, 110]); ctx.putImageData(frame, 0, 0); requestAnimationFrame(drawVideo); } ``` ## License Licensed under the [MIT License](LICENSE).
Chroma keying for canvas-manipulated video
javascript,library,npm-package,typescript,utility,canvas,chroma-key,canvas2d,npm
2023-06-27T11:56:04Z
2023-06-27T22:03:43Z
null
1
0
15
0
0
2
null
MIT
TypeScript
vondas-network/Bitcoin-knowledge
main
<h3 align="center"> <img height="15%" width="15%" src="https://cdn.freebiesupply.com/logos/large/2x/bitcoin-logo-png-transparent.png"/> </h3> # Bitcoin Knowledge A collection of Javascript libraries on the Bitcoin network & misc information. ## Javascript libraries as Ordinals | Filename | Ordinal URL | | ---------- | ----------------------------------- | | jQuery v3.7.0 | [Link](https://ordinals.com/content/773e4865bcf3084e6d6ee5d49136fb5f7071d4c050ec4aeeaeb9c6d24fea5fc1i0) | | Moment.js 2.29.1 | [Link](https://ordinals.com/content/b90b4516ea1a0b882e67387eb4f3e5def0307704b046e8ef98c5e72092c47eedi0) | | Bootstrap v5.3.0 | [Link](https://ordinals.com/content/3bcfdc4e97209ecaaab06705b52ba6b7fc9d1cee77404ac15e655ce691a44654i0) | | matter-js 0.19.0 | [Link](https://ordinals.com/content/9d567e6ef8bd6b13458cc67cc5e8339395a4433e45db4554ff83c88a5df8bae2i0) | | glsl-canvas.min.js | [Link](https://ordinals.com/content/aeb29dfe6396589bd501f2be3478202a6ed75989cfc5ff49dd0d704b012c00eci0) | | axios.min.js v1.4.0 | [Link](https://ordinals.com/content/6b81993428a217a341ffd68f3b3aa3664b2cfc674d57aad0d3b6daa0f125b821i0) | | html2canvas v1.4.1 | [Link](https://ordinals.com/content/be2585187c2e016b654ecc1f207fa73c38e55eee404cdf709346c4511689d24ai0) | | jsnes | [Link](https://ordinals.com/content/3a4575b2a8fe6e7968146f290d494c2346d40ff692314050babcaa7268347f4bi0) | ## Bitcoin | Description | URL | | ---------- | ----------------------------------- | | Sat exploring | [Link](https://twitter.com/ord_io/status/1669815559276355584?s=46&t=eNbFyBVfqjczB5dqZ-BNyQ) | | Types of BTC public keys | [Link](https://thebitcoinmanual.com/articles/types-btc-public-keys/) | | bips (Bitcoin Improvement Proposals) | [Link](https://github.com/bitcoin/bips) | | What are Common, Uncommon and Rare Sats? | [Link](https://blog.ordinalhub.com/what-are-common-uncommon-and-rare-sats/) | | How to use Mempool.Space | [Link](https://bitcoinbriefly.com/how-to-use-mempool-space-block-explorer/) | | UXTO explained | [Link](https://www.xverse.app/blog/utxo-management) | | Bitcoin’s UTXO Model: What Is It and How To Manage UTXOs | [Link](https://river.com/learn/bitcoins-utxo-model/#:~:text=UTXO%20Model%3A%20the%20balance%20in,balance%20figure%20with%20each%20transaction.) | | What is the Double Spend Problem? | [Link](https://river.com/learn/what-is-the-double-spend-problem/) | | Coinbase Transactions | [Link](https://river.com/learn/terms/c/coinbase/) | | What is Bitcoin UTXO Management? | [Link](https://river.com/learn/bitcoins-utxo-model/#what-is-bitcoin-utxo-management) | ## Ordinals | Description | URL | | ---------- | ----------------------------------- | | Ordinal Inscriptions explained | [Link](https://nftnow.com/guides/bitcoin-nfts-ordinals-inscriptions-explained-finding-buying-more/) | | Dune Analytics - Inscriptions on Bitcoin | [Link](https://dune.com/dataalways/ordinals) | | Ordinals Standards Proposals | [Link](https://patches-1.gitbook.io/ordinals-standards-discussions/) | | Ordinals github | [Link](https://github.com/ordinals/) | | Ordinal Theory Handbook | [Link](https://docs.ordinals.com/guides/sat-hunting.html) | | Cursed Inscriptions on Magic Eden | [Link](https://magiceden.io/ordinals/marketplace/cursed) | | Recursive Inscriptions: Creating a Collection from Shared Layers | [Link](https://ordinalsbot.medium.com/recursive-inscriptions-creating-a-collection-from-shared-layers-b43a628144e8) | | bitmap | [Link](https://gitbook.bitmap.land/1-project/home) | ## Inscribing | Platform | URL | | ---------- | ----------------------------------- | | Gamma | [Link](https://gamma.io/) | | looksordinal | [Link](https://looksordinal.com/) | | UniSat | [Link](https://unisat.io/) | ## APIs | Documentation | URL | | ---------- | ----------------------------------- | | Deezy | [Link](deezy.io) | | bitcoin-api | [Link](https://github.com/bitcoin-api/bitcoin-api) | | Bitcoin RPC API Reference | [Link](https://developer.bitcoin.org/reference/rpc/index.html) | | Bitcoin Core Docs | [Link](https://bitcoincore.org/en/doc/) | ## Art | Info | URL | | ---------- | ----------------------------------- | | Swatchbook | [Link](https://vector-conversions.com/vector/pantone_color_swatchbook.pdf) |
A collection of Javascript libraries on the Bitcoin network & misc information
bitcoin,bitcoin-ordinals,btc,cdn,html5,javascript,ordinals,reference
2023-06-16T19:51:10Z
2024-03-22T02:08:04Z
null
1
0
26
0
1
2
null
null
null
Chrizxz/lunes
main
# lunes site for lunes (https://lunes.host)
site for lunes
css,hosting,html,javascript
2023-06-19T01:42:53Z
2024-04-20T12:16:31Z
null
1
0
28
0
0
2
null
null
CSS
cat-125/cheatgui
main
# CheatGUI ![Preview](https://github.com/cat-125/cheatgui/assets/106539381/62378702-14b3-4325-9bc0-b7c640cf2310) ![total lines](https://tokei.rs/b1/github/cat-125/cheatgui) CheatGUI is a lightweight JavaScript library that provides a simple way to create draggable, collapsible, and customizable windows with various UI elements. Here are some of its advantages: 1. **Easy to use**: The library provides a straightforward API for creating windows and UI elements. 2. **Lightweight**: The library is small in size, making it suitable for projects where performance is a concern. 3. **Customizable**: You can easily customize the appearance of the windows and UI elements using CSS. 4. **Mobile support**: interacting with UI elements works on mobile devices as well. 5. **Supports various UI elements**: The library includes support for text, buttons, switches, sliders and more. Live demo: <https://cat-125.github.io/cheatgui/demo> ## Usage To get started with CheatGUI, you need to include it in your project. Here's a step-by-step guide on how to do it: 1. **Download the library**: Download the CheatGUI library from the Releases page or use the beta builds available in the [GitHub Actions](https://github.com/cat-125/cheatgui/actions/workflows/dev_build.yml). 2. **Include the Library**: First, include CheatGUI in your HTML file by using the following script and link tags. Make sure you replace `path_to_cheatgui` with the actual path where the CheatGUI library is located. ```html <link rel="stylesheet" href="path_to_cheatgui/cheatgui.min.css"> <script src="path_to_cheatgui/cheatgui.min.js"></script> ``` 3. **Use CheatGUI**: Once the library is included, you can create a new window. ```javascript const win = new cheatgui.Window({ x: 50, y: 300, width: 300, height: 200, title: "Window" }); win.append(new cheatgui.Text('Hello, world!')); ``` 4. **Customize**: You can customize CheatGUI by adding custom CSS styles or by modifying the configuration. ```javascript // Customizing CheatGUI cheatgui.utils.loadTheme('path_to_theme.css'); cheatgui.utils.updateConfig({ symbols: { expanded: '▼', collapsed: '◀', resize: '◢' }, minWindowWidth: 150, minWindowHeight: 100, language: { 'close': 'Close' } }); ``` For more detailed examples and advanced usage, please refer to the [Documentation](https://cat-125.github.io/cheatgui). ### File differences CheatGUI has several files that can be imported. Here are the differences between them: - `cheatgui.min.js`, `cheatgui.min.css` - compressed versions of the files. Most often they are needed. - `cheatgui.inj.js` - this file automatically embeds CSS code, and can be used for injection into third-party sites. ## Examples ```javascript const win = new cheatgui.Window({ x: 50, y: 300, width: 300, height: 200, title: "Window" }); win.append(new cheatgui.Text('Hello, world!')); const btn = new cheatgui.Button('Button'); btn.onClick(() => alert('Button clicked')); win.append(btn); const tree = new cheatgui.Tree("Tree"); win.append(tree); tree.append(new cheatgui.Slider({ label: 'Float', max: 1, step: 0.01, value: 0.5 })); ``` See also [`index.html`](index.html#L56). ## Documentation Documentation for CheatGUI is available at <https://cat-125.github.io/cheatgui>. ## Features ### Widgets ```javascript const widget = new cheatgui.WidgetName(...); ``` - Text - Button - Input - Slider - Switch - Tree - Dropdown - And more ### Themes ```javascript cheatgui.utils.loadTheme(url); ``` You can download and use themes from the [`themes/` folder](themes/) or create your own. ### Other - Popup menus (`cheatgui.openPopupMenu({title, items[], closable})`) - Some utils (`cheatgui.utils`) - `Widget` class for creating custom widgets - Mobile device detection (`cheatgui.isMobile`) ## Future plans - [x] Ability to save & load configurations - [ ] Shorter way to add widgets - [ ] Color input - [ ] Tabs - [ ] Vertical tabs - [ ] Input with button - [ ] Window builder ## Screenshots ![All widgets](https://github.com/cat-125/cheatgui/assets/106539381/8bf5144e-79df-49f5-8a30-4202777ccf02) ![Legacy theme](https://github.com/cat-125/cheatgui/assets/106539381/ba98e21f-8cf7-4410-a0b3-2f7c078576b5) ![Windows theme](https://github.com/cat-125/cheatgui/assets/106539381/9d97b6ea-0294-436b-97ec-3c839fcfec60) ![Pink theme](https://github.com/cat-125/cheatgui/assets/106539381/cfe6c101-a6fe-403b-ae1e-13963813a91c) ![Modern theme](https://github.com/cat-125/cheatgui/assets/106539381/60121372-429c-4f73-8720-2ca720190c71) ![ImGui theme vs. Dear ImGui](https://github.com/cat-125/cheatgui/assets/106539381/e9bfad04-fb7d-4c57-aa9e-7f0630f00f04) ## Contributing See [`CONTRIBUTING.md`](CONTRIBUTING.md) for details. ## License CheatGUI is open-sourced software licensed under the [MIT license](https://github.com/cat-125/cheatgui/blob/main/LICENSE). ## Stats ![Alt](https://repobeats.axiom.co/api/embed/8680d14e5c563dc7c79526365878c484605670b9.svg)
Effortless library for building window-based interfaces.
cheat,gui,imgui,web,windows,cheat-gui,easy-to-use,gui-library,javascript,javascript-library
2023-06-19T10:23:14Z
2024-05-15T20:07:28Z
2024-01-07T14:57:01Z
1
2
168
0
0
2
null
MIT
TypeScript
bramleyas/noaagh
main
# NOAAGH ### *A JavaScript wrapper for the NOAA/NWS Public API* ## About - https://github.com/bramleyas/noaagh - https://www.npmjs.com/package/noaagh This package can be used to easily access data from the National Weather Service's [public API](https://www.weather.gov/documentation/services-web-api#). It's stupid simple: no, really - this implementation is a bit rough. This is my first package project, and it's been a while since I've touched code. After time, this code will be way more efficient. The wrapper uses the Fetch API to access the NWS' endpoints. ## Usage All functions are named after their respective endpoints as listed in the 'Specification' tab of the API's website listed above, slashes removed and typed in camelCase. Note that arguments for coordinates must be passed as strings without spaces, as they are concatenated to the NWS endpoint format. ### Direct from NWS API *GETting the response from the `/glossary` endpoint* ```js const noaagh = require('noaagh'); noaagh.glossary(); /* ...'1-2-3 Rule' 'A means of avoiding winds associated with a tropical cyclone by taking into account the forecast track error of the National Weather Service'...*/ ``` *Logging the response from the `/alerts/active/zone/ILC104` endpoint for Chicago, Illinois* ```js noaagh.alertsActiveZone('ILC104').then((output) => { console.log(output); }); // ...'Current watches, warning, and advisories for ILC104'... ``` ### Built-in functions **temperature():** *Logging the temperature at Fox 8's studios in Cleveland, Ohio (only accepts coordinates)* ```js noaagh.temperature('41.5303,-81.6491').then((output) => { console.log(output); }); // 68 ``` **shortForecast():** *Logging the general conditions at I-95 bridge collapse in Philadelphia, Pennsylvania (only accepts coordinates)* ```js noaagh.shortForecast('40.0244,-75.0308').then((output) => { console.log(output); }); // Overcast ``` ## Resources - Public Zone IDs: https://www.weather.gov/pimar/PubZone - *More coming soon* ## TODO - Write new functions for specific applications - Temperature for specific location (basically done) - Weather condition for specific location - Images? - Clean up the code, perhaps not so repetitive - Provide example .js files - Provide more NWS resources
A JavaScript wrapper for the NOAA/NWS Public API
api,javascript,noaa,nws,weather
2023-06-20T04:30:26Z
2024-05-22T15:19:29Z
null
2
3
20
0
1
2
null
null
null
RAJKUMARSHRIVASH/AI-Shayari-Generator
main
# AI Shayari/ quotes Generator This App is integrated into the ChatGPT and is an AI Shayari generator, where user can write their keyword and get a ready-made Shayari generated. ## Features - Cross-platform - Responsive ## Tech Stack **Client:** HTML, CSS, JavaScript **Server:** NodeJs, Express, Open-ai ## Run Locally Clone the project ```bash git clone https://github.com/RAJKUMARSHRIVASH/AI-Shayari-Generator.git ``` Go to the project directory ```bash cd AI-Shayari-Generator ``` Install dependencies ```bash npm install ``` Start the server ```bash node index.js ``` ## Environment Variables To run this project, you will need to add the following environment variables to your .env file `port` `OPENAI_API_KEY` ## API Reference #### Welcome ```http GET / ``` #### Get ```http GET /shayari?keyword="value" ``` ## Demo ``` https://ai-shayari-generator.onrender.com ``` ## Screenshots ![App Screenshot](https://i.imgur.com/u8dHVPC.png) ![App Screenshot](https://i.imgur.com/Jc5xHNw.png) ## Author - [@Raj Kumar Sen](https://github.com/RAJKUMARSHRIVASH)
This App is integrated into the ChatGPT and is an AI Shayari generator, where user can write their keyword and get a ready-made Shayari generated.
chatgpt,css,express,html,javascript,node,openai-api
2023-06-28T06:54:03Z
2023-07-01T21:14:34Z
null
1
0
9
0
0
2
null
null
HTML
ajuteixeira/organocat
main
# organocat ✦ Create organizational charts in a simple and practical way to organize kittens :) ✦ This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app) ✦ Figma: [[www]](https://www.figma.com/file/T6BLI1HfB81eYOiVgpqQz7/Projeto-Intro-ao-React?type=design&node-id=134-143&mode=design&t=oMOnQNdX5rqhzn7I-0) <img src="https://i.postimg.cc/xd59DvBM/Captura-de-tela-2023-07-06-203953.png" style="width:100%;"> # ✦ Organize your kittens into teams: <img src="https://i.postimg.cc/tTgpX1Hf/Captura-de-tela-2023-07-06-204123.png" style="width:100%;"> # ✦ live-preview <a href="https://organocat.vercel.app/" target="_blank">Access here :)</a>
Create organizational charts in a simple and practical way to organize kittens :)
cats,javascript,js,organo,react,reactjs
2023-06-29T19:48:19Z
2023-07-06T23:54:52Z
null
1
0
10
0
0
2
null
null
JavaScript
priyanshi1282/simon-game
main
# Simon Game 🔴🟢🔵🔵 Simon Game is a responsive web memory game that challenges your memory skills. The game features multiple levels and incorporates various sounds to enhance the gaming experience. Please note that the current version is responsive but not compatible with mobile phones. We kindly ask you to use a laptop to play. The mobile version will be updated soon. 📱💻 ## Tech Stack - HTML5 - CSS3 - JQuery - JavaScript ## How to Play 1. The user will be presented with four boxes of different colors. 2. Each level (stage) will have a random box that flashes with an animated blink. 3. The player's objective is to memorize the sequence of flash-blink boxes across all levels. 4. To reproduce the sequence, the player must press the boxes in the same order. 5. Each box press will trigger a sound associated with the color of the box. 6. If the player presses a box in the wrong sequence, the game will end. 7. Let's take an example to illustrate the gameplay: - **LEVEL 1** - Computer: 🔴 [red] - Player: 🔴 [red] - **LEVEL 2** - Computer: 🔴🟢 [red, green] - Player: 🔴🟢 [red, green] - **LEVEL 3** - Computer: 🔴🟢🔵 [red, green, blue] - Player: 🔴🟢🔵 [red, green, blue] - **LEVEL 4** - Computer: 🔴🟢🔵🔵 [red, green, blue, blue] - Player: 🔴🟢🔵🟢 [red, green, blue, green] 🚫 WRONG SEQUENCE, GAME OVER! 🚫 Give it a try and exercise your brain! For any queries or assistance, feel free to reach out via DM. ✨💭
null
game,html-css-javascript,javascript
2023-06-22T17:44:29Z
2023-06-29T17:20:24Z
null
2
1
9
0
0
2
null
null
JavaScript
mosidrum/react_capstone
dev
<a name="readme-top"></a> <!-- HOW TO USE: This is an example of how you may give instructions on setting up your project locally. Modify this file to match your project and remove sections that don't apply. REQUIRED SECTIONS: - Table of Contents - About the Project - Built With - Live Demo - Getting Started - Authors - Future Features - Contributing - Show your support - Acknowledgements - License OPTIONAL SECTIONS: - FAQ After you're finished please remove all the comments and instructions! --> <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Usage](#usage) - [Deployment](#triangular_flag_on_post-deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) <!-- PROJECT DESCRIPTION --> # 📖 React capstone project <a name="about-project"></a> **React capstone project** React capstone project is about building a mobile web application to check a list of metrics (numeric values) that I created using React and Redux. I selectd an API that provides numeric data about a topic that I like and then build the webapp around it. ![React capstone project ](./src/assets/readme.JPG) ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <details> <summary>React</summary> <ul> <li><a href="#">React</a></li> </ul> </details> <details> <summary>CSS</summary> <ul> <li><a href="#">CSS</a></li> </ul> </details> <details> <summary>Jest testing</summary> <ul> <li><a href="#">Jest testing</a></li> </ul> </details> <details> <summary>npm</summary> <ul> <li><a href="#">npm</a></li> </ul> </details> <details> <summary>Redux</summary> <ul> <li><a href="#">Redux</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> - **React** - **API** - **Redux** - **react-router-dom** - **react-icons** - **npm** - **css** <!-- GETTING STARTED --> ## 💻 Getting Started <a name="getting-started"></a> Install latest node js ### Prerequisites Clone this repository npm install npm start <!-- Example command: ```sh ``` --> ### Setup Clone this repository to your desired folder: https://github.com/mosidrum/react_capstone or visit the website <!-- Example commands: ```sh cd my-folder git clone git@github.com:myaccount/my-project.git ``` ---> <!-- Example command: ```sh cd my-project gem install ``` ---> ### Usage Built about numeric data that I like. <!-- Example command: ```sh rails server ``` ---> <!-- Example command: ```sh bin/rails test test/models/article_test.rb ``` ---> ### Deployment https://strong-clafoutis-586e91.netlify.app ### Live presentation https://www.loom.com/share/8718608bf8b142249e364b7b6521e19a?sid=7a469b42-20a2-48d7-9974-7db3bc52d141 <!-- Example: ```sh ``` --> <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> 👤 **Ayodele Isaac** - GitHub: [@githubhandle](https://github.com/mosidrum) - Twitter: [@twitterhandle](https://twitter.com/mosidrum) - LinkedIn: [LinkedIn](https://linkedin.com/in/isaac-ayodele-37890521b) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> - [ ] **[ Improve and fetch more data ]** - [ ] **[Artificial Intelligence]** <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/mosidrum/react_capstone/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, support and encourage me and give this project a ⭐️ <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to thank God almighty, John Oluwalusi and my coding partners at microverse that guided me through <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](https://github.com/mosidrum/react_capstone/blob/dev/LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
This is a statistical informative webpage on all countries and continent of the world
css,javascript,netlify,reactjs
2023-06-26T09:49:59Z
2023-07-01T18:54:03Z
null
1
7
47
0
0
2
null
MIT
JavaScript
prateekp273/Netflix_Intro_Animation
master
null
Experience the captivating Netflix Intro - powered by HTML, CSS, and JavaScript. Enjoy seamless animations and a user-friendly interface for unlimited entertainment. Join now and start binge-watching your favorite movies and TV shows!
css,html,javascript
2023-06-15T16:50:06Z
2023-06-19T16:44:55Z
null
1
0
4
0
0
2
null
null
CSS
ak-hu/admin-dashboard-django-bootstrap
main
# Admin Dashboboard Web application built with Django, utilizing Jinja2 and jQuery to create a responsive and user-friendly admin dashboard. It leverages the power of Bootstrap to enhance the application's visual aesthetics and provide a consistent and modern UI experience. ## Features - User Management: The application provides functionality for managing user accounts, including registration, login, and password reset. - Dashboard Overview: The dashboard offers an overview of key metrics and statistics, providing administrators with insights into the system's performance. - Data Visualization: The application includes charts and graphs to visually represent data, making it easier to understand and analyze information. - CRUD Operations: Administrators can perform CRUD (Create, Read, Update, Delete) operations on various data entities, such as users, products, orders, etc. ## Technologies Used The Admin Dashboard Django Bootstrap project utilizes the following technologies: - Django: Django is a high-level Python web framework that provides a clean and efficient way to build web applications. - Jinja2: Jinja2 is a templating engine for Python used to create dynamic HTML templates. - jQuery: jQuery is a fast, small, and feature-rich JavaScript library that simplifies HTML document traversal and manipulation. - Bootstrap: Bootstrap is a popular HTML, CSS, and JavaScript framework that provides pre-designed components and responsive layouts, allowing for rapid and consistent web development. ## Usage To use the Admin Dashboard Django Bootstrap application locally, follow these steps: 1. Clone the repository: `git clone https://github.com/ak-hu/admin-dashboard-django-bootstrap.git` 2. Install the required dependencies by running `pip install -r requirements.txt` in the project directory. 3. Configure the database connection and other settings in the `settings.py` file. 4. Run database migrations with `python manage.py migrate`. 5. Start the development server with `python manage.py runserver`. 6. Access the application in your web browser at `http://localhost:8000`. To log in to the application, use the following credentials: - **Username:** admin - **Password:** 123123 Please note that this is a basic setup guide, and additional steps may be required depending on your specific environment and deployment requirements. ## Screenshots ![Login](screenshots/screenshot_login.png) *Login Page* ![Dashboard](screenshots/screenshot_dashboard.png) *Dashboard Page* ![Add](screenshots/screenshot_add1.png) *Add Page* ![Edit](screenshots/screenshot_edit.png) *Edit Page* ## Contributing Contributions to the Admin Dashboard Django Bootstrap 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.
Admin Dashboard Django Bootstrap is a web application built with Django and utilizes Jinja2 and jQuery to create a responsive and user-friendly admin dashboard.
bootstrap,bootstrap5,css,css3,django,django-application,django-project,html,html-css-javascript,html5
2023-06-16T16:16:01Z
2023-08-14T21:42:37Z
null
1
0
12
0
0
2
null
null
Python
Tsiangana/Jogo_estourando_baloes
master
Criei um jogo de estourar baloes inteiramente usando js com html e css, veja o jogo e diga o que achas, e se for possível faça uns forks afim de deixar o jogo melhor, ou deixa uma estrla para ajudar o repositório a crescer
Venha ver se és capas de estourar todos os balões no nível difícil o mais rápido possível. Desafie os seus amigos e veja quem ganha :)
css,game,html,html5,javascript,javascript-game,js
2023-06-16T20:33:35Z
2024-01-29T21:12:29Z
null
1
0
7
0
0
2
null
MIT
JavaScript
ITSTIME1/StableChildren
master
# StableChildren (AI program for children) ## Introduce 👋 "Hello! Welcome to my 'StableChildren' repository, dedicated to children. Nowadays, the way we think is incredibly important. Consequently, I've been contemplating what programs could enhance children's thinking processes. I aspire for children to broaden their thinking through art. Regardless of whether it's a complex or simple problem, we tend to imagine it. Similarly, when we read books, our imagination comes into play. For instance, exploring 'Kongjwi and Patjwi,' a traditional Korean romance story from the Joseon Dynasty, prompts children to ponder, 'What is that?' or 'I wonder about that word.' Subsequently, when a teacher provides an explanation, children acquire new knowledge. Everything I've mentioned so far revolves around 'the curiosity children possess.' Through such curiosity, they associate various thoughts and engage in imaginative thinking, thereby fostering creativity and learning how to think critically. Consequently, I've decided to create the 'StableChildren' program to contribute, even if just a bit, to this process." ## Features - Through gesture recognition, children move words or sentences themselves by using their hands. - Choice one of two paintings style. - Teacher watches paintings first when received paintings. therefore children can't see anything until teacher is confirmed. ## Tech - **Mediapipe gesture recognition** - **Stablediffusion webui(automatic1111)* - Django v4.2.2 - Python v3.10.1 - Vanila javascript, html, css - Google colab pro for generate image by using GPU. - **Used localStorage.** - anime js opensource library (thank you for your dedication). - Toastify opensource library (thank you for your dedication). ## Architecture ![Children-playground-flow-image](https://github.com/ITSTIME1/children-playground/assets/88642524/e1a0b53a-9930-4191-9b42-f3e24d1c2225) ## Installation ```sh pip install -r requirements.txt cd (your download path) python manage.py runserver(local) ``` **[Important]** you have to had 'Google colab pro' or your GPU (**CPU is not recommended for your image. its very slow..**)<br> **[Important]** you have a 'web cam' for recognize hand if you don't want that's fine. ## How to use (Very Important) - First run server and into http://localhost:8000/child/childPage/ (**This is main page for children**) - Second you must host into http://localhost:8000/manager/managePage/ (**This is manage page for teacher (or admin)**) - Third you must put translate api key for 'papago api' - Fourth you must put google colab server url to stablediffusion_auto_1111.py and then your custom model or anything model put into models. - When you finish reading books with children. The teacher types with the children what words or senetences come to mind. and then teahcer can decide. Whether to do it with a mouse or if the children will make their own gesture and move the words. - When you Finish above process. 'bulb button' press and choice image style. and then again 'bulb button' **After this process children can see 'loading page' and teacher was received four images first.** - Teacher must decide the image for children. The purpose of this process is to regenerate images that are sensational or have strange joints. - **If you intentionally enter a word related to an adult, it will automatically detect it and receive a black image. this means that It rarely comes out if you don't type if intentionally. Approximately 80 to 90% of then are blocked, and the teacher checks them first, so they go through the filter again. Also, since the criterion of sensationalism is subjective, you can decide whether to regenerate or not.** - Feel free enjoy my program :) ## Screenshots MainPage - If you decide to use a mouse, you can see the original mouse cursor and if not, you can see the mouse image cursor.<br> ![ezgif com-video-to-gif](https://github.com/ITSTIME1/children-playground/assets/88642524/d895646e-e37e-4676-90aa-0fd3126b7912) LoadingPage - If you don't agree anything, children can't see generating images. so children can see this loading page until you agreed.<br> ![ezgif com-video-to-gif](https://github.com/ITSTIME1/children-playground/assets/88642524/2c870d48-d034-4cbd-a8fc-43ecae8c003c) ManagePage - Here, you select regenerate images or you can agree all images.<br> <img src="https://github.com/ITSTIME1/children-playground/assets/88642524/ac70b967-44b9-4d60-a72d-9a3234a15c61" width="600" height="320"> Mediapipe Gesture Recognition - This is mediapipe gesture recognition. If your current gesture is not "ClosedFist", you can dargging and drop if not<br> dragging will be false and target will be initialized.<br> <img src="https://github.com/ITSTIME1/StableChildren/assets/88642524/48591f6d-2758-4cdb-ae7a-3d1f2b19ad74" width="300" height="320"> ## License MIT License Copyright (c) 2023 ITSTIME Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
StableChildren is ai web aplication for children.
css3,django,html5,javascript,python3,automatic1111,google-co,mediapipe,stablediffusion
2023-06-21T03:45:19Z
2023-12-23T01:14:06Z
null
1
0
72
0
0
2
null
MIT
JavaScript
mairess/project-trybewarts-the-first
main
# <p align="center"> Project Trybewarts</p> - Porjeto desenvolvido em equipe. - Neste projeto, você vai desenvolver uma página de formulário da Escola de Magia de Trybewarts, em que as pessoas estudantes poderão enviar seus feedbacks sobre ela.
Formulário da Escola de Magia de Trybewarts. Esse é um projeto desenvolvido por Matheus Domingues (matheusDom1) e eu, como parte de nosssa avaliação na Trybe.
bootstrap,css,html,javascript
2023-06-29T09:26:05Z
2023-06-29T09:39:06Z
null
1
0
3
0
0
2
null
null
HTML
ngekoding/enum
master
# Enum A utility library for working with enumerated types (enums). Simplify the management of constant values by creating strongly-typed enums with custom labels and values. Provides convenience methods for enum conversion, retrieval, and equality checks. Inspired by [PHP Enum](https://github.com/spatie/enum). ## Installation ```sh npm install @ngekoding/enum ``` ## Usage This is how an enum can be defined. ```js import Enum from '@ngekoding/enum' class UserLevel extends Enum { static Basic = new UserLevel(1, 'Basic') static Pro = new UserLevel(2, 'Pro') static Premium = new UserLevel(3, 'Premium') } ``` Where the first parameter is the `value` and the second parameter is the `label`. ### Accessing enum values or labels ```js console.log(UserLevel.Basic.value) // Output: 1 console.log(UserLevel.Basic.label) // Output: Basic ``` ### Creating an enum from a value ```js const userLevel = UserLevel.fromValue(2) ``` When an enum value doesn't exist, you'll get an `Error` exception. If you would prefer not catching an exception, you can use: ```js const userLevel = UserLevel.tryFromValue(2) ``` When an enum value doesn't exist in this case, `userLevel` will have value `null` and label `Unknown`. ### Comparing enums Enums can be compared using the `equals` method: ```js console.log(userLevel.equals(UserLevel.Pro)) // Output: true ``` You can pass several enums to the `equals` method, it will return `true` if the current enum equals one of the given values. ```js console.log(userLevel.equals(UserLevel.Pro, UserLevel.Premium)) // Output: true ``` You can safely comparing enum even there is no enum value when using `tryFromValue`. ```js console.log(UserLevel.tryFromValue(0).equals(UserLevel.Basic)) // Output: false ``` ### Get an array of enum instances You can get an array containing all the enum instances defined within the enum class. This is allows easy access to the entire set of enum values. ```js const values = UserLevel.values() console.log(values) // Output: [UserLevel.Basic, UserLevel.Pro, UserLevel.Premium] ```
Utility library for working with enumerated types (enums)
enum,enum-js,enumeration,javascript,typescript,enumify
2023-06-23T13:28:33Z
2024-03-18T06:19:41Z
null
1
0
6
0
0
2
null
null
TypeScript
Rishikesht1245/LAP4YOU_ecommerce
main
# LAP4YOU-eCommerce Project A fully fledged e-Commerce web application made using NodeJS, MongoDB, HTML, CSS and EJS view engine. Front-end is completely designed by using HTML, CSS, Bootsrap 5 and JavaScript with mobile responsiveness. ***https://www.lap4you.shop*** ## Features - Dev - MVC Architecture - JavaScript and EJS view engine - NodeJS with Express.js - MongoDB with Mongoose - AJAX and JQuery - Bootstrap 5 ## Project Features - Paypal payment integration - RazorPay payment integration - Product review - User profile picture with cropping - Index: - Search, Sort and Filter using AJAX - Single product page - Category wise collection of products - Admin side: - Dashboard with graphs - Weekly charts of sales data - Coupon Management - User Management - Product Management - Category Management - Banner Management - Admin Manager Management - Sales Report - Shopper side: - Profile with custom avatar - Cart - Wishlist - Orders - Place order with coupon (AJAX) - PayPal, RazorPay and COD options for payment - Multiple Addresses - Product Return/Replacement -Manager Side: - Dashboard with graphs - Access based Management (Provided by Admin) ### Third-Party Modules - momentjs for formatting time - Sweet alert 2 - Sharp and multer modules for image - Cropper JS for Image cropping - ExcelJS for printing monthly reports of sales - ChartJS for bargraph and pie chart - bcrypt for hashing password - nodemailer for sending emails
A fully fledged e-Commerce web application made using NodeJS, MongoDB, HTML, CSS and EJS view engine.
ecommerce-application,ejs-templates,express-js,html-css-javascript,javascript,mongodb,mongoose,node-js
2023-06-21T09:19:00Z
2023-08-14T19:21:57Z
null
1
1
29
0
0
2
null
null
EJS
francismanlangit13/aissuperwifi
main
null
Hotspot Template for AIS SuperWIFI on Mikrotik Routers with login password and online chat API
api,css,html,javascript,login-portal,mikrotik,mikrotik-hotspot,sweetalert2
2023-06-23T13:56:45Z
2023-06-23T17:28:37Z
null
1
0
12
0
1
2
null
MIT
HTML
encrypit/encrypit
master
<div align="center"> <a href="https://encrypit.com/"> <img src="public/logo192.png" alt="Encrypit"> </a> <p><strong>Securely encrypt and decrypt files.</strong></p> <p> <a href="https://github.com/encrypit/encrypit/releases"> <img alt="GitHub release (latest by date)" src="https://img.shields.io/github/v/release/encrypit/encrypit"> </a> <a href="https://github.com/encrypit/encrypit/actions/workflows/build.yml"> <img src="https://github.com/encrypit/encrypit/actions/workflows/build.yml/badge.svg" alt="Encrypit build status badge"> </a> <a href="https://codecov.io/gh/encrypit/encrypit"> <img src="https://codecov.io/gh/encrypit/encrypit/branch/master/graph/badge.svg?token=MV6HXPJZJO"> </a> </p> </div> ## Try It Go to [encrypit.com](https://encrypit.com/) to securely encrypt and decrypt files. This project is built with: - [Cloudflare Pages](https://pages.cloudflare.com/) - [MUI](https://mui.com/) - [Vite](https://vitejs.dev/) - [react-dropzone](https://react-dropzone.js.org/) - [zip.js](https://gildas-lormeau.github.io/zip.js/) ## Prerequisites - [nvm](https://github.com/nvm-sh/nvm#readme) ## Install Clone the repository: ```sh git clone https://github.com/encrypit/encrypit.git cd encrypit ``` Use the project's Node.js version: ```sh nvm use ``` Install the dependencies: ```sh npm install ``` ## Available Scripts In the project directory, you can run: ### `npm start` Runs the web app in the development mode. Open [http://localhost:5173](http://localhost:5173) to view it in the browser. The page will reload if you make edits. You will also see any errors in the console. Alternatively, you can run the client and the server separately: ```sh npm run client ``` ```sh npm run server ``` If the server exits without killing the app, then kill the process: ```sh kill $(lsof -ti :8788) ``` ### `npm run lint` Runs ESLint. ### `npm test` Runs Jest tests. ### `npm run build` Builds the web app for production to the `dist` folder. It correctly bundles 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! ## Assets [Logo](https://excalidraw.com/#json=0kNWq9d1BePagMI-_WJow,4W5vCTYSSJFF_mJC9NHtzA) ## License [MIT](LICENSE)
🔑 Securely encrypt and decrypt files.
decryption,encryption,file,file-sharing,file-upload,files,javascript,react,reactjs,typescript
2023-06-17T20:00:56Z
2024-05-17T22:21:09Z
2024-01-23T05:20:13Z
1
760
974
0
0
2
null
MIT
TypeScript
jellydn/floating-promise-demo
main
# Welcome to floating-promise-demo 👋 This project is a demo that illustrates how to handle floating promises in JavaScript. It aims to show the potential issues that can occur when promises are not properly dealt with, and offers solutions to prevent these issues, particularly by enforcing the `no-floating-promises` rule from TypeScript ESLint. Floating promises are a common JavaScript pitfall, where a Promise that has been instantiated is not returned, awaited, or otherwise handled, leading to potential unexpected behavior. [![IT Man - Understanding and Preventing Floating Promises in JavaScript | Tutorial [Vietnamese]](https://i.ytimg.com/vi/hF3yl4iOlwA/hqdefault.jpg)](https://www.youtube.com/watch?v=hF3yl4iOlwA) ## Prerequisites Before you begin, ensure you have met the following requirements: - [Bun — A fast all-in-one JavaScript runtime](https://bun.sh/). - You have a basic understanding of JavaScript and [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise). ## Getting Started To get a local copy up and running, follow these steps: 1. Clone the repository: ```bash git clone https://github.com/jellydn/floating-promise-demo.git cd floating-promise-demo ``` 2. Install dependencies: ```bash bun install ``` 3. Run the demo: ```bash bun run index.ts ``` ## What is floating promises? Floating promises are a common issue that can arise in asynchronous programming, specifically when dealing with Promises in JavaScript or TypeScript. The term "floating promise" refers to a Promise that has been instantiated but not appropriately handled or returned. This situation can lead to a variety of problems, such as improperly sequenced operations and ignored Promise rejections. The issue arises when a Promise, or an async function that implicitly returns a Promise, is invoked without handling its completion. This lack of handling can manifest in several ways: 1. Not using `await` with an async function or Promise. 2. Not using `.then()` with a Promise. 3. Not using `.catch()` with a Promise to handle potential errors. 4. Not returning the Promise from the function where it's invoked. ## Setting up ESLint with @typescript-eslint/no-floating-promises rule To help catch floating promises and other potential issues in your code, you can set up ESLint with TypeScript. Here's how: 1. First, install ESLint and the TypeScript parser and plugin for ESLint: ```bash bun add -d eslint @typescript-eslint/parser @typescript-eslint/eslint-plugin ``` 2. Next, create a `.eslintrc.cjs` file in the root of your project: ```bash touch .eslintrc.cjs ``` 3. Open `.eslintrc.cjs` in your editor and add the following configuration: ```javascript /* eslint-env node */ module.exports = { parser: "@typescript-eslint/parser", plugins: ["@typescript-eslint"], extends: [ "plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/recommended-requiring-type-checking", ], rules: { "@typescript-eslint/no-floating-promises": "error", }, parserOptions: { project: true, tsconfigRootDir: __dirname, }, root: true, }; ``` 4. You can now run ESLint on your TypeScript files to check for issues: ```bash npx eslint . --ext .ts ``` This setup will enforce the `no-floating-promises` rule, along with other recommended TypeScript rules. The `no-floating-promises` rule will throw an error whenever a floating promise is detected in your code. ## Incorrect Examples Here are some examples of incorrect according to the `no-floating-promises` rule: Incorrect: ```javascript // Example 1: A promise that's created but not returned or awaited. function example1() { Promise.resolve().then(() => { console.log("Promise resolved in example 1"); }); } // Example 2: A promise that's created in an async function but not awaited. async function example2() { Promise.resolve().then(() => { console.log("Promise resolved in example 2"); }); } // Example 3: A promise that's returned but without error handling. function example3() { return Promise.reject("This is an error in example 3"); } // Example 4: A promise that's created but not returned in a thenable chain. function example4() { Promise.resolve().then(() => { Promise.resolve().then(() => { console.log("Nested promise resolved in example 4"); }); }); } // Example 5: An async function that's invoked but not awaited. function example5() { (async () => { await Promise.resolve().then(() => { console.log("Async IIFE resolved in example 5"); }); })(); } ``` In the incorrect examples, the promises are instantiated but not properly handled. This can lead to unexpected behavior, as the promises may not complete when subsequent code is executed. In the correct examples, each promise is either `await`ed, returned, or has a `.then()` with two arguments or a `.catch()` with one argument, ensuring that the promise will be handled appropriately and not lead to potential issues. Enforcing these practices in your code can help to prevent bugs and improve code readability and predictability. ## Corrected Examples In `index.ts`, you can find examples of floating promises and the corresponding fixes to each one. Each example demonstrates a common mistake when working with promises, and the fixes illustrate how to avoid these errors using correct Promise handling techniques: 1. Promises that are created but not returned or awaited. 2. Promises that are created in an async function but not awaited. 3. Promises that are returned but without error handling. 4. Promises that are created but not returned in a thenable chain. 5. Async functions that are invoked but not awaited. For example: ```javascript // Example 3: A promise that's returned but without error handling. // Fix: Add error handling. function example3() { return Promise.reject("This is an error in example 3").catch((err) => { console.error( `Caught an error in example 3: ${JSON.stringify(err, null, 2)}` ); }); } // Using `void` with `example3()` to explicitly state we're not awaiting or returning this promise. // Be aware that this doesn't handle potential rejections. The promise will settle in the background. // If it rejects, the error will not be caught here, leading to unhandled promise rejection warnings. void example3(); ``` In this example, `example3` initially returns a promise that rejects without handling the error. The fix adds error handling to the promise, and we use the `void` keyword to start the promise without waiting for it, explicitly marking it as intentionally not awaited. Note that this does not handle potential rejections - if the promise rejects, the error will not be caught here, leading to unhandled promise rejection warnings. This repository aims to be a practical resource for learning about and preventing issues related to floating promises. We encourage you to explore `index.ts` to get a better understanding of these issues and how to avoid them. # Real-World Example with TypeScript Consider a real-world scenario where a user is created and an email is sent to that user. If we don't properly handle the promises returned by the `createUser` and `sendEmail` functions, we will face the floating promise issue. In this example, we will use TypeScript to provide static typing to our functions. Here's the TypeScript version of our previous JavaScript example: ```typescript // A mock function to simulate creating a user in a database function createUser(username: string, email: string) { return new Promise<{ id: number; username: string; email: string }>( (resolve, reject) => { // Simulate a delay with setTimeout setTimeout(() => { const user = { id: Date.now(), username, email }; console.log(`User created: ${JSON.stringify(user)}`); resolve(user); }, 1000); } ); } // A mock function to simulate sending an email function sendEmail(user: { id: number; username: string; email: string }) { return new Promise<number>((resolve, reject) => { setTimeout(() => { console.log(`Email sent to user: ${JSON.stringify(user)}`); resolve(Date.now()); }, 1000); }); } // A function that creates a user and sends an email to them // Here lies a floating promise issue function registerUser(username: string, email: string) { createUser(username, email).then((user) => { sendEmail(user); // This promise is floating, it's neither returned nor awaited }); } registerUser("johndoe", "johndoe@example.com"); ``` In the `registerUser` function, the promise returned by `sendEmail` is neither returned nor awaited, causing it to be a floating promise. The problem with this is that any errors that occur when sending the email won't be caught and handled, possibly leading to unhandled promise rejections. Can you spot the floating promise in this example and fix it? Try using the techniques we've discussed in this tutorial to identify and handle the floating promise properly. In the next section, we'll provide the solution for this real-world example. ## Solution To fix the floating promise issue in our real-world example, we can either return the promise or use async/await: ```typescript // Fix with returning the promise function registerUser(username: string, email: string) { return createUser(username, email).then((user) => { return sendEmail(user); }); } // Fix with async/await async function registerUser(username: string, email: string) { const user = await createUser(username, email); await sendEmail(user); } ``` Now, the promise from `sendEmail` is properly handled. If there's any error when sending the email, it will be propagated and can be caught where `registerUser` is called. This is how we can handle floating promises in real-world scenarios. If you have any questions or suggestions, feel free to open an issue or submit a pull request. Your feedback is always welcome! ## Related Videos [![IT Man - Tech #32 - Async await wrapper for easy error handling without try-catch [Vietnamese]](https://i.ytimg.com/vi/iLB75jzQrJ8/mqdefault.jpg)](https://www.youtube.com/watch?v=iLB75jzQrJ8) [![IT Man - Tech #30 - Deno 101 - The best developer experience [Vietnamese]](https://i.ytimg.com/vi/ocLNcwm4xUs/mqdefault.jpg)](https://www.youtube.com/watch?v=ocLNcwm4xUs) ## Author 👤 **Huynh Duc Dung @jellydn** - Website: https://productsway.com/ - Twitter: [@jellydn](https://twitter.com/jellydn) - Github: [@jellydn](https://github.com/jellydn) ## 🤝 Contributing Contributions, issues and feature requests are welcome! Remember, always handle your promises, and happy coding! ## Show your support [![kofi](https://img.shields.io/badge/Ko--fi-F16061?style=for-the-badge&logo=ko-fi&logoColor=white)](https://ko-fi.com/dunghd) [![paypal](https://img.shields.io/badge/PayPal-00457C?style=for-the-badge&logo=paypal&logoColor=white)](https://paypal.me/dunghd) [![buymeacoffee](https://img.shields.io/badge/Buy_Me_A_Coffee-FFDD00?style=for-the-badge&logo=buy-me-a-coffee&logoColor=black)](https://www.buymeacoffee.com/dunghd) If you find this project useful, show your support by giving it a ⭐️!
How to handle floating promises in JavaScript
javascript,promise,floating-promises
2023-06-24T14:32:20Z
2024-05-22T11:23:23Z
null
1
114
120
1
0
2
null
null
TypeScript
ViktorSvertoka/add-user-form
main
# add-user-form
My react practice ✍️
css3,html5,javascript,npm-package,react
2023-06-26T11:21:58Z
2023-06-27T12:28:21Z
null
1
7
15
0
0
2
null
null
JavaScript
JoelDeonDsouza/Next.js_Tests-Jest.js
main
## 🚀 Next.js with Jest.js Tests ## Documentation [Next.js](https://nextjs.org/) ### [Jest.js](https://jestjs.io/) ## Run Locally Clone the project ```bash git clone https://github.com/JoelDeonDsouza/Next.js_Tests-Jest.js.git ``` Go to the project directory ```bash cd project ``` Install dependencies ```bash npm install ``` Start the server ```bash npm run dev ``` ## Test Dependency Installation ```bash npm i -D jest jest-environment-jsdom @testing-library/react @testing-library/jest-dom ``` ## Running Tests To run tests, run the following command ```bash npm run test:watch ```
Simple test's using Next.js and Jest.js for testing.
javascript,jest-environment-jsdom,jest-tests,nextjs
2023-06-26T20:34:51Z
2023-06-29T18:59:59Z
null
1
0
6
0
0
2
null
null
JavaScript
KabirSinghMehrok/leetboard
master
<div align="center"><img src="https://i.imgur.com/OBBuuR3.png"></div> <h2 align="center">Leetboard</h1> <p align="center">Follow your friends on a Leetcode leaderboard</p> # Leetboard Chrome Extension Leetboard is a Chrome extension that allows you to track and follow your friends' progress on LeetCode. It acts as a leaderboard, providing insights into the number of questions your friends have solved, categorized by difficulty level (easy, medium, hard). The extension is built using ReactJS, Webpack, and Tailwind CSS. ## Current Features - **Leaderboard**: View your friends' progress on LeetCode, including the number of questions they have solved for each difficulty level (easy, medium, hard). ## Planned Features - **Topic-wise Progress**: Gain insights into the topic-wise progress of your friends. See which questions they have completed in different topics or categories. - **Daily Targets and Alerts**: Set daily targets for the number of questions you want to solve and receive alerts when your friends surpass specific targets. Stay motivated and competitive with your friends. - **Rewards System**: Earn rewards based on your progress and achievements. Unlock badges, levels, or other virtual rewards to gamify your LeetCode experience. ## Installation To install the Leetboard Chrome extension, follow these steps: 1. Download the .zip file from the [release](https://github.com/KabirSinghMehrok/leetboard/releases) page 2. Extract the contents of the zip file to a convenient location on your computer. 3. Open Google Chrome and navigate to `chrome://extensions/`. 4. Enable Developer Mode by toggling the switch in the top-right corner. 5. Click on the "Load unpacked" button and select the extracted folder (unpacked) from the downloaded zip file. 6. The Leetboard extension will be installed and ready to use. ## Contributing We welcome contributions to the Leetboard Chrome extension. To contribute, please follow these steps: 1. Fork the repository on GitHub. 2. Create a new branch with a descriptive name for your feature or bug fix. 3. Make your changes and test them thoroughly. 4. Commit your changes with clear and concise commit messages. 5. Push your changes to your forked repository. 6. Submit a pull request to the main repository, explaining the changes you have made. 7. Your contribution will be reviewed, and feedback or suggestions may be provided. ## License This project is licensed under the [MIT License](LICENSE). ## Contact If you have any questions, suggestions, or feedback, please reach out to me at [mehrok.kabir.singh@gmail.com](mailto:mehrok.kabir.singh@gmail.com). I appreciate your interest in Leetboard!
Compete with your friends on a leetcode leaderboard
chrome-extension,javascript,leetcode,react,rest-api,tailwindcss,webpack
2023-06-17T04:37:38Z
2023-07-01T11:24:19Z
2023-07-01T10:05:53Z
1
0
9
0
0
2
null
MIT
JavaScript
kajaveaniruddha/ToDoZen-client
master
# ToDoZen ToDoZen ,where productivity meets serenity. Experience seamless task management with our cloud-based web-app, combining efficiency and organization for a zen-like approach to getting things done. Effortlessly create, edit, and delete tasks, assign them to others, and collaborate with ease. Maximize your productivity and simplify task management with TodoZen. Let's get things done, together! App is live at: https://todozen-client.onrender.com/ ## Screenshots Login / Landing page: ![Login / Landing page](https://github.com/kajaveaniruddha/ToDoZen-client/assets/66174998/bf8e6404-7a08-4ab9-8e4a-b471e1bfa94e) User page: * Draggable Left Navbar. * CRUD operations on tasks can be performed here. * stationary material task assigned by mom as usual and you planning to go for sports. ![user page](https://github.com/kajaveaniruddha/ToDoZen-client/assets/66174998/7081fe69-a463-4264-bf39-0e5a4c06abfe) Edit your tasks here: ![edit page](https://github.com/kajaveaniruddha/ToDoZen-client/assets/66174998/35eed04f-0c0e-441c-ad8b-10920a9767bf) Edit your task's assignees here: * The search bar allows users to filter assignees by typing their email and displaying matching names as results. * Add and delete assignees from here. ![edit assignees page](https://github.com/kajaveaniruddha/ToDoZen-client/assets/66174998/eb5236c1-a5d3-44da-8f6a-2192418f77d5) ## Run Locally #### Note - you need to run the [server](https://github.com/kajaveaniruddha/ToDoZen-server) simultaneously. Clone the project ```bash git clone https://github.com/kajaveaniruddha/ToDoZen-client.git ``` Go to the project directory ```bash cd ToDoZen-client ``` Install dependencies ```bash npm install ``` Start the server ```bash npm run dev ``` Build for production ```bash npm run build ``` ## Tech Stack **Client:** React , React-HashRouter , TailwindCSS, Framer [**Server:**](https://github.com/kajaveaniruddha/ToDoZen-server) Node, Express, Mongoose ## Lessons Learned During my 5th semester, I undertook a two-week-long MERN project to apply the technologies I had learned up until that point and familiarize myself with new features' documentation. The goal was to build a cloud-based web application that allowed CRUD operations on tasks, along with features like task assignment to users in our database. My main challenges were to implement authentication and choose appropriate technologies for the project. I encountered challenges with authentication, which led me to conduct research on OAuth and Auth0. Eventually, I found a solution using [JSON Web Tokens (JWT)](https://jwt.io) . Additionally, I needed to select the right technology stack and optimize the project setup for efficiency. To handle authentication, I spent time researching and learning about OAuth, Auth0, and JWT. After evaluating different options, I decided to implement JWT for authentication in my project. I invested time in understanding the documentation and integrating it into the application. For the technology stack, I chose Node, Express, Mongoose, React, JSX, React-HashRouter, ES6,Framer, and Tailwind CSS. I utilized the `npm create vite@latest my-react-app --template react` boilerplate for a quicker setup and focused more on exploring various technologies. The project resulted in a functioning cloud-based web application that allowed CRUD operations on tasks and user assignment. Authentication was successfully implemented using JWT. The chosen technology stack worked well together. The React-HashRouter component resolved the URL issue after deployment, ensuring a smooth user experience. Utilizing Vite for setup proved beneficial, as it provided speed, simplicity, and flexibility. In future iterations, I plan to enhance the project further by incorporating Redux for improved performance and scalability, as well as adding features such as task completion and categorization. ## Why `<HashRouter>` and not `<BrowserRouter>` ? I decided to use React-HashRouter instead of the traditional React Router in my project. This choice was made in response to an unforeseen issue that occurred after deploying the web application. The problem was that the browser couldn't send the URL to the server, which caused users to be prompted to sign in again whenever they refreshed a page. By utilizing React-HashRouter, I was able to overcome this obstacle. It resolved the issue by storing the current location in the hash portion of the URL, ensuring that it was not sent to the server. As a result, users' authentication status and session information remained intact, eliminating the need for them to sign in repeatedly. This adjustment improved the user experience in my deployed web application. Learn more about [HashRouter](https://reactrouter.com/en/main/router-components/hash-router). Why `vite`? [Vite](https://vitejs.dev) was selected for its speed and straightforward configuration. The time invested in transitioning to Vite quickly paid off. Vite's Hot Module Replacement (HMR) feature ensured that changes were immediately reflected in the browser, and Speedy Web Compiler's (SWC) fast compilation times accelerated the build process. Despite its extensive capabilities, Vite remained user-friendly and did not impose limitations. Above all, using Vite allowed me to save time and provided a flexible tool that could easily integrate into any javascript project. ## License MIT License
null
framer-motion,react,tailwindcss,express,javascript,mongodb,nodejs
2023-06-27T10:24:21Z
2023-11-02T13:08:49Z
null
1
0
27
0
0
2
null
MIT
JavaScript
Raafey-Khan/Web-Development
main
# Web-Development Hello guys finally Web Development Repo is in the lane # Project 1 Tribute Website https://developers-choice.github.io/live-project3/ # Project 2 Job Application https://developers-choice.github.io/live-project2/ # Project 3 Paralex Website https://developers-choice.github.io/Paralex-Website/ # Project 4 Developer's Landing Page https://developers-choice.github.io/live_project4/ # Project 5 The Resturant Web UI https://developers-choice.github.io/live-project-5/ # Project 6 myTunes Extended Version https://developers-choice.github.io/live_project6/ # Project 7 Youtube Landing Page https://developers-choice.github.io/live-project7/ # Project 8 JavaScript Documentation Website https://raafey-khan.github.io/Web-Development/ # Core Web Development without additional stuffs you can find basics of Web Development in the files you can Easily Learn from them especially if your looking for Doing Hands on Coding #Seprate file of Each Langauage For # Html there are files from basic to Advance. For # Css there are files from basic to Advance. But for Javascript i gonna suggest you To Install Nodejs and run in on terminal first after learning some very basic instruction There are instructions in the js file folder you can learn how to run js in console as well it will be also great to start Overall I hope you like these Repo it will be gald if you contibute and give a star ,it will mean a Lot to me ,....Thank you; you can do a pull request if anythings wrong # Till then Happy Coding
Core Web Development without additional stuffs you can find basics of Web Development in the files you can Easily Learn from them especially if your looking for Doing Hands on Coding #Seprate file of Each Langauage For # Html there are files from basic to Advance For # Css there are files from basic to Advance But for Javascript I gonna suggest
basics-of-javascript,css,html5,javascript
2023-06-15T00:49:13Z
2024-03-05T08:37:40Z
null
1
0
48
0
0
2
null
null
HTML
unsoon/rate-limit
main
<p align="center"> <a href="https://unsoon.com"> <img src="https://i.ibb.co/Wcvbtsm/unsoon.png" width="200" alt="Unsoon Logo"> <h3 align="center">Unsoon</h3> </a> </p> ## Description Welcome to Unsoon, a rate-limiting package that helps you manage and control the rate of incoming requests to your application. This package provides various features and options to configure and customize the rate limiting behavior. By integrating this package into your project, you can prevent abuse, protect against DDoS attacks, and ensure fair usage of your resources. ## Installation You can install the package via `npm`, `yarn`, or `pnpm`. Run the following command in your project directory: ```bash # npm npm install --save @unsoon/rate-limit # yarn yarn add @unsoon/rate-limit # pnpm pnpm add @unsoon/rate-limit ``` ## Table of Contents - [Description](#description) - [Installation](#installation) - [Usages](#usages) - [RateLimitModule](#ratelimitmodule) - [Object configuration](#object-configuration) - [Callback configuration](#callback-configuration) - [Store](#store) - [Timeout](#timeout) - [Ignoring specific user agents](#ignoring-specific-user-agents) - [Error message](#error-message) - [Headers](#headers) - [Decorators](#decorators) - [@RateLimit()](#ratelimit) - [Object configuration](#object-configuration-1) - [Callback configuration](#callback-configuration-1) - [@SkipRateLimit()](#skipratelimit) - [Skipping a route or class](#skipping-a-route-or-class) - [Skipping with conditions](#skipping-with-conditions) - [Proxies](#proxies) - [Working with GraphQL](#working-with-graphql) - [Working with Websockets](#working-with-websockets) - [License](#license) ## Usages ### RateLimitModule The `RateLimitModule` in the `@unsoon/rate-limit` package provides a flexible and configurable way to apply rate limiting to your application. It allows you to set rate limit parameters using an object or a callback function, giving you the ability to customize the rate limiting behavior based on different conditions. When configuring the `RateLimitModule`, you have two options for setting rate limit parameters: an object or a callback function. #### Object Configuration You can set the rate limit parameters using an object that defines the following properties: - `limit`: The maximum number of requests allowed within the specified time window. - `window`: The duration (in milliseconds) of the time window during which the rate limit applies. - `store`: The storage mechanism to track and enforce rate limits. - `timeout`: The duration (in milliseconds) after which the rate limit expires (optional). Here's an example of setting rate limit parameters using an object: ```ts import { Module } from '@nestjs/common'; import { MemoryStore, RateLimitModule } from '@unsoon/rate-limit'; @Module({ imports: [ RateLimitModule.forRoot({ limit: 100, window: 60000, store: new MemoryStore(), timeout: 300000, }), ], }) export class AppModule {} ``` In the example above, the rate limit parameters are set using an object. The rate limit is configured to allow a maximum of 100 requests within a 60-second window. The `MemoryStore` is used as the storage mechanism to track and enforce the rate limits. Additionally, a timeout of 300,000 milliseconds (5 minutes) is set, after which the rate limit will expire. #### Callback Configuration Alternatively, you can use a callback function to dynamically set the rate limit parameters based on the incoming request. The callback function receives the request as a parameter and should return an object with the rate limit parameters. Here's an example of setting rate limit parameters using a callback function: ```ts import { Module } from '@nestjs/common'; import { MemoryStore, RateLimitModule } from '@unsoon/rate-limit'; import { Request } from 'express'; @Module({ imports: [ RateLimitModule.forRoot((req: Request) => { // Custom logic to determine rate limit parameters based on the request const limit = req.path === '/public' ? 1000 : 100; const window = req.path === '/public' ? 3600000 : 60000; return { limit, window, store: new MemoryStore(), timeout: 300000, }; }), ], }) export class AppModule {} ``` In the example above, a callback function is used to dynamically determine the rate limit parameters based on the request. If the request path is `/public`, a higher rate limit of 1000 requests within a 1-hour window is set. For other paths, a rate limit of 100 requests within a 1-minute window is set. The `MemoryStore` is used as the storage mechanism, and a timeout of 300,000 milliseconds is configured. Using a callback function allows you to make different rate limit configurations based on various conditions, such as the request path, request headers, or user roles. This flexibility enables you to apply rate limiting strategies that are specific to different parts of your application or different types of requests. You can also configure the `RateLimitModule` asynchronously by using the `forRootAsync` method. This allows you to inject configuration values dynamically, such as from a configuration service: ```ts @Module({ imports: [ RateLimitModule.forRootAsync({ imports: [ConfigModule], inject: [ConfigService], useFactory: (config: ConfigService) => ({ limit: +config.get('RT_LIMIT'), window: +config.get('RT_WINDOW'), store: new MemoryStore(), }), }), ], providers: [ { provide: APP_GUARD, useClass: RateLimitGuard, }, ], }) export class AppModule {} ``` By adding the `RateLimitGuard` as a global guard in your `AppModule`, all incoming requests will be subjected to rate limiting by default. Alternatively, you can use the `@UseGuards(RateLimitGuard)` decorator on specific routes or controllers to apply rate limiting only to those endpoints. Example with `@UseGuards(RateLimitGuard)`: ```ts // app.module.ts @Module({ imports: [ RateLimitModule.forRoot({ limit: 10, window: 5_000, store: new MemoryStore(), }), ], controllers: [AppController], providers: [AppService], }) export class AppModule {} // app.controller.ts @Controller() export class AppController { constructor(private readonly appService: AppService) {} @UseGuards(RateLimitGuard) getHello(): string { return this.appService.getHello(); } } ``` ### Store Package provides different store options for tracking requests and enforcing rate limits. Currently, the following store options are available: - `Memory Store`: This is the default store and stores request data in memory. It is suitable for single-server deployments or environments where high scalability is not a requirement. However, note that the memory store does not provide persistence, and rate limit data will be lost on server restarts. - `Redis Store`: This store utilizes Redis, an in-memory data structure store, to store rate limit data. Redis provides persistence and scalability, making it a good choice for distributed systems or when high availability is required. To use the Redis store, you need to install the redis package and configure the connection details. - `Custom Store`: Unsoon allows you to implement a custom store by extending the RateLimitStore abstract class. This gives you the flexibility to integrate with any data store or backend system of your choice. When using the Redis store, you need to provide a function that sends commands to Redis. The function should have the following signature: ```ts (...args: string[]) => Promise<unknown>; ``` `RateLimitStoreValues` type: ```ts export interface RateLimitStoreValues extends Record<string, any> { /** * The number of requests made. */ count: number; /** * The number of requests remaining in the current rate limit window. */ remaining: number; } ``` The actual command sending function varies depending on the Redis library you are using. Here are some examples of the function for different Redis libraries: | Library | Function | | ------------------------------------------------------------------ | ----------------------------------------------------------------- | | [`node-redis`](https://github.com/redis/node-redis) | `async (...args: string[]) => client.sendCommand(args)` | | [`ioredis`](https://github.com/luin/ioredis) | `async (...args: string[]) => client.call(...args)` | | [`handy-redis`](https://github.com/mmkal/handy-redis) | `async (...args: string[]) => client.nodeRedis.sendCommand(args)` | | [`tedis`](https://github.com/silkjs/tedis) | `async (...args: string[]) => client.command(...args)` | | [`redis-fast-driver`](https://github.com/h0x91b/redis-fast-driver) | `async (...args: string[]) => client.rawCallAsync(args)` | | [`yoredis`](https://github.com/djanowski/yoredis) | `async (...args: string[]) => (await client.callMany([args]))[0]` | | [`noderis`](https://github.com/wallneradam/noderis) | `async (...args: string[]) => client.callRedis(...args)` | Here are a couple of examples showing how to use the package with different Redis clients: Example with a [`node-redis`](https://github.com/redis/node-redis) client: ```ts import { Module } from '@nestjs/common'; import { RateLimitModule, RedisStore } from '@unsoon/rate-limit'; import { createClient } from 'redis'; const redis = createClient({ url: process.env.REDIS_URL }); redis.connect(); @Module({ imports: [ RateLimitModule.forRoot({ limit: 2, window: 1000, store: new RedisStore((...args: Array<string>) => redis.sendCommand(args)), }), ], }) export class AppModule {} ``` Example with a [`ioredis`](https://github.com/luin/ioredis) client: ```ts import { Module } from '@nestjs/common'; import { RateLimitModule, RedisStore } from '@unsoon/rate-limit'; import { Redis } from 'ioredis'; const redis = new Redis(process.env.REDIS_URL); @Module({ imports: [ RateLimitModule.forRoot({ limit: 2, window: 1000, store: new RedisStore((...args: Array<string>) => redis.call(args[0], ...args.slice(1))), }), ], }) export class AppModule {} ``` In these examples, the Redis client is created and configured based on the specific library used (node-redis or ioredis). The Redis store is then instantiated with the provided command sending function, allowing the package to interact with Redis for rate limiting purposes. ### Timeout The `RateLimitModule` provides a `timeout` option that allows you to specify the duration (in milliseconds) after which the rate limit will expire. This timeout value determines how long the rate limit will be enforced for a specific client. If the `timeout` option is not explicitly set, the module will use the value of the `window` option as the default timeout. This means that the rate limit will be enforced for the duration specified by the `window` option if no explicit `timeout` value is provided. Here's an example that demonstrates setting the `timeout` option: ```ts import { Module } from '@nestjs/common'; import { MemoryStore, RateLimitModule } from '@unsoon/rate-limit'; @Module({ imports: [ RateLimitModule.forRoot({ limit: 100, window: 60000, store: new MemoryStore(), timeout: 300000, // Set a timeout of 5 minutes }), ], }) export class AppModule {} ``` In the example above, the `timeout` option is set to `300000` milliseconds, which corresponds to a timeout of 5 minutes. This means that the rate limit for a specific client will be enforced for 5 minutes before expiring. If you omit the `timeout` option, the module will automatically use the value of the `window` option as the default timeout. For example, if the `window` is set to `60000` milliseconds (1 minute), the rate limit will be enforced for 1 minute by default. By specifying a custom `timeout` value, you can control how long the rate limit will be active for a client. This allows you to set different timeouts based on your application's needs and the desired rate limiting behavior. Keep in mind that the `timeout` value is optional, and if not provided, the module will fall back to using the `window` value as the default timeout. ### Ignoring specific user agents The package also provides a feature to ignore specific user agents from rate limiting. You can use the `ignoreUserAgents` key to specify regular expressions or patterns for user agents that should be excluded from rate limiting. In the `app.module.ts` file, you can configure the `ignoreUserAgents` option when setting up the module: ```ts @Module({ imports: [ RateLimitModule.forRoot({ // ... ignoreUserAgents: [ // Don't throttle requests that have 'googlebot' defined in their user agent. // Example user agent: Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) /googlebot/gi, // Don't throttle requests that have 'bingbot' defined in their user agent. // Example user agent: Mozilla/5.0 (compatible; Bingbot/2.0; +http://www.bing.com/bingbot.htm) new RegExp('bingbot', 'gi'), ], }), ], }) export class AppModule {} ``` Here, the `ignoreUserAgents` array contains regular expressions or patterns for user agents that should be ignored. Requests with user agents matching these patterns will not be subject to rate limiting. You can also specify the `ignoreUserAgents` option in the `@RateLimit()` decorator to exclude specific user agents from rate limiting for a particular route or controller: ```ts @RateLimit({ ignoreUserAgents: [ // Don't throttle requests that have 'googlebot' defined in their user agent. // Example user agent: Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) /googlebot/gi, // Don't throttle requests that have 'bingbot' defined in their user agent. // Example user agent: Mozilla/5.0 (compatible; Bingbot/2.0; +http://www.bing.com/bingbot.htm) new RegExp('bingbot', 'gi'), ], }) export class AppController { // ... } ``` By specifying the `ignoreUserAgents` option in the decorator, requests matching the specified user agents will not be rate limited for that particular route or controller. This feature allows you to selectively exclude certain user agents from rate limiting, which can be useful for accommodating search engine crawlers or other bots that you don't want to restrict. ### Error message To change the error message displayed when the rate limit is exceeded, you can use the `errorMessage` option provided by the `RateLimitModule`. By default, the module uses a generic error message, but you can customize it to provide more specific information to the client. Here's an example of how to set a custom error message: ```ts @Module({ imports: [ RateLimitModule.forRoot({ // ... errorMessage: 'Oops! You have exceeded the rate limit. Please try again later.', }), ], }) export class AppModule {} ``` In the example above, the `errorMessage` option is set to the desired error message. When a request exceeds the rate limit, this custom error message will be sent as the response to the client. By providing a meaningful error message, you can communicate the reason for the rate limit restriction and inform the client about when they can retry their request. Feel free to modify the `errorMessage` option to suit your specific use case and provide an appropriate error message to your clients. ### Headers The `RateLimitModule` automatically adds several headers to the response to provide rate limit information. Here are the headers that are included: - `x-rate-limit`: Indicates the maximum number of requests the client can make within the defined time window. - `x-rate-remaining`: Indicates the number of requests remaining for the client within the current time window. - `x-rate-reset`: Specifies the number of seconds remaining until the rate limit resets and the client can make new requests. - `retry-after`: If the maximum number of requests has been reached, this header specifies the number of milliseconds the client must wait before making new requests. By default, these headers are included in the response. However, if you don't need these headers or want to disable them, you can set the `includeHeaders` option to `false` when configuring the `RateLimitModule`. Here's an example: ```ts @Module({ imports: [ RateLimitModule.forRoot({ // ... includeHeaders: false, // Disable all rate limit headers }), ], }) export class AppModule {} ``` Setting `includeHeaders` to `false` will prevent the module from adding the rate limit headers to the response. ### Decorators The package provides two decorators that can be used to control rate limiting on specific routes or controllers. #### @RateLimit() The `@RateLimit()` decorator allows you to specify rate limiting options for individual routes or controllers. It can be applied like this: ```ts import { Controller, Get } from '@nestjs/common'; import { RateLimit } from '@unsoon/rate-limit'; @Controller('users') export class UsersController { @Get() @RateLimit({ limit: 100, window: 60000 }) // Allow 100 requests per minute getUsers() { // Handle GET /users request } } ``` You can configure the rate limit options using an object or a callback function. #### Object Configuration You can specify the rate limit options using an object. Here's an example: ```ts @RateLimit({ limit: 10, window: 3600 * 1000, errorMessage: 'You can only make 10 requests every hour' }) ``` In this case, the `limit` property specifies the maximum number of requests allowed within the defined `window` period (in milliseconds). The `message` property can be used to provide a custom error message when the rate limit is exceeded. #### Callback Configuration Alternatively, you can use a callback function to dynamically determine the rate limit options based on request parameters. Here's an example: ```ts @RateLimit((req: Request) => req.user.isPremium ? { limit: 100 } : { limit: 10 }) ``` In this example, the rate limit options are determined based on the isPremium property of the req.user object. If the user is premium, a higher limit of 100 requests is allowed; otherwise, a limit of 10 requests is enforced. #### @SkipRateLimit() The `@SkipRateLimit()` decorator allows you to skip rate limiting for specific routes or controllers. It can be used in the following ways: #### Skipping a Route or Class To skip rate limiting for a specific route or class, you can apply the `@SkipRateLimit()` decorator without any parameters. Here's an example: ```ts @SkipRateLimit() @Controller() export class AppController { @SkipRateLimit(false) dontSkip() {} doSkip() {} } ``` In this example, the `dontSkip` method is rate-limited, while the `doSkip` method is not limited in any way. #### Skipping with Conditions You can also use the `skipIf` parameter to skip rate limiting based on specific conditions. Here's an example: ```ts @Controller() export class AppController { @RateLimit({ skipIf: true }) // or @RateLimit({ skipIf: (req: Request) => !!req.user.isAdmin }) dontSkip() {} doSkip() {} } ``` In this example, the `dontSkip` method would be rate-limited unless the `skipIf` condition is true. The condition can be a boolean value or a callback function that evaluates the request object to determine whether to skip rate limiting. By using the `@RateLimit()` and `@SkipRateLimit()` decorators, you have fine-grained control over rate limiting for your routes and controllers, allowing you to customize the behavior based on your specific requirements. ### Proxies If you are working behind a proxy, you may need to configure the `trust proxy` option in the specific HTTP adapter you are using, such as Express or Fastify. Enabling this option allows you to obtain the original IP address from the `X-Forwarded-For` header. You can override the `getFingerprint()` method in the `RateLimitGuard` class and extract the IP address from the header instead of using `req.ip`. Here's an example that works with both Express and Fastify: ```ts // rate-limit-behind-proxy.guard.ts import { ExecutionContext, Injectable } from '@unsoon/rate-limit'; import { Injectable } from '@nestjs/common'; @Injectable() export class RateLimitBehindProxyGuard extends RateLimitGuard { override getFingerprint(context: ExecutionContext): string { const { request } = super.getRequestResponse(context); return request.ips.length ? request.ips[0] : request.ip; // Individualize IP extraction to meet your own needs } } // app.controller.ts import { Controller, UseGuards } from '@nestjs/common'; import { RateLimitBehindProxyGuard } from './rate-limit-behind-proxy.guard.ts'; @UseGuards(RateLimitBehindProxyGuard) @Controller() export class AppController { // ... } ``` ```ts // app.module.ts @Module({ imports: [ RateLimitModule.forRoot({ // ... fingerprint: (req: Request) => (req.ips.length ? req.ips[0] : req.ip), }), ], }) export class AppModule {} ``` ```ts // app.controller.ts @RateLimit({ fingerprint: (req: Request) => (req.ips.length ? req.ips[0] : req.ip), }) export class AppController { // ... } ``` In the above examples, the `RateLimitBehindProxyGuard` class extends the `RateLimitGuard` provided by the package and overrides the `getFingerprint()` method to extract the IP address from the `ips` property or `ip` property of the request object, depending on the presence of a proxy. The `RateLimitBehindProxyGuard` class is then used as a guard in the controller by applying the `@UseGuards()` decorator or as an option in the `RateLimitModule.forRoot()` configuration. ### Working with GraphQL To get the `RateLimitModule` to work with the GraphQL context, a couple of things must happen. - You must use `Express` and `apollo-server-express` as your GraphQL server engine. This is the default for Nest, but the [`apollo-server-fastify`](https://github.com/apollographql/apollo-server/tree/master/packages/apollo-server-fastify) package does not currently support passing `res` to the `context`, meaning headers cannot be properly set. - When configuring your `GraphQLModule`, you need to pass an option for `context` in the form of `({ req, res}) => ({ req, res })`. This will allow access to the Express Request and Response objects, allowing for the reading and writing of headers. ```ts @Module({ imports: [ GraphQLModule.forRoot<ApolloDriverConfig>({ // ... context: ({ req, res }) => ({ req, res }), }), ], }) export class AppModule {} ``` - You must add in some additional context switching to get the `ExecutionContext` to pass back values correctly (or you can override the method entirely) ```ts import { ExecutionContext, Injectable } from '@nestjs/common'; import { GqlExecutionContext } from '@nestjs/graphql'; import { RateLimitGuard } from '@unsoon/rate-limit'; import { Request, Response } from 'express'; @Injectable() export class GqlRateLimitGuard extends RateLimitGuard { getRequestResponse(context: ExecutionContext): { request: Request; response: Response; } { const { req: request, res: response } = GqlExecutionContext.create(context).getContext(); return { request, response }; // ctx.request and ctx.reply for fastify } } ``` ### Working with Websockets Here's an example of how to work with Websockets using the `RateLimitGuard` and customizing the error handling: ```ts import { ExecutionContext, Injectable } from '@nestjs/common'; import { RateLimitGuard } from '@unsoon/rate-limit'; @Injectable() export class WsRateLimitGuard extends RateLimitGuard { protected override getFingerprint(context: ExecutionContext) { return ['conn', '_socket'] .map((key) => context.switchToWs().getClient()[key]) .filter((obj) => obj) .shift().remoteAddress; } } ``` To handle exceptions and errors when working with Websockets, you can create a custom filter: ```ts import { ArgumentsHost, Catch, HttpException } from '@nestjs/common'; import { BaseWsExceptionFilter, WsException } from '@nestjs/websockets'; @Catch(WsException, HttpException) export class WsExceptionsFilter extends BaseWsExceptionFilter { catch(exception: WsException | HttpException, host: ArgumentsHost) { const client = host.switchToWs().getClient(); const error = exception instanceof WsException ? exception.getError() : exception.getResponse(); const details = error instanceof Object ? { ...error } : { message: error }; client.emit('error', details); } } ``` Then, in your WebSocket gateway or controller, apply the rate limit guard and exception filter: ```ts import { UseFilters, UseGuards } from '@nestjs/common'; import { SubscribeMessage, WebSocketGateway } from '@nestjs/websockets'; import { WsRateLimitGuard } from './ws-rate-limit.guard'; import { WsExceptionsFilter } from './ws-exceptions.filter'; @UseFilters(WsExceptionsFilter) @WebSocketGateway() export class AppGateway { @UseGuards(WsRateLimitGuard) @SubscribeMessage('message') handleMessage(): string { return 'Hello world!'; } } ``` Make sure to apply the `@UseGuards(WsRateLimitGuard)` decorator to the WebSocket handler or gateway method to enable rate limiting for Websockets. The `@UseFilters(WsExceptionsFilter)` decorator is used to handle exceptions and errors thrown during the WebSocket communication. With these implementations, you can effectively apply rate limiting and handle exceptions when working with Websockets in NestJS. ## License MIT © [Unsoon Social](http://github.com/unsoon)
Custom rate limiter for NestJS
ddos,nestjs,rate-limiter,unsoon,javascript,nodejs,typescript
2023-06-20T06:59:02Z
2024-03-03T12:26:36Z
2024-03-03T12:26:36Z
2
66
71
0
1
2
null
MIT
TypeScript
Geletsky/react-weather-app
main
<h1 align="center">React Weather App</h1> ## Description: This is a weather applications built using React that allows users to check the current weather and weather forecast for various cities. The application utilizes the `OpenWeatherMap API` to fetch weather data and the `GeoDB Cities API` to retrieve citynames. Additionally, the `react-select-async-paginate` library is used to enhance the user experience by providing a convenient city search functionality. ## Features: - **Current Weather:** Displays the current weather conditions for the selected city. - **Detailed Weather Information:** Provides a detailed description of current weather conditions such as pressure, humidity and wind speed. - **Weather Forecast:** Shows the weather forecast for 3 days, 5 days and 7 days, which allows users to plan ahead. The forecast includes temperature highs and lows, weather descriptions, and icons representing weather conditions. - **City Selection:** Using the react-select-async-paginate library to improve city selection. Users can easily search for a specific city, and the app will give suggestions as they type. ## Installation: ```bash # Clone the repository: git clone https://github.com/Geletsky/react-weather-app.git # Navigate to the project directory: cd project-directory # Install dependencies: npm install #Create a .env file in the project root directory and add the following lines, replacing <YOUR_API_KEY> with your respective API keys: REACT_APP_WEATHER_API_KEY=<YOUR_WEATHER_API_KEY> REACT_APP_RAPID_API_KEY=<YOUR_RAPID_API_KEY> # Start the development server: npm start ``` ## Usage: By launching the React Weather app, you will see a search bar where you can start entering the name of the city. As you type, the app will issue suggestions based on the GeoDB Cities API. Select a city from the drop-down list to view the current weather and forecast. The main page will display the current weather conditions for the selected city, including temperature, humidity, wind speed and pressure. To view the weather forecast for several days, go to the appropriate tabs. Each tab will display the predicted temperatures, weather descriptions, and weather icons for the corresponding time period. ## Demo: You can access the live demo of this application [here](https://react-weather-app-rust-theta.vercel.app/) ## Author: If you have any questions or suggestions regarding this project, feel free to contact the project owner: [here](https://github.com/Geletsky)
A weather application that provides current weather information and multi-day forecasts using OpenWeatherMap API and GeoDB Cities API, with a city search feature powered by react-select-async-paginate.
api,javascript,react-weather-app,reactjs,weather-app
2023-06-14T19:47:05Z
2023-06-23T20:58:18Z
null
1
0
11
0
2
2
null
null
JavaScript
md-mehedi-hasan-nabil/blog-webpage-with-react-redux
master
## Task 3 # simple-blog-webpag # 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)
simple blog webpage with react-redux
javascript,react,react-redux,redux
2023-06-12T16:41:00Z
2023-06-12T16:42:47Z
null
1
0
1
0
0
2
null
null
JavaScript
AmlrSF/Discord-MultiTaskBot
master
# Discord.js Bot - Readme This is a Discord bot built using Discord.js version 14 and Node.js. The bot provides several slash commands to enhance the functionality of your Discord server. It includes commands such as retrieving user information, searching Wikipedia, telling dad jokes, providing images based on search, and generating random quotes. Additionally, it incorporates basic slash commands for welcoming new users and more. ## Installation 1. Clone or download the repository to your local machine. 2. Ensure you have Node.js installed (version 16.6.0 or higher is recommended). 3. Open a terminal or command prompt and navigate to the project directory. 4. Run the following command to install the required dependencies: ```bash npm install ``` ## Configuration 1. Rename the `.env.example` file to `.env`. 2. Open the `.env` file and provide the necessary values for the environment variables: - `TOKEN`: Your Discord bot token. You can obtain this by creating a bot on the Discord Developer Portal. - (Optional) `PREFIX`: The prefix to use for non-slash commands. If not provided, the default prefix is `!`. - `DAD_JOKE_API`: The API endpoint for retrieving dad jokes. You can use "https://dad-jokes.p.rapidapi.com/random/joke". - `WIKI_API`: The API endpoint for searching Wikipedia. You can use "https://en.wikipedia.org/w/api.php?action=query&list=search&sr". - `FLICKR_API`: The API endpoint for searching images on Flickr. You can use "https://api.flickr.com/services/rest/?method=flickr.photos.search&api_key=636e1481b4f3c446d26b8eb6ebfe7127&tags=". - `QUOTE_API`: The API endpoint for generating random quotes. You can use "https://api.quotable.io/quotes/random". - `MEME_API`: The API endpoint for retrieving memes. You can use "https://meme-api.com/gimme". ## Usage To start the bot, run the following command: ```bash npm start ``` The bot will initialize and connect to your Discord server. You should see a confirmation message indicating that the bot is online. ## Slash Commands ### /user Retrieve information about a user. Usage: `/user` This command provides information about the user who executed the command. It displays details such as username, discriminator, user ID, avatar, and creation date. ### /wiki [search item] [limit] Search for a term on Wikipedia. Usage: `/wiki [search item] [limit]` This command allows you to search for a specific term on Wikipedia. The `search item` parameter should be the term you want to search for. The optional `limit` parameter specifies the maximum number of search results to display. If not provided, it defaults to 5. ### /joke Retrieve a random dad joke. Usage: `/joke` This command fetches a random dad joke using the Dad Joke API and sends it to the channel where the command was executed. ### /snap [image] Search for an image using a keyword. Usage: `/snap [image]` This command searches for an image based on the provided keyword using the Flickr API and sends it to the channel. The `image` parameter should be the keyword you want to search for. ### /quote [tag] Generate a random quote. Usage: `/quote [tag]` This command generates a random quote using the Quote API. You can optionally provide a `tag` parameter to specify a particular category or topic for the quote. ### /meme Retrieve a random meme. Usage: `/meme` This command fetches a random meme using the Meme API and sends it to the channel where the command was executed. ## Basic Slash Commands The bot also includes some basic slash commands to perform common tasks. These commands are: - `/welcome [user]`: Sends a welcome message to the specified user. Replace `[user]` with the actual user mention or user ID. - `/ping`: Checks the bot's latency and responsiveness. - `/help`: Displays a help message listing all available commands. ## Contributing Contributions to this project are welcome. If you find any bugs or have suggestions for new features, feel free to open an issue or submit a pull request on the GitHub repository. ## License This project is licensed under the [MIT License](https://opensource.org/licenses/MIT). You are free to modify and distribute the code as per the terms of the license. ## Acknowledgments This bot was developed using Discord.js, a powerful library for creating Discord bots in Node.js. Special thanks to the developers of Discord.js and the Discord community for their contributions and support.
Discord.js v14-powered bot with multiple slash commands for user info, Wikipedia searches, dad jokes, image searches, quotes, and memes. Basic slash commands for welcoming.
discord,discord-bot,discordjs-v14,javascript,js
2023-06-21T22:50:10Z
2023-06-25T22:52:56Z
null
1
0
11
0
0
2
null
null
JavaScript
souravsb66/CrunchDesigns
main
Crunch Designs Deployed Link: https://crunch-designs.netlify.app/ Replicating a page from the popular design template website Dribble Tech Stack used:- - HTML - CSS - JavaScript. Functionalities Added - - Log In / Sign Up - Sign up with a new account - All fields required to be filled, if not error is shown - Log in using signed-up credentials - On invalid credentials, the error is shown - Website Traffic Counter - A counter keeps increasing for every visit to the landing page - Profile Page - A new page that shows user details - Also the ability to edit user details - Admin Page - A new page that is only accessible to admins - Sorting / Filtering / Removing users (only for admins) - Admins can sort users based on their names alphabetically - Admins can filter the type of users between user/admin/mod - Admins can remove users - Admins have another tab where they keep track of all tasks Screens - Home Page ![Home Page1](./Files/HomePage1.png) ![Home Page2](./Files/HomePage2.png) Signup Page ![Signup Page](./Files/SignupPage.png) Login Page ![Login Page](./Files/LoginPage.png) Profile Page ![Profile Page](./Files/ProfilePage.png)
CrunchDesigns is a clone of popular design template website Dribble, with login signup features, updating user details, admin dashboard. Built with vanilla JS, HTML and CSS.
admin-panel,authentication,css,html,javascript
2023-06-13T09:47:58Z
2023-12-14T04:41:30Z
null
2
24
69
1
0
2
null
null
CSS
badrElRhazi/symfony-movies-project
main
# symfony-movies-project A Symfony project that allows you to browse movies database, CRUD a movie-(s). This project contains also authentification UI, without a correct email && password,you'll not have the permission to join the fascinating movies Database. More improvements are coming soon in the future :). Badr El Rhazi
A Symfony project that allows you to browse movies database, CRUD a movie-(s). This project contains also authentification UI, without a correct email && password,you'll not have the permission to join the fascinating movies Database. More improvements are coming soon in the future :). Badr El Rhazi
html-css,javascript,php7,symfony6,twig
2023-06-21T09:37:41Z
2023-07-06T08:28:20Z
null
1
0
60
0
0
2
null
null
PHP
anuraagnagar/flask-user-authentication
main
# User Authentication System in Flask/Python ### A Simple Authentication System Project with basic user functionality in Python Flask with SQLAlchemy. ## 👩‍💻 Live Demo ### 🔗https://anuraag01.pythonanywhere.com/home ## Project features & functionality - Create account - Log In via (Username & Email address) - Logout - Account activation via email - Reset password via reset link - Reset new email via confirmation link - Update profile & add image - Change password after login ## Framework & Library 1. [Flask](https://flask.palletsprojects.com/) 2. [Flask-Login](https://flask-login.readthedocs.io/) 3. [Flask-SQLAlchemy](https://flask-sqlalchemy.palletsprojects.com/) 4. [Flask-WTF](https://flask-wtf.readthedocs.io/) 5. [Flask-Mail](https://pythonhosted.org/Flask-Mail/) 6. [Flask-Migrate](https://flask-migrate.readthedocs.io) 7. [Bootstrap-Flask](https://bootstrap-flask.readthedocs.io/) 8. [Jinja2](https://jinja.palletsprojects.com/) ## Some Screenshots of our Project ### Register Page ![Register](https://github.com/anuraagnagar/flask-user-authentication/blob/main/screenshots/register_page.jpg) ### Login Page ![Login](https://github.com/anuraagnagar/flask-user-authentication/blob/main/screenshots/login_page.jpg) ### Forgot Password Page ![Forgot Password](https://github.com/anuraagnagar/flask-user-authentication/blob/main/screenshots/forgot_password_page.jpg) ### Reset Password Page ![Reset Password](https://github.com/anuraagnagar/flask-user-authentication/blob/main/screenshots/reset_password_page.jpg) ### Reset Email Page ![Reset Email](https://github.com/anuraagnagar/flask-user-authentication/blob/main/screenshots/reset_email_page.jpg) ### Home Page ![Home](https://github.com/anuraagnagar/flask-user-authentication/blob/main/screenshots/home_page.jpg) ### Edit Profile Page ![Edit Profile](https://github.com/anuraagnagar/flask-user-authentication/blob/main/screenshots/profile_page.jpg) ### Change Password Page ![Change Password](https://github.com/anuraagnagar/flask-user-authentication/blob/main/screenshots/change_password_page.jpg) ## Set up & Run locally. ### 1. Clone the git repository. ```bash git clone https://github.com/anuraagnagar/flask-user-authentication.git ``` ### 2. Go to the project directory. ```bash cd flask-user-authentication ``` ### 3. Create virtual environment. ```bash python3 -m venv venv ``` ### 4. Activate the environment. On Windows ```bash venv\scripts\activate ``` On MacOS/Linux ```bash source venv/bin/activate ``` To run this project locally, you will need to change `.env.example` file to `.env` on base directory and set environment variables. ### 5. Install the requirement packages. ```bash pip install -r requirements.txt ``` ### 6. Migrate/Create a database. Initialize the database migration directory. ```bash flask db init ``` Run migrate command. ```bash flask db migrate -m "initial_migration" ``` Upgrade the database for latest migration. ```bash flask db upgrade ``` ### 7. Last to run the server. ```bash flask run ``` To access this application open `http://localhost:5000` in your web browser. ## Contributing Contributions are welcome! If you find a bug or want to add a new feature, please open an issue or submit a pull request. For more information checkout ![CONTRIBUTING.md](https://github.com/anuraagnagar/flask-user-authentication/blob/main/CONTRIBUTING.md) ## Licence By contributing to this project, you agree that your contributions will be licensed under the ![MIT License](https://github.com/anuraagnagar/flask-user-authentication/blob/main/LICENSE).
A Simple Authentication System for managing user login & registration in Flask/Python with SQLAlchemy.
bootstrap-flask,css3,flask,flask-mail,flask-migrate,flask-sqlalchemy,flask-wtforms,html5,javascript,python
2023-06-22T16:01:00Z
2023-10-12T14:28:50Z
null
1
0
156
0
0
2
null
MIT
Python
poudelrohan/StormSnap
main
# Weather App This is a simple weather application that provides current weather information for a given location. It allows users to search for a specific location and view the current temperature, weather conditions, forecast for the next 7 days, and other relevant data. The application is built using HTML, CSS, JavaScript,and React. It utilizes the API from www.weatherapi.com to retrieve weather data based on the user's search query. The retrieved data is then displayed on the user interface in a clear and user-friendly manner. ## Features - **Search**: Users can search for a specific location by entering the city name. The application will retrieve and display the current weather information for that location. - **Weather Icons**: The weather conditions are represented using descriptive icons that visually indicate the current weather status. - **Background Changes**: The Weather App includes dynamic background changes based on the current weather conditions. These gradient changes provide a visually appealing background that reflects the weather atmosphere. ## Deployment The Weather App is deployed using GitHub Pages and can be accessed [here](https://poudelrohan.github.io/weather-app/). If the above link shows a blank white screen it means that the API has expired. ## Usage To use the Weather App locally or contribute to its development, follow these steps: 1. Clone the repository: ```shell git clone https://github.com/poudelrohan/weather-app.git ``` 2. Navigate to the project directory: ```shell cd weather-app ``` 3. Install dependencies ```shell npm install ``` 4. Runs the app in the development mode by typing the following code in the terminal. ```shell npm start ``` ## Usage - **Searching a Place**: Enter the name of a city in the search input field and press Enter to retrieve the weather data for the specified location. ![search](https://github.com/poudelrohan/weather-app/assets/115334248/e76ad471-0767-4df8-b0bb-e6a43fea25cc) - **Displaying Weather**: The app will display the current temperature, weather conditions, and forecast of the next 7 days for the searched location. ![display](https://github.com/poudelrohan/weather-app/assets/115334248/c48e7b38-9c6d-40e3-bf87-b170c68b07af) ## Acknowledgements The Weather App was developed by Rohan Poudel as a personal project. Special thanks to the following resources used in this project: - [Weather API](https://www.weatherapi.com/) - [IconFinder](https://www.iconfinder.com/) - [Dribbble](https://dribbble.com/shots/14271679-React-Weather-App) ## Contributing Contributions are always welcome! If you have any suggestions, bug reports, or feature requests, please open an issue on the [GitHub repository](https://github.com/poudelrohan/weather-app/issues). If you would like to contribute to the project, feel free to fork the repository and submit a pull request with your changes. ## License This project is licensed under the [MIT License](https://github.com/poudelrohan/weather-app/blob/main/LICENSE). ## Contact If you have any questions, suggestions, or feedback, please feel free to reach out to the project owner, Rohan Poudel, via email at [ro0han252525@gmail.com](mailto:ro0han252525@gmail.com). Enjoy!
This is a weather app I made using HTML, CSS, JavaScript ,and React. This app fetches data from weatherAPI of a specific location and displays it.
javascript,react,weather-api,weather-app,weather-forecast
2023-06-15T09:37:27Z
2023-07-10T05:59:11Z
null
1
1
13
0
0
2
null
MIT
JavaScript
bestlyg/bestlyg
master
<p align="center"> <a href="https://www.bestlyg.com"> <img width="200" src="https://www.bestlyg.com/static/logo.png"> </a> </p> <h1 align="center">Best Lyg</h1> <div align="center">李逸港的个人仓库。</div> [![BestLyg's GitHub stats](https://github-readme-stats.vercel.app/api?username=bestlyg)](https://github.com/bestlyg/bestlyg) [![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=bestlyg)](https://github.com/bestlyg/bestlyg) ## Contact Me - Phone : 13958696909 - Wechat : bestlyg - Email : bestlyg@foxmail.com / 1057966749@qq.com - Website : https://www.bestlyg.com
这是一个个人仓库,里面存储着编程依赖做过的的有意思的代码。
javascript,typescript,cpp,leetcode,rust
2023-06-10T09:04:01Z
2024-05-23T01:57:07Z
null
1
0
1,856
0
2
2
null
MIT
JavaScript
seanpm2001/SDE_MobileServer_Plugins_Gatsby
SDE_MobileServer_Plugins_Gatsby_Main-dev
*** # SDE MobileServer Plugin for Gatsby [:octocat: `🏠️ Home repository`](https://github.com/seanpm2001/SDE_MobileServer/) `🇸-🇩-🇪📱️🌐️💾️🔌️ SDE MobileServer Gatsby support plugin.` *** ## Summary This plugin adds Gatsby 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 08:56 pm PST)` ***
🇸-🇩-🇪📱️🌐️💾️🔌️ SDE MobileServer Gatsby support plugin.
gatsby,gatsby-plugin,gpl3,gplv3,javascript,javascript-lang,javascript-language,md,mobile-server,mobileserver
2023-06-16T23:17:47Z
2023-06-18T03:56:49Z
null
1
0
21
0
1
2
null
GPL-3.0
JavaScript
Madinakhan/Pig-game
master
## React Template with tailwindcss, scss and modern fonts ## ( Portfolio ) https://www.nurullokarimov.uz
null
javascript,react,scss
2023-06-24T10:06:49Z
2023-06-24T10:07:39Z
null
1
0
1
0
0
2
null
null
JavaScript
dsuthardeqode/txn-monitor
main
# Transaction Monitor API Simple Ethereum transaction monitor for transaction status polling. Blockwise Ethereum transaction monitor API for React and Javascript applications to track transaction status in certain block number. ## Use case ``` import checkTransactionStatus from "@0xdeepak/transaction-monitor" // OR const checkTransactionStatus = require("@0xdeepak/transaction-monitor") async function checkStatus() { // add your transaction hash const res = await checkTransactionStatus({txnHash:'0x......',chainId:137,maxConfirmationBlocks?:50}) // res { status: "txConfirmed" | "txRequested" | "txFailed", message: "Transaction is pending", receipt?: Object } } ``` ## APIs ### checkTransactionStatus() | Paramter | Type | Description | | ----------------------- | -------- | ------------------------------------------------- | | `txnHash` | `string` | Transaction has to be tracked. | | `chainId` | `number` | Transaction chain id | | `maxConfirmationBlocks` | `number` | It is option field, default value is `50` blocks. |
Blockwise Ethereum transaction monitor API for React and Javascript applications to track transaction status in certain block number.
ethereum,ethers,javascript,react,transaction-status,web3
2023-06-20T08:05:13Z
2023-06-20T13:29:19Z
null
1
0
6
0
0
2
null
MIT
TypeScript
notawhalea/SoftTeco-Project
main
# HELLO WORLD! :earth_africa: ********** **SoftTeco Test Task**💟 Main stack of this application: *JavaScript, React.JS, Antd, Chakra-UI, HTML, CSS*:stuck_out_tongue: This is my *vision* for the implementation of the *creation of a web application displaying all information about cryptocurrencies. [HOW IT'S LOOK LIKE](https://cryptons.netlify.app/) **Task** Сreate an application for processing api with the collection of news, statistics and information about cryptocurrencies. Primary requirements: 1. Adaptability of all components 2. Working search menu 3. The ability to view statistics for each coin(With different time periods) using a graph 4. Receiving nfts from different contract and collection 5. Routing 6. Pleasant design ********** **User guide**:paperclip: 1. Download zip-archive with code and open it in *VSCode/WebStorm*. 2. Change directory in console to first/second version `cd SoftTeco-Project` 3. In console write next command to install all dependencies and modules for our project. `npm install` 4. Then in console write next command to start program in live server. `npm start` 5. In browser search bar type next text `http://localhost:3000/` or it will open automatically 6. Enjoy it! ********** **How does it look like**:eyes: *Screen of Home Page* ![homePage](imgs/home.png) *Screen of Cryptocurrencies Page* ![cryprocurrencyPage](imgs/cryptocurrencies.png) *Screen of News Page* ![newsPage](imgs/news.png) *Screen of Nfts Page* ![nftsPage](imgs/nfts.png) *Screen of Statistic Page* ![nftsPage](imgs/statistic.png) ********** I just relax and gained experience here. Still in progress? Convert to draft!:wink: >Work it harder, make it better. Do it faster, makes us stronger. More than ever, hour after hour. Work is never over :microphone:Daft Punk — Harder, Better, Faster, Stronger
Test task for SoftTeco. Website with all infos about crypto(client). Technology stack: React, JavaScript, HTML, CSS
client,coinranking,css,html,javascript,js,rapidapi,react,react-router-dom,antd
2023-06-19T17:40:49Z
2023-07-22T23:41:36Z
null
2
6
50
0
0
2
null
MIT
JavaScript
erikfinkel/furniture
main
# Ecommerce Furniture React Tailwind CSS project ### Technology used - React JS - React Hooks - Tailwind CSS_ - Course API for products - Cool thing ## Demo [live Demo](https://ecommerce-furniture-website.netlify.app/)
It's a ecommerce website with react and tailwind css
javascript,react,tailwindcss,webpack
2023-06-09T20:37:00Z
2023-06-15T11:49:03Z
null
3
1
3
0
1
2
null
null
JavaScript
apurvanand-2002/Joke-App
main
# Joke-App Made using Html, CSS &amp; JS. It tells jokes related to the field of CSE.<br> Used VoiceRSS SDK containing its API for text to voice conversion & JokeAPI for getting Joke jsons.<br> Website: https://apurvanand-2002.github.io/Joke-App/
Made using Html, CSS & JS. It tells jokes related to the field of Software engineering. Used VoiceRSS SDK containing its API for text to voice conversion & JokeAPI for getting Joke jsons.
api,css,html,javascript,jokeapi,voicerss,voicerss-api
2023-06-20T02:10:26Z
2023-06-20T05:45:52Z
null
1
0
5
0
0
2
null
null
CSS
BrunoCosta19/PACMAN-BC2.0
main
null
Nostalgico jogo de fliperama
game,html,javascript,pacman-game
2023-06-26T20:24:16Z
2023-06-26T20:41:32Z
null
1
0
2
0
0
2
null
GPL-3.0
JavaScript
GaneshGourav/-screeching-circle-1069
main
## -screeching-circle-1069 **OWLEE** is an eduactional plateform for managing learning . The dashboard helps teachers to monitor student's Progress, Identify weakness, and offer additional support . ## DeployedLinked : https://owlee.netlify.app ## ScreenShot: ### Home Page: ![Home1](https://github.com/GaneshGourav/-screeching-circle-1069/assets/119353884/a62464c8-eef8-48bb-b36e-b6104eb96e1e) ### Courses : ![courses](https://github.com/GaneshGourav/-screeching-circle-1069/assets/119353884/7856421c-4e3c-46a7-a4a6-f16aab873c6b) ### FreeCourses: ![freeCourses](https://github.com/GaneshGourav/-screeching-circle-1069/assets/119353884/6df15712-0ae0-438c-9860-d99a4a91ed21) ### AboutUS : ![Aboutus](https://github.com/GaneshGourav/-screeching-circle-1069/assets/119353884/22527a53-6996-43b5-a03d-56cbf048fd0c) ### Footer Page : ![footer](https://github.com/GaneshGourav/-screeching-circle-1069/assets/119353884/b3b77d42-50b5-4ed8-9b6b-798d046c8bd9) ## Developed By : **Ganesh Kumar** ### Thanks for Visiting
OWLEE is an eduactional plateform for managing learning . The dashboard helps teachers to monitor student's Progress, Identify weakness, and offer additional support .
css,html5,javascript
2023-06-13T15:47:00Z
2023-06-19T09:28:33Z
null
2
3
10
0
0
2
null
null
JavaScript
daiaanebarbosaf/foodexplorer
main
null
Esta aplicação é um cardápio digital para um restaurante fictício, conhecido como Food Explorer.
css,html,javascript,reactjs,jwt,react-dom,react-icons,styled-components,swiper,vitejs
2023-06-20T19:29:55Z
2023-12-06T21:20:30Z
null
1
0
594
0
0
2
null
null
JavaScript
Siddhipatade/BMI-calculater
main
# BMI Calculator This is a simple BMI (Body Mass Index) calculator web application. It allows users to enter their weight and height and calculates their BMI based on the input. The application then displays the corresponding BMI result, indicating whether the person is underweight, normal, overweight, or obese. ## Usage 1. Enter your kilograms (KG) weight in the designated input field. 2. Enter your height in centimeters (CM) in the designated input field. 3. Click the "Calculate BMI" button to calculate your BMI. 4. The BMI results below the button will indicate whether you are underweight, normal, overweight, or obese. # BMI Categories The calculated BMI will fall into one of the following categories: Underweight: BMI <= 18.4 Normal: 18.5 <= BMI <= 24.9 Overweight: 25 <= BMI <= 29.9 Obese: BMI >= 30 # Example Here's an example of how the BMI calculator works: Weight: 65 KG Height: 170 CM Calculating BMI: BMI = Weight (KG) / Height (M)^2 BMI = 65 / (1.7)^2 BMI ≈ 22.49 BMI falls into the "Normal" category. ![image](https://github.com/Siddhipatade/BMI-calculater/assets/91780318/a735fc4a-8fad-4850-ab9d-c6f24844f0b7)
null
bmi-calculator,css,html,javascript
2023-06-14T15:04:41Z
2023-06-26T18:02:55Z
null
1
0
17
0
0
2
null
null
CSS
roycuadra/Circuit-Central
main
# Circuit Central Circuit Central is a website for selling Electronics parts and kits. # Features: ## Admin panel - Admin log in - Add Items - Delete Items - Edit Items ## Client - Add to Cart - Update Quantity - Remove Items - Delete All items - Checkout
Circuit Central is a website that i created for selling Electronics parts and kits.
bootstrap,mysql,php,javascript
2023-06-16T20:34:30Z
2023-11-30T05:14:56Z
null
1
1
4
0
0
2
null
null
PHP
sonatipek/track-the-movies
main
<p align="center" width="100%"> <img width="25%" src="https://raw.githubusercontent.com/sonatipek/track-the-movies/main/public/logo.svg"> </p> # 🎬 Track Movies on Your Watch - EN A web application where you can save the movies you watch with their information. You can add the movies you have watched with information such as poster, name, lead roles, director, genre and rating. In this way, you can easily keep track of the movies you watch. *We do not use any database. Only local storage is used to save your records.* ## 💻 Tech Stack - Astro.js - Bootstrap - Alpine.js ## 📷 Screen Shots ![image](https://github.com/sonatipek/track-the-movies/assets/80075444/a756e9d8-24c6-419b-9ac7-793516074e77) ![image](https://github.com/sonatipek/track-the-movies/assets/80075444/3733bc15-cc09-451b-a592-bfb3acc4e98e) ![image](https://github.com/sonatipek/track-the-movies/assets/80075444/8328e49f-c29d-43ab-9043-0e57294e627a) ## 💅🏼 Style Guide ### Colors | Color | Hex | | ----------------- | ------------------------------------------------------------------ | | Primary Color | ![#DC3545](https://placehold.co/10x10/dc3545/dc3545) #DC3545 | | Secondary Color | ![#FFC107](https://placehold.co/10x10/ffc107/ffc107) #FFC107 | | Dark Color | ![#212529](https://placehold.co/10x10/212529/212529) #212529 | | Light Color | ![#FFF](https://placehold.co/10x10/white/white) #FFF | ## Project Variations This project is a variation of the track-the-books project. Click here to check out the variation project: [Track Books on Your Read](https://github.com/sonatipek/track-the-books) ## 📍 Roadmap & To-Do List - update series / movies - share the movie and series list - the ability to add a watch date ## 🌟 Feedback If you have any feedback, please contact at **sonatsayginipek@gmail.com** or **sonatipek.com** . ## 🤝 Contribution Contributions are always welcome! Getting started see `CONTRIBUTING.md`. <br><br> # 🎬 İzlediğiniz Fimleri Takip Edin - TR İzlediğiniz filmleri bilgileri ile beraber kaydedebileceğiniz bir web uygulaması. İzlediğiniz filmleri afiş, isim, başroller, yönetmen, tür ve puan gibi bilgileri ile beraber ekleyebilirsiniz. Bu sayede izlediğiniz filmleri kolayca takip edebilirsiniz. *Herhangi bir veritabanı kullanmıyoruz. Kayıtlarınızı kaydetmek için yalnızca yerel depolama kullanılır.* ## 💻 Kullanılan Teknolojiler - Astro.js - Bootstrap - Alpine.js ## 📷 Ekran Görüntüleri ![image](https://github.com/sonatipek/track-the-movies/assets/80075444/a756e9d8-24c6-419b-9ac7-793516074e77) ![image](https://github.com/sonatipek/track-the-movies/assets/80075444/3733bc15-cc09-451b-a592-bfb3acc4e98e) ![image](https://github.com/sonatipek/track-the-movies/assets/80075444/8328e49f-c29d-43ab-9043-0e57294e627a) ## 💅🏼 Stil Rehberi ### Colors | Renk | Hex | | ----------------- | ------------------------------------------------------------------ | | Birincil Renk | ![#DC3545](https://placehold.co/10x10/dc3545/dc3545) #DC3545 | | İkincil Renk | ![#FFC107](https://placehold.co/10x10/ffc107/ffc107) #FFC107 | | Koyu Renk | ![#212529](https://placehold.co/10x10/212529/212529) #212529 | | Açık Renk | ![#FFF](https://placehold.co/10x10/white/white) #FFF | ## Proje Varyasyonları Bu proje track-the-books preojesinin varyasyonudur. Varyasyon projesine göz atmak için tıklayınız: [Track Books on Your Read](https://github.com/sonatipek/track-the-books) ## 📍 Yol Haritası & Yapılacaklar Listesi - Dizi ve Filmleri güncelleme özelliği - Dizi ve film listelerini paylaşma özelliği - izlenme tarihi ekleme özelliği ## 🌟 Geri bildirim Herhangi bir geri bildiriminiz varsa, lütfen **sonatsayginipek@gmail.com** veya **sonatipek.com** adresinden iletişime geçin. ## 🤝 Katkı Katkılara her zaman açığız! Başlamak için `CONTRIBUTING.md` dosyasına bakın.
A web application where you can save the movies you watch with their information. I used astro.js and bootstrap in this project, where I was especially careful to use OOP standards. I made sure that the design was fully responsive.
alpine,alpinejs,astro,astrojs,bootstrap,bootstrap5,javascript,movie,movie-tracker,fully-responsive
2023-06-27T09:12:30Z
2023-07-09T11:00:03Z
null
1
0
49
2
0
2
null
MIT
Astro
rishabh1801/ONE_BLOOD_the_SAVIOUR_FOR_ALL
main
null
null
blood-donation,css3,html5,javascript,responsive,website
2023-06-09T18:25:03Z
2023-06-11T07:58:41Z
null
1
0
8
0
0
2
null
null
CSS
vinicius51547/portfolio
main
<h1 align="center">Portifólio 👨‍💻</h1> <p align="center">Este é o meu portfólio, onde compartilho projetos e experiências de programação, demonstrando habilidades e conhecimentos em uma variedade de projetos interessantes.</p> ### Projetos Destacados ### 🔸 Lopesenatalio: Desenvolvi e hospedei um site responsivo para uma empresa de piso industrial, alcançando êxito na conclusão do projeto. Apesar disso, a empresa optou por não dar continuidade ao site. <br /><br /> 🛠 Tecnologias Utilizadas nesse projeto: - Html - Css - Sass - Javascript - PHPMailer - jQuery link do repositorio: https://github.com/vinicius51547/prjLopesenatalio <br /> link do projeto: https://lopesenatalio.wuaze.com ### 🔸 TaskHub: Projeto para criar e gerenciar tarefas com login do Google, compartilhamento público e comentários. <br /><br /> 🛠 Tecnologias Utilizadas nesse projeto: - Html - Css - Typescript - Nodejs - Firebase - Javascript link do repositorio: https://github.com/vinicius51547/Projeto-Tarefas <br /> link do projeto: https://tasskhub.netlify.app ### 🔸 EliteBarber: Apresentamos um projeto de barbearia com uma tela de administração, onde é possível registrar clientes, produtos, serviços e agendamentos. <br /><br /> 🛠 Tecnologias Utilizadas nesse projeto: - Php - Html - Css - JavaScript - Xampp - Mysql link do projeto: https://elitebarber.wuaze.com <br /> link do repositorio: https://github.com/vinicius51547/Projeto-Barbearia ### 🔸 Uniwise: Essa foi uma campanha de arrecadação de agasalhos para doação criada por meu grupo para o combate da frente fria que ocorreu em maio de 2021. <br /><br /> 🛠 Tecnologias Utilizadas nesse projeto: - Php - Html - Css - JavaScript link do projeto: https://uniwise.wuaze.com <br /> link do repositorio: https://github.com/vinicius51547/Uniwise ### 🔸 PixelsDesign: Landing page com formulário de contato. <br /><br /> 🛠 Tecnologias Utilizadas nesse projeto: - Html - Css - Javascript - Php - Mysql link do repositorio: https://github.com/vinicius51547/Projeto-Tarefas <br /> link do projeto: https://tasskhub.netlify.app ### 🔸 WaiterApp: App de pedidos com direito a categorias, cardápio e carrinho de compras. <br /><br /> 🛠 Tecnologias Utilizadas nesse projeto: - JavaScript - ReactNative - Typescript - MongoDB - Express - Expo - Node - Android studio link do repositorio: https://github.com/vinicius51547/WaiterApp <br /> ### 🛠 Tecnologias utilizadas no portifolio As seguintes ferramentas foram usadas na construção do projeto: - Html - Css - Sass - JavaScript ### 🔗 Acesso ao projeto Link do portifolio: https://vinicius51547.github.io/portfolio/ ### 📞 Contato Caso queira entrar em contato comigo para oportunidades profissionais ou qualquer outra pergunta, você pode me encontrar em: 📧 E-mail: vinicius51547@gmail.com <br /> 🔗 LinkedIn: https://www.linkedin.com/in/vinicius-gomes-605749251/
null
css,html,javascript,sass
2023-06-19T18:33:47Z
2024-02-15T16:58:32Z
null
1
0
53
0
0
2
null
null
HTML
yyppsk/JavaScript-Mastering
main
# JavaScript Basics <div align="right"> <img src="https://upload.wikimedia.org/wikipedia/commons/6/6a/JavaScript-logo.png" alt="JavaScript Logo" width="160px"> <img src="https://upload.wikimedia.org/wikipedia/commons/c/ce/Unofficial_JavaScript_logo.svg" alt="Unofficial JavaScript Logo" width="160px"> <img src="https://upload.wikimedia.org/wikipedia/commons/8/80/WHATWG_JavaScript_logo.svg" alt="Unofficial JavaScript Logo" width="160px"> <img src="https://upload.wikimedia.org/wikipedia/commons/7/7a/JavaScript_unofficial_logo.svg" alt="Unofficial JavaScript Logo" width="160px"> <img src="https://upload.wikimedia.org/wikipedia/commons/3/39/Edinburghjs.svg" alt="Unofficial JavaScript Logo" width="160px"> </div> Welcome to the JavaScript repository! This repository serves as a comprehensive guide for beginners who are eager to learn the fundamentals of JavaScript. Whether you're new to programming or looking to expand your skills, this repository will provide you with a solid foundation in JavaScript. I have designed multiple projects in Javascript in this repository that are functional. :) ## What is JavaScript? JavaScript is a powerful and versatile programming language that is primarily used for web development. It allows you to add dynamic and interactive elements to websites, making them more engaging and user-friendly. JavaScript is supported by all modern web browsers, making it a crucial tool for front-end web development. # Projects : - [Guess My Number Game](https://yyppsk.github.io/JavaScript-Mastering/05-Guess-My-Number/starter/) - [Dice Roll Game](https://yyppsk.github.io/JavaScript-Mastering/07-Pig-Game/starter/) - More coming! ## [Guess My Number Game](https://yyppsk.github.io/JavaScript-Mastering/05-Guess-My-Number/starter/) Guess My Number is a simple interactive game where players try to guess a randomly generated number within a given range. In this particular implementation, the number to be guessed falls between 0 and 20. The game provides feedback to the player, indicating whether their guess is too high or too low, helping them narrow down the correct answer. The goal is to guess the number in the fewest attempts possible and achieve the highest score. To experience the game, please visit the [Guess My Number Game](https://yyppsk.github.io/JavaScript-Mastering/05-Guess-My-Number/starter/) website. Feel free to explore the code and contribute to the project to enhance its features and functionality. Happy guessing! <table> <tr> <td><img src="https://github.com/yyppsk/JavaScript-Mastering/assets/69805496/a9d4a55d-6cca-44bf-b230-e4f65eecafe4" alt="Image 1"></td> <td><img src="https://github.com/yyppsk/JavaScript-Mastering/assets/69805496/63cccbb3-d8db-4843-9312-ce54f7c47731" alt="Image 2"></td> </tr> </table> ## [Dice Roll Game](https://yyppsk.github.io/JavaScript-Mastering/07-Pig-Game/starter/) The Dice Roll Game is an interactive two-player game where each player takes turns rolling a die to accumulate points. The objective is to reach a total score of 50 points. Players can roll the dice multiple times, and each roll adds to their current score. However, if a player rolls a 1, their turn ends, and they lose their accumulated points for that turn. The game continues until one of the players reaches the target score of 50, resulting in victory. It's a fun and competitive game that tests luck and strategic decision-making. <table> <tr> <td><img src="https://github.com/yyppsk/JavaScript-Mastering/assets/69805496/b838328c-80f5-4dbc-a0e8-752d1870a6bb" alt="Image 1"></td> <td><img src="https://github.com/yyppsk/JavaScript-Mastering/assets/69805496/6d512f55-77c5-4211-a806-ab8aeacc9266" alt="Image 2"></td> </tr> </table> To experience the game, please visit the [Dice Roll Game](https://yyppsk.github.io/JavaScript-Mastering/07-Pig-Game/starter/) website. Feel free to explore the code and contribute to the project to enhance its features and functionality. Happy Rolling! <p align="center"> <img src="https://github.com/yyppsk/JavaScript-Mastering/assets/69805496/f341b1e5-82ea-4631-829d-4027e5e08592" width="15%"> <img src="https://github.com/yyppsk/JavaScript-Mastering/assets/69805496/db97d2ee-683f-49cf-812a-da3f682eeb8d" width="15%"> <img src="https://github.com/yyppsk/JavaScript-Mastering/assets/69805496/13555ebf-b0fb-4dd7-9121-200d87142fec" width="15%"> <img src="https://github.com/yyppsk/JavaScript-Mastering/assets/69805496/6232fd28-7d67-4b02-830d-81359503ae43" width="15%"> <img src="https://github.com/yyppsk/JavaScript-Mastering/assets/69805496/a08464c7-2fa6-4786-a7ed-86ce70cb3d1f" width="15%"> <img src="https://github.com/yyppsk/JavaScript-Mastering/assets/69805496/9939ebd5-ec7e-40e2-b875-c9b994a34a76" width="15%"> </p> ## Key Features of JavaScript - **Easy to Learn:** JavaScript has a syntax similar to other popular programming languages, such as Java and C, making it relatively easy to pick up for beginners. - **Versatile:** JavaScript can be used for both front-end and back-end development. It allows you to create dynamic web pages, build web applications, develop server-side applications, and even create mobile apps using frameworks like React Native. - **Interactivity:** JavaScript allows you to add interactivity to your web pages by responding to user actions. You can create interactive forms, validate user inputs, and enhance user experience through animations and effects. - **Extensibility:** JavaScript is highly extensible through the use of libraries and frameworks. You can leverage popular libraries like jQuery and frameworks like React.js and Vue.js to streamline your development process and build more complex applications. ## Repository Structure This repository is organized into the following sections: 1. **Introduction to JavaScript:** Covers the basics of JavaScript, including variables, data types, operators, control flow, and functions. 2. **DOM Manipulation:** Explains how to interact with the Document Object Model (DOM) using JavaScript to dynamically modify web page content and respond to user events. 3. **Asynchronous JavaScript:** Introduces asynchronous programming concepts, including promises, async/await, and the XMLHttpRequest object for making AJAX requests. 4. **JavaScript Best Practices:** Provides guidelines and best practices to write clean, efficient, and maintainable JavaScript code. ## Getting Started To get started with learning JavaScript, follow these steps: 1. Clone the repository: `git clone https://github.com/your-username/javascript-basics.git` 2. Navigate to the repository directory: `cd javascript-basics` 3. Open the files in your preferred code editor. 4. Follow the step-by-step tutorials and examples provided in each section of the repository. ## Contributions Contributions to this repository are welcome! If you find any errors, or typos, or have suggestions for improvement, feel free to submit a pull request. Please ensure that your contributions align with the goal of this repository, which is to provide beginners with a solid understanding of JavaScript basics. ## Resources Here are some additional resources that you may find helpful in your JavaScript learning journey: - [MDN Web Docs - JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript) - [JavaScript.info](https://javascript.info/) Let's dive into the exciting world of JavaScript and start building amazing web applications! Happy coding!
Mastering the Advanced Concepts of JavaScript through Various coding challenges, exercises and Projects.
javascript,js,nodejs
2023-06-21T19:48:20Z
2023-08-27T20:13:06Z
2023-07-06T12:34:07Z
1
11
150
0
0
2
null
null
JavaScript
AhmedYahyaE/php-contact-form
main
# Plain PHP Contact Form with Server-side and Client-side Validation A plain PHP Contact Form with both Server-side and Client-side Validation with the help of jQuery and Bootstrap. Used Font-Awesome library too. ## Screenshots: ![contact-form](https://github.com/AhmedYahyaE/php-contact-form/assets/118033266/5b53a178-d9ca-40e5-8dd9-771162d20016)
A plain PHP Contact Form with both Server-side and Client-side Validation with the help of jQuery and Bootstrap
backend,client-side-validation,contact-form,css,font-awesome,html,javascript,jquery,php,server-side-validation
2023-06-11T02:47:41Z
2023-06-17T20:24:14Z
null
1
0
9
0
0
2
null
null
PHP
leooportilla/portafolio
master
![Wave](./media/images/readme_wave_top.png) # Mi Portafolio 🏅 Mi portafolio web se basa en mostrar mis **trabajos** y mis **habilidades** como **desarrollador frontend**, donde muestro los **proyectos** en los que he trabajado. También nombro las **tecnologías y herramientas** que sé usar, mi **educación** como desarrollador frontend o en un campo relacionado. Por último, indico dónde podrían **contactarme** para discutir oportunidades de trabajo. | Funcionalidad | Descripcion | | --- | ---| | Modo Dark | Permite al usuario cambiar la apariencia visual de un tema claro a un tema oscuro, y asegúra de que las preferencias del usuario se guarden adecuadamente. | | Boton de inicio | Al desplazarnos hacia abajo en la página utilizando este botón, regresaremos al inicio de manera rápida y sencilla. | | Atajos de teclado | En la sección de habilidades, al abrir la ventana de información, podemos cerrarla fácilmente utilizando la tecla ESCAPE. Del mismo modo, en el campo de búsqueda del perfil en GitHud, también podemos cerrarlo. Además, podemos utilizar la tecla ENTER para buscar de manera rápida, como tambien poder mover hacia la derecha o izquierda el slider de los proyectos con las flechas | | Diseño responsivo | La página se ajusta de manera óptima a cualquier tamaño de pantalla, garantizando una experiencia de visualización perfecta en todos los dispositivos. | | Menu de navegacion | Mediante este menú, los usuarios pueden acceder rápidamente a las secciones de la página que les interesan. En el pantalla movil o de tableta, el menú se oculta, pero se puede desplegar utilizando el botón de menú. ## Seccion - Sobre mi 👋 En esta sección, proporciono un resumen conciso de mi **experiencia profesional**, **formación académica** y las **tecnologías** que he adquirido. Adyacente a este resumen, se encuentra un bloque dedicado a las **habilidades que he dominado**. Al seleccionar cada habilidad, se despliega una **ventana con información** detallada sobre su aplicación. Además, se incluye un enlace que redirige a la **página oficial** correspondiente para cada habilidad. ## Seccion - Proyectos 📑 Esta sección es de vital importancia, ya que en ella exhibo todos los **proyectos** que he realizado. La información presentada se obtiene directamente de mi cuenta en **GitHub** mediante su **API**. Un aspecto destacado de esta sección es que los proyectos se cargan desde Git Hub, lo que significa que **cualquier persona** puede buscar sus propios proyectos desde aquí. Esta funcionalidad permite cargar sus repositorios junto con su nombre, descripcion y topics; sus seguidores, su nombre, la descripcion que tiene en su cuenta de Git Hub Para el **correcto funcionamiento** de la búsqueda, es esencial que el usuario tenga su cuenta de GitHub adecuadamente configurada. Esto implica que la cuenta debe contener una **descripción detallada**, al igual que cada uno de los repositorios. Además, es importante incluir los **‘topics’** correspondientes y, si se tiene vinculada, **enlaces** a su pagina de cada repositorio. ## Seccion - Contacto 🤝 Por último, en la página contamos con un **mapa interactivo** que muestra mi ubicación, todo esto se carga utilizando la **API de Leaflet**. En el primer bloque, ofrecezco la opción de descargar mi **currículum** en formato PDF. Por otro lado, se encuentra un **formulario** de contacto donde los usuarios pueden comunicarse directamente conmigo a través de mi correo electrónico. El formulario solicita información como el nombre, correo electrónico y un mensaje que deseen enviarme. Para esta funcionalidad, se utiliza la **API de FormSubmit**. ## Leonardo Portilla ❤️ Desarrollador Frontend 🔥| HTML, CSS, SASS, JAVASCRIPT [![Instagram](./media/images/readme_button_instagram.png)](https://www.instagram.com/leooportilla/) [![Linkedin](./media/images/readme_button_linkedin.png)](https://www.linkedin.com/in/leooportilla/) [![githud](./media/images/readme_button_github.png)](https://github.com/leooportilla) ![Wave](./media/images/readme_wave_bottom.png)
Es un portafolio basado en desarrollo Frontend es una vitrina de mis habilidades en tecnologías como HTML, CSS, JavaScript y frameworks como Sass. Muestro mis habilidades en diseño responsivo, adaptativo y manejo de APIs y datos dinámicos.
css,html,javascript,sass
2023-06-27T01:18:54Z
2024-05-18T14:01:35Z
null
1
0
61
0
0
2
null
MIT
JavaScript
coderkearns/signal
main
<img align="right" width="200" height="200" src="https://github.com/coderkearns/template-typescript/blob/main/logo.png?raw=true" /> # signal Simple TS reactivity primitives, based around the subscription (observer) design pattern. ## Getting Started ### Installing > IMPORTANT: not yet registered on npm! You can install from npm: ``` $ npm install -s @coderkearns/signal ``` Or directly from this repository for bleeding-edge features: ``` $ npm install -s git+github.com/coderkearns/signal ``` ## Documentation See [DOCS.md](./DOCS.md) for documentation and examples. ## License This project is licensed under the [MIT](https://choosealicense.com/licenses/mit/) License - see the [LICENSE](./LICENSE) file for details.
Simple TS reactivity primitives
javascript,reactivity,signal,signals,typescript
2023-06-26T04:16:21Z
2023-07-14T03:15:33Z
null
1
0
10
0
0
2
null
MIT
TypeScript
alstn113/ts-design-patterns
main
# Design Patterns ## Creational Pattern(생성 패턴) 객체의 생성 방식과 객체 생성과정을 추상화하여 객체 생성을 단순화하는 패턴입니다. 주요 목표는 유연성, 재사용성, 코드의 간결성을 향상시키는 것입니다. - Constructor (생성자 패턴): - 객체를 생성하는 데 사용되는 기본적인 패턴입니다. - 클래스의 생성자 함수를 활용하여 객체를 초기화하고 필요한 속성을 설정합니다. - 객체 생성 시 필요한 매개변수를 전달하고, 초기화 로직을 실행합니다. - Factory (팩토리 패턴): - 객체를 생성하기 위한 인터페이스를 정의하고, 실제 객체의 생성을 서브클래스에 위임하는 패턴입니다. - 객체 생성 로직을 캡슐화하여 클라이언트 코드에서 객체 생성과 관련된 세부 사항을 알 필요가 없게 합니다. - 객체의 생성 방식을 유연하게 변경하고, 객체 생성을 중앙에서 관리할 수 있습니다. - Abstract Factory (추상 팩토리 패턴): - 서로 연관된 객체들을 생성하기 위한 인터페이스를 정의하고, 구체적인 팩토리 클래스가 이를 구현하는 패턴입니다. - 추상 팩토리는 일련의 관련된 객체들을 생성하기 위한 추상 메서드를 제공합니다. - 클라이언트 코드는 추상 팩토리를 통해 객체를 생성하고, 구체적인 팩토리 클래스의 변화 없이 객체를 교체할 수 있습니다. - Prototype (프로토타입 패턴): - 객체를 복제하여 생성하는 패턴입니다. - 초기 객체를 프로토타입으로 사용하고, 이를 복제하여 새로운 객체를 생성합니다. - 객체 생성 비용을 줄이고, 유사한 객체들을 생성하는 데 유용합니다. - Singleton (싱글톤 패턴): - 애플리케이션 전역에서 단 하나의 인스턴스를 생성하는 패턴입니다. - 인스턴스를 단일 객체로 공유하고, 중복 생성을 방지합니다. - 전역 상태를 관리하거나 리소스 공유에 유용한 패턴입니다. - Builder (빌더 패턴): - 복잡한 객체의 생성 과정을 추상화하여 단계별로 객체를 구성하는 패턴입니다. - 객체의 생성과 구성을 분리하여 유연한 객체 생성을 가능하게 합니다. - 동일한 생성 과정으로 다양한 종류의 객체를 생성할 수 있습니다. ## Structural Pattern(구조 패턴) 객체 간의 관계를 구성하고, 객체들을 더 큰 구조로 조합하는 패턴입니다. 주로 상속, 인터페이스, 컴포지션 등을 활용하여 시스템의 구조를 설계하고 확장하기 위해 사용됩니다. - Adapter (어댑터 패턴): - 호환되지 않는 인터페이스를 가진 두 개의 클래스를 연결해주는 패턴입니다. - 어댑터 클래스를 사용하여 클라이언트가 기존 클래스의 인터페이스를 사용할 수 있도록 변환합니다. - 호환성을 제공하며, 기존 클래스의 수정 없이도 새로운 인터페이스를 활용할 수 있습니다. - Bridge (브릿지 패턴): - 추상화와 구현을 분리하여 각각 독립적으로 확장할 수 있는 패턴입니다. - 추상화(추상 클래스나 인터페이스)와 구현체(구현 클래스)를 분리하여 결합도를 낮추고 유연성을 높입니다. - 추상화와 구현체 사이의 다른 기능들을 조합하여 다양한 결과를 얻을 수 있습니다. - Composite (컴포지트 패턴): - 객체들을 트리 구조로 구성하여 부분과 전체를 나타내는 패턴입니다. - 단일 객체와 복합 객체를 동일한 방식으로 다룰 수 있습니다. - 객체들 간의 계층 구조를 표현하고, 클라이언트가 개별 객체와 복합 객체를 일관되게 다룰 수 있습니다. - Decorator (데코레이터 패턴): - 기존 객체의 기능을 동적으로 확장하기 위한 패턴입니다. - 객체에 추가적인 기능을 런타임에 유연하게 추가할 수 있습니다. - 상속을 통해 객체의 기능을 확장하는 것보다 유연하고 확장성이 높습니다. - Facade (퍼사드 패턴): - 복잡한 서브시스템을 단순한 인터페이스로 감싸고 제공하는 패턴입니다. - 클라이언트가 서브시스템과의 상호작용을 단순화하여 사용하기 쉽게 합니다. - 서브시스템 내부의 복잡한 동작을 감추고, 단일 진입점을 제공합니다. - Flyweight (플라이웨이트 패턴): - 많은 수의 유사한 객체를 효율적으로 공유하여 메모리 사용량을 줄이는 패턴입니다. - 객체의 상태를 내부(intrinsic) 상태와 외부(extrinsic) 상태로 분리합니다. - 내부 상태는 객체들이 공유하고, 외부 상태는 각 객체마다 가지게 됩니다. - Proxy (프록시 패턴): - 다른 객체를 대신하여 접근을 제어하거나 추가적인 기능을 제공하는 패턴입니다. - 실제 객체에 대한 접근을 중간에 대리자 객체(proxy)가 처리합니다. - 클라이언트와 실제 객체 사이에 중재자 역할을 하여 보안, 성능 최적화, 지연 로딩 등의 기능을 수행합니다. ## Behavioral Pattern(행동 패턴) 객체 간의 상호작용과 책임 분배를 중심으로 설계하는 패턴입니다. 객체 간의 행동 패턴을 조직화하여 효율적인 소프트웨어 설계를 가능하게 합니다. - Chain of Responsibility (책임 연쇄 패턴): - 객체들이 연결된 체인을 형성하여 요청을 처리하고 전달하는 패턴입니다. - 요청을 처리할 수 있는 객체를 찾을 때까지 체인 상의 객체들을 순차적으로 탐색합니다. - 객체들 간의 결합도를 낮추고, 요청을 처리하는 객체를 동적으로 변경할 수 있게 합니다. - Command (명령 패턴): - 작업을 요청하는 객체와 작업을 수행하는 객체를 분리하여 요청을 캡슐화하는 패턴입니다. - 요청을 객체로 캡슐화하여 실행 취소, 재실행 등의 기능을 제공합니다. - 요청을 발생시키는 객체와 요청을 수행하는 객체 사이의 결합도를 낮춥니다. - Iterator (반복자 패턴): - 컬렉션 객체의 요소들에 접근하는 방식을 표준화하는 패턴입니다. - 컬렉션 객체의 내부 구조에 상관없이 요소들을 반복적으로 접근할 수 있습니다. - 반복 작업을 추상화하여 코드의 일관성과 유연성을 제공합니다. - Mediator (중재자 패턴): - 객체들 사이의 복잡한 상호작용을 캡슐화하는 패턴입니다. - 중재자 객체를 통해 객체들이 직접 통신하지 않고 중재자를 통해 상호작용합니다. - 객체들 간의 결합도를 낮추고, 객체들의 상호 의존성을 최소화합니다. - Memento (메멘토 패턴): - 객체의 상태를 저장하고 복원하는 메커니즘을 제공하는 패턴입니다. - 객체의 상태를 외부로부터 분리하여 저장하고, 필요할 때 이전 상태로 복원할 수 있습니다. - 상태의 변경에 따른 객체의 내부 구조에 영향을 주지 않고 복원할 수 있습니다. - Observer (옵저버 패턴): - 객체들 사이에 일대다 의존 관계를 정의하는 패턴입니다. - 상태 변화가 발생하면 관련된 모든 객체들에게 자동으로 알림을 보내 업데이트합니다. - 객체들 간의 결합도를 낮추고, 유연하고 확장 가능한 시스템을 구성할 수 있습니다. - State (상태 패턴): - 객체의 내부 상태에 따라 동작이 달라지는 패턴입니다. - 상태를 객체로 캡슐화하고, 동적으로 상태를 변경할 수 있습니다. - 조건문을 통한 분기 처리를 피하고, 객체의 상태에 따른 동작을 캡슐화합니다. - Strategy (전략 패턴): - 알고리즘을 정의하고, 이를 사용하는 객체들 사이의 관계를 정의하는 패턴입니다. - 동일한 문제를 해결하기 위한 다양한 알고리즘을 정의하고, 필요에 따라 동적으로 교체할 수 있습니다. - 객체들 간의 결합도를 낮추고, 알고리즘의 독립성과 재사용성을 높입니다. - Template Method (템플릿 메서드 패턴): - 알고리즘의 구조를 정의하고, 일부 단계를 서브클래스에서 재정의할 수 있는 패턴입니다. - 알고리즘의 공통 부분은 슈퍼클래스에서 정의하고, 일부 단계는 서브클래스에서 구현합니다. - 알고리즘의 구조를 고정시키면서 확장 가능한 유연한 설계를 가능하게 합니다. - Visitor (방문자 패턴): - 객체 구조를 변경하지 않고, 객체의 연산을 수행하는 패턴입니다. - 연산을 수행하는 객체(방문자)를 정의하고, 객체 구조의 각 요소들을 방문하여 연산을 수행합니다. - 객체 구조와 연산을 분리하여 확장성과 유연성을 제공합니다.
Learn design patterns with typescript
design-patterns,javascript,object-oriented-programming,oop,typescript
2023-06-23T13:44:51Z
2023-06-26T01:56:34Z
null
1
0
33
0
0
2
null
null
TypeScript
kalebzaki4/1-Mes-JavaScript
main
# 1 Mês de Programação em JavaScript 🚀⌨ Este repositório foi criado para acompanhar o empolgante desafio de 1 mes de programação em JavaScript! Durante 100 dias consecutivos, o objetivo é mergulhar no mundo do JavaScript, criando um novo projeto em JavaScript a cada dia. ## Sobre o Desafio 🌟📚 O propósito desse desafio é elevar suas habilidades de programação em JavaScript ao próximo nível. Ao criar projetos práticos, você explorará conceitos, técnicas e ferramentas que impulsionarão seu conhecimento para além dos limites. Cada projeto diário oferece uma oportunidade única para aplicar suas habilidades e aprender algo novo e emocionante. ## Organização do Repositório 🗂️📁 - 📁 **Projetos**: Aqui você encontrará os projetos diários em JavaScript, cada um possuindo seu próprio diretório com os arquivos relacionados ao projeto. - 📄 **README.md**: Este arquivo abriga informações essenciais sobre o desafio, juntamente com orientações sobre como participar. ## Como Participar 🚀📝 Participar do desafio é simples e empolgante: 1. Faça um fork deste repositório para ter sua própria versão. 2. Clone o repositório forkado para sua máquina local. 3. Dentro da pasta "Projetos", crie um diretório para cada projeto diário. 4. Desenvolva um projeto em JavaScript por dia, explorando diversos temas e funcionalidades. 5. Atualize o arquivo "log.md" diariamente para registrar seu progresso, compartilhando os projetos criados e os aprendizados obtidos. 6. Realize commits e push das alterações para o seu repositório forkado. 7. Acompanhe sua jornada ao longo dos 100 dias, mantendo a consistência e o comprometimento com o desafio. 8. Compartilhe sua jornada nas redes sociais usando a hashtag #100DiasDeProgramaçãoJavaScript. ## Diretrizes do Projeto 📜🖌️ - Cada projeto diário deve ser desenvolvido em JavaScript. - Os projetos podem variar em tamanho e complexidade, desde pequenos scripts até aplicativos mais completos. - Explore uma variedade de conceitos, recursos e bibliotecas do JavaScript para enriquecer sua base de conhecimento. - Documente seus projetos com descrições concisas, instruções de uso e sugestões para futuras melhorias. - Sinta-se à vontade para adicionar pastas ou arquivos adicionais conforme necessário para auxiliar no desenvolvimento dos projetos. ## Observações 🚀🔍 - Lembre-se de que este desafio é uma oportunidade pessoal de aprendizado e prática em programação. Não há restrições rígidas quanto aos projetos ou resultados finais. Desfrute do processo e explore novas possibilidades. - Mantenha a consistência como sua aliada nesse desafio. Programar todos os dias e manter um ritmo constante são chaves para o sucesso. - Não se preocupe com a busca pela perfeição! O objetivo primordial é aprender e evoluir. Com o tempo, seu código e projetos naturalmente melhorarão. ## Projetos Criativos 🛠️🚀 Aqui está a emocionante lista dos projetos que você criará: 1. - Gerador de Pixel Art 2. - Editor de Texto Rico 3. - Gerador de Senhas 4. - Gerador de Código QR 5. - Detector de Bateria do Dispositivo 6. - Jogo da Velha (XO) 7. - Jogue uma Moeda 8. - Formulário de Múltiplas Etapas 9. - Calculadora de Proporção de Aspecto 10. - Aplicativo de Clima 11. - Aplicativo de Guia de Filmes 12. - Teste de Personalidade 13. - Aplicativo Tradutor 14. - Aplicativo de Preço de Criptografia 15. - Aplicativo de Tarefas 16. - Gerador de Arte Geométrica 17. - Jogo da Cobra 18. - Aplicativo de Orçamento 19. - Aplicativo de Conversão de Texto em Fala 20. - Leitor de Código QR 21. - Aplicativo de Roda Giratória 22. - Gerador de Gradiente 23. - Jogo de Adivinhação de Palavras 24. - Jogo Simon 25. - Gráficos Apex 26. - Aplicativo de Guia de Receitas 27. - Jogo Campo Minado 28. - API do GitHub 29. - Jogo de Fuga 30. - Aplicativo de Reprodução de Música 31. - Chat GPT Bot 32. - API do Google Maps 33. - Jogo Pong 34. - Extensão Seletora de Cores do Google Chrome 35. - Animação ASCII Donuts 36. - Aplicativo Rastreador de Estoque 37. - Gerador de Sombra de Caixa 38. - Aplicativo de Filmes (TheMovieDB) 39. - Widget de Visualização de Negociação 40. - Detector de Velocidade da Internet 41. - Conversor de Moeda 42. - Editor de Código Ao Vivo 43. - Controle Deslizante Paralelo com Flickity ## Licença 📜🔐 Este repositório está licenciado sob a [Licença MIT](LICENSE). Fique à vontade para utilizar, modificar e distribuir o conteúdo deste repositório, observando os termos da licença. Desejamos a você 100 dias incríveis de programação em JavaScript! Divirta-se e alcance novos patamares! 🎉🚀
Este repositório foi criado para acompanhar o desafio de 1 Mês de programação em JavaScript, onde a meta é criar um projeto novo em JavaScript a cada dia durante 30 dias consecutivos.
100,code,css,days,html,javascript
2023-06-20T03:06:19Z
2023-08-14T00:09:51Z
null
1
0
336
0
0
2
null
null
JavaScript
BrunoSantosLira/Quiz-Math
main
<h1>A Quiz-Math</h1> <p>Olá! Este é um jogo de perguntas e respostas envolvendo algumas áreas da matemática básica. O mesmo foi feito como projeto escolar</p> <h2>Tecnologias utilizadas</h2> <div> <img width="40px" src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/html5/html5-original-wordmark.svg" > <img width="40px" src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/css3/css3-original-wordmark.svg" > <img width="40px" src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/bootstrap/bootstrap-original.svg" /> <img width="40px" src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/javascript/javascript-original.svg" /> </div> <h3>Visão geral:</h3> <h4> <a href="https://unexcited-blaze.000webhostapp.com">Acesse aqui o projeto </a> </h4> <img src="imgs/print.png">
Jogo de perguntas e respostas envolvendo matemática
css3,html5,javascript,math,questions-and-answers
2023-06-11T17:17:09Z
2023-08-04T02:13:36Z
null
1
0
14
0
0
2
null
null
JavaScript
tonytech83/JS-Front-End
main
<h1 align="center"> Module: JS Front-End </h1> <br/> <h4 align="center"> The "JS Front-End" module will provide basic knowledge of HTML, CSS, and JS. Students will gain initial knowledge in web development, web browsers, tools for HTML/CSS/DOM development, and develop practical skills for using the language for describing web content - HTML - and the language for styling web content - CSS. Skills for properly structuring the Front-End part of web applications and ways to style it according to a given design will be acquired. In the second part of the module, they will receive basic knowledge of the JavaScript language, including syntax basics, working with arrays, matrices, objects, classes, and writing functions. Students will develop their algorithmic thinking. They will be able to work with the DOM tree, perform manipulations on it, and work with events. Functional and OOP approaches to programming with JavaScript will be covered. Concepts for data transmission via HTTP and REST will be studied. </h4> <br/> ## Language - `HTML` - `CSS` - `JavaScript` ## Judge System - [`Problem descriptiom and online judge system`](https://judge.softuni.org/Contests/#!/List/ByCategory/379/JS-Front-End) ## Table of Contents: ### 1. HTML & CSS <h4 align="center">The purpose of the course "HTML & CSS" is to provide basic knowledge of web technologies and more specifically familiarization with HTML5 and CSS3. Basic knowledge of web development, web browsers, HTML/CSS/DOM development tools is acquired and practical skills are developed using the Web Content Description Language (HTML) and the Web Content Styling Language (CSS). Basic HTML tags, paragraphs, lists, tables, forms, controls, and semantic HTML tags are studied. Emphasis is on basic CSS selectors and styles, working with classes, presentation rules, positioning and layout rules in CSS. The latest developments in the HTML5 and CSS3 standards are covered. The course emphasizes hands-on HTML and CSS exercises that involve you in real-world web design projects, implementing site fragments, and creating complete modern websites with a good look, modern structure, and mobile support. </h4> - [`Introduction to HTML & CSS`](https://github.com/tonytech83/JS-Front-End/tree/main/01_HTML_CSS/01_Introduction_to_HTML_%26_CSS) - [`HTML Structure`](https://github.com/tonytech83/JS-Front-End/tree/main/01_HTML_CSS/02_HTML_Structure) - [`CSS & Typography`](https://github.com/tonytech83/JS-Front-End/tree/main/01_HTML_CSS/03_CSS_%26_Typography) - [`CSS Box Model`](https://github.com/tonytech83/JS-Front-End/tree/main/01_HTML_CSS/04_CSS_Box_Model) - [`Position & Grid`](https://github.com/tonytech83/JS-Front-End/tree/main/01_HTML_CSS/06_Position_and_Grid) - [`Flexbox`](https://github.com/tonytech83/JS-Front-End/tree/main/01_HTML_CSS/05_Flexbox) - [`Media Queries`](https://github.com/tonytech83/JS-Front-End/tree/main/01_HTML_CSS/07_Media_Queries) ### 2. JS Front-End <h4 align="center"> The "JS Front-End" course is for basic knowledge of the JavaScript language, such as the basics of syntax, working with arrays, matrices, objects, classes and writing functions. The course will develop algorithmic thinking. The skills which should be obtained are work with the DOM tree, to do manipulations on it and to work with "events". Functional and OOP approaches to JavaScript programming will be covered. HTTP and REST data transfer concepts will be studied. </h4> - [`JS Syntax Fundamentals`](https://github.com/tonytech83/JS-Front-End/tree/main/02_JS_Front_End/01_JS_Syntax_Fundamentals) - [`Functions and Statements`](https://github.com/tonytech83/JS-Front-End/tree/main/02_JS_Front_End/02_Functions_and_Statements) - [`Objects and Classes`](https://github.com/tonytech83/JS-Front-End/tree/main/02_JS_Front_End/03_Objects_and_Classes) - [`DOM and Events`](https://github.com/tonytech83/JS-Front-End/tree/main/02_JS_Front_End/04_DOM_and_Events) - [`HTTP and REST`](https://github.com/tonytech83/JS-Front-End/tree/main/02_JS_Front_End/05_HTTP_and_REST) <br/> <br/> <h6 align="center"> Made with by Anton Petrov </h6>
Softuni - JS Front-End - June 2023
css3,html5,javascript
2023-06-19T04:59:05Z
2024-01-22T15:21:36Z
null
1
0
122
0
0
2
null
MIT
JavaScript
Alvarado08/ca1culator
main
# About The Project ![Screenshot of Calculator](preview.png) [Demo](https://ca1cu1at3r.netlify.app/) [The Odin Project Foundations Course JavaScript Section Final Project](https://www.theodinproject.com/lessons/foundations-calculator) consisted of making a Calculator with basic operations and additional extra credit challenges! This was the perfect project to test out my new superpowers! After a few hours of struggle and moments of staring into the screen, I'm really proud to say that I managed to wire things together and bring this to life. ## The Calculator can - Perform basic operations - Handle decimals and round results - Chain multiple operations - Clear results and delete an unwanted selection - Handle uncommon and unwanted operations with error messages ## Built With - Tailwind - JavaScript
JavaScript Section Calculator Final Project in Foundations Course from The Odin Project.
calculator,javascript
2023-06-10T05:45:44Z
2023-06-11T08:22:02Z
null
1
0
6
0
0
2
null
null
CSS
vivek-panchal/Code-Editor
main
# Code-Editor Live Link https://vivek-panchal.github.io/Code-Editor/ Video :- https://github.com/vivek-panchal/Code-Editor/assets/95127627/90ef9973-f43c-48e3-b39d-59dbc6d80ddb
Live Link
css,html,html-css,html-css-javascript,javascript
2023-06-17T05:33:16Z
2023-07-15T13:48:06Z
null
1
0
2
0
0
2
null
null
CSS
diogocaxiado/Valoreta
main
# Valoreta O Valoreta é um projeto desenvolvido para proporcionar entretenimento ao público de jogadores, oferecendo uma plataforma para realizar sorteios que ajudam a decidir qual personagem do jogo Valorant os jogadores deveriam escolher. ## Visão Geral Este projeto oferece uma experiência interativa e envolvente para os entusiastas do jogo Valorant. Os usuários podem realizar sorteios para decidir qual personagem usar em suas partidas, utilizando a plataforma que apresenta informações detalhadas sobre cada personagem, incluindo imagens e descrições. ## Tecnologias Utilizadas - React - Sass - API do Valorant ## Recursos Principais - **Sorteios Personalizados:** Os usuários podem realizar sorteios personalizados para decidir qual personagem usar em suas partidas. - **Informações Detalhadas:** Utilizando a API do Valorant, o projeto inclui imagens e descrições detalhadas de cada personagem, fornecendo aos usuários informações úteis para tomar sua decisão. - **Experiência Interativa:** Desenvolvido com React, o Valorant Character Picker oferece uma experiência interativa e envolvente para os jogadores. ## Contato Se você tiver alguma dúvida ou sugestão, sinta-se à vontade para entrar em contato comigo em [caxiadodev@gmail.com](mailto:caxiadodev@gmail.com).
Valoreta! O site para sortear agentes aleatoriamente
javascript,react,reactjs,sass,sass-framework,scss
2023-06-12T23:23:13Z
2024-02-24T15:04:24Z
null
1
0
31
0
1
2
null
null
JavaScript
DiyorbekAbdulhamidov/todolist-react
master
# To Do List with TSX
with tsx
javascript,jsx,scss,tsx,typescript
2023-06-14T13:29:00Z
2023-06-19T10:50:50Z
null
1
0
11
0
0
2
null
null
TypeScript
wkimble91/webdevessentials
main
# WebDev Essentials [![Netlify Status](https://api.netlify.com/api/v1/badges/ea17acda-f4b8-4ad8-9efa-6da0d14cde69/deploy-status)](https://app.netlify.com/sites/webdev-essentials/deploys) --- ## 🚀 Project Structure Inside you'll see the following folders and files: ``` / ├── public/ │ └── favicons.svg ├── src/ │ ├── components/ │ │ └── Components.astro │ ├── content/ │ │ └── card-content.md │ ├── images/ │ │ └── image.png │ │ └── image.webp │ ├── layouts/ │ │ └── Layouts.astro │ └── pages/ │ └── index.astro │ └── Pages.astro │ └── scripts/ │ └── externalscript.js │ └── externalscript.ts │ └── styles/ │ └── style.scss └── package.json ``` Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name. `src/components/` is where any Astro/React/Vue/Svelte/Preact components go. `src/content/` is where any markdown files go and they are automatically populated as individual cards. Any static assets, like images and favicons, can either be placed in the `public/` directory or the 'src/images' directory. Style files, including Scss, can be directly imported without compiling beforehand. Scss can also be written directly to Astro files. ## 🧞 Commands All commands are run from the root of the project, from a terminal: | Command | Action | | :------------------------ | :----------------------------------------------- | | `npm install` | Installs dependencies | | `npm run dev` | Starts local dev server at `localhost:3000` | | `npm run build` | Build your production site to `./dist/` | | `npm run preview` | Preview your build locally, before deploying | | `npm run astro ...` | Run CLI commands like `astro add`, `astro check` | | `npm run astro -- --help` | Get help using the Astro CLI |
Collection of useful bookmarks for a frontend developer
astro,javascript
2023-06-16T16:21:57Z
2023-12-12T15:36:08Z
null
1
0
28
0
0
2
null
GPL-3.0
Astro
bilele123123/Portfolio
main
# My Portfolio Website Welcome to my portfolio website, built using React and styled with Tailwind CSS. This website showcases my skills, projects, and contact information. It is designed to provide visitors with insights into my background, projects I've worked on, and ways to get in touch with me. ## Features - **About Me:** Learn more about who I am, my background, and my interests. Get to know the person behind the code. - **Projects:** Explore a collection of projects that I've worked on. Each project includes a description, visuals, and relevant links to GitHub repositories or live demos. - **Contact Information:** Reach out to me using the contact form provided on the website. Whether you have questions, collaboration ideas, or just want to say hello, I'm here to connect! ## Technologies Used - React: A popular JavaScript library for building user interfaces, allowing for modular and efficient code. - Tailwind CSS: A utility-first CSS framework that streamlines styling and ensures a responsive and consistent design across devices. - Responsive Design: The website is designed to adapt seamlessly to different screen sizes and devices, providing an optimal viewing experience for visitors on desktops, tablets, and smartphones. ## Contact For inquiries, collaborations, or just to say hello, you can reach me at: - Email: tple06203@gmail.com - LinkedIn: [Thai Le](https://www.linkedin.com/in/2770341b7/) - GitHub: [bilele123123](https://github.com/bilele123123) Thank you for visiting my portfolio website and taking the time to explore my work!
A portfolio website featuring my highlighted projects, contact information, resume, social media, relevant skills and more.
css,html,javascript,portfolio-website,projects
2023-06-17T20:42:21Z
2023-12-23T19:11:32Z
null
1
2
50
0
0
2
null
null
JavaScript
Vivekgupta96/eCommerce-Application
main
# Restful API for Online eCommerce Application using SpringBoot and Reactjs for frontEnd with Spring Security with JWT Implementation An eCommerce Application backend with Java Spring Boot with frontend using the Reactjs - Welcome to the documentation for the Ecommerce API, a powerful RESTful API for an Online eCommerce Application developed using Spring Boot, Spring Security with JWT implementation, and React for the frontend. This API provides comprehensive endpoints to support various features of an Ecommerce Application. ### Deployed link: https://eccomers96.netlify.app/ ### Railway Deployed Apis https://api-ecom.up.railway.app//swagger-ui/index.html#/ ## Tech Stack and Technology Used - Java - Spring Framework - Spring Boot - JavaScript - React - Spring Data JPA - Hibernate - MySQL (DataBase) - Swagger - Spring Security - JSON Web Tokens (JWT) - BCrypt - Maven - Axios ## Schema Table ![ER_diagram](https://github.com/Vivekgupta96/eCommerce-Application/assets/119284680/3bd9f9b8-29a8-42fe-93fd-daa931d46c70) ## Features - User registration and login with JWT authentication - Password encryption using BCrypt - Role-based authorization with Spring Security for user and admin - Customized access denied handling - User Module - Admin Module ## Getting Started To get started with this project, you will need to have the following installed on your local machine: - JDK 17+ - Maven 3+ ## Installation & Run To install this application, run the following commands: ### Clone the project repository: ```bash git clone https://github.com/Vivekgupta96/eCommerce-Application.git ``` ### Navigate to the project directory: ``` cd eCommerce-Application ``` This will get a copy of the project installed locally. To configure all of its dependencies and start each app, follow the instructions below. ### Configure Database Once MySQL is installed you must configure a username and password. By default the user and password should be `root` . If not, you must configure in the file `application.configure` located in the path `src/main/resources/`. In the file `application.configure` you must edit the parameters `spring.datasource.username` and `spring.datasource.password` with the values you defined. ``` server.port=8080 spring.datasource.url=jdbc:mysql://localhost:3306/Ecomdb spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver spring.datasource.username=SQLUsername(i.e=root) spring.datasource.password=SQLUserPassword(i.e=root) ``` ## Build and run the Spring Boot application using CMD ``` mvnw spring-boot:run ``` ``` ## API Root Endpoint with Swagger Documentation ``` ### https://localhost:8080/ ### Railway Deployed Apis https://api-ecom.up.railway.app/swagger-ui/index.html#/ ### http://localhost:8080/swagger-ui/index.html ``` - To Get Access as admin , you have to use below query for register the admin for the first time in MySQL databse folling are details below ``` step:1 use ecomdb; step:2 INSERT INTO users (email, password, first_name, last_name, phone_number,user_role,user_account_status) VALUES ('admin@gmail.com', 'admin@1234', 'Admin', 'Admin', '9999999999',ROLE_ADMIN,ACTIVE); step:3 Admin Login using credetials ,now you are ready to do all aldmin operation ``` ## Admin Access point :- On Footer section rightSide (Admin Access) at Landing / Home PAge ## For Running frontend in Local Machine - Getting Started * Before you can run the React frontend, make sure you have the following prerequisites installed on your machine: * Node.js: Ensure you have Node.js installed. ### Installation - Once you have the prerequisites in place, follow these steps to install the required packages for the React frontend: - Open your terminal and navigate to the root directory of the React frontend project. This is the directory where you find the package.json file. - Run the following command to install all the necessary packages: ``` npm install ``` - This command will download and install all the dependencies listed in the package.json file. ### Running the Application - To run the React frontend locally, follow these steps: - Open your terminal and navigate to the root directory of the React frontend project. - Run the following command to start the development server: ``` npm start ``` Open your web browser and navigate to the following URL: ``` http://localhost:3000 You should now see the React frontend of the Ecommerce Application running locally. ## Below are the website Shot ![register](https://github.com/Vivekgupta96/eCommerce-Application/assets/119284680/a190a275-8f04-423e-95da-d394c5a035e4) ![login](https://github.com/Vivekgupta96/eCommerce-Application/assets/119284680/46d7e173-11c6-44fd-a4b1-00e6ae64717e) ![home](https://github.com/Vivekgupta96/eCommerce-Application/assets/119284680/1f38ba7d-bb1d-43a4-a35d-88fd3746c537) ![product](https://github.com/Vivekgupta96/eCommerce-Application/assets/119284680/bfa23279-c7a0-4466-998e-4c61942e29a8) ![cart](https://github.com/Vivekgupta96/eCommerce-Application/assets/119284680/412d1734-dc1f-4f53-bf6a-f598ebc636c2) ![history](https://github.com/Vivekgupta96/eCommerce-Application/assets/119284680/7b96800a-2b87-4d22-96b6-223964d708c3) ![profile](https://github.com/Vivekgupta96/eCommerce-Application/assets/119284680/dc3b9dcc-89e1-461a-842c-d14ba6b1b020) ![admin](https://github.com/Vivekgupta96/eCommerce-Application/assets/119284680/6bdbd598-8130-4e3f-b988-258ae8185f82) ![Allorderdetails](https://github.com/Vivekgupta96/eCommerce-Application/assets/119284680/4f2236b6-85c4-405a-98e2-b9ca3cd17b8e) ![productadd](https://github.com/Vivekgupta96/eCommerce-Application/assets/119284680/a37f175f-eebf-41b4-abd2-50b6e9826437) ![alluser](https://github.com/Vivekgupta96/eCommerce-Application/assets/119284680/0c4710a8-b9db-4827-954c-603285b318d5) ## Below are the endPoint ![endpoint1](https://github.com/Vivekgupta96/eCommerce-Application/assets/119284680/984456e4-fc64-4c8b-b38e-cb681ec49cb6) ![endpoint2](https://github.com/Vivekgupta96/eCommerce-Application/assets/119284680/f390583b-d608-4f2e-af85-868441bb3981) ![endpoint3](https://github.com/Vivekgupta96/eCommerce-Application/assets/119284680/02afbb69-96f6-4cd6-84cc-9baf595e9da9) ![endpoint4](https://github.com/Vivekgupta96/eCommerce-Application/assets/119284680/743fa282-f9b0-4ad3-a6a7-f064649fb494) ![endpoint5](https://github.com/Vivekgupta96/eCommerce-Application/assets/119284680/27ce182d-05f5-4260-a2ab-a59485a8788a) ## Links This project uses the following open source libraries: - [Spring Boot](https://spring.io/projects/spring-boot)
eCommers-App is a Application where Customer can buy product and the admin can sell their product ,For front-End Using the React.Js and for Backend Using Java SpringBoot
hibernate,java,maven,mysql-database,spring-boot,spring-security,css3,html5,javascript,reactjs
2023-06-24T02:26:11Z
2024-01-24T09:54:00Z
null
1
0
80
0
0
2
null
null
Java
EMMA-MATIKO/codeconomics
main
null
Bringing up fine tools for quick tackling various problems in Business Management and Accountancy while Coding Economics
account,calculator-app,webapp,economics,javascript
2023-06-27T13:39:02Z
2024-01-05T06:34:12Z
null
1
0
96
0
1
2
null
null
JavaScript
ISMAuri/CodeHub
main
null
Almacen de todo lo recopilado en cursos de programacion. / Vault of everything collected from programming courses.
html-css-javascript,python,courses,css,html,javascript,learning,dalto,soydalto
2023-06-20T22:32:32Z
2024-03-19T02:28:15Z
null
1
0
12
0
0
2
null
null
Python
akashtijare/akashtijare.github.io
main
MY PORTFOLIO
You want to see my craziest project .. This is my PORTFOLIO
css,html,javascript
2023-06-14T13:42:43Z
2023-11-09T09:20:48Z
null
1
0
7
0
0
2
null
null
HTML
ssofy/bootchameleon
master
# Bootchameleon for Bootstrap 5 ![](logo.png) A tiny and independent javascript library for changing the colors of **Bootstrap 5** components in realtime. It was built primarily to assist theme designers at [SSOfy](https://www.ssofy.com) in supporting theme customization features, but it is also freely available to anybody who finds it useful. ### Contributions are welcome! The current state only allows for button color changes. We hope to support more components overtime. Feel free to seek help from other developers wherever possible. ## Installation Include the script tag: ```html <script src="https://cdn.jsdelivr.net/gh/ssofy/bootchameleon/dist/bootchameleon.min.js"></script> ``` ## Usage ```javascript // change primary button color window.bootchameleon.buttons('.btn-primary') .setBackgroundColor('#000000') .setTextColor('#ffffff') .setHoverEffect('#000000') .setHoverTextColor('#ffffff') .setBorderColor('#4f4f4f'); ``` Alternatively, you may use magic methods to determine the ideal colors automatically: ```javascript // primary button window.bootchameleon.buttons('.btn-primary').setColorAuto('#000000'); // outline primary button window.bootchameleon.buttons('.btn-outline-primary').setOutlineColorAuto('#000000'); ``` ## Build ```sh npm install npm run build ``` ## License The MIT License (MIT). Please see [License](LICENSE) File for more information.
Realtime Bootstrap5 Color Manipulation Library
bootstrap,bootstrap5,bootstrap5-theme,javascript,js
2023-06-27T09:27:18Z
2023-09-16T08:20:28Z
2023-09-16T08:20:28Z
2
0
8
0
0
2
null
MIT
JavaScript
MasabBinZia/NFT-MarketPlace
main
# NFT Marketplace Template (Frontend) This is a template for building an NFT marketplace frontend using Next.js, TypeScript, React, and Tailwind CSS. ## Prerequisites Before getting started, make sure you have the following installed: - Node.js - npm ## Getting Started Follow these steps to set up the project: 1. Clone the repository: ```bash git clone <repository_url> ``` 2. Navigate to the project directory: ```bash cd nft-marketplace ``` 3. Install the dependencies: ```bash npm install ``` 4. Start the development server: ```bash npm run dev ``` The application will now be running on `http://localhost:3000`. ## Technologies Used - [Next.js](https://nextjs.org/): React framework for server-rendered applications. - [TypeScript](https://www.typescriptlang.org/): Typed superset of JavaScript. - [React](https://reactjs.org/): JavaScript library for building user interfaces. - [Tailwind CSS](https://tailwindcss.com/): Utility-first CSS framework. ## Customization ## Deploying the Application To deploy the frontend, you can use various hosting platforms like Vercel, Netlify, or GitHub Pages. Refer to their respective documentation for deployment instructions. ## Contributing If you find any issues or have suggestions to improve the template, feel free to open a pull request or issue on the GitHub repository. ## License This project is licensed under the [MIT License](LICENSE). --- Happy coding! If you have any questions, feel free to reach out. Author: [MasabBinZia](https://github.com/MasabBinZia)
🚀 Welcome to our cutting-edge NFT Marketplace - The Ultimate Hub for Minting and Showcasing NFT Collections!
css,javascript,nextjs,nft-marketplace,reactjs,tailwindcss,typescript
2023-06-16T18:10:13Z
2023-08-11T19:30:21Z
null
1
0
31
0
2
2
null
null
TypeScript
Sonikak004/Testing-Practice
main
# Testing-Practice Few practical tests for JavaScript functions using the Jest library
Few practical tests for JavaScript functions using the Jest library.
javascript,jest-test
2023-06-21T10:01:04Z
2023-06-21T11:34:36Z
null
1
1
7
0
0
2
null
null
JavaScript
TerryKrom/cinematch
main
# CineMatch ## Your cinema, your way! > A movie Website, with recomendations and a lot of movie banners! > in progress...
A movie website with the ability to search by title, like your favorite movies, and receive recommendations based on your preferred genres.
html-css-javascript,javascript,webapp,css-animations,css3,firebase,firebase-auth,firestore,html5,movie
2023-06-27T20:15:06Z
2023-11-20T02:20:53Z
null
1
0
99
0
0
2
null
null
HTML
Rajneesh1107/CRM-System
main
# CRM-System ## About CRM_System ### Customer relationship management (CRM) is a process in which a business or other organization administers its interactions with customers, typically using data analysis to study large amounts of information. ## Features - Customer management: Add, update, and delete customer records. - Sales tracking: Record and track sales activities, deals, and pipelines. - Task management: Assign tasks and activities to team members. - Reporting: Generate reports and analyze data for sales performance and customer insights. - User management: Administer user accounts and access levels. ## Technologies Used - Programming language: HTML,CSS and JavaScript - Database: db.json ## Installation 1. Clone the repository: https://github.com/Rajneesh1107/CRM-System.git ## Contributing Contributions are welcome! If you want to contribute to this project, please follow these steps: 1. Fork the repository. 2. Create a new branch for your feature or bug fix. 3. Make your changes and commit them with descriptive commit messages. 4. Push your changes to your forked repository. 5. Submit a pull request to the main repository.
A CRM software that makes sales a breeze. We know selling can be hard. And it gets even more complicated when your sales teams have to juggle multiple tools to make a sale.
css,html5,javascript
2023-06-12T18:11:41Z
2023-06-19T09:06:37Z
null
2
19
41
0
0
2
null
null
HTML
keberlea/storyshare
main
# StoryShare ## Table of Contents --- * [License](#license) * [Installation](#installation) * [Description](#description) * [Technologies](#technologies) * [Usage](#usage) * [Contributing](#contributing) * [Tests](#tests) * [Questions](#questions) <br> ## License [MIT License](./LICENSE) <br> This project is licensed under the MIT license. <br> ## Installation --- To install the StoryShare app: 1. Clone the repository of the Story Share app to your local machine using the following command: `git clone https://github.com/your-username/storyshare.git` 2. Navigate to the project directory: `cd storyshare` 3. Open the project in your preferred text editor. For example, if you're using VS Code, run: `code .` 4. Install the required dependencies by running the following command: `npm install` This will download and install all the necessary packages and libraries. <br> ## Description --- StoryShare is a collaborative writing platform that empowers creative writers to receive writing prompts, share their stories, and engage with a vibrant writing community. It provides an immersive space where users can enhance their writing skills and foster a love for storytelling. StoryShare alleviates writer's block by offering a platform where users can overcome the stress of coming up with story ideas. Through engaging prompts that serve as a catalyst for imagination, writers can use their creativity and explore storytelling through a collaborative lense. By fostering a community of like-minded individuals, StoryShare encourages users to participate, share their stories, and engage in meaningful interactions with other writers. <br> ## Technologies The application leverages the following technologies and frameworks so that the application can deliver a seamless experience: #### General Technologies: - ![React](https://img.shields.io/badge/React-61DAFB?style=for-the-badge&logo=react&logoColor=black): A JavaScript library for building user interfaces, it provides a flexible and efficient platform for creating interactive components and managing application state. - ![Express](https://img.shields.io/badge/Express.js-404D59?style=for-the-badge&logo=express&logoColor=white): A fast and minimalist web application framework for Node.js, it provides a solid foundation for building web servers and APIs. With Express, you can easily establish smooth and efficient communication between clients and the server. - ![Mongoose](https://img.shields.io/badge/Mongoose-880000?style=for-the-badge&logo=mongoose&logoColor=white): A MongoDB object modeling tool for Node.js, it simplifies interaction with MongoDB databases, providing features such as data modeling, validation, and query building. - ![Tailwind CSS](https://img.shields.io/badge/Tailwind_CSS-38B2AC?style=for-the-badge&logo=tailwind-css&logoColor=white): A customizable CSS framework that promotes a utility-first approach to styling, Tailwind CSS offers a comprehensive set of pre-built components and responsive design utilities, enabling rapid UI development. #### NPM Packages: - ![Apollo Client](https://img.shields.io/badge/Apollo_Client-311C87?style=for-the-badge&logo=apollo-graphql&logoColor=white): A robust GraphQL client that enables efficient data fetching and state management, it integrates seamlessly with React and simplifies the process of working with GraphQL APIs. - ![Apollo Server](https://img.shields.io/badge/Apollo_Server-311C87?style=for-the-badge&logo=apollo-graphql&logoColor=white): An open-source GraphQL server, Apollo Server seamlessly integrates with any GraphQL schema, simplifying the process of implementing a GraphQL server and providing powerful features like schema stitching and subscriptions. With schema stitching, you can leverage existing schemas or third-party schemas and seamlessly integrate them into your application's schema. While the application may not currently utilize subscriptions, Apollo Server's support for subscriptions gives the flexibility to implement real-time functionality in the future if needed. - ![bcrypt](https://img.shields.io/badge/bcrypt-004D40?style=for-the-badge&logo=npm&logoColor=white): A library for hashing passwords and providing password security. - ![express-graphql](https://img.shields.io/badge/express--graphql-CD0000?style=for-the-badge&logo=npm&logoColor=white): A library for integrating GraphQL with Express.js. GraphQL is a modern query language for APIs, it allows users to specify the exact data they need, eliminating over-fetching and under-fetching of information and enhancing overall performance. Express is a fast and minimalist web application framework for Node.js, it provides a solid foundation for building web servers and APIs. With Express, you can easily establish smooth and efficient communication between clients and the server. - ![jsonwebtoken](https://img.shields.io/badge/jsonwebtoken-000000?style=for-the-badge&logo=npm&logoColor=white): A library for generating and verifying JSON Web Tokens (JWTs). - ![mongoose](https://img.shields.io/badge/mongoose-880000?style=for-the-badge&logo=npm&logoColor=white): A MongoDB object modeling tool for Node.js, it simplifies interaction with MongoDB databases, providing features such as data modeling, validation, and query building. - ![concurrently](https://img.shields.io/badge/concurrently-333333?style=for-the-badge&logo=npm&logoColor=white): A library for running multiple commands concurrently. - ![web-vitals](https://img.shields.io/badge/web--vitals-00C7B7?style=for-the-badge&logo=npm&logoColor=white): A library for tracking and measuring web performance metrics. <br> ## Usage --- To use the StoryShare app, follow these steps: 1. Install the necessary dependencies by running the following command in the project root folder: `npm install` 2. Build the client-side code by running the following command: `npm run build` This will compile and bundle the client-side code. 3. Start the development server and the client application by running the following command: `npm run develop` This will start the server and the client application concurrently. 4. Once the installation is complete, you can start the project by running: `npm start` 5. Open your web browser and visit http://localhost:3000 to access the Story Share App. 6. Create an account with a unique username and password to log in and access the features of the app. 7. Browse through the available prompts and start writing your stories based on them. Interact with other users' stories, leave comments, and provide feedback. You can now use Story Share to overcome writer's block, explore inspiring prompts, create some prompts yourself, and engage with other writers. Happy reading and writing! To access the Heroku link: To access the Github Repository visit: https://github.com/CarolinaRaIs/storyshare To access the deployed site visit: https://carolinarais.github.io/storyshare/ <br> ### **Screenshots** --- #### _ _**Home**_ _ <br> ![Home Screenshot](/assets/homescreenshot.png) <br> #### _ _**Login**_ _ <br> ![Login Screenshot](/assets/LoginScreenshot.png) <br> #### _ _**Signup**_ _ <br> ![SignUp Screenshot](/assets/signupScreenshot.png) <br> #### _ _**User Profile**_ _ <br> Coming soon! ![user dashboard](/assests/userProfileScreenshot.PNG) <br> #### _ _**Create a new story**_ _ <br> ![create a new story](/assets/createStoryScreenshot.png) <br> #### _ _**Update/Delete a story**_ _ <br> Coming soon! ![Update/delete story](/assests/singleStoryvandUpdateandDelete.PNG) <br> #### _ _**Create a new prompt**_ _ <br> Coming soon! ![create a new prompt](/assests/createPromptScreenshot.PNG) <br> #### _ _**Update/Delete a prompt**_ _ <br> Coming soon! ![Update/delete prompt](/assests/singlePromptvandUpdateandDelete.PNG) <br> #### _ _**Comment on a story**_ _ <br> Coming soon! ![Comment on a story](public/assests/SingleStoryComment.PNG) <br> ## Contributing --- Contributions are welcome and encouraged for this project. If you find any issues or have any suggestions for new features, please open an issue or submit a pull request. Before submitting a pull request, please ensure that your code adheres to the project's goals and has appropriate test coverage. Thank you for your interest in contributing to this project! This project was completed by Corey Vasser, Alicia Keberle, Carolina Ramirez Islas, and Chris Sarnacki under the instruction of the University of Oregon Full Stack Development Bootcamp. We appreciate your interest in contributing, and please don't hesitate to reach out if you have any questions. We value your input and look forward to collaborating with you! <br> ## Questions? Please contact [keberlea](https://github.com/keberlea), [spamdalfz](https://github.com/spamdalfz) , [csarnacki](https://github.com/csarnacki), [CarolinaRaIs](https://github.com/CarolinaRaIs)
StoryShare is a collaborative writing platform that empowers creative writers to receive writing prompts and share their stories. It provides an immersive space for writers to enhance their writing skills, engage with a vibrant writing community, and foster a love for storytelling.
graphql,javascript,mongodb,nodejs,react
2023-06-28T02:16:28Z
2023-07-18T00:22:05Z
null
4
49
197
0
1
2
null
NOASSERTION
JavaScript
HishamWattar/cooks-kingdom
main
<br /> <div align="center"> <h1 align="center">Cooks Kingdom</h1> <a href="https://cookskingdom.onrender.com/"> <img src="src/assets/logo.png" alt="Logo" > </a> <p align="center"> Cooks Kingdom is a platform that connects busy individuals, like students, with local cooks offering<br> homemade food, providing convenient and delicious meal options. The website features an<br> easy-to-use interface, allowing customers to browse dishes, place orders, and support local<br> chefs, while they can manage their offerings through an admin dashboard.<br> <a href="https://cookskingdom.onrender.com/docs/"><strong>Explore the docs »</strong> </a> <br /> <br /> <a href="https://i.imgur.com/TxkCyZC.jpeg">View Demo</a> · <a href="https://github.com/HishamWattar/cooks-kingdom/issues">Report Bug</a> · <a href="https://github.com/HishamWattar/cooks-kingdom/issues">Request Feature</a> </p> </div> ### Table of Contents 1. [About the Project](#about-the-project) - [Project Features](#project-features) - [Tools and Technologies](#tools-and-technologies) - [Design Diagrams](#design-diagrams) - [System Architecture Diagram](#system-architecture-diagram) - [Database Schema Design](#database-schema-design) 2. [Installation Guide](#installation-guide) - [Prerequisites](#prerequisites) - [Installation](#installation) 3. [Frontend Application](#frontend-application) 4. [Contributing Guide](#contributing-guide) 5. [Contributors](#contributors) 6. [License](#license) 7. [Acknowledgments](#acknowledgments) 8. [Contact](#contact) ## About the Project Cooks Kingdom is a dynamic and innovative platform designed to bridge the gap between individuals seeking homemade meals and local cooks who are passionate about sharing their culinary expertise. The project's ideology revolves around providing a convenient and delicious solution for people with limited time to cook, such as students and busy professionals, while also supporting local cookers and their culinary ventures. The primary objective of Cooks Kingdom is to create a seamless and user-friendly experience for both customers and cooks. The platform enables customers to explore a diverse range of dishes, filter options based on location and preferences, and effortlessly place orders for homemade food. On the other hand, local cooks have access to an admin dashboard, allowing them to showcase their culinary creations, post images, and provide enticing descriptions to enthrall potential customers. At its core, Cooks Kingdom aims to foster a thriving community of food enthusiasts, where customers can indulge in delectable homemade dishes and cooks can take pride in serving their creations to a wider audience. The project stands as a testament to the power of technology in connecting people, facilitating impactful collaborations, and nurturing a sense of culinary camaraderie among diverse communities. Cooks Kingdom empowers individuals with limited time to relish the joys of homemade meals without the hassles of cooking. It cultivates an ecosystem where local cooks can showcase their talents and build a loyal customer base. By bringing together culinary passions and technological ingenuity, Cooks Kingdom envisions transforming how homemade food is experienced and enjoyed by people worldwide. Join Cooks Kingdom in savoring the delights of homemade goodness and embracing the spirit of community-driven gastronomy. ### Project Features - CRUD Orders/Dishes/Carts - Sign in/up/out - Create a cutsomer or a chef account - Edit cutsomer or a chef account - Review a dish - Get public dishes - Filter publish dishes - Sign in/up with Google - Sign in/up with Twitter ### Tools and Technologies - [![Figma-shield]][figma-link] - [![Github-shield]][github-link] - [![Git-shield]][git-link] - [![Prettier-shield]][prettier-link] - [![Eslint-shield]][eslint-link] - [![mongodb-shield]][mongodb-link] - [![nodejs-shield]][nodejs-link] - [![express-shield]][express-link] - [![express-validator-shield]][express-validator-link] - [![swagger-shield]][swagger-link] - [![Jest-shield]][jest-link] - [![JWT-shield]][jwt-link] - [![Passport-shield]][passport-link] - [![Postman-shield]][postman-link] - [![yarn-shield]][yarn-link] - [![nodemailer-shield]][nodemailer-link] - ![multer-shield](https://img.shields.io/badge/multer-FFFFFF?style=flat&logo=uuid&logoColor=white) - ![uuid-shield](https://img.shields.io/badge/uuid-FFFFFF?style=flat&logo=uuid&logoColor=white) - [![google-shield]][google-link] - [![facebook-shield]][facebook-link] - ![Google Cloud](https://img.shields.io/badge/google%20cloud-FFFFFF?style=flat&logo=googlecloud) - [![husky-shield]][husky-link] ### Design Diagrams #### System Architecture Diagram In this diagram, you can see the various components of our REST API, such as API routers, services, and utils, as well as our MongoDB database and how it is integrated with the rest of the project. ![System Architecture Diagram](src/assets/system.png) #### Database Schema Design This is known as a UML diagram, and it shows the collections used in the database, their properties, the relationships between them, and the functionality that each collection (class) can have. We chose this diagram because it contains a lot of information and will help us organize our thoughts as we implement our application. ![Database Schema Design](src/assets/db.png) ## Installation Guide ### Prerequisites 1. [Node.js](https://nodejs.org/en/) 2. [Yarn](https://yarnpkg.com/) 3. [Git](https://git-scm.com/) ### Installation 1. Clone the repo ```sh git clone git@github.com:HishamWattar/cooks-kingdom.git ``` 2. Navigate to the project folder ```sh cd cooks-kingdom ``` 3. Install dependencies ```sh yarn install ``` 4. Run the project ```sh yarn start ``` 5. Run checks and tests ```sh yarn test ``` ## Documentation Explore our interactive documentation API [here](https://cookskingdom.onrender.com/docs/). ![Swagger Documentation](src/assets/docs.png) ## Frontend Application - Check front-end application [here](https://github.com/ReCoded-Org/cookiz-capstone-project) - [![Pebble-work-website](https://img.shields.io/badge/Cooks--Kingdom-black?style=flat-square)](https://cookskingdom.onrender.com/) ## Contributing Guide Contributions are what make the open source community such a wonderful place to learn, be motivated, and create. Your contributions are **deeply appreciated**. 1. Fork the Project 2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`) 3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`) 4. Push to the Branch (`git push origin feature/AmazingFeature`) 5. Open a Pull Request ## Contributors | <img alt="hisham" src="src/assets/hisham.jpg" width="115"> | <img alt="rawan" src="src/assets/rawan.png" width="115"> | <img alt="mahmoud" src="src/assets/mahmoud.jpg" width="115"> | <img alt="ahmad" src="src/assets/ahmad.jpg" width="115"> | <img alt="zak" src="src/assets/zak.jpg" width="115"> | | ---------------------------------------------------------- | -------------------------------------------------------- | ------------------------------------------------------------ | -------------------------------------------------------- | ---------------------------------------------------- | | Junior Engineer | Junior Engineer | Junior Engineer | Junior Engineer | Junior Engineer | | [Hisham Al Wattar](https://github.com/HishamWattar/) | [Rawan Mustafa](https://github.com/0Rawan) | [Mahmoud Alshahin](https://github.com/mahmoudsha) | [Ahmad Alashtar](https://github.com/ahmadalashtar) | [Sakarie Ali](https://github.com/sack-ali) | ## License Distributed under the MIT License. See [LICENSE](https://choosealicense.com/licenses/mit/) for more information. ## Acknowledgments - [![google-shield]][google-link] - [![stackoverflow-shield]][stackoverflow-link] - [![chatgpt-shield]][chatgpt-link] ## Contact ### Cooks Kingdom Team **Email:** cooks.supp@gmail.com <!-- Links --> [stackoverflow-shield]: https://img.shields.io/badge/stackoverflow-F8F9F9?style=flat&logo=stackoverflow [stackoverflow-link]: https://stackoverflow.com/ [heroku-shield]: https://img.shields.io/badge/heroku-7D4E89?style=flat&logo=heroku [heroku-link]: https://www.heroku.com [chatgpt-link]: http://openai.chat.com [yarn-shield]: https://img.shields.io/badge/yarn-FFFFFF?style=flat&logo=yarn [chatgpt-shield]: https://img.shields.io/badge/ChatGPT-black?style=flat&logo=openai [yarn-link]: https://yarnpkg.com/ [nodemailer-shield]: https://img.shields.io/badge/nodemailer-22B573?style=flat&logo=nodemailer [nodemailer-link]: https://nodemailer.com/ [google-shield]: https://img.shields.io/badge/google-FFFFFF?style=flat&logo=google [google-link]: https://www.google.com/ [twitter-shield]: https://img.shields.io/badge/twitter-FFFFFF?style=flat&logo=twitter [facebook-shield]: https://img.shields.io/badge/facebook-FFFFFF?style=flat&logo=facebook [twitter-link]: https://www.twitter.com/ [facebook-link]: https://www.facebook.com/ [firebase-shield]: https://img.shields.io/badge/firebase-FFFFFF?style=flat&logo=firebase [firebase-link]: https://firebase.google.com/ [husky-shield]: https://img.shields.io/badge/husky-FFFFFF?style=flat&logo=husky [husky-link]: https://www.npmjs.com/package/husky [postman-shield]: https://img.shields.io/badge/postman-FFFFFF?style=flat&logo=postman [postman-link]: https://www.postman.com/ [passport-shield]: https://img.shields.io/badge/passport-FFFFFF?style=flat&logo=passport [passport-link]: https://www.passportjs.org/ [react-shield]: https://img.shields.io/badge/react-61DAFB?style=flat&logo=react&logoColor=white [react-link]: https://reactjs.org/ [html-shield]: https://img.shields.io/badge/html-E34F26?style=flat&logo=html5&logoColor=white [html-link]: https://en.wikipedia.org/wiki/HTML [css-shield]: https://img.shields.io/badge/CSS3-1572B6?style=flat&logo=css3&logoColor=white [css-link]: https://en.wikipedia.org/wiki/CSS [figma-shield]: https://img.shields.io/badge/Figma-F24E1E?style=flat&logo=figma&logoColor=white [figma-link]: https://www.figma.com/ [github-shield]: https://img.shields.io/badge/github-181717?style=flat&logo=github&logoColor=white [github-link]: https://github.com/ [git-shield]: https://img.shields.io/badge/Git-F05032?style=flat&logo=git&logoColor=white [git-link]: https://git-scm.com/ [prettier-shield]: https://img.shields.io/badge/Prettier-F7B93E?style=flat&logo=Prettier&logoColor=white [prettier-link]: https://prettier.io/ [eslint-shield]: https://img.shields.io/badge/eslint-4B32C3?style=flat&logo=eslint&logoColor=white [eslint-link]: https://eslint.org/ [mongodb-shield]: https://img.shields.io/badge/mongodb-47A248?style=flat&logo=mongodb&logoColor=white [mongodb-link]: https://www.mongodb.com/atlas/database [nodejs-shield]: https://img.shields.io/badge/node_js-339933?style=flat&logo=node.js&logoColor=white [nodejs-link]: https://nodejs.dev/learn/get-http-request-body-data-using-nodejs [express-shield]: https://img.shields.io/badge/express-000000?style=flat&logo=express&logoColor=white [express-link]: https://expressjs.com/ [express-validator-shield]: https://img.shields.io/badge/express_validator-7457c2?style=flat [express-validator-link]: https://express-validator.github.io/docs/ [jwt-shield]: https://img.shields.io/badge/jwt-000000?style=flat&logo=json-web-tokens&logoColor=white [jwt-link]: https://jwt.io/ [swagger-shield]: https://img.shields.io/badge/swagger-85EA2D?style=flat&logo=swagger&logoColor=white [swagger-link]: https://swagger.io/ [jest-shield]: https://img.shields.io/badge/jest-C21325?style=flat&logo=jest&logoColor=white [jest-link]: https://jestjs.io/ [cron-shield]: https://img.shields.io/badge/node_cron-185717?style=flat [cron-link]: https://en.wikipedia.org/wiki/Cron [aws-shield]: https://img.shields.io/badge/Amazon_AWS-232F3E?style=flate&logo=Amazon-AWS&logoColor=white [aws-link]: https://en.wikipedia.org/wiki/Amazon_Web_Services [uuid-link]: https://img.shields.io/badge/UUID-azure?style=flat&logo=uuid&logoColor=white [multer-link]: https://jestjs.io/
Cooks Kingdom is a platform that connects busy individuals, like students, with local cooks offering homemade food, providing convenient and delicious meal options
express,mongodb,nodejs,unit-testing,rest-api,javascript,swagger
2023-06-24T11:25:25Z
2024-01-03T13:07:59Z
null
5
75
225
1
2
2
null
null
JavaScript
AbdulRehmanGHub/Virtual-University-of-Pakistan-Projects
main
## Virtual-University-of-Pakistan-Projects I am a student of BS Computer Science at Virtual University of Pakistan. I will share every project and coding file I completed in my university journey. Thank You!
I am the student of BS Computer Science at Virtual University of Pakistan. I will share every projects and coding files of which I completed in my university journey.
abdulrehman,algorithms-and-data-structures,analysis-algorithms,cpp,css,data-structures,database-management,frontend-web-development,fundamentals-of-programming,html
2023-06-12T19:25:47Z
2024-04-01T18:07:43Z
null
1
0
152
0
0
2
null
null
C++
ikhsan3adi/notes-app-back-end
master
null
null
hapi-plugin,javascript,nodejs,postgresql,restful-api
2023-06-09T00:12:28Z
2024-04-02T15:06:26Z
null
1
2
16
0
0
2
null
null
JavaScript
salvofalcone/instagram-clone
master
null
In this project, I have developed a React-based Instagram clone that replicates the core features and UX of the original platform. Using vanilla CSS, I have customized the styling to closely resemble the original web application. By implementing simulated data fetching, I have successfully recreated the dynamic flow of content.
clone-app,javascript,react,instagram-clone-react,vanilla-css
2023-06-19T15:58:17Z
2023-06-23T21:06:36Z
null
1
0
19
0
0
2
null
null
JavaScript
eraydmrcoglu/reactjs-online-code-compiler
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)
Online Code Compiler Created with React JS
assert,axios,buffer,code-editor,crypto-browserify,javascript,monaco-code-editor,online-code-editor,process,react
2023-06-26T10:24:57Z
2023-06-26T10:25:22Z
null
1
0
1
0
0
2
null
null
JavaScript
Katended/book-store
development
<a name="readme-top"></a> <div align="center"> <img style="margin: auto" src="./logo.PNG"> </div> <div align="center"> &nbsp; </div> <!-- TABLE OF CONTENTS --> ## 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment](#triangular_flag_on_post-deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) <!-- PROJECT DESCRIPTION --> # 📖 Bookstore App<a name="about-project"></a> This is Bookstore App built with JavaScript (ES6) that mimics a library where a user can add/remove books using the [ Bookstore API](https://bookstore-w15d.onrender.com/). It splits the code base into modules for easy management. ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <details> <summary>HTML5, CSS3 , React.js, Javascript,Redux Toolkit</summary> </details> <!-- Features --> ### Key Features <a name="key-features"></a> **Interactive Webpage** - **Add/Remove Functions** - **API Interaction** - **ReactJS and Redux** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- GETTING STARTED --> ## 💻 Getting Started <a name="getting-started"></a> To get a local copy up and running, follow these steps. ### Prerequisites In order to run this project you need: + To have a prior knowledge of Git, HTML, CSS & Javascript + Clone or fork the repository + A web browser (google chrome preferably) + A code editor (e.g vscode) ### Setup Clone this repository to your desired folder: + cd my-folder git clone git@github.com:Katended/book-store.git ### Install To install this project run this into your terminal: + git clone git@github.com:Katended/book-store.git + run npm install to install all dependecies ### Usage To run this project: + run npm start to view project on browser ### Run tests To test this project: + run npm start to view project on browser ### Deployment You can deploy this project: + on any web browser ### Demo Please click [here](https://bookstore-w15d.onrender.com/) for the demo <p align="right">(<a href="#demo">back to top</a>)</p> <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> 👤 **David Katende** - GitHub: [@githubhandle](https://github.com/Katended) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> - [ ] **Implementation of other sections on the web app** <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/Katended/book-store/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, kindly follow me on my social media handles listed above and most importantly give my github project a star. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to thank everyone who made this project possible <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](./MIT.md) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
This is Bookstore App built with JavaScript (ES6) that mimics a library where a user can add/remove books using the Bookstore API. It splits the code base into modules for easy management.
html,javascript,reactjs,redux
2023-06-15T19:40:12Z
2023-06-24T10:30:58Z
null
1
11
29
0
0
2
null
null
JavaScript
mahmoudaboalwafa1/directoryads-website
main
# directoryads-website Directoryads website Tools: ``` HTML - HTML5 - CSS - CSS3 - CSS Float - SASS - JavaScript ``` #### Live Preview: https://mahmoudaboalwafa1.github.io/directoryads-website/ <img src="https://github.com/mahmoudaboalwafa1/directoryads-website/assets/109794013/730f02d9-b0b0-4e8d-9c5f-6f8e84049561" title="directoryads"/>
Directoryads website
css3,float,html,html5,javascript,media-queries,sass
2023-06-21T08:30:07Z
2023-09-22T01:21:43Z
null
1
0
4
0
0
2
null
null
CSS
saurabh7412/AttireGuru
main
# ATTIRE-GURU ----- ### E-COMMERCE WEBSITE FOR FASHION PRODUCTS* Project: Make a website with provided reference website images. Original-Website-Images : https://dribbble.com/shots/20389012-Sopa-Marketplace-Landing-Page Cloned-Website: https://attire-guru.vercel.app/ HOW TO GO THROUGH THE PROJECT - - First, go to Login or signup ( for the first time ). - After login go to Shop Page. - On Login page, use the following credentials to log in as Admin - Username - saurabh - Password - saurabh123 ## Landing Page ![Screenshot 2023-06-19 000548](https://github.com/saurabh7412/cluttered-stranger-7385/assets/121215502/2d630738-872d-4d61-a5a4-7f37ee31c839) ## Product Page ![Screenshot 2023-06-19 000711](https://github.com/saurabh7412/cluttered-stranger-7385/assets/121215502/d7837337-0153-4e36-b1b2-4ae65cd5a8b9) ## Admin Page ![Screenshot 2023-06-19 002052](https://github.com/saurabh7412/cluttered-stranger-7385/assets/121215502/c3bb224c-a04e-45bf-9d40-bd303cb53347) This E-Commerce website specializes in selling fashion products for men, women, and kids. The website provides 16,000 products of different products like shoes, jeans, shirts, kurtas, etc. In this project, We have tried to manipulate dom elements using REACT with TYPESCRIPT, manage state changes using REDUX, CHAKRA UI Library, style using CSS in react, REACT TOASTIFY, styled-components and tried to make a responsive website and implement dynamic routing to persist data. With the self-learning efforts and the technology stack, that we have learned till Unit-5 in the Masai School, we were able to clone the whole website with the same looks & features. This is a collaborative project built within 5 days by a team of 3 members --> Saurabh Bhatt ( Team Lead ) --> Admin Side --> Vishal Giri --> Product Page, Single Product Page, Add to Cart --> Murad Kodalwad --> Home Page, Login/SignUp, Payment Page # Technology Stack Used 🌟 * REACT * TYPESCRIPT * REACT-REDUX * CHAKRA UI Library * Styled-components * REACT-Toastify * react-router-dom library * axios library * Thunk Middleware * HTML * CSS * JavaScript For storing user data we also used JSON-Server & REDUX Store. ## How to run the Project * Open the pages directory. * Clone this repo and run using the live server command 'npm run start'. ## End Notes 📑 In this project, we have tried to achieve a near-to-perfect clone of the original website images provided as much as possible. This entire journey of this construct week has given us experiences and we have learned lots of things by applying to the actual website and it gave us a lot of confidence. Most of the features are added and the functionality of the website is achieved.
This E-Commerce website specializes in selling fashion products for men, women, and kids. The website provides 16,000 products of different products like shoes, jeans, shirts, kurtas, etc.
chakra-ui,javascript,react,react-redux,styled-components,typescript
2023-06-13T07:36:46Z
2023-11-09T09:11:08Z
null
4
17
52
0
2
2
null
null
TypeScript
Diyorbekkdev/CRUD-api
main
# CRUD Website [![MIT License](https://img.shields.io/badge/License-MIT-green.svg)](https://choosealicense.com/licenses/mit/) [![GPLv3 License](https://img.shields.io/badge/License-GPL%20v3-yellow.svg)](https://opensource.org/licenses/) [![AGPL License](https://img.shields.io/badge/license-AGPL-blue.svg)](http://www.gnu.org/licenses/agpl-3.0) This repository contains the code for a CRUD (Create, Read, Update, Delete) website that allows users to manage teachers and students. The website provides various features such as adding teachers, viewing teacher's students, adding students, sorting students alphabetically, and filtering students based on teachers. The design incorporates a stylish background animation in the Glasphorism style. ## Features - Teacher Management: Users can add new teachers to the system and view a list of teachers along with their details. - Student Management: Users can add students to the system and associate them with specific teachers. The website provides the functionality to view students assigned to each teacher. - Sorting: The website allows users to sort the student list alphabetically to easily find specific students. - Filtering: Users can filter the student list based on the selected teacher, making it convenient to view students assigned to a particular teacher. - Stylish Background Animation: The website incorporates a visually appealing background animation in the Glasphorism style, adding an attractive visual element to the user interface. ## Technologies Used - HTML, CSS, and JavaScript: The website is built using these fundamental web technologies to create a responsive and interactive user experience. - CRUD Operations: The website implements CRUD operations to enable the creation, retrieval, updating, and deletion of teacher and student records. - Animation Libraries: To achieve the background animation in the Glasphorism style, the website utilizes animation libraries such as GSAP or CSS animations. ## Getting Started To run the CRUD website locally, follow these steps: 1. Clone this repository: `git clone(https://github.com/Diyorbekkdev/API-exam-material.git)` 2. Navigate to the project directory: `API-exam-material` 3. Open `index.html` in your preferred web browser. ## Contributing Contributions to enhance the CRUD website are welcome. If you'd like to contribute, please follow these guidelines: 1. Fork the repository and create a new branch for your contribution. 2. Make your changes and ensure they are thoroughly tested. 3. Submit a pull request explaining the purpose and details of your changes. ## Demo Insert gif or link to demo ## 🔗 Links [![portfolio](https://img.shields.io/badge/my_portfolio-000?style=for-the-badge&logo=ko-fi&logoColor=white)](https://t.me/diyorbek_juraev_blog) [![linkedin](https://img.shields.io/badge/linkedin-0A66C2?style=for-the-badge&logo=linkedin&logoColor=white)](https://www.linkedin.com/in/diyorbek-juraev-3184b8263/) [![twitter](https://img.shields.io/badge/twitter-1DA1F2?style=for-the-badge&logo=twitter&logoColor=white)](https://twitter.com/diyorbek_dev)
Effortlessly manage teachers, students, and assignments. Enjoy sorting, filtering, and a stylish Glasphorism-style background animation.
api,crud-api,curd,javascript
2023-06-20T02:14:47Z
2023-07-16T12:06:18Z
null
1
0
4
0
0
2
null
null
SCSS
sravanithummapudi/Better-4-U
main
# Better-4-U Organica - eCommerce website Organica is a fully responsive organic e-commerce website. Responsive for all devices. Build using HTML, CSS, and JavaScript. Demo - https://sravanithummapudi.github.io/Better-4-U/ ![image](https://github.com/sravanithummapudi/Better-4-U/assets/95492610/d6cf7425-c86f-4dd0-b954-320b83bb5eb5)
Organica is a fully responsive organic ecommerce website
css,html,javascript
2023-06-28T14:25:44Z
2023-07-01T05:42:20Z
null
1
0
19
0
0
2
null
null
HTML
eldarseitabla/portfolio
main
# portfolio Within the course CMETB & RiBH Training - Software Development ## Checklist - [x] Home - [x] About Me - [x] Geolocation - [x] Local Storage - [x] Animation - [x] Transition - [x] Animation - [x] Graphics - [x] Image Gallery - [x] Canvas - [x] CSS 3 effect - [x] HTTP Requests - [x] XMLHttpRequest - [x] Fetch - [x] Ajax - [x] Online Chat - [x] Contact Me - [x] Responsive - [x] Printable ## To run server ```bash npm install npm start ```
Within the course CMETB & RiBH Training - Software Development
canvas,css3,html5,javascript,socket-io,xmlhttprequest
2023-06-16T11:31:43Z
2023-06-29T18:29:53Z
null
1
0
15
0
0
2
null
MIT
JavaScript
CodePapa360/Tip-calculator-app
main
<h1 align="center">Tip calculator app</h1> <div align="center"> Challenge from [Frontend Mentor](https://www.frontendmentor.io/challenges) </div> <!-- Badges --> <div align="center"> <!-- Live --> <a href="https://tip-calculator-app-codepapa360.netlify.app/"> <img src="https://custom-icon-badges.demolab.com/badge/Live%20Demo-blue?style=for-the-badge&logo=live360&labelColor=666666" alt="Live Demo" /> </a> <!-- Frontend Mentor --> <a href="https://www.frontendmentor.io/solutions/responsive-tip-calculator-app-Id_2-t_KXE"> <img src="https://img.shields.io/badge/Frontendmentor-100000?style=for-the-badge&logo=frontendmentor&logoColor=white&labelColor=666666&color=2490A9" alt="FrontendMentor"> </a> </div> <div align="center"> <!-- Status --> <!-- <img src="https://img.shields.io/badge/Status-Incomplete-red?style=flat" alt="Status" /> --> <img src="https://img.shields.io/badge/Status-Completed-success?style=flat" alt="Status" /> <!-- Liceensee --> <img src="https://img.shields.io/badge/License-MIT-blue?style=flat" alt="License" /> </div> <hr> <div align="center"> This is a simple and responsive tip calculator app that allows users to calculate the tip amount for a restaurant bill. It also includes the functionality to divide the total bill among multiple people, providing the cost per person. This app offers a user-friendly interface, ensuring accurate and convenient results across various devices. <p> </p> <!-- Screenshot --> <a align="center" href="https://tip-calculator-app-codepapa360.netlify.app/"> ![Screenshot](./screenshots/Tip-calculator-app-screenshot-codepapa360.png) </a> </div> ## The challenge Users should be able to: - View the optimal layout for the app depending on their device's screen size - See hover states for all interactive elements on the page - Calculate the correct tip and total cost of the bill per person ## Built with - Semantic HTML5 markup - Mobile-first workflow - CSS custom properties - CSS Grid - JavaScript - NPM - [Webpack - a module bundler](https://webpack.js.org/) ## What I Learned Throughout the development of the Tip Calculator app, I deepened my CSS and JavaScript skills. I focused on efficient DOM manipulation, responsive design, event handling and validation. This project allowed me to further refine my front-end development abilities, leveraging my existing expertise in CSS and JavaScript to create a visually appealing and user-friendly app. ## Installation - Clone this repo: ```sh git clone https://github.com/CodePapa360/Tip-calculator-app.git ``` - Install dependencies: ```sh npm install ``` - Build command: ```sh npm run build ``` - Live server: ```sh npm start ``` ## Author <b>👤 Alamin</b> - Twitter - [@CodePapa360](https://www.twitter.com/CodePapa360) - LinkedIn - [@CodePapa360](https://www.linkedin.com/in/codepapa360) - Frontend Mentor - [@CodePapa360](https://www.frontendmentor.io/profile/CodePapa360) - Github: [@CodePapa360](https://github.com/codepapa360) Feel free to contact me with any questions or feedback! ## Show your support Give a ⭐️ if you liked this project! ## Acknowledgments Special thanks to Frontend Mentor for providing such an amazing platform to practice and improve my frontend skills. ## License This project is licensed under the [MIT](https://github.com/CodePapa360/Tip-calculator-app/blob/main/LICENSE.md) license, which means you can use, modify, and distribute the code as you wish. If you have any questions or feedback, feel free to reach out. Thank you for considering my code!
A simple and easy-to-use tip calculator app that helps you calculate the tip for your restaurant bill.
css,frontend-mentor,frontend-web,frontend-webdevelopment,frontendmentor-challenge,html,javascript,javascript-applications,sass,tip-calculator
2023-06-25T16:28:12Z
2023-06-29T12:53:31Z
null
1
0
10
0
0
2
null
MIT
HTML
Ganeshshinde-2003/My_Portfolio_app
main
# Portfolio🌟 Portfolio is a web application that showcases your portfolio in a visually appealing and interactive manner. It is built using React and integrates with various libraries and frameworks to provide a seamless user experience.. ## Features 🚀 - **Navigation** 🧭: A navigation bar is displayed at the top of the page to allow easy navigation between different sections of the portfolio. - **Banner** 🎉: A banner section is included to highlight important information or messages. - **Skills** 💪: The skills section showcases your expertise and highlights the technologies or areas you specialize in. - **Projects** 📂: The projects section presents your portfolio projects with detailed information and visuals. - **Contact** 📞: The contact section includes a form where visitors can reach out to you. Messages can be sent directly from the website. - **Footer** 👣: The footer section contains additional information such as links to your social media profiles or other relevant resources. ## Screenshot 📷 ![Screenshot (204)](https://github.com/Ganeshshinde-2003/My_Portfolio_app/assets/115361691/10acf2ed-2b38-48cf-a6b2-eb9931e0fe66) ![Screenshot (205)](https://github.com/Ganeshshinde-2003/My_Portfolio_app/assets/115361691/ea68eff6-1175-4389-bf0a-d44812c45b37) ![Screenshot (206)](https://github.com/Ganeshshinde-2003/My_Portfolio_app/assets/115361691/c567d55f-ab49-4eca-b5b7-1925de4aa257) ![Screenshot (207)](https://github.com/Ganeshshinde-2003/My_Portfolio_app/assets/115361691/fdfcf3c2-96d2-417b-9ff1-7455ffbe904b) ## Dependencies 📦 - React: A JavaScript library for building user interfaces. - React Bootstrap: A library that integrates Bootstrap components with React. - Animate.css: A CSS animation library used to add animated effects to elements. - Express: A fast and minimalist web application framework for Node.js. - Nodemailer: A module for sending emails from Node.js applications. - React Router: A library for handling navigation in React applications. - ... (other dependencies listed in package.json) ## Getting Started 🛠️ To get a local copy of the project up and running, follow these steps: 1. Clone the repository: `git clone https://github.com/Ganeshshinde-2003/My_Portfolio_app.git` 2. Install the dependencies: `npm install` 3. Start the development server: `npm start` 4. Open your web browser and visit: `http://localhost:3000` ## Deployment 🌐 To deploy the application to a production environment, you can follow these general steps: 1. Build the optimized version of the application: `npm run build` 2. Deploy the build files to your chosen hosting provider or server. 3. Set up any necessary server configurations, such as routing and SSL certificates. 4. Start the server and ensure the application is accessible.
This is a portfolio website showcasing my work and skills as a developer. It provides a comprehensive overview of my projects, highlighting my expertise and capabilities. With a clean and visually appealing design, visitors can explore my portfolio, learn more about my professional background, and easily get in touch. Take a look and let's connect!
bootstrap,javascript,portfolio,reactjs
2023-06-28T14:23:37Z
2023-07-24T16:13:18Z
null
1
0
12
0
0
2
null
null
JavaScript
techmoves/MyPortfolio-profile
main
<a name="readme-top"></a> <div align="center"> <h1><b>My setup mobile</b></h1> </div> <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment](#triangular_flag_on_post-deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [📝 License](#license) <!-- PROJECT DESCRIPTION --> # 📖 MY PORTFOLIO <a name="about-project"></a> > A "portfolio" HTML-5 & CSS3 repository built during the portal learning module. > It is a show of my understanding of Gitflow, use of Linters, HTML5 semantics, CSS3 flexbox, grid and figma. ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> - HTML-5 - CSS3 - Linters - Figma <details> <summary>Client</summary> <ul> <li><a href="https://github.com/techmoves/my-portfolio/blob/htmlcss1/.github/workflows/linters.yml">Linters</a></li> <li><a href="https://www.w3schools.com/html/">HTML</a></li> <li><a href="https://www.w3schools.com/css/">CSS</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> > Key features of the application. - **Navigation bar in Header-Section** - **Homepage of Personal Portfolio** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo"></a> > LIVE DEMO LINK. deployment - https://techmoves.github.io/setup-mobile-first/ - https://techmoves.github.io/setup-mobile-first/ <p align="right">(<a href="#readme-top">back to top</a>)</p> <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- GETTING STARTED --> ## 💻 Getting Started <a name="getting-started"></a> - To get a local copy up and running, follow these steps. ### Prerequisites - You only need a browser to run the html file in. ### Setup - Create a new folder to store the files in. ### Install Install this project with: - Open your command prompt or terminal and run. - git clone https://github.com/techmoves/setup-mobile-first.git ### Usage - I can help in building a product , feature or website Look through some of my work and experience! don’t hestiate to contact me. ### Run tests To run tests, run the following command: - To run tests run : - npx hint . - npx stylelint "\*_/_.{css,scss}" ### Deployment - Project is deployed using [GitHub Pages](https://techmoves.github.io/setup-mobile-first/) <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> 👤 ** Phelelani Ndlovu ** - GitHub: [@techmoves](https://github.com/techmoves) - Twitter: @Dopezonke_ - LinkedIn: https://www.linkedin.com/in/phelelani-ndlovu-883916160/ <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> > Features to be added: - [X] **[Setup and mobile version skeleton]** - [X] **[Mobile version]** - [X] **[Contact form (pair programming)]** - [X] **[Desktop version]** - [X] **[Application deploy]** - [ ] **[Evaluate accessibility (pair programming)]** - [ ] **[Mobile menu (pair programming)]** - [ ] **[Details modal (pair programming)]** - [ ] **[Validate contact form (pair programming)]** - [ ] **[Preserve data in the browser (pair programming)]** <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! I'm happy to share my walk through to the project here is the link https://www.loom.com/share/59979d30d1b04be48898e4de063c5fa1 Feel free to check the [issues page](https://github.com/techmoves/setup-mobile-first/issues/3) <p align="right">(<a href="https://github.com/techmoves/setup-mobile-first/issues/3">back to top</a>)</p> <!-- SUPPORT --> ## ⭐️ Show your support <a name="support"></a> Give a ⭐️ if you like this project! <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> Major thanks to [Nemwel Boniface](https://twitter.com/nemwel_bonie) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](./LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
This my portfolio website shocasing my skills as software Engineer
html-css-javascript,javascript
2023-06-11T12:58:18Z
2023-06-11T14:43:10Z
null
1
1
5
0
0
2
null
null
JavaScript
labrysxx/interactive-comments-section
main
# Frontend Mentor - Interactive comments section solution This is a solution to the [Interactive comments section challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/interactive-comments-section-iG1RugEG9). ![Badge em Desenvolvimento](http://img.shields.io/static/v1?label=STATUS&message=EM%20DESENVOLVIMENTO&color=GREEN&style=for-the-badge) ## Table of contents - [Overview](#overview) - [The challenge](#the-challenge) - [GIF](#gif) - [Links](#links) - [My process](#my-process) - [Built with](#built-with) - [What I learned](#what-i-learned) - [Continued development](#continued-development) - [Author](#author) ## Overview ### The challenge Users should be able to: - [x] View the optimal layout for the app depending on their device's screen size :heavy_check_mark: - [x] See hover states for all interactive elements on the page :heavy_check_mark: - [ ] Update and Delete comments and replies :construction: - [x] Upvote and downvote comments :heavy_check_mark: - [x] **Bonus**: If you're building a purely front-end project, use `localStorage` to save the current state in the browser that persists when the browser is refreshed. :heavy_check_mark: - [x] **Bonus**: Instead of using the `createdAt` strings from the `data.json` file, try using timestamps and dynamically track the time since the comment or reply was posted. :heavy_check_mark: ### GIF ![Animação](https://github.com/labrysxx/interactive-comments-section/assets/101073597/fdd2220d-54c4-49f7-aa80-9cde64ebf4d7) ### Links - Solution URL: [solution here](https://github.com/labrysxx/interactive-comments-section) - Live Site URL: [live site URL here](https://labrysxx.github.io/interactive-comments-section/) ## My process ### Built with - Semantic HTML5 markup - CSS custom properties - Flexbox - CSS Grid - JavaScript ### What I learned I enjoyed dealing with methods and properties that were previously unknown to me, such as ```closest()```, ```nextElementSibling```, ```previousElementSibling```, ```includes()```, ```contains()```, ```children```, and ```dataset```. I take pride in creating this function because it was the first major challenge I encountered. I needed to make the reply box appear right below the clicked comment: ```js function replyFieldClickHandler() { const parentComment = this.closest('.comment'); let replySection = parentComment.nextElementSibling; // salva o nome da pessoa a ser respondida replyingTo = parentComment.children[1].children[1].dataset.name if (replySection && replySection.classList.contains('reply_section')) { // A seção de resposta já existe, então remova-a replySection.remove(); } else { // cria a caixa de resposta replySection = document.createElement('section'); const form = document.createElement('form'); const image = document.createElement('img'); const textarea = document.createElement('textarea'); const submitButton = document.createElement('input'); image.src = './images/avatars/image-juliusomo.png'; textarea.classList.add('text-content') form.classList.add('make-answer'); replySection.classList.add('reply_section'); textarea.placeholder = 'Type your answer...'; submitButton.classList.add('send-btn') submitButton.value = 'REPLY'; submitButton.type = 'submit'; // igualar a largura da caixa de resposta à largura do comentário a ser respondido if (parentComment.classList.contains('sub-comment')) { replySection.classList.add('sub-comment'); } form.appendChild(image); form.appendChild(textarea); form.appendChild(submitButton); replySection.appendChild(form); // Inserir a nova seção abaixo do comentário parentComment.insertAdjacentElement('afterend', replySection); sendAnswer(); } } ``` ### Continued development I believe that in my future projects, I would like to continue consuming APIs and extracting data from JSON files. ## Author - GitHub - [@labrysxx](https://github.com/labrysxx) - LinkedIn - [Caroline Faria](https://www.linkedin.com/in/carolinegfaria/)
Este é um projeto que testará minhas habilidades em JavaScript: implementando um CRUD utilizando localStorage
crud-application,css,html,javascript
2023-06-12T16:15:40Z
2023-06-24T00:14:58Z
null
1
0
33
0
0
2
null
null
JavaScript
JoelDeonDsouza/NestRest
main
## 🚀 NestRest #### Find near by parking lots and more in one app. ## Screenshots ![App Screenshot](https://i.ibb.co/6r7c864/img.png) ## Documentation [Documentation/React Native](https://reactnative.dev/)[Documentation/React Expo](https://expo.dev/) ## Tech Stack **Client:** React Native, Expo, JavaScript ## Run Locally Clone the project ```bash git clone https://github.com/JoelDeonDsouza/NestRest.git ```
Find near by parking lots and more in one app
barcode-scanner,expo,javascript,maps,react,react-native
2023-06-18T17:04:19Z
2023-06-19T15:11:06Z
null
1
6
18
0
0
2
null
MIT
JavaScript
conqueror62821/Anime-Scraping
main
# This Repo is deprecated and doesn't work anymore. I don't plan on updating it anymore. Reasons are simple :- **1.This was created as a side project and didn't have much plans with it but still thank you for giving this project support** <br> **2. The Reasons for shutting it down is simple, It's Illegal to pirate even if you are scraping from another website like gogoanime** <br> **3. This project was supposed to be a personal website to watch anime for me and my friends thats why it had literally no ads** <br> **4. As there were no ads we didnt had any income to keep up the servers and we aren't rich.** <br> **In the end thanks for supporting this project and i know that it stopped working a long time ago but im shutting it down right now finally** <br> **The tutorial of installing and all other stuff will stay in this readme just in case some angel comes and plans on reviving this project** <br> **I prefer you use other website like zoro.to or gogoanime but still you got ads** **AnimeEZ - An Anime Streaming website (Demo - https://animeez.live) BTW ITS MADE IN HTML** <br> **Template Used -- https://github.com/codewithsadee/filmlane** <br> **API PROJECT URL -- [Click Here](https://github.com/john62821/Anime-Scraping)** <br> # Features? --> Its lightweight (after the anime details are set in db XD) <br> --> Uses api project to lower the weight on machine <br> --> Easy to use <br> --> Mobile view supported <br> --> Better than previous one i guess so # Example and Demo --> Demo website - https://animeez.live <br> --> Demo Video - [rec-tab (1).webm](https://user-images.githubusercontent.com/77879772/185559769-a22aad33-c1f2-45ec-8c02-00def16e9b4e.webm) # Setup **API PROJECT SHOULD BE HOSTED IN DIFFERENT CMD OR ENVIRONMENT** <br> 1. Download the zip and extract it in any path you want. <br> 2. Open a command prompt and go to the path in which you extracted the zip.<br> 3. Enter `npm install` in the command prompt to install the required modules.<br> 4. Make sure your api project is running properly. <br> 5. Make sure your config.js is properly configured. Check if the api_url matches your api project url. <br> 6. Enter `npm start` in the command prompt and your website is ready to run. <br> # Notice **We are not officially on any social media other than github** <br> # This Time api project is in different repo # Modules Used --> [Express](https://expressjs.com/en/starter/installing.html) for Website Framework. <br> --> [Axios](https://axios-http.com/docs/intro) for Gogoanime requests. <br> --> [Ejs/Html](https://ejs.co/#docs) for frontend. <br> --> [Quick.db](https://quickdb.js.org/) for saving animes (Homepage) <br> <br> # Requirements --> You can use any node version which is above 11.9. <br> --> A good machine to run the code. <br> <br> # Running Just click run if its repl otherwise type `node index.js` in console. <br> # ITS NOT MADE FOR PRODUCTION USE AND DON'T TRY TO COPY THE FULL WEBSITE ATLEAST EDIT SOMETHING # Quick.db Being Used --> [Quick.db](https://quickdb.js.org/) is used as saving information and again saving the information after sometime to update it. Like Homepage which updates information every 7 Minutes (In Starting the code After 7 minutes the homepage's data will be okay).
AnimeEZ - An Anime Streaming website without any ads for free (Demo - https://animeez.live) BTW ITS MADE IN HTML
anime,css,html,javascript,nodejs,scraper,streaming,web-scraper
2023-06-27T08:45:26Z
2023-06-27T14:13:10Z
null
1
0
30
0
0
2
null
null
CSS
kacubillos/pase-aventura-front
main
# Parque diversiones front 🎢⭐ Interfaz web para la administración de entradas vendidas de los distintos juegos en un parque de diversiones. Construida utilizando el framework [Vue 3](https://vuejs.org/) y [Bootstrap 5](https://getbootstrap.com/), se desarrollo específicamente para el evento [HackaCode](https://hackacode.todocodeacademy.com/) organizado por TodoCode. ## 🤝 Requerimientos Antes de empezar, asegurémonos de tener instalado lo siguiente: - [Node.js](https://nodejs.org/) debe ser instalado. Ejecuta los siguientes comandos para verificar la versión de Node.js/npm: ```bash node --version npm --version ``` - [parque-diversiones-api](https://github.com/kacubillos/parque-diversiones-api.git) debe estar previamente descargado y configurado. ## 🚀 Instalación Para la instalación se necesita tener instalado Node.js/npm, entonces: 1. Descargar o clonar el repositorio. ```bash git clone https://github.com/kacubillos/parque-diversiones-front.git ``` 2. Descargar dependencias. ```bash cd parque-diversiones-front npm install ``` 3. Iniciar el proyecto en modo desarrollo. ```bash npm run dev ```
Interfaz web para la administración de entradas vendidas de los distintos juegos en un parque de diversiones.
bootstrap,chartjs,dashboard,javascript,vue
2023-06-10T04:46:47Z
2023-07-21T21:44:09Z
null
3
3
48
0
0
2
null
Apache-2.0
Vue
arashyeganeh/lite-chat
main
# Lite Chat <p> <img alt="nodejs" src="https://img.shields.io/badge/-Nodejs-43853d?logo=Node.js&logoColor=white"/> <img alt="express js" src="https://img.shields.io/badge/-Express%20JS-F7F7F7?logo=express&logoColor=4A4A4A"/> <img alt="socket.io" src="https://img.shields.io/badge/-Socket.IO-F962AA?logo=socket.io&logoColor=white"/> <img alt="webpack" src="https://img.shields.io/badge/-Webpack-8DD6F9?logo=webpack&logoColor=white"/> <img alt="javascript" src="https://img.shields.io/badge/-JavaScript-EBD64D?logo=javascript&logoColor=white"/> <img alt="sass" src="https://img.shields.io/badge/-Sass-C55F92?logo=SASS&logoColor=white"/> <img alt="tailwindcss" src="https://img.shields.io/badge/-TailwindCSS-41A2AD?logo=tailwindcss&logoColor=white"/> </p> [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) Lite Chat is a lightweight chat application built with Node.js, Express, and Socket.IO. It is designed for real-time communication without the need for a persistent database. ## Features - Real-time communication: Lite Chat uses Socket.IO to enable real-time messaging between users. - Lightweight: The application is built to be lightweight and does not require a persistent database. - User-friendly interface: The chat interface is simple and intuitive, allowing users to easily send and receive messages. ## Usage Once the Lite Chat application is running, open it in your web browser. You will be prompted to enter a username to join the chat room. After entering your username, you can start sending and receiving messages in real-time. ## Installation To install and run Lite Chat, follow these steps: 1. Clone the repository: `git clone https://github.com/arashyeganeh/Lite-Chat` 2. Navigate to the project directory: `cd Lite-Chat` 3. Install the dependencies: `npm install` 4. Build scripts and assets: `npm run build` 5. Start the application: `npm start` The application will be accessible at `http://localhost`. ## Development To contribute to Lite Chat or customize it to your needs, you can follow these steps: 1. Clone the repository: `git clone https://github.com/arashyeganeh/Lite-Chat` 2. Navigate to the project directory: `cd Lite-Chat` 3. Install the dependencies: `npm install` 4. Start the development server: `npm run dev` The development server uses `nodemon` and concurrently watches for changes in both the client-side code (Tailwind CSS) and server-side code (Node.js and Express). Any changes you make will automatically trigger a restart of the server. To build the Tailwind CSS stylesheets, use the following command: ```shell npm run build ``` ## Dependencies Lite Chat relies on the following dependencies: - NodeJs - express - socket.io - Webpack - Sass - Tailwind css These dependencies are automatically installed when running `npm install`. ## Author Lite Chat was developed by [Arash Yeganeh](https://github.com/arashyeganeh). ## License This project is licensed under the MIT License.
Lite Chat is a lightweight chat application built with Node.js, Express, and Socket.IO. It is designed for real-time communication without the need for a persistent database.
chat,chat-room,lightweight,express-js,javascript,nodejs,sass,socket-io,tailwindcss,webpack
2023-06-19T07:19:37Z
2023-07-03T13:19:20Z
null
1
0
6
0
1
2
null
MIT
SCSS
sonuparjapat/Notes-making-application
main
<h1>Notes Making Application</h1> <h3>A full stack web project</h3> <h3>Objective</h3> <h5>The objective of creating this website was to utilize all the skills that we learned.</h5> WebsiteLink:-https://makingnotes.netlify.app/ <h3>Tech Stack</h3> <h4>Frontend</h4> <ul> <li> React</li> <li>Redux</li> <li>ChakraUI</li> <li>MaterialUI</li> <li>BootStrap</li> <li>HTML</li> <li>CSS</li><li>JavaScript</li> </ul> <h3>Backend</h3> <ul> <li>Node.js</li> <li>Express</li> <li>Mongodb</li> </ul> <h3>Features which are working or built:-</h3> <h4> <ul> <li>Homepage/Landingpage</li> <li>Create (To create notes)</li> <li>Notes (To see notes)</li> <li>About us </li> <li>Contact Us (made using nodemailer)</li> <li>Authentication</li> </ul> <h3>Description/view of different pages</h3> <h2>Homepage</h2> 1.<br></br> ![home](https://github.com/sonuparjapat/sonuparjapat.github.io/assets/115461488/26d12e91-21fb-4287-9f53-1a4cb2973d04) <h2>Authentication</h2> 1.SignUp ![signup](https://github.com/sonuparjapat/sonuparjapat.github.io/assets/115461488/a267ac53-5b69-4cd6-83a1-6fc48fb7e5db) 2.SignIn ![login](https://github.com/sonuparjapat/sonuparjapat.github.io/assets/115461488/a168101b-bd74-49a6-a7cc-db45f4e7e9e1) <h2>Create </h3> ![Create](https://github.com/sonuparjapat/sonuparjapat.github.io/assets/115461488/75dd1b9f-7f46-4f34-8fc4-cda626dfd851) <h2>Notes</h2> ![notes](https://github.com/sonuparjapat/sonuparjapat.github.io/assets/115461488/40cbdfd6-eb1e-4bf0-89d2-c095f56e7a68) <h2>Contact Us</h2> <br></br> ![contactus](https://github.com/sonuparjapat/sonuparjapat.github.io/assets/115461488/ebb54967-b963-4796-9c48-54a3712e77da) <h2>About Us</h2> <br></br> ![aboutus](https://github.com/sonuparjapat/sonuparjapat.github.io/assets/115461488/f910dad3-4c57-4ff5-899d-02e8251e05fd)
The notes-making application is a user-friendly, web-based tool that allows users to create and manage their digital notes efficiently. With a clean and intuitive interface, it enables users to write, edit, and organize their thoughts seamlessly.
bootstrap,chakra-ui,css,express,hashing-passwords,html,javascript,jsonwebtoken,material-ui,mongodb
2023-06-19T19:00:53Z
2023-10-05T06:13:22Z
null
1
0
35
0
0
2
null
null
JavaScript