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
frontzinga/scroll-animation-with-intersection-observer-and-gsap
main
null
null
css,gsap,gsap-animation,html,intersection-observer,javascript
2023-06-04T09:32:40Z
2023-09-27T11:17:56Z
null
1
0
2
0
0
2
null
MIT
HTML
sadmansakib811/bistro-boss-client
main
null
null
admin-dashboard,axios-react,crud-operation,ecommerce,javascript,mongodb,react,stripe-payments,vite
2023-05-27T21:49:02Z
2023-08-06T19:02:42Z
null
1
0
14
0
0
2
null
null
JavaScript
yogendradevil/Secure-Data
main
# Secure Data # Live Link: https://secure-data-yogendradevil.onrender.com/ ## About Our project aims to provide a secure data storage solution by utilizing an innovative technique called Split Shield. With this technique, we can ensure the confidentiality and integrity of users' text data while storing it in a secure manner. Split Shield works by dividing the user's text data into two random parts and storing each part separately in different databases. Before storage, the data undergoes a robust encryption process, which further enhances its security. By splitting and distributing the data, we create an additional layer of protection, making it extremely challenging for hackers to gain access to the complete information even if they manage to breach one of the databases. ### The key features of our secure data storage project include: * Splitting Technique: The user's text data is randomly divided into two parts, ensuring that no single database holds complete information. This splitting mechanism enhances the security of the stored data by minimizing the risk associated with a single point of failure. * Encryption: Prior to storage, the split data is encrypted using advanced encryption algorithms. This process transforms the data into an unreadable format, making it virtually impossible for unauthorized individuals to decipher the information without the corresponding decryption key. * Distributed Storage: The encrypted data parts are stored in two different databases, which could be physically or geographically separated. This distributed approach further enhances security as an attacker would need to compromise both databases simultaneously to gain access to the complete data. * Hacker Resistance: Even if a hacker manages to breach one of the databases, they will only have access to a partial encrypted dataset. As the two parts are meaningless without the other, the attacker's ability to extract meaningful information from the compromised database is severely limited. * User-Friendly Interface: Our project provides a user-friendly interface for securely storing and retrieving data. Users can input their text data through a secure channel and retrieve it whenever needed, confident in the knowledge that their information is protected. By implementing Split Shield, our project ensures that users' text data remains confidential and safe from unauthorized access. Its innovative approach to data storage significantly reduces the risk of data breaches and offers a robust solution for safeguarding sensitive information. ### Demo: https://github.com/yogendradevil/Secure-Data/assets/81254268/86f15a74-6c8c-4de0-ad04-f2c331906fdb ## API The project aims to develop a Spring Boot API that provides secure data encryption and decryption services. The API allows clients to encrypt sensitive information using the AES encryption algorithm and also provides functionality to decrypt the encrypted data. Endpoint 1: [https://split-shild-api.onrender.com/process-string](url) The /process-string endpoint of the Spring Boot API accepts a string of sensitive data and performs encryption using the AES encryption algorithm. It provides a secure way to protect sensitive information by converting it into an encrypted form. ![image](https://github.com/yogendradevil/Rest-API-for-split-data-encryption-and-decryption/assets/81254268/dd889e6f-98d0-46a0-8fd9-79e866bdcfdc) Endpoint 2: [https://split-shild-api.onrender.com/process-two-strings](url) The /process-two-strings endpoint of the Spring Boot API is designed to merge and encrypt two strings of sensitive data using the AES encryption algorithm. It provides a secure way to combine and protect multiple pieces of sensitive information into a single encrypted form. ![image](https://github.com/yogendradevil/Rest-API-for-split-data-encryption-and-decryption/assets/81254268/0d4fc2fc-15b4-4a70-ac29-6a9f7e8247e1) live demo: Endpoint 1: /process-string ![image](https://github.com/yogendradevil/Rest-API-for-split-data-encryption-and-decryption/assets/81254268/d497e014-fde6-4254-84ff-2aa899038955) Endpoint 2: /process-two-strings ![image](https://github.com/yogendradevil/Rest-API-for-split-data-encryption-and-decryption/assets/81254268/44272666-3a85-49b9-bc13-3fa9f953f4ad)
Our project implements Split Shield, a new technique for secure data storage. It divides and encrypts user text data into two parts stored in separate databases, ensuring protection even if one is breached. Our solution offers strong security for sensitive information.
css,html,java,javascript,nodejs,rest-api,springbootapi
2023-05-20T05:51:58Z
2024-01-14T18:46:06Z
null
3
1
32
0
2
2
null
null
HTML
encrypit/pepto
master
# pepto [![NPM](https://nodei.co/npm/pepto.png)](https://nodei.co/npm/pepto/) [![NPM version](https://img.shields.io/npm/v/pepto.svg)](https://www.npmjs.com/package/pepto) [![build](https://github.com/encrypit/pepto/actions/workflows/build.yml/badge.svg)](https://github.com/encrypit/pepto/actions/workflows/build.yml) [![codecov](https://codecov.io/gh/encrypit/pepto/branch/master/graph/badge.svg?token=J9LPLI8JN9)](https://codecov.io/gh/encrypit/pepto) Generate a hex string digest from a given message. See [`SubtleCrypto.digest()`](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/digest) and [Replit demo](https://replit.com/@remarkablemark/pepto). ## Quick Start ```ts import { digest } from 'pepto'; await digest('SHA-256', 'Hello, World!'); ``` ## Installation [NPM](https://www.npmjs.com/package/pepto): ```sh npm install pepto ``` [Yarn](https://yarnpkg.com/package/pepto): ```sh yarn add pepto ``` ## Usage Import ES Modules: ```ts import { digest } from 'pepto'; ``` Require with CommonJS: ```ts const { digest } = require('pepto'); ``` Hash message with `SHA-1` algorithm: ```ts await digest('SHA-1', 'message'); ``` Hash message with `SHA-256` algorithm: ```ts await digest('SHA-256', 'message'); ``` Hash message with `SHA-384` algorithm: ```ts await digest('SHA-384', 'message'); ``` Hash message with `SHA-512` algorithm: ```ts await digest('SHA-512', 'message'); ``` Use promise instead of async-await: ```ts digest('SHA-512', 'message').then((hex) => console.log(hex)); ``` ## FAQ ### ReferenceError: TextEncoder is not defined If you get this error in your Jest tests, then add the following to your `setupTests.ts`: ```ts import { TextEncoder } from 'util'; window.TextEncoder = TextEncoder; ``` Or add the following to your `setupTests.js`: ```js const { TextEncoder } = require('util'); window.TextEncoder = TextEncoder; ``` ## License [MIT](https://github.com/encrypit/pepto/blob/master/LICENSE)
#️⃣ Generate a hex string digest from a given message.
crypto,digest,hash,sha1,sha256,sha384,sha512,subtle,subtlecrypto,javascript
2023-06-06T04:44:17Z
2024-05-14T21:27:18Z
2023-10-29T17:46:23Z
1
329
362
0
0
2
null
MIT
JavaScript
ayush2000mickey/Chatsy-MERN-Chat-App-Frontend
master
# Getting Started with Create React App This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). ## Available Scripts In the project directory, you can run: ### `npm start` Runs the app in the development mode.\ Open [http://localhost:3000](http://localhost:3000) to view it in your browser. The page will reload when you make changes.\ You may also see any lint errors in the console. ### `npm test` Launches the test runner in the interactive watch mode.\ See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. ### `npm run build` Builds the app for production to the `build` folder.\ It correctly bundles React in production mode and optimizes the build for the best performance. The build is minified and the filenames include the hashes.\ Your app is ready to be deployed! See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. ### `npm run eject` **Note: this is a one-way operation. Once you `eject`, you can't go back!** If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own. You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it. ## Learn More You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). To learn React, check out the [React documentation](https://reactjs.org/). ### Code Splitting This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) ### Analyzing the Bundle Size This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) ### Making a Progressive Web App This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) ### Advanced Configuration This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) ### Deployment This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) ### `npm run build` fails to minify This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
Chatsy - MERN Stack Chat App
bcryptjs,chakra-ui,css,expressjs,javascript,jwt,mongodb,mongoose,nodejs,reactjs
2023-05-31T14:30:39Z
2023-08-02T15:12:57Z
null
1
0
11
0
0
2
null
null
JavaScript
KunaAl22/wall-o-clock
master
# Wall O' Clock Wall O' Clock is a web application built with Next.js, NextAuth.js and MongoDB. It provides a platform for users to share and explore their favorite images with others. The application allows users to upload images, categorize them, and add descriptions. <div align="center"> <img src="https://github.com/KunaAl22/wall-o-clock/blob/master/public/images/s1.png" alt="Logo" width="1000" /> </div> ## Features - **User Authentication:** Wall O' Clock uses NextAuth.js for secure user authentication. Users can create an account, log in, and log out to access and manage their uploaded images. - **Image Upload:** Users can upload their favorite images to the platform. The images are securely stored on the server and associated with the user's account. - **Categorization:** Users can categorize their uploaded images based on various categories such as nature, dark, 4K, cartoon, abstract, desktop, anime, and more. This categorization helps users easily discover images of their interest. - **Descriptions:** Users can provide descriptions for their uploaded images, allowing them to share additional details or stories behind the images. - **Interactive Interface:** Wall O' clock offers a user-friendly interface that allows users to navigate through the images, search for specific categories, and interact with other users through likes and comments. - **Data Persistence:** MongoDB is used as the database to store user account information, uploaded images, and associated metadata. This ensures data durability and allows for efficient retrieval and management of user data. ## Installation To run the Wall O' Clock application locally, follow these steps: 1. Clone the repository: `git clone https://github.com/KunaAl22/wall-o-clock` 2. Install dependencies: `cd wall-o-clock` and `npm install` 3. Set up environment variables: Create a `.env` file and provide the necessary environment variables for NextAuth.js and MongoDB configuration. 4. Start the development server: Run `npm run dev` to start the application in development mode. 5. Access the application: Open your web browser and navigate to `http://localhost:3000` to access the Wall O' clock application. ## Technologies Used - **Next.js:** A React framework for building server-side rendered and statically generated applications. - **NextAuth.js:** An authentication library for Next.js applications that provides a complete user authentication system. - **MongoDB:** A NoSQL document database for storing and retrieving user data and uploaded images. - **CSS:** Used for styling the application with pre-built responsive components. ## Future Enhancements The Wall O' Clock application has great potential for further enhancements and features, including: - **User Profiles:** Implement user profile pages to showcase user's uploaded images, likes, and comments. - **Social Sharing:** Integrate social media sharing functionality to allow users to share images on their social networks. - **Image Tags:** Implement a tagging system to enable users to add tags to their images, enhancing discoverability. - **User Interactions:** Allow users to follow each other, like and comment on images, and receive notifications. ## License The Wall O' Clock project is open-source and released under the [MIT License](https://opensource.org/licenses/MIT). Feel free to use, modify, and distribute the code as per the terms of the license.
A web application built with Next.js, NextAuth.js and MongoDB. It provides a platform for users to share and explore their favorite images with others
css,javascript,nextauthjs,nextjs,mongodb
2023-06-04T17:30:10Z
2023-06-14T21:45:02Z
null
1
0
4
0
0
2
null
null
JavaScript
mattsimoessilva/youtube-time-filter
main
# YouTube Time Filter Chrome Extension YouTube Time Filter is a Chrome extension that allows you to filter and discover videos from early YouTube. ## Features - Explore videos from the past. - Enhance your viewing experience. ## Installation 1. Clone the repository: `git clone https://github.com/mattsimoessilva/youtube-time-filter.git`. 2. Open Google Chrome and navigate to `chrome://extensions`. 3. Enable Developer mode (toggle switch in the top right corner). 4. Click on "Load unpacked" and select the cloned repository folder. ## Usage 1. Open YouTube in Google Chrome. 2. Click the extension icon. 3. Toggle the filter. ## Contributing Contributions are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request. ## License This project is licensed under the MIT License. ## Contact For any inquiries or questions, feel free to reach out to us.
"YouTube Time Filter" is a convenient tool to search and explore videos from early YouTube. Easily discover content from the past. Enhance your viewing experience by quickly finding videos relevant to your desired era. Enjoy targeted video filtering with this user-friendly application.
chrome-extension,javascript,youtube
2023-05-22T20:35:37Z
2023-10-11T02:54:41Z
null
1
0
15
0
0
2
null
MIT
JavaScript
sarwar-asik/Error-solve
main
# My error [vite react ts project] :::>>> ### 1 Error for every html in [vite react ts project]:::: ```jsx Property 'div' does not exist on type 'JSX.IntrinsicElements'. ``` ### 1 solve : (run the command) ```bash npm install --save-dev @types/react@latest @types/react-dom@latest ``` #### 2 Error start every modules >>> ```js Parsing error: ESLint was configured to run on `<tsconfigRootDir>/tailwind.config.js` using `parserOptions.project`: <tsconfigRootDir>/tsconfig.json However, that TSConfig does not include this file. Either: - Change ESLint's list of included files to not include this file - Change that TSConfig to include this file - Create a new TSConfig that includes this file and include it in your parserOptions.project See the typescript-eslint docs for more info: https://typescript-eslint.io/linting/troubleshooting#i-get-errors-telling-me-eslint-was-configured-to-run--however-that-tsconfig-does-not--none-of-those-tsconfigs-include-this-filees ``` #### 2. SOlve :::: (copy the code in .eslintrc.cjs) ```json "./tsconfig.json", extends: [ 'eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:@typescript-eslint/recommended-requiring-type-checking', 'plugin:react-hooks/recommended', "./tsconfig.json", ], ``` # Github ::::>>> ```js # Error-solve #### 1. (github) $ git push -u origin main remote: Repository not found. fatal: repository 'https://github.com/sarwar-asik/Ready-Baend1.git/' not found #### 1. solve git credential-manager uninstall git credential-manager install git remote remove origin ```
Errors I Experienced and Their Solutions.
backend,github,hosting,javascript,nextjs,node-js,react,typescript,vercel,vscode
2023-06-01T16:53:34Z
2023-12-16T16:54:54Z
null
1
0
12
0
0
2
null
null
null
Mobin-Karam/myResume
master
# Resume <h1 align="center">Hi 👋, I'm Mobinkaram</h1> <h3 align="center">Full Stack Develoepr</h3> ## About me ::: - 🔭 I’m currently working on **My Personal website with Reacjs & Node.js** - 🌱 I’m currently learning **React.js & Node.js & Express.js & TailwindCSS** - 👯 I’m looking to collaborate on **Reacjs & TailwindCSS & Nodejs Projects** - 👨‍💻 All of my projects are available at [Portfolio](https://mobinkaram.ir/portfolio) - 📝 I regularly write articles on :: [Article](https://mobinkaram.ir/article) - 💬 Ask me about **JavaScript Programming & about my self** - 📫 How to reach me **Mohammadmobinkaram@gmail.com** - 📄 MyResume in Persian Lang : [Resume](https://mobinkaram.ir/download/mobinkaram-resume.pdf) - ⚡ Fun fact **I think Git is Nothing 💢 ** ## How Connect with Me :: ### ::: [Instagram](https://instagram.com/mobin__karam) ### ::: [Linkedin](https://linkedin.com/in/mobin-karam-a54114242) ### <h3 align="left">Connect with me:</h3> <p align="left"> <a href="https://linkedin.com/in/mobin-karam-a54114242" target="_blank"><img align="center" src="https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/linked-in-alt.svg" alt="https://www.linkedin.com/in/mobin-karam-a54114242" height="30" width="40" /></a> <a href="https://instagram.com/mobin__karam" target="_blank"><img align="center" src="https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/instagram.svg" alt="https://www.instagram.com/mobin__karam" height="30" width="40" /></a> </p>
Hello, this repository is a place to display my web design art and the examples of work that I felt necessary to be seen here.
resume,frontend,webdevelopment,javascript,nextjs,reactjs
2023-06-08T06:03:06Z
2024-01-09T17:27:33Z
2023-06-08T17:31:11Z
1
6
191
0
0
2
null
null
JavaScript
BaseMax/QRCodeManagmentGraphQL
main
# QR-Code Management GraphQL TypeScript QRCodeManagementGraphQL is a GraphQL-based project that allows you to generate QR code images and provides routes for various operations related to QR codes. It provides functionality to convert text or binary data to QR code images, as well as converting QR code images back to data. Additionally, it includes a route to save QR codes with unique slugs, which can be used to access the QR code images and their associated data later. ## Features - Get list of all QR Codes - Search list of QR Codes - Get a QR Code from ID, slug - Generate QR code images from text or binary data - Convert QR code images back to data - Save QR codes with unique slugs for easy retrieval ## Prerequisites - Node.js (version 18.12.1 or higher) - NPM (version 9.4.2 or higher) - TypeScript - NestJS - GraphQL - Prisma - Sqlite ## Installation 1. Clone the repository: ``` git clone https://github.com/BaseMax/QRCodeManagmentGraphQL.git ``` 2. Navigate to the project directory: ``` cd QRCodeManagmentGraphQL ``` 3. Install the dependencies: ``` npm install ``` ## Usage 1. Start the GraphQL server: ``` npm start ``` 2. Open your browser and navigate to `http://localhost:3000/`, where `3000` is the port number specified in the console output. 3. Use a GraphQL client or tool of your choice (e.g., GraphiQL or GraphQL Playground) to interact with the GraphQL API. ## GraphQL API The GraphQL API exposes the following schema and operations: ### Retrieve QR Codes by Data: ```graphql query { getQRCodesByData(data: "Data to search for") { id slug image data } } ``` This query retrieves all QR codes that match a specific data value. Provide the data to search for in the data field. The response includes the id, slug, image, and data of each matching QR code. ### Generate QR Code Image Mutation to generate a QR code image from the provided text: ```graphql mutation { generateQRCode(text: "Your text here") { id image } } ``` The id is the unique identifier of the generated QR code, and image is the base64-encoded image representation. ### Convert QR Code Image to Data Query to convert a QR code image back to its data representation: ```graphql query { convertQRCodeToData(qrCodeId: "your-qrcode-id") { id data } } ``` Provide the qrCodeId of the QR code image you want to convert. ### Save QR Code with Slug Mutation to save a QR code image with a unique slug: ```graphql mutation { saveQRCodeWithSlug(slug: "your-slug", text: "Your text here") { id slug image } } ``` The id is the unique identifier of the saved QR code, slug is the provided slug, and image is the base64-encoded image representation. ### Retrieve QR Code Image and Data by Slug Query to retrieve the QR code image and data by its slug: ```graphql query { getQRCodeBySlug(slug: "your-slug") { id slug image data } } ``` Provide the slug of the QR code image you want to retrieve. ### Convert QR Code Image to Data: ```graphql query { convertQRCodeToData(qrCodeId: "your-qrcode-id") { id data } } ``` This query converts a QR code image back to its data representation by providing the qrCodeId of the QR code. ### Retrieve All QR Codes: ```graphql query { getAllQRCodes { id slug image data } } ``` This query retrieves all QR codes stored in the system. The response includes the id, slug, image, and data of each QR code. ### Retrieve QR Code by ID: ```graphql query { getQRCodeById(qrCodeId: "your-qrcode-id") { id slug image data } } ``` This query retrieves a QR code by its qrCodeId. The response includes the id, slug, image, and data of the QR code. These additional routes provide functionality to convert text and binary data to QR code images and retrieve all QR codes or a specific QR code by its ID. Feel free to modify and adapt these routes. ### Mutations #### Generate QR Code Image: ```graphql mutation { generateQRCode(text: "Your text here") { id image } } ``` This mutation generates a QR code image from the provided text. The response includes the id (unique identifier) and image (base64-encoded image representation) of the generated QR code. #### Save QR Code with Slug: ```graphql mutation { saveQRCodeWithSlug(slug: "your-slug", text: "Your text here") { id slug image } } ``` This mutation saves a QR code image with a unique slug. Provide a slug and the text you want to encode in the QR code. The response includes the id, slug, and image of the saved QR code. #### Convert Text to QR Code Image: ```graphql mutation { convertTextToQRCode(text: "Your text here") { id image } } ``` This mutation converts the provided text to a QR code image. The response includes the id (unique identifier) and image (base64-encoded image representation) of the generated QR code. #### Convert Binary to QR Code Image: ```graphql mutation { convertBinaryToQRCode(binaryData: "Your binary data here") { id image } } ``` This mutation converts the provided binary data to a QR code image. The response includes the id (unique identifier) and image (base64-encoded image representation) of the generated QR code. ## Contributing Contributions are welcome! If you encounter any issues or have suggestions for improvements, please open an issue or submit a pull request. ## License This project is licensed under the GPL-3.0 License. Copyright 2023, Max Base
A GraphQL-based project that allows you to generate QR code images and provides routes for various operations related to QR codes. It provides functionality to convert text or binary data to QR code images, as well as converting QR code images back to data. Additionally, it includes a route to save QR codes with unique slugs.
graphql,javascript,js,ts,typescript
2023-05-23T18:55:47Z
2023-10-19T06:43:44Z
null
1
6
28
0
1
2
null
GPL-3.0
TypeScript
Enyus/santandercoders23
main
# Santander Coders 2023 <img src="./public/icons/favicon-32x32.png"> - Trilha Web Front End Repositório para guardar os exercícios e desafios da Fase II da Trilha Web Front End do programa Santander Coders 2023 em parceria com a ADA. | :placard: Vitrine.Dev | | | ------------- | --- | | :sparkles: Nome | **Santander Coders 2023** | :label: Tecnologias | html, css, javascript | :rocket: URL | https://enyus.github.io/santandercoders23/ | :fire: Desafio HTML 🧱 | https://enyus.github.io/santandercoders23/html/desafio.html | :fire: Desafio CSS 🎨 | https://enyus.github.io/santandercoders23/css/desafio.html | :fire: Desafio JavaScript 🧠 | https://enyus.github.io/santandercoders23/javascript/desafio.html <!-- Inserir imagem com a #vitrinedev ao final do link --> ![](./public/images/santander_coders_logo.png#vitrinedev) ## Detalhes do projeto Fui selecionado para a segunda fase do programa Santander Coders, que me deu acesso aos cursos introdutórios, ministrados pela <a href="https://ada.tech/sou-aluno">ADA</a>, de Git e Versionamento, HTML, CSS, Javascript e React. Após finalizar as aulas, nos é sugerido realizar alguns exercícios que puderam ser encontrados na <a href="https://discord.com/invite/DgHqnPJc7Y">comunidade no Discord da Let´s Code</a>. Como já estou um pouco familiarizado com essas tecnologias, resolvi criar esse repositório para guardar tais exercícios. ### Conteúdo | <a href="#exercícios-html-">Exercícios de HTML 🧱</a> | <a href="#exercícios-css-">Exercícios de CSS 🎨</a> | <a href="#exercícios-javascript-">Exercícios de JavaScript 🧠</a> | ## Exercícios HTML 🧱 1. Código HTML que use apenas parágrafos e quebra de linhas (sem usar `<br>`).<br> <a href="https://enyus.github.io/santandercoders23/html/exercicio1.html">Veja a resolução aqui.</a> 2. Crie um código HTML com 2 imagens das linguagens de programação que você gosta e adicionar favicons.<br> <a href="https://enyus.github.io/santandercoders23/html/exercicio2.html">Veja a resolução aqui.</a> 3. Você deverá criar um código HTML com várias imagens, parágrafos, favicons e quebras de linhas das linguagens de programação que você gosta.<br> <a href="https://enyus.github.io/santandercoders23/html/exercicio3.html">Veja a resolução aqui.</a> 4. Você deverá criar um código HTML com vários emojis de sua preferência.<br> <a href="https://enyus.github.io/santandercoders23/html/exercicio4.html">Veja a resolução aqui.</a> 5. Você deverá criar um código HTML que contenha uma foto sua e uma breve descrição da sua atuação profissional. Como bônus, pode adicionar links para suas redes sociais ou GitHub.<br> <a href="https://enyus.github.io/santandercoders23/html/exercicio5.html">Veja a resolução aqui.</a> 6. Você deverá criar um código HTML que contenha links para outras páginas HTML do seu projeto,e links para páginas da web.<br> <a href="https://enyus.github.io/santandercoders23/html/exercicio6.html">Veja a resolução aqui.</a> 7. Agora, você deve criar um formulário HTML de cadastro de pessoas em uma loja virtual. Nesse formulário, você deve solicitar as seguintes informações ao usuário:<br> ● Nome<br> ● E-mail<br> ● CPF<br> ● Gênero<br> ● Data de Nascimento<br> ● Telefone<br> ● Quer ou não receber notificações por WhatsApp<br> ● Quer ou não receber ofertas por e-mail<br> <a href="https://enyus.github.io/santandercoders23/html/exercicio7.html">Veja a resolução aqui.</a> 8. Crie um código HTML que contenha uma tabela com o mesmo conteúdo contido na tabela presente <a href="https://www.fdic.gov/resources/resolutions/bank-failures/failed-bank-list/">neste link</a>.<br> <a href="https://enyus.github.io/santandercoders23/html/exercicio8.html">Veja a resolução aqui.</a> 9. Reproduza a tabela ilustrada pela imagem <a href="https://k12digitalcourses.com/wp-content/uploads/2018/07/tableexample.png">deste link</a> utilizando um código HTML.<br> <a href="https://enyus.github.io/santandercoders23/html/exercicio9.html">Veja a resolução aqui.</a> 10. Você deverá criar um código HTML que contenha listas ordenadas e listas não ordenadas. Além disso, aproveite para utilizar listas não ordenadas para criar uma barra de navegação na sua página.<br> <a href="https://enyus.github.io/santandercoders23/html/exercicio10.html">Veja a resolução aqui.</a> ### &#128293; Desafio HTML &#128293; Você deverá criar um código HTML que contenha um portfólio de apresentação de você como desenvolvedor. Esse portfólio deverá conter uma foto sua, redes sociais para contato, descrição das suas experiências, somente utilizando HTML. Ao final, colocar o portfólio no GitHub Pages.<br> <a href="https://enyus.github.io/santandercoders23/html/desafio.html">Veja a resolução aqui.</a> ### <a href="#">Voltar ao topo</a> <br> ## Exercícios CSS 🎨 1. Você deverá criar um código HTML com CSS que contenha texto e no body seja Verdana, tamanho Médio, preto, com fundo amarelo e sem margens. Faça todas as fontes de título Georgia, e faça Heading 1 xx-large e cardinal red.<br> <a href="https://enyus.github.io/santandercoders23/css/exercicio1.html">Veja a resolução aqui.</a><br> 2. Você deverá criar um código HTML com CSS que contenha texto e crie uma classe chamada renda e torne-a uma cor de fundo de #0ff. Crie uma classe chamada despesas e faça com que a cor de fundo seja #f0f. Crie uma classe chamada lucro e torne-a uma cor de fundo de #f00. Ao longo do documento, qualquer texto que menciona receitas, despesas ou lucros, anexou a classe apropriada a esse pedaço de texto.<br> <a href="https://enyus.github.io/santandercoders23/css/exercicio2.html">Veja a resolução aqui.</a><br> 3. Você deverá criar um código HTML com CSS para alterar a tag li para ter as seguintes propriedades:<br> ● Um status de exibição de inline <br> ● Uma borda preta média com duas linhas <br> ● Nenhum tipo de estilo de lista <br> <a href="https://enyus.github.io/santandercoders23/css/exercicio3.html">Veja a resolução aqui.</a> 4. Você deverá criar um código HTML com CSS para adicionar as seguintes propriedades no estilo da tag li:<br> ● Margem de 5px; <br> ● Preenchimento de 10px para cima, 20px para a direita, 10px para baixo e 20px para a esquerda.<br> <a href="https://enyus.github.io/santandercoders23/css/exercicio4.html">Veja a resolução aqui.</a> 5. Você deverá criar um código HTML com CSS para adicionar uma regra avançada de p:first-letter e crie as seguintes propriedades para esta regra:<br> ● Tamanho da fonte de 36px <br> ● Peso da fonte em negrito <br> <a href="https://enyus.github.io/santandercoders23/css/exercicio5.html">Veja a resolução aqui.</a> 6. Estilize a página de um sumário para se assemelhar ao modelo abaixo. Atente para os requisitos principais:<br> ● As cores de fundo dos tópicos devem se alternar entre a cor definida por --separator-color e #fff<br> ● Utilize variáveis do CSS para colorir as tags de tecnologias e garanta que o 1o e 6o elementos tenham a cor definida na --tag-color-1, 2o e 7o com a --tag-color-2, 3o e 8o com a --tag-color-3 e assim por diante<br> ● Garanta que a tag de tecnologia numerada fique fixa ao fazer scroll até encontrar a próxima (dica: use display sticky)<br> <img src="./public/images/exercio-css-6.jpg" alt="Resultado esperado exercício 6"><br> <a href="https://enyus.github.io/santandercoders23/css/exercicio6.html">Veja a resolução aqui.</a> 7. Adicione regras nos locais indicados do arquivo styles.css para fazer uma visualização em lista, cards ou destaques segundo as imagens abaixo: <img src="./public/images/exercio-css-7.jpg" alt="Resultado esperado exercício 7"> ● A visualização de lista deve ter apenas um item por linha e os itens devem ter espaçamento vertical de 2rem;<br> ● A visualização de cards deve ter 3 cards por linha de mesmo tamanho e os itens devem ter espaçamento horizontal e vertical de 5rem;<br> ● A visualização de destaques deve ter o primeiro e sexto elementos com tamanho maior até 4 vezes maior em relação a cards da mesma linha e os itens devem ter espaçamento horizontal e vertical de 5rem.<br> <a href="https://enyus.github.io/santandercoders23/css/exercicio7.html">Veja a resolução aqui.</a><br> 8. Faça o layout mobile para a página da loja do exercício 7 da seguinte forma:<br> ● Permita que apenas sejam selecionados os modos de visualização de cards e lista<br> ● Na visão de cards devem ter 2 cards por linha<br> ● Garanta que os botões para troca de visualização apareçam fixos no topo da tela com position fixed ou sticky<br> <a href="https://enyus.github.io/santandercoders23/css/exercicio8.html">Veja a resolução aqui.</a><br> 9. Adicione apenas uma propriedade grid-template-areas na classe react-card sem fazer mais nenhuma modificação para deixar o layout similar à imagem abaixo: <img src="./public/images/exercio-css-9.jpg" alt="Resultado esperado exercício 9"><br> <a href="https://enyus.github.io/santandercoders23/css/exercicio9.html">Veja a resolução aqui.</a><br> 10. Faça um overlay para esmaecer a imagem de capa abaixo, utilizando apenas 2 pseudo elementos para isso (::after e ::before), da seguinte forma:<br> ● Overlay no ::before com fundo #000, opacidade 0.6 e cobrindo toda a imagem de capa<br> ● Texto no ::after de cor #fff sem ser afetado pelo overlay, com conteúdo "O mundo como você nunca viu", largura máxima de 30rem, tamanho de 8rem, altura de linha 7rem e posicionado à 3rem da borda esquerda sobre o overlay e imagem.<br> ● Faça uma animação para que o ícone da seta se desloque para baixo em 0.5rem e retorne para a posição inicial após 2 segundos<br> <img src="./public/images/exercio-css-10.jpg" alt="Resultado esperado exercício 10"><br> <a href="https://enyus.github.io/santandercoders23/css/exercicio10.html">Veja a resolução aqui.</a><br> ### &#128293; Desafio CSS &#128293; Você deverá criar um código HTML com CSS que contenha um portfólio de apresentação seu, como desenvolvedor. Esse portfólio deverá conter uma foto sua, redes sociais para contato e descrição das suas experiências, tudo utilizando somente HTML e CSS. Ao final, coloque o portfólio no GitHub Pages.<br> <a href="https://enyus.github.io/santandercoders23/css/desafio.html">Veja a resolução aqui.</a><br> ### <a href="#">Voltar ao topo</a> <br> ## Exercícios Javascript 🧠 1. Faça um programa que peça a temperatura em graus Fahrenheit (°F), transforme e mostre a temperatura em graus Celsius (°C).<br> <a href="https://enyus.github.io/santandercoders23/javascript/exercicio1.html">Veja a resolução aqui.</a><br> 2. Faça um programa que leia as coordenadas de 2 (dois) pontos em um plano cartesiano 2D: a coordenada x do primeiro ponto (x_1), a coordenada y do primeiro ponto (y_1), a coordenada x do segundo ponto (x_2) e a coordenada y do segundo ponto (y_2). Em seguida, calcule a distância euclidiana entre os pontos.<br> <a href="https://enyus.github.io/santandercoders23/javascript/exercicio2.html">Veja a resolução aqui.</a><br> 3. Crie um programa que leia um valor qualquer e apresente uma mensagem dizendo em qual dos seguintes intervalos ([0,25], (25,50], (50,75], (75,100]) este valor se encontra. Caso o valor não esteja em nenhum destes intervalos, deverá ser impressa a mensagem “Fora de intervalo”.<br> <a href="https://enyus.github.io/santandercoders23/javascript/exercicio3.html">Veja a resolução aqui.</a><br> 4. Crie o jogo “Pedra, Papel, Tesoura” por meio de um código em JavaScript. Para isso, solicite que o primeiro jogador informe a sua escolha e depois o mesmo para o segundo jogador. Por fim, utilize os if’s para saber quem seria o vencedor.<br> <a href="https://enyus.github.io/santandercoders23/javascript/exercicio4.html">Veja a resolução aqui.</a><br> 5. Faça um programa, usando loops, que peça para o usuário digitar vários números, um após outro, e que só finaliza quando o usuário digitar 0. Ao final imprima a soma de todos os números digitados.<br> <a href="https://enyus.github.io/santandercoders23/javascript/exercicio5.html">Veja a resolução aqui.</a><br> 6. Faça um programa que imprima a tabuada do 9 (de 9 x 1 a 9 x 10) usando loops.<br> <a href="https://enyus.github.io/santandercoders23/javascript/exercicio6.html">Veja a resolução aqui.</a><br> 7. Crie uma função que recebe o valor do raio de um círculo como parâmetro e retorna o valor da área desse círculo.<br> <a href="https://enyus.github.io/santandercoders23/javascript/exercicio7.html">Veja a resolução aqui.</a><br> 8. Faça um programa que dados dois arrays de mesmo tamanho, imprima o produto escalar entre eles.<br> <a href="https://enyus.github.io/santandercoders23/javascript/exercicio8.html">Veja a resolução aqui.</a><br> 9. Vamos fazer um programa para verificar quem é o assassino de um crime. Para descobrir o assassino, a polícia faz um pequeno questionário com 5 perguntas onde a resposta só pode ser sim ou não:<br> 9.1. Mora perto da vítima?<br> 9.2. Já trabalhou com a vítima?<br> 9.3. Telefonou para a vítima?<br> 9.4. Esteve no local do crime?<br> 9.5. Devia para a vítima?<br> Cada resposta “sim” dá um ponto para o suspeito. A polícia considera que os suspeitos com 5 pontos são os assassinos, com 4 a 3 pontos são cúmplices e 2 pontos são apenas suspeitos, necessitando de outras investigações. Valores abaixo de 2 são liberados. No seu programa, você deve fazer essas perguntas e, de acordo com as respostas do usuário, informar como a polícia o considera.<br> <a href="https://enyus.github.io/santandercoders23/javascript/exercicio9.html">Veja a resolução aqui.</a><br> 10. Faça um programa que fique pedindo uma resposta do usuário, entre 1, 2 e 3. Se o usuário digitar 1, o programa deve cadastrar um novo usuário, solicitando nome, idade, e-mail e CPF, guardando esse cadastro em um objeto, e cada objeto devo ser adicionado em um array. Quando o usuário digitar 2, o programa deve imprimir os usuários cadastrados; e se o usuário digitar 3, o programa deve encerrar.<br> <a href="https://enyus.github.io/santandercoders23/javascript/exercicio10.html">Veja a resolução aqui.</a><br> ### &#128293; Desafio JavaScript &#128293; Você já deve ter jogado o Jogo da Forca, certo? O que você acha de desenvolver o seu próprio Jogo da Forca em JavaScript? Esse será o seu desafio! Para te ajudar com isso, vamos te passar algumas diretrizes para que você tenha uma noção clara de como o jogo deve funcionar e de quais etapas você deve seguir para atingir esse resultado. Vamos lá! 1. No início do código, você pode solicitar o nome do jogador. Assim, você pode imprimir uma mensagem de boas-vindas. Talvez até imprimir uma mensagem explicando como o jogo funciona. Porém, uma sugestão é deixar tudo isso para o final, porque assim você pode focar, inicialmente, no funcionamento do jogo, em si. 2. Você vai precisar definir uma palavra para o jogador descobrir, certo? Na primeira versão do seu código, coloque uma palavra fixa, como "banana", por exemplo. Em uma segunda versão, você pode criar um array com várias palavras e, no início do programa, sortear uma delas. Veja a seção Dicas, ao final deste material, para saber como você poderia fazer esse sorteio. 3. Escolhida uma palavra para o jogador descobrir, você já pode mostrar para ele quantas letras a palavra tem. Também vai ser importante ter uma outra variável que consiste na palavra que o jogador está tentando acertar.<br> 3.1. Para isso, nossa sugestão é que você crie um array que inicia com vários ‘_’ , sendo o número de _ igual ao número de caracteres da palavra que ele precisa descobrir.<br> 3.2. Por exemplo, se a palavra for "banana", você deve um array com o seguinte conteúdo: ['_', '_', '_', '_', '_', '_']. Observe que temos 6 caracteres.<br> 3.3. Esse array vai ser importante para que você possa mostrar ao usuário o “formato” da palavra e, a medida que ele for acertando as letras, você coloca a letra dentro do array, na posição correta, o que vai facilitar a visualização/identificação da palavra.<br> 4. A partir daí o jogo começa, ou seja, você irá pedir que o usuário informe uma letra repetidas vezes, até que ele erre 6 vezes (pela regra tradicional do jogo da forca) ou acerte todas as letras da palavra. Observe que isso corresponde a uma estrutura de repetição. 5. Lembre-se que, ao término dessa repetição, você deve mostrar que o usuário perdeu, caso ele tenha errado 6 vezes; ou que ele acertou a palavra, caso ele a tenha completado. Além disso, é importante que você informe, em todo caso, qual era a palavra a ser descoberta.<br> <a href="https://enyus.github.io/santandercoders23/javascript/desafio.html">Veja a resolução aqui.</a><br> ### <a href="#">Voltar ao topo</a>
Repositório para guardar os exercícios e desafios da Fase II da Trilha Web Front End do programa Santander Coders 2023 em parceria com a ADA.
ada,letscode,santander,santandercoders,vitrinedev,css,html,javascript
2023-05-21T21:17:12Z
2023-06-01T23:03:54Z
null
1
0
33
0
1
2
null
null
HTML
paypaldev/PayPal-JavaScript-FullStack-3Ds-Advanced-Checkout-Sample
main
![PayPal Developer Cover](https://github.com/paypaldev/.github/blob/main/pp-cover.png) <div align="center"> <a href="https://twitter.com/paypaldev" target="_blank"> <img alt="Twitter: PayPal Developer" src="https://img.shields.io/twitter/follow/paypaldev?style=social" /> </a> <br /> <a href="https://twitter.com/paypaldev" target="_blank">Twitter</a> <span>&nbsp;&nbsp;-&nbsp;&nbsp;</span> <a href="https://www.paypal.com/us/home" target="_blank">PayPal</a> <span>&nbsp;&nbsp;-&nbsp;&nbsp;</span> <a href="https://developer.paypal.com/home" target="_blank">Docs</a> <span>&nbsp;&nbsp;-&nbsp;&nbsp;</span> <a href="https://github.com/paypaldev" target="_blank">Code Samples</a> <span>&nbsp;&nbsp;-&nbsp;&nbsp;</span> <a href="https://dev.to/paypaldeveloper" target="_blank">Blog</a> <br /> <hr /> </div> # PayPal JavaScript FullStack 3Ds Advanced Checkout This sample app shows you how to build and customize a card payment form to accept debit and credit cards and use 3Ds for authentification. Please make sure to style the card form so that it aligns with your business branding. To create this application from scratch, follow the [Advanced Checkout integration](https://developer.paypal.com/docs/checkout/advanced/integrate) guide from the [PayPal Developer](https://developer.paypal.com/home) docs. ## Run this project ### PayPal Codespaces [![Open Code In GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/paypaldev/PayPal-JavaScript-FullStack-3Ds-Advanced-Checkout-Sample?devcontainer_path=.devcontainer%2Fdevcontainer.json) - Rename the ``.env.example`` file to `.env`. - Add your environment variables in the `.env` file. ```shell PAYPAL_CLIENT_ID=YOUR_CLIENT_ID PAYPAL_ ``` ### Locally - Rename the `.env.example` file to `.env`. - Add your environment variables in the `.env` file. ```shell PAYPAL_CLIENT_ID=YOUR_CLIENT_ID PAYPAL_CLIENT_SECRET=YOUR_APP_SECRET ``` Complete the steps in [Get started](https://developer.paypal.com/api/rest/) to get the following sandbox account information from the Developer Dashboard: - Sandbox client ID and the secret of [a REST app](https://www.paypal.com/signin?returnUri=https%3A%2F%2Fdeveloper.paypal.com%2Fdeveloper%2Fapplications&_ga=1.252581760.841672670.1664266268). - Access token to use the PayPal REST API server. ![paypal developer credentials](env.png) Now, run the following command in your terminal: `npm install` `npm run start` and navigate in your browser to: `http://localhost:9597/`. ### Sample Card #### Succesful 3Ds Authentification Card Type: `Visa` Card Number: `5458406954745076` Expiration Date: `01/2025` CVV: `123` #### Failure 3Ds Authentification Card Type: `Visa` Card Number: `4928527426776525` Expiration Date: `01/2025` CVV: `123` ## PayPal Developer Community The PayPal Developer community helps you build your career while improving your products and the developer experience. You’ll be able to contribute code and documentation, meet new people and learn from the open-source community. * Website: [developer.paypal.com](https://developer.paypal.com) * Twitter: [@paypaldev](https://twitter.com/paypaldev) * GitHub: [@paypal](https://github.com/paypal)
Full stack application with advanced payment processing using PayPal SDK and 3Ds
javascript,nodejs,paypal,paypal-checkout
2023-06-06T08:44:02Z
2023-09-11T19:35:44Z
2023-09-11T19:35:44Z
2
1
50
0
0
2
null
Apache-2.0
JavaScript
oessayeg/To-DoApp
main
# To-DoApp - Vanilla Js This is my second project using Vanilla js. It is a to-do app with custom projects and priorities. ## How to use Clone this repository, open the folder dist/ and open index.html with your favorite browser. ## Demo <img width="1440" alt="Capture d’écran 2023-10-21 à 18 37 07" src="https://github.com/oessayeg/To-DoApp/assets/96997041/1bfa8873-f3e7-4c31-827b-dcba950e3b2c"> <br /> <br /> <img width="1440" alt="Capture d’écran 2023-10-21 à 18 41 18" src="https://github.com/oessayeg/To-DoApp/assets/96997041/ccbfbec1-fa68-4ae4-89a2-16b801004548"> <br /><br /> <img width="1440" alt="Capture d’écran 2023-10-21 à 18 40 08" src="https://github.com/oessayeg/To-DoApp/assets/96997041/9372c24b-bd21-48fb-ba13-b338562291c7"> <br /><br />
Vanilla Js to-do App.
css,html,javascript
2023-05-24T10:36:06Z
2023-10-21T17:41:49Z
null
1
0
45
0
0
2
null
null
JavaScript
Zafron047/Awesome_Books
main
# Awesome_Books
Awesome Books is a basic website that allows users to add/remove books from a list using JavaScript modules.
css,html5,javascript
2023-05-30T00:27:55Z
2023-06-03T16:08:39Z
null
1
1
3
2
0
2
null
MIT
JavaScript
LucasDevRJ/alura-midi
main
![Capa LucasDevRJ (3)](https://github.com/LucasDevRJ/alura-midi/assets/95040236/b22efc4b-967f-4fc3-a599-8e08c23cb8d1) <h1 align="center">Alura Midi</h1> ![Badge do Desenvolvedor](https://img.shields.io/badge/Desenvolvedor-LucasDevRJ-%23000000) ![Badge do nome do projeto](https://img.shields.io/badge/Projeto-Alura_Midi-%23000000) ![Badge da Data do projeto](https://img.shields.io/badge/Data-06/2023-%23000000) ![Badge do Status do projeto](https://img.shields.io/badge/Status-Finalizado-%23000000) ![Badge da autoria do projeto](https://img.shields.io/badge/Autoral-Não-%23000000) ![GitHub Org's stars](https://img.shields.io/github/stars/LucasDevRJ?style=social) ## Descrição O projeto emite determinado som equivalente a um instrumento quando o usuário clicar nele. Cada tecla do teclado emite um som diferente. Além disso, o projeto tem uma linda estilização, com um fundo em degrade. ![Alura Midi](https://github.com/LucasDevRJ/alura-midi/assets/95040236/7408a037-020a-4554-ae5f-75e43c85ccdc) ## :computer: Funcionalidades do projeto - `Funcionalidade 1`: Escutar som emitido pelas teclas - `Funcionalidade 2`: Utilizar a responsividade https://github.com/LucasDevRJ/alura-midi/assets/95040236/e02c2e2c-8f6a-4d7a-8d36-db0359f2759a ## :computer: Acesso ao projeto 1. Tenha algum editor de código ou IDE instalado no seu computador 2. Faça o download do meu projeto <a href="https://github.com/LucasDevRJ/alura-midi/archive/refs/heads/main.zip">aqui</a> 3. Descompacte o projeto 4. Coloque o projeto descompactado na sua IDE ou editor de código 5. Aprovei este lindo projeto ## :computer: Abrir e rodar o projeto **Para testar o projeto de forma online mesmo basta acessa-lo <a href="https://alura-midi-beige.vercel.app/">aqui</a>** ## Tecnologias utilizadas - HTML - CSS - JavaScript ## Autores | [<img src="https://avatars.githubusercontent.com/u/95040236?v=4" width=115><br><sub>Lucas Pereira de Lima</sub>](https://github.com/LucasDevRJ) | :---: |
Programa que emite som de cada instrumento ao clicar em determinadas teclas.
alura,css,html,javascript,midi,musica,som,teclas,instrumentos
2023-06-02T23:24:33Z
2023-06-14T23:37:07Z
null
1
0
28
0
0
2
null
null
CSS
tamddk/library
main
# Library Project Library By Mas Sodik. Open source to public, enjoy and explore slowly.
Open source to public, enjoy and explore slowly.
bootstrap,css,flowbite,free,free-source-code,html,javascript,jquery,jquery-library,library
2023-06-01T09:44:24Z
2023-07-22T15:38:06Z
2023-06-02T10:39:28Z
1
0
9
0
0
2
null
Apache-2.0
HTML
eritrina-rizki/react-todo-app
main
# react-todo-app To-do list app with React.js and Framer Motion using Local Storage <br><br> Github page: https://eritrina-rizki.github.io/react-todo-app/ <hr> This project is about creating a to-do list application with React.js using browser's Local Storage, so when users refresh the page, the data will stay on the page and users don't lost their data. I also used Framer-Motion to animate components of the entire app to provide a better user experience with dynamic animations. In this app, users can add new to-do, read to-do, mark to do as completed, edit and update to-do or cancel edit to-do, and also delete to-do. <br><br> This is the preview of the app when there is no to-do in the list: <br><br> <img src="https://github.com/eritrina-rizki/react-todo-app/assets/129740560/08fff813-415b-448e-958a-98d663c4b5d2" alt="no-todo" /> <br><br><br> This is the preview of the to-do lists: <br><br> <img src="https://github.com/eritrina-rizki/react-todo-app/assets/129740560/c83bb11e-6e7b-41c1-b07d-aa03e843661f" alt="todo-lists" /> <br><br><br> This is the preview when users in edit mode: <br><br> <img src="https://github.com/eritrina-rizki/react-todo-app/assets/129740560/cdeadaf0-5194-45e5-b6e8-f1b095340f2b" alt="edit-mode" /> <br><br><br> I realize that there are still many mistakes and lacks in this project. I really welcome your feedback, so that I can improve my skills and make a better performance in the next project. <br><br> Thank you! <hr> Find me also on: <br> <a href="https://linkedin.com/in/eritrina-rizki-chairani">LinkedIn</a> <br> <a href="https://dribbble.com/eritrina_rizki">Dribbble</a> <br> <a href="https://medium.com/@eritrina-rizki">Medium</a>
To-do list app with React.js and Framer Motion using Local Storage
crud,crud-application,css,framer-motion,javascript,localstorage,lottie-animation,react,reactjs,todo
2023-05-18T07:44:46Z
2023-05-18T07:52:34Z
null
1
0
2
0
0
2
null
null
JavaScript
goldhumorist/chatgpt_telegram_bot_stats_api
master
null
Backend service: ChatGPT-Telegram-Bot statistic API.
elasticsearch,javascript,nodejs,rest-api,typescript,express
2023-05-22T10:48:12Z
2023-06-20T15:23:45Z
null
1
6
21
0
0
2
null
null
TypeScript
mengqiuleo/mini-vue3
main
# mini-vue3 [![github](https://img.shields.io/badge/xiaoy-mini--vue3-blue)](https://github.com/mengqiuleo/mini-vue3) To implement a mini vue3 for learn ## 📢 introduce 从 createApp 开始,模板编译、创建组件实例、运行渲染函数、挂载虚拟 dom、接合响应式系统、patch 更新渲染、scheduler 任务调度。 项目结构尽量还原 vue3 源码,只做主线任务。 ## 💻 online website [mini-vue3 预览地址](https://mengqiuleo.github.io/mini-vue3/) 测试案例均来自 [vuejs/core](https://github.com/vuejs/core/tree/main/packages/vue/examples) ## ✨ feature - 使用 monorepo 架构 - 实现 vue3 的三大核心模块:reactivity、runtime 以及 compiler 模块 - jest: unit test - cypress: E2E test ## 🤟 how to use ### project init ```js git clone git@github.com:mengqiuleo/mini-vue3.git cd mini-vue3 pnpm i ``` ### test ```js pnpm test ``` ### build ```js pnpm build ``` ### example 通过 server 的方式打开 packages/vue/example/\* 下的 html 即可 > ❔ 推荐使用 [Live Server](https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer) ### for [vue package](https://github.com/mengqiuleo/mini-vue3/tree/main/packages/vue) ```js pnpm serve //开启本地服务,方便后续 cypress 测试 pnpm test ``` ## 🎯 core function ### reactivity - [x] reactive 的实现 - [x] ref 的实现 - [x] computed 的实现 - [x] track 依赖收集 - [x] trigger 触发依赖 - [x] 嵌套 effect - [x] 支持 isReactive - [x] 支持 effect.scheduler ### runtime - [x] 支持组件类型 - [x] 支持 element 类型 - [x] render - [x] patch - [x] diff - [x] h - [x] scheduler调度器 - [x] nextTick 的实现 ### compiler - [x] 解析插值 - [x] 解析 element - [x] 解析 text ## ✅ todo - [ ] 实现 slot - [ ] 支持 getCurrentInstance - [ ] 支持 provide/inject - [ ] 支持 component emit - [ ] 初始化 props - [ ] setup 可获取 props 和 context ## 📑 Git 贡献提交规范 - feat 增加新功能 - fix 修复问题/BUG - style 代码风格相关无影响运行结果的 - perf 优化/性能提升 - refactor 重构 - revert 撤销修改 - test 测试相关 - docs 文档/注释 - chore 依赖更新/脚手架配置修改等 - workflow 工作流改进 - ci 持续集成 - types 类型定义文件更改 - wip 开发中 ## 💪🏻 参与贡献 1. Fork 本仓库 2. 新建 Feat_xxx 分支 3. 提交代码 4. 新建 Pull Request ## 👍🏻 thank 感谢 cuixiaorui 大佬的 [mini-vue](https://github.com/cuixiaorui/mini-vue) ## License [MIT](https://opensource.org/licenses/MIT) Copyright (c) 2023-present, mengqiuleo <br/> <h4>if you like this project, please star it😊</h4>
🖖 To implement a mini vue3 for learn
javascript,vue3,mvvm
2023-05-20T01:14:38Z
2023-09-22T05:26:19Z
2023-05-20T08:35:02Z
1
0
22
2
0
2
null
MIT
JavaScript
TBR-Group-software/improve-text-AI-app
main
# Improve text/code AI The goal of this project is to provide a user-friendly interface for editing and modifying text and code using ChatGPT. This project is built using the Django framework and several other libraries. <p float="center", align="justify"> <img src="https://github.com/TBR-Group-software/improve-text-AI-app/blob/main/images/mob%201.gif" width="250" /> <img src="https://github.com/TBR-Group-software/improve-text-AI-app/blob/main/images/mob%202.gif" width="250" /> <img src="https://github.com/TBR-Group-software/improve-text-AI-app/blob/main/images/mob%203.gif" width="250" /> </p> <p> <img src="https://github.com/TBR-Group-software/improve-text-AI-app/blob/main/images/desk_improve_ai.gif" width="750" /> </p> ## Features - Responsive design for all types of devices (mobile, tablet, desktop) using Bootstrap 5 - Improve text/code using ChatGPT - Summarize/correct grammar or perform other operations using ChatGPT - Minify/beautify or perform other operations using ChatGPT - User registration and login functionality - History of operations - Docker support for easy deployment ## Built with - [Django](https://www.djangoproject.com/) - Backend server-side web framework - [Celery](https://docs.celeryq.dev/en/stable/) - Simple, flexible, and reliable distributed system for processing messages - [Daphne](https://github.com/django/daphne/) - HTTP, HTTP2, and WebSocket protocol server for ASGI and ASGI-HTTP, used to power Django Channels - [Visual Studio Code](https://code.visualstudio.com/) - Code editing environment - [pre-commit](https://pre-commit.com/) - Framework for managing and maintaining multi-language pre-commit hooks - [black](https://github.com/psf/black) - Python code formatter - [Flake8](https://github.com/pycqa/flake8) - Python tool for checking code style and quality - [Bootstrap 5](https://getbootstrap.com/) - Frontend toolkit for building responsive designs - [Sass](https://sass-lang.com/) - CSS preprocessor language - [JavaScript](https://www.ecma-international.org/publications-and-standards/standards/ecma-262/) - Programming language for enhancing interactivity on the web - [Docker](https://www.docker.com/) - Platform for delivering software in containers - [Nginx](https://www.nginx.com/) - Web server and reverse proxy - [PostgreSQL](https://www.postgresql.org/) - Relational database management system - [OpenAIAPI](https://beta.openai.com/) - API for accessing new AI models developed by OpenAI ## Build **Step 1:** Download or clone this repository using the following link: ``` https://github.com/TBR-Group-software/improve-text-AI-app.git ``` **Step 2:** Create a `.env` file in the root folder and specify the following values: ``` POSTGRES_DB='XXX' POSTGRES_USER='XXX POSTGRES_PASSWORD='XXX' POSTGRES_HOST='localhost' POSTGRES_PORT=5432 DJANGO_DEBUG=True/False DJANGO_ALLOWED_HOSTS='*' DJANGO_SECRET_KEY='XXX' OPENAI_API_KEY='sk-XXX' OPENAI_ENGINE='gpt-3.5-turbo' # or another engine ``` **Step 3:** #### If you want to launch with Docker: ``` docker-compose up --build ``` The Improve text/code AI project is now available at http://127.0.0.1/. #### Launch without Docker: **Step 1:** Create and activate a Python virtual environment: ``` python3 -m venv env . env/bin/activate ``` **Step 2:** Install the dependencies listed in `requirements-dev.txt`: ``` pip3 install -r requirements-dev.txt ``` **Step 3:** Run PostgreSQL. **Step 4:** Apply Django database migrations: ``` python3 manage.py migrate ``` **Step 5:** Run the Django server: ``` python3 manage.py runserver ``` The Improve text/code AI project is now available at http://127.0.0.1:8000/. ## License This project is licensed under the GNU GPL v3 License. See the [LICENSE.md](https://github.com/TBR-Group-software/improve-text-AI-app/blob/main/LICENSE) file for details.
The goal of this project is to provide a user-friendly interface for editing and modifying text and code using ChatGPT. This project is built using the Django framework and several other libraries.
bootstrap5,chatgpt,daphne,django,docker,javascript,scss,nginx
2023-05-23T09:22:22Z
2023-06-29T09:51:19Z
null
1
0
18
0
0
2
null
GPL-3.0
SCSS
Gauravias/facerander
main
# facerander I developed this facerander website using HTML CSS and javascript which help you you try to speech convert in to text a robot who change their emotion
I developed this facerander website using HTML CSS and javascript which help you you try to speech convert in to text a robot who change their emotion
css3,face-recognition,html5,speech-recognition,speech-to-text,javascript,javascript-library
2023-06-07T12:08:10Z
2023-06-07T12:09:15Z
null
1
0
2
0
0
2
null
null
JavaScript
seanpm2001/AI2001_Category-Source_Code-SC-JavaScript
AI2001_Category-Source_Code-SC-JavaScript_Main-dev
*** # [AI2001](https://github.com/seanpm2001/AI2001/) data sets ## Category: Source Code ### Subcategory (SC): JavaScript This dataset is under development/coming soon. **🌱️ This [`README.md`](/README.md) file is a major stub and need significant expansion** *** **File version:** `1 (2023, Wednesday, June 7th at 4:01 pm PST)` ***
🧠️🖥️2️⃣️0️⃣️0️⃣️1️⃣️💾️📜️ The sourceCode:JavaScript category for AI2001, containing JavaScript programming language datasets
ai,ai-2001,ai-2001-dataset,ai-2001-development,ai2001,ai2001-dataset,ai2001-development,artificial-intelligence,dataset,gpl3
2023-06-07T22:02:58Z
2023-06-08T05:15:11Z
null
1
0
53
0
1
2
null
GPL-3.0
R
wwwxkz/lagfsd
main
# LAGFSD (Laravel, Aspnet, Gin, Flask, Springboot, Django) Services: Altough services are designed to work with API Gateway and Django, they can be also run independently with their own UI. # Screenshots ![](https://github.com/wwwxkz/lagfsd/blob/main/README/UML.drawio.png) ``` Laravel - Product - 8001:80 - React/Bootstrap ASPNET - User - 8002:80 - Gin - Payment - 8003:80 - Flask - Announces - 8004:5000 - --- Springboot - Gateway - 8080:80 - --- Django - Pages - 80:80 - --- @db (5x) - Mysql - 3306:3306 - @db - Microsoft - 3306:3306 - @Nginx - - 8000:80 - ``` Services flow: ``` @Authenticated user @Unauthenticated ``` Services workflow: ``` - docker-compose up @Laravel - docker-compose exec laravel bash - php artisan migrate - npm run watch ```
E-commerce platform using LAGFSD (Laravel, Aspnet, Gin, Flask, Springboot, Django) in a microservices architecture
aspnet,csharp,django,docker,flask,gin,golang,java,javascript,laravel
2023-05-27T13:22:24Z
2023-07-09T22:26:23Z
null
1
0
18
0
0
2
null
null
PHP
hyperingenious/100-000-Recipies
main
# 100,000-Recipies
null
css,html,javascript,mvc,npm,scss
2023-05-27T22:02:50Z
2023-06-28T12:36:54Z
null
1
0
57
0
0
2
null
null
JavaScript
mrinalxdev/QuantumRNG
main
# QuantumRNG a Node Package Manager [![Developing Time](https://wakatime.com/badge/user/6e3553f3-7d6a-4619-af68-505157a93d06/project/018c546b-0d0f-4ad0-8f0b-decd4b5eb52a.svg)](https://wakatime.com/badge/user/6e3553f3-7d6a-4619-af68-505157a93d06/project/018c546b-0d0f-4ad0-8f0b-decd4b5eb52a) This project provides a quantum computing simulator written in JavaScript. It includes classes and methods for simulating quantum gates, circuits, teleportation, error-connection and more. The framework is designed to be modular and extendable, allowing users to experiment with quantum algorithms and simulations. ### Usage To use the quantumrng, follow these steps: 1. Install the required dependencies : `npm install` 2. Import the necessary classes and methods into your project : ```js const { QuantumState, QuantumCircuit, QuantumGate, QuantumTeleportation, QuantumErrorConnection, QuantumAlgorithm, } = require('quantum_rng'); ``` ### Benefits - Simulate quantum operations without the need for a physical quantum computer. - Explore quantum algorithms and protocols in a controlled environment. - Understand the principles of quantum teleportation, error correction, and more > Feel free to report issues regarding the package built by [Mrinal Pramanick](https://www.github.com/mrinalxdev)
It leverages the principles of quantum computing to introduce new paradigm in the way developers handle state management and animations.
es6,javascript,node,nodejs
2023-06-06T17:31:22Z
2023-12-11T22:42:10Z
null
1
0
23
0
0
2
null
null
JavaScript
ceepu8/instagram-clone
main
## USED TECHS 1. Frontend - NextJS (v13) - ReactJS (v18) - NextAuth - Zustand - lucide-react - react-query - redux - react-hool-form - yup - dayjs - clsx - tailwindmerge - query-string - prop-types - interweave - axios UI libraries - RadixUI - HeadlessUI - TailwindCSS - react-hot-toast - react-slideshow-image #page: - auth: + login + register - home - profile - reels - explore - direct 2. Backend - MongoDB - Prisma - NodeJS many thanks to [tcdtist](https://github.com/tcdtist/), who helps me alot with the project❤!
null
headless-ui,javascript,mongodb,nextjs,nodejs,prisma,radix-ui,react-hook-form,react-query,reactjs
2023-05-22T08:51:22Z
2023-10-14T07:15:51Z
null
2
46
347
7
0
2
null
null
JavaScript
ImBIOS/story-app
main
null
This is a story app that allows users to create stories.
bootstrap,bootstrap5,html-templates,javascript,jsdoc,lit,lit-element,lit-html,sass,scss
2023-05-21T07:07:54Z
2023-05-27T07:48:28Z
null
1
3
9
0
0
2
null
null
JavaScript
OlenaIa/goit-js-hw-10
main
# goit-js-hw-10 Block JavaScript 2.0 | Module 10 - Interaction with the backend | Homework # Критерії приймання - Створено репозиторій `goit-js-hw-10`. - При здачі домашньої роботи є два посилання: на вихідні файли та робочу сторінку на `GitHub Pages`. - В консолі відсутні помилки і попередження під час відкриття живої сторінки завдання. - Проект зібраний за допомогою [parcel-project-template](https://github.com/goitacademy/parcel-project-template). - Код відформатований за допомогою `Prettier`. ## Стартові файли Завантаж стартовий файл index.html з базовою розміткою завдання. Скопіюй його собі у проект, в папку `src` в [parcel-project-template](https://github.com/goitacademy/parcel-project-template). ## Завдання - Котопошук Створи фронтенд частину застосунку для пошуку інформації про кота за його породою. Подивися [демо-відео](https://textbook.edu.goit.global/lms-js-homework/v2/uk/assets/medias/catsearch-demo-7a9eca87a69c1131c828592a49f6f647.mp4) роботи програми, використовуй його як орієнтир для необхідного функціоналу. ### HTTP-запити Використовуй публічний [The Cat API](https://thecatapi.com/). Для початку роботи необхідно зареєструватися й отримати унікальний ключ доступу, щоб прикріплювати його до кожного запиту. Заходимо на головну сторінку та натискаємо нижче кнопку `Signup for free`, дотримуємося інструкції, ключ буде надіслано на вказану пошту. Для використання ключа необхідно використовувати HTTP-заголовок x-api-key. Рекомендується використовувати axios та додати заголовок до всіх запитів. ``` import axios from "axios"; axios.defaults.headers.common["x-api-key"] = "твій ключ"; ``` ### Колекція порід Під час завантаження сторінки має виконуватися HTTP-запит за колекцією порід. Для цього необхідно виконати GET-запит на ресурс `https://api.thecatapi.com/v1/breeds`, що повертає масив об'єктів. У разі успішного запиту, необхідно наповнити `select.breed-select` опціями так, щоб `value` опції містило `id` породи, а в інтерфейсі користувачеві відображалася назва породи. Напиши функцію `fetchBreeds()`, яка виконує HTTP-запит і повертає проміс із масивом порід - результатом запиту. Винеси її у файл `cat-api.js` та зроби іменований експорт. ### Інформація про кота Коли користувач обирає якусь опцію в селекті, необхідно виконувати запит за повною інформацією про кота на [ресурс](https://api.thecatapi.com/v1/images/search). Не забудь вказати в цьому запиті параметр рядка запиту `breed_ids` з ідентифікатором породи. Ось як буде виглядати URL-запит для отримання повної інформації про собаку за ідентифікатором породи: ``` https://api.thecatapi.com/v1/images/search?breed_ids=ідентифікатор_породи ``` Напиши функцію `fetchCatByBreed(breedId)`, яка очікує ідентифікатор породи, робить HTTP-запит і повертає проміс із даними про кота - результатом запиту. Винеси її у файл `cat-api.js` і зроби іменований експорт. Якщо запит був успішний, під селектом у блоці `div.cat-info` з'являється зображення і розгорнута інформація про кота: назва породи, опис і темперамент. ### Опрацювання стану завантаження Поки відбувається будь-який HTTP-запит, необхідно показувати завантажувач - елемент `p.loader`. Поки запитів немає або коли запит завершився, завантажувач необхідно приховувати. Використовуй для цього додаткові CSS класи. - Поки виконується запит за списком порід, необхідно приховати `select.breed-select` та показати `p.loader`. - Поки виконується запит за інформацією про кота, необхідно приховати `div.cat-info` та показати `p.loader`. - Як тільки будь-який запит завершився, `p.loader` треба приховати. ### Опрацювання помилки Якщо у користувача сталася помилка під час будь-якого HTTP-запиту, наприклад, впала мережа, була втрата пакетів тощо, тобто проміс було відхилено, необхідно відобразити елемент `p.error`, а при кожному наступному запиті приховувати його. Використовуй для цього додаткові CSS класи. Протестувати працездатність відображення помилки дуже просто - зміни адресу запиту додавши в кінець будь-який символ, наприклад замість `https://api.thecatapi.com/v1/breeds` використай `https://api.thecatapi.com/v1/breeds123`. Запит отримання списку порід буде відхилено з помилкою. Аналогічно для запиту інформації про кота за породою. ### Інтерфейс - Додай мінімальне оформлення елементів інтерфейсу. - Замість `select.breed-select` можеш використовувати будь-яку бібліотеку з красивими селектом, [наприклад](https://slimselectjs.com/) - Замість `p.loader` можеш використовувати будь-яку бібліотеку з красивими CSS-завантажувачами, [наприклад](https://cssloaders.github.io/) - Завантажувач `p.error` можеш використовувати будь-яку бібліотеку з гарними сповіщеннями, наприклад [Notiflix](https://github.com/notiflix/Notiflix#readme)
Block JavaScript 2.0 | Module 10 - Interaction with the backend | Homework
ajax,api,axios,css,cssloader,html,javascript,notiflix,slimselect,thecatapi
2023-06-05T11:57:51Z
2023-06-27T15:50:11Z
null
3
0
88
0
0
2
null
null
JavaScript
so1ve/crpr
main
# crpr [![NPM version](https://img.shields.io/npm/v/crpr?color=a1b858&label=)](https://www.npmjs.com/package/crpr) Create a promise, but avoid using constructors. ## 📦 Installation ```bash $ npm install crpr $ yarn add crpr $ pnpm add crpr ``` ## 🚀 Usage ```ts import { crpr } from "crpr"; const { promise, resolve, reject } = crpr<string>(); // or const [promise, resolve, reject] = crpr<string>(); resolve("114514"); promise.then(console.log); // 114514 ``` ## 📝 License [MIT](./LICENSE). Made with ❤️ by [Ray](https://github.com/so1ve)
Create a promise, but avoid using constructors.
javascript,promise
2023-05-20T08:27:53Z
2024-04-06T01:55:25Z
2023-05-22T05:26:49Z
1
193
203
1
0
2
null
MIT
TypeScript
thesiyhbrand/js-hover-effect
main
# js-hover-effect This is for my youtube channel
This is for my youtube channel
css3,html-css-javascript,html5,javascript
2023-05-21T14:58:24Z
2023-07-30T13:32:27Z
null
1
0
4
0
0
2
null
null
JavaScript
stimulsoft/Samples-Reports.JS-for-Vue.js
main
# Vue.js samples for Stimulsoft Reports.JS #### This repository contains the source code of the examples of usage Stimulsoft Reports.JS reporting tool in the Vue.js applications, using JavaScript code and Vue.js components. The report generator and examples are fully compatible with any Vue.js version. ## Overview A set of examples for working with report components in Vue.js: * [Integrating the Report Designer into an Application](https://github.com/stimulsoft/Samples-Reports.JS-for-Vue.js/tree/main/Vue.js/Integrating%20the%20Report%20Designer%20into%20an%20Application) * [Integrating the Report Viewer into an Application](https://github.com/stimulsoft/Samples-Reports.JS-for-Vue.js/tree/main/Vue.js/Integrating%20the%20Report%20Viewer%20into%20an%20Application) A set of examples for working with report components in Vue.js 3: * [Integrating the Report Designer into an Application](https://github.com/stimulsoft/Samples-Reports.JS-for-Vue.js/tree/main/Vue.js%203/Integrating%20the%20Report%20Designer%20into%20an%20Application) * [Integrating the Report Viewer into an Application](https://github.com/stimulsoft/Samples-Reports.JS-for-Vue.js/tree/main/Vue.js%203/Integrating%20the%20Report%20Viewer%20into%20an%20Application) * [Supply Custom Headers for Json Database](https://github.com/stimulsoft/Samples-Reports.JS-for-Vue.js/tree/main/Vue.js%203/Supply%20Custom%20Headers%20for%20Json%20Database) ## Running samples To run the examples, open the required folder with the example and run the following commands in the console: * use `npm install` to install requred modules; * use `npm run dev` to run sample; * navigate to http://localhost:8080/ for Vue.js samples or http://localhost:3000/ for Vue.js 3 samples. ## Connect to SQL databases Since pure JavaScript does not have built-in methods for working with remote databases, this functionality is implemented using server-side code. Therefore, Stimulsoft Reports.JS product contains server data adapters implemented using PHP, Node.js, ASP.NET, Java, .NET Core technologies. * [DataAdapters.JS](https://github.com/stimulsoft/DataAdapters.JS) ## Other JS reporting components Many examples for other platforms and technologies are collected in separate repositories: * [HTML / JS](https://github.com/stimulsoft/Samples-Reports.JS-for-HTML) * [Angular / AngularJS](https://github.com/stimulsoft/Samples-Reports.JS-for-Angular) * [Node.js](https://github.com/stimulsoft/Samples-Reports.JS-for-Node.js) * [Python](https://github.com/stimulsoft/Samples-Reports.JS-for-Python) * [React](https://github.com/stimulsoft/Samples-Reports.JS-for-React) ## About Stimulsoft Reports.JS Stimulsoft Reports.JS offers a wide range of reporting components created in pure JavaScript. The report builder can be easily integrated into any JavaScript app, works in any modern browser – Chrome, Firefox, Safari, Edge, and supports Node.js. The product contains everything you need to create, edit, build, view and export reports of high complexity. ## Useful links * [Live Demo](http://demo.stimulsoft.com/#Js) * [Product Page](https://www.stimulsoft.com/en/products/reports-js) * [Free Download](https://www.stimulsoft.com/en/downloads) * [NPM](https://www.npmjs.com/package/stimulsoft-reports-js) * [Documentation](https://www.stimulsoft.com/en/documentation/online/programming-manual/index.html?reports_js.htm) * [License](LICENSE.md)
JavaScript samples for Reports.JS report builder for Vue.js applications
data,javascript,report,reporting,samples,vue,vuejs,embedded,generator,report-engine
2023-05-29T15:22:31Z
2024-05-13T09:43:39Z
null
2
0
27
0
1
2
null
NOASSERTION
Vue
poudelrohan/ZenList
master
# To-Do List This repository contains a simple and interactive To-Do List application. With this application, you can easily manage and organize your daily tasks. This is my first project after learning basic HTML, CSS, JavaScript and React. ## Features - **Task Management**: Add, edit, and remove tasks effortlessly. The application provides a user-friendly interface to create and manage your to-do items effectively. - **Responsive Design**: The application is designed to be responsive, ensuring a seamless experience across different devices and screen sizes. ## Deployment The To-Do List App is deployed using GitHub Pages and can be accessed [here](https://poudelrohan.github.io/to-do-list). ## Getting Started To run the To-Do List application locally, follow these steps: 1. Clone the repository: ```shell git clone https://github.com/poudelrohan/to-do-list.git ``` 2. Navigate to the project directory: ```shell cd to-do-list ``` 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 - **Adding a Task**: To add a new task, enter the task description in the input field provided and press the "+" button. The task will be added to your to-do list. ![add](https://github.com/poudelrohan/to-do-list/assets/115334248/f4d33618-943f-4887-85be-d27f66802fde) - **Removing a Task**: To remove a task after you have completed it, click the "🗑" button next to the task. The task will be permanently removed from your to-do list. ![del](https://github.com/poudelrohan/to-do-list/assets/115334248/757854ff-224e-4f75-b22d-11c55db9eaa3) - **Remove all Tasks**: To remove all the tasks after you have completed it, click the "Clear All" button next to the task. All of the tasks will be permanently removed from your to-do list. ![delall](https://github.com/poudelrohan/to-do-list/assets/115334248/adc68745-5a4a-4c7f-9c33-b9df40c73015) ## License This project is licensed under the [MIT License](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 staying organized with the To-Do List application!
This is a very simple To-Do List app I made using HTML, CSS, JavaScript ,and React. This app is my first project after learning basic web development.
javascript,react-app,to-do-list
2023-06-04T08:55:14Z
2024-05-18T07:14:39Z
null
2
0
13
0
0
2
null
MIT
JavaScript
Blard-omu/LEARN-REACT-WITH-BLARD
main
### LEARN REACT WITH BLARD <img src="https://solguruz.com/wp-content/uploads/2022/09/ReactJS-Framework-Benefits.png" alt="" width="100%" height="400px" /> # OUTLINE - Inatalling Node and other extensions - What is React? - Why React? - Create react App (cra) - React Folder structure and lifecycle - React Components (cbc and fbc) - JSX - Creating a React Component - Adding jsx text and images to a React Component - Rendering a React Component - Nested React Components - passing data to a React Component (props, children) - props with different data types - States in react - Stateful components (class based components) - Stateless components (function based components) - React Hooks - useState, useEffect, useContext, useRef, useMemo, useReducer, etc - Events in react, onClick, onSubmit, onMouseEnter, onMouseLeave, onMouseOver. - Conditional rendering using ternary operator and coalescence operator - React Router DOM, Link, routing, useNavigate and private rounting - Project - Final project
This is a repo dedicated to react fundamentals. Suitable for both students and tutors.
hooks,javascript,jsx,react
2023-05-23T08:43:46Z
2023-06-03T15:41:32Z
null
1
0
5
0
0
2
null
null
JavaScript
ishukhan/Booking-app
booking-app
# Booking-app I developed a booking application using React for the front-end, utilizing Sass for designing purposes. The back-end was built using Node.js with the Express framework, and MongoDB was used as the database. The project successfully integrates these technologies to create a seamless and efficient booking experience
I developed a booking application using React for the front-end, utilizing Sass for designing purposes. The back-end was built using Node.js with the Express framework, and MongoDB was used as the database. The project successfully integrates these technologies to create a seamless and efficient booking experience
express,javascript,nodejs,react,react-roter-dom,scss
2023-05-24T07:04:23Z
2023-06-24T15:06:57Z
null
1
0
6
1
1
2
null
null
JavaScript
German-Cobian/Art-Museum-Api
main
![](https://img.shields.io/badge/Microverse-blueviolet) # Art-Museum-Api This Javascript app fetches artworks in the Art Institute of Chicago from an API. From the home page the user can input the artist, or title, or type of artwork that they are searching for: ![Homepage](/assets/for-presentation/Initial-and-search-for.png?raw=true "Homepage") The app will then render a listing of all the works that match the search criteria, displaying their image as well as their title and creator name. ![Listing pre-likes](/assets/for-presentation/List-pre-likes.png?raw=true "Artworks listing pre-likes") The user can the input "likes" on the artworks of his/her choice. The comment button brings up a popup window with additional information regarding the artwork (type of artwork, medium, dimensions, date, provenance of artist, category in which the artwork is included), the comments posted by other users (if any)... ![Pop-up](/assets/for-presentation/Pop-up-pre-comment.png?raw=true "Pop-up pre-comments") ... as well as the form for the current user to input a comment. ![Comment form](/assets/for-presentation/Comment-fill-in.png?raw=true "Comment form") When the pop-up window is again accesed later, the user's comments will be displayed. ![Pop-up](/assets/for-presentation/Pop-up-pre-comment.png?raw=true "Pop-up post-comments") The application makes API calls to the [Chicago Art Institute API](https://api.artic.edu/api/v1/artworks) retrieving information about the movies. Another API, [Involvement API](https://www.notion.so/Involvement-API-869e60b5ad104603aa6db59e08150270), is responsible for saving likes and fetching the number of likes, saving comments and fetching a list of comments. All those functionalities are tied-up in a single codebase. ## Built With * HTML * CSS * JavaScript * Chicago Art Institute API * Involvement API ## Getting Started To get a local copy up and running follow these simple example steps. ### Setup and Install * Open your terminal - Windows: `Win + R`, then type `cmd` | Mac: `Command + space`, then type `Terminal` * Navigate to a directory of your choosing using the `cd` command * Run this command in your OS terminal: `git clone git@github.com:German-Cobian/Art-Museum-Api.git` to get a copy of the project * Navigate to the project's directory using the `cd` command * Input the following: `<project's file path in your computer>/Art-Museum-Api/index.html` into your web-browser's address bar ## Authors 👤 **German Cobian** * GitHub: [@German Cobian](https://github.com/German-Cobian) * Twitter: [@GermanCobian2](https://twitter.com/GermanCobian2) * LinkedIn: [@German Cobian](https://www.linkedin.com/in/german-cobian/) ## 🤝 Contributing Contributions, issues, and feature requests are welcome! Feel free to check the [issues page](https://github.com/German-Cobian/Art-Museum-Api/issues). ## Show your support Give a ⭐️ if you like this project! ## Acknowledgments Guidelines for this project supplied by [Microverse](https://github.com/microverseinc/curriculum-javascript/tree/main/group-capstone). ## 📝 License This project is [MIT](https://github.com/German-Cobian/Art-Museum-Api/blob/main/LICENSE) licensed.
This Javascript app fetches artworks in the Art Institute of Chicago from an API according to the user’s search criteria, displays them, and then, on the artwork of the user's choice, displays more detailed information and allows the user to post likes or comments.
api,css,html,javascript
2023-05-25T21:01:25Z
2023-07-06T22:16:52Z
null
1
7
33
0
0
2
null
MIT
JavaScript
rahulbangaon/shape-city
main
# Shape City ## [LiveDemo](https://shapecity.netlify.app) Welcome to the Shape City project repository! This project aims to replicate a gym web app's core features using cutting-edge technologies as React, CSS, HTML and bootstrapped with Vite. It's a fully responsive and high-performance Single Page React web application (SPA). ![desktopMainHeader](https://github.com/rahulbangaon/shape-city/assets/59789121/c351d779-3e12-4cfa-9110-89b3204945e2) ## Key Features - Config driven UI - Responsive Design: Optimized for various screen sizes and devices. - Bootstrapped with Vite for fast and high performance. - Single Page Application: It's a React SPA with quick loading time and seamless user experince. - It's using React Router for routing that enalbles navigation even without refreshing page. ## Tools & Technologies Shape City is build using- - React - CSS Modules - React Icons - React Router - Vite ## Getting Started ### Prerequisites Ensure that you have latest version of Node.js installed on your system. ### Clone the Repository ``` git clone https://github.com/rahulbangaon/shape-city.git ``` ### Install Dependencies Navigate to the project directory and run the following command: ``` npm install ``` ### Launch the App Start the development server by running: ``` npm run dev ``` This project is bootstrapped with Vite, so the project will be available at http://localhost:5173. ## Screenshots ### Desktop #### Home ![desktop](https://github.com/rahulbangaon/shape-city/assets/59789121/67129060-1d13-4180-b5e1-edfa4013d26a) #### About ![about](https://github.com/rahulbangaon/shape-city/assets/59789121/11be0c3c-f906-4c19-8b03-d78db8c3cc0f) #### Gallery ![gallery](https://github.com/rahulbangaon/shape-city/assets/59789121/631322d3-ac8e-4813-8129-aeccb8268fbe) #### Membership ![memberships](https://github.com/rahulbangaon/shape-city/assets/59789121/2ed5847d-efe8-4f04-92d7-88fab3787f12) #### Trainers ![trainers](https://github.com/rahulbangaon/shape-city/assets/59789121/4f9415de-f284-4eec-8df1-8ada7c73cda7) #### Contact ![contact](https://github.com/rahulbangaon/shape-city/assets/59789121/70ccafa6-2f06-4c1a-b4bf-51d7801f16d8) ### Tablets ![tabletHome](https://github.com/rahulbangaon/shape-city/assets/59789121/bc29a728-2c41-424f-9acf-19172434057b) ### Mobiles ![mobileHome](https://github.com/rahulbangaon/shape-city/assets/59789121/924bb5f9-6727-472e-9ded-68bcb61471e6) ## Contributing If you would like to contribute to the project, please feel free to submit a pull request with your changes or improvements. We appreciate your help in making Shape City even better! Now you're all set to explore the Shape City project! Enjoy and happy coding! ## Authors - [@rahulbangaon](https://www.github.com/rahulbangaon)
Shape City project aims to replicate a gym web app's core features using cutting-edge technologies as React, CSS, HTML and bootstrapped with Vite. It's a fully responsive and high-performance react web application.
css,css-modules,javascript,react,react-icons,react-router,vite,config-driven,html,single-page-app
2023-05-27T15:36:33Z
2023-06-09T08:29:04Z
null
1
0
9
0
0
2
null
null
JavaScript
rawanabuzir/HR_ManagementSystem
main
# HR-management-system
HR-management-system :
css,html,javascript
2023-05-18T05:55:00Z
2023-05-18T12:07:12Z
null
1
6
15
0
0
2
null
null
HTML
lipesshw/nlw-spacetime-ignite
main
<p> <img src="https://media.discordapp.net/attachments/1057059975383486506/1109334415030628432/image.png" alt="demonstração do projeto" width="100%" /> </p> ## 🖥️ Projeto Aplicação de recordação de memórias, onde o usuário poderá adicionar à uma timeline textos, fotos e vídeos de acontecimentos marcantes da sua vida, organizados por mês e ano. ## 🏷️ Layout Você pode visualizar o layout do projeto através [desse link](https://www.figma.com/file/sy3zC9MdRPs3Vx5xlqmhXD/Cápsula-do-tempo-•-Trilha-Ignite-(Community)?type=design&node-id=205-85&t=q3tZqG2Rd5XPvbBN-0). É necessário ter uma conta no [Figma](https://www.figma.com/).
Aplicação de recordação de memórias, onde o usuário poderá adicionar à uma timeline textos, fotos e vídeos de acontecimentos marcantes da sua vida, organizados por mês e ano.
expo,javascript,js,prisma,react-native,tailwindcss,typescript
2023-05-20T04:13:05Z
2023-05-20T04:19:10Z
null
1
7
2
0
0
2
null
null
TypeScript
sabn0/SnakesAndLadders-Rs
main
# SnakesAndLadders-Rs ![rust version](https://img.shields.io/badge/rust-1.69.0-blue) ![Tauri version](https://img.shields.io/badge/Tauri-1.3-orange) An implementatation of the famous and popular snakes and ladders game, as a desktop app.\ Ladders and snakes are generated randomaly every time the game is initialized. <br><br> <img src="https://github.com/Sabn0/SnakesAndLadders-Rs/blob/main/src/assets/demo.gif" width="300" height="350"> ## How to play First you need to have [Rust](https://doc.rust-lang.org/book/ch01-01-installation.html) and npm on your machine. Then run (on linux): ``` git clone https://github.com/Sabn0/SnakesAndLadders-Rs.git cd SnakesAndLadders-Rs npm install npm run tauri dev ``` I also attached an sh script above. Required 2.3 GB when built on my local machine. ## Software Programmed using the amazing [Tauri](https://github.com/tauri-apps/tauri) framework: * Rust (vs 1.69.0) for the backend. * JavaScript, HTML and CSS for the frontend. ## References The dice implementation was heavily based on the nice tutorial [here](https://lenadesign.org/2020/06/18/roll-the-dice/). ## License Under [MIT license](https://github.com/Sabn0/SnakesAndLadders-Rs/blob/main/LICENSE-MIT) and [Apache License, Version 2.0](https://github.com/Sabn0/SnakesAndLadders-Rs/blob/main/LICENSE-APACHE).
An implementatation of the snakes and ladders game with Tauri
game,javascript,rust,snakes-and-ladders,tauri-app
2023-05-28T13:15:47Z
2023-06-04T06:10:03Z
2023-06-03T06:02:10Z
1
4
112
0
0
2
null
Apache-2.0
JavaScript
taianekarine/frontend-food-explorer
main
# 👩🏼‍💻 Sobre Um site especializado em estabelecimentos do ramo alimentício! Comece criando sua conta e, em seguida, faça o login para explorar um carrossel completo de produtos cuidadosamente categorizados, especialmente projetados para aprimorar sua experiência como usuário. No topo da página, você encontrará uma barra de pesquisa, onde poderá filtrar os produtos por nome ou ingrediente, facilitando a busca por exatamente o que deseja. ## Demonstração [Web 🖥️](https://www.youtube.com/watch?v=u79TZvfMKWo&ab_channel=TaianeKarine) [Mobile 📱](https://www.youtube.com/watch?v=BoipEMZ5M_w&feature=youtu.be&ab_channel=TaianeKarine) ## 🚀 Instalação Clone o repositorio: Front-end: ```bash git clone git@github.com:taianekarine/Explorer-Desafio-Final-FrontEnd.git ``` Navegue até a pasta: ```bash cd Explorer-Desafio-Final-FrontEnd ``` Back-end: ```bash git clone git@github.com:taianekarine/Explorer-Desafio-Final-BackEnd.git ``` Navegue até a pasta: ```bash cd Explorer-Desafio-Final-BackEnd ``` ## Rode o projeto Para executar o programa certifique-se que o backend esteja executando, depois, basta rodar o comando: Front-end: ```bash yarn ``` Back-end: ```bash npm run dev ``` ## Funcionalidades 🤖 - Tema dark; - Preview em tempo real; - Disponivél para mobile e desktop - Usuário Admin: - Cria produtos; - Edita produtos; - Excluí produtos; - Usuário comum: - Favorita produto; ## Aprendizados 👩🏼‍🎓 Construíndo este projeto tive a oportunidade de colocar em pratica todos os conceitos dados no percorrer do curso Explorer. Me deparei com várias dificuldades mas pude supera-las com muito estudo e revendo as aulas do curso e também tive o apoio da cominudade Rocktseat 🚀. Em 06 de Junho de 2022 eu mal sabia como fazer o famoso "Hello Word!" aparecer na tela e um ano depois, aqui estou com este projeto desafiador feito por mim. O maior aprendizado é nunca desistir e entender que tudo acontece num passe de cada vez. ## Autora 👩🏼 [Taiane Karine ](https://www.github.com/taianekarine) 🧡 [ Linkedin ](https://www.linkedin.com/in/taianekarine/) [ Instagram ](https://www.instagram.com/taianekarine/) ## Deploy 💻 [ Acesse o site ](https://tksfoodexplorer.netlify.app/) ## 🤫 shh... Para você que chegou até aqui, tenho um segredinho, você pode ter a experiencia de um usuário administrador usando estes dados: Usuário: admin@email.com Senha: admin1 Mais não conta pra ninguém 🫣
Food Explorer
javascript,reactjs,styled-components
2023-06-06T03:04:26Z
2023-09-13T22:17:58Z
null
1
0
8
0
0
2
null
null
JavaScript
cindykandie/intellix-tech
main
# IntelliXar Site✨ Intellixar is a tech solutions company focused on creating innovative software products and providing custom software development services. This project showcases our company website built using Next.js, a powerful React framework for server-side rendering and static site generation. 🚀 ## Features 🌟 - **Next.js**: The project is built with Next.js, providing server-side rendering, optimized routing, and other performance benefits. - **React**: Intellixar utilizes React for building modular and reusable components. - **Tailwind CSS**: The project uses Tailwind CSS as the utility-first CSS framework for styling. - **Responsive Design**: The website is designed to be responsive and provide an optimal user experience across different devices. 📱💻 ## 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/cindykandie/intellix-tech.git 2. **Navigate to the project directory:** ``cd intellix-tech`` 3. **Install dependencies:** ``npm install`` 4. **Start the development server:** ``npm run dev`` The website will be accessible at [http://localhost:3000](http://localhost:3000). 🎉 ## Contributing 🤝 We welcome contributions to the Intellixar project! If you'd like to contribute, please follow these guidelines: - Fork the repository. - Create a new branch for your feature or bug fix. - Make your changes and commit them with descriptive commit messages. - Push your changes to your forked repository. - Submit a pull request detailing your changes. Please ensure that your contributions align with the project's coding style, conventions, and licensing. ## License 📝 The Intellixar project is licensed under the [MIT License](LICENSE). Feel free to use, modify, and distribute the code for personal or commercial purposes. 🎈 ## Contact 📧 If you have any questions, suggestions, or feedback, please feel free to reach out to us at [info@intellixar.com](mailto:cindyjk6@gmail.com). 📬 Visit our [website](https://www.intellixar.vercel.app) to learn more about our company and explore our products and services. 🌐 Thank you for your interest in Intellixar! ✨🙌
IntelliXar is a software company I founded, a front-end developer, with a vision to tackle the impossible in a world where AI serves as a companion. My mission is to create innovative solutions that push the boundaries of what is achievable. I believe in living limitlessly without asking for permission.
artificial-intelligence,javascript,nextjs,saas,tailwindcss
2023-05-18T08:57:35Z
2023-06-21T10:02:41Z
null
1
5
17
8
1
2
null
null
JavaScript
tdonuk/note-manager
develop
null
A notepad app with some complex features
editor,java17,javascript,swing,swing-gui
2023-05-24T21:01:41Z
2023-12-03T23:15:00Z
null
3
0
52
9
0
2
null
null
Java
preciousimo/sonips-tech-mart
main
# sonips tech mart
Creating a technology-oriented online marketplace.
aws-s3,django,docker,flyio,javascript,neon,postgresql,python
2023-05-29T13:13:32Z
2023-12-19T20:07:12Z
null
1
0
66
0
0
2
null
null
HTML
YuDiCC/Clon_Interfaz_de_Google
main
# Clonación de Interfaz de Google 🌐 ## ÍNDICE * [1. Intro](https://github.com/dianamartinezrodri/ClonInterfazDeGoogle/blob/main/README.md#1-intro) * [2. Qué construí](https://github.com/dianamartinezrodri/ClonInterfazDeGoogle/blob/main/README.md#2-qu%C3%A9-constru%C3%AD) * [3. Objetivo del proyecto](https://github.com/dianamartinezrodri/ClonInterfazDeGoogle/blob/main/README.md#3-objetivo-del-proyecto) **** ## 1. Intro HTML 5 trabaja de la mano con CSS3 para crear páginas web que usamos todos los días en el navegador. Incluso este sitio web en donde estás viendo este contenido está construido con HTML5 y CSS3. En este proyecto con los conocimientos de HTML5 y CSS3, realicé la clonación de la interfaz de Google. ## 2. Qué construí En este proyecto me enfoqué en construir la clonación de la interfaz de Google. Contiene las siguientes secciones: * **Header**: Sección que involucra la foto de mi perfil íconos y un menú con hipervínculos. * **Main**: Sección del contenedor para los elementos centrales de la página. * **Footer**: Sección que incluye hipervínculos al final de la página. ## 3. Objetivo del Proyecto Aprender a utilizar las etiquetas estándar de HTML5 y los estilos de CSS3. ## Versión Escritorio <img src="https://github.com/YuDiCC/Clon_Interfaz_de_Google/blob/main/clonacion_google.jpeg" alt="Clonación de la Interfaz de Google"/>
Clonación de la Interfaz de Google como Proyecto en el Programa Tecnolochicas PRO
clonacion,css,html5,javascript,tecnolochicas
2023-05-20T13:04:31Z
2023-08-26T12:09:22Z
null
1
0
6
0
0
2
null
null
CSS
RaghavKachhawaha9/javascript_beginner
main
# Javascript for Beginner ## Description This repository contains code and materials related to the YouTube video tutorial : **JavaScript Tutorial for Beginners: Learn JavaScript in 1 Hour** ## Video Link You can find the video tutorial on YouTube: [JavaScript Tutorial for Beginners: Learn JavaScript in 1 Hour](https://www.youtube.com/watch?v=W6NZfCO5SIk) ## Installation To use the code in this repository, you need to have Node.js installed on your system. Follow the steps below to set up the project: 1. Clone this repository to your local machine using 'git clone https://github.com/RaghavKachhawaha9/javascript_beginner.git' 2. Navigate to the project directory. Note: If you don't have Node.js installed, you can download it from the official website: [Node.js](https://nodejs.org/en/download) ## Usage To run the code samples or projects included in this repository, follow these steps: 1. Open the terminal or command prompt. 2. Navigate to the project directory. 3. Execute the command **node filename.js** to run the code. Make sure you have installed Node.js and the project dependencies as mentioned in the Installation section. Note: Replace **filename.js** with the actual filename of the JavaScript file you want to execute.
This repository contains code and materials related to the YouTube video tutorial : JavaScript Tutorial for Beginners: Learn JavaScript in 1 Hour
beginner,html5,javascript,node-js,nodejs,webdevelopment
2023-05-23T17:51:30Z
2024-02-06T18:24:58Z
null
1
0
33
0
0
2
null
null
JavaScript
Sachintha-Samarathunga/ChatCord-chat-application
main
# ChatCord-chat-application ChatCord Chat Application ![chatcord](https://github.com/Sachintha-Samarathunga/ChatCord-chat-application/assets/98406068/f9e7a3e5-34f6-4752-9d08-882731ad423d)
Developed ChatCode, a dynamic chat application fostering seamless communication. With a sleek design, real-time messaging, and user-friendly features, it redefines the way we connect in the digital era.
css,html,javascript
2023-05-28T18:54:47Z
2023-05-31T04:36:33Z
null
1
0
3
0
0
2
null
null
JavaScript
DiyorbekAbdulhamidov/Movies-App
Diyorbek
# Movies-App the backend of this project is written by a backend developer
the backend of this project is written by a backend developer
bootstrap5,css,html,javascript,npm-module,package,yarn
2023-05-31T14:42:45Z
2023-06-11T08:19:39Z
null
1
0
21
0
0
2
null
null
JavaScript
Zy8712/frontend-mentor-challenges
main
# frontend-mentor-challenges <p>View Custom Directory (Completed Challenges Only): <a href="https://frontend-mentor-challenges-pi-sage.vercel.app/"><ins>HERE</ins></a></p> <p>My Frontend Mentor Profile: <a href="https://www.frontendmentor.io/profile/Zy8712"><ins>HERE</ins></a></p> <table> <tr> <td>Project Name</td> <td>Languages/Frameworks</td> <td>Links</td> <td>Date Completed</td> <td>Learned</td> <td>Trial#</td> </tr> <tr> <td>Pod Request Access Landing Page</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> <img src="https://img.shields.io/badge/JavaScript-black?logo=javascript&logoColor=yellow" alt="javascript_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="">💾 Challenge</a></p> <p><a href="">📨 Submission</a></p> <p><a href="">👨‍💻 My_Code</a></p> <p><a href="">🖥️ Preview</a></p> </details> </td> <td>Oct 9th, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> <li>order (flex-box)</li> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>QR Code Component</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/JavaScript-black?logo=javascript&logoColor=yellow" alt="javascript_icon"> <img src="https://img.shields.io/badge/Tailwind_CSS-06B6D4?logo=tailwindcss&logoColor=white" alt="tailwindcss_icon"> <img src="https://img.shields.io/badge/React-61DAFB?logo=react&logoColor=white" alt="react_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/qr-code-component-iux_sIO_H">💾 Challenge</a></p> <p><a href="">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges-react/tree/main/qr-code-component/my-react-work-v2">👨‍💻 My_Code</a></p> <p><a href="">🖥️ Preview</a></p> </details> </td> <td>Oct 7th, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> </ul> </details> </td> <td>#4</td> </tr> <tr> <td>Advice Generator App</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/JavaScript-black?logo=javascript&logoColor=yellow" alt="javascript_icon"> <img src="https://img.shields.io/badge/Tailwind_CSS-06B6D4?logo=tailwindcss&logoColor=white" alt="tailwindcss_icon"> <img src="https://img.shields.io/badge/React-61DAFB?logo=react&logoColor=white" alt="react_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/advice-generator-app-QdUG-13db">💾 Challenge</a></p> <p><a href="">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges-react/tree/main/advice-generator-app/my-react-work-v2">👨‍💻 My_Code</a></p> <p><a href="">🖥️ Preview</a></p> </details> </td> <td>Oct 6th, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> </ul> </details> </td> <td>#3</td> </tr> <tr> <td>Space Tourism Website</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> <img src="https://img.shields.io/badge/JavaScript-black?logo=javascript&logoColor=yellow" alt="javascript_icon"> <img src="https://img.shields.io/badge/SCSS-CC6699?logo=sass&logoColor=white" alt="scss_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/space-tourism-multipage-website-gRWj1URZ3">💾 Challenge</a></p> <p><a href="">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/space-tourism-website/my-work">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/space-tourism-website/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Oct 2nd, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> <li>backdrop-filter</li> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>Ping Single Column Coming Soon Page</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> <img src="https://img.shields.io/badge/SCSS-CC6699?logo=sass&logoColor=white" alt="scss_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/ping-single-column-coming-soon-page-5cadd051fec04111f7b848da">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/ping-coming-soon-page-ZFCtYxVW54">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/ping-coming-soon-page/my-work">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/ping-coming-soon-page/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Sept 16th, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>Clipboard Landing Page</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> <img src="https://img.shields.io/badge/SCSS-CC6699?logo=sass&logoColor=white" alt="scss_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/clipboard-landing-page-5cc9bccd6c4c91111378ecb9">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/clipboard-landing-page-6wdy5EYFmN">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/clipboard-landing-page/my-work">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/clipboard-landing-page/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Sept 14th, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>Room Homepage</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> <img src="https://img.shields.io/badge/JavaScript-black?logo=javascript&logoColor=yellow" alt="javascript_icon"> <img src="https://img.shields.io/badge/SCSS-CC6699?logo=sass&logoColor=white" alt="scss_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/room-homepage-BtdBY_ENq">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/room-homepage-5YzK2BExdF">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/room-homepage/my-work">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/room-homepage/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Sept 7th, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>Newsletter Sign-up Form With Success Message</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> <img src="https://img.shields.io/badge/JavaScript-black?logo=javascript&logoColor=yellow" alt="javascript_icon"> <img src="https://img.shields.io/badge/Tailwind_CSS-06B6D4?logo=tailwindcss&logoColor=white" alt="tailwindcss_icon"> <img src="https://img.shields.io/badge/React-61DAFB?logo=react&logoColor=white" alt="react_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/newsletter-signup-form-with-success-message-3FC1AZbNrv">💾 Challenge</a></p> <p><a href="">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges-react/tree/main/newsletter-sign-up-with-success-message/my-react-work-v1">👨‍💻 My_Code</a></p> <p><a href="">🖥️ Preview</a></p> </details> </td> <td>Sept 3rd, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> <li>ReactJS</li> <li>Tailwind CSS</li> </ul> </details> </td> <td>#2</td> </tr> <tr> <td>Single Price Grid Component</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> <img src="https://img.shields.io/badge/Tailwind_CSS-06B6D4?logo=tailwindcss&logoColor=white" alt="tailwindcss_icon"> <img src="https://img.shields.io/badge/React-61DAFB?logo=react&logoColor=white" alt="react_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/single-price-grid-component-5ce41129d0ff452fec5abbbc">💾 Challenge</a></p> <p><a href="">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges-react/tree/main/single-price-grid-component/my-react-work-v1">👨‍💻 My_Code</a></p> <p><a href="">🖥️ Preview</a></p> </details> </td> <td>Aug 31st, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> <li>ReactJS</li> <li>Tailwind CSS</li> </ul> </details> </td> <td>#2</td> </tr> <tr> <td>3 Column Preview Card Component</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> <img src="https://img.shields.io/badge/Tailwind_CSS-06B6D4?logo=tailwindcss&logoColor=white" alt="tailwindcss_icon"> <img src="https://img.shields.io/badge/React-61DAFB?logo=react&logoColor=white" alt="react_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/3column-preview-card-component-pH92eAR2-">💾 Challenge</a></p> <p><a href="">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges-react/tree/main/3-column-preview-card-component/my-react-work-v1">👨‍💻 My_Code</a></p> <p><a href="">🖥️ Preview</a></p> </details> </td> <td>Aug 29th, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> <li>ReactJS</li> <li>TailwindCSS</li> </ul> </details> </td> <td>#3</td> </tr> <tr> <td>Huddle Landing Page with Alternating Feature Blocks</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> <img src="https://img.shields.io/badge/SCSS-CC6699?logo=sass&logoColor=white" alt="scss_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/huddle-landing-page-with-alternating-feature-blocks-5ca5f5981e82137ec91a5100">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/huddle-landing-page-8QRB5W0hmu">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/huddle-landing-page-with-alternating-feature-blocks/my-work">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/huddle-landing-page-with-alternating-feature-blocks/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Aug 26th, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>Advice Generator App</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> <img src="https://img.shields.io/badge/JavaScript-black?logo=javascript&logoColor=yellow" alt="javascript_icon"> <img src="https://img.shields.io/badge/Tailwind_CSS-06B6D4?logo=tailwindcss&logoColor=white" alt="tailwindcss_icon"> <img src="https://img.shields.io/badge/React-61DAFB?logo=react&logoColor=white" alt="react_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/advice-generator-app-QdUG-13db">💾 Challenge</a></p> <p><a href="">📨 Submission</a></p> <p><a href="">👨‍💻 My_Code</a></p> <p><a href="">🖥️ Preview</a></p> </details> </td> <td>Aug 14th, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> <li>ReactJS</li> </ul> </details> </td> <td>#2</td> </tr> <tr> <td>QR Code Component</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> <img src="https://img.shields.io/badge/JavaScript-black?logo=javascript&logoColor=yellow" alt="javascript_icon"> <img src="https://img.shields.io/badge/Tailwind_CSS-06B6D4?logo=tailwindcss&logoColor=white" alt="tailwindcss_icon"> <img src="https://img.shields.io/badge/React-61DAFB?logo=react&logoColor=white" alt="react_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/qr-code-component-iux_sIO_H">💾 Challenge</a></p> <p><a href="">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges-react/tree/main/qr-code-component/my-react-work-v1">👨‍💻 My_Code</a></p> <p><a href="">🖥️ Preview</a></p> </details> </td> <td>Aug 14th, 2023</td> <td> <details> <summary> 📝</summary> <ul> <br> <li>ReactJS</li> </ul> </details> </td> <td>#3</td> </tr> <tr> <td>Profile Card Component</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> <img src="https://img.shields.io/badge/SCSS-CC6699?logo=sass&logoColor=white" alt="scss_icon"> <img src="https://img.shields.io/badge/Tailwind_CSS-06B6D4?logo=tailwindcss&logoColor=white" alt="tailwindcss_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/profile-card-component-cfArpWshJ">💾 Challenge</a></p> <p><a href="">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/profile-card-component/my-work-v2-tailwindcss">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/profile-card-component/my-work-v2-tailwindcss/index.html">🖥️ Preview</a></p> </details> </td> <td>Aug 13th, 2023</td> <td> <details> <summary> 📝</summary> <ul> <br> <li></li> </ul> </details> </td> <td>#2</td> </tr> <tr> <td>Rock, Paper, Scissors Game</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> <img src="https://img.shields.io/badge/JavaScript-black?logo=javascript&logoColor=yellow" alt="javascript_icon"> <img src="https://img.shields.io/badge/SCSS-CC6699?logo=sass&logoColor=white" alt="scss_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/rock-paper-scissors-game-pTgwgvgH">💾 Challenge</a></p> <p><a href="">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/rock-paper-scissors/my-work">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/rock-paper-scissors/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Aug 11th, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> <li>animations</li> <li>transition</li> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>Expenses Chart Component</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> <img src="https://img.shields.io/badge/JavaScript-black?logo=javascript&logoColor=yellow" alt="javascript_icon"> <img src="https://img.shields.io/badge/SCSS-CC6699?logo=sass&logoColor=white" alt="scss_icon"> <img src="https://img.shields.io/badge/JSON-000000?logo=json&logoColor=white" alt="scss_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/expenses-chart-component-e7yJBUdjwt">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/expenses-chart-component-7HFSNcqBMS">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/expenses-chart-component/my-work">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/expenses-chart-component/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Aug 11th, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> <li>ChartJS</li> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>3 Column Preview Card Component</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> <img src="https://img.shields.io/badge/SCSS-CC6699?logo=sass&logoColor=white" alt="scss_icon"> <img src="https://img.shields.io/badge/Tailwind_CSS-06B6D4?logo=tailwindcss&logoColor=white" alt="tailwindcss_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/3column-preview-card-component-pH92eAR2-">💾 Challenge</a></p> <p><a href="">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/3-column-preview-card-component/my-work-v2-tailwindcss">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/3-column-preview-card-component/my-work-v2-tailwindcss/index.html">🖥️ Preview</a></p> </details> </td> <td>Aug 8th, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> <li>tailwindcss</li> </ul> </details> </td> <td>#2</td> </tr> <tr> <td>IP Address Tracker</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> <img src="https://img.shields.io/badge/JavaScript-black?logo=javascript&logoColor=yellow" alt="javascript_icon"> <img src="https://img.shields.io/badge/SCSS-CC6699?logo=sass&logoColor=white" alt="scss_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/ip-address-tracker-I8-0yYAH0">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/ip-address-tracker-RkmcuoFlxl">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/ip-address-tracker/my-work">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/ip-address-tracker/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Aug 7th, 2023</td> <td> <details> <summary> 📝</summary> <ul> <br> <li>Leaflet-Library</li> <li>Geo Ipify</li> <li>nth-of-type()</li> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>Fylo Dark Theme Landing Page</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> <img src="https://img.shields.io/badge/JavaScript-black?logo=javascript&logoColor=yellow" alt="javascript_icon"> <img src="https://img.shields.io/badge/SCSS-CC6699?logo=sass&logoColor=white" alt="scss_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/fylo-dark-theme-landing-page-5ca5f2d21e82137ec91a50fd">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/fylo-dark-theme-landing-page-NxcaRtrhLs">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/fylo-dark-theme-landing-page/my-work">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/fylo-dark-theme-landing-page/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Aug 5th, 2023</td> <td> <details> <summary> 📝</summary> <ul> <br> <li>scss</li> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>Interactive Rating Component</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> <img src="https://img.shields.io/badge/JavaScript-black?logo=javascript&logoColor=yellow" alt="javascript_icon"> <img src="https://img.shields.io/badge/SCSS-CC6699?logo=sass&logoColor=white" alt="scss_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/interactive-rating-component-koxpeBUmI">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/interactive-rating-component-using-sassscss-FpQcumQJXM">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/interactive-rating-component/my-work-v2-sass">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/interactive-rating-component/my-work-v2-sass/index.html">🖥️ Preview</a></p> </details> </td> <td>Aug 1st, 2023</td> <td> <details> <summary> 📝</summary> <ul> <br> <li>scss</li> </ul> </details> </td> <td>#2</td> </tr> <tr> <td>QR Code Component</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> <img src="https://img.shields.io/badge/SCSS-CC6699?logo=sass&logoColor=white" alt="scss_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/qr-code-component-iux_sIO_H">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/qr-code-component-using-scss-IM83KoTJDG">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/qr-code-component/my-work-v2-sass">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/qr-code-component/my-work-v2-sass/index.html">🖥️ Preview</a></p> </details> </td> <td>Jul 31st, 2023</td> <td> <details> <summary> 📝</summary> <ul> <br> <li>scss</li> </ul> </details> </td> <td>#2</td> </tr> <tr> <td>Tip Calculator App</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> <img src="https://img.shields.io/badge/JavaScript-black?logo=javascript&logoColor=yellow" alt="javascript_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/tip-calculator-app-ugJNGbJUX">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/tip-calculator-app-s83BB2jDXr">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/tip-calculator-app/my-work">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/tip-calculator-app/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Jul 30th, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> <li>button:disabled</li> <li>textbox-outline</li> <li>regex</li> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>Advice Generator App</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> <img src="https://img.shields.io/badge/JavaScript-black?logo=javascript&logoColor=yellow" alt="javascript_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/advice-generator-app-QdUG-13db">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/advice-generator-app-POlPklQasY">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/advice-generator-app/my-work">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/advice-generator-app/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Jul 27th, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> <li>api-access</li> <li>button:disabled</li> <li>cursor:none-allowed</li> <li>setTimeout</li> <li>rotate</li> <li>transform</li> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>Age Calculator App</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> <img src="https://img.shields.io/badge/JavaScript-black?logo=javascript&logoColor=yellow" alt="javascript_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/age-calculator-app-dF9DFFpj-Q">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/age-calculator-app-8b0ZHnNRAr">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/age-calculator-app/my-work">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/age-calculator-app/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Jul 23rd, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> <li>localstorage</li> <li>:focus</li> <li>outline:none</li> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>Single Price Grid Component</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/single-price-grid-component-5ce41129d0ff452fec5abbbc">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/single-price-grid-component-Z4vMDh1uSW">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/single-price-grid-component/my-work">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/single-price-grid-component/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Jul 17th, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> <li></li> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>Four Card Feature Section</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/four-card-feature-section-weK1eFYK">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/four-card-feature-section--oQiA0MbvB">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/four-card-feature-section/my-work">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/four-card-feature-section/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Jul 16th, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> <li></li> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>News Homepage</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> <img src="https://img.shields.io/badge/JavaScript-black?logo=javascript&logoColor=yellow" alt="javascript_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/news-homepage-H6SWTa1MFl">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/news-homepage-Z5PzicRyH6">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/news-homepage/my-work">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/news-homepage/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Jul 14th, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> <li>navbar-overlay</li> <li>CSS NESTING</li> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>Social Proof Section</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/social-proof-section-6e0qTv_bA">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/social-proof-section-FOXXl7AMZE">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/social-proof-section/my-work">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/social-proof-section/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Jul 11th, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> <li>annoying diagonal layout</li> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>Fylo Data Storage Component</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/fylo-data-storage-component-1dZPRbV5n">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/fylo-data-storage-component-9keEWaAQjz">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/fylo-data-storage-component/my-work">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/fylo-data-storage-component/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Jul 7th, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> <li>background-position: bottom 0px right 0px;</li> <li>progress bar</li> <li>postion:relative</li> <li>position:absolute</li> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>Time Tracking Dashboard</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> <img src="https://img.shields.io/badge/JavaScript-black?logo=javascript&logoColor=yellow" alt="javascript_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/time-tracking-dashboard-UIQ7167Jw">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/time-tracking-dashboard-sxlo8TfAxh">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/time-tracking-dashboard/my-work">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/time-tracking-dashboard/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Jul 6th, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> <li>css-grid</li> <li>top:</li> <li>right:</li> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>Testimonials Grid Section</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/testimonials-grid-section-Nnw6J7Un7">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/testimonials-grid-section-css-grid-qowee5U_uf">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/testimonials-grid-section/my-work">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/testimonials-grid-section/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Jul 3rd, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> <li>css-grid</li> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>Article Preview Component</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> <img src="https://img.shields.io/badge/JavaScript-black?logo=javascript&logoColor=yellow" alt="javascript_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/article-preview-component-dYBN_pYFT">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/article-preview-component-8AC3WxuhNz">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/article-preview-component/my-work">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/article-preview-component/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Jul 1st, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> <li>triangle-shape-made-using-border</li> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>Newsletter Sign-up Form With Success Message</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> <img src="https://img.shields.io/badge/JavaScript-black?logo=javascript&logoColor=yellow" alt="javascript_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/newsletter-signup-form-with-success-message-3FC1AZbNrv">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/newsletter-signup-form-with-success-message-_1HqFFvXBf">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/newsletter-sign-up-with-success-message/my-work">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/newsletter-sign-up-with-success-message/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Jul 1st, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> <li>linear-gradient(to right,,)</li> <li>email-regex</li> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>Faq Accordion Card</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/faq-accordion-card-XlyjD0Oam">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/faq-accordion-card-pure-html-and-css-no-js-x32Gj2HTI0">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/faq-accordion-card/my-work">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/faq-accordion-card/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Jun 30th, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> <li>transform:rotate(-180deg)</li> <li>min-height</li> <li>summary::-webkit-details-marker</li> <li>[open]</li> <li>customizing details & summary</li> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>Stats Preview Card Component</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/stats-preview-card-component-8JqbgoU62">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/stats-preview-card-component-GbuSpqg7Vg">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/stats-preview-card-component/my-work">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/stats-preview-card-component/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Jun 16th, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> <li>"curtain" mechanic</li> <li>mix-blend-mode</li> <li>content:url()</li> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>NFT Preview Card Component</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/nft-preview-card-component-SbdUL_w0U">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/nft-preview-card-component-ZoPootN-vz">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/nft-preview-card-component/my-work">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/nft-preview-card-component/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Jun 14th, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> <li>"curtain" mechanic</li> <li>gradient overlay on hover</li> <li>"inset: 0"</li> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>Product Preview Card Component</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/product-preview-card-component-GO7UmttRfa">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/product-preview-card-component-XUeCFaM_c7">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/product-preview-card-component/my-work">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/product-preview-card-component/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Jun 13th, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> <li></li> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>3 Column Preview Card Component</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/3column-preview-card-component-pH92eAR2-">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/3-colum-preview-card-component-bx04fR0CV3">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/3-column-preview-card-component/my-work">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/3-column-preview-card-component/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Jun 12th, 2023</td> <td> <details> <summary> 📝 </summary> <ul> <br> <li>background-color:rgba(0,0,0,0)</li> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>Results Summary Component</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/results-summary-component-CE_K6s0maV">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/results-summary-component-ei-KIkDlH6">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/results-summary-component">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/results-summary-component/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Jun 11th, 2023</td> <td> <details> <summary> 📝</summary> <ul> <br> <li>gradient-backgrounds</li> <li>working-with-2column-format</li> <li>postion:relative</li> <li>@media(max-width: 720px)</li> <li>horizontal centering</li> <li>vertical centering</li> <li>display:flex</li> <li>flex-direction:column</li> <li>justify-content:center</li> <li>align-items:center</li> <li>min-height:100vh</li> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>Profile Card Component</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/profile-card-component-cfArpWshJ">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/profile-card-component-xUxpY2QYRd">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/profile-card-component">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/profile-card-component/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Jun 10th, 2023</td> <td> <details> <summary> 📝</summary> <ul> <br> <li>postion:relative</li> <li>top:-55px</li> <li>background-image:url(),url()</li> <li>background-position:</li> <li>horizontal centering</li> <li>vertical centering</li> <li>display:flex</li> <li>flex-direction:column</li> <li>justify-content:center</li> <li>align-items:center</li> <li>min-height:100vh</li> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>Order Summary Component</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/order-summary-component-QlPmajDUj">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/order-summary-component-WE31xQiACv">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/order-summary-component">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/order-summary-component/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Jun 9th, 2023</td> <td> <details> <summary> 📝</summary> <ul> <br> <li>background-image:url()</li> <li>background-repeat:no-repeat</li> <li>background-size:contain</li> <li>@media(max-width: 720px)</li> <li>horizontal centering</li> <li>vertical centering</li> <li>display:flex</li> <li>flex-direction:column</li> <li>justify-content:center</li> <li>align-items:center</li> <li>min-height:100vh</li> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>Interactive Rating Component</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> <img src="https://img.shields.io/badge/JavaScript-black?logo=javascript&logoColor=yellow" alt="javascript_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/interactive-rating-component-koxpeBUmI">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/interactive-rating-component-rtYk-cl4oF">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/interactive-rating-component">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/interactive-rating-component/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Jun 8th, 2023</td> <td> <details> <summary> 📝</summary> <ul> <br> <li>justify-content:space-between</li> <li>display:none</li> <li>horizontal centering</li> <li>vertical centering</li> <li>display:flex</li> <li>flex-direction:column</li> <li>justify-content:center</li> <li>align-items:center</li> <li>min-height:100vh</li> </ul> </details> </td> <td>#1</td> </tr> <tr> <td>QR Code Component</td> <td> <img src="https://img.shields.io/badge/HTML5-E34F26?logo=html5&logoColor=white" alt="html_icon"> <img src="https://img.shields.io/badge/CSS3-1572B6?logo=css3&logoColor=white" alt="css_icon"> </td> <td> <details> <summary>🔗</summary> <br> <p><a href="https://www.frontendmentor.io/challenges/qr-code-component-iux_sIO_H">💾 Challenge</a></p> <p><a href="https://www.frontendmentor.io/solutions/qr-code-component--5WXBrWYG6">📨 Submission</a></p> <p><a href="https://github.com/Zy8712/frontend-mentor-challenges/tree/main/qr-code-component">👨‍💻 My_Code</a></p> <p><a href="https://frontend-mentor-challenges-pi-sage.vercel.app/qr-code-component/my-work/index.html">🖥️ Preview</a></p> </details> </td> <td>Jun 5th, 2023</td> <td> <details> <summary> 📝</summary> <ul> <br> <li>horizontal centering</li> <li>vertical centering</li> <li>display:flex</li> <li>justify-content:center</li> <li>align-items:center</li> <li>min-height:100vh</li> </ul> </details> </td> <td>#1</td> </tr> </table> <br> # challenge preview screenshots provided <details> <summary>Ping Coming Soon Page</summary> <br> <img src="./ping-coming-soon-page/my-work/design/desktop-preview.jpg"> </details> <details> <summary>Clipboard Landing Page</summary> <br> <img src="./clipboard-landing-page/my-work/design/desktop-preview.jpg"> </details> <details> <summary>Room Homepage</summary> <br> <img src="./room-homepage/my-work/design/desktop-preview.jpg"> </details> <details> <summary>Huddle Landing Page with Alternating Feature Blocks</summary> <br> <img src="./huddle-landing-page-with-alternating-feature-blocks/my-work/design/desktop-preview.jpg"> </details> <details> <summary>Rock, Paper, Scissors Game</summary> <br> <img src="./rock-paper-scissors/my-work/design/desktop-preview.jpg"> </details> <details> <summary>Expenses Chart Component</summary> <br> <img src="./expenses-chart-component/my-work/design/desktop-preview.jpg"> </details> <details> <summary>IP Address Tracker</summary> <br> <img src="./ip-address-tracker/my-work/design/desktop-preview.jpg"> </details> <details> <summary>Fylo Dark Theme Landing Page</summary> <br> <img src="./fylo-dark-theme-landing-page/my-work/design/desktop-preview.jpg"> </details> <details> <summary>Tip Calculator App</summary> <br> <img src="./tip-calculator-app/my-work/design/desktop-preview.jpg"> </details> <details> <summary>Advice Generator App</summary> <br> <img src="./advice-generator-app/my-work/design/desktop-preview.jpg"> </details> <details> <summary>Age Calculator App</summary> <br> <img src="./age-calculator-app/my-work/design/desktop-preview.jpg"> </details> <details> <summary>Single Price Grid Component</summary> <br> <img src="./single-price-grid-component/my-work/design/desktop-preview.jpg"> </details> <details> <summary>Four Card Feature Section</summary> <br> <img src="./four-card-feature-section/my-work/design/desktop-preview.jpg"> </details> <details> <summary>News Homepage</summary> <br> <img src="./news-homepage/my-work/design/desktop-preview.jpg"> </details> <details> <summary>Social Proof Section Preview</summary> <br> <img src="./social-proof-section/my-work/design/desktop-preview.jpg"> </details> <details> <summary>Fylo Data Storage Component Preview</summary> <br> <img src="./fylo-data-storage-component/my-work/design/desktop-preview.jpg"> </details> <details> <summary>Time Tracking Dashboard Preview</summary> <br> <img src="./time-tracking-dashboard/my-work/design/desktop-preview.jpg"> </details> <details> <summary>Testimonials Grid Section Preview</summary> <br> <img src="./testimonials-grid-section/my-work/design/desktop-preview.jpg"> </details> <details> <summary>Article Preview Component Preview</summary> <br> <img src="./article-preview-component/my-work/design/desktop-preview.jpg"> </details> <details> <summary>Newsletter Signup With Success Message Preview</summary> <br> <img src="./newsletter-sign-up-with-success-message/my-work/design/desktop-preview.jpg"> </details> <details> <summary>Faq Accordion Card Preview</summary> <br> <img src="./faq-accordion-card/my-work/design/desktop-preview.jpg"> </details> <details> <summary>Stats Preview Card Component Preview</summary> <br> <img src="./stats-preview-card-component/my-work/design/desktop-preview.jpg"> </details> <details> <summary>NFT Preview Card Component Preview</summary> <br> <img src="./nft-preview-card-component/my-work/design/desktop-preview.jpg"> </details> <details> <summary>Product Preview Card Component Preview</summary> <br> <img src="./product-preview-card-component/my-work/design/desktop-preview.jpg"> </details> <details> <summary>3 Column Preview Card Component Preview</summary> <br> <img src="./3-column-preview-card-component/my-work/design/desktop-preview.jpg"> </details> <details> <summary>Results Summary Component Preview</summary> <br> <img src="./results-summary-component/my-work/design/desktop-preview.jpg"> </details> <details> <summary>Profile Card Component Preview</summary> <br> <img src="./profile-card-component/my-work/design/desktop-preview.jpg"> </details> <details> <summary>Order Summary Component Preview</summary> <br> <img src="./order-summary-component/my-work/design/desktop-preview.jpg"> </details> <details> <summary>Interactive Rating Component Preview</summary> <br> <img src="./interactive-rating-component/my-work/design/desktop-preview.jpg"> </details> <details> <summary>QR Code Component Preview</summary> <br> <img src="./qr-code-component/my-work/design/desktop-preview.jpg"> </details>
Repo containing all my completed Frontend Mentor projects using no JS Frameworks. View all works on my custom directory here: https://frontend-mentor-challenges-pi-sage.vercel.app/
css,css3,html,html-css-javascript,javascript,bootstrap,bootstrap5,front-end-development,frontend,js
2023-05-23T16:42:19Z
2024-04-09T03:57:39Z
null
1
1
123
0
0
2
null
null
JavaScript
albertho206/currency-app
main
# Currency converter and currency dashboard A currency web app that shows currency results, fluctuation (amount and percentage change), historical data, graphs, and a dashboard. Built with exchange rate API and Bootstrap front end framework. ## World currencies relative to USD <img width="1920" alt="currency-home" src="https://github.com/maplesyrupweb/browser-sync/assets/73809301/bf3773da-20d6-49d4-8c0f-580b669bb811"> ## Left-hand side navigation menu <img width="1920" alt="currency-home-nav" src="https://github.com/maplesyrupweb/browser-sync/assets/73809301/c4ae2a77-63e8-4377-a07b-1b846d1487f1"> ## Mobile navigation menu <img width="378" alt="currency-mobile-nav" src="https://github.com/maplesyrupweb/browser-sync/assets/73809301/6cfde865-126e-4b5d-a8a4-746dcbb13eab"> ## See how much change there has been between two currencies at a specified date <img width="380" alt="currency-fluctuation-mobile" src="https://github.com/maplesyrupweb/browser-sync/assets/73809301/93e36784-057f-4e96-895f-c55dedd4582b"> ## See the graph of a currency exchange on a time interval in the past <img width="379" alt="currency-mobile-graph" src="https://github.com/maplesyrupweb/browser-sync/assets/73809301/50bc0918-7b6c-4cc2-9f73-a20a8f357a54">
A currency web app that shows currency results, fluctuation, historical data, and more.
bootstrap,currency,javascript,api
2023-05-19T23:44:02Z
2023-06-22T01:08:41Z
null
1
0
36
2
0
2
null
null
HTML
aman9267/MultiMart-Ecommerce
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.
Ecommerce Website
css,html,reactjs,javascript,bootstrap,redux,remixicons
2023-05-22T05:43:57Z
2023-05-27T17:27:37Z
null
2
8
31
0
0
2
null
null
JavaScript
Krayno/personal-website
master
# A Responsive Personal Website A Responsive Personal Website made using pure HTML, CSS and Javascript. ## Details Built using node.js with Visual Studio Code. The Javascript was written in TypeScript. When building, it's processed by Babel to be ES5 compatabile then processed again by Webpack. ### Main Features - Two Themes, Dark Theme and Light Theme. - Blog page with Archive page. - Project page. ### Javascript Features - Theme memorisation. - Theme toggling if OS changes theme. - Theme toggle with a button. - Buttons shrink on click and and expand on mouse up. Feel free to use this website for your own personal use and modify it to your liking. ## How To Develop And Build With The Project I highly recommend that you build the project using **node.js** as I have simplified the build process to a node.js command. It is still possible to build outside of node.js though. Steps To Develop: 1. Extract .zip that you downloaded from this repository. 2. Open the project in Visual Studio Code. 3. Open a terminal in Visual Studio Code and run the command ```npm run dev``` 4. Open your preferred development server for live changes, I recommend using the Visual Studio Code Live Server Plugin. Steps To Build: 1. Open the project in Visual Studio Code. 2. Open a terminal in Visual Studio Codee and run the command ```npm run build``` The project will then build using the files that are in .//src/ folder and output the processed files to the ./dist/ folder. ## Images - Dark Theme About Me Page ![darktheme-about-me](https://github.com/Krayno/personal-website/assets/48147112/ecfea679-8fed-4a35-89e6-27fa2f944362) Blog Page - New Posts ![darktheme-blog](https://github.com/Krayno/personal-website/assets/48147112/ab0e2882-3789-40de-855c-cfc489262a5d) Blog Page - Archive ![Blog-Archive](https://github.com/Krayno/personal-website/assets/48147112/803a880a-f38f-464e-a7c5-adfc26b48f41) Blog Page - Blog Post ![darktheme-blog-post](https://github.com/Krayno/personal-website/assets/48147112/46d94457-b15b-4d6c-bd49-7652cb017dfe) Projects Page ![Projects](https://github.com/Krayno/personal-website/assets/48147112/56390c3a-03fc-47fb-9592-d2db0f0e9834) ## Images - Light Theme About Me Page ![lighttheme-about-me](https://github.com/Krayno/personal-website/assets/48147112/30a6c593-7451-473a-8de4-fca5b592c257) Blog Page - New Posts ![lighttheme-blog-new-posts](https://github.com/Krayno/personal-website/assets/48147112/5a362ec5-b4ea-4d8f-a1ce-8a3ceededae8) Blog Page - Blog Post ![lighttheme-blog-post](https://github.com/Krayno/personal-website/assets/48147112/21bf9e75-e4ed-4e36-9b1f-b9af404ff459) Blog Page - Archive ![image (2)](https://github.com/Krayno/personal-website/assets/48147112/036adaaa-35d4-4ac5-b59d-3c12e7b1c339) Projects Page ![image (3)](https://github.com/Krayno/personal-website/assets/48147112/059ad408-311b-4fbc-8eff-b2953ddcbd72)
A Responsive Personal Website
css,html,javascript,personal,typescript,website
2023-05-17T01:29:53Z
2023-06-05T13:58:09Z
null
1
0
19
0
0
2
null
null
HTML
L4CTOSE/Roblox-Alt-Generator
main
# Roblox Alt Generator Extension This Open Source Chrome Extension will allow you to generate Roblox Accounts quickly. Works on Chrome and Edge.</br> This extension also automatically copies all usernames onto the clipboard so that you can quickly paste it into notepad for bulk generation! </br> # Password Generation Passwords are 2x the useranmes. For example, if the randomly generated username is "H3LL0", then the password would be "H3LL0H3LL0" </br>
Open Source Manifest V2 Chrome Extension to Generate Roblox Alt Accounts Quickly. Created by L4CTOSE
alt,alt-gen,alt-generator,roblox,roblox-api,roblox-cheat,roblox-hack,roblox-script,roblox-alt,roblox-alt-gen
2023-05-30T15:16:26Z
2023-05-31T01:38:44Z
null
1
0
14
1
2
2
null
null
JavaScript
IgorLebedev/Chat
main
# Chat --- ### Hexlet tests and linter status:: [![Actions Status](https://github.com/IgorLebedev/frontend-project-12/workflows/hexlet-check/badge.svg)](https://chat-project.up.railway.app) --- ### Description Simplified version of Slack chat. You can register, login and chat, interact with channels(add, remove, rename). Check via link below. #### [LINK](https://frontend-project-12-production-5501.up.railway.app/) --- ### Requirements * Node.js version v.18.12.1 or later * GNU Make version 4.2.1 or later --- ### Clone and run locally 1. Clone project git clone git@github.com:IgorLebedev/Chat.git 2. Install dependencies make install 3. Run locally make start
Simple chat
bootstrap,formik,i18n,javascript,react,react-router,redux-toolkit,socket-io,yup
2023-05-17T10:55:15Z
2023-06-08T06:12:08Z
null
1
0
130
0
0
2
null
null
JavaScript
Sarita-16/Portfolio_Website
main
null
Portfolio
css3,html5,javascript
2023-06-01T19:40:12Z
2023-09-30T21:18:05Z
null
1
0
31
0
0
2
null
null
CSS
wastech/Headless-Commerce-API
main
# Headless commerce API <p>Headless commerce API is a Node.js-based solution developed with NestJS, JWT (JSON Web Tokens), and MongoDB. It provides a streamlined and decoupled approach for building e-commerce applications by separating the front-end presentation layer from the back-end commerce functionalities. This API enables seamless integration with various front-end frameworks, allowing developers to create flexible and personalized e-commerce experiences while leveraging the power of MongoDB for efficient data storage and retrieval</p> ## Features - User Management: - User registration and authentication using JWT - User profile management - Role-based access control (admin, customer, etc.) - Product Management: - CRUD operations for products (create, read, update, delete) - Product categorization and filtering - Product search and sorting - Product inventory management - Order Management: - Create and process orders - Order history and status tracking - Generate order invoices and receipts - Shipping and billing address management - Payment Integration: Coming Soon - Reviews and Ratings: - Allow customers to submit product reviews and ratings - Average rating calculation for products - Review moderation and approval process - Wishlist: Coming soon - Analytics and Reporting: Coming soon - Localization and Internationalization: - API Documentation and Testing: - Generate comprehensive API documentation (e.g., using Swagger) - Unit testing and integration testing of API endpoints ## Installation ```bash $ npm install ``` ## Running the app ```bash # development $ npm run start # watch mode $ npm run start:dev # production mode $ npm run start:prod ``` ## Test ```bash # unit tests $ npm run test # e2e tests $ npm run test:e2e # test coverage $ npm run test:cov ``` ## Support Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please [read more here](https://docs.nestjs.com/support). ## Stay in touch - Author - [Kamil Myśliwiec](https://kamilmysliwiec.com) - Website - [https://nestjs.com](https://nestjs.com/) - Twitter - [@nestframework](https://twitter.com/nestframework) ## License Nest is [MIT licensed](LICENSE).
Scalable and versatile API for decoupled front-end and back-end commerce functionality.
bcrypt,javascript,mongodb,mongoose-schema,nestjs-backend,nodejs,passport-jwt,restful-api,typescript
2023-05-23T09:55:10Z
2023-09-19T17:18:14Z
null
1
5
41
0
0
2
null
null
TypeScript
christianbmartinez/marsmadness
main
[![Netlify Status](https://api.netlify.com/api/v1/badges/a47afbd4-449f-40b6-b1aa-111cdb71571f/deploy-status)](https://app.netlify.com/sites/starlit-mermaid-2652a3/deploys) ![alt text](https://github.com/christianbmartinez/marsmadness/blob/main/marsappimg.jpg) # MarsMadness MarsMadness was created to allow anyone to get an actual photo from the Mars rover on a date of their choice. The photo is selected randomly from all of the available photos from all of the available cameras on the rover that were taken on that day. This is accomplished using NASA's free Mars Rover Photos API. In addition to this you'll be given a fun fact about the planet. This provides a simple to use and fun way to learn about our neighbor planet - where we may be sending people in the near future! In addition to the information about mars we wanted to see what other API's were out there that could provide information about other objects in our solar system that would allow us to line up the dates. We were able to find a free API that would give you an image of the moon's phase for that day. We chose to follow along with the theme and present the user. ## Table of Contents - [Project Description](#project-description) - [Features](#features) - [APIs](#APIs) - [Deployed Application](#deployed-application) - [Sources](#Sources) ## Project Description When the user loads the page they are presented with a screen that has a date picker and a background image of the planet mars. The user can then pick a date from now all the way back to the date when we started recieving images from the mars rover, 08/2012. Once the user has selected their date they will then be presented with 6 images from one of the mars rovers that were taken on that day - This is accomplished using the mars rover API. With these images they will be given a fun fact about our neighboring planet. They will also be presented with an image of what our moon looked like on that same day. We have added a fun fact about our moon to display with the image we pulled from our moon phase API. ## Features - A date picker that the user can easily interact with and make a request for the chosen date. ## APIs For our first API we used NASA's Mars rover image API to find out more about this API and many others that NASA has available please visit: https://api.nasa.gov/ or the API's github page: https://github.com/corincerami/mars-photo-api For our second API we used a free moon phase API. For more information on how to use and access this API visit: https://docs.astronomyapi.com/endpoints/studio/moon-phase ## Deployed Application To view the Project's source code visit the repository on Github: https://github.com/christianbmartinez/marsmadness View the app [live](https://starlit-mermaid-2652a3.netlify.app/) ![App Gif](./assets/CleanShot%202023-06-05%20at%2018.26.06.gif) ## Sources this was a collaborative project built by: - [Christian Martinez](https://github.com/christianbmartinez) - [Brandon Mountan](https://github.com/brandonmountan) - [Collin Haws](https://github.com/CHawsCoding) - [Nate Keste](https://github.com/imdawizard) some external sources we used to create the code: * [MDN docs to help with the facts displaying over the mars images](https://www.w3docs.com/snippets/css/how-to-display-an-animated-text-over-an-image-on-hover-using-only-css3.html)
A mars and moon app project as part of the U of U's coding bootcamp
css,html,javascript,nasaapi
2023-05-25T01:30:09Z
2023-06-06T00:38:32Z
null
4
20
90
18
0
2
null
null
JavaScript
DanielEmidio1988/athena
master
# Athena ## 📖 Introdução A Athena é uma plataforma web inovadora que possui uma gama de materiais e mentores de tecnologia. Com o objetivo de proporcionar suporte e aprendizado a pessoas com deficiência cognitivas ou neurodivergências, bem como a qualquer pessoa interessada em adquirir conhecimentos tecnológicos. Além disso, também ter materiais de aprendizado em tecnologia disponíveis para aqueles que queiram usar e compartilhar com outras pessoas. ## 🔗Link de Acesso - Deploy Vercel: [clique aqui!](https://athena-jet.vercel.app/) - Layout Figma: [clique aqui!](https://www.figma.com/file/0qSn6LRizzOON0A4fd65qh/HACKA?type=design&node-id=41-40&t=4SemDPvhUNNLc40W-0) ## 👥Equipe | [<img src="https://avatars.githubusercontent.com/u/111311678?v=4" width=115><br><sub>Daniel Emidio<br>Tecnologia</sub>](https://www.linkedin.com/in/danielemidio1988/) |[<img src="https://media.licdn.com/dms/image/D4D03AQEUirpW3r28oA/profile-displayphoto-shrink_400_400/0/1681352083998?e=1691020800&v=beta&t=Z_HJqWceOg-NDpw1VgFkWY6IZ6073NlPeiKF2Bl-YXg" width=115><br><sub>Luis Vinicius<br>Tecnologia e Negócios</sub>](https://www.linkedin.com/in/luislauriano) |[<img src="https://media.licdn.com/dms/image/D4E03AQGYhgFSRXDUtQ/profile-displayphoto-shrink_400_400/0/1684946682286?e=1691020800&v=beta&t=xfKZTHwUFGUQRdcH3Uh8zl6ikaHCwxmAqKtrglJXE-g" width=115><br><sub>Emmanuel Leon<br>Negócios e Inovação</sub>](https://www.linkedin.com/in/leonhc/) |[<img src="https://media.licdn.com/dms/image/C4E03AQFldv1ImWp3xA/profile-displayphoto-shrink_400_400/0/1573611204093?e=1691020800&v=beta&t=ZJQNEm3f1927IEWlrKSCdgtARP8cCeZd7veuj5R5SaU" width=115><br><sub>Gabriella Graciano<br>UX Design</sub>](https://www.linkedin.com/in/gabygraciano/) |[<img src="https://media.licdn.com/dms/image/C4D03AQGhqCj3w7K1gw/profile-displayphoto-shrink_400_400/0/1616780962904?e=1691020800&v=beta&t=1vP2lo_42Fyb8XdQ1lcyv2ly_c9VLQUQQPJ-Ou1jFNY" width=115><br><sub>Felipe Ribeiro<br>Negócios e Inovação</sub>](https://www.linkedin.com/in/fgribeiro/) | | :---: |:---: |:---: |:---: |:---: | ## 🧭Status do Projeto - ⏳Concluído ## 📄Concepção do Projeto ## Fluxograma do Projeto | <img src="./src/assets/athenafluxograma.svg" width=400><br><sub>Fluxograma</sub> | | :---: | ### Instalando - Abra o terminal GitBash e clone o link deste repositório; - Ainda dentro do terminal, insira o comando abaixo: ```bash # Instalando dependências npm install # executando o projeto no navegador npm start ``` ### Bibliotecas Utilizadas ```bash react-router-dom styled-components ``` ## 💡Programas utilizados: - VSCode ## 💻Tecnologias ![CSS](https://img.shields.io/badge/CSS3-1572B6?style=for-the-badge&logo=css3&logoColor=white) ![HTML](https://img.shields.io/badge/HTML5-E34F26?style=for-the-badge&logo=html5&logoColor=white) ![Javascript](https://img.shields.io/badge/JavaScript-323330?style=for-the-badge&logo=javascript&logoColor=F7DF1E) ![React](https://img.shields.io/badge/React-20232A?style=for-the-badge&logo=react&logoColor=61DAFB) ![React Router](https://img.shields.io/badge/React_Router-CA4245?style=for-the-badge&logo=react-router&logoColor=white) ![Styled-Components](https://img.shields.io/badge/styled--components-DB7093?style=for-the-badge&logo=styled-components&logoColor=white) ![Git](https://img.shields.io/badge/GIT-E44C30?style=for-the-badge&logo=git&logoColor=white)
A Athena é uma plataforma web inovadora que possui uma gama de materiais e mentores de tecnologia. Com o objetivo de proporcionar suporte e aprendizado a pessoas com deficiência cognitivas ou neurodivergências, bem como a qualquer pessoa interessada em adquirir conhecimentos tecnológicos.
html5,javascript,reactjs,styled-components
2023-05-27T21:27:16Z
2023-06-08T18:32:19Z
null
1
0
15
0
2
2
null
null
JavaScript
edofransisco011/Youtube-Project
main
null
Youtube Project with React and Youtube API
axios,javascript,reactjs,youtube-api
2023-05-22T05:05:46Z
2023-05-22T05:06:34Z
null
1
0
7
0
0
2
null
null
JavaScript
gdsc-um/homesite
main
# GDSC Universitas Negeri Malang Homesite [![Test](https://github.com/GDSC-UM-Indonesia/nextjs_finalproject/actions/workflows/tests.yml/badge.svg)](https://github.com/GDSC-UM-Indonesia/nextjs_finalproject/actions/workflows/tests.yml) ## Tentang GDSC Universitas Negeri Malang Homesite adalah sebuah website yang dibuat untuk memenuhi tugas akhir dari kegiatan GDSC Universitas Negeri Malang. Website ini dibuat dengan menggunakan framework Next.js dan Tailwind CSS. Website ini dibuat dengan tujuan untuk memperkenalkan GDSC Universitas Negeri Malang kepada masyarakat umum. Selain sebagai media untuk memperkenalkan GDSC Universitas Negeri Malang, website ini juga dapat digunakan sebagai media untuk mengakses informasi terkait GDSC Universitas Negeri Malang. ## How to run ### Pre-requisite - Node.js versi 18 (LTS saat ini) - NPM versi 7 (LTS saat ini) ### Cara menjalankan 1. Clone repositori ini dengan perintah `git clone https://github.com/GDSC-UM-Indonesia/nextjs_finalproject.git` 2. Install dependencies dengan perintah `npm install` 3. Rename file `.env.example` menjadi `.env` 4. Ambil informasi `.env` dari admin atau tim technical website GDSC Universitas Negeri Malang 5. Jalankan aplikasi dengan perintah `npm run dev` ## Lisensi Dokumentasi aplikasi ini di folder `asset`, `public`, `post`, `quizzes` dan `data` dilisensikan di bawah lisensi CC-BY-SA 4.0. Semua kode lain di repositori ini dilisensikan di bawah lisensi MIT. ## Sponsors [![Powered by Vercel](https://www.datocms-assets.com/31049/1618983297-powered-by-vercel.svg)](https://vercel.com?utm_source=gdsc-um&utm_campaign=oss)
Google Developer Student Clubs Chapter State University of Malang Website
landing-page,javascript,nextjs,tailwindcss
2023-05-27T12:04:57Z
2023-07-11T02:59:38Z
null
8
35
141
0
5
2
null
CC-BY-SA-4.0
JavaScript
Cr4zySh4rk/HOWLR
main
# HOWLR ### A website that helps freshers and small startups connect with each other to hire the right talent. This website was developed in less than 24hrs in a hackathon conducted by RNSIT called Hack Overflow. ![image](https://github.com/Cr4zySh4rk/HOWLR/assets/75577562/b96aa37d-b128-42ae-9dc8-8808a8fa0a11) ![image](https://github.com/Cr4zySh4rk/HOWLR/assets/75577562/7ea34652-dc8f-46af-a7d1-25d8c690852d) ![image](https://github.com/Cr4zySh4rk/HOWLR/assets/75577562/065b1936-f6b3-4b32-b851-86f8f68fa978) ## Prerequisite ### XAMPP (Installs Apache serevr, MariaDB(MySQL) and PHP which we will need.) ## Installation ### 1) Clone the repo ``` bash git clone https://github.com/Cr4zySh4rk/HOWLRPublic.git ``` ### 2) Copy the repo to htdocs ### 3) Open phpMyAdmin after starting the serevrs from XAMPP Console ### 4) Create a database called howlr2 ### 5) Import the addDatabase.sql file into the database ### 6) finally edit index.php in htdocs like below so that the website is run on localhost during server startup ![Screenshot 2023-11-18 at 9 37 08 AM](https://github.com/Cr4zySh4rk/HOWLR/assets/75577562/9dec5011-5c60-4a2d-9960-b7c742392c5e)
A website that helps freshers and small startups connect with each other to hire the right talent.
css,css3,google-maps-api,googlemapsapi,html,html5,javascript,php
2023-05-27T20:59:36Z
2023-11-18T04:14:08Z
null
2
0
16
0
0
2
null
null
CSS
BrilliantPhoenix2024/JavaScript-20-Projects
main
null
learn and Practice JavaScript by doing 20 Projects, based on a tutorial Course.
html-css-javascript,javascript,learning-by-doing,practice-javascript
2023-05-20T11:15:55Z
2023-08-10T13:17:22Z
null
1
0
167
0
0
2
null
null
JavaScript
sethshivam11/2048
main
null
This is a simple 2048 game where users can play this game.
2048,javascript
2023-05-18T14:00:34Z
2023-09-18T14:36:24Z
null
1
0
28
0
1
2
null
null
JavaScript
onkarv7/TODO-List
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)
Build a todo list application using React.js. The application have allow users to add, delete, and mark tasks as completed.
css3,html,javascript,react,reacthooks,npm,responsive-design
2023-05-27T08:25:43Z
2023-05-27T09:26:13Z
null
1
0
2
0
0
2
null
null
JavaScript
gitSeanEbasan01/proj_NoteTakingApp
main
# Note Taking Application <br/> ![Screen Shot 2023-07-04 at 17 55 18](https://github.com/gitSeanEbasan01/noteTakingApp/assets/106785987/05d41bf9-0e2b-4a36-9295-17773867fc99) <br/> ## Short Walkthrough ### Adding a canvas and a note. - Click the Add Canvas button on the left panel to add a canvas inside the Canvas List. - And inside the Canvas you created, you can add a Note Card by clicking on the square button just beside the left panel. - Double click on the Note Card to open its editor and add some notes. <br/> ![Screen Shot 2023-07-04 at 17 54 43](https://github.com/gitSeanEbasan01/noteTakingApp/assets/106785987/7ec68552-cdf4-492b-9302-9b7f24c80ed0) ![Screen Shot 2023-07-04 at 20 24 18](https://github.com/gitSeanEbasan01/noteTakingApp/assets/106785987/2a39a9a5-bf1f-4d8f-b237-8d951b47ba41) ### Creating A Linked Word Button - Put an "_" underscore beside a word (e.g. _WordButton) and press ctrl/cmd + Enter. This will create a button that creates another Note Card connected to the current card you're in when you click it. ![Screen Shot 2023-07-04 at 20 06 53](https://github.com/gitSeanEbasan01/noteTakingApp/assets/106785987/15914868-76f2-4666-afc5-78185085a80f) ![Screen Shot 2023-07-04 at 20 07 04](https://github.com/gitSeanEbasan01/noteTakingApp/assets/106785987/93857f0b-f021-493b-9d80-48a8e2843015) <br/> <br/> ## Developer's Notes The app is currently full of bugs and lacks a lot of features to be considered a full application. The bugs will soon be fixed and will continue adding more features later on for I'm currently working on Full Stack Development. I might forget to continue this project but will see.
This is a Note Taking Application that implements Mind-Mapping in its note taking feature using HTML, CSS, and JavaScript. This application was inspired by a note taking app I currently have which is Scrintal.
css,html,javascript
2023-05-24T03:05:45Z
2023-07-04T12:42:06Z
null
1
0
34
0
1
2
null
null
JavaScript
Rushi128/doctor-appointment-webapp
main
# Doctor Appointment Booking Web Application This is a web application that allows users to book appointments with doctors, chat with chatbots, and send requests to contact doctors. Users can also view details of doctors available on the site. The technologies used for this project are HTML, CSS, JavaScript, and the Flask framework for the backend. The database used is SQLite. ## Features <!-- - User Registration: Users can create an account to access the features of the application. - Doctor Search: Users can search for doctors based on various criteria such as specialization, location, etc. --> - Appointment Booking: Users can book appointments with their preferred doctors based on availability. - Chatbot Integration: Chatbots are available to provide assistance and answer common queries. - Contact Request: Users can send requests to contact doctors for further information or assistance. - Doctor Details: Users can view detailed information about doctors, including their qualifications, experience, and availability. ## Installation 1. Clone the repository: ```bash git clone https://github.com/Rushi128/doctor-appointment-webapp.git ``` 2. Navigate to the project directory: ```bash cd doctor-appointment-webapp ``` 3. Install dependencies: ```bash pip install -r requirements.txt ``` 4. Run the application: ```bash python app.py ``` 5. Access the web application in your browser at `http://localhost:5000`. ## Usage 1. Register a new account on the web application. 2. Search for doctors based on your requirements. 3. Book an appointment with your preferred doctor. 4. Chat with chatbots to get assistance or information. 5. Send a contact request to the doctor if needed. 6. View detailed information about doctors available on the site. ## Contributing Contributions to this project are welcome. Here are a few ways you can contribute: - Report bugs or issues by opening a new issue. - Suggest new features or enhancements. - Submit pull requests to fix issues or add new features. ## License This project is licensed under the [MIT License](LICENSE).
Doctor-Appointment-Webapp is an innovative web application that streamlines the process of booking appointments with doctors. This project provides a user-friendly interface for patients to easily view available doctors, their specializations, and book appointments with them.
css,doctor-appointment-management,flask,framework,html,javascript,miniproject,mit-license,news,projects
2023-05-17T14:02:42Z
2023-05-17T14:25:28Z
null
1
0
8
0
0
2
null
MIT
HTML
devjoseh/Beecrowd-Problems-Solutions
main
# Seja Bem-Vindo(a) ## 🚀 _Problems UriOnlineJudge / Beecrowd Solutions_ Nesse repositório você irá encontrar todos os problemas do BeeCrowd que foram realizados por mim. ## 😴 Perfil Acesse meu perfil do Beecrowd [clicando aqui](https://www.beecrowd.com.br/judge/pt/profile/809106) ## 🧒 Autor Acesse minhas redes sociais [![instagram](https://img.shields.io/badge/instagram-A425E4?style=for-the-badge&logo=instagram&logoColor=white)](https://www.instagram.com/dev_joseh/) [![youtube](https://img.shields.io/badge/youtube-red?style=for-the-badge&logo=youtube&logoColor=white)](https://www.youtube.com/channel/UCHxmaCQRQcJ1Y1fWDvGPktQ) [![linkedin](https://img.shields.io/badge/linkedin-0A66C2?style=for-the-badge&logo=linkedin&logoColor=white)](https://www.linkedin.com/in/josé-hernanes-b4b155249/) ## 🤓 Linguagens Usadas *Todas as linguagens que foram usadas por mim para resolver os problemas do BeeCrowd* ![python](https://img.shields.io/badge/Python-3776AB?style=for-the-badge&logo=python&logoColor=white) ![javascript](https://img.shields.io/badge/JavaScript-F7DF1E?style=for-the-badge&logo=javascript&logoColor=black) ![lua5.4](https://img.shields.io/badge/Lua-2C2D72?style=for-the-badge&logo=lua&logoColor=white) ## 📌 Baixando Repositório Digite o comando abaixo no seu terminal para baixar o repositório. ```bash git clone https://github.com/devjoseh/Beecrowd-Problems-Solutions.git ``` ## 📝 Licença Este projeto está licenciado. Veja mais [detalhes](https://github.com/devjoseh/Beecrowd-Problems/blob/main/LICENSE)
Todos os problemas do URI / BeeCrowd que foram feitos por mim, códigos em lua, javascript e python. Aproveite e de uma estrela no repositório!
beecrowd,beecrowd-python,beecrowd-solution-in-js,beecrowd-solutions,beecrowd-solutions-in-python,javascript,js,py,python,uri
2023-06-08T21:13:05Z
2024-04-15T15:17:05Z
null
1
0
36
0
0
2
null
GPL-3.0
JavaScript
Sergii-Drozdiuk/Simply-Chocolate
main
# excellent-chocolate-mood-team-project Team-project Цей проект було створено за допомогою Vite. Для знайомства та налаштування додаткових можливостей [Докутентація тут](https://vitejs.dev/). Група розробників під кодовою назвою "project-group-17" у складі 11 чоловік провела тиждень за знайомством з даною збіркою. Наразі з гордістю в серцях і червоними, від безсоння, очима хочемо презентувати наше дитя, яке народжувалось в муках, проте стало таким рідним, що кожен з нас (розробників) може знайти у ній частинку себе... Ім'я цієї дитини - excellent-chocolate-mood-team-project, для компанії Simply chocolate.
Team project Simply Chocolate. Adaptive design, transform effects, modal windows.
aos,jquery,swiper,trello,vite,css3,html5,javascript,eslint,stylelint
2023-05-31T20:42:47Z
2023-11-24T16:58:05Z
null
12
203
487
0
3
2
null
null
CSS
CoCo-27/chatbot_widget
main
# chatbot_widget
chatbot_widget
babel,babel-plugin,javascript,sass,webpack
2023-05-25T15:40:43Z
2023-05-25T15:40:07Z
null
1
0
2
0
0
2
null
null
JavaScript
dmitryberesten/restaurant
main
Невеличкий пет-проєкт написаний на технології Реакт. Були задієні основи реактивного програмування сайтів. Також було використано: слайдер, акордеон, стилізацію mui/material, компонентний підхід, адаптивність під різні екрани пристроїв. ОСОБЛИВОСТІ ПРОЄКТА: 1. React 2. Adaptive 3. JavaScript 4. Mui/material 5. Hamburger-react 6. Swiper 7. Crossbrowsing 1. Головна сторінка: ![1](https://github.com/dmitryberesten/restaurant/assets/87872240/c93eaf24-af9f-4a3d-8fad-dad28101e893) 2. Відгуки клієнтів: ![2](https://github.com/dmitryberesten/restaurant/assets/87872240/19e60b6f-ead4-4873-a0b1-473256662c37) ![1](https://github.com/dmitryberesten/restaurant/assets/87872240/8835493a-61e9-4077-addd-8f8791187514) 3. Популярні страви: ![3](https://github.com/dmitryberesten/restaurant/assets/87872240/fa78de4c-3f78-40c5-b2f2-b74580cc8c5d) 4. Акордеон: ![4](https://github.com/dmitryberesten/restaurant/assets/87872240/5d752d37-7372-4c68-be0d-c850952626e6) 5. Найпопулярніші страви: ![5](https://github.com/dmitryberesten/restaurant/assets/87872240/2dbec75f-e37a-4d4d-9e34-e45953c10eed) ![2](https://github.com/dmitryberesten/restaurant/assets/87872240/702003e9-8e22-4eb1-b991-3a5a510447ed) 6. Контакти + кнопка: ![6](https://github.com/dmitryberesten/restaurant/assets/87872240/fadee8b3-49fa-4d8c-a2a3-122e12cc4e9e) 7. Меню: ![7](https://github.com/dmitryberesten/restaurant/assets/87872240/731522c6-f783-43f7-a666-ddc239a8ad97) ![3](https://github.com/dmitryberesten/restaurant/assets/87872240/c6ebf27a-e04a-41cf-9e1a-614ad9e6850e) 8. Модальне вікно: ![8](https://github.com/dmitryberesten/restaurant/assets/87872240/23381931-73ad-495a-8532-c8a4c1a40425) 9. Про нас: ![9](https://github.com/dmitryberesten/restaurant/assets/87872240/a4a3232f-2f55-4be9-a1e9-7bb329e62f14) 10. Наша команда: ![10](https://github.com/dmitryberesten/restaurant/assets/87872240/0257e54e-5b0a-4102-a521-15fd8d6c8b1d) ![4](https://github.com/dmitryberesten/restaurant/assets/87872240/a7319e13-6119-499e-af8a-7b2d51078871) 11. Наші фахівці: ![11](https://github.com/dmitryberesten/restaurant/assets/87872240/2523f8f3-d9f5-440f-9e91-cc5912eeabc1) ![5](https://github.com/dmitryberesten/restaurant/assets/87872240/02da8a5a-4d5c-4b5e-b8a6-06852c0a7d3a) 12. Форма: ![12](https://github.com/dmitryberesten/restaurant/assets/87872240/7f855902-c0c1-4ae5-b2f6-308e4178a94d) ![6](https://github.com/dmitryberesten/restaurant/assets/87872240/0a2f2df5-30df-4cbc-bd82-ad7ac2dc3e5e)
React пет-проєкт ресторану Apetitto
adaptive,hamburger-react,javascript,mui-material,react,swiper,crossbrowsing
2023-05-17T21:47:48Z
2023-07-28T15:25:19Z
null
1
0
31
0
0
2
null
null
JavaScript
Md-Zainulabdin/Budget-App
main
# Budget-App Create This Budget App, Using HTML, CSS, and pure JavaScript. Our web page is designed to be responsive and user-friendly, ensuring that you can access it from any device Live Link: https://md-zainulabdin.github.io/Budget-App/
Create This Budget App, Using Html, Css, and pure JavaScript. Our web page is designed to be responsive and user-friendly, ensuring that you can access it from any device
budget-app,css,expense-tracker,html,javascript,web,javascript-applications,monthly-expenses,webapp
2023-06-03T16:01:15Z
2023-06-21T19:43:28Z
null
1
0
5
0
0
2
null
MIT
CSS
vitordml/plyr-video-playlist
main
# Plyr Video Playlist [![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE) [Demo](https://plyr-video-playlist.dml0b3i.repl.co) [![Screenshot of Playlist](https://github.com/vitordml/plyr-video-playlist/blob/main/plyr-video-playlist-scrnsht.jpg)](https://plyr-video-playlist.dml0b3i.repl.co) ## Description This project is a web application that provides a user-friendly interface for a Playlist for the Plyr Media Player. ## Features - Handles Youtube, Vimeo, HTML5/MP4 Video files. - Responsive design with a two-column layout - Collapsable playlist button - Watched item tracking in the playlist - Video player with playlist integration - Hides all vimeo/youtube embed controls/ recommended videos - Search functionality - Filtering by category functionality ## Dependencies This project utilizes the following dependencies: - [Plyr](https://github.com/sampotts/plyr): A simple, accessible, and customizable HTML5 media player. - [Simplebar](https://github.com/Grsmto/simplebar): A custom scrollbar plugin that aims to be as easy to use as possible while maintaining performance and extensibility. ## Getting Started To get a local copy up and running, follow these simple steps: ### Prerequisites - A web browser ### Installation 1. Clone the repository: ```sh git clone https://github.com/vitordml/plyr-video-playlist/.git ``` 2. Open the project folder. 3. Open the `index.html` file in your preferred web browser. ## Usage This playlist requires Playlist Items to be added in the following format: ``` <div class="playlist_item" data-title="" data-author="" data-purl="" data-video="" data-type="" data-category=""> <div class="item_wrapper"> <div class="item_thumb_container"> <img class="item_thumb" src=""> <div class="item_thumb_play"></div> <div class="item_thumb_restart"></div> </div> <div class="item_details"> <span class="item_title"></span> <span class="item_director"></span> </div> </div> </div> ``` - **data-title** / **data-author** atttributes are used to display the items information in the top left. - **data-purl** handles any thumbnail image - **data-video** handles the Youtube link, Vimeo ID or the html/mp4 video link - **data-type** specified the media type, this is either youtube| vimeo | video - **data-category** will be used to populate the **All** dropdown accordian menu in order to filter the playlist item. The remaining dom elements are **NOT** automatically filled in based on the data-attributes on load and need to be added manually for now. The playlist autoplays, and displays a buffering animation while the Plyr *progress* event is occuring. ## Contributing Contributions are welcome! If you have any ideas, enhancements, or bug fixes, please open an issue or submit a pull request. ## License This project is licensed under the [MIT License](LICENSE). ## Credit I used the playlist code by [Skerbis](https://codepen.io/skibbi/pen/NWvLoRz) as a starting point
A video playlist based on the plyr media player for vimeo, youtube and html5 video
html5-video,javascript,playlist,plyr,vimeo,youtube
2023-06-02T05:09:38Z
2023-06-02T08:55:14Z
null
1
0
14
0
0
2
null
MIT
JavaScript
microsoftreact/music-player
main
null
Music-Player
css3,html5,javascript
2023-05-19T06:00:42Z
2023-05-19T06:01:41Z
null
1
0
1
0
0
2
null
null
HTML
vitingr/mental-health-website
main
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). ## Getting Started First, run the development server: ```bash npm run dev # or yarn dev # or pnpm dev ``` Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. You can start editing the page by modifying `app/page.js`. The page auto-updates as you edit the file. This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. ## Learn More To learn more about Next.js, take a look at the following resources: - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! ## Deploy on Vercel The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
Projeto do Website Saude Mental e Tecnologia. O projeto foi desenvolvido utilizando React, Javascript, CSS, HTML, MongoDB
css,javascript,mongodb,nextjs,providers,react,route-api,ssr
2023-05-24T20:59:27Z
2023-08-05T03:44:27Z
null
1
0
31
0
0
2
null
MIT
JavaScript
kanugurajesh/Sample-Portfolio
main
# cNqRvZsw Quick start: ``` $ npm install $ npm start ````
Sample developer portfolio
css3,html5,javascript,open-source
2023-05-29T03:09:15Z
2023-11-22T17:43:47Z
null
2
0
10
0
0
2
null
null
HTML
RamProg/ramiro-uk
main
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). ## Getting Started First, run the development server: ```bash npm run dev # or yarn dev # or pnpm dev ``` Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. ## Learn More To learn more about Next.js, take a look at the following resources: - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! ## Deploy on Vercel The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
Professional website in nextjs with typescript and tailwind to quickly share relevant links and present myself.
javascript,nextjs,react,responsive,tailwind,typescript
2023-06-04T10:26:39Z
2024-02-19T16:53:38Z
null
1
0
92
0
0
2
null
null
TypeScript
jessicaranft/portfolio
main
# My Portfolio 🔗 <a href="https://jess-r.dev/" target="_blank">jess-r.dev</a> ![preview](https://github.com/jessicaranft/portfolio/blob/main/src/assets/portfolio/portfolio.png) This is my personal portfolio website to showcase the front-end projects I've worked on. <br><br> I designed the layout on Figma, and coded on VSCode. <br><br> The main tecnology I use here is ReactJS. For the stylization I use the library Styled Components (CSS in JS). <br><br> The layout is fully-based on the componentization of elements. <br><br> The website is available in English and Portuguese. ## 💻 Libraries My portfolio was coded with React and uses the following libraries: - react-i18next; - react-icons; - react-modal; - react-router-dom; - react-type-animation - styled-components - swiper ## 🎨 Layout concept For this personal project, I wanted to design a layout that reminds of a code editor, with elements that resemble coding tags and styles that we use in front-end development. I chose the font and colors with that concept in mind, and also added a few animations. <br><br> My main phylosophy when designing a website layout is the "less is more" idea. I like simple but great-looking layouts, with good proportions and alignments. <br><br> The layout is fully-responsive, with mobile and desktop versions. ## 📝 License This project is under the license MIT. Made with ❤️ by Jessica Ranft.
My personal portfolio website made with React.
javascript,portfolio,react,styled-components
2023-06-01T20:20:01Z
2023-12-12T20:35:05Z
null
1
0
43
0
0
2
null
null
JavaScript
Yazid04/HealthfulPlate
main
# HealthfulPlate - Where Wellness Meets the Plate ## Description : "HealthfulPlate" is a vibrant and user-friendly React website that combines the best of nutrition and health. Featuring three distinct pages, the platform offers a diverse set of services. The home page provides an array of wellness resources and information. On the second page, users can easily search for recipes and get detailed nutritional facts for each recipe. However, the real gem of the website is its third page, a fairly comprehensive weight calculator (I worked very hard on this feature where I feel I can use such a word lol), designed to help users achieve their weight goals. This feature takes into account various input parameters such as current weight, goal weight, height, age, activity level, gender, and more, using formulas like the Harris-Benedict formula and TDEE, adjusted with the user's chosen timeframe. HealthfulPlate is designed with the intention of being a colorful and eye-pleasing platform. The codebase has reusable components, is readable and scalable, which makes it highly efficient for adjusting and scaling up the codebase. ![CosmoQuest images](./src/static/screenShot1.png) ![CosmoQuest images](./src/static/screenShot2.png) ![CosmoQuest images](./src/static/screenShot3.png) ![CosmoQuest images](./src/static/screenShot4.png) ## Technologies Used : - React js - Scss - Context API - Node js - edamam API - Axios - And other libraries ## Installation : 1. Clone the repository to your local machine using the following command: ``` git clone https://github.com/Yazid04/HealthfulPlate.git ``` 2. Navigate to the repository's directory on your local machine: ``` cd HealthfulPlate ``` 3. Install the dependencies using npm or yarn: ``` npm install ``` OR ``` yarn install ``` ## Configuration : 4. Create a .env file in the root directory with the following content: ``` REACT_APP_EDAMAM_APIKEY=YOUR_API_KEY ``` ``` REACT_APP_EDAMAM_APPID=YOUR_APP_ID ``` Note: Replace YOUR_API_KEY with your actual API key, and the same goes for (YOUR_APP_ID). Which you can get from the edamam api website https://www.edamam.com/ ## Running the App 5. Start the React app locally: ``` npm start ``` OR ``` yarn start ``` 6. Open your web browser and go to http://localhost:3000 to see the app running locally. **_That's it! You have successfully installed and set up HealthfulPlate locally._** **_Made with ❤ by [@Yazid04](https://github.com/Yazid04)_**
Support a refugee's dream, be a part of my journey. Show your appreciation by starring the repo 🤍
axios,javascript,nodejs,react,reactjs,scss
2023-05-17T14:32:26Z
2023-12-14T07:46:00Z
null
1
0
26
0
0
2
null
null
JavaScript
Raycsm/app-pet-for-you
main
# **Pet For You** <div style="display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;"> <img src="https://github.com/Raycsm/app-pet-for-you/assets/90047383/1b2cc5f7-26e0-4ad1-ac5b-a3751688d384" alt="image" style="width: 45%;"> <img src="https://github.com/Raycsm/app-pet-for-you/assets/90047383/ef9c9294-ba37-4978-b41c-c6ff1b360614" alt="image" style="width: 45%;"> <img src="https://github.com/Raycsm/app-pet-for-you/assets/90047383/665cd7cf-93d5-45f8-ba5e-a20ad1d5e0a5" alt="image" style="width: 45%;"> <img src="https://github.com/Raycsm/app-pet-for-you/assets/90047383/248719c5-86ff-4343-afa7-b85394891408" alt="image" style="width: 45%;"> <img src="https://github.com/Raycsm/app-pet-for-you/assets/90047383/00d2e9f9-c2ad-43c2-96a5-162f8d52193b" alt="image" style="width: 45%;"> <img src="https://github.com/Raycsm/app-pet-for-you/assets/90047383/3b610d38-69b3-4f0b-8b36-79b114e515d5" alt="image" style="width: 45%;"> </div> Projeto desenvolvido durante o curso de Graduação de TADS da Faculdade Insted na disciplina de Projeto Integrador com o objetivo de realizar um aplicativo de adoção de animais para a cidade de Campo Grande - MS. ## **🛠 Tecnologias** ![React Native](https://img.shields.io/badge/React_Native-20232A?style=for-the-badge&logo=react&logoColor=61DAFB) ![JavaScript](https://img.shields.io/badge/JavaScript-323330?style=for-the-badge&logo=javascript&logoColor=F7DF1E) ![Node JS](https://img.shields.io/badge/Node.js-339933?style=for-the-badge&logo=nodedotjs&logoColor=white) ![Firebase](https://img.shields.io/badge/firebase-ffca28?style=for-the-badge&logo=firebase&logoColor=black) ![NPM](https://img.shields.io/badge/npm-CB3837?style=for-the-badge&logo=npm&logoColor=white) ![Trello](https://img.shields.io/badge/Trello-0052CC?style=for-the-badge&logo=trello&logoColor=white) ![Figma](https://img.shields.io/badge/Figma-F24E1E?style=for-the-badge&logo=figma&logoColor=white) ![Visual Studio Code](https://img.shields.io/badge/VSCode-0078D4?style=for-the-badge&logo=visual%20studio%20code&logoColor=white) ## **✨ Como executar** - [README-install](./README-install.md) ## **💛 Criadores** | Author | Author | Author | Author | | :------: | :------: | :------: | :------: | | [<img src="https://github.com/bamarcheti.png?size=115" width=115><br><sub>@Bamarcheti</sub>](https://github.com/Bamarcheti) <br><br> [![](https://img.shields.io/badge/LinkedIn-0077B5?style=for-the-badge&logo=linkedin&logoColor=white)](https://www.linkedin.com/in/barbara-marcheti-fiorin) | [<img src="https://github.com/Raycsm.png?size=115" width=115><br><sub>@Raycsm</sub>](https://github.com/Raycsm) <br><br> [![](https://img.shields.io/badge/LinkedIn-0077B5?style=for-the-badge&logo=linkedin&logoColor=white)](https://www.linkedin.com/in/rayane-assis-magalh%C3%A3es-b7a229112/) | [<img src="https://github.com/rayllarsd.png?size=115" width=115><br><sub>@rayllarsd</sub>](https://github.com/rayllarsd) <br><br> [![](https://img.shields.io/badge/LinkedIn-0077B5?style=for-the-badge&logo=linkedin&logoColor=white)](https://www.linkedin.com/in/raylla-do-sol-dias-858164231/) | [<img src="https://github.com/unknow.png?size=115" width=115><br><sub>@Phelipe</sub>](https://github.com/ThalesTayson) <br><br> [![](https://img.shields.io/badge/LinkedIn-0077B5?style=for-the-badge&logo=linkedin&logoColor=white)](https://www.linkedin.com/in/phelipe-gomes-de-melo-806015190/) |
Projeto desenvolvido durante o curso de Graduação de TADS da Faculdade Insted na disciplina de Projeto Integrador com o objetivo de realizar um aplicativo de adoção de animais para a cidade de Campo Grande - MS.
figma,firebase,javascript,nodejs,npm,react-native,trello,vscode
2023-05-21T18:32:31Z
2024-01-12T15:18:34Z
null
3
2
37
0
0
2
null
null
JavaScript
andre-lomba/serratec_residency___web_final_project
main
null
Final project of the discipline "Web Development" of Serratec Software Residency (Class 4 - Group 2)
javascript,react,web-development,front-end-development
2023-06-07T22:52:49Z
2023-06-15T23:42:40Z
null
3
0
17
0
0
2
null
null
JavaScript
KakarottoCui/UniSchoolYiTiHua
main
# UniSchoolYiTiHua 基于Java SpringBoot和Vue UniAPP校园一体化教务管理小程序 演示视频链接:https://live.csdn.net/v/302281 详询 微信1:egvh56ufy7hh ,微信2:dabocode ,钉钉:chengxuyuandabo ,QQ:821898835 。承接商业项目、课设、毕设和论文,包括但不限于Web、APP、小程序等,课设、毕设提供远程部署和不限次数代码解答! 技术: 后端使用JAVA语言的SpringBoot框架,MySQL数据库,Maven依赖管理等技术 前端使用Vue.js语法的uniapp框架,可以发布成微信小程序 实现的功能: 分为学生用户和管理员两种角色; 校园服务(失物招领、招聘信息、在线学习); 教务查询(查询自己的成绩); 个人中心; 其中在线学习就是管理员发布的一些关于学习内容的图文。招聘信息也是管理员发布的内容。失物招领学生和管理员都可以发布。成绩是管理员录进去的。
基于Java SpringBoot和Vue UniAPP校园一体化教务管理小程序
java,javascript,mysql,springboot,uniapp
2023-06-08T01:09:42Z
2023-12-28T02:42:30Z
null
1
0
4
0
0
2
null
null
Vue
artHub-j/artuaragon-homepage
main
# <img src="https://github.com/artHub-j/artuaragon-homepage/assets/92806890/09946468-f8b9-4e19-b449-ab5080f574bd" width="30" /> artuaragon-homepage-main Light Mode | Dark Mode :-------------------------:|:-------------------------: ![Screenshot from 2023-05-19 02-13-37](https://github.com/artHub-j/artuaragon-homepage-main/assets/92806890/b4f4f804-b7ea-4e71-973f-8bb1b0e96c2c) | ![Screenshot from 2023-05-19 02-13-33](https://github.com/artHub-j/artuaragon-homepage-main/assets/92806890/2dec7e7d-40be-41f5-82ef-305b325c0bf0) ## Installation of npm and its node modules: Install npm and node modules on Ubuntu ```bash sudo apt install npm sudo apt install nodejs ``` Run page on localhost:3000 ```bash cd artuaragon-homepage-main npm run dev ```
A small personal bio web using Next.js, Chakra UI, Framer Motion, and Three.js.
javascript,chakra-ui,nextjs,personal-website
2023-05-18T21:55:23Z
2023-07-14T17:55:17Z
null
1
0
5
0
0
2
null
null
JavaScript
wdhdev/api
main
# WH API My personal API. ![Languages](https://skillicons.dev/icons?i=nodejs,ts,express,sentry)
My personal API.
api,javascript,js,nodejs,rest-api,typescript
2023-06-04T04:39:57Z
2024-05-03T00:28:09Z
null
1
139
232
0
0
2
null
MIT
TypeScript
Ahmedhossamdev/Natours
master
# Natours ## An Awesome Tour Booking Site Built on Top of NodeJS ### Deployed Version Live demo (Feel free to visit) 👉 : [Natours](https://natours-ijrr.onrender.com/) ### Key Features - Authentication and Authorization - Sign up with Email Verification - Login and Logout - Forget Password and Reset Password - Tour Booking Management - Interactive Tour Map with User Reviews and Ratings - User Profile Customization - Secure Credit Card Payment - Dark Mode for Enhanced User Experience ### Demonstration #### Home Page: ![image](https://github.com/Ahmedhossamdev/Natours/assets/99441866/758823b1-d1a4-4e66-9a69-fd77d0abe10e) ![image](https://github.com/Ahmedhossamdev/Natours/assets/99441866/b633488b-892b-4cb6-95d0-35d5ceebfdfb) #### Tour Details: ![Alt Text](https://media.giphy.com/media/WvDmEEE3AWihilAgze/giphy.gif) #### Payment Process: ![Alt Text](https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExNmR6MGJsb3FxMms4emw5NjI2d3k4cmtmenVqZGczMTY3eXMyaWlyayZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/IlkchDlYu2ToQA0R8r/giphy.gif) #### Booked Tours: ![image](https://github.com/Ahmedhossamdev/Natours/assets/99441866/4a5b3780-c716-46bf-9df6-c9d522c81f5c) #### User Profile: ![image](https://github.com/Ahmedhossamdev/Natours/assets/99441866/9f5a1baa-c3fd-4e27-9250-6f51313e553c) ## How To Use 1. Book a tour 2. Login to the site 3. Search for tours that you want to book 4. Proceed to the payment checkout page 5. Enter the card details (Test Mood): - Card No. : 4242 4242 4242 4242 - Expiry date: 02 / 22 - CVV: 222 6. Finished! 7. Manage your booking 8. Check the tour you have booked in the "Manage Booking" page in your user settings. You'll be automatically redirected to this page after you have completed the booking. 9. Update your profile 10. You can update your own username, profile photo, email, and password. ### API Usage Before using the API, you need to set the variables in Postman depending on your environment (development or production). Simply add: - `{{URL}}` with your hostname as the value (Eg. http://127.0.0.1:3000 or http://www.example.com) - `{{password}}` with your user password as the value. Check Natours API Documentation for more info: API Features: - Tours List 👉 [Tours](https://natours-ijrr.onrender.com/api/v1/tours) - Tours State 👉 [Tour Stats](https://natours-ijrr.onrender.com/v1/tours/tour-stats) - Get Top 5 Cheap Tours 👉 [Top 5 Cheap Tours](https://natours-ijrr.onrender.com/api/v1/tours/top-5-cheap) - Get Tours Within Radius 👉 [Tours Within Radius](https://natours-ijrr.onrender.com/api/v1/tours/tours-within/200/center/34.098453,-118.096327/unit/mi) ### Deployment The website is deployed with Git into render: https://natours-ijrr.onrender.com/
An Awesome Tour Booking Website - Powered by Node.js
cors,express,helmet,javascript,jwt-authentication,mongodb,mongoose,morgan,multer,nodejs
2023-05-17T23:46:20Z
2024-04-21T20:30:03Z
null
1
1
115
0
0
2
null
null
JavaScript
DeibidSE/MyPortfolio
master
# My Portfolio Welcome to my web portfolio! This project is a personal space where I showcase my skills, projects, and experiences. The platform is built using the Nuxt framework, providing a smooth user experience and intuitive navigation. ## About This Project This web portfolio aims to display my professional profile and web development skills. Here, you'll find information about my highlighted projects, technical skills, and relevant details about my journey. ### Key Features - **Responsive Design:** The interface adapts to different devices to provide an optimal experience. - **Projects Section:** Check out the projects I've worked on. - **Experience:** Summary of my work and educational background. - **Skills:** List of technical skills relevant to web development. ## Acknowledgements - Many thanks to [@viryi_vc21](https://instagram.com/viryi_vc21) for creating different SVG logos based on my name.
Personal portfolio project
nuxt3,nuxtjs,tailwindcss,vue3,vuejs,javascript,sass,scss,typescript
2023-06-01T17:25:23Z
2024-05-12T11:42:29Z
null
1
1
32
0
0
2
null
null
Vue
smartman1234/Crypto-Crowdfund
main
null
Crowdfunding Platform backed by Ethereum Blockchain to bring your creative projects to life
blockchain,css,ethereum,javascript,reactjs,smart-contracts,solidity,typescript
2023-06-05T07:26:16Z
2021-12-19T03:19:50Z
null
1
0
69
0
0
2
null
MIT
TypeScript
kewalkhondekar25/React-Cart-Functionality
master
# React-Cart-Functionality A Cart functionality allows consumer to review, modify changes such as either adding more quantity or remove &amp; review price too! This uses context API and use Reducer hooks provided in react ![image](https://github.com/kewalkhondekar25/React-Cart-Functionality/assets/121751972/4f733e4c-7a0f-4ae2-969d-d709e9f3cf5f)
A Cart functionality allows consumer to review, modify changes such as either adding more quantity or remove & review price too! This uses context API and use Reducer hooks provided in react
javascript,reactjs,usecontext-hook,usereducer-hooks
2023-05-18T19:58:10Z
2023-08-19T11:38:29Z
null
1
0
3
0
0
2
null
null
JavaScript
Abidkhan263187/Project-Furnitore-store
main
<h2>Furniture Store</h2> [click here](https://furniture-store-mu.vercel.app/) <h2>Description:</h2> Welcome to the Furniture Store App repository! This is a modern and user-friendly web application designed to revolutionize your furniture shopping experience. Our app offers a seamless interface for browsing, selecting, and purchasing a wide range of high-quality furniture items. Say goodbye to traditional furniture shopping woes – explore our diverse collection, enjoy convenient features, and transform your living spaces with ease. <h2>Key Features:</h2> Extensive Furniture Collection: Browse through an extensive catalog of furniture items, ranging from classic to contemporary styles, ensuring there's something for every taste and preference. Intuitive Search and Filter: Use our powerful search and filter options to quickly find the perfect furniture piece based on categories, styles, materials, colors, and more. Virtual Room Preview: Visualize how your selected furniture will fit into your space using our virtual room preview feature, helping you make informed decisions. User-Friendly Interface: Enjoy a clean, intuitive, and responsive user interface that provides a delightful shopping experience on both desktop and mobile devices. Real-time Inventory: Stay updated on product availability with real-time inventory tracking, reducing disappointment due to out-of-stock items. <h2>Tech Stack:</h2> Frontend: React.js, Redux (for state management), HTML5, CSS3, JSON server, Version Control: Git and GitHub, Deployment: Vercel Get ready to embark on a revolutionary furniture shopping experience with our Furniture Store App. Whether you're looking to redecorate your home or simply add a touch of elegance, we're here to cater to your every need. Happy shopping and furnishing!
Furniture Store: Your One-Stop Shop for Stylish Home Furnishings. Create your dream living space with our versatile selection of sofas, tables, and more.
css,html,javascript,react,redux
2023-05-20T18:36:32Z
2023-10-13T18:54:55Z
null
2
6
45
0
0
2
null
null
JavaScript
anj20/Finance_Tracker
main
# Dollar Sense This is a web application designed to assist users in effectively tracking their income and expenses. The Finance Tracker website contains tools for managing financial transactions, classifying income and expenses, and generating reports. The application is developed with Node.js, MongoDB, React, and Tailwind CSS, and Auth0 is used for authentication. # Features: 1. Registration and Authentication of Users: On the Finance Tracker website, users can establish an account. Implementing Auth0 authentication ensures secure access to user data and prevents unauthorised access. 2. Dashboard: Upon login, users are confronted with a personalised dashboard. The dashboard displays summaries of the user's income and expenses, as well as charts and diagrams, to provide a financial status overview. 3. Income and Expense Tracking: Users are able to record their income and expenses with specific details, such as amount, date, category, and description. The application allows for simple and efficient data entry, enabling users to add, edit, and delete transactions. 4. Categorization: Transactions can be categorised into predefined or custom categories, allowing users to organise and analyse their financial data more effectively. 5. The Finance Tracker website provides a variety of reports to assist users in gaining insight into their financial activities. Users are able to generate reports based on particular time periods, categories, and custom filters. To facilitate comprehension, the reports include visual representations such as charts and graphs. 6. About Page: The website provides an informative about page that describes the purpose and characteristics of the Finance Tracker Website. Users can gain insight into the application's history and development. 7. Users can share their opinions, suggestions, and any problems they encounter while using the website on a dedicated feedback page. This enables the development team to collect useful feedback and enhance the application in response to user input. # Technology Techstack The website for Finance Tracker is created with the following technologies: 1. Node.js is used to create the infrastructure, which provides a scalable and efficient server environment. 2. The application stores user data, including transactions, categories, and user information, in MongoDB, a NoSQL database. 3. The frontend is built with React, a prominent JavaScript library for constructing user interfaces. React permits the development of dynamic, responsive components for a fluid user experience. 4. Tailwind CSS: The website's formatting and layout are implemented with Tailwind CSS, a CSS framework that prioritises utility. Tailwind CSS enables simple customization and uniformity throughout an application's design. 5. Auth0 is incorporated into the application for authentication and authorization of users. It ensures the security of user data and provides a secure registration mechanism. # Getting started To run the Finance Tracker Website locally, follow these steps: 1. Ensure that you have Node.js and MongoDB installed on your machine. 2. Clone the repository: git clone https://github.com/your-username/Finance-Tracker.git 3. Navigate to the project directory: cd Finance-Tracker 4. Install the dependencies for the server: npm install 5. Install the dependencies for the frontend: cd frontend npm install 6. Create a .env file in the root of the project and add the necessary environment variables, including MongoDB connection string and Auth0 configuration details. Refer to the .env.example file for the required variables. 7. Start the development server: npm start # Feedback and Contributions We value your feedback and contributions to the Finance Tracker Website. If you encounter
It's a web application designed to assist users in effectively tracking their income and expenses.
auth0,html,javascript,mongodb,reactjs,tailwindcss,vercel-deployment
2023-05-28T19:36:56Z
2023-06-27T04:45:17Z
null
2
4
36
0
0
2
null
null
JavaScript
Abhisheksingh0303/Weather-Forecasting-App
master
# Weather Forecasting App The Weather Forecasting App is a user-friendly and comprehensive web application that provides accurate weather predictions and forecasts. This app aims to offer users a seamless experience in accessing weather information for any location worldwide. It utilizes real-time data from reliable sources, ensuring up-to-date and precise weather forecasts. ## Features - **Real-Time Weather Data**: Access real-time weather information for any location worldwide. - **Accurate Forecasts**: Get accurate and reliable weather predictions for the upcoming days. - **User-Friendly Interface**: Enjoy a user-friendly and intuitive interface for easy navigation. - **Customizable Locations**: Add and save your preferred locations for quick weather updates. - **Responsive Design**: Access the app from any device with a responsive and mobile-friendly design. ## Technologies Used - **HTML**: For structuring web pages and content. - **CSS**: For styling and enhancing the visual appeal of the application. - **JavaScript**: Adds interactivity and dynamic features to the app. - **Weather API**: Utilizes a weather API to fetch real-time weather data. ## Usage 1. **Accessing Weather Data**: - Visit the Weather Forecasting App website at [yourappdomain.com](https://www.yourappdomain.com). 2. **Search for Locations**: - Use the search bar to find weather information for a specific location. 3. **View Weather Details**: - Explore detailed weather information, including temperature, humidity, wind speed, and more. 4. **Customize Locations**: - Create an account to save and manage your preferred locations for quick access. ## Contributing If you'd like to contribute to the development of the Weather Forecasting App, please follow these steps: 1. Fork the repository on GitHub. 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 fork. 5. Create a pull request to merge your changes into the main repository. ## License This project is open-source and available under the [MIT License](LICENSE). You are free to use, modify, and distribute the code as per the terms of the license. ## Contact For any questions, feedback, or issues, please contact us at [abhisheksingh81037272@gmail.com]
This Weather Forecasting App is a user-friendly and comprehensive application that provides accurate weather predictions and forecasts.
javascript,projects,weather,weatherforecast,website,abhisheksingh0303
2023-05-27T17:17:39Z
2023-09-07T15:02:31Z
null
1
0
4
0
0
2
null
null
JavaScript
123rishujha/bloggy
main
# bloggy ## Dynamic blogging platform that allows users to read, create, and edit blogs. It features real-time chat functionality for engaging with other users ### How to Start the Website ### clone this repo ### it has two separate folder for frontend and backend and one main folder that is first bloggy folder - client - server ### Start Frontend ### first move to bloggy folder inside client folder ``` cd bloggy/client/bloggy npm install ``` ### Now you should be able to see frontend side login form ### Start Backend ### first move to bloggy folder then to server folder ``` cd bloggy/client/bloggy npm install ``` ### Now you can use it completely ##### Screen shorts of some pages - Profile Pag ![Screenshot (524)](https://github.com/123rishujha/bloggy/assets/107615122/b9f30dd8-cfef-4096-972a-329ad2fa1431) - Blogs Page ![Screenshot (523)](https://github.com/123rishujha/bloggy/assets/107615122/e8a47fe3-7383-4f34-9e29-48af574e4975) - Blogs Details Page ![Screenshot (526)](https://github.com/123rishujha/bloggy/assets/107615122/27b4f477-f4d9-49b6-a96a-fe82610ed19c) - Chat Page ![Screenshot (525)](https://github.com/123rishujha/bloggy/assets/107615122/410f2a65-88b7-4360-a802-a06e94caacc9)
Dynamic blogging platform that allows users to read, create, and edit blogs. It features real-time chat functionality for engaging with other users
chakra-ui,css,expressjs,html,javascript,mongodb,mongoose,nodejs,react,reactjs
2023-06-01T12:22:30Z
2023-06-21T04:57:10Z
null
1
4
23
0
1
2
null
null
JavaScript
Manish210103/Simple-Calculator
main
# Simple-Calculator Simple calculator using React ## Getting Started with Create React App This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). ... To learn React, check out the [React documentation](https://reactjs.org/). ...
Simple calculator using React
css,html,javascript,react
2023-05-29T09:50:02Z
2023-05-29T10:16:31Z
null
1
0
3
0
0
2
null
null
JavaScript
davitorress/Osiris-web
main
<p align="center"> <img src="docs/assets/logo.png" align="center" width="700"> </p> --- &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ![GitHub repo size](https://img.shields.io/github/repo-size/RianYuri/Learnify) ![GitHub](https://img.shields.io/github/license/RianYuri/Learnify) ![GitHub language count](https://img.shields.io/github/languages/count/RianYuri/Learnify) ![GitHub last commit](https://img.shields.io/github/last-commit/RianYuri/Learnify) # Tecnologias utilizadas <p align="center"> <img src="https://img.shields.io/badge/HTML-239120?style=for-the-badge&logo=html5&logoColor=white"> <img src="https://img.shields.io/badge/CSS-239120?&style=for-the-badge&logo=css3&logoColor=white"> <img src="https://img.shields.io/badge/JavaScript-F7DF1E?style=for-the-badge&logo=javascript&logoColor=black"> <img src="https://img.shields.io/badge/Python-3776AB?style=for-the-badge&logo=python&logoColor=white"> <img src="https://img.shields.io/badge/Flask-000000?style=for-the-badge&logo=flask&logoColor=white"> </p> # Instruções de Instalação ## Banco de dados noSQL MongoDB - Efetua o download e instalação do MongoDB [aqui](https://www.mongodb.com/try/download/community). - Baixe as coleções [deste repositório](https://github.com/mfelipegs/osiris-database/tree/main/db/collections) e importe-as em seu MongoDB, em um novo banco com o nome `Osiris`. ## Preparação da Venv (Virtual Environment) - Certifique-se de que sua máquina esteja com a ferramenta de gerenciamento de pacotes Python [pip](https://pypi.org/project/pip/). - Instale o pacote virtualenv, com o comando: `pip install virtualenv` - Após instalar o virtualenv, crie a sua virtual environment e a ative com os seguintes comandos: ### Windows `virtualenv venv_osiris` `venv_osiris\Scripts\activate.bat` ### Linux e MacOS `virtualenv venv_osiris` `source venv_osiris/bin/activate` - Agora que a virtualenv está ativada, instale as dependências do projeto: `pip install -r requirements.txt` Após isso, o projeto em Flask, Osiris, está pronto para ser executado.
Osiris is an ongoing undergraduate project that promotes healthier eating through the use of Non-Conventional Food Plants (PANCs, a Brazilian acronym). It provides cultivation information, diverse recipes, and allows users to create their own recipes. The web platform is developed using Python and Flask.
css,flask,html,javascript,mongodb,python
2023-05-21T13:36:01Z
2023-06-05T17:06:16Z
null
3
1
64
0
0
2
null
MIT
HTML
Benawi/Microverse-JS-Capstone
master
<a name="readme-top"></a> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [Live Demo](#live-demo) - [Walkthrough](#Walkthrough) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment](#triangular_flag_on_post-deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [📝 License](#license) # 📖 JS Capstone Project <a name="about-project"></a> JS Capstone Project - Microverse! project is a repository consisting of the following files: - HTML file - CSS file - JS files - HTML, CSS, and JS linters file - callbacks and promises used. - Implementation of External API - Learn how to use proper ES6 syntax. Use ES6 modules to write modular JavaScript. - Use webpack to bundle JavaScript. ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <ul> <li><a href="https://microverse.notion.site/HTML-CSS-Get-a-head-start-275eb85fd34b4416aa06ec635d69cdaf">HTML</a></li> <li><a href="https://microverse.notion.site/HTML-CSS-Get-a-head-start-275eb85fd34b4416aa06ec635d69cdaf">CSS</a></li> <li><a href="https://microverse.notion.site/HTML-CSS-Get-a-head-start-275eb85fd34b4416aa06ec635d69cdaf">JS</a></li> </ul> ## 🔑 Key Features <a name="key-features"></a> ### Javascript Capstone Project: [Requirements](https://github.com/microverseinc/curriculum-javascript/blob/main/group-capstone/js_capstone.md) ### Features Added: - [x] Interfaces: - The home page. - The comments popup. - [x] The layout of the wireframes provided is followed and the layouts are personalized for the rest of the design including colors, typographies, spacings, etc. - Home page - When the page loads, the web app retrieves data from [API](https://rapidapi.com/hub) and shows the list of items on the screen used. - The [Involvement API](https://us-central1-involvement-api.cloudfunctions.net/capstoneApi/apps/6b6MwShRJVij7XaDVDix/likes/) to show the item likes used. - The Page makes only 2 requests: - One to the base [API](https://rapidapi.com/hub). - And one to the [Involvement API](https://us-central1-involvement-api.cloudfunctions.net/capstoneApi/apps/6b6MwShRJVij7XaDVDix/likes/). - When the user clicks on the Like button of an item, the interaction is recorded in the [Involvement API](https://us-central1-involvement-api.cloudfunctions.net/capstoneApi/apps/6b6MwShRJVij7XaDVDix/likes/) and the screen is updated. - When the user clicks on the "Comments" button, the Comments popup appears from this [API Storega](https://us-central1-involvement-api.cloudfunctions.net/capstoneApi/apps/6b6MwShRJVij7XaDVDix/comments). - Home page header and navigation similar to the given [mockup](https://github.com/microverseinc/curriculum-javascript/blob/main/group-capstone/images/Home.png). - Home page footer similar to the given [mockup](https://github.com/microverseinc/curriculum-javascript/blob/main/group-capstone/images/Home.png). - [x] Comments popup - When the popup loads, the webapp retrieves data from: - The selected API shows details about the selected item. - The Involvement API to show the item comments. - When the user clicks on the "Comment" button, the data is recorded in the Involvement API, and the screen is updated. - When the popup loads, the webapp retrieves data from The selected API and shows details about the selected item. - [x] Counters We have counters in all the interfaces that show: - The number of items (home). - The number of comments (comments popup). <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🚀 Live Demo <a name="live-demo"></a> [Live Demo Link ](https://benawi.github.io/Microverse-JS-Capstone/dist/) <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 👁 Walkthrough <a name="Walkthrough"></a> [Live vedio](https://drive.google.com/file/d/1JdyRRXO2_W1Fq5bu_4MYirS2-VoofdFz/view?usp=sharing) <p align="right">(<a href="#readme-top">back to top</a>)</p> ### 💻Getting Started <a name="getting-started"></a> To get a local copy up and running, follow these steps. ### Setup Clone this repository to your desired folder: > cd my-folder > git clone git@github.com:Microverse-JS-Capstone.git ### Prerequisites In order to run this project you need: - GitHub account; - git installed on your OS. ### Install > [Linters](https://github.com/microverseinc/linters-config/tree/master/html-css-js) - Installations required to run this project: ### Install the node module - Run the following command: ``` npm install ``` ### Install the webpack-cli. - Run the following command: ``` npm install webpack webpack-cli --save-dev ``` ### Install the plugin and adjust the webpack.config.js file - Run the following command: ``` npm install --save-dev html-webpack-plugin ``` ### In order to import a CSS file add the style-loader and css-loader to your module configuration - Run the following command: ``` npm install --save-dev style-loader css-loader ``` ### webpack-dev-server - Run the following command: ``` npm install --save-dev webpack-dev-server ``` ### Webhint installation. - Run the following command: ``` npm install --save-dev hint@7.x ``` ### Stylelint installation. - Run the following command: ``` npm install --save-dev stylelint@13.x stylelint-scss@3.x stylelint-config-standard@21.x stylelint-csstree-validator@1.x ``` ### ESLint - Run ``` npm install --save-dev eslint@7.x eslint-config-airbnb-base@14.x eslint-plugin-import@2.x babel-eslint@10.x ``` ### Usage You can use this project by cloning it to your folder and changing index.html and styles.css files. ### Run tests To run tests, run the following commands: To track linter errors locally follow these steps: Download all the dependencies run: ``` npm install ``` Track HTML linter errors run: ``` npx hint. ``` Track CSS linter errors run: ``` npx stylelint "**/*.{css,scss}" ``` Track JavaScript linter errors run: ``` npx eslint . ``` ### Deployment You can redeploy this project by adding new lines of code to source files. <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 👥 Authors <a name="authors"></a> ### 👤 Habtamu Alemayehu - GitHub: [Benawi](https://github.com/Benawi) ### 👤 ANTHONY OBI - GitHub: [Megagig](https://github.com/Megagig) <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🔭 Future Features <a name="future-features"></a> - User Based Authentication for commet and like <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🤝 Contributing <a name="contributing"></a> Contributions, issues, and feature requests are welcome! <p align="right">(<a href="#readme-top">back to top</a>)</p> ## ⭐️ Show your support <a name="support"></a> Give us ⭐️ If you like this project! <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🙏 Acknowledgments <a name="acknowledgements"></a> - We would like to thank Microverse program for providing us this great chance. <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 📝 License <a name="license"></a> This project is [MIT](./MIT.md) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
"A dynamic webiste" is about building group web application based on an external API. We will select an API that provides data about a topic that we like and then build the webapp around it.
api-rest,dev-server,javascript,webpack
2023-05-29T08:36:44Z
2023-12-18T18:02:06Z
null
2
12
109
22
0
2
null
null
JavaScript
stefanahutupasu/chess-puzzle-game
master
# Chess Puzzle Thesis Project This repository contains the source code for the technical part of my thesis, titled "Developing an Engaging Chess Puzzle using Design Patterns". This project was undertaken as part of my final year of the Computer Science Bachelor Degree program at Babes-Bolyai University of Cluj Napoca. The project focuses on creating an interactive chess puzzle application that showcases the practical implementation of design patterns in game development. ## About This thesis project explores the intersection of chess puzzles, game development, and design patterns. The project aims to create an interactive chess puzzle application that leverages various design patterns to enhance the user experience and showcase their relevance in game development. ## Features - Interactive chess puzzle interface. - Implementation of various design patterns to optimize code structure. - Integration of chess puzzle solutions and game mechanics. - User-friendly graphical interface. ## Installation The game itself can be accessed through GitHub Pages, at https://stefanahutupasu.github.io/chess-puzzle-game/. Simply visit the provided link in your web browser to start play the game. No additional installation steps are required. ## Usage - **Generate New Puzzle**: Clicking this button will generate a new chess puzzle for you to solve. - **Interact with Pieces**: To make a move, click on a piece and then drag and drop it to the desired square. Valid moves will be highlighted as you interact with the pieces. - **Show Hint**: If you find yourself stuck, you can click the "Show Hint" button. This will highlight the piece that should be moved next, providing a helpful clue. - **Reset Score**: The "Reset Score" button allows you to reset the score, which keeps track of the number of solved puzzles. This score is retained using session storage, so you can track your progress over time. ## Credits This project was developed by [Stefana Hutupasu](https://github.com/stefanahutupasu).
This repository hosts my thesis project, "Developing an Engaging Chess Puzzle using Design Patterns," created during my Computer Science Bachelor's Degree at Babes Bolyai University. The project, implemented with JavaScript, HTML, and CSS, demonstrates the application of various design patterns.
chess,chess-puzzle,css,design-patterns,html,javascript,ux-ui
2023-06-06T12:08:28Z
2023-08-10T22:56:21Z
null
1
0
6
0
0
2
null
null
JavaScript
AishatAdewoyin/banking-system
master
### INTERNSHIP & MENTORSHIP (Mentor: Martha Kaburi) on: ## Dynamic Banking Website A simple and dynamic website that allows users(bank system admins) to transfer money between multiple customers. This website is designed to handle up to 10 customers and record all transfer transactions in a database. There are login pages & user creation functionality included in this website. ### The Features Home Page: The landing page of the website. View all Customers: Displays a list of all the customers in the database. Select and View One Customer: Allows users to view the details of a specific customer. Transfer Money: it will enable users to transfer money from one customer to another. Select customer to transfer to: Provides a list of customers to choose from for transferring money. View all Customers: Displays the updated list of all customers after a transfer transaction. Database The website requires a database to store customer information and transfer records. I'm using PostgreSQL. For this project, I will create a database with a table named "Customers" and a table named "Transfers". The "Customers" table will include the following fields: Name: The name of the customer. Email: The email address of the customer. Current Balance: The current balance of the customer. The "Transfers" table will record all transfer transactions and include the following fields: Sender: The customer who sent the money. Receiver: The customer who received the money. Amount: The amount of money transferred. Timestamp: The timestamp of the transfer. Making sure I populate the "Customers" table with dummy data for up to 10 customers. ### Hosting Using any of 000webhost, GitHub Pages, Heroku, or Netlify.
Internship & Mentorship compulsory project
authentication,authorization,backend-development,css,database-management,django,front-end-development,html,javascript,python3
2023-06-03T20:46:56Z
2023-11-18T20:59:20Z
null
1
56
217
0
1
2
null
null
CSS
bennycode/conventionalscripts.org
main
# Conventional Scripts ## Mission Statement Our mission is to address the existing gap in the JavaScript ecosystem by establishing a streamlined naming scheme for "scripts" in "package.json" files. Introducing the "[Conventional Scripts](https://conventionalscripts.org/)" specification, we aim to define a set of widely accepted script names through collaboration with the community and popular projects. Our goal is to foster consistency and standardization in script naming conventions. We invite you to join our mission by actively engaging in discussions on GitHub and making valuable contributions through pull requests. Together, let's create a stronger and more cohesive JavaScript ecosystem. ## Ambassadors [![Benny Code on Stack Exchange][stack_exchange_bennycode_badge]][stack_exchange_bennycode_url] [stack_exchange_bennycode_badge]: https://stackexchange.com/users/flair/203782.png?theme=default [stack_exchange_bennycode_url]: https://stackexchange.com/users/203782/benny-neugebauer?tab=accounts
Specification of npm script names
javascript,nodejs,npm,typescript,conventional-scripts
2023-05-26T15:54:26Z
2023-08-06T21:57:30Z
null
1
8
15
0
1
2
null
null
JavaScript
omid-bakeri/DigiGard
main
# DigiGard DigiGard is a very useful web application for people and all people who are looking for goods in DigiKala and want to find the best goods and buy them. This web service and web application is written in Farsi language and uses technologies such as html, css, javascript, tailwind,
DigiGard is a very useful web application for people and all people who are looking for goods in DigiKala and want to find the best goods and buy them. This web service and web application is written in Farsi language and uses technologies such as html, css, javascript, tailwind,
api,css3,html5,javascript,tailwind
2023-06-02T18:11:18Z
2023-06-07T04:41:01Z
null
1
0
7
2
0
2
null
null
CSS
lucianoriveros/Encriptador-y-Desencriptador-Challenge-ONE
main
# 🚀 Challenge Encriptador | Oracle + Alura ENCRIPTADOR y DESENCRIPTADOR de texto desarrollado como Sprint 1 para PROGRAMA ONE DE ALURA LATAM <a href="https://lucianoriveros.github.io/Encriptador-y-Desencriptador-Challenge-ONE/" target="_blank" >Visualiza mi repositorio</a> ![Captura de pantalla (341)](https://github.com/luciano9912/Encriptador-y-Desencriptador---Challenge-ONE/assets/107219907/ad1c76f8-fb66-4ef3-8165-6cc03a624d48) 📝 Descripción Este proyecto es una aplicación que utiliza HTML, CSS, JavaScript para encriptar y desencriptar texto. La encriptación se realiza mediante la sustitución de ciertas letras por otras según un conjunto específico de reglas. La aplicación solo acepta letras minúsculas y no se permiten acentos ni caracteres especiales. La página web cuenta con campos para que el usuario pueda ingresar el texto que desea encriptar o desencriptar y seleccionar la opción correspondiente. El resultado de la operación se muestra en la pantalla y existe la opción de copiar el texto encriptado o desencriptado al portapapeles mediante un botón de "copiar".!
ENCRIPTADOR y DESENCRIPTADOR de texto desarrollado como Sprint 1 para PROGRAMA ONE DE ALURA LATAM
challengeonecodificador5,css3,html5,javascript
2023-05-24T20:20:19Z
2023-10-17T00:18:49Z
null
1
0
11
0
0
2
null
null
CSS
ramirezmz/inapropriate-words
master
# Inappropriate Words A simple javascript library to detect inappropriate words in a string. Til now I only have a list of following languages: - [x] English - [x] Portuguese - [x] Spanish - [x] French - [x] German - [x] Italian ## Usage **Requirements** - Node.js - NPM **Examples** ```javascript const InappropriateWords = require('inappropriate-words'); const Filter = new InappropriateWords(); const text = 'Neste texto temos algumas palavras que serão filtradas, merda é uma palavra inapropriada.' const filteredText = Filter.check(text); console.log(filteredText); // Needs to return true ``` ## Contributing Send a pull request with your changes and tests!
Handle with inappropriate words in your project.
javascript,nodejs
2023-05-26T03:29:05Z
2023-05-26T19:39:38Z
null
1
0
25
0
0
2
null
MIT
JavaScript
Yordinia/JavaScript-Capstone
dev
![](https://img.shields.io/badge/Microverse-blueviolet) # 📖 JavaScript Capstone Project - Meals App # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [💻 Getting Started](#getting-started) - [Deployment](#live-demo) - [Authors Zoom Recording](#zoom) - [Prerequisites](#prerequisites) - [Setup](#setup) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [📝 License](#license) # 📖 JavaScript Capstone Project meals app <a name="about-project"></a> **JavaScript Capstone Project meals app** is a progressive web app that displays meals fetched from an API, and also displays comments about the meal submitted by different viewers. It also allows you like a certain element, thanks to the additional Capstone-API provided by microverse. ## 🛠 Built With <a name="built-with"></a> - **Node NPM manager** - **Front-end dev languages** - **Served with webpack** - **Deployed with gh-pages** - **Tested with Jest** ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li>HTML</li> <li>Javascript & DOM</li> <li> ES6 modules </li> <li> Webpack </li> <li> API </li> <li> Jest </li> </ul> </details> ### Key Features <a name="key-features"></a> - **use gitflow** - **connect to the Meals API** - **sends, receives and deisplay data from these two APIs.** - **[Meals API](https://www.themealdb.com/api/json/v1/1/filter.php?c=Chicken)** - **[Interactive API](https://us-central1-involvement-api.cloudfunctions.net/capstoneApi/apps/9vUKLfgfPbeVlsgu5dzp)** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- GETTING STARTED --> ## 💻 Getting Started <a name="getting-started"></a> ## 🚀 Live Demo <a name="live-demo"></a> - Coming Soon ## 🚀 Zoom Video (explanation) <a name="zoom"></a> [Author's Explanation](https://drive.google.com/file/d/1UiVaUWXq7xTGcRfd5qR4ujbL2HQR6b1j/view?usp=sharing) <p align="right">(<a href="#readme-top">back to top</a>)</p> To get a local copy up and running, follow these steps. ### Prerequisites Run the following commands, in order to run this project: - `npm install` - For tests `npm i jest-environment-jsdom --save-dev && npm test` ### Setup Clone this repository to your desired folder: ```sh cd my-folder git clone git@github.com:yordinia/JavaScript-Capstone.git ``` ### Install Install this project with: ```sh cd JavaScript-Capstone npm install ``` ### Usage To use this project - Run `npm start` or `npm run build` - Open `index.html` from /dist with your prefered browser <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 👥 Author <a name="authors"></a> 👤 **Misal Azeem** - GitHub: [@misalazeem](https://github.com/misalazeem) - Twitter: [@misal_azeem](https://twitter.com/misal_azeem) - LinkedIn:[@misal-94755a82](https://www.linkedin.com/in/misal-94755a82/) 👤 **Yordanos Temesgen** - GitHub: [@yordinia](https://github.com/yordinia) - Twitter: [@yordinaM](https://twitter.com/yordinaM) - LinkedIn: [@yordanos-temesgen-941727233](https://www.linkedin.com/in/yordanos-temesgen-941727233/) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> - [ ] **Set up the resevations section** - [ ] **Better UI, speed and interactivity** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- CONTRIBUTING --> ## 🤝 Contributing <a name="contributing"></a> Contributions, issues, and feature requests are welcome! Feel free to check the [issues page](https://github.com/yordinia/JavaScript-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 please give a star ⭐️ to this project <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to thank Microverse team, coding partners for the amazing collobrating project <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 📝 License <a name="license"></a> This project is [MIT](https://github.com/Yordinia/yordinia/blob/main/LICENCE.md) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
A web app that uses's Meals API to grap and display meals, and Interactive API to manage likes and comments.
css,html,javascript,jest-tests,webpack
2023-05-22T08:08:36Z
2023-05-26T12:32:25Z
null
2
15
128
11
1
2
null
null
JavaScript