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
romaniso/easy-peasy-platform
master
<h1 align="center"> <a href="http://www.easypeasy-lang.com"><img src="./client/src/assets/images/logo.png" alt="Easy-peasy lang logo" width="300"></a> </h1> <p align="center"> <a href="https://github.com/romaniso/easy-peasy-platform/stargazers"><img src="https://img.shields.io/github/stars/romaniso/easy-peasy-platform.svg?style=social"></a> <a href="https://github.com/romaniso/easy-peasy-platform/network/members"><img alt="GitHub forks" src="https://img.shields.io/github/forks/romaniso/easy-peasy-platform.svg?style=social"> </a> <img alt="Static Badge" src="https://img.shields.io/badge/version-beta-orange"> <img alt="Static Badge" src="https://img.shields.io/badge/license-ECL-%20%23a5b4fc"> </p> <p align="center"> An English learning platform with interactive tasks, user's dashboard, and vocabulary storage. Covers grammar, vocabulary, listening, and reading. Offers educational articles on various English topics. </p> ## Overview This short gif presents the main features of the app: ![Quick overview of the project](https://i.ibb.co/5h5Vd0B/ezgif-3-9b8626aaa2.gif) Additionally, if you would like to watch the complete overview video with voice description, you can [go here](https://www.youtube.com/watch?v=KQTOrAbNrms&ab_channel=RomanIsopenko). ## Features This app features: - **Interactive exercises** of various types, including fill-box, flash-card, drag-and-drop, dropdown, multiple-choice, fill-in-letter, match-heading, and listen-and-type. - Four main **learning modules**: grammar, vocabulary, reading, and listening. - **An article section** with a preview page where users can filter articles based on language proficiency levels. Each article page fetches markdown files from the database and transforms them into a visually user-friendly format. - **Authentication and authorization** functionalities, allowing both users and admins to log in. Security is enhanced using **JSON Web Tokens (JWT)**. Unauthorized users are redirected to appropriate pages - **A dashboard page** where users can access statistical information about their performance on the app. Additionally, users can set personal goals to track their progress. - **A profile page** where users can input personal information including their first and last name, email address, preferences, and motivation for learning English. - **A settings page** where users can perform various actions such as changing their passwords, choosing the dark or light theme of the app, deleting their account, and switching between English, Polish, and Ukrainian languages - **A glossary page** containing all the words and phrases added in the Reading section units. Users can edit, mark with a star, delete, revise, and filter entries in the glossary list. ## Used technologies <div align="center" style="margin-bottom: 10px"> <code><img width="30" src="https://user-images.githubusercontent.com/25181517/202896760-337261ed-ee92-4979-84c4-d4b829c7355d.png" alt="Tailwind CSS" title="Tailwind CSS"/></code> <code><img width="30" src="https://user-images.githubusercontent.com/25181517/183897015-94a058a6-b86e-4e42-a37f-bf92061753e5.png" alt="React" title="React"/></code> <code><img width="30" src="https://user-images.githubusercontent.com/25181517/183890598-19a0ac2d-e88a-4005-a8df-1ee36782fde1.png" alt="TypeScript" title="TypeScript"/></code> <code><img width="30" src="https://user-images.githubusercontent.com/25181517/183568594-85e280a7-0d7e-4d1a-9028-c8c2209e073c.png" alt="Node.js" title="Node.js"/></code> <code><img width="30" src="https://user-images.githubusercontent.com/25181517/183859966-a3462d8d-1bc7-4880-b353-e2cbed900ed6.png" alt="Express" title="Express"/></code> <code><img width="30" src="https://user-images.githubusercontent.com/25181517/187896150-cc1dcb12-d490-445c-8e4d-1275cd2388d6.png" alt="Redux" title="Redux"/></code> <code><img width="30" src="https://user-images.githubusercontent.com/25181517/187955005-f4ca6f1a-e727-497b-b81b-93fb9726268e.png" alt="Jest" title="Jest"/></code> <code><img width="30" src="https://github-production-user-asset-6210df.s3.amazonaws.com/62091613/261395532-b40892ef-efb8-4b0e-a6b5-d1cfc2f3fc35.png" alt="Vite" title="Vite"/></code> <code><img width="30" src="https://user-images.githubusercontent.com/25181517/182884177-d48a8579-2cd0-447a-b9a6-ffc7cb02560e.png" alt="mongoDB" title="mongoDB"/></code> </div> This project is based on MERN stack which includes: - **Frontend**: - React.js - Tailwind.css - TypeScript - Redux-toolkit - **Backend**: - Node.js - Express.js - Mongoose - **Database**: - MongoDB - **Testing**: - Jest - **Deployment**: - Render.com - **Patterns**: - MVC ## Project Dependencies ### Client: ![Client Dependencies](https://i.ibb.co/NNbXrGY/client-dep.png) ![Client Dev Dependencies](https://i.ibb.co/Jsqt7Sw/client-devdep.png) ### Server: ![Client Dependencies](https://i.ibb.co/Jj7YbKM/server-dep.png) ![Client Dev Dependencies](https://i.ibb.co/BCcD9fg/server-devdep.png) ## Run Locally **Clone the project with HTTPS** ```bash git clone https://github.com/romaniso/easy-peasy-platform.git ``` **Go to the client directory** ```bash cd client ``` **Install dependencies** ```bash npm install ``` **Start the server** ```bash npm run dev ``` **Go to the server directory (if you are in the client directory):** ```bash cd ../server ``` **Go to the server directory (if you are in the root directory):** ```bash cd server ``` **Install dependencies** ```bash npm install ``` Creating a .env file with necessary values typically involves setting up sensitive information such as database credentials, API keys, and other configurations. Below is an example of what your .env file might look like with placeholders for real values: **.env**: ```bash # MongoDB configuration MONGODB_URI=your_mongodb_uri # AWS configuration AWS_ACCESS_KEY_ID=your_aws_access_key_id AWS_SECRET_ACCESS_KEY=your_aws_secret_access_key AWS_REGION=your_aws_region AWS_BUCKET_NAME=your_aws_bucket_name # Other configurations SECRET_KEY=your_secret_key ``` Replace your_mongodb_uri, your_aws_access_key_id, your_aws_secret_access_key, your_aws_region, your_aws_bucket_name, and your_secret_key with your actual values. Ensure that your .env file is added to your .gitignore to prevent it from being pushed to your repository and exposed publicly. As for creating MongoDB databases and AWS buckets, you would typically do this through their respective dashboards or command-line interfaces. Instructions for these processes vary depending on the platform and tools you're using. You may refer to the documentation provided by MongoDB and AWS for detailed instructions on how to create databases and buckets. **Start the server** ```bash npm run dev ``` ## Todo list - [ ] Refactor the speech reader for flashcards. - [ ] Add UI scroll animations. - [ ] Add a "show right answers" button for the exercise page. - [ ] Create common types and enums for client and server apps. - [ ] Implement lazy loading for some components. - [ ] Add a replacement test for new users. ## Releases ### beta | 0.1.0 - Profile Page ✅ - Settings Page ✅ - Dashboard Page ✅ - Glossary Page ✅ - Exercise pages ✅ - Article pages ✅ ## Upcoming releases announcements ### 1.0.0 - Admin Page - Placement Test - Simple exercise generator features - Inbox - Schedule - Unit tests - Podcast pages ## Authors - [@romaniso](https://www.github.com/romaniso) ## Acknowledgements - [MegaK - May edition 2023](https://www.megak.pl/) for backend knowledge; - [Dave Gray](https://github.com/gitdagray) for a great Authentication course; - [Stephen Grider](https://www.udemy.com/course/react-redux/) for a great React course. ## License **Educational Community License (ECL)**: It allows users to view and modify the code for educational purposes, but prohibits commercial use and requires any modifications to be shared under the same terms. [For more information](https://en.wikipedia.org/wiki/Educational_Community_License).
An English learning platform with interactive tasks, user's dashboard, and vocabulary storage. Covers grammar, vocabulary, listening, and reading. Offers educational articles on various English topics.
express,javascript,mongodb,nodejs,react,reactjs,redux,redux-toolkit,tailwindcss,typescript
2023-06-11T08:35:20Z
2024-05-23T14:49:57Z
null
2
3
568
0
2
4
null
null
TypeScript
Bibiwei-Pere/Advice-generator-app
main
### Advice generator app solution This is a solution to the [Advice generator app challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/advice-generator-app-QdUG-13db). ### Screenshot <img src="/design/active-states.jpg" /> ### Links - [Live Site URL](https://advicegenerator1.netlify.app) ## My process ### Built with - Semantic HTML5 markup - CSS custom properties - Flexbox - Mobile-first workflow - Javascript ## Author - Website - [Bibiwei Pere](https://perebibiwei.netlify.app) - Frontend Mentor - [@Bibiwei-Pere](https://www.frontendmentor.io/profile/Bibiwei-Pere) - Twitter - [@Bibiwei_Pere](https://www.twitter.com/Bibiwei_Pere)
App that automatically generates advice. There is also a pause and play button
advice-generator-app,frontend-mentor,javascript
2023-06-26T21:22:29Z
2023-06-26T21:26:35Z
null
1
0
2
0
0
4
null
null
CSS
Bibiwei-Pere/Interactive-card
main
# Frontend Mentor - Interactive card details form solution This is a solution to the [Interactive card details form challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/interactive-card-details-form-XpS8cKZDWw). ### Screenshot <img src="/design/active-states.jpg" /> ### Links - Solution URL: [Interactive card](https://github.com/Bibiwei-Pere/Interactive-card) - Live Site URL: [Interactive card](https://Interactive01.netlify.app) ## My process ### Built with - Semantic HTML5 markup - CSS custom properties - Flexbox - Mobile-first workflow - Javascript ## Author - Website - [Bibiwei Pere](https://perebibiwei.netlify.app) - Frontend Mentor - [@Bibiwei-Pere](https://www.frontendmentor.io/profile/Bibiwei-Pere) - Twitter - [@Bibiwei_Pere](https://www.twitter.com/Bibiwei_Pere)
This is a solution to the Interactive card details form challenge on Frontend Mentor.
card,css,javascript,online-shop
2023-06-19T06:49:52Z
2023-06-22T17:46:55Z
null
1
0
6
0
0
4
null
null
JavaScript
BaseMax/TinderGraphQLTS
main
# Tinder Clone - GraphQL Back-end This project is a GraphQL-based back-end for a Tinder clone application. It provides the necessary API for managing user accounts, profiles, matching, and messaging functionalities similar to the popular dating app Tinder. ## Features The Tinder clone back-end offers the following features: - User Management - User registration - User login - User authentication and authorization - Profiles - Create and update user profiles - Fetch user profiles - Search and filter profiles based on various criteria (e.g., age, location, interests) - Matching - Algorithm for matching users based on their preferences and interests - Accept or reject potential matches - Retrieve matched user profiles - Messaging - Send and receive messages between matched users - Real-time messaging functionality - Notifications for new messages ## Technologies Used The Tinder clone back-end is built using the following technologies: - **GraphQL:** A query language for APIs, used for defining the API schema and executing queries/mutations. - **Node.js:** A JavaScript runtime environment used for building scalable server-side applications. - **Express.js:** A web application framework for Node.js, used for building the GraphQL server. - **MongoDB:** A NoSQL database used for storing user data, profiles, and messages. - **Mongoose:** An Object Data Modeling (ODM) library for MongoDB, used for modeling and interacting with the database. - **Apollo Server:** A GraphQL server library for Node.js, used for handling GraphQL requests and responses. ## Setup and Installation To set up and run the Tinder clone back-end locally, follow these steps: Clone the repository: ```bash git clone https://github.com/BaseMax/TinderGraphQLTS.git ``` Install dependencies: ```bash cd TinderGraphQLTS npm install ``` Configure environment variables: - Rename the .env.example file to .env. - Update the .env file with your own configuration, such as the database connection string and secret keys. - Run the application: ```bash npm start ``` This will start the GraphQL server on http://localhost:4000/graphql. You can now send GraphQL queries and mutations to the server using a tool like GraphQL Playground or Insomnia. Open the respective tool and access http://localhost:4000/graphql to begin interacting with the API. ## GraphQL Demo ![Tinder GraphQL TS](screenSchots/acceptMacth.png) ![Tinder GraphQL TS](screenSchots/createMatch.png) ![Tinder GraphQL TS](screenSchots/getAllMatchSuggestions.png) ![Tinder GraphQL TS](screenSchots/getAllMessages-In-match.png) ![Tinder GraphQL TS](screenSchots/getAllUserProfiles.png) ![Tinder GraphQL TS](screenSchots/login.png) ![Tinder GraphQL TS](screenSchots/removeMessage.png) ![Tinder GraphQL TS](screenSchots/searchUser.png) ![Tinder GraphQL TS](screenSchots/signup.png) ![Tinder GraphQL TS](screenSchots/updateUser.png) ## GraphQL ### Queries - getUser(id: ID!): User Fetches a user by their unique identifier. - getProfile(userId: ID!): Profile Retrieves the profile associated with a specific user. - getPotentialMatches(userId: ID!): [Profile] Retrieves a list of potential matches for a user based on their preferences and interests. - getMatches(userId: ID!): [Profile] Retrieves a list of matched user profiles for a given user. - getMessages(userId: ID!, matchId: ID!): [Message] Retrieves a list of messages exchanged between a user and their matched user. - getLikedProfiles(userId: ID!): [Profile] Retrieves a list of profiles that a user has liked. - getDislikedProfiles(userId: ID!): [Profile] Retrieves a list of profiles that a user has disliked. - getMatchedProfiles(userId: ID!): [Profile] Retrieves a list of profiles that have been mutually matched with a user. - getConversation(userId: ID!, matchId: ID!): Conversation Retrieves the conversation history between a user and a specific match. - getConversations(userId: ID!): [Conversation] Retrieves a list of conversations that a user is currently engaged in. ### Mutations - registerUser(input: RegisterInput!): User Registers a new user with the provided user details. - loginUser(email: String!, password: String!): AuthPayload Authenticates a user with the provided email and password, returning an authentication token. - updateProfile(userId: ID!, input: UpdateProfileInput!): Profile Updates the profile information for a given user. - swipeLeft(userId: ID!, potentialMatchId: ID!): Match Marks a potential match as rejected by a user. - swipeRight(userId: ID!, potentialMatchId: ID!): Match Marks a potential match as accepted by a user. - sendMessage(senderId: ID!, receiverId: ID!, message: String!): Message Sends a message from the sender to the receiver. - likeProfile(userId: ID!, profileId: ID!): Like Records that a user has liked a specific profile. - dislikeProfile(userId: ID!, profileId: ID!): Dislike Records that a user has disliked a specific profile. - unlikeProfile(userId: ID!, profileId: ID!): Like Removes the like status for a user on a specific profile. - unmatch(userId: ID!, matchId: ID!): Match Unmatches two users, ending the match connection between them. - deleteConversation(userId: ID!, matchId: ID!): Boolean Deletes the conversation history between a user and a specific match. - updateMessageReadStatus(messageId: ID!): Message Updates the read status of a specific message to mark it as read. ## GraphQL Types ```graphql type User { id: ID! name: String! email: String! createdAt: DateTime! updatedAt: DateTime! } type Profile { id: ID! userId: ID! bio: String age: Int gender: Gender location: String interests: [String] createdAt: DateTime! updatedAt: DateTime! } type AuthPayload { token: String! user: User! } type Match { id: ID! user1: User! user2: User! createdAt: DateTime! updatedAt: DateTime! } type Like { id: ID! user: User! profile: Profile! createdAt: DateTime! updatedAt: DateTime! } type Dislike { id: ID! user: User! profile: Profile! createdAt: DateTime! updatedAt: DateTime! } type Conversation { id: ID! user1: User! user2: User! messages: [Message] createdAt: DateTime! updatedAt: DateTime! } type Message { id: ID! conversationId: ID! sender: User! receiver: User! content: String! createdAt: DateTime! updatedAt: DateTime! } enum Gender { MALE FEMALE OTHER } scalar DateTime type Block { id: ID! user: User! blockedUser: User! createdAt: DateTime! updatedAt: DateTime! } type Subscription { newMatch(userId: ID!): Match newMessage(conversationId: ID!): Message } input RegisterInput { name: String! email: String! password: String! } input UpdateProfileInput { bio: String age: Int gender: Gender location: String interests: [String] } type Notification { id: ID! userId: ID! message: String! createdAt: DateTime! updatedAt: DateTime! } input UpdateUserInput { name: String email: String password: String } type Query { getUser(id: ID!): User getProfile(userId: ID!): Profile getPotentialMatches(userId: ID!): [Profile] getMatches(userId: ID!): [Profile] getMessages(userId: ID!, matchId: ID!): [Message] getLikedProfiles(userId: ID!): [Profile] getDislikedProfiles(userId: ID!): [Profile] getMatchedProfiles(userId: ID!): [Profile] getConversation(userId: ID!, matchId: ID!): Conversation getConversations(userId: ID!): [Conversation] getBlocks(userId: ID!): [Block] getNotifications(userId: ID!): [Notification] } type Mutation { registerUser(input: RegisterInput!): User loginUser(email: String!, password: String!): AuthPayload updateProfile(userId: ID!, input: UpdateProfileInput!): Profile swipeLeft(userId: ID!, potentialMatchId: ID!): Match swipeRight(userId: ID!, potentialMatchId: ID!): Match sendMessage(senderId: ID!, receiverId: ID!, message: String!): Message likeProfile(userId: ID!, profileId: ID!): Like dislikeProfile(userId: ID!, profileId: ID!): Dislike unlikeProfile(userId: ID!, profileId: ID!): Like unmatch(userId: ID!, matchId: ID!): Match deleteConversation(userId: ID!, matchId: ID!): Boolean updateMessageReadStatus(messageId: ID!): Message blockUser(userId: ID!, blockedUserId: ID!): Block unblockUser(userId: ID!, blockedUserId: ID!): Boolean updateUserName(userId: ID!, name: String!): User updateUserEmail(userId: ID!, email: String!): User updateUserPassword(userId: ID!, password: String!): User markNotificationAsRead(notificationId: ID!): Notification } type Subscription { // ...existing subscriptions... newNotification(userId: ID!): Notification } ``` ## GraphQL Examples - getUser(id: ID!): User ```graphql query { getUser(id: "123") { id name email createdAt updatedAt } } ``` - getProfile(userId: ID!): Profile ```graphql query { getProfile(userId: "123") { id userId bio age gender location interests createdAt updatedAt } } ``` getPotentialMatches(userId: ID!): [Profile] ```graphql query { getPotentialMatches(userId: "123") { id userId bio age gender location interests createdAt updatedAt } } ``` getMatches(userId: ID!): [Profile] ```graphql query { getMatches(userId: "123") { id userId bio age gender location interests createdAt updatedAt } } ``` getMessages(userId: ID!, matchId: ID!): [Message] ```graphql query { getMessages(userId: "123", matchId: "456") { id conversationId sender { id name email } receiver { id name email } content createdAt updatedAt } } ``` ## Mutation Examples - registerUser(input: RegisterInput!): User ```graphql mutation { registerUser(input: { name: "John Doe", email: "john@example.com", password: "password" }) { id name email createdAt updatedAt } } ``` - loginUser(email: String!, password: String!): AuthPayload ```graphql mutation { loginUser(email: "john@example.com", password: "password") { token user { id name email createdAt updatedAt } } } ``` - updateProfile(userId: ID!, input: UpdateProfileInput!): Profile ```graphql mutation { updateProfile(userId: "123", input: { bio: "I love hiking and traveling", age: 28, gender: MALE, location: "New York" }) { id userId bio age gender location interests createdAt updatedAt } } ``` - swipeLeft(userId: ID!, potentialMatchId: ID!): Match ```graphql mutation { swipeLeft(userId: "123", potentialMatchId: "456") { id user1 { id name email } user2 { id name email } createdAt updatedAt } } ``` - swipeRight(userId: ID!, potentialMatchId: ID!): Match ```graphql mutation { swipeRight(userId: "123", potentialMatchId: "456") { id user1 { id name email } user2 { id name email } createdAt updatedAt } } ``` - getLikedProfiles(userId: ID!): [Profile] ```graphql query { getLikedProfiles(userId: "123") { id userId bio age gender location interests createdAt updatedAt } } ``` - getDislikedProfiles(userId: ID!): [Profile] ```graphql query { getDislikedProfiles(userId: "123") { id userId bio age gender location interests createdAt updatedAt } } ``` - getMatchedProfiles(userId: ID!): [Profile] ```graphql query { getMatchedProfiles(userId: "123") { id userId bio age gender location interests createdAt updatedAt } } ``` - getConversation(userId: ID!, matchId: ID!): Conversation ```graphql query { getConversation(userId: "123", matchId: "456") { id user1 { id name email } user2 { id name email } messages { id conversationId sender { id name email } receiver { id name email } content createdAt updatedAt } createdAt updatedAt } } ``` - getConversations(userId: ID!): [Conversation] ```graphql query { getConversations(userId: "123") { id user1 { id name email } user2 { id name email } messages { id conversationId sender { id name email } receiver { id name email } content createdAt updatedAt } createdAt updatedAt } } ``` - likeProfile(userId: ID!, profileId: ID!): Like ```graphql mutation { likeProfile(userId: "123", profileId: "456") { id user { id name email } profile { id userId bio age gender location interests createdAt updatedAt } createdAt updatedAt } } ``` - dislikeProfile(userId: ID!, profileId: ID!): Dislike ```graphql mutation { dislikeProfile(userId: "123", profileId: "456") { id user { id name email } profile { id userId bio age gender location interests createdAt updatedAt } createdAt updatedAt } } ``` - unlikeProfile(userId: ID!, profileId: ID!): Like ```graphql mutation { unlikeProfile(userId: "123", profileId: "456") { id user { id name email } profile { id userId bio age gender location interests createdAt updatedAt } createdAt updatedAt } } ``` - unmatch(userId: ID!, matchId: ID!): Match ```graphql mutation { unmatch(userId: "123", matchId: "456") { id user1 { id name email } user2 { id name email } createdAt updatedAt } } ``` - deleteConversation(userId: ID!, matchId: ID!): Boolean ```graphql mutation { deleteConversation(userId: "123", matchId: "456") } ``` - updateMessageReadStatus(messageId: ID!): Message ```graphql mutation { updateMessageReadStatus(messageId: "789") { id conversationId sender { id name email } receiver { id name email } content createdAt updatedAt } } ``` - getBlocks(userId: ID!): [Block] ```graphql query { getBlocks(userId: "123") { id user { id name email } blockedUser { id name email } createdAt updatedAt } } ``` - getNotifications(userId: ID!): [Notification] ```graphql query { getNotifications(userId: "123") { id userId message createdAt updatedAt } } ``` - blockUser(userId: ID!, blockedUserId: ID!): Block ```graphql mutation { blockUser(userId: "123", blockedUserId: "456") { id user { id name email } blockedUser { id name email } createdAt updatedAt } } ``` - unblockUser(userId: ID!, blockedUserId: ID!): Boolean ```graphql mutation { unblockUser(userId: "123", blockedUserId: "456") } ``` - updateUserName(userId: ID!, name: String!): User ```graphql mutation { updateUserName(userId: "123", name: "John Smith") { id name email createdAt updatedAt } } ``` - updateUserEmail(userId: ID!, email: String!): User ```graphql mutation { updateUserEmail(userId: "123", email: "johnsmith@example.com") { id name email createdAt updatedAt } } ``` - updateUserPassword(userId: ID!, password: String!): User ```graphql mutation { updateUserPassword(userId: "123", password: "newpassword") { id name email createdAt updatedAt } } ``` - markNotificationAsRead(notificationId: ID!): Notification ```graphql mutation { markNotificationAsRead(notificationId: "789") { id userId message createdAt updatedAt } } ``` - getUser(id: ID!): User ```graphql query { getUser(id: "123") { id name email createdAt updatedAt } } ``` - getProfile(userId: ID!): Profile ```graphql query { getProfile(userId: "123") { id userId bio age gender location interests createdAt updatedAt } } ``` - getPotentialMatches(userId: ID!): [Profile] ```graphql query { getPotentialMatches(userId: "123") { id userId bio age gender location interests createdAt updatedAt } } ``` - getMatches(userId: ID!): [Profile] ```graphql query { getMatches(userId: "123") { id userId bio age gender location interests createdAt updatedAt } } ``` - getMessages(userId: ID!, matchId: ID!): [Message] ```graphql query { getMessages(userId: "123", matchId: "456") { id conversationId sender { id name email } receiver { id name email } content createdAt updatedAt } } ``` - registerUser(input: RegisterInput!): User ```graphql mutation { registerUser(input: { name: "John Doe", email: "john@example.com", password: "password" }) { id name email createdAt updatedAt } } ``` - loginUser(email: String!, password: String!): AuthPayload ```graphql mutation { loginUser(email: "john@example.com", password: "password") { token user { id name email createdAt updatedAt } } } ``` - updateProfile(userId: ID!, input: UpdateProfileInput!): Profile ```graphql mutation { updateProfile(userId: "123", input: { bio: "I love hiking and traveling", age: 28, gender: MALE, location: "New York" }) { id userId bio age gender location interests createdAt updatedAt } } ``` - swipeLeft(userId: ID!, potentialMatchId: ID!): Match ```graphql mutation { swipeLeft(userId: "123", potentialMatchId: "456") { id user1 { id name email } user2 { id name email } createdAt updatedAt } } ``` - swipeRight(userId: ID!, potentialMatchId: ID!): Match ```graphql mutation { swipeRight(userId: "123", potentialMatchId: "456") { id user1 { id name email } user2 { id name email } createdAt updatedAt } } ``` These examples provide further demonstrations of how to use the remaining queries and mutations in your Tinder clone application. Customize the input values as needed for testing and adapt them to suit your specific data and implementation requirements. Feel free to customize the input values according to your specific use cases. These examples showcase the usage of additional queries and mutations related to blocking users, updating user information, and handling notifications in your Tinder clone application. ## Documentation For detailed documentation on the available queries, mutations, and data structures, refer to the API documentation. ## Contributing Contributions are welcome! If you find any issues or would like to suggest enhancements, please open an issue or submit a pull request. ## License The Tinder clone back-end is open-source and released under the GPL-3.0 License. ## Acknowledgements This project is inspired by Tinder and aims to replicate some of its functionality. It is not affiliated with or endorsed by Tinder. Copyright 2023, Max Base
This project is a GraphQL-based back-end for a Tinder clone application. It provides the necessary API for managing user accounts, profiles, matching, and messaging functionalities similar to the popular dating app Tinder.
graphql,javascript,js,tinder,tinder-clone,tinder-clone-app,ts,typescript
2023-06-17T21:08:28Z
2023-12-08T12:29:31Z
null
1
10
31
0
0
4
null
GPL-3.0
TypeScript
its-me-abhishek/LetMeCook
main
# LetMeCook 👩‍🍳 LetMeCook is a recipe recommendation site that uses the Edamam API 🥒 to give users ideas or recommendations about recipes that can be made with the help of the ingredients input by the user and with the help of some other easily available ingredients 🥬. # Getting started 🚀 To get started with LetMeCook, you will need to: 1. Clone the repository to your local machine 💾. 2. Install the dependencies 🧰. 3. Run the Flask app 🏃‍♀️. To clone the repository, you can use the following command: ```git clone https://github.com/its-me-abhishek/LetMeCook``` To install the dependencies, you can use the following command: ```pip install -r requirements.txt``` To run the Flask app, you can use the following command: ```flask run``` # Run the app 🔛 To run the LetMeCook app, you will need to have Python 3 and Flask installed and also generate a token of Edamam recipe search API. Once you have installed these dependencies, you can run the app using the following command: ```flask run``` The app will then be available on your local machine at the following URL: ```http://localhost:5000``` # Use the app ✨ To use the LetMeCook app, you can go to the URL http://localhost:5000 in your web browser. You will then be presented with a form where you can enter the ingredients you have in your kitchen 🍳. Once you have entered the ingredients, click the "Search" button 🔎. The app will then return a list of recipes that you can make with the ingredients you have entered 📝. # Screenshots 📷 ## Home Page 🏠 ![HOME](https://github.com/its-me-abhishek/LetMeCook/assets/114338679/7a80e1cb-5e8a-4d3d-ac21-09a8b6f97d51) ## About Page ℹ️ ![ABOUT](https://github.com/its-me-abhishek/LetMeCook/assets/114338679/8aa274ba-34ec-4f3a-bd95-1b5de0438a43) ## Output 📊 ![o1](https://github.com/its-me-abhishek/LetMeCook/assets/114338679/2bf96169-0d74-4238-8f50-ef811d7c1223) ![o2](https://github.com/its-me-abhishek/LetMeCook/assets/114338679/2a91dbbe-53d1-4fcf-ab27-78ffa8f8321f) ![o3](https://github.com/its-me-abhishek/LetMeCook/assets/114338679/01472eb6-2d4f-41fc-97ee-dfbf3202d66d) ![o4](https://github.com/its-me-abhishek/LetMeCook/assets/114338679/5a029dd1-70bc-49f7-b3f1-7dd6bdc25c68) ![o5](https://github.com/its-me-abhishek/LetMeCook/assets/114338679/2275b1d4-cbf2-4f1e-b313-ac01ddaa69f5) ![o6](https://github.com/its-me-abhishek/LetMeCook/assets/114338679/720c59a9-b401-48fd-9fd8-ee7de401eea8) ![o7](https://github.com/its-me-abhishek/LetMeCook/assets/114338679/bc7d2ded-7e89-46cf-9efa-fc04582fc460) ![o8](https://github.com/its-me-abhishek/LetMeCook/assets/114338679/69e036d5-09c2-47f1-a9ac-ee484e438ec1) # Contributing 🤝 If you would like to contribute to the LetMeCook project, you can do so by following these steps: 1. Fork the repository to your own GitHub account 🔗. 2. Make your changes to the code 💻. 3. Create a pull request to the main repository 🧰. # Dependencies 🔩 The following dependencies are required to run the LetMeCook app: Python 3 🐍 <br> Flask 🥣 <br> Edamam API 🥒 <br> # Acknowledgments 📝 The LetMeCook project was inspired by the following projects: Edamam API: https://developer.edamam.com/edamam-recipe-api <br> Flask: https://flask.palletsprojects.com/ <br> # Code 💻 The code for the LetMeCook app is available on GitHub at the following URL: https://github.com/its-me-abhishek/LetMeCook The code is written in Python and uses the Flask framework. The Edamam API is used to get recipe recommendations.
LetMeCook is a recipe recommendation site based on Edamam API (https://developer.edamam.com/edamam-recipe-api) . It gives ideas or recommendations about recipes that can be made with the help of the ingredients input by the user and with the help of some other easily available ingredients. UI and frontend by : @abhijitshukla
css,flask,html,javascript,python
2023-06-21T05:29:46Z
2023-10-18T16:58:56Z
null
2
2
12
0
2
4
null
null
HTML
filipebueno85/Receitas-Incriveis-Fullstack
main
# Projeto App de Receitas Projeto desenvolvido com a aplicação de tecnologias modernas e boas práticas de desenvolvimento: - React Context API - React Hooks - TypeScript - Arquitetura em Camadas - MSC - Programação Orientada a Objetos (POO) - MySQL - Sequelize - JWT - BCrypt.js ## Descrição do Projeto O app de receitas é uma aplicação web que permite aos usuários visualizar, buscar, filtrar, favoritar, compartilhar e acompanhar o processo de preparação de receitas e drinks. Através da integração com duas API's distintas, uma para comidas e outra para bebidas, oferecemos uma ampla variedade de opções culinárias para explorar. A utilização de modernas tecnologias do ecossistema React, como React Context API e React Hooks, proporciona uma experiência interativa e fluida aos usuários. ## Funcionalidades - Visualizar receitas e drinks - Buscar e filtrar receitas por categoria, ingredientes, etc. - Favoritar receitas - Compartilhar receitas com outros usuários - Acompanhar o processo de preparação de receitas ## Requisitos do Projeto - Aderência do código à especificação - Organização do código em componentes - Cobertura de testes unitários - Utilização de TypeScript para tipagem segura - Implementação de Programação Orientada a Objetos (POO) - Integração com banco de dados MySQL utilizando Sequelize - Implementação de autenticação com JWT - Utilização do BCrypt.js para criptografia de senhas ## Como Executar o Projeto 1. Clone este repositório e acesse o diretório principal do projeto. 2. Instale as dependências utilizando `npm install` e `npm run install:apps`. 3. Inicie os containers dos serviços Front-end, Back-end e Banco de Dados utilizando `npm run compose:up`. 5. Acesse a URL [http://localhost:3000](http://localhost:3000) em seu browser. ## Contribuições Nosso time: - Fabio Dalla Valle - Fernando Mashimo - Filipe Bueno - Joice Nicolau - Sadira Antonielle - Victor Mello Aceitamos contribuições e feedbacks construtivos. Sinta-se à vontade para abrir uma issue ou enviar um pull request. ## Contato Em caso de dúvidas ou interesse em saber mais sobre o projeto, entre em contato conosco. Estamos abertos a discussões e oportunidades de colaboração.
null
css3,docker,docker-compose,dockerfile,html,javascript,joi-validation,jwt,mysql-database,node
2023-06-23T20:30:57Z
2023-06-23T21:18:18Z
null
6
1
12
0
2
4
null
null
TypeScript
HtetWaiYan7191/pokemon-universe
development
<!-- TABLE OF CONTENTS --> <a name="readme-top"></a> # 📗 Table of Contents - [📗 Table of Contents](#-table-of-contents) - [📖 \[Leaderboard\] ](#-leaderboard-) - [🛠 Built With ](#-built-with-) - [Tech Stack ](#tech-stack-) - [Key Features ](#key-features-) - [🚀 Live Demo ](#-live-demo-) - [💻 Getting Started ](#-getting-started-) - [Prerequisites](#prerequisites) - [Setup](#setup) - [Install](#install) - [Run tests](#run-tests) - [Deployment ](#deployment-) - [👥 Authors ](#-authors-) - [🔭 Future Features ](#-future-features-) - [🤝 Contributing ](#-contributing-) - [⭐️ Show your support ](#️-show-your-support-) - [🙏 Acknowledgments ](#-acknowledgments-) - [📝 License ](#-license-) <!-- PROJECT DESCRIPTION --> # 📖 [Pokemon Universe] <a name="about-project"></a> Pokemon Universe is a dynamic website that showcases various Pokemon and provides information about their abilities and base power. Users can actively engage with the content by expressing their reactions through likes, comments, and other interactive features. Additionally, the website offers the functionality to make reservations for each Pokemon. **[Leaderboard]** Pokemon Universe is a captivating website that not only educates users about Pokemon abilities and base power but also provides a dynamic and engaging platform for live reactions and card reservations. ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="https://developer.mozilla.org/en-US/docs/Web/HTML">HTML</a></li> <li><a href="https://developer.mozilla.org/en-US/docs/Web/CSS">CSS</a></li> <li><a href="https://getbootstrap.com/">BOOTSTRAP</a></li> <li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript">JavaScript</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> - **[Like_Comment]** - **[Make_Reservations]** - **[Working_With_API]** - **[Interactive_website_using_javascript]** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo"></a> - [Live Demo Link](https://htetwaiyan7191.github.io/pokemon-universe/dist/) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- GETTING STARTED --> ## 💻 Getting Started <a name="getting-started"></a> ### Prerequisites In order to run this project you need: * GitHub * Code Editor ### Setup Clone this repository to your desired folder: <br> <code> git clone https://github.com/HtetWaiYan7191/pokemon-universe.git cd pokemon-universe.git </code> ### Install Install this project with: * npm install ### Run tests To run tests, run the following command: * npx hint . * npx stylelint "**/*.{css,scss}" * npx eslint . ### Deployment <a name="deployment"></a> You can deploy this project using: GitHub Pages <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> 👤 **Htet Wai Yan** - GitHub: [@HtetWaiYan7191](https://github.com/HtetWaiYan7191) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> - [ ] **[add_additional_pages]** - [ ] **[add_animation]** - [ ] **[Add_More_Pokemons]** <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/HtetWaiYan7191/pokemon-universe/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 follow me on github and wait for more projects. - GitHub: [@HtetWaiYan7191](https://github.com/HtetWaiYan7191) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to express my gratitude and give credit to Microverse for providing the necessary API, as well as acknowledge Aamir Asaram[Aamir_Asaram](https://github.com/aamir-asaram) for the brilliant idea and code implementation of the pop-up scrollbar. Their contributions have greatly influenced and enhanced my project. Thank you, Microverse, and special thanks to Aamir Asaram for the inspiration! <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](https://choosealicense.com/licenses/mit/#) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
Pokemon Universe is a dynamic website that showcases various Pokemon and provides information about their abilities and base power. Users can actively engage with the content by expressing their reactions through likes, comments.
api,html-css-bootstrap,javascript
2023-06-22T03:26:44Z
2024-03-13T14:30:38Z
null
1
1
89
1
1
4
null
null
JavaScript
IkboljonMe/labyrinth-game
main
# Labyrinth Game A simple Labyrinth game built with JavaScript. This project was task that given by my university. Check it out [task requirements](https://github.com/IkboljonMe/labyrinth-game/blob/main/TASK.md). ## Getting Started 1. Clone the repository: ```bash git clone git@github.com:IkboljonMe/labyrinth-game.git ``` 2. Open the `index.html` file in your web browser to play the game. ## How to Play - Use the arrow keys or UP, DOWN, LEFT, RIGHT keys to move the player through the labyrinth. - Avoid hitting the bombs. - Complete each level to win the game. ## Contributing Contributions to this project are welcome! If you'd like to contribute, please follow these guidelines: 1. **More labyrinths** If you want to contribute this small project, add more labyrinths in **maps.js** file 2. **Pull Requests:** To contribute code or documentation, submit a pull request to the [GitHub repository](https://github.com/IkboljonMe/labyrinth-game/pulls). 3. **Coding Standards:** You can optimize my coding standards as it was not fully optimized. ## TODO (contributor-friendly) - [ ] Add keys to unlock the door. - [ ] Add level to this game and change size of maze - [ ] Add voice when key pressed or character hits booms - [ ] Optimize code
This is the Simple Labyrinth Game repo, created using HTML and Vanilla JavaScript. Challenge yourself in text-based mazes to find the exit.
javascript,labyrinth-game,maze-,simple-game
2023-06-10T10:09:46Z
2023-11-05T13:38:02Z
null
2
2
13
0
0
4
null
null
JavaScript
jamesandersonwalsh/jameswalsh.dev
main
# Portfolio ![Next.js](https://img.shields.io/badge/next.js-000000?style=for-the-badge&logo=nextdotjs&logoColor=white) ![Typescript](https://img.shields.io/badge/TypeScript-007ACC?style=for-the-badge&logo=typescript&logoColor=white) ![Prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=for-the-badge) Built with React, Next.js, TailwindCSS, & Typescript. ## Getting Started 🤔 To start the development server: ```sh pnpm i && pnpm dev ``` Open [http://localhost:3001](http://localhost:3001) and take a look around. ## CI/CD 🚀 ### Continous Integration Powered by some basic build, lint, and testing tools on Github Actions. ### Continuous Development This project is deployed using 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). [Checkout my portfolio running live on Vercel](https://jameswalsh.dev)
A Next.js blog all about web development.
javascript,nextjs,portfolio,typescript,react,blog,devblog,tailwindcss,contentlayer,contentlayer-nextjs
2023-06-29T02:45:56Z
2024-02-20T17:09:52Z
null
1
167
321
4
1
4
null
null
TypeScript
ViktorSvertoka/styling-components-project
main
# styling-components-project --- npm install styled-components@5.3.10
My react practice ✍️
css3,html5,javascript,npm-package,react,styled-components
2023-06-26T08:52:29Z
2023-06-26T09:44:24Z
null
1
0
2
0
0
4
null
null
JavaScript
Pilaton/vscode-npm-lens-support
main
# npmLens Simple and clear visual panel for npm dependencies of your project: Monitor Updates, Analyze Size, and More. ## Features - A visualized list of your dependencies and their versions. - Checking for new available versions of your dependencies. - Easy update of dependencies. - Displays basic information about a package. - Calculates the total size of your project. - Adapts to VS Code theme. ## Usage To activate the extension, click on the new icon added to your `activitybar`. ❕`package.json` must be present in your workspace. ## Example <img src="public/Screenshot-extension.jpg" alt="npmLens screenshot"/>
Control panel for your project's dependencies. For VSCode
dependency-analysis,dependency-manager,javascript,nodejs,package-json,package-manager,typescript,vscode,vscode-extension,vscode-plugin
2023-06-12T17:09:34Z
2024-04-03T17:49:58Z
2024-04-03T17:49:58Z
1
0
23
1
0
4
null
MIT
null
manuelbento19/image4text
main
<h1 align="center"> 📸📝<br>Image 4 Text </h1> `Conversão de imagem em texto. Extrair textos de imagens para automatizar o processamento de textos.` ![Resultado final do projeto](./public/preview.png) <h4 align="center"><a href="https://image4text.vercel.app/">Clique para visitar o projeto</a></h4> --- ## 💼 Tecnologias utilizadas Para o desenvolvimento deste site utilizei as seguintes tecnologias: - React.js - TypeScript - Vite - Styled-Components - Tesseract.js (OCR) --- <h2>👨‍🚀 Autor</h2> <table> <tr> <td> <a href="https://github.com/manuelbento19"> <img src="https://avatars.githubusercontent.com/u/65732773" width="150px;" alt="Foto do Manuel Bento"/><br> <sub> <b>Manuel Bento</b> </sub> </a> </td> </tr> </table>
Conversão de imagem em texto. Extrair textos de imagens para automatizar o processamento de textos.
image-recognition,javascript,ocr,ocr-recognition,react,reactjs,typescript,webdevelopment
2023-06-28T13:39:04Z
2024-03-07T08:21:50Z
null
2
1
8
0
0
4
null
null
TypeScript
Web3Arabs/AI-Course
main
# AI-Course محتوى الدورة التدريبية **بناء تطبيقات AI** في **[Web3Arabs](https://www.web3arabs.com)** - الأفضل للمبتدئين للتعرف على اساسيات الذكاء الإصطناعي وبناء تطبيقات عليه
محتوى الدورة التدريبية بناء تطبيقات AI في Web3Arabs - الأفضل للمبتدئين للتعرف على اساسيات الذكاء الإصطناعي وبناء تطبيقات عليه
ai,asr,chatbot,chatgpt,javascript,llm,openai,reactjs,web3arabs
2023-06-25T12:50:04Z
2023-08-01T14:02:21Z
null
1
0
7
0
0
4
null
null
null
haroon-ali-dev/point-of-sale
main
# :shopping_cart: Point of Sale Experience seamless point of sale management with a versatile website and mobile app. Effortlessly handle products, orders, and payments. ## :computer: Demo https://github.com/haroon-ali-dev/point-of-sale/assets/87202358/b5401fa2-d532-49a7-bd10-d86338f01c27 ## :x: Problem Traditional cash registers and manual tracking systems can be error-prone, time-consuming, and lack the capabilities to manage inventory effectively. This leads to challenges in tracking sales, managing stock levels, and ensuring a seamless customer checkout experience. ## :heavy_check_mark: Solution This application offers a solution to streamline these processes, enabling businesses to handle transactions swiftly, maintain precise inventory records, and enhance overall operational efficiency. ## :page_facing_up: Features - Register and login in admin panel. - Create, view, update and delete products in admin panel. - Login in mobile tablet app. - Add and remove products from cart using product ID in mobile tablet app with automatic quantity calculation. - Pay for order in mobile tablet app using debit card with Stripe. - View orders in admin panel including order items. ## :bookmark_tabs: Utilization - Admin panel fully responsive. - Data fetching SSR in Next.js for products and orders in admin panel. - Authentication with JWT. - Stripe payments. - Mobile tablet app for Android. ## :hammer: Tech Stack [![My Skills](https://skillicons.dev/icons?i=html,css,bootstrap,js,react,nextjs,postgres,jest,vercel)](https://skillicons.dev) ## :wrench: Additional Tech React Native, Stripe, React Hook Form, Yup, SuperTest, Cypress. ## :gear: Automated Tests - Admin Panel - Unit tests with Jest. - Integration tests with Jest and Supertest. - End-to-End tests with Cypress. ## :earth_americas: Deployment - Back end (Next.js) deployed to Vercel. - Admin panel front end (Next.js) deployed to Vercel. - PostgreSQL database deployed to Vercel. - Mobile Tablet App deployed to Expo. ### :earth_americas: Links - [Deployed Admin Panel](https://point-of-sale-tau.vercel.app) - [Deployed Mobile Tablet App](https://expo.dev/accounts/haroon-ali-dev/projects/point-of-sale/builds/690dea34-ecbd-4ded-8812-dca94c46d3f0) ### :earth_americas: How To Test Mobile Tablet App (ANDROID ONLY) - Make sure you have registered an account in admin panel and added at least one product. - Visit Mobile Tablet App link. - Click 'Install'. - Scan QR code with your **android** tablet (will open link in tablet browser). - Click 'Install' in tablet browser. - Download APK file and install. - Launch installed app. - Login with account you registered with in admin panel.
Experience seamless point of sale management with a versatile website and mobile app. Effortlessly handle products, orders, and payments.
css,html,javascript,nextjs,postgresql,reactjs,reactnative,stripe,cypress
2023-06-26T23:00:52Z
2023-09-27T15:50:48Z
null
1
1
177
0
0
4
null
null
JavaScript
HtetWaiYan7191/leaderboard
development
<!-- TABLE OF CONTENTS --> <a name="readme-top"></a> # 📗 Table of Contents - [📗 Table of Contents](#-table-of-contents) - [📖 \[Leaderboard\] ](#-leaderboard-) - [🛠 Built With ](#-built-with-) - [Tech Stack ](#tech-stack-) - [Key Features ](#key-features-) - [🚀 Live Demo ](#-live-demo-) - [💻 Getting Started ](#-getting-started-) - [Prerequisites](#prerequisites) - [Setup](#setup) - [Install](#install) - [Run tests](#run-tests) - [Deployment ](#deployment-) - [👥 Authors ](#-authors-) - [🔭 Future Features ](#-future-features-) - [🤝 Contributing ](#-contributing-) - [⭐️ Show your support ](#️-show-your-support-) - [🙏 Acknowledgments ](#-acknowledgments-) - [📝 License ](#-license-) <!-- PROJECT DESCRIPTION --> # 📖 [Leaderboard] <a name="about-project"></a> Leaderboard is a website that displays users based on their scores, with the highest-scoring user placed at the top. You have the option to input your score and view the current top-ranked user. **[Leaderboard]** Leaderboard is a website that displays users based on their scores, with the highest-scoring user placed at the top. ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="https://developer.mozilla.org/en-US/docs/Web/HTML">HTML</a></li> <li><a href="https://developer.mozilla.org/en-US/docs/Web/CSS">CSS</a></li> <li><a href="https://getbootstrap.com/">BOOTSTRAP</a></li> <li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript">JavaScript</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> - **[Display_User]** - **[Add_User_And_Scores]** - **[Working_With_API]** - **[Interactive_website_using_javascript]** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo"></a> - [Live Demo Link](https://htetwaiyan7191.github.io/leaderboard/dist/) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- GETTING STARTED --> ## 💻 Getting Started <a name="getting-started"></a> ### Prerequisites In order to run this project you need: * GitHub * Code Editor ### Setup Clone this repository to your desired folder: <br> <code> git clone https://github.com/HtetWaiYan7191/leaderboard.git cd leaderboard.git </code> ### Install Install this project with: * npm install ### Run tests To run tests, run the following command: * npx hint . * npx stylelint "**/*.{css,scss}" * npx eslint . ### Deployment <a name="deployment"></a> You can deploy this project using: GitHub Pages <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> 👤 **Htet Wai Yan** - GitHub: [@HtetWaiYan7191](https://github.com/HtetWaiYan7191) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> - [ ] **[add_additional_pages]** - [ ] **[add_animation]** <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/HtetWaiYan7191/leaderboard/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 follow me on github and wait for more projects. - GitHub: [@HtetWaiYan7191](https://github.com/HtetWaiYan7191) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to acknowledge and give credit to the Microverse for instructions and resources. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](https://choosealicense.com/licenses/mit/#) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
Leaderboard is a website that displays users based on their scores, with the highest-scoring user placed at the top. You have the option to input your score and view the current top-ranked user.
bootstrap5,css,html,javascript,webpack
2023-06-16T14:12:59Z
2023-06-20T07:42:02Z
null
1
3
39
1
0
4
null
null
JavaScript
PaymentsHubDevelopers/PaymentsHub-React-Browser-Post-API-Without-Shopping-Cart
main
# Securely Embed Payments in a ReactJS App This is a JavaScript application that uses the React framework and Node.js to demonstrate an embedded payment solution with [Payments Hub's Browser Post API](https://developer.paymentshub.com/products/card-not-present/browser-post). The code in this repository handles the front-end payment process and adds a simple payment form to a website. The code that handles back-end part of the payment process is located in a [separate repository](https://github.com/PaymentsHubDevelopers/PaymentsHub-Node-Browser-Post-API), allowing each to be deployed separately. This application does not include a shopping cart, making it a great fit for businesses that sell one item per transaction, such as utility services or other professional services. For a React ecommerce application with a shopping cart that allows customers to purchase multiple items at once, head over to [this repository](https://github.com/PaymentsHubDevelopers/PaymentsHub-React-Browser-Post-API-With-Shopping-Cart) and follow along with [this tutorial](https://developer.paymentshub.com/blog/embedded-payments-react-app-shopping-cart). ## Get Sandbox Credentials To get started, create a free [Payments Hub Developer Portal account](https://developer.paymentshub.com/auth/signup). This will allow you to get the sandbox credentials that are required to test the app. Log in to your account to view the official [Browser Post API Integration Guide](https://developer.paymentshub.com/products/card-not-present/browser-post/integration), then [contact](https://developer.paymentshub.com/contact) the Payments Hub Sales Engineering team to get sandbox credentials added to your Developer Portal account. ## Follow Along with the Tutorial When you're ready to start building your app, you can follow along with [this tutorial](https://developer.paymentshub.com/blog/embedded-payments-react-app) for step-by-step instructions. ## Completed App Your completed ecommerce app will look similar to the following: ![](/src/assets/payments-hub-react-browser-post-api.png) Click the "View Details" button to open a product page: ![](/src/assets/payments-hub-react-browser-post-api-product.png) Click the "Purchase Now" button to open a new tab with a checkout form where customers can enter their payment information and submit an order: ![](/src/assets/payments-hub-react-browser-post-api-checkout.png)
This repo includes the front-end code for a JavaScript application that uses the React framework to embed a payment solution with Payments Hub's Browser Post API.
checkout-form,checkout-page,ecommerce,ecommerce-api,ecommerce-application,ecommerce-website,front-end,javascript,javascript-ecommerce,payment
2023-06-15T18:19:59Z
2023-06-20T23:41:54Z
null
2
0
8
0
1
4
null
null
CSS
OverRevvv/portfolio
main
# Nuxt 3 Minimal Starter Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more. ## Setup Make sure to install the dependencies: ```bash # npm npm install # pnpm pnpm install # yarn yarn install ``` ## Development Server Start the development server on `http://localhost:3000`: ```bash # npm npm run dev # pnpm pnpm run dev # yarn yarn dev ``` ## Production Build the application for production: ```bash # npm npm run build # pnpm pnpm run build # yarn yarn build ``` Locally preview production build: ```bash # npm npm run preview # pnpm pnpm run preview # yarn yarn preview ``` Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
portfolio website, work in progress!
nuxt3,nuxtjs,tailwindcss,threejs,tresjs,vue,javascript,nuxi
2023-06-16T17:07:24Z
2023-09-12T12:46:32Z
null
1
0
43
0
0
4
null
null
Vue
lily4178993/Leaderboard
dev
<a name="readme-top"></a> <div align="center"> <img src="./src/assets/icons-leaderboard.png" alt="logo" width="140" height="auto" /> # **Leaderboard** The leaderboard website displays scores submitted by different players. It also allows you to submit your score. --- <br/> <br/> <br/> </div> <!-- TABLE OF CONTENTS --> ## <b>Table of Contents 📗 - [Built With 🛠](#built-with) - [Key Features 🏷️](#key-features) - [Screenshot 📷](#screenshot) - [Live Demo🚀](#live-demo) - [Prerequisites 🧱](#prerequisites) - [Setup ⚙️](#setup) - [Install 🏗️](#install) - [Usage 📂](#usage) - [Author 👤](#author) - [Contributing 🤝](#contributing) - [Show your support 🌟](#support) - [Acknowledgements 🙏](#acknowledgements) - [FAQ ❓](#fap) - [License 📝](#license) </b><br><br><br><br> --- <!-- BUILT WITH --> ## **Built With 🛠**<a name="built-with"></a><br> <ul> <li><a href="https://developer.mozilla.org/en-US/docs/Web/HTML">HTML5</a> markup to build raw structure of this web page</li><br> <li><a href="https://developer.mozilla.org/en-US/docs/Web/CSS">CSS3</a> custom properties, <a href="https://css-tricks.com/snippets/css/a-guide-to-flexbox/">FlexBox</a>, <a href="https://www.w3schools.com/css/css_grid.asp">Grid</a> to make the website visually attractive</li><br> <li><a href="https://reactjs.org/">Javascript</a></li><br> <li><a href="https://mozilla.github.io/addons-linter/">Linters</a> for coding convention and coding formating</li> <li><a href="https://webpack.js.org">Webpack</a></li> </ul> <br> --- <!-- KEY FEATURES --> ### **Key Features 🏷️** <a name="key-features"></a> - **All data are preserved thanks to the external Leaderboard API service.** <p align="right">(<a href="#readme-top">back to top</a>)</p> <br> --- <!-- SCREENSHOT --> ### **Screenshot 📷**<a name="screenshot"></a> Below is an overview of the app. <br> <div align="center"> <img src="./src/assets/app_screenshot.png" alt="Leaderboard Screenshot" max-width="300" max-height="320" border="4px solid gray" /> </div><br> <p align="right">(<a href="#readme-top">back to top</a>)</p> --- <!-- LIVE DEMO --> ## <b>Live Demo 🚀</b><a name="live-demo"></a> This project is hosted on GitHub pages, so if you want to check it online, please click 😊 [here](https://lily4178993.github.io/Leaderboard/dist/). <p align="right">(<a href="#readme-top">back to top</a>)</p> --- <!-- PREREQUISITIES --> ## **Prerequisites 🧱**<a name="prerequisites"></a> In order to run this project you need: - A Github account - Node JS - Webpack - A web browser to view output e.g [Microsoft Edge](https://www.microsoft.com/en-us/edge). - An IDE e.g [Visual studio code](https://code.visualstudio.com/). - [A terminal](https://code.visualstudio.com/docs/terminal/basics). <br> --- <!-- SETUP --> ## **Setup ⚙️**<a name="setup"></a> Clone this repository:<br> ```sh git clone https://github.com/lily4178993/Leaderboard.git ``` Navigate to the folder ``` cd Leaderboard ``` Checkout the branch ``` git checkout main ``` <br> --- <!-- INSTALL --> ## ** 🏗️**<a name="install"></a> Install all dependencies: ```sh npm install ``` Run the following code to fixed possible JavaScript linter errors: ``` npx eslint . --fix ``` --- <!-- USAGE --> ## **Usage 📂**<a name="usage"></a> Open page in browser ```sh $ open dist/index.html ``` <p align="right">(<a href="#readme-top">back to top</a>)</p> --- <!-- AUTHORS --> ## **Author 👤**<a name="author"></a> You can reach me using these following links: - Twitter: [@nelly_telli](https://twitter.com/nelly_telli) - LinkedIn: [Nelly T.](https://www.linkedin.com/in/nelly-t-330414266/) <p align="right">(<a href="#readme-top">back to top</a>)</p> <br> --- <!-- CONTRIBUTING --> ## **Contributing 🤝**<a name="contributing"></a> If you have suggestions 📝, ideas 🤔, or bug reports 🐛, please feel free to open an [issue](https://github.com/lily4178993/Leaderboard/issues) on GitHub. Remember, every contribution, no matter how big or small, makes a difference. <p align="right">(<a href="#readme-top">back to top</a>)</p> <br> --- <!-- SUPPORT --> ## **Show your support 🌟**<a name="support"></a> Thank you for taking the time to explore my GitHub project! Your support means a lot to me. If you find my project valuable and would like to contribute, here are a few ways you can support me: - **Star the project ⭐️**: Show your appreciation by starring this GitHub repository. It helps increase visibility and lets others know that the project is well-received. - **Fork the project 🍴 🎣**: If you're interested in making improvements or adding new features, feel free to fork the project. You can work on your own version and even submit pull requests to suggest changes. - **Share with others 🗺️**: Spread the word about this project. Share it on social media, mention it in relevant forums or communities, or recommend it to colleagues and friends who might find it useful. <p align="right">(<a href="#readme-top">back to top</a>)</p> <br> --- <!-- ACKNOWLEDGEMENTS --> ## **Acknowledgments 🙏**<a name="acknowledgements"></a> I would like to express my sincere gratitude to [Microverse](https://github.com/microverseinc), the dedicated reviewers, and my coding partners. Your unwavering support, and feedbacks have played an immense role in making this journey a resounding success. Thank you for being an integral part of my achievements. I would also like to thank <a target="_blank" href="https://icons8.com">Icons8</a> for all the images and icons I used in this project. <p align="right">(<a href="#readme-top">back to top</a>)</p> --- <!-- FAQ --> ## **FAQ ❓**<a name="faq"></a> - **What is Webpack** - Webpack is a free and open-source module bundler for JavaScript. It is made primarily for JavaScript, but it can transform front-end assets such as HTML, CSS, and images if the corresponding loaders are included. - **Why should we use Webpack** - Webpack goes through your package and creates what it calls a dependency graph which consists of various modules which your webapp would require to function as expected. Then, depending on this graph, it creates a new package which consists of the very bare minimum number of files required, often just a single bundle.js file which can be plugged in to the html file easily and used for the application. It makes our code shorter, cleaner and compiles different javascript module. <p align="right">(<a href="#readme-top">back to top</a>)</p> <br> --- <!-- LICENCE --> ## <b>License 📝</b><a name="license"></a> This project is [MIT](./LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
The leaderboard website displays scores submitted by different players. It also allows you to submit your score. All data is preserved thanks to the external Leaderboard API service.
css3,html5,javascript,leaderboard,webpack,learning-project
2023-06-27T14:31:01Z
2024-03-21T22:27:11Z
null
1
17
43
0
0
4
null
MIT
JavaScript
Nikh9123/Natours
main
<h1 align="center"> <br> <a href="https://github.com/Nikh9123/Natours"><img src="https://natours.netlify.app/img/logo-green-2x.png" alt="Natours" width="200"></a> <br> Natours <br> </h1> <br /> <div align="center"> <h3 align="center">Natours API 🌏</h3> <p align="center"> An awesome platofrm to plan your tours! <br /> <a href="https://documenter.getpostman.com/view/26553162/2s9YRCXrKV"><strong>Explore the API »</strong></a> <br /> <br /> <a href="">View Demo</a> · <a href="https://github.com/Nikh9123/Natours/issues">Report Bug</a> · </p> </div> <br /> <!-- TABLE OF CONTENTS --> <details> <summary><span>Table of Contents<span></summary> <ol> <li> <a href="#about-the-project">About The Project</a> <ul> <li><a href="#built-with">Built With</a></li> </ul> </li> <li> <a href="#getting-started">Getting Started</a> <ul> <li><a href="#prerequisites">Prerequisites</a></li> <li><a href="#installation">Installation</a></li> </ul> </li> <li><a href="#usage">Usage</a></li> <li><a href="#roadmap">Roadmap</a></li> <li><a href="#contributing">Contributing</a></li> <li><a href="#license">License</a></li> <li><a href="#contact">Contact</a></li> <li><a href="#acknowledgments">Acknowledgments</a></li> </ol> </details> <h4 align="center">Natours: Explore iconic destinations effortlessly. Curated tours, seamless facilities, and unforgettable adventures await. Accessible via our user-friendly platform or integrate seamlessly using our API.</h4> ### Built With This section showcases the foundational elements of my project. Here, you'll find a brief overview of the key frameworks and libraries that were instrumental in bringing this project to life. ## backend ![NodeJS](https://img.shields.io/badge/node.js-%2343853D.svg?style=for-the-badge&logo=node-dot-js&logoColor=white) ![Express.js](https://img.shields.io/badge/express.js-%23404d59.svg?style=for-the-badge&logo=express&logoColor=%2361DAFB) ![Mongoose.js](https://img.shields.io/badge/mongoose.js-brown?style=for-the-badge&logo=mongoose&logoColor=brown&labelColor=white) ![MongoDB](https://img.shields.io/badge/-MongoDB-13aa52?style=for-the-badge&logo=mongodb&logoColor=white) ## Services/Libraries Used ![GMAIL](https://img.shields.io/badge/gmail-brown?style=for-the-badge&logo=gmail&labelColor=white) ![Stripe](https://img.shields.io/badge/stripe-green?style=for-the-badge&logo=stripe&labelColor=white ) ![Nodemailer](https://img.shields.io/badge/nodemailer-blue?style=for-the-badge ) ![Nodemon](https://img.shields.io/badge/nodemon-green?style=for-the-badge&logo=nodemon&logoColor=white ) ![Pug](https://img.shields.io/badge/pug-brown?style=for-the-badge&logo=pug&logoColor=white ) ![validator](https://img.shields.io/badge/validator-grey?style=for-the-badge&logo=validator&logoColor=white ) ![jsonwebtoken](https://img.shields.io/badge/JWT-000000?style=for-the-badge&logo=JSON%20web%20tokens&logoColor=white) ## frontend ![HTML5](https://img.shields.io/badge/html5-%23E34F26.svg?style=for-the-badge&logo=html5&logoColor=white) ![CSS3](https://img.shields.io/badge/css3-%231572B6.svg?style=for-the-badge&logo=css3&logoColor=white) ## Tools ![git](https://img.shields.io/badge/-Git-F05032?style=for-the-badge&logo=git&logoColor=white) ![Visual Studio](https://img.shields.io/badge/visualstudio-black?style=for-the-badge&logo=visual%20studio&logoColor=blue ) <p align="right">(<a href="#readme-top">back to top</a>)</p>
Natours is your gateway to a sustainable and immersive travel experience. Designed for eco-conscious adventurers, Natours offers a unique platform to explore the world's most breathtaking destinations while minimizing your ecological footprint.
backend-api,css,javascript,nodejs,npm-package,pug-template-engine
2023-06-26T07:08:26Z
2023-10-31T10:08:29Z
null
1
1
53
0
1
4
null
null
JavaScript
geekelo/oti-task-organizer-webapp
main
<a name="readme-top"></a> <!-- HOW TO USE: This is an example of how you may give instructions on setting up your project locally. Modify this file to match your project and remove sections that don't apply. REQUIRED SECTIONS: - Table of Contents - About the Project - Built With - Live Demo - Getting Started - Authors - Future Features - Contributing - Show your support - Acknowledgements - License OPTIONAL SECTIONS: - FAQ After you're finished please remove all the comments and instructions. --> <div align="center"> <!-- You are encouraged to replace this logo with your own! Otherwise you can also remove it. --> <img src="https://geekelo.com.ng/wp-content/uploads/2023/12/project-signature1.gif" alt="signature" > <br/> </div> <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment](#deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [📝 License](#license) <!-- PROJECT DESCRIPTION --> <img src="https://geekelo.com.ng/wp-content/uploads/2023/08/Screenshot-2023-08-07-112052.png"> # 📖 Oti Task Organizer WebApp<a name="about-project"></a> **Oti Task Organizer** is a To-Do List Web App that helps users simplify task management. With its user-friendly web application you can create, organize, and manage your to-do list effortlessly, stay productive and focused on your goals by easily adding, editing, and marking tasks as complete. With its intuitive interface and convenient features, staying organized has never been easier. Experience a streamlined to-do list management solution designed to boost your productivity and keep you on track. Head to the <a href="#live-demo">LIVE DEMO SECTION</a> for Live links and presentations ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <details> <summary>ES6</summary> <ul> <li><a href="https://hacks.mozilla.org/2015/04/es6-in-depth-an-introduction/">ES6 stands for ECMAScript 6. ECMAScript was created to standardize JavaScript, and ES6 is the 6th version of ECMAScript, it was published in 2015, and is also known as ECMAScript 2015.</a></li> </ul> </details> <details> <summary>HTML</summary> <ul> <li><a href="https://developer.mozilla.org/en-US/docs/Web/HTML">HTML (HyperText Markup Language) is the most basic building block of the Web. It defines the meaning and structure of web content.</a></li> </ul> </details> <details> <summary>CSS</summary> <ul> <li><a href="https://developer.mozilla.org/en-US/docs/Web/CSS">CSS describes how elements should be rendered on screen, on paper, in speech, or on other media.</a></li> </ul> </details> <details> <summary>JavaScript</summary> <ul> <li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript">JavaScript (JS) is a lightweight, interpreted, or just-in-time compiled programming language with first-class functions.</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> - **Mobile Friendly** : this website performs well on a mobile device like a phone or tablet. - **Desktop Friendly**: this website is responsive to desktop screen sizes. - **Simple and Attractive Design** : the UI / UX is engaging and appealing. - **Functional** : this website is accessible, easy to navigate, and helpful for users. - **Animations and transitions : This website has engaging transitions and animations that makes it easier to use, smoother and more natural. <!-- - ** PopUp windows **: this features add to see the project details about each project in popup windows. - ** Form validation **: this features validate the email should be lowercase for portfolio contact. --> <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo"></a> > View the live demo of this project by clicking the text below. - [See Live Demo](https://geekelo.github.io/oti-task-organizer-webapp/dist/) <!-- - [First Presenation Video](https://www.loom.com/share/719c333faa524c5db6930878f33b809b) --> <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- GETTING STARTED --> ## 💻 Getting Started <a name="getting-started"></a> To get a local copy up and running, follow these steps. > Clone the repository ``` git clone https://github.com/geekelo/oti-task-organizer-webapp.git ``` > And you are ready to begin your project ### Setup <a name="setup"></a> This project contains An HTML FILE (free to edit) - file that contains html codes to give structure to the main webpage A CSS FILE (free to edit) - file that contains css codes to style the webpage A GIT IGNORE FILE (free to edit) - to hide personal or private files HTML/CSS LINTER FILES (should not edit) - Do not make changes A JAVASCRIPT FILE (free to edit) - that handles functionalities and dynamic HTML ### Prerequisites <a name="prerequisites"></a> > You should have Node and Git Installed > You should have basic knowledge on HTML / CSS / JavaScript > You should have a code editor ### Install <a name="install"></a> > Download install [VSCODE](https://code.visualstudio.com/) and [Git](https://git-scm.com/) > To install linters, execute the following commands: ``` Initialize npm | ``` npminit -y ``` HTML | ``` npm install --save-dev hint@7.x ``` CSS | ```npm install --save-dev stylelint@13.x stylelint-scss@3.x stylelint-config-standard@21.x stylelint-csstree-validator@1.x ``` ``` ### Usage <a name="usage"></a> To run the linters, execute the following command and fix linter errors: ``` HTML | ``` npx hint . ``` CSS | ```npx stylelint "**/*.{css,scss}" ``` If you get a flood of errors keep in mind that linters guide you in writing a clean code! ``` ### Run Tests <a name="run-tests"></a> You can run this program on your browser ### Deployment <a name="deployment"></a> You can deploy this project using the following procedure: - Pick the right hosting provider. - Choose the tool and method to upload your website. - Upload files to your website. - Move the website files to the main root folder. - Import your database. - Check if your website works worldwide. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> <p align="right">(<a href="#readme-top">back to top</a>)</p> 👤 **Eloghene Otiede** - GitHub: [@geekelo](https://github.com/geekelo) - Twitter: [@Geekelo_xyz](https://twitter.com/Geekelo_xyz) - LinkedIn: [LinkedIn](https://linkedin.com/in/eloghene-otiede) - [See Documentation of Author's inputs](./Documentation/Geekelo-input.md) <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🤝 Contributing <a name="contributing"></a> You can offer Contributions, submit an [issue](../../issues/), and make a feature request. ## Future Features <a name="future-features"></a> - Add pop up modals - Add the contact form - Add more content pages ## ⭐️ Show your support <a name="support"></a> > Please give a ⭐️ to support 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 for inspiring this project > Fonts: [Google Fonts](https://fonts.google.com/) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](./LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
Simplify your task management with our user-friendly web application. Create, organize, and manage your to-do list effortlessly
completed-project,front-end-development,javascript
2023-06-14T11:55:52Z
2023-12-24T13:12:39Z
null
1
3
48
2
0
4
null
MIT
JavaScript
Api-Wrappers/anilist-wrapper
master
<h1 align="center"> AniList Api Wrapper </h1> <p align="center"> <a href="https://www.npmjs.com/package/@tdanks2000/anilist-wrapper"> <img alt="NPM Version" src="https://img.shields.io/npm/v/%40tdanks2000%2Fanilist-wrapper"> </a> <a href="https://github.com/tdanks2000/tmdb-wrapper/blob/master/LICENSE"> <img src="https://img.shields.io/npm/l/@tdanks2000/anilist-wrapper" alt="GitHub"> </a> </p> The AniList Api Wrapper simplifies the process of making API requests to AniList, a popular anime and manga database. It encapsulates functionality related to various API endpoints, such as activity, lists, media, people, recommendations, search, threads, and user-related features. With this wrapper, developers can quickly integrate AniList functionality into their TypeScript projects. ## Table of Contents - [Installation](#installation) - [Usage](#usage) - [Authentication](#authentication) - [Functionality](#functionality) - [Contributing](#contributing) - [License](#license) ## Installation To install the AniList TypeScript Wrapper, follow these steps: 1. Run the following command in your project directory: ```typescript // npm npm install @tdanks2000/anilist-wrapper // yarn yarn add @tdanks2000/anilist-wrapper // pnpm pnpm i @tdanks2000/anilist-wrapper ``` ## Usage To use the AniList TypeScript Wrapper in your TypeScript project, import the necessary classes and functions: ```typescript import { Anilist } from '@tdanks2000/anilist-wrapper'; ``` Then, create an instance of the AniList class, optionally providing an access token: ```typescript const anilist = new Anilist('YOUR_ACCESS_TOKEN'); ``` You can now use the anilist object to access various functionalities of the AniList API. See the next section for details on available functionality. ## Authentication Authentication is required to access certain endpoints and perform actions on behalf of a user. To authenticate with the AniList API, you need to obtain an access token. Visit the AniList website and follow their documentation to generate an access token. When creating an instance of the AniList class, you can provide the access token as a parameter to enable authenticated access to specific features. ## Functionality The AniList Api Wrapper provides the following functionality: - activity: Access and interact with user activity-related features. - lists: Retrieve and manage user lists, such as anime and manga lists. - media: Retrieve media-related information, including anime, manga, characters, and staff. - people: Access information about people involved in media, such as voice actors and staff members. - recommendation: Retrieve and manage recommendations for anime and manga. - search: Search for media, characters, and users on AniList. - thread: Interact with AniList forum threads and comments. - user: Access and manage user-related information and actions. ## Contributing Contributions to the AniList TypeScript Wrapper are welcome! If you find a bug, have a feature suggestion, or want to contribute improvements, please follow the contribution guidelines outlined in the repository. ## License The AniList TypeScript Wrapper is licensed under the MIT License. Make sure to review the license file for detailed terms and conditions. Feel free to use, modify, and distribute this library as per the license terms. Thank you for using the AniList Api Wrapper! If you have any questions or need further assistance, please contact the project team or refer to the documentation available in the repository. # ❤️ Reminder that <strong><i>you are great, you are enough, and your presence is valued.</i></strong> If you are struggling with your mental health, please reach out to someone you love and consult a professional. You are not alone.
A Fully Typed wrapper for the Anilist graphQL api
anilist,anilist-api,nodejs,wrapper,wrapper-api,javascript,typescript,anilist-node,anime,graphql
2023-06-28T11:37:27Z
2024-05-23T05:00:31Z
null
5
4
90
0
2
4
null
null
TypeScript
Tsiangana/AOFlix
master
Netflix Clone Recriei o Site da Netflix. 🚀 Começando Essas instruções permitirão que você obtenha uma cópia do projeto em operação na sua máquina local para fins de desenvolvimento e teste. Consulte Implantação para saber como implantar o projeto. 📋 Pré-requisitos Mysql Xampp Dar exemplos Faça download do xampp no google e istale-o em seguida faça download do Mysql Uma série de exemplos passo-a-passo que informam o que você deve executar para ter um ambiente de desenvolvimento em execução. Essa etapa será: No repositório tem uma pasta de nome bd dentro da pasata possui a base de dados . Para usar: Abra o Xammp ativa o Mysql e o Apache e dê dois cliques no arquivo dentro da pasta bd ⚙️ Executando os testes Quando dar o clique a base de dados ja estará instalada, depois apenas de acessar ao arquivo atraves do apache 🔩 Analise os testes de ponta a ponta Apache ⌨️ Acessando o apache Com o Apache instalado, abra o seu navegador e digite "Localhost" Serás levado para uma area com nome de várias pastas, selecione o nome da pasta do arquivo 📦 Dúvidas Em caso de dúvida podes sempre criar uma issue e me dizer em que voce tem problemas. 🛠️ Construído com Mysql - Base de dados Xampp - Apk que transforma a sua máquina em um servidor locar Html - estrutura CSS - estilizaçao JS - Dinámica Php - Linguagem de comunicaçao entre a base de dados e o front-end 🖇️ Colaborando Por favor, leia o COLABORACAO.md para obter detalhes sobre o nosso código de conduta e o processo para nos enviar pedidos de solicitação. 📌 Versão Nós usamos SemVer para controle de versão. Para as versões disponíveis, observe as tags neste repositório. ✒️ Autores Você também pode ver a lista de todos os colaboradores que participaram deste projeto. 📄 Licença Este projeto está sob a licença (MIT Licence) - veja o arquivo LICENSE.md para detalhes. 🎁 Expressões de gratidão Conte a outras pessoas sobre este projeto 📢; Convide alguém da equipe para uma cerveja 🍺; Um agradecimento publicamente 🫂; etc. ⌨️ com ❤️ por Tsiangana 😊
A Plataforma AOFlix é uma plataforma de divulgação de Filmes, para além de ser uma plataforma voltada a divulgação de filmes usando linguagens dinâmicas como sua base a plataforma AOFlix possui uma interface melhor que a da Netflix, se tens dúvidas confira tu mesmo para veres
css3,html,javascript,mysql,php,sql,bootstrap
2023-06-16T19:34:35Z
2024-02-13T21:41:41Z
null
1
0
8
0
0
4
null
MIT
JavaScript
prashantjagtap2909/DrumKit
main
# Drum Kit [![Views](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Fprashantjagtap2909%2FDrumKit&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=Views&edge_flat=false)](https://hits.seeyoufarm.com) <br/> <p align="center"> <h3 align="center">Drumkit </h3> <p align="center"> An Awesome DrumKit created using HTML , CSS and Javascript <br/> <br/> <a href="https://github.com/prashantjagtap2909/DrumKit"><strong>Explore the docs »</strong></a> <br/> <br/> <a href="https://github.com/prashantjagtap2909/DrumKit">View Demo</a> . <a href="https://github.com/prashantjagtap2909/DrumKit/issues">Report Bug</a> . <a href="https://github.com/prashantjagtap2909/DrumKit/issues">Request Feature</a> </p> </p> ![Downloads](https://img.shields.io/github/downloads/prashantjagtap2909/DrumKit/total) ![Contributors](https://img.shields.io/github/contributors/prashantjagtap2909/DrumKit?color=dark-green) ![Forks](https://img.shields.io/github/forks/prashantjagtap2909/DrumKit?style=social) ![Issues](https://img.shields.io/github/license/prashantjagtap2909/DrumKit) ## Table Of Contents * [About the Project](#about-the-project) * [Built With](#built-with) * [Installation](#installation) * [Roadmap](#roadmap) * [Contributing](#contributing) * [Authors](#authors) ## About The Project A web-based Drum Music game for playing the drum. This can give you an experience of drum playing. So enjoy playing ### Project screenshots - ![image](https://github.com/prashantjagtap2909/DrumKit/assets/93985255/7343f29c-616c-428c-b27b-7789eb4cb541) ## Built With - HTML - CSS - Javascript ## Live Demo - [https://prashantjagtap2909.github.io/DrumKit/](https://prashantjagtap2909.github.io/DrumKit/) ### Installation 1. Clone the repo ```sh git clone https://github.com/prashantjagtap2909/Project-Name.git ``` ## Contributing Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are **greatly appreciated**. * If you have suggestions for adding or removing projects, feel free to [open an issue](https://github.com/prashantjagtap2909/DrumKit/issues/new) to discuss it, or directly create a pull request after you edit the *README.md* file with necessary changes. * Please make sure you check your spelling and grammar. * Create individual PR for each suggestion. ### Creating A Pull Request 1. Fork the Project 2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`) 3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`) 4. Push to the Branch (`git push origin feature/AmazingFeature`) 5. Open a Pull Request ## Authors * **Prashant Jagtap** - ** - [Prashant Jagtap](https://github.com/prashantjagtap2909/) - **
null
angela-yu,css,drumkit,html,javascript,web-development
2023-06-24T14:32:14Z
2024-02-08T15:12:21Z
null
1
0
16
0
0
4
null
null
JavaScript
Dhruv35M/CodingDude
main
# CodingDude - Your Ultimate Contest Reminder 🚀 ![CodingDude Logo](./images/logo.png) Welcome to CodingDude, your go-to Chrome extension for never missing out on any exciting coding contests again! Whether you're a coding enthusiast, a competitive programmer, or just someone looking to challenge yourself, CodingDude is here to make sure you're always in the loop. ## Table of Contents - [Why Choose CodingDude?](#why-choose-CodingDude) - [Features](#features) - [Supported Platforms](#supported-platforms) - [Screenshots](#screenshots) - [Installation](#installation) - [Usage](#usage) - [About the Developer](#about-the-developer) - [Contributing](#contributing) - [License](#license) ## Why Choose CodingDude? ### 🏆 **Stay Ahead in Contests** CodingDude is designed to keep you at the forefront of coding competitions. With timely notifications and easy access to contest details, you'll never miss a chance to showcase your skills. ### ⏰ **Never Miss a Contest** Our handy bell icon ensures that you're alerted 5 minutes before a contest starts. Say goodbye to those "Oops, I forgot!" moments and hello to timely reminders. ### 📅 **Seamless Calendar Integration** Want to plan ahead? Click on the Google Calendar icon to add contests directly to your schedule. Stay organized and on top of your game. ### 🌐 **Tailored Updates** Choose your preferred coding platforms and receive updates only for the websites that matter to you. Customize your experience and streamline your contest journey. ### 🚀 **Explore Popular Platforms** Gain access to a wide array of popular programming platforms like Codeforces, Codechef, LeetCode, HackerEarth, HackerRank, AtCoder, Topcoder, and many more. Your coding playground just got bigger! ### 🗂️ **Sort with Ease** Need contests within the next 24 hours? No problem. Utilize our sorting feature to quickly find contests that fit your timeline. ## Features - Visit a Coding Contest in one click, by clicking on the contest name. - Get a reminder 5 minutes before the contest starts by clicking on the bell icon. - Add a contest to Google Calendar by clicking on the Google Calendar icon. - Get updates only for your selected websites. - Explore contests on popular programming platforms. - Filter contests (e.g., In 24 Hours, Live, etc). ## Supported Platforms CodingDude currently supports the following platforms: - Codeforces - Codechef - LeetCode - HackerEarth - HackerRank - AtCoder - Topcoder ... and many more! ## Screenshots ![CodingDude Screenshot](./images/home.png) &nbsp; ![CodingDude Screenshot](./images/upcommingContets.png) &nbsp; ![CodingDude Screenshot](./images/settings.png) ## Installation 1. Download the CodingDude extension from the [Chrome Web Store](https://chrome.google.com/webstore/detail/codingmate-contest-remind/gceicoplhhmgcoanpkbnopdccpghbngk). 2. Once the extension is installed, you'll notice the CodingDude icon in your browser's toolbar. 3. To pin the extension. Now you'll have quick and convenient access to CodingDude directly from your browser's toolbar! ## Usage 1. Click on the CodingDude extension icon in your browser. 2. Explore the list of upcoming contests on various platforms. 3. Click on a contest name to visit the contest page. 4. Click the bell icon to set a reminder for the contest. 5. Click the Google Calendar icon to add the contest to your schedule. ## About the Developer Hi there! I'm Dhruv Mishra, a passionate full-stack developer who lives and breathes code. My mantra is **CODE, EAT, SLEEP, REPEAT**. I created CodingDude with the aim of helping fellow programmers like you stay engaged, informed, and motivated to participate in exciting coding contests. ## Contributing We welcome contributions from the community! If you have any ideas, bug fixes, or new features to propose, please feel free to submit a pull request. ## License This project is licensed under the [MIT License](LICENSE). --- Stay connected, keep coding, and let CodingDude be your trusty sidekick in your coding adventures! 🚀👨‍💻
Elevate your contest experience with CodingDude – the Chrome extension for unmissable coding battles. Get alerts, Google Calendar reminders, tailored updates from Codeforces, LeetCode, and more. Boost your coding journey now!
chrome-extension,comptetive-programming,contest-remainder-service,javascript,amazon,codechef,codeforces,contest-programming,contests,hackerearth
2023-06-17T09:07:40Z
2024-04-20T04:30:27Z
null
1
0
21
2
0
4
null
null
JavaScript
Bibiwei-Pere/Expenses-chart
main
# Frontend Mentor - Expenses chart component solution This is a solution to the [Expenses chart component challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/expenses-chart-component-e7yJBUdjwt). ### Screenshot <img src="/design/active-states.jpg" /> ### Links - Solution URL: [Expenses chart](https://github.com/Bibiwei-Pere/Expenses-chart) - Live Site URL: [Expenses chart](https://expenseschart.netlify.app) ## My process ### Built with - Semantic HTML5 markup - CSS custom properties - Flexbox - Mobile-first workflow - Javascript ## Author - Website - [Bibiwei Pere](https://perebibiwei.netlify.app) - Frontend Mentor - [@Bibiwei-Pere](https://www.frontendmentor.io/profile/Bibiwei-Pere) - Twitter - [@Bibiwei_Pere](https://www.twitter.com/Bibiwei_Pere)
This is a solution to the Expenses chart component challenge on Frontend Mentor.
chart,css,frontend-mentor,html,javascript
2023-06-22T17:52:10Z
2023-06-27T00:23:14Z
null
1
0
4
0
0
4
null
null
CSS
ldmfabio/Programacao
master
# **Programação I** ## **Olá!** Este é o repositório que contém o material de apoio e listas de exercício da disciplina de Programação I do [Curso Técnico em Informática](https://informatica.araquari.ifc.edu.br/) do [IFC-Araquari](http://araquari.ifc.edu.br). Este material foi elaborado baseando-se no livro [Lógica de Programação e Algoritmos com JavaScript - 2ª Edição](https://www.amazon.com.br/L%C3%B3gica-Programa%C3%A7%C3%A3o-Algoritmos-com-JavaScript/dp/6586057906). Este material está em constante desenvolvimento. Portanto, caso tenha algumas sugestões de melhoria e/ou correções, por favor entre em contato comigo por [e-mail ](mailto:fabio.moura@ifc.edu.br). Se preferir, faça uma solicitação decontribuição ao projeto. **Como contribuir com um projeto privado:** - Criar um fork do projeto; - Clonar o fork; - Criar uma branch para a sua contribuição; - Fazer as alterações no seu branch; - Enviar um pull request para o projeto original. _Antes de começar, saiba que além deste material elaborado para o primeiro ano do Curso Técnico em Informática (1INFOs), também há um material elaborado para o segundo ano do curso (2INFOs) e também para o terceiro ano (3INFOs)._ ### **<u>Trilha do Curso</u>** **[Programação I](https://github.com/ldmfabio/Programacao) :arrow_right: [Professor Fábio Longo de Moura](https://github.com/ldmfabio)** > _Lógica de Programação usando JavaScript_ **[Desenvolvimento Web II](https://eduardo-da-silva.github.io/aula-desenvolvimento-web/) :arrow_right: [Professor: Eduardo da Silva](https://github.com/eduardo-da-silva)** > _Desenvolvimento front-end usando framework Vue_ **[Desenvolvimento Web III](https://github.com/marrcandre/django-drf-tutorial) :arrow_right: [Professor: Marco André Lopes Mendes](https://github.com/marrcandre/)** > _Desenvolvimento back-end usando framework Django_ ### **_Bons estudos durante a sua jornada!_** <br> ## **SUMÁRIO** 1. [Introdução](01_introducao/README.md) 1. [Raciocínio Lógico](01_introducao/01_01_raciocionio_logico/README.md) 2. [Desafios - I](01_introducao/01_02_desafios/README.md) 3. [Desafios - II](01_introducao/01_03_desafios/README.md) 4. [Olá, Mundo](01_introducao/01_04_transicao/README.md) 5. [Olá, JS](01_introducao/01_05_ola_js/README.md) 6. [Certificação de Fundamentos de Programação](01_introducao/01_06_certificacao_fundamentos/README.md) 2. [Variáveis e Operadores](02_variaveis_e_operadores/README.md) 1. [Arquivos HTML e JS](02_variaveis_e_operadores/02_01_arquivo_html_js/README.md) 2. [Saída de Dados](02_variaveis_e_operadores/02_02_saida_de_dados/README.md) 3. [Entrada de Dados](02_variaveis_e_operadores/02_03_entrada_de_dados/README.md) 1. [Lista de Exercícios (Strings)](02_variaveis_e_operadores/02_03_entrada_de_dados/02_03_01_listaExercicios/README.md) 4. [Comentários](02_variaveis_e_operadores/02_04_comentarios/README.md) 5. [Tipos de Dados](02_variaveis_e_operadores/02_05_tipos_de_dados/README.md) 1. [Lista de Exercícios (Variáveis e Operadores)](02_variaveis_e_operadores/02_05_tipos_de_dados/02_05_02_listaExercicios_2/README.md) 3. [Estruturas de Decisão](03_estruturas_de_decisao/README.md) 1. [IF...Else](03_estruturas_de_decisao/03_01_if_else/README.md) 1. [Operadores Lógicos](03_estruturas_de_decisao/03_01_if_else/03_01_01_opLogicos/README.md) 2. [Lista de Exercícios - Obrigatória](03_estruturas_de_decisao/03_01_if_else/03_01_02_listaExercicios/README.md) 3. [Lista de Exercícios - Complementar](03_estruturas_de_decisao/03_01_if_else/03_01_02_listaExercicios_2/README.md) 2. [Operador Ternário](03_estruturas_de_decisao/03_02_operador_ternario/README.md) 3. [Switch...Case](03_estruturas_de_decisao/03_03_switch_case/README.md) 4. [Arrays](04_arrays/README.md) 1. [Lista de Exercícios](04_arrays/listaExercicios_01/README.md) 5. [Estruturas de Repetição](05_estruturas_de_repeticao/README.md) 1. [For...Of](05_estruturas_de_repeticao/01-forOf/README.md) 2. [For com Variável de Controle](05_estruturas_de_repeticao/02-forControle/README.md) 3. [Do...While](05_estruturas_de_repeticao/03-while/README.md) 6. [Funções](06_funcoes/README.md) 1. [Funções com passagem de parâmetros](06_funcoes/01_parametros/README.md) 2. [Funções com retorno de valores](06_funcoes/02_retorno/README.md) 3. [Funções anônimas](06_funcoes/03_anonimas/README.md) 4. [Funções callback](06_funcoes/04_callback/README.md) 5. [Funções autoexecutáveis](06_funcoes/05_autoexec/README.md) 6. [Funções recursivas](06_funcoes/06_recursivas/README.md) 7. [Funções com parâmetros opcionais](06_funcoes/07_outras/README.md#funções-com-parâmetros-opcionais) 8. [Funções com parâmetros variáveis](06_funcoes/07_outras/README.md#funções-com-parâmetros-variáveis) 9. [Funções com parâmetros nomeados](06_funcoes/07_outras/README.md#funções-com-parâmetros-nomeados) 10. [Funções com parâmetros nomeados e opcionais](06_funcoes/07_outras/README.md#funções-com-parâmetros-nomeados-e-opcionais) 11. [Funções com parâmetros nomeados e variáveis](06_funcoes/07_outras/README.md#funções-com-parâmetros-nomeados-e-variáveis) 7. [Objetos](07_objetos/README.md) 8. [Desafios de Projetos]()
Repositório da Disciplina de Programação I do Curso Técnico em Informática para Internet [IFC - Campus Araquari]
ifc,informatica,javascript,logica-de-programacao,programacao
2023-06-13T18:57:35Z
2024-03-12T14:08:46Z
null
1
0
42
0
6
4
null
null
HTML
riteshk-007/ri_shore
main
![image](https://github.com/riteshk-007/ri_shore/assets/135107962/fe64f7cb-2732-49b8-acc2-58243711b60c) # Ri Shore Ri Shore is a web application that provides information and details about various shorelines around the world. It allows users to explore different coastal areas, learn about their features, and access related resources. ## Features - **Shoreline Information:** Users can search for specific shorelines and retrieve detailed information about them, including location, climate, flora and fauna, and popular activities. - **Photo Gallery:** Each shoreline has a dedicated photo gallery showcasing stunning images of the area. - **Visitor Reviews:** Users can read and submit reviews about their experiences visiting specific shorelines. - **Interactive Map:** The application provides an interactive map that allows users to visualize the location of different shorelines. - **Favorites List:** Users can create a list of their favorite shorelines and easily access them later. - **Responsive Design:** The application is optimized for various screen sizes and devices. ## Installation To run the application locally, follow these steps: 1. Clone the repository: ```bash git clone https://github.com/riteshk-007/ri_shore.git ``` 2. Navigate to the project directory: ```bash cd ri_shore ``` 3. Install the dependencies: ```bash npm install ``` 4. Start the development server: ```bash npm start ``` 5. Open your browser and visit `http://localhost:3000` to access the application. ![image](https://github.com/riteshk-007/ri_shore/assets/135107962/b34b3675-3c9a-47a7-9065-72ea65b45b4c) ![image](https://github.com/riteshk-007/ri_shore/assets/135107962/f5a02818-8d86-4be0-9c6f-1dc34ded9057) ## Technologies Used - React - React Router - Redux - Leaflet (Map Library) - Unsplash API (for photos) - Firebase (Authentication, Firestore) ## Project Structure The project structure follows the standard React application structure: - `public/`: Contains the static files and the HTML template. - `src/`: Contains the source code for the application. - `components/`: Contains reusable UI components. - `containers/`: Contains the main components that represent different pages of the application. - `redux/`: Contains the Redux store setup, actions, and reducers. - `firebase/`: Contains the Firebase configuration and utility functions for interacting with Firebase services. - `utils/`: Contains utility functions used throughout the application. - `App.js`: The main component that handles routing and rendering of different pages. - `index.js`: The entry point of the application. ## Contributing ![image](https://github.com/riteshk-007/ri_shore/assets/135107962/0a978111-ba1a-48a8-adbf-9a71916f8af9) Contributions are welcome! If you find any issues or would like to add new features, please open an issue or submit a pull request on the [GitHub repository](https://github.com/riteshk-007/ri_shore). ## License This project is licensed under the [MIT License](LICENSE). ![image](https://github.com/riteshk-007/ri_shore/assets/135107962/d5b77eb9-0980-426e-901a-953b4abc7619) ![image](https://github.com/riteshk-007/ri_shore/assets/135107962/cbd500fc-b897-488d-880e-bc83cf7b130d) ## Acknowledgements - The project utilizes the Unsplash API to display photos of shorelines. - Special thanks to the creators of the libraries and frameworks used in this project. ## Contact If you have any questions or suggestions, feel free to reach out to the project owner: - Ritesh Kumar - GitHub: [@riteshk-007](https://github.com/riteshk-007) - Email: rk0001945@gmail.com, codeshorts007@gmail.com
E commerce | React Js
ecomerce,ecomerce-web-app,javascript,reactjs,tailwindcss
2023-06-15T08:19:46Z
2023-07-20T12:20:56Z
null
1
0
10
0
0
4
null
null
JavaScript
quochung-cyou/QLDT_Enhancer
main
# QLDT Enhancer ## Author * quochungcyou * Idea khởi nguồn và code tham khảo từ anh Khoa (https://github.com/28dec/qldt_prepare_schedule). Người đã tạo ra tool miễn phí cho các thế hệ sinh viên ptit sử dụng rất nhiều năm ## Description * Script hỗ trợ việc xếp lịch TKB, đồng thời chỉnh lại giao diện QLDT một chút theo ý mình. Script được hoàn thành gấp rút trong nửa ngày vì yêu cầu của bạn bè mình, mình cũng chỉ mới học JavaScript nên nếu có lỗi hay vấn đề hi vọng các bạn có thể liên hệ mình qua nguyenquochung.workvn@gmail.com * Sử dụng script theo nhu cầu của bạn, mình không chịu trách nhiệm trước các vấn đề liên quan đến việc sử dụng script này. ## Feature - [x] Tool xem xếp lịch TKB theo QLDT - [x] Chọn môn bằng dropdown nhanh chóng, đỡ phải tìm kiếm hay lướt như QLDT cũ - [x] Tự động cập nhật lịch thay đổi - [x] Chỉnh sửa giao diện thêm một chút - [x] Tự động giữ kết nối, tránh bị out session - [x] Danh sách môn đã đăng kí - [x] Tránh đăng kí trùng 1 môn ## Prerequisites and Setup Video hướng dẫn: https://www.youtube.com/watch?v=UYY8gMDWGD8 * Để sử dụng, đầu tiên bạn cần tải Tamper Monkey về trình duyệt của bạn, sau đó tải script về và cài đặt. (https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo?hl=vi) * Sau đó vào link sau để tiến hành cài đặt https://greasyfork.org/scripts/469227-qldt-enhance-by-quochungcyou/code/QLDT%20Enhance%20by%20quochungcyou.user.js * Truy cập QLDT -> Xem thời khoá biểu tuần -> Lấy ngày tháng năm của kì chuẩn bị học. Ví dụ 03/08/2023 * Truy cập QLDT -> Đăng ký môn -> Đăng ký môn học theo CTDT kế hoạch * Ấn nút trắng góc dưới bên phải màn hình để bật script * Điền ngày tháng đã lấy ở bước trên, rồi tick các box môn học để theo dõi lịch thay đổi ## Technologies Used * JavaScript * JQuery ## Demo image ![](demo/demo1.jpg) ![](demo/demo2.jpg) ![](demo/demo3.jpg) ![](demo/demo4.jpg) ## License Information * This software is licensed under MIT License. * [Read More](https://choosealicense.com/licenses/mit/) on the license. ### Giúp đỡ tôi bằng cách chia sẻ hoặc tặng sao ![](https://raw.githubusercontent.com/quochung-cyou/WebDocument/main/asset/stars.gif) ### Thông tin liên hệ > Nếu có bất kỳ nội dung nào liên quan còn thiếu,hãy tạo [issues](https://github.com/quochung-cyou/QLDT_Enhancer/issues) cho nó, tôi sẽ theo dõi và cải thiện。 ``` MIT License Copyright (c) 2023 QuocHung Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ```
Script xếp lịch TKB Qldt PTIT theo giao diện mới 6/2023, đồng thời sửa một chút giao diện
javascript,monkey,ptit,tamper,tampermonkey
2023-06-19T18:15:47Z
2023-06-23T15:48:15Z
null
1
8
53
0
0
4
null
MIT
JavaScript
nikhil-188/OnlineDrugStore
main
<a name="br1"></a> **Abstract:** Most of the people buy medicines from the local Pharmacies and people need to go to medicine stores to buy the specific medicine prescribed by the specialized doctors. Sometimes all prescribed medicines are not available in local Pharmacies therefore people need to go to other areas to buy the medicines. It is very time consuming and people need to spend their money as well. In India most of the pharmacies are closed at night time and sometimes medicines are very essential in an emergency situation. In addition, currently the whole world is suffering due to COVID-19 pandemic. In this pandemic time it is not risk free to go out to buy medicine from the pharmacies. Due to COVID-19, medicine scarcity is also an important issue. In this situation, an online medicine delivery system can play an important role. So we developed a website of medicines for various uses and types for the user to order easily**.** **Introduction:** Increasing advancement in technology can turn up for the good of society and here we are planning to bring a change in health care and services. The ultimate objective of our project is to design an online medicine delivery web app through which people can order and get their medicines to their doorstep from their nearest pharmacies. Our users can simply log on to our website with their registered credentials and can choose their desired medicine as per their prescription and can order them with a secured and hassle-free experience. These days shopping for medicines and other medical products online websites are a good deal because it saves time, money, fuel, etc. Also, one pharmacy may not provide all the medicines, so the users need not move around all the pharmacies in search of medicines. Nowadays, almost every literate person mainly youngsters wants to shop online as they don’t have time to go to market and shop. **Methods and Techniques:** We divided our project into the parts and each of us worked o those, the following are the modules we have in our project on the header file (Mostly we used PHP only and if we want to add or delete anything from the database we used SQL statements): Types Uses Medicines My cart Checkout Sign in Sign out Contact Us And we have manager login and expert login, can login and add or delete medicines and other can edit the information which has been given by the manager respectively. He can modify all the details like it belongs to which type, which use, description, image of the medicine and price of the medicine. <a name="br2"></a> **Admin pages, expert pages, index page and header** Admin login: (We can also see the header file in all the images with the above mentioned options we can access those where ever we are.) ![image](https://github.com/nikhil-188/OnlineDrugStore/assets/84719583/fa891ac5-66f0-44ce-b278-6eb118be843c) Here he can delete the medicines which are already added. ![image](https://github.com/nikhil-188/OnlineDrugStore/assets/84719583/be0a7a61-66f0-4a87-a758-33944a50e33b) Here he can add any new medicines and the details will also be given by him, if they want to change any details after the medicine got added they can login through expert login who can edit the details of the medicines, types and uses as follows. ![image](https://github.com/nikhil-188/OnlineDrugStore/assets/84719583/8276257f-84a6-4a3e-99a8-dc038f82ddde) <a name="br3"></a> Here we can add or delete any type, the same way he can also do it for the uses. In the same way expert can login and can change the type, use or any of the medicine details. If the new use which they are going to add is already there, it will show the error that it already exists. ![image](https://github.com/nikhil-188/OnlineDrugStore/assets/84719583/0c8d083b-dd80-46d9-ab6a-9ccc96680991) The page will be similar (the style and the button position and the order in which the medicines, types and the uses are displaying) for the manager and the expert but the option is different, manager can add the stuff and expert can edit the stuff. And the following is the index page (home page of our website) We can scroll down to see the recently added medicines. ![image](https://github.com/nikhil-188/OnlineDrugStore/assets/84719583/83602f01-cf7f-450b-8972-732706a6685c) <a name="br4"></a> **Displaying the medicines, medicine details, uses, types and purchase page** ![image](https://github.com/nikhil-188/OnlineDrugStore/assets/84719583/accde29a-000f-425a-891a-fe3564034442) Like this if we click medicines module we can see all the medicines at a time, if we click on it we can see the details of the medicines like price, use, type etc. If we click on the type’s module we can see all the types at a time and number of medicines available in each type, same for the use case. ![image](https://github.com/nikhil-188/OnlineDrugStore/assets/84719583/ca631a9e-fb52-49ba-903c-7bb105bab924) ![image](https://github.com/nikhil-188/OnlineDrugStore/assets/84719583/539e7a98-138d-4bdc-b496-7042125e56a7) <a name="br5"></a> There is a button below these details to purchase the item, if we click it the purchase will be conformed and the user will be redirected to the index page in 5 seconds. **SQL part and the user sign up and sign in** We created the following tables to store the values: I had pasted the screenshot from the PHPMYADMIN to show all the tables. (It is below) ![image](https://github.com/nikhil-188/OnlineDrugStore/assets/84719583/f5b2b2fc-ca51-4612-98b9-af5b991308d1) <a name="br6"></a> And each table has one common attribute, because when we are calling the value from two tables by joining them, we need that attribute in two tables. (Like type ID in type table and also in medicines table.) And the following sign in and sign up page and checking whether the credentials are correct or not while signing in to the website. First during the sign up the details will be stored into the customers table, and when we are signing in we will check the email id and password entered are correct or not, if yes he will get logged in to the website and will be redirected to the index page, if not it will show invalid login credentials. Also after logging in the user can edit his profile details, the page will be similar to the sign up part, after he clicks finish the new details will get stored. ![image](https://github.com/nikhil-188/OnlineDrugStore/assets/84719583/64035d65-02b6-4927-9f52-1a5fa691e217) Here user can create the account by giving all the required details, after that he can sign in using the given email id and the password. ![image](https://github.com/nikhil-188/OnlineDrugStore/assets/84719583/0bda0a74-c8f7-451a-933b-5341c338498a) <a name="br7"></a> **Database Functions, cart functions, cart page and checkout pages** Some of the functions are: select4Latestmed: to display the last 4 medicines which are added in the index page getmedBySerial: to get the medicine details, by medicine serial number, basically the it is acting as the primary key. getCartId: if one user is using his cart, through his cart id we can get all the details of his cart. Getmedprice: to get the medicine price, by medicine serial number, basically the it is acting as the primary key. And there also remaining functions which we created. And the following is the cart page: ![image](https://github.com/nikhil-188/OnlineDrugStore/assets/84719583/618f7cdf-048b-4007-814a-451f279a52df) <a name="br8"></a> This is the checkout page: ![image](https://github.com/nikhil-188/OnlineDrugStore/assets/84719583/be90b252-6db8-491a-a55f-9570c6e49ae2)
The Online Drug Delivery System is a web application that allows users to conveniently order medicines online. With a user-friendly interface, users can browse a wide range of medicines, add them to their cart, and proceed to checkout. The system also has an admin login feature, empowering administrator to manage the inventory, by adding medicines.
css,html,javascript,jdbc,medicine,mysql,onlinestore,php,webdevelopment,online-pharmacy
2023-06-28T09:49:12Z
2023-06-28T10:50:21Z
null
1
0
27
0
2
4
null
null
PHP
Muhammad-Saad12/platformer.ai
master
# Platformer.ai A sample game featuring a multiplayer Mario game using PlayroomKit. The game runs as a cast screen on any browser, while the controller opens on a phone, in a separate app. ## Technologies used - Turbo monorepo - React for the controller app - Phaser3 for the cast game - PlayroomKit for networking ## Related article Read more about this project here: https://www.linkedin.com/pulse/we-built-multiplayer-web-based-mario-like-game-playroomkit-7
👾 N player sample cast game for PlayroomKit
game,gaming,javascript,multiplayer-game,phaser,platformer-game,playroom,react,web,web-game
2023-06-19T19:23:45Z
2024-01-22T20:31:57Z
null
6
6
53
2
2
4
null
null
TypeScript
praneethravuri/prav-terminal
main
<p align="center"> <a href="https://prav.dev/" target="_blank"> <img alt = "website preview" src = "./banner.png"> </a> </p> # Prav Terminal - Portfolio Website <h3 align="center"> <img alt="Alt text" src="https://img.shields.io/badge/Vue.js-4FC08D.svg?style=for-the-badge&logo=vuedotjs&logoColor=white"/> <img alt="Alt text" src="https://img.shields.io/badge/Sass-CC6699.svg?style=for-the-badge&logo=Sass&logoColor=white"/> <img alt="Alt text" src="https://img.shields.io/badge/JavaScript-F7DF1E.svg?style=for-the-badge&logo=JavaScript&logoColor=black"/> </h3> Inspired By - [Yassine Fathi](https://term.m4tt72.com/) ## Project setup ``` npm install ``` ### Compiles and hot-reloads for development ``` npm run dev ``` ### Compiles and minifies for production ``` npm run build ``` ### Lints and fixes files ``` npm run lint ``` ### Customize configuration See [Configuration Reference](https://cli.vuejs.org/config/). ## Color Reference | Color | Hex | | -------------- | ------------------------------------------------------------------ | | Lime Green | ![#39FF14](https://via.placeholder.com/10/39FF14?text=+) `#39FF14` | | White | ![#F7F7F7](https://via.placeholder.com/10/F7F7F7?text=+) `#F7F7F7` | | Bright Blue | ![#00a6f4](https://via.placeholder.com/10/00a6f4?text=+) `#00a6f4` | | Bright Purple | ![#BF40BF](https://via.placeholder.com/10/BF40BF?text=+) `#BF40BF` | | Black | ![#151515](https://via.placeholder.com/10/151515?text=+) `#151515` | | Orange | ![#FC7300](https://via.placeholder.com/10/FC7300?text=+) `#FC7300` | | Yellow | ![#FFDE00](https://via.placeholder.com/10/FFDE00?text=+) `#FFDE00` | | Off-White | ![#F8F1F1](https://via.placeholder.com/10/F8F1F1?text=+) `#F8F1F1` | | Teal | ![#125B50](https://via.placeholder.com/10/125B50?text=+) `#125B50` | | Electric Green | ![#BFDB38](https://via.placeholder.com/10/BFDB38?text=+) `#BFDB38` | | Pink-Red | ![#FF4057](https://via.placeholder.com/10/FF4057?text=+) `#FF4057` | | Brown | ![#B3541E](https://via.placeholder.com/10/B3541E?text=+) `#B3541E` | | Pink | ![#F535AA](https://via.placeholder.com/10/F535AA?text=+) `#F535AA` | | Turquoise Blue | ![#00f5d0](https://via.placeholder.com/10/00f5d0?text=+) `#00f5d0` | ## Fonts 1. Source Code Pro
A personal portfolio website designed and functions like a terminal. A single page application with server-side rendering
command-prompt,javascript,linux,scss,server-side-rendering,ssr,terminal,vite,vuejs,terminal-portfolio
2023-06-28T18:28:51Z
2024-05-17T22:49:32Z
null
1
0
105
0
1
4
null
MIT
Vue
Nithyalakshmy/ecommerce-website
master
E-Commerce Website with AI Chatbot
ai-chatbot,css,data-science,e-commerce,html,ibm-watson,python,web-development,javascript
2023-06-28T17:09:39Z
2023-06-28T17:29:23Z
null
1
0
2
0
0
4
null
null
JavaScript
Kaiserabbas/project-portfolio
main
# My-Professional-Portofolio <a name="readme-top"></a> <div align="center"> <img src="./public/logo.png" alt="logo" width="140" height="auto" /> <br/> <h3><b>My Professional Portofolio</b></h3> </div> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [📝 License](#license) # 📖 My Portofolio <a name="about-project"></a> I have created my first coding blog. and I'm working on developing fullstack projects. I have created a simple html and css file to start with. ## 🛠 Built With <a name="built-with"></a> - HTML. - CSS. - LINTERS. ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="https://reactjs.org/">HTML</a></li> <li><a href="https://reactjs.org/">CSS</a></li> <li><a href="https://reactjs.org/"></a>LINTERS</li> </ul> </details> ### Key Features <a name="key-features"></a> - Added html.index file. - Added style.css file. <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 💻 Getting Started <a name="getting-started"></a> To get a local copy up and running, follow these steps. ### Prerequisites In order to run this project you need: - Web Browsers - Code Editor. - Git -smc. ### Setup Clone this repository to your desired folder: Run this command. ### Install Install this project with: Run this command: - cd my-project - npm install ### Usage To run the project, execute the following command: OPen index.html using live server. <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 👥 Authors <a name="authors"></a> 👤 **Qaisar Abbas** - My Video Presentation: (https://www.loom.com/share/933c619eeb3942aaaead761335c68eb2?sid=289727fd-2380-4ad7-8e4e-f79d9db291f5) - GitHub: [@githubhandle](https://github.com/Kaiserabbas/) - Twitter: [@twitterhandle](https://twitter.com/AbbasKayser) - LinkedIn: [LinkedIn](https://www.linkedin.com/in/qaisar-abbas-21a93840/) <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🔭 Future Features <a name="future-features"></a> - [ ] Add Header - [ ] Add Navigation Bar - [ ] Add Headline <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🤝 Contributing <a name="contributing"></a> Contributions, issues, and feature requests are welcome! Feel free to check the [issues page](../../issues/). <p align="right">(<a href="#readme-top">back to top</a>)</p> ## ⭐️ Show your support <a name="support"></a> If you like this project, Write to me and give me a good rating. <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to thank Microverse and Omar for helping me to create this Blog. <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 📝 License <a name="license"></a> This project is [MIT](./LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
Welcome to my personal portfolio website! I am a a passionate Software Developer. This website showcases my work and allows you to learn more about me.
bootstrap,css,html,javascript
2023-06-24T06:40:02Z
2023-06-30T09:42:18Z
null
2
5
46
1
0
4
null
MIT
CSS
Bibiwei-Pere/Notifications-page
main
# Frontend Mentor - Notifications page solution This is a solution to the [Notifications page challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/notifications-page-DqK5QAmKbC). ### Screenshot #### Desktop ![127 0 0 1_3000_index html(iPad Air)_11zon](https://github.com/Bibiwei-Pere/Notifications-page/assets/106984663/46903a8a-8884-45c3-b888-a04ec2478794) ### Links - Solution URL: [Notifications-page](https://github.com/Bibiwei-Pere/Notifications-page) - Live Site URL: [Notifications-page](https://Notifications01.netlify.app) ## My process ### Built with - Semantic HTML5 markup - CSS custom properties - Flexbox - Mobile-first workflow - Javascript ## Author - Website - [Bibiwei Pere](https://perebibiwei.netlify.app) - Frontend Mentor - [@Bibiwei-Pere](https://www.frontendmentor.io/profile/Bibiwei-Pere) - Twitter - [@Bibiwei_Pere](https://www.twitter.com/Bibiwei_Pere)
This is a solution to the Notifications page challenge on Frontend Mentor.
css,javascript,messaging,notifications
2023-06-15T22:24:07Z
2023-06-19T07:05:55Z
null
1
0
8
0
0
4
null
null
CSS
PR-Peri/pr-peri.github.io
main
# My Personal Website Welcome to my personal website! This repository contains the source code and assets for my website, where I showcase my work, share my thoughts, and provide information about my projects. ## Table of Contents - [Overview](#overview) - [Features](#features) - [Installation](#installation) - [Usage](#usage) - [Contributing](#contributing) - [License](#license) - [Contact](#contact) ## Overview This website serves as a digital portfolio and online presence for me. It showcases my projects, skills, resume, and blog posts. It's built using [technology stack used, e.g., HTML, CSS, JavaScript, and any frameworks or libraries]. ## Features - **Project Showcase**: Browse through a collection of my projects, with descriptions, screenshots, and links to live demos or repositories. - **Skills**: Discover the skills I have acquired and the technologies I am proficient in. - **Resume**: Download my resume in PDF format to learn more about my education, work experience, and accomplishments. - **Blog**: Read my blog posts where I share insights, tutorials, and updates related to my areas of interest. - **Contact**: Get in touch with me through the contact form or via social media links provided on the website.
Personal Website
blog,gem,javascript,jeykll,python,ruby,webapp
2023-06-21T10:10:35Z
2023-10-12T06:22:40Z
null
1
11
72
0
0
3
null
MIT
HTML
AnsarIbrahim/Review-JS-best--practices
main
<!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment](#triangular_flag_on_post-deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [📝 License](#LICENSE) <!-- PROJECT DESCRIPTION --> # 📖 To Do List <a name="about-project"></a> **To Do List** is a application that displays my Techinical skills and projects that i have done. **Link to online version of To Do List** is in [Live Demo](#live-demo) ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="https://developer.mozilla.org/en-US/docs/Web/HTML">HTML</a></li> <li><a href="https://developer.mozilla.org/en-US/docs/Web/CSS">CSS</a></li> </ul> </details> <details> <summary>Server</summary> <ul> <li><a href="#">N/A</a></li> </ul> </details> <details> <summary>Database</summary> <ul> <li><a href="#">N/A</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> - **To-do-list** - **Setup with Webpack** - **CSS loader Webpack** - **HTML Webpack Plugin** - **Source files in src(Folder)** - **dist (folder)** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo"></a> - [Live Demo Link](https://ansaribrahim.github.io/Review-JS-best--practices/dist/) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- GETTING STARTED --> ## 💻 Getting Started <a name="getting-started"></a> To get a local copy up and running, follow these steps. ### Prerequisites In order to run this project you need: - Modern chrome Browser ### Setup - Clone this repository to your desired folder with the following commend ``` git clone git@github.com:AnsarIbrahim/To-do-list-new.git ``` ### Install - Type cd ``` To-Do-List ``` - open index.html file in the browser ### Usage - To run the project, execute the following command: - Type cd ``` To-do-list-new ``` - open index.html file in the browser ### Run tests - To run tests, run the following command: - npm bulid run ### Deployment - You can deploy this project using: - Type cd ``` To-do-list-newt ``` - open index.html file in the browser <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> 👤 **Ansar Ibrahim** - GitHub: [Ansar Ibrahim](https://github.com/AnsarIbrahim) - Twitter: [Ansar Ibrahim](https://twitter.com/ansaradheeb) - LinkedIn: [Ansar Ibrahim](https://linkedin.com/in/ansar-ibrahim-61447424a/) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> - [ ] **To-Do-List: add remove** - [ ] **To-Do-List: interactive list** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- CONTRIBUTING --> ## 🤝 Contributing <a name="contributing"></a> Contributions, issues, and feature requests are welcome! Feel free to check the [issues page](../../issues/). <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- SUPPORT --> ## ⭐️ Show your support <a name="support"></a> - If you like this project please give it a STAR⭐️ <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> - I would like to thank following - MicroVerse - web.archive.org. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 LICENSE <a name="LICENSE"></a> This project is [MIT](./LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
This is my project of TO-DO with code review
css,html,javascript,js,linters,modules,webpack
2023-06-12T13:20:39Z
2023-06-13T06:57:06Z
null
1
1
5
0
0
3
null
MIT
JavaScript
alyconr/todolist-app
main
<a name="readme-top"></a> <div align="center"> <img src="./src/assets/images/logo.png" alt="logo" width="140" height="auto" /> <br/> <h3><b>JAVASCRIPT TODO LIST APP"</b></h3> </div> <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment](#deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [❓ FAQ (OPTIONAL)](#faq) - [📝 License](#license) <!-- PROJECT DESCRIPTION --> # 📖 [JavaScript Todo List App'] <a name="about-project"></a> **[JavaScript Todo List App]** This project is a JavaScript-based Todo List application that allows you to manage your tasks efficiently. It incorporates various features such as adding, deleting, updating, and canceling tasks, as well as the ability to drag and drop tasks for easy organization. The app is built using modern JavaScript techniques, specifically utilizing ES6 syntax, JavaScript modules and webpack. ES6 (ECMAScript 2015) is the sixth edition of the JavaScript language specification and introduces several enhancements, including arrow functions, classes, template literals, and more. By leveraging ES6, the codebase is more concise, readable, and easier to maintain. Webpack is used as the module bundler for the app. It enables efficient management of JavaScript modules, optimizes code size, and helps in organizing dependencies. Webpack allows the app to be split into multiple modules, improving code modularity and facilitating easier maintenance. JavaScript modules are a way to organize and structure code by separating it into individual modules, each with its own set of functionalities. This modular approach improves code maintainability, reusability, and allows for better organization of different parts of the application. ## 🛠 Built With <a name="built-with"></a> <p> This project was built using: HTML, CSS and JAVASCRIPT, WEBPACK </p> ### Tech Stack <a name="tech-stack"></a> <li> HTML </li> <li> CSS </li> <li> Javascript </li> <li> Webpack </li> <li> Git </li> <li> Github </li> <li> Netlify</li> <details> <summary>Client</summary> <ul> <li><a href="https://www.w3schools.com/html/">HTML</a></li> </ul> </details> <details> <summary>Styles</summary> <ul> <li><a href="https://www.w3.org/Style/CSS/Overview.en.html">CSS</a></li> </ul> </details> <details> <summary>Language</summary> <ul> <li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript">CSS</a></li> </ul> </details> <details> <summary>Database</summary> <ul> <li><a href="https://github.com/">GIT</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> - **[HTML & CSS Best practices]** - **[Add Task]** - **[Display Task]** - **[Delete Task ]** - **[Update Task ]** - **[Cancel task completion ]** - **[Filter Tasks ]** - **[Mark Task as Completed ]** - **[Modular JavaScript]** - **[Data Persistence]** - **[Data Persistence]** - **[Edit Book Details ]** - **[CI and CD Deployment with Netlify]** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ### 🚀 Live Demo <a name="live-demo"></a> > - [Live Demo Link](https://todo-list-aly.netlify.app/ ) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- GETTING STARTED --> ## 💻 Getting Started <a name="getting-started"></a> To get a local copy up and running, follow these steps. ### Prerequisites To run this project you need the following tools: - [VS Code ] - [Git and GitHub ] - [Webpack Installation ] - [CI CD Netlify Bot Instalation] - [Nodejs ] ### Setup Clone this repository to your desired folder: ```sh cd todolist-app git clone git@github.com:alyconr/todolist-app.git ``` ### Install Install this project with: Lighthouse run ```sh npm install -g @lhci/cli@0.7.x ``` Webhint: ```sh npm install --save-dev hint@7.x ``` Stylelint: ```sh npm install --save-dev stylelint@13.x stylelint-scss@3.x stylelint-config-standard@21.x stylelint-csstree-validator@1.x ``` Eslint ```sh npm install --save-dev eslint@7.x eslint-config-airbnb-base@14.x eslint-plugin-import@2.x babel-eslint@10.x ``` Webpack ```sh npm init -y npm install webpack webpack-cli --save-dev ``` Webpack Css loader ```sh npm install --save-dev style-loader css-loader ``` Webpack html plugin ```sh npm install --save-dev html-webpack-plugin ``` Webpack dev server ```sh npm install --save-dev webpack-dev-server ``` Minify CSS Webpack: This is useful to reduce the size of the CSS file to imporve the loading time ```sh npm install css-minimizer-webpack-plugin --save-dev ``` Split CSS: Use the MiniCssExtractPlugin to extract the CSS into separate files. Splitting it into smaller modular files can help improve the loading time. ```sh npm install mini-css-extract-plugin --save-dev ``` ### Usage To run locally run the following command: ```sh npm run build npm run start ``` ### Run tests To run tests, run the following command: To test the Stylelint linter: ```sh npx stylelint "**/*.{css,scss}" ``` To test the Webhint: ```sh npx hint . ``` To test the ESLint linter: ```sh npx eslint . ``` ### Deployment You can deploy this project using your local enviroment or use Netlify bot to deploy it online. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> JEYSSON CONTRERAS 👤 **Author1** - GitHub: [@alyconr](https://github.com/alyconr) - LinkedIn: [LinkedIn](https://www.linkedin.com/in/jeysson-aly-contreras/) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> - [ ] **[Task Prioritization]** - [ ] **[Task Categories]** - [ ] **[Task Reminders]** - [ ] **[Task Scheduling]** - [ ] **[Task Sharing and Colaboration]** - [ ] **[Task Search]** - [ ] **[User Authentication]** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- CONTRIBUTING --> ## 🤝 Contributing <a name="contributing"></a> Contributions, issues, and feature requests are welcome! Feel free to check the [issues page](https://github.com/alyconr/todolist-app.git/issues). <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- SUPPORT --> ## ⭐️ Show your support <a name="support"></a> > Write a message to encourage readers to support your project If you like this project please give one start. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to thank God for giving me the strength to carry out this project. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FAQ (optional) --> <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](LICENSE.md) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
This project is a JavaScript-based Todo List application that allows you to manage your tasks efficiently. It incorporates various features such as adding, deleting, updating, and canceling tasks, as well as the ability to drag and drop tasks for easy organization.
babel,eslint,html-css,javascript,todolist,webpack
2023-06-14T22:30:22Z
2023-07-03T21:32:11Z
null
1
2
19
0
0
3
null
NOASSERTION
JavaScript
PherbCampton/Scissor
main
null
A landing page for a url trimming company. Personalize your shortened URLs to align with your brand identity. Utilize custom slugs, branded links, and domain customization options to reinforce your brand presence and enhance user engagement.
css,html5,javascript
2023-06-24T18:03:50Z
2023-06-25T21:11:16Z
null
1
0
4
0
0
3
null
null
HTML
HimAYouN/30DaysOfJs
main
# 30DaysOfJs Me Learning Javascript in 30 days and this repo is the track record. I completed basics of js in about a month, Asynchronous JS took around 6-8 days and the projects part took around 16-18 days. Total of which is around 56 days (Not a month 😂). The basics of JS is easy and will be covered in a month or so if you already know some other language, but can take two or three months if you are starting with JS as first language. The Projects part is mentioned below: With the help of ChatGPT and googling (other sites and youtube): - 📝 To-Do List : About 14 hours. - 🪨📃✂️ Rock-Paper-Scissors Game : About 18 hours. - 🕛Digital Clock & Quote Generator : About 6-7 hours. - ⌛ Countdown Timer : About 17-20 hours. - ☁️🌡️ Weather App : About 16-20 hours (Code-with-Harry youtube video ) -🏯🎌 Anime Search Page : About 30-35 hours. This is all the total working hours in which a project was completed, but the time spend on a project is diffent. The time spend on These projects is roughly 16-18 days. First i was making To-Do List and Rock-Paper-Scissors and that i completed i around 3 days. Then i was doing Digital Clock & Quote Generator and Countdown Timer and those two took me around 4 days to complete. In between making WeatherApp and AnimeSearchPage i was also making some improvements to my old projects in js and css. Then i started making a weather app and failed and i watched a youtube video on CodeWithHarry's channel that really helped. The weatherApp took about 4-5 days to complete. After that i started my final project which includes API, Asynchronous Js and some CSS concepts, which is AnimeSearchPage, most of which i did myy self but got a little help from chatGPT and it took me about 6-7 days to complete this. This repo is not that good with time tracking as it contains only 4week folders while it took me around 6-7weeks But the next one will be good enough. I am going to learn to react next and keep posting that in another repo, so please check my profile and i you like this repo then please give it a star ⭐. # [See What's in this repo ](https://himayoun.github.io/30DaysOfJs/). # Thanks_For_Reading...
Me Learning Javascript in 30 days and this repo is the track record.
countdowntimer,css,devlopment,frontend,html,javascript,to,todolist,web,webdevelopment
2023-06-24T07:17:44Z
2023-12-17T04:30:27Z
null
1
0
239
0
0
3
null
null
JavaScript
devlak2001/portfolio
main
# Getting Started with Create React App This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). ## Available Scripts In the project directory, you can run: ### `npm start` Runs the app in the development mode.\ Open [http://localhost:3000](http://localhost:3000) to view it in the browser. The page will reload if you make edits.\ You will 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/).
This GitHub repository houses the code for my personal website, showcasing information about me, my projects, and professional experience. Dive into the code to explore my journey and the projects I've undertaken. 🚀💻
affinity-designer,animation,animation-css,css,css3,figma,flexbox,html,html5,javascript
2023-06-21T15:59:41Z
2023-12-26T21:46:44Z
null
1
0
49
0
1
3
null
null
SCSS
ighoshsubho/Cloud-Reminder
main
# Cloud Reminder App 👋📅 The Cloud Reminder App is a ⛅️ cloud-based application that allows you to create reminders and automatically sends SMS 📱 and email 📧 notifications at the specified time. It utilizes Firebase Functions, Twilio for SMS functionality, and Nodemailer for email functionality. ## Features ✨ 1. Create reminders with a message, phone number, email, and reminder time. ⏰ 2. Reminders are stored in Firestore for persistence. 💾 3. Automatic SMS reminders sent using Twilio. 📲 4. Automatic email reminders sent using Nodemailer. ✉️ 5. Scheduled reminders based on the specified reminder time. 📆 ## Prerequisites 📋 Before running the Cloud Reminder App, ensure you have the following prerequisites: 1. A Firebase project set up. 🔥 2. Node.js and npm (Node Package Manager) installed on your machine. 🚀 ## Installation 🛠️ To get started with the Cloud Reminder App, follow these steps: 1. Clone the repository: `git clone https://github.com/ighoshsubho/Cloud-Reminder.git` 📥 2. Navigate to the project directory: cd reminder-app 📂 3. Install the dependencies: npm install ⚙️ ## Configuration ⚙️ Before running the Cloud Reminder App, make sure to configure the following: 1. Firebase project: Set up your Firebase project and obtain the necessary configuration credentials. Update the Firebase configuration in the Firebase initialization code. 🔑 2. Twilio: Sign up for a Twilio account and obtain your Twilio SID and token. Update the Twilio client initialization with your Twilio credentials. 📞 3. Nodemailer: Create a Gmail account to use as the sender for email reminders. Update the transporter configuration with your Gmail account details. 📧 ## Usage 🚀 The Cloud Reminder App consists of two main components: creating a reminder and sending reminders. ## Creating a Reminder 📝 To create a reminder, make an HTTP POST request to the `/createReminder` endpoint with the following parameters: - `message`: The reminder message. 💬 - `phoneNumber`: The phone number to receive SMS reminders. 📱 - `email`: The email address to receive email reminders. 📧 - `reminderTime`: The time at which the reminder should be sent (formatted as ISO string). ⏰ ## Sending Reminders 📤 The Cloud Reminder App automatically sends reminders at the specified time using Firebase's Pub/Sub scheduler. - SMS Reminders: The sendReminderSMS function sends SMS reminders. It runs every minute and sends SMS messages using Twilio. 📲 - Email Reminders: The sendReminderEmail function sends email reminders. It runs every minute and sends email notifications using Nodemailer. ✉️ ## Contributing 🤝 Contributions to the Cloud Reminder App are welcome! If you encounter any issues or have suggestions for improvements, please submit a pull request or open an issue on the GitHub repository. 🎉 ## License 📄 The Cloud Reminder App is licensed under the MIT License. 📝
A reminder app that reminds you about particular task via mail and phone number.
firebase,javascript,nodemailer,twilo
2023-06-23T16:28:19Z
2023-06-24T18:31:02Z
null
1
0
6
0
0
3
null
MIT
JavaScript
Mohammed-Ramzan/JavaScript-Projects-Showcase
main
# Javascript Projects Showcase - HTML/CSS and JavaScript Welcome to the Project Showcase! This repository features a collection of JavaScript projects designed to showcase the versatility and power of the language. Whether you're a beginner or an experienced developer, you'll find a variety of projects to explore and learn from. | # | Project | Live Demo | | :-: | --------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | | 01 | [Analog Clock](https://github.com/Mohammed-Ramzan/JavaScript-Projects-Showcase/tree/main/Analog%20Clock) | [Live Demo](https://mohammed-ramzan.github.io/JavaScript-Projects-Showcase/Analog%20Clock/) | | 02 | [Brain Training App](https://github.com/Mohammed-Ramzan/JavaScript-Projects-Showcase/tree/main/Brain%20Training%20App) | [Live Demo](https://mohammed-ramzan.github.io/JavaScript-Projects-Showcase/Brain%20Training%20App/) | | 03 | [Calculator](https://github.com/Mohammed-Ramzan/JavaScript-Projects-Showcase/tree/main/Calculator) | [Live Demo](https://mohammed-ramzan.github.io/JavaScript-Projects-Showcase/Calculator/) | | 04 | [Calender](https://github.com/Mohammed-Ramzan/JavaScript-Projects-Showcase/tree/main/Calender) | [Live Demo](https://mohammed-ramzan.github.io/JavaScript-Projects-Showcase/Calender/) | | 05 | [Color Gradient Generator](https://github.com/Mohammed-Ramzan/JavaScript-Projects-Showcase/tree/main/Color%20Gradient%20Generator) | [Live Demo](https://mohammed-ramzan.github.io/JavaScript-Projects-Showcase/Color%20Gradient%20Generator/) | | 06 | [Countdown Timer](https://github.com/Mohammed-Ramzan/JavaScript-Projects-Showcase/tree/main/Countdown%20Timer) | [Live Demo](https://mohammed-ramzan.github.io/JavaScript-Projects-Showcase/Countdown%20Timer/) | | 07 | [Double Vertical Slider](https://github.com/Mohammed-Ramzan/JavaScript-Projects-Showcase/tree/main/Double%20Vertical%20Slider) | [Live Demo](https://mohammed-ramzan.github.io/JavaScript-Projects-Showcase/Double%20Vertical%20Slider/) | | 08 | [Form Validation](https://github.com/Mohammed-Ramzan/JavaScript-Projects-Showcase/tree/main/Form%20Validation) | [Live Demo](https://mohammed-ramzan.github.io/JavaScript-Projects-Showcase/Form%20Validation/) | | 09 | [Image Carousel](https://github.com/Mohammed-Ramzan/JavaScript-Projects-Showcase/tree/main/Image%20Carousel) | [Live Demo](https://mohammed-ramzan.github.io/JavaScript-Projects-Showcase/Image%20Carousel/) | | 10 | [Intro Animation](https://github.com/Mohammed-Ramzan/JavaScript-Projects-Showcase/tree/main/Intro%20Animation) | [Live Demo](https://mohammed-ramzan.github.io/JavaScript-Projects-Showcase/Intro%20Animation/) | | 11 | [Miles And KM Converters](https://github.com/Mohammed-Ramzan/JavaScript-Projects-Showcase/tree/main/Miles%20%26%20Km%20Converters) | [Live Demo](https://mohammed-ramzan.github.io/JavaScript-Projects-Showcase/Miles%20&%20Km%20Converters/) | | 12 | [Multi Background Changer](https://github.com/Mohammed-Ramzan/JavaScript-Projects-Showcase/tree/main/Multi%20Background%20Changer) | [Live Demo](https://mohammed-ramzan.github.io/JavaScript-Projects-Showcase/Multi%20Background%20Changer/) | | 13 | [Multi Step Progress Bar](https://github.com/Mohammed-Ramzan/JavaScript-Projects-Showcase/tree/main/Multi%20Step%20Progress%20Bar) | [Live Demo](https://mohammed-ramzan.github.io/JavaScript-Projects-Showcase/Multi%20Step%20Progress%20Bar/) | | 14 | [Piano](https://github.com/Mohammed-Ramzan/JavaScript-Projects-Showcase/tree/main/Piano) | [Live Demo](https://mohammed-ramzan.github.io/JavaScript-Projects-Showcase/Piano/) | | 15 | [Slider](https://github.com/Mohammed-Ramzan/JavaScript-Projects-Showcase/tree/main/Slider) | [Live Demo](https://mohammed-ramzan.github.io/JavaScript-Projects-Showcase/Slider/) | | 16 | [Sticky Navbar](https://github.com/Mohammed-Ramzan/JavaScript-Projects-Showcase/tree/main/Sticky%20Navbar) | [Live Demo](https://mohammed-ramzan.github.io/JavaScript-Projects-Showcase/Sticky%20Navbar/) | | 17 | [Temperature Converter](https://github.com/Mohammed-Ramzan/JavaScript-Projects-Showcase/tree/main/Temperature%20Converter) | [Live Demo](https://mohammed-ramzan.github.io/JavaScript-Projects-Showcase/Temperature%20Converter/) | | 18 | [Timer](https://github.com/Mohammed-Ramzan/JavaScript-Projects-Showcase/tree/main/Timer) | [Live Demo](https://mohammed-ramzan.github.io/JavaScript-Projects-Showcase/Timer/) | | 19 | [Todo App](https://github.com/Mohammed-Ramzan/JavaScript-Projects-Showcase/tree/main/Todo%20App) | [Live Demo](https://mohammed-ramzan.github.io/JavaScript-Projects-Showcase/Todo%20App/) | Feel free to explore the projects by clicking on the respective live demo links. ## Usage To clone and run any of these projects locally, you'll need to follow these steps: 1. Clone this repository: `git clone https://github.com/your-username/your-repository.git` 2. Navigate to the specific project's directory: `cd project-folder` 3. Open the project in your preferred code editor. 4. Follow the project-specific instructions available in each project's directory to set up and run the project. ## Contributing We welcome contributions from the developer community to make this repository even more comprehensive. If you'd like to contribute, please follow these steps: 1. Fork the repository. 2. Create a new branch: `git checkout -b feature/my-feature`. 3. Make your changes and commit them: `git commit -m 'Add some feature'`. 4. Push to the branch: `git push origin feature/my-feature`. 5. Open a pull request with a detailed description of the changes. We appreciate your contributions and collaborative efforts in enhancing this project showcase.
Welcome to the JavaScript Projects Showcase repository! This repository serves as a collection of innovative and practical JavaScript projects developed to showcase my expertise.
analog-clock,brain-training-app,calculator,calender,countdown-timer,form-validation,image-carousel,javascript,piano,slider
2023-06-10T12:29:45Z
2023-06-10T14:04:06Z
null
1
0
11
0
0
3
null
null
JavaScript
SudiptaChakraborty51/tech-social
master
# tech-social [tech-social](https://tech-social.vercel.app/) - A social media website where you can share your thoughts and connect with your friends. ## Demo video [tech-social-demo-video](https://www.loom.com/share/f08a08398a324e1c8b7c2601183d51e4) ## How to install and run locally? ``` $ git clone https://github.com/SudiptaChakraborty51/tech-social.git $ cd tech-social $ npm install $ npm start ``` ## **Technologies used :** - React JS - React Context API + useReducer - React Router v6 - Vanilla CSS - mockbee for backend - FontAwesome icons - Toastify ## **Features :** - Landing Page - Authentication - Sign-up - Login - Logout - User Feed - Explore Feed - List all user posts - Sort posts based on Latest/ Trending / Oldest. - Single post page - Image preview - User Suggestions - Follow / Unfollow users - Search Users - Like / Unlike a Post - Add / Remove bookmark on a post - Share posts - Comment on a post - Add comment - Edit comment - Delete comment - Create / Edit post with Image/GIF, Video and Emoji Upload - Delete Own posts - Profile Page - Edit Own Profile Image with Image Upload - Can choose from provided Avatars - Remove own Profile Image - Edit background cover photo with Image Upload - Edit name, bio, website link - Check followers / following list - list of all posts posted by user ## **Other Features :** - 404 Error Page - Dark Mode - Toasts - Loaders - Responsive UI
Tech-Social is social media app that connects users and enables to share their thoughts and learnings to the web similar to what Twitter and Instagram does.
cloudinary-api,css,fontawesome-icons,javascript,localstorage-api,react-toastify,reactjs,social-media
2023-06-09T19:01:39Z
2023-07-05T20:16:39Z
null
1
0
208
0
1
3
null
null
JavaScript
SB122129/Parking-Management
main
# Parking Management A simple parking system that stores all the necessary info about parked cars in a parking table and when a car is ready to check out it transfers all its info to a receipt table and calculates the total amount it's due based on its time of arrival in the receipt table, there is a view button that opens a modal with all the necessary info about the cars stay in the parking lot, and provides a download option which clicked downloads a .png format of the modal this is done using html2canvas HTML, CSS, BOOTSTRAP, JAVASCRIPT and HTML2CANVAS were used to make this
A simple parking management website that showcases DOM manipulation using JavaScript
css,dom-manipulation,html5,javascript,html2canvas
2023-06-16T20:40:52Z
2023-06-23T13:06:37Z
null
1
0
27
0
0
3
null
null
JavaScript
ZunainAliAzam/WordPulse
main
null
WordPulse - Learn on a pulse
bootstrap4,css,html,javascript
2023-06-23T21:58:03Z
2023-06-25T17:49:27Z
null
1
0
18
0
0
3
null
null
HTML
Tsiangana/Buletchi_Sound
master
## Plataforma de divulgação de música Uma plataforma que funciona com o mesmo sistema do Spotify, mais com uma interface mais moderna e bem melhorada, bemvindo ao BuletchiSound
Uma plataforma de divulgação de música futurística e com um design incrível, o bule... é uma plataforma construida a base de javascript onde os usuáruios podem ouvir suas músicas e fazer download delas diretamente da plataforma
css,css-flexbox,css3,html,javascript,js,streaming
2023-06-16T19:13:51Z
2024-01-29T21:49:52Z
null
1
0
7
0
0
3
null
MIT
JavaScript
JavierAybar/Capstone_Project_01
main
<a name="readme-top"></a> <!-- HOW TO USE: This is an example of how you may give instructions on setting up your project locally. Modify this file to match your project and remove sections that don't apply. REQUIRED SECTIONS: - Table of Contents - About the Project - Built With - Live Demo - Getting Started - Authors - Future Features - Contributing - Show your support - Acknowledgements - License OPTIONAL SECTIONS: - FAQ After you're finished please remove all the comments and instructions! --> <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Deployment](#deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [📝 License](#license) <!-- PROJECT DESCRIPTION --> # 📖 [Capstone] <a name="about-project"></a> -My Capstone project is a web about the Aybar Academy (code academy), In this project I show some of my skills learned so far. ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li>HTML</li> <li>CSS</li> <li>JavasScript</li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> - **[Responsive Design]** - **[Dinamic creation of content]** <p align="right">(<a href="#readme-top">back to top</a>)</p> ## :movie_camera: WALKTHROUGH - [Walkthrough video](https://drive.google.com/file/d/1_NXVzrnXsqo_GBhJ2nUeA-Y3ga8EgJA2/view) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo"></a> - You can visit the live demo [here](https://javieraybar.github.io/Capstone_Project_01/) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- GETTING STARTED --> ## 💻 Getting Started <a name="getting-started"></a> To get a local copy up and running, follow these steps. ### Prerequisites In order to run this project you need: -Clone this repo or fork. ### Setup Clone this repository to your desired folder: -Open it with your preffered IDE (such as Visual Studio Code). `cd my-desire-folder git clone git@github.com:JavierAybar/Capstone_Project_01.git` ### Deployment You can deploy this project using: -GitHub or GitHub Desktop <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> 👤 **Author1** - GitHub: [@JavierAybar](https://github.com/JavierAybar) - LinkedIn: [@JavierAybar](https://www.linkedin.com/in/javier-aybar-932376274/) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> - [ ] **[More Designs]** - [ ] **[More Functions]** - [ ] **[More Content]** - [ ] **[More Animations]** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- CONTRIBUTING --> ## 🤝 Contributing <a name="contributing"></a> Contributions, issues, and feature requests are welcome! Feel free to check the [issues page](../../issues/). <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- SUPPORT --> ## ⭐️ Show your support <a name="support"></a> If you like this project, you can give me a star and keep an eye on my profile because I will upload more projects like this. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> Original design idea by [Cindy Shin](https://www.behance.net/gallery/29845175/CC-Global-Summit-2015) in Behance. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](./LICENSE) licensed.
A website about Aybar Academy (code academy). In this project, I showcase some of the skills I have learned so far on my journey in Microverse.
css,html,javascript
2023-06-23T20:26:15Z
2023-07-21T16:26:41Z
null
1
5
20
0
0
3
null
MIT
CSS
szy-kenn/airness-airlines
master
<h1 align='center'><b>👑AIRNESS AIRLINES✈️</b></h1> <h3 align='center'>A Web Application Project for the course <b>COMP 20093 - Information Management</b> from Polytechnic University of the Philippines.</h3> --- ## Overview ### Landing Page ![Landing Page](/assets/screenshots/1.png) ### Search a Flight Section ![Search a Flight Section](/assets/screenshots/2.png) ### Point to a City/Country ![Point to a City/Country](/assets/screenshots/3.png) ### Source to Destination Trajectory ![Source to Destination Trajectory](/assets/screenshots/4.png) ### Choose a Flight ![Choose a Flight](/assets/screenshots/5.png) ### See Detailed Route ![See Detailed Route](/assets/screenshots/6.png) ### Input Passenger Details ![Input Passenger Details](/assets/screenshots/7.png) ### Choose Seats ![Choose Seats](/assets/screenshots/8.png) ### Payment Section ![Payment Section](/assets/screenshots/12.png) ### Boarding Pass ![Boarding Pass](/assets/screenshots/9.png) ### Loading Page ![Loading Screen](/assets/screenshots/10.png) ### About Us Section ![About Us Section](/assets/screenshots/13.png) ### Contact Us Section ![Contact Us Section](/assets/screenshots/11.png) ### Footer Section ![Footer Section](/assets/screenshots/14.png) ## Additional Features - Real-time City Search Suggestions - Filter Search by Country, Continent, etc. - Filter Available Flights by Cheapest, Fastest, No. of Stops, Duration, Departure Time - Extra Leg Room on some seats (with extra costs) - Collapse/Expand Forms ## Web Application Structure ![Web Application Structure](/assets/img/structure.png "Web Application Structure") [![forthebadge](https://forthebadge.com/images/badges/uses-html.svg)](https://forthebadge.com) [![forthebadge](https://forthebadge.com/images/badges/uses-css.svg)](https://forthebadge.com) [![forthebadge](/assets/svg/uses-sql.svg)](https://forthebadge.com) [![forthebadge](https://forthebadge.com/images/badges/made-with-javascript.svg)](https://forthebadge.com) [![forthebadge](https://forthebadge.com/images/badges/made-with-python.svg)](https://forthebadge.com) <div align="center"> <table> <tr> <h3>Main Web Development Tools</h3> <td><img width="50" src="https://user-images.githubusercontent.com/25181517/192158954-f88b5814-d510-4564-b285-dff7d6400dad.png" alt="HTML" title="HTML"/></td> <td><img width="50" src="https://user-images.githubusercontent.com/25181517/183898674-75a4a1b1-f960-4ea9-abcb-637170a00a75.png" alt="CSS" title="CSS"/></td> <td><img width="50" src="https://user-images.githubusercontent.com/25181517/117447155-6a868a00-af3d-11eb-9cfe-245df15c9f3f.png" alt="JavaScript" title="JavaScript"/></td> <td><img width="50" src="https://user-images.githubusercontent.com/25181517/183423507-c056a6f9-1ba8-4312-a350-19bcbc5a8697.png" alt="Python" title="Python"/></td> <td><img width="50" src="https://user-images.githubusercontent.com/25181517/183423775-2276e25d-d43d-4e58-890b-edbc88e915f7.png" alt="Flask" title="Flask"/></td> <td><img width="50" src="https://user-images.githubusercontent.com/25181517/192158956-48192682-23d5-4bfc-9dfb-6511ade346bc.png" alt="Sass" title="Sass"/></td> <td><img width="50" src="https://user-images.githubusercontent.com/25181517/183896128-ec99105a-ec1a-4d85-b08b-1aa1620b2046.png" alt="MySQL" title="MySQL"/></td> <td><img width="50" src="https://user-images.githubusercontent.com/25181517/192107854-765620d7-f909-4953-a6da-36e1ef69eea6.png" alt="HTTP" title="HTTP"/></td> </tr> </table> </div> ## About This repository only serves as a container for the web application's source code. This is not intended for a local machine deployment or execution. ## Third Party Tools - [Skyscanner API](https://rapidapi.com/3b-data-3b-data-default/api/skyscanner44/pricing) - [Am5Charts Map Chart](https://www.amcharts.com/docs/v5/charts/map-chart/) - [Splide](https://splidejs.com) - [Draggable](https://shopify.github.io/draggable/) ## Main Contributors `@szy-kenn` - Project Leader - Lead Programmer `@JJCayabyab` - Programmer - coded <b>Contact Us</b>, <b>Footer Section</b>, and <b>Boarding Pass</b> - created a Python function for a primary key generator - created a query for airport search `@qwoop` - Programmer - coded Python functions for inserting data in MySQL database - made the <b>Loading Page</b> `@DCqt33` - Programmer - coded <b>About Us Section</b> - provided data and images for all available airports
Airness Airlines web application
css3,flask,html5,javascript,jinja2,python3,scss,api,database,fetch-api
2023-06-11T07:23:25Z
2023-07-31T14:35:10Z
null
4
0
261
0
1
3
null
null
HTML
TruptimayeePanigrahy/PicPerfect.com
main
![logo](https://github.com/Shashwat2104/JS-assignments/assets/115514170/a18b703e-a4e6-47d7-87b1-eb8ac75df25b) # PICPERFECT :camera_flash: A photographer booking system allows logged-in users to book a shoot with their desired photographer. <br> Enthusiastic and professional photographers can apply to become photographers on our website. #### Our Project is deployed here [PICPERFECT](https://649477dd681c054f6c29689b--splendid-tapioca-a964c8.netlify.app/) ### Team - :woman_technologist: [Truptimayee Panigrahy](https://www.linkedin.com/in/truptimayee-panigrahy/) - :man_technologist: [Shashwat Mahendra](https://www.linkedin.com/in/shashwat-mahendra-214598163/) - :man_technologist: [Saikumar Sandru]() - :man_technologist: [Pranay Paul](https://www.linkedin.com/in/pranay-paul-6a5220257/) - :man_technologist: [Ritesh Kothawade](https://www.linkedin.com/in/ritesh-kothawade-800879270/) ## Features & Pages : page_facing_up: ### For User : adult: `Home` - Overview of the website and find the photographers. <br> `Sign Up` - You can use your email, GitHub, or Google account to sign up. The user details are stored in a MongoDB database. <br> `Sign In` - Authentication is performed here to verify if the provided details match the information stored in the database. <br> `Apply for photographer` - Users have the option to apply for a photographer role, enabling them to receive appointments for photoshoots. <br> ##### Photographer `About` - Once the admins approve the role, photographers can - **Upload their previous works:** Photographers can showcase their portfolio by uploading their previous works, allowing potential clients to get a glimpse of their photography style and skills. - **Details about themselves:** Photographers can provide information about themselves, including their background, experience, and any unique aspects that set them apart. - **Equipment they use:** Photographers can list the equipment they use for their shoots - **Price for an hour:** Photographers can specify their pricing structure, indicating the cost per hour of their photography services. <br> <br> `Approval` - Once a photographer receives an appointment request, they can accept or reject the appointment. ### For Admin : guard: `All users` - Admin will be able to view information about all registered users. This includes access to user profiles, contact details, and any additional information provided during the registration process. <br> <br> `Approve` - Once a user has applied for the photographer role, the admin will review the details provided by the user. Based on the assessment, the admin can approve or reject the application. This process ensures that only qualified and suitable individuals are granted the photographer role on the platform. <br> <br> ## User Experience Flow You will land on the home page. From the navigation bar, click on "Signup" to be redirected to the signup portal and register as a user. You will need to provide your email and password for logging in. After logging in, you can explore the home page and discover photographers who are available based on your requirements. Select a photographer and access their details. If you are satisfied with the photographer's previous works and comfortable with the price, you can book them for a specific day or multiple days. After booking a photographer, you can initiate a video chat with them through your client dashboard once they accept your booking. If you are a professional or aspiring photographer, you have the opportunity to apply for the photographer role on our website. By applying for this role, you gain access to a range of benefits, including the ability to receive appointment requests from various users on our platform. This means that users interested in photography services can directly reach out to you to book appointments and hire you for their photography needs. It's a great opportunity to showcase your skills, expand your client base, and connect with individuals seeking photography services through our platform. ### Have a look at our routes in `Swagger` [API](https://pic-perfect.onrender.com/api-docs) ### Deloployed Links Backend on [Render](https://pic-perfect.onrender.com) <br> Frontend on [Netlify](https://pic-frontend.netlify.app/) ## 🏷️ Tech Stack Used:- ### Backend | Node.js | Express.js | Redis | MongoDB | | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | | <img width="70px" src="https://user-images.githubusercontent.com/112753481/229047696-de3bf177-16a0-4161-a140-dd89e4fe7b22.png"> | <img width="75px" src="https://user-images.githubusercontent.com/112753481/229164589-4e724000-542d-4deb-9e11-cca7739c2b01.png"> | <img width="75px" src="https://user-images.githubusercontent.com/25181517/182884894-d3fa6ee0-f2b4-4960-9961-64740f533f2a.png"> | <img width="75px" src="https://cdn.icon-icons.com/icons2/2415/PNG/512/mongodb_original_logo_icon_146424.png"> | <!-- | <img width="75px" src="https://user-images.githubusercontent.com/25181517/182884894-d3fa6ee0-f2b4-4960-9961-64740f533f2a.png"> --> #### Extra:- > - JWT (JsonWebToken) <br/> > - Bcrypt <br/> > - ChatGPT (Used for dummy-data generation only) > - NodeMailer <br/> > - Twilio --- ### \* Yet to be implemented:- | socket.io(video calling) | | ------------------------------------------------------------------------------------------------------------------------------ | | | --- <br/> ### Take a glimpse at our website #### Home Page ![index](https://github.com/Shashwat2104/JS-assignments/assets/115514170/24b69ae5-0e7e-45c4-aad7-4f4cb3f2343d) #### Photographers Dashboard ![photogrpahers](https://github.com/Shashwat2104/JS-assignments/assets/115514170/93fe1e50-d706-426c-bc1c-93395fb59d75) #### Photographer Page ![individual](https://github.com/Shashwat2104/JS-assignments/assets/115514170/cd2c3c4f-8743-47c1-a4f7-f2addc7539b0) ![Signup](https://github.com/Shashwat2104/JS-assignments/assets/115514170/5fe1b564-f915-41cf-8ed9-ea7750f17eb4) ![Dashboard](https://github-production-user-asset-6210df.s3.amazonaws.com/115514170/246816872-bc30bd48-aada-4fdb-8629-0b12cfe5d69d.png) ![Book a photographer](https://github.com/Shashwat2104/JS-assignments/assets/115514170/bcc86f40-8679-4a06-8f32-77bf7a747d98)
Its a photoshoot application in which users can select photographers according to their purpose , city and their timings.
bcrypt,css,express,google-cloud-platform,google-passport,html,javascript,jsonwebtoken,mongodb,nodejs
2023-06-12T13:45:00Z
2023-07-23T14:09:09Z
null
6
52
164
0
2
3
null
null
JavaScript
rachaouldbabaali/React-Redux-GP
dev
<a name="readme-top"></a> <div align="center"> <br/> <h3><b>Space Travelers Hub</b></h3> </div> # 📗 Table of Contents - [📗 Table of Contents](#-table-of-contents) - [📖 \[Space\_Travelers\_Hub\] ](#-space_travelers_hub-) - [🛠 Built With ](#-built-with-) - [Tech Stack ](#tech-stack-) - [Key Features ](#key-features-) - [🚀 Live Demo ](#-live-demo-) - [💻 Getting Started ](#-getting-started-) - [Prerequisites](#prerequisites) - [Setup](#setup) - [Install](#install) - [Usage](#usage) - [Usage](#usage-1) - [Run tests](#run-tests) - [Deployment](#deployment) - [👥 Authors ](#-authors-) - [🔭 Future Features ](#-future-features-) - [🤝 Contributing ](#-contributing-) - [⭐️ Show your support ](#️-show-your-support-) - [🙏 Acknowledgments ](#-acknowledgments-) - [📝 License ](#-license-) # 📖 [Space_Travelers_Hub] <a name="about-project"></a> **[Space_Travelers_Hub]** is a web application for a company that provides commercial and scientific space travel services. The application will allow users to book rockets and join selected space missions. ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="#">REACT JS </a></li> <li><a href="#">Redux</a></li> <li><a href="#">Routes</a></li> </ul> </details> ### Key Features <a name="key-features"></a> - **[Display a list of Rockets ]** - **[Dispaly a couple of missions for each rocket ]** - **[Display the reserved rockets in the profile section ]** - **[Display the joined missons in the profile section ]** <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🚀 Live Demo <a name="live-demo"></a> [Space travelers](https://amazing-scone-67be35.netlify.app/) <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 💻 Getting Started <a name="getting-started"></a> To get a local copy up and running, follow these steps. ### Prerequisites - In order to run this project you need: - [git](https://git-scm.com/downloads): A tool for managing source code - [Visual Studio Code](https://code.visualstudio.com/): A source code editor - [Live Server](https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer): A simple web server utility for Visual Studio Code ### Setup Clone this repository to your desired folder: https://github.com/rachaouldbabaali/React-Redux-GP Example commands: ```sh cd my-folder git clone https://github.com/rachaouldbabaali/React-Redux-GP ``` ### Install Install this project with: ` cd React-Redux-GP - Run npm install after cloning the repo ### Usage - Run npm start for development. - Run npm run build for production ### Run tests To run tests, run the following command: ` npm run test` ### Deployment You can deploy this project using: <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 👥 Authors <a name="authors"></a> 👤 **Author1** - GitHub: [rachaouldbabaali](https://github.com/rachaouldbabaali) - Twitter: [@Racha_oba](https://twitter.com/Racha_oba) - LinkedIn: [Racha Ould Babaali](https://www.linkedin.com/in/rachaouldbabaali/) 👤 **Author2** - GitHub: [@kazaneza](https://github.com/kazaneza) - Twitter: [@kazaneza](https://twitter.com/kazaneza) - LinkedIn: [Gentil_Kazaneza](https://www.linkedin.com/in/gentil-kazaneza-a51742188/) <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🔭 Future Features <a name="future-features"></a> - [ ] **[Improve the UI/UX design ]** - [ ] **[Add more Features of searching the Rockets and missions ]** <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🤝 Contributing <a name="contributing"></a> Contributions, issues, and feature requests are welcome! Feel free to check the [issues page](https://github.com/rachaouldbabaali/React-Redux-GP/issues). <p align="right">(<a href="#readme-top">back to top</a>)</p> ## ⭐️ Show your support <a name="support"></a> If you like this project please give it a start and share it with your friends. <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to appreciate[Microverse](https://www.microverse.org/) for providing the resources and the platform for us to be a Professional full-stack developer. <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 📝 License <a name="license"></a> This project is [MIT](https://github.com/rachaouldbabaali/React-Redux-GP/blob/dev/LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
space travelers hub is a web application for a company that provides commercial and scientific space travel services. The application will allow users to book rockets and join selected space missions.
html-css,javascript,react-router,reactjs,redux,redux-thunk,redux-toolkit
2023-06-26T08:17:05Z
2023-07-01T00:08:03Z
null
2
7
36
25
0
3
null
MIT
JavaScript
Iam-Javed/BV-Coffee-Website
main
# BeanVerse<sup>®</sup> <img src="https://github.com/Iam-Javed/BV-Coffee-Website/assets/106265348/3f2e5c78-04de-4edf-8942-b2319a915d64" alt=""> <h3> A Coffee Website ☕</h3> Welcome to the BeanVerse<sup>®</sup> ! This website showcases a variety of coffee products, provides information about the coffee shop, and allows users to browse and purchase their favorite coffee blends. [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/Javed-basha/BeanVerse-Website/blob/main/LICENSE) ## Table of Contents - [Features](#features) - [Installation](#installation) - [Usage](#usage) - [Technologies Used](#technologies-used) - [Contributing](#contributing) - [License](#license) ## Features - View a collection of coffee products with images, descriptions, and prices. - Add products to the shopping cart. - Proceed to checkout and make a purchase. - Learn about the coffee shop and its background. - Frequently Asked Questions (FAQs) section. - Privacy Policy, Refund Policy, and Terms of Service available. ## Installation 1. Clone the repository: ```shell git clone https://github.com/Javed-basha/BeanVerse.git 1. Navigate to the project directory: cd BeanVerse-Website 2. Open the index.html file in your preferred web browser. # Usage • Browse through the different coffee products by scrolling through the image slider. • Use the navigation menu to access different sections of the website, such as the About Us page, Menu, FAQs, etc. • Add your desired products to the cart by clicking on the "Add to Cart" button. • Review your items and proceed to checkout when ready to make a purchase. • Fill in the required information on the registration form to create an account (if applicable). • Follow the prompts to complete the payment process and finalize your order. # Technologies Used [HTML 5](#HTML5) [CSS](#CSS3) [JavaScript](#JavaScript) # Contributing Contributions are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request. Contributions should align with the project's coding style and guidelines. # License This project is licensed under the MIT License.[MIT License](https://github.com/Javed-basha/BeanVerse-Website/blob/main/LICENSE) Feel free to modify the content and sections according to your specific website features and requirements. Provide relevant information about installation, usage, technologies used, and how others can contribute to your project.
BeanVerse is a static and interactive web platform for coffee enthusiasts. Browse a diverse selection of coffee products, learn brewing techniques, and shop online. Contributions are welcome! Clone the repository, follow installation steps, and help us enhance the coffee browsing and shopping experience.
css,html,javascript
2023-06-22T16:32:24Z
2023-08-05T09:07:26Z
null
1
3
105
0
0
3
null
MIT
HTML
akib1997/angular-tailwindcss-scss-boilerplate
main
# Angular TailwindCSS SCSS Boilerplate <p align="center"> <img src="https://api.iconify.design/logos:angular-icon.svg" alt="Angular brand" width="100" height="100"/> <img src="https://api.iconify.design/logos:tailwindcss.svg" alt="TailwindCSS" width="100" height="100"/> <img src="https://api.iconify.design/vscode-icons:file-type-scss.svg" alt="SCSS" width="100" height="100"/> </p> <br> This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 16.0.3. ## Development server Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files. ## Code scaffolding Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`. ## Build Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. ## Running unit tests Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io). ## Running end-to-end tests Run `ng e2e` to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities. ## Further help To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
Angular, Tailwind CSS, and SCSS Boilerplate.
angular,boilerplate,boilerplate-front-end,css,css3,javascript,scss,tailwind-css,tailwindcss,typescript
2023-06-25T07:08:04Z
2023-07-16T07:12:35Z
null
1
0
4
0
0
3
null
null
TypeScript
hegelai/hegeljs
main
# hegeljs Welcome to [HegelJS](https://www.npmjs.com/package/@hegel-ai/hegeljs)! The official TypeScript and JavaScript client for Hegel AI's developer platform. [Hegel AI](https://hegel-ai.com) enables developers to build, monitor, and improve their LLM applications. It tracks every request, provides and editor for prompts, and automatically generates improvements based on real-time feedback and evaluations. You can sign up [here](https://app.hegel-ai.com). ![image](img/platform.png) ## Adding HegelJS to an existing Node.js app Just install the package with `npm i @hegel-ai/hegeljs` and make the following change to your OpenAI client initialization: ![image](img/commit.png) Before starting your app, you'll need to have your `HEGELAI_API_KEY` set. You can do this by running `export HEGELAI_API_KEY=<YOUR_API_KEY>`. You'll need your `OPENAI_API_KEY` set as well, which you can set similarly. If you need a Hegel AI API key, you can sign up [here](https://app.hegel-ai.com).
null
javascript,llm,nodejs,openai,typescript
2023-06-19T02:24:09Z
2024-01-10T15:59:04Z
null
1
0
12
0
0
3
null
Apache-2.0
TypeScript
Aashishkumar123/React-Django-Razorpay-integration
master
# React-Django-Razorpay-integration ## Clone this project ``` git clone https://github.com/Aashishkumar123/React-Django-Razorpay-integration ``` ## Setup Django Project ### Install following dependencies ``` pip install django djangorestframework python-dotenv razorpay django-cors-headers ``` ### create ```.env``` file, where manange.py file is located ``` RAZORPAY_KEY_ID= here add razorpay id key RAZORPAY_KEY_SECRET= here add razorpay secret key ``` ### run project ``` python manage.py runserver ``` ## Setup React Project ### install npm packages, make sure your location should be where ```package.json``` file is located. ``` npm install . ``` ### create ```.env``` file, where package.json file is located ``` REACT_APP_RAZORPAY_KEY_ID= here add razorpay id key ``` ### run project ``` npm start ``` ## Razorpay 1. Create an account razorpay to get the ```ID``` and ```SECRET``` key 2. You can follow this documentation https://razorpay.com/docs/payments/payment-gateway/web-integration/standard/build-integration/ ## Postman Download postman collection from <a download href="https://github.com/Aashishkumar123/React-Django-Razorpay-integration/blob/master/razorpay.postman_collection.json">here</a>
Razorpay payment gateway integration with React Django and Django Rest Framework
django,django-rest-framework,javascript,python,razorpay,razorpay-python,react,reactjs
2023-06-14T11:19:43Z
2023-06-16T07:51:40Z
null
1
0
16
0
4
3
null
MIT
Python
Mike111222/MyLeaderBoard
dev
# LeaderBoard <a name="readme-top"></a> <div align="center"> <!-- You are encouraged to replace this logo with your own! Otherwise you can also remove it. --> <br/> <h3><b>LeaderBoard App</b></h3> </div> <!-- TABLE OF CONTENTS --> # 📗 Table of Contents - [LeaderBoard](#leaderboard) - [📗 Table of Contents](#-table-of-contents) - [📖 \[ToDo List\] ](#-todo-list-) - [🛠 Built With ](#-built-with-) - [Tech Stack ](#tech-stack-) - [Key Features ](#key-features-) - [🚀 Live Demo ](#-live-demo-) - [💻 Getting Started ](#-getting-started-) - [Prerequisites](#prerequisites) - [Setup](#setup) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment ](#deployment-) - [👥 Authors ](#-authors-) - [🔭 Future Features ](#-future-features-) - [🤝 Contributing ](#-contributing-) - [⭐️ Show your support ](#️-show-your-support-) - [🙏 Acknowledgments ](#-acknowledgments-) - [❓ FAQ (OPTIONAL) ](#-faq-optional-) - [📝 License ](#-license-) <!-- PROJECT DESCRIPTION --> # 📖 [ToDo List] <a name="about-project"></a> **[In Leaderboard, players and their respective scores can be added. It also allows you to submit your score. All data is preserved thanks to the external Leaderboard API service. Refresh and Submit buttons are there to update the scores. Async & Await are also implemented along with some styling.]** ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="#">HTML, CSS, JavaScript, Webpack, API</a></li> </ul> </details> <details> <summary>Server</summary> <ul> <li><a href="https://localhost:8080/">Dev Server</a></li> </ul> </details> <details> <summary>Pakage Manager</summary> <ul> <li><a href="#">NPM</a></li> </ul> </details> <details> <summary>API</summary> <ul> <li><a href="#">Post Master</a></li> </ul> </details> <!-- Features --> ### Key Features <a name="key-features"></a> - **[Displays List of Players and Scores]** - **[Addition of New Players and Scores]** - **[Removal of all Players and Scores from the list]** - **[Leaderboard API is responsible for storage and retrieval of Data]** - **[A Refresh button is there to fetch all the Players and Scores using API.]** - **[Webpack is managing all the dependencies and auto loading in browser]** - **[All the scetions and functionality is re-created by ES6 Modules]** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LIVE DEMO --> ## 🚀 Live Demo <a name="live-demo"></a> - [Live Demo Link of MyLeaderBoard](https://mike111222.github.io/MyLeaderBoard/dist/) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- GETTING STARTED --> ## 💻 Getting Started <a name="getting-started"></a> To get a local copy up and running, follow these steps. ### Prerequisites In order to run this project you need: - A web browser to view output e.g [Google Chrome](https://www.google.com/chrome/). - An IDE e.g [Visual studio code](https://code.visualstudio.com/). - `node` should be installed in your local machine, [node website](https://nodejs.org/en/download/). - Install the `npm` package manager use this [to install both node and npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm). - [A terminal](https://code.visualstudio.com/docs/terminal/basics). ### Setup Clone this repository to your desired folder or download the Zip folder: ``` https://github.com/Mike111222/MyLeaderBoard ``` - Navigate to the location of the folder in your machine: **``you@your-Pc-name:~$ cd MyLeaderBoard``** ### Install To install all dependencies, run: ``` npm install ``` ### Usage To run the project, follow these instructions: - After Cloning this repo to your local machine. - Open the `index.html` in your browser. - You can also use `npm start` command in terminal to run this at localhost:8080 ### Run tests To run tests, run the following command: - Track HTML linter errors run: ``` npx hint . ``` - Track CSS linter errors run: ``` npx stylelint "**/*.{css,scss}" ``` - Track JavaScript linter errors run: ``` npx eslint . ``` - run test: ``` npm test ``` ### Deployment <a name="deployment"></a> You can deploy this project using: GitHub Pages, - I used GitHub Pages to deploy my website. - For more information about publishing sources, see "[About GitHub pages](https://docs.github.com/en/pages/getting-started-with-github-pages/about-github-pages#publishing-sources-for-github-pages-sites)". <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- AUTHORS --> ## 👥 Authors <a name="authors"></a> 👤 **Muhammad Amran Khan [Mike]** - GitHub: [@githubhandle](https://github.com/Mike111222) - LinkedIn: [LinkedIn](https://linkedin.com/in/Mike111222) - Twitter: [@twitterhandle](https://twitter.com/iMike111222) <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> - [ ] **[More styles will be added to make my project look more beautiful and apealing.]** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- CONTRIBUTING --> ## 🤝 Contributing <a name="contributing"></a> Contributions, issues, and feature requests are welcome! Feel free to check the [issues page](../../issues/). <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- SUPPORT --> ## ⭐️ Show your support <a name="support"></a> If you like this project, just reach out to me for more projects even better than this, and please give it a star ⭐️. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to thank my fellow Authors, my friend, my code reviewers and Microverse. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- FAQ (optional) --> ## ❓ FAQ (OPTIONAL) <a name="faq"></a> - **[How can the project be improved]** - [More features can be intergrated by adding more pages] - **[Can I use this project for study purposes]** - [Yes] <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](./LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
In Leaderboard, players and their respective scores can be added. It also allows you to submit your score. All data is preserved thanks to the external Leaderboard API service. Refresh and Submit buttons are there to update the scores. Async & Await are also implemented along with some styling.
api,javascript,leaderboard,webpack
2023-06-20T08:45:47Z
2023-06-23T12:57:43Z
null
1
3
52
2
0
3
null
MIT
JavaScript
nurettinyavuz/MovieReview-BackEnd
main
# MovieReview • The site we wrote is a movie review site. Before watching a movie, users will come to the site and look at the comments of other viewers about the movie, and we will ask the people who make additional comments to give the movie a score out of 5. The user who comes to get general information about the movie will be able to understand whether the movie is liked or not based on the score it receives. • Since I am writing the backend part of this project, the technologies I generally use in the project are; I used Node.js, express.js, mongoDB, JWT Token, mongoose and bcrypt encryption technology. # MovieReview-BackEnd-Schema <img src="https://github.com/nurettinyavuz/MovieReview-BackEnd/blob/main/Project%20Images/MovieReview-Backend-Schema.png" alt="alt text" width="1300" height="600">
Movie review site
expressjs,javascript,jwt-token,mongodb,nodejs
2023-06-09T13:19:54Z
2024-02-26T13:30:26Z
null
2
0
120
0
0
3
null
null
JavaScript
gustavomorinaga/navigation-rails
main
<!-- markdownlint-disable MD014 --> <!-- markdownlint-disable MD026 --> <!-- markdownlint-disable MD033 --> <!-- markdownlint-disable MD041 --> <h1 align="center"> navigation-rails </h1> <!-- Banner Section --> <p align="center"> <a href="https://gustavomorinaga.dev"> <img src="./assets/banner.png" alt="Portfolio preview" width="512px" /> </a> </p> <h3 align="center"> Some simple and elegant navigation rail examples. <br> <br> <a href="https://gustavomorinaga.github.io/navigation-rails"> Click to visit the website </a> </h3> --- <!-- Badges Section --> <p align="center"> <a href="./LICENSE" title="Show the MIT License"> <img src="https://img.shields.io/badge/License-MIT-blue.svg?style=for-the-badge" alt="License MIT"> </a> </p> --- <!-- Translations Section --> ## 🌎 Translations <kbd>[<img title="English" alt="English" src="https://flagicons.lipis.dev/flags/4x3/us.svg" width="22">](./docs/translations/README.en-US.md)</kbd> <kbd>[<img title="Português Brasileiro" alt="Português Brasileiro" src="https://flagicons.lipis.dev/flags/4x3/br.svg" width="22">](./docs/translations/README.pt-BR.md)</kbd> <!-- Introduction Section --> ## 📖 Introduction This repo is dedicated to show some simple and elegant navigation rail examples. ## 🧰 Technologies - [📄 HTML](https://developer.mozilla.org/en-US/docs/Web/HTML) - [🎨 CSS](https://developer.mozilla.org/en-US/docs/Web/CSS) - [⚙️ JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript) - [✨ Web Animations API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Animations_API) <!-- License Section --> ## 📜 License This project is licensed under the **MIT License** - see the [LICENSE](LICENSE) page for details. <!-- Acknowledgment Section --> --- ### ❤️ Thanks for your attention!
Some simple and elegant navigation rail examples
gustavomorinaga,css,examples,html,javascript,web-animations-api
2023-06-23T04:16:53Z
2023-06-29T05:28:51Z
null
1
0
8
0
0
3
null
MIT
HTML
ashrafmo-1/Lessons-and-challenges-js-ts
master
<h1 align="center">lessons and problem solving</h1> <p align="center">javaScript and typeScript lessons, exampels to learn and problem solving</p> ## javaScript && typeScript - [javascript-bootcamp elzero](https://elzero.org/study/javascript-bootcamp-2021-study-plan/) - [typescript-study-plan](https://elzero.org/study/typescript-study-plan/) - [javascript assignments](https://elzero.org/category/assignments/javascript-bootcamp-assignments/) - [typescript assignments](https://elzero.org/typescript-assignments-lessons-from-1-to-11/) - [33-js-concepts](https://github.com/leonardomso/33-js-concepts) <br/> <br/> Lessons names solved problems: #### Lessons - data types > numbers, strings, boolean, arrays, object. - variables. - If & else statment. - loop > for, while, do while. - Function - Arrow-function. - setTimeout & setInterval - AddEventListener - Dom - Bom - Regular Expressions modifiers - oop #### solved problems names - Loop-challenge-video #063 Elzero Web School; - function-challenge-vid63 - chalenge selectors (15 select items for One Div) - create html && css by java script <br/> <br/> <br/> ## Feedback If you have any feedback, please reach out to us at ashraf.qopiah@gmail.com
javaScript and typeScript lessons, exampels to learn and problem solving
api,arrays,bom,dom,functions,javascript,numbers,oop,string,variables
2023-06-12T15:18:25Z
2024-05-12T17:03:58Z
null
1
6
255
2
3
3
null
MIT
JavaScript
rhw-repo/mern-post-app
main
# **Demo App** Experiments using MERN stack for an app designed to help users store and manage documents like text (or links to Google Docs) for blog and social media posts. https://github.com/rhw-repo/mern-post-app/assets/85512549/cce600fc-0cbe-4871-ab85-71407813daf9 - create account, login / logout (JSON Web Tokens) - protected API routes = after succesful login, user may now access just their own set of documents - create new document, on submit added to the database and renders to the "dashboard" - dotenv module and .env file for sensitive data ## **Stack:** MongoDB with Mongoose Express Node.js React.js (using Create React App) Testing requests: Postman API Platform Original design files: Figma ## **Next ToDos: work in progress** ### **Auth** 1) Potentially SSO to replace current JWT email & password system ### **Earlier concepts** Earlier concepts and frontend designs [here](https://github.com/rhw-repo/content_simple).
In development: Full stack with JavaScript, React.js, Node.js, Express.js, MongoDB. JWT Authentication, CRUD & validation, filtering and database. Responsive CSS. TanStack Table. Current sprint: prepare for testing, refactor auth to SSO, re-testing & deployment.
css3,mongoose-schema,react-hooks,react-router-dom,reactjs,tanstack-table,react-select,cssmodules-react,express-validator,expressjs
2023-06-09T13:20:52Z
2023-10-25T12:05:09Z
null
1
5
9
3
0
3
null
null
JavaScript
lavkush-maurya/Gatsby-counter-redux-toolkit
master
> **This is Simple counter application with using redux-toolkit on gatsby framework** <br/> In this project we didn't used redux plugin we have directly used redux redux toolkit
Simple counter application with using redux-toolkit on gatsby framework
gatsby,javascript,npm,reactjs,redux-toolkit
2023-06-19T06:20:45Z
2023-06-19T06:23:49Z
null
1
0
4
0
0
3
null
null
JavaScript
Bibiwei-Pere/Age-Calculator-app
main
### Screenshot ![127 0 0 1_3000_index html(iPad Air) (1)](https://github.com/Bibiwei-Pere/Age-Calculator-app/assets/106984663/98ddb5a9-a744-41ab-bbaf-bae88aae37a4) ### Links - Solution URL: [Age-Calculator-app](https://github.com/Bibiwei-Pere/Age-Calculator-app) - Live Site URL: [Age-Calculator-app](https://agecalculator01.netlify.app) ### Built with - Semantic HTML5 markup - CSS custom properties - Flexbox - Mobile-first workflow - Javascript ## Author - Website - [Bibiwei Pere](https://perebibiwei.netlify.app) - Frontend Mentor - [@Bibiwei-Pere](https://www.frontendmentor.io/profile/Bibiwei-Pere) - Twitter - [@Bibiwei_Pere](https://www.twitter.com/Bibiwei_Pere)
This is a solution to the Age calculator app challenge on Frontend Mentor.
calculator,calculator-app,calculator-javascript,css,javascript
2023-06-14T11:37:29Z
2023-06-14T20:04:56Z
null
1
0
10
0
0
3
null
null
CSS
ostafen/hermes
develop
# Hermes Hermes implements the **EventStoreDB** [projection subsystem](https://developers.eventstore.com/server/v5/projections.html#introduction-to-projections) on top of **Apachi Kafka**. It is meant to simplify the development of architectures based on **CQRS** and **event-sourcing**. ## Why Hermes? EventStoreDB **projections** have been originally designed to process large streams of events in a reactive manner. They can solve almost any business problem where near real-time complex event processing is required (for example, monitoring of temperature sensors, reacting to changes in the stock market, etc...). Kakfa is a de-facto standard when it comes to stream processing, and ships with stateful processing facilities, fault tolerance and processing guarantees. Its partitioned layout makes it suitable for processing thousands of events in a reliable manner. ## Build (Go 1.9+) Run the following command ```bash foo@bar$ make build ``` ## Local service setup ```yaml logging: level: INFO format: JSON server: port: 9175 # http service port kafka: brokers: - "localhost:9092" ``` To start the service, run the command: ```bash foo@bar$ ./bin/hermes config.yml ``` ## Docker-compose setup ```yaml --- version: '3' services: zookeper: ... kafka: ... hermes: image: ghcr.io/ostafen/hermes:0.0.1-alpha ports: - '9175:9175' environment: SERVER_PORT: 9175 KAFKA_BROKERS: localhost:9092 ``` You can find a ready to use docker compose file [here](docker-compose.yml). ## Projections Projections are defined in Javascript, through a powerful and flexible state transformation API. For example, the following snippet of code defines a projection which computes the total number of events having a specific **eventType**. ```js fromStream('my-stream'). partitionBy(e => e.eventType). when({ $init: function() { return { count: 0 } }, $any: function(state, e) { state.count += 1 } }). filterBy(s => s.count >= 10). transformBy(function(state) { return { Total: state.count } }). outputTo('out-stream') ``` Assuming the projection is stored in a file named `projection.js`, you can use the following command to bootstrap the projection: ```bash curl -X POST localhost:9175/projections/my-projection -H 'Content-Type: text/javascript' --data-binary @projection.js ``` ## Supported Projections Operators ### Selectors | Selector | Description | | -------------------------- | ----------------------------------------- | | `fromStream({streamId})` | Selects events from the streamId stream. | | `fromStreams()` | Selects events from the streams supplied. | ### Filters and Transformations | Selector | Description | Provides | | ------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------- | | `when(handlers)` | Allows only the given events of a particular to pass through the projection. | transformBy, filterBy, outputTo, outputState | | `outputState()` | If the projection is statefull, setting this option produces a stream called `projections-{projection-name}-result` with the state as the event body. | transformBy, filterBy, outputTo | | `partitionBy(function(event))` | Partitions a projection by the partition returned from the handler. | transformBy, filterBy, outputTo | | `transformBy(function(state))` | Provides the ability to transform the state of a projection by the provided handler. | transformBy, filterBy, outputTo, outputState | | `filterBy(function(state))` | Causes projection results to be `null` for any state that returns a `false` value from the given predicate. | transformBy, filterBy, outputTo, outputState | # REST API - **POST** /projections/{name} - Create a new projections - **DELETE** /projections/{name} - Delete an existing projections ## Contact Stefano Scafiti @ostafen ## License Hermes source code is available under the **MIT** License. ## Contributing Hermes is actively developed. If you want to contribute to the project, please read the following [contribution guidelines](CODE_OF_CONDUCT.md).
EventStoreDB-like stream projections on top of Apachi Kafka.
event-driven,event-sourcing,eventstoredb,javascript,kafka,projections-system,stream-processing,kafka-streams
2023-06-20T10:50:58Z
2023-06-23T11:55:49Z
null
1
0
22
0
0
3
null
MIT
Go
FarisMuhd17/QuillJS
main
# Quill.js An all in one discord bot made using the [discord.js](https://discordjs.guide/) library. The bot works using slash commands, and as for non slash commands, the prefix is `q.` ## Features ### 1. Toggling command types The bot allows the server owner to choose which all command types should be enabled in that server For any user in that server, in order to view which all are the allowed types, simply run the following [command](./source/allow_command.js) in the server: ``` q.allowed_commands ``` The output of this functions should be the following if, as an example, all the commands are turned on, except the chess commands: ``` Enabled commands: - Admin - Code - Math - Misc - Random - Science - Time Disabled commands: - Chess ``` For the server owner to choose which all commands must be enabled or disable, the `q.allow_command` command, which is case insensitive. ```js q.allow_command [TYPE] [BOOLEAN: true, false] ``` For example, to disable the chess command, the following command should be run in the server: ```js q.allow_command chess false ``` Or for example, to enable the math command, the following command should be run in the server: ```js q.allow_command math true ``` The command types would be the same as the name of the folder that holds those commands, which are present under the [commands](./source/commands) folder. The changes will all be saved into a json file (`allowed_comamnds.json`), in the source folder, which must be present for the program to run. ### 2. Owner commands These are [commands](./source/owner_commands) reserved just for the creator of the bot, for debugging the bot, editting the console, getting some data from the bot, controlling the bot, etc. The following are the syntax of all of these commands: ```py q.cls # Clears the console q.deletemsg [message_id] # Deletes a message q.echo [user | channel] [object_id] [content] # Sends a message q.guild_ids # Collects the server IDs of all the servers the bot is in q.guild_names # Collects the names of the servers the bot is in q.readfile [path] # Outputs the contents of a path q.readfolder [path] # Outputs the files and folders q.status [online | dnd | idle | invisible] # Change the status of the bot q.stop # Stops the bot ``` These can be gotten using the [q.help](./source/owner_commands/help.js) command as well, whose output should contain the names of all the owner commands. Though it can provide a description for all the owner commands like this: ``` q.help [commands_name] ``` The output should something like this if the inputted command was the [echo](./source/owner_commands/echo.js) command for example ``` Description: Send a message to a user or channel Syntax: q.echo ( user / channel ) id content ``` ## Commands Commands are divided based on a type, these types are the following: 1. [Admin](./source/commands/admin) 2. [Chess](./source/commands/chess) 3. [Code](./source/commands/code) 4. [Math](./source/commands/math) 5. [Misc](./source/commands/misc) 6. [Random](./source/commands/random) 7. [Science](./source/commands/science) 8. [Time](./source/commands/time) A [help](./source/commands/help/help.js) command is also present to provide all the commands in a specific type ``` /help [type] ``` The following few sections shall look over all the commands within these types ### 1. Admin commands [Admin commands](./source/commands/admin) are commands generally usable only by those given some higher permission in a server. The commands given as admin commands are the following: 1. [kick](./source/commands/admin/kick.js) 2. [ban](./source/commands/admin/ban.js) 3. [unban](./source/commands/admin/unban.js) #### Kick This [command](./source/commands/admin/kick.js) simply removes a member from the server, it does not permanently remove them. **Syntax** ``` /kick [user] ``` #### Ban As the name suggests, this [command](./source/commands/admin/ban.js) simply bans a user from the server. Once run, the user will be immediately banned from the server. **Syntax** ``` /ban [user] ``` #### Unban This [command](./source/commands/admin/unban.js) removes the ban on a user, basically re-allowing them to rejoin the server after having been banned. Note that this command needs you to input the user's id instead, which can be acquired from the server settings. **Syntax** ``` /unban [user_id] ``` ### 2. Chess These are [commands](./source/commands/chess) that allow using chess inside of discord itself. The commands given as chess commands are the following: 1. [possible_moves](./source/commands/chess/possible_moves.js) 2. [random_game](./source/commands/chess/random_game.js) 3. [validate_fen](./source/commands/chess/validate_fen.js) 4. [chess](./source/commands/chess/chess.js) #### Possible moves This [command](./source/commands/chess/possible_moves.js) returns all the possible moves in a given position **Syntax** ``` /possible_moves [fen] ``` #### Random game This [commands](./source/commands/chess/random_game.js) generates a random game, full of just random moves, till the game is over **Syntax** ``` /random_game ``` #### Validate FEN This [commands](./source/commands/chess/validate_fen.js) checks whether a given [fen](https://en.wikipedia.org/wiki/Forsyth%E2%80%93Edwards_Notation) is valid or not **Syntax** ``` /validate_fen [fen] ``` #### Chess This [command](./source/commands/chess/chess.js) allows you to play chess in discord itself. It seperated into the following subcommands: ``` /chess challenge [user] /chess accept [user] /chess move [opponent] [move] /chess resign [opponent] /chess position [user] [opponent] /chess stats [user] /chess get_game [user_id] [opponent_id] [index] /chess total_games_against [user_id] [opponent_id] /chess current_games ``` 1) **Challenge:** This subcommand allows you to challenge another user. 2) **Accept:** This allows you to accept a challenge from another user. 3) **Move:** Allows you to make a move in a current game. The move must be in algebraic notation. 4) **Resign:** This allows you to resign a current game 5) **Position:** This subcommand shows you the current position 6) **Stats:** This shows you the total wins, losses, and draws made by a user 7) **Get game:** Shows you a past game of a user against some other user 8) **Total games against:** This gives you the total number of games a user has made against another 9) **Current games:** This subcommand gives you all the total games being played currently ### 3. Code These are [commands](./source/commands/code) that are related to programming or files The commands that come under the code type are the following: 1. [display_code](./source/commands/code/display_code.js) 2. [display_file](./source/commands/code/display_file.js) #### Display code This [command](./source/commands/code/code.js) allows you to display a snippet of code in a neat embed. Upon running the command, a prompt will come up asking for the file type and the code. The file type is required for the code highlighting. The code will then be displayed in clean embed in discord constisting of the author of the code at the top, and the code itself. **Syntax** ``` /display_code ``` #### Display file This [command](./source/commands/code/display_file.js) allows you to display a local file from your device in a neat embed. **Syntax** ``` /display_file [file: Has to be attached] [description: Unrequired] ``` ### 4. Math These [commands](./source/commands/math) were primarily the focus of the bot, so it makes sense that there is a lot of math commands in the bot. It should be commands that can allow you to use it like a calculator, and does some boring tasks for you. The commands that come under the math type are the following: 1. [angle_radian_conversion](./source/commands/math/angle_radian_conversion.js) 2. [antifactorial](./source/commands/math/antifactorial.js) 3. [average](./source/commands/math/average.js) 4. [change_base](./source/commands/math/change_base.js) 5. [ci_amount](./source/commands/math/ci_amount.js) 6. [constant](./source/commands/math/constant.js) 7. [cos](./source/commands/math/cos.js) 8. [sin](./source/commands/math/sin.js) 9. [tan](./source/commands/math/tan.js) 10. [differentiate_function](./source/commands/math/differentiate_function.js) 11. [integrate_function](./source/commands/math/integrate_function.js) 12. [evaluate](./source/commands/math/evaluate.js) 13. [factorial](./source/commands/math/factorial.js) 14. [factors](./source/commands/math/factors.js) 15. [fibonacci](./source/commands/math/fibonacci.js) 16. [herons_formula](./source/commands/math/herons_formula.js) 17. [hyperfactorial](./source/commands/math/hyperfactorial.js) 18. [is_prime](./source/commands/math/is_prime.js) 19. [nth_prime](./source/commands/math/nth_prime.js) 20. [natural_log](./source/commands/math/natural_log.js) 21. [pascals_triangle](./source/commands/math/pascals_triangle.js) 22. [polynomial_from_outputs](./source/commands/math/polynomial_from_outputs.js) 23. [quadratic_equation](./source/commands/math/quadratic_equation.js) 24. [solve_x](./source/commands/math/solve_x.js) 25. [sum_ap](./source/commands/math/sum_ap.js) 26. [summation](./source/commands/math/summation.js) 27. [twonum](./source/commands/math/twonum.js) 28. [use_formula](./source/commands/math/use_formula.js) 29. [saved_formulas](./source/commands/math/saved_formulas.js) #### Angle radian conversion This [function](./source/commands/math/angle_radian_conversion.js) does the conversion from degrees to [radians](https://en.wikipedia.org/wiki/Radian) or vice versa. **Syntax** ``` /angle_radian_conversion [value] [convert_to: Radians | Angles] ``` #### Antifactorial The inverse of the [factorial](https://en.wikipedia.org/wiki/Factorial) function. Finds the number whose factorial is the given number. **Syntax** ``` /antifactorial [number] ``` #### Average Computes the [average](https://en.wikipedia.org/wiki/Mean) from a set of inputs, i.e. numbers seperated by commas. **Syntax** ``` /average [numbers] ``` #### Change base Changes the [base](https://en.wikipedia.org/wiki/Numeral_system) of the given number from base-10 to some other base. ``` /change_base [number: in base-10] [new_base] ``` #### Compound intrest amount Computes the amount of [compound intrest](https://en.wikipedia.org/wiki/Compound_interest) acquired over some time. It can compute for yearly, half yearly, or quarter yearly. **Syntax** ``` /ci_amount [type: Yearly | Half yearly | Quarter yearly] [principly] [rate] [time] ``` #### Constant Gives the value of a given [constant](https://en.wikipedia.org/wiki/Mathematical_constant) in math **Syntax** ``` /constant [name: π | e | 𝜏 | γ | φ] ``` #### Cos Computes the [cosine](https://en.wikipedia.org/wiki/Sine_and_cosine) of an angle in radians **Syntax** ``` /cos [radians] ``` #### Sin Computes the [sin](https://en.wikipedia.org/wiki/Sine_and_cosine) of an angle in radians **Syntax** ``` /sin [radians] ``` #### Tan Computes the [tan](https://en.wikipedia.org/wiki/Trigonometric_functions) of an angle in radians **Syntax** ``` /tan [radians] ``` #### Differentiate function Finds the value of the [derivative](https://en.wikipedia.org/wiki/Derivative) of a function at some value **Syntax** ``` /differentiate_function [function] [at] ``` #### Integrate function Finds the value of the definite [integral](https://en.wikipedia.org/wiki/Integral) of a function between two bounds **Syntax** ``` /integrate_function [function] [from] [to] ``` #### Evaluate Calculate the value of a given [math expression](https://en.wikipedia.org/wiki/Expression_(mathematics)). Note that the expression must be a valid expression, using only math numbers and symbols. **Syntax** ``` /evaluate [expression] ``` #### Factorial Compute the [factorial](https://en.wikipedia.org/wiki/Factorial) of a number. The number must a positive non-zero [integer](https://en.wikipedia.org/wiki/Integer) to work. **Syntax** ``` /factorial [number] ``` #### Factors Find the [factors](https://en.wikipedia.org/wiki/Factor) of a number, i.e. all the numbers that can be used to multiply with other numbers to get the original number back. **Syntax** ``` /factors [number] ``` #### Fibonacci Find the nth number in the [Fibonacci sequence](https://en.wikipedia.org/wiki/Fibonacci_sequence), i.e. a sequence of numbers such that the next number is the sum of the previous two. **Syntax** ``` /fibonacci [term] ``` #### Heron's formula A formula to calculate the area of a scalene [triangle](https://en.wikipedia.org/wiki/Triangle) given the length of all its sides. **Syntax** ``` /herons_formula [side_1] [side_2] [side_3] ``` #### Hyperfactorial The [hyperfactorial](https://en.wikipedia.org/wiki/Hyperfactorial) of a number is the product of all the natural numbers from 1 to that number to the power of the current number **Syntax** ``` /hyperfactorial [number] ``` #### Is prime Checks whether a given number is [prime](https://en.wikipedia.org/wiki/Prime_number) or not, i.e. a number divisible by only 1 and itself. **Syntax** ``` /is_prime [number] ``` #### Nth prime This [command](./source/commands/math/nth_prime.js) finds the nth [prime number](https://en.wikipedia.org/wiki/Prime_number). It uses a large [json file](./source/data/primes.json), which was created in python using a sufficiently fast algorithm, to get the first million prime numbers. **Syntax** ``` /nth_prime [index] ``` #### Natural log Find the [natural log](https://en.wikipedia.org/wiki/Natural_logarithm) of a number **Syntax** ``` /natural_log [number] ``` #### Pascal's triangle Finds the value of [Pascal's triangle](https://en.wikipedia.org/wiki/Pascal%27s_triangle) at some row and column **Syntax** ``` /pascals_trangle [row] [column] ``` #### Polynomial from outputs Finds the [polynomial](https://en.wikipedia.org/wiki/Polynomial) satisfying the given outputs, if the outputs corrospond to x-values from 1 to some value **Syntax** ``` /polynomial_from_outputs [outputs: Seperated by commas] ``` #### Quadratic equation Compute the [roots](https://en.wikipedia.org/wiki/Quadratic_formula) of a quadratic polynomial **Syntax** ``` /quadratic_equation [a: The coefficient of x^2] [b: The coefficient of x] [c: The constant] ``` #### Solve X Find the roots of a function using [Newton's method](https://en.wikipedia.org/wiki/Newton%27s_method), given the initial value **Syntax** ``` /solve_x [function] [equal_to] [x0] ``` #### Sum of arithmetic progression Find the sum of an [arithmetic progression](https://en.wikipedia.org/wiki/Arithmetic_progression) **Syntax** ``` /sum_ap [first_term] [number_of_terms] [common_difference] ``` #### Summation Calculates the [summation](https://en.wikipedia.org/wiki/Summation) between two bounds of a function **Syntax** ``` /summation [start] [stop] [function] ``` #### Two numbers This [command](./source/commands/math/twonum.js) finds two numbers that satisfy a condition given an initial two numbers. The possible conditions are the following: - Sum & Difference - Product & Quotient - Sum & Product **Syntax** ``` /twonum [category: sum_difference | product_quotient | sum_product] [number1] [number2] ``` #### Use formula This [command](./source/commands/math/use_formula.js) allows you to type out a [formula](https://en.wikipedia.org/wiki/Formula), and then plug in the values you want, and then the program evaluates the result. All the values in the `values` variable must be seperated using commas, and the assigned variable must be followed by an equals with the value you want to give it. **Syntax** ``` /use_formula [formula] [values] ``` #### Saved formulas This is a [command](./source/commands/math/saved_formulas.js) that allows you to save formulas, use them, and delete them. The formulas are saved in a [json file](./source/data) holding your user id, thus the formulas are saved indirectly in your discord account. This command has sub commands (commands coming under it), the following are the syntax of each: **Syntax** ``` /saved_formulas list /saved_formulas read [name] /saved_formulas use [name] [inputs] /saved_formulas add /saved_formulas delete [name] ``` 1) **List:** This one simply lists out the names of all the saved scripts 2) **Read:** The read command allows you to read the saved script and variables of a given formula 3) **Use:** This command allows you to use any one of your scripts. The name being the name of the saved formula, and the inputs all seperated by commas. The inputs can contain mathematical constants such as pi, e, phi, etc. 4) **Add:** This commands allows the user to add and create a new command (or set a previously existing one). The command opens up a popup, where you can input in the name of the formula, all its variables (all must be single characters), and the script. 5) **Delete:** This command allows you to delete a script permanently. **Script syntax** - Every line must begin with either `text:` or `eqnt:` - If the line starts with `text:`, then it will simply display the text present there - If the line starts with `eqnt:`, the program will evaluate that line with the substituted variables - The eqnt lines must always only have numbers, variables, operators, and whitespaces. - After each line, the program automatically goes to the next line. To prevent it, put `CONT` at the end of that line for it to continue to the next line. - If you want to display a variable in the text line with the inputted value, then you can state `VAR:[variable_name]`, and it will display the value of the inputted variable - Trigonometric functions such as sin, cos, and tan are supported - If you want to add some characters in the text line not there in your keyboard, for example the pi symbol, the `CHAR:[name]` statement can be used for many common characters. Exponents can be expressed with `CHAR:exp_[exponent]`, obviously to express power of multiple digit, you simply put them together. All the valid `CHAR` characters are the following: ``` CHAR:pi CHAR:upper_pi CHAR:tau CHAR:phi CHAR:gamma CHAR:delta CHAR:zeta CHAR:sigma CHAR:exp_0 CHAR:exp_1 CHAR:exp_2 CHAR:exp_3 CHAR:exp_4 CHAR:exp_5 CHAR:exp_6 CHAR:exp_7 CHAR:exp_8 CHAR:exp_9 ``` **Example:** Here is an example of the simple script for the [quadratic equation](https://en.wikipedia.org/wiki/Quadratic_formula), with the name `QuadraticEqnt`: ``` text:let **a** = VAR:a text:let **b** = VAR:b text:let **c** = VAR:c text:axCHAR:exp_2 + bx + c = VAR:axCHAR:exp_2 + VAR:bx + VAR:c = 0 => x = CONT eqnt: (-b + (b ** 2 - 4 * a * c) ** 0.5) / (2 * a) CONT text: or CONT eqnt: (-b - (b ** 2 - 4 * a * c) ** 0.5) / (2 * a) ``` If you run the following command, where a=1, b=-3, and c=2: ``` /saved_formulas use name: QuadraticEqnt inputs: a=1,b=-3,c=2 ``` The output should look like the following: ``` let a = 1 let b = 2 let c = 1 ax² + bx + c = 1x² + 2x + 1 = 0 => x = 1 or 2 ``` ### 5. Misc These [commands](./source/commands/misc) are ones that don't fall in some specific type, thus are under this more general type. The commands that come under the misc type are the following: 1. [caesar_cipher](./source/commands/misc/caesar_cipher.js) 2. [coinflip](./source/commands/misc/coinflip.js) 3. [embed](./source/commands/misc/embed.js) 4. [rps](./source/commands/misc/rps.js) #### Caeser cipher This [function](./source/commands/misc/caesar_cipher.js) applies the [Ceaser cipher](https://en.wikipedia.org/wiki/Caesar_cipher) onto a string of text by some shift **Syntax** ``` /caeser_cipher [text] [shift] ``` #### Coinflip Simply does a coinflip **Syntax** ``` /coinflip ``` #### Embed Create a neat embed with a title, description, image, thumbnail, a footer, and a URL. The URL us present at the text that holds the name of the author present in the embed. None of the arguments to this [command](./source/commands/misc/embed.js) is required. **Syntax** ``` /embed [title] [description] [image] [thumbnail] [footer] [url] ``` #### Rock, Paper, Scissors Play rock, paper, scissors against a random choice. **Syntax** ``` /rps [choice: Rock | Paper | Scissor] ``` ### 6. Random These [commands](./source/commands/random) involving choosing a random value. Note that no value returned is genuinely random, it is only [pseudo-random](https://en.wikipedia.org/wiki/Pseudorandomness), as computers are unable to generate genuinely random numbers. The commands that come under the random type are the following: 1. [randint](./source/commands/random/randint.js) 2. [randoption](./source/commands/random/randoption.js) #### Random integer Chooses a random number between two given values **Syntax** ``` /randint [lower_bound] [upper_bound] ``` #### Random option Chooses a random option from a set of objects **Syntax** ``` /randoption [list: Seperated by commas] ``` ### 7. Science These [commands](./source/commands/science) are more science related commands that generally works using [chemistry](https://en.wikipedia.org/wiki/Chemistry) and [physics](https://en.wikipedia.org/wiki/Physics) calculations The comands that come under the science type are the following: 1. [element](./source/commands/science/element.js) 2. [periodic_table](./source/commands/science/periodic_table.js) 3. [word_to_elements](./source/commands/science/word_to_elements.js) #### Element This [function](./source/commands/science/element.js) allows you to give one information of an [element](https://en.wikipedia.org/wiki/Chemical_element) from the [periodic table](https://en.wikipedia.org/wiki/Periodic_table), such as the name, [symbol](https://en.wikipedia.org/wiki/Chemical_symbol), or [atomic number](https://en.wikipedia.org/wiki/Atomic_number), and it can return the other two values. The `type` argument refers to the value you are inputting. **Syntax** ``` /element [type: Name | Symbol | Atomic number] [input: Must corrospond to type] ``` #### Periodic table This [command](./source/commands/science/periodic_table.js) returns the image of the [periodic table](https://en.wikipedia.org/wiki/Periodic_table) **Syntax** ``` /periodic_table ``` #### Word to elements This command converts a word into a set of [elements](https://en.wikipedia.org/wiki/Chemical_element), whose [symbols](https://en.wikipedia.org/wiki/Chemical_symbol) corrospond to that word when placed together. Note that if there are multiple solutions, this program with only give the first one it finds. **Syntax** ``` /word_to_elements [word] ``` ### 8. Time These are [commands](./source/commands/time) more related to the time, day of the week, month, etc. The commands that come under the time type are the following: 1. [day_of_week](./source/commands/time/day_of_week.js) 2. [days_for_month](./source/commands/time/days_for_month.js) 3. [utc](./source/commands/time/utc.js) #### Day of the week This [command](./source/commands/time/day_of_week.js) returns that day of the week a specific date is. If the date is invalid, then the program will be unable to find the day it was. **Syntax** ``` /day_of_week [day] [month] [year] ``` #### Days for the month This [command](./source/commands/time/days_for_month.js) returns the number of days present in a given month. **Syntax** ``` /days_for_month [month] ``` #### UTC (Coordinated Universal time) This [command](./source/commands/time/utc.js) returns the current time it is, but in the [coordinated universal time (utc)](https://en.wikipedia.org/wiki/Coordinated_Universal_Time). **Syntax** ``` /utc ``` ## Environment variables Some [environment variables](https://en.wikipedia.org/wiki/Environment_variable) must be present for the program to run, with data that must be set by the owner. This file must be named `.env`, and must by present just outside the `source` folder. The following are the variables inside of the file: 1. Token 2. Client ID 3. Owner ID 4. Console channel ID --- ### Contacts *Email address:* farismuhd172009@gmail.com
AIO Discord bot made using JavaScript
aio-bot,discord-aio,discord-bot,discord-js,discordjs,discordjs-bot,aio,bot,discord,javascript
2023-06-28T14:52:45Z
2024-01-27T10:20:11Z
null
2
0
44
0
0
3
null
MIT
JavaScript
Mustapha-Nkhili/My-old-Portfolio
main
# My Portfolio Welcome to my portfolio! This repository showcases my projects, skills, and experiences. Feel free to explore and get to know me better. ## Live Demo visit: [Mustapha Portfolio](https://mustapha-nkhili.github.io/My-Portfolio/) ## built with - HTML5 - CSS - JavaScript ## Table of Contents - [About Me](#about-me) - [Projects](#projects) - [Skills](#skills) - [Contact](#contact) ## About Me Hello there! I'm a passionate web developer on a mission to create exceptional digital experiences. My love for coding and web development goes beyond a profession; it's a true passion that drives me to continuously learn and push the boundaries of what's possible. I discovered my fascination with web development at an early age, and ever since, I've been immersed in the world of coding. With a solid educational foundation and years of hands-on experience, I've honed my skills in various web technologies and frameworks, always staying up-to-date with the latest trends and advancements. ## Projects Here are a few examples: - **Leon Portfolio**: Leon is a portfolio website I developed to showcase my skills. It features a clean and modern design, highlighting my expertise in front-end development and user interface design. - Technologies used: - HTML5 - CSS3 - [GitHub Repository](https://github.com/Mustapha-Nkhili/leon-portfolio) - [Live Demo](https://mustapha-nkhili.github.io/leon-portfolio/) - **ACCELT**: ACCELT is also a portfolio website that i developed to showcase my skills. It features a clean and modern design, highlighting my expertise in front-end development and user interface design - Technologies used: - HTML5 - CSS3 - [GitHub Repository](https://github.com/Mustapha-Nkhili/ACCELT-portfolio) - [Live Demo](https://mustapha-nkhili.github.io/ACCELT-portfolio/) ## Skills As a passionate web developer, I have acquired a diverse set of skills that enable me to create engaging and functional web experiences. Here are some of my key skills: - **Front-End Development:** Proficient in HTML, CSS, and JavaScript, with expertise in responsive web design, cross-browser compatibility, and user interface development. - **JavaScript Frameworks:** Experienced in working with React to build dynamic and interactive web applications. - **Version Control:** Proficient in using Git and GitHub for version control, collaborating with team members, and managing code repositories. - **Responsive Design:** Knowledgeable in designing websites that adapt seamlessly to various screen sizes and devices, ensuring optimal user experiences across desktop, tablet, and mobile. - **Continuous Learning:** A perpetual learner, constantly exploring emerging web technologies, attending webinars, and engaging in online communities to stay up-to-date with the latest industry trends and advancements. ## Contact I'm excited to connect with you and discuss how I can contribute to your web development projects. Feel free to reach out to me using the following contact information: - Email: mustaphankhili22@gmail.com - Twitter: [@Mustapha_nkhili](https://twitter.com/Mustapha_nkhili) - GitHub: [Mustapha Nkhili](https://github.com/Mustapha-Nkhili/) - Website: [Mustapha Portfolio](https://mustapha-nkhili.github.io/My-Portfolio/) Whether you have a question, a potential collaboration, or simply want to say hello, I'm always ready to engage in meaningful conversations related to web development. Feel free to contact me through any of the provided channels, and I'll get back to you as soon as possible. I'm also open to connecting on other platforms, so don't hesitate to reach out through LinkedIn, GitHub, or any other preferred professional networking platform. Looking forward to hearing from you and discussing how we can work together to create exceptional web experiences!
This is my old portfolio built with html, css, and javaScript
css,html,javascript,portfolio
2023-06-23T10:21:05Z
2023-06-29T13:03:46Z
null
1
0
8
0
0
3
null
null
HTML
shruti-sen2004/Shruti_Portfolio
main
# About This is my personal portfolio webpage. # Website Video Demo https://github.com/shruti-sen2004/Shruti_Portfolio/assets/115914670/3d56cdbb-18c4-4026-8135-7437e1af662e
This is my personal portfolio webpage.
css,html,javascript
2023-06-11T05:40:44Z
2023-12-01T15:40:47Z
null
1
0
22
0
0
3
null
null
CSS
divyaGrvgithub/FlipKart-Clone
flipkartdeploy/branch
# Flipkart-MERN ## 🖥️ Tech Stack **Frontend:** ![reactjs](https://img.shields.io/badge/React-20232A?style=for-the-badge&logo=react&logoColor=61DAFB)&nbsp; ![react-router](https://img.shields.io/badge/React_Router-CA4245?style=for-the-badge&logo=react-router&logoColor=white)&nbsp; ![redux](https://img.shields.io/badge/Redux-593D88?style=for-the-badge&logo=redux&logoColor=white)&nbsp; ![tailwindcss](https://img.shields.io/badge/Tailwind_CSS-38B2AC?style=for-the-badge&logo=tailwind-css&logoColor=white)&nbsp; ![mui](https://img.shields.io/badge/Material--UI-0081CB?style=for-the-badge&logo=material-ui&logoColor=white)&nbsp; ![chart-js](https://img.shields.io/badge/Chart.js-FF6384?style=for-the-badge&logo=chartdotjs&logoColor=white)&nbsp; **Backend:** ![nodejs](https://img.shields.io/badge/Node.js-43853D?style=for-the-badge&logo=node.js&logoColor=white)&nbsp; ![expressjs](https://img.shields.io/badge/Express.js-000000?style=for-the-badge&logo=express&logoColor=white)&nbsp; ![mongodb](https://img.shields.io/badge/MongoDB-4EA94B?style=for-the-badge&logo=mongodb&logoColor=white)&nbsp; ![jwt]( https://img.shields.io/badge/JWT-000000?style=for-the-badge&logo=JSON%20web%20tokens&logoColor=white)&nbsp; **Payment Gateway:** ![paytm](https://img.shields.io/badge/Paytm-002970?style=for-the-badge&logo=paytm&logoColor=00BAF2) **Deployed On:** ![heroku](https://img.shields.io/badge/Heroku-430098?style=for-the-badge&logo=heroku&logoColor=white) **Image Management:** [Cloudinary](https://cloudinary.com/) **Mail Service:** [Sendgrid](https://sendgrid.com/) ## 🚀 Features - Login/Signup User Account - Update Profile/Password User Account - Reset Password Mail using Sendgrid - Cart Add/Remove Items | Update Quantities - Save For Later Add/Remove Items - Wishlist Add/Remove Items - Products Pagination (Default 12 Products Per Page) - Product Search - Product Filters Based on Category/Ratings | Price Range - Shipping Info in Session Storage - My Orders (With All Filters) - Order Details of All Ordered Item - Users will receive mail when order placed with all details - Review Products User Account - Admin: Dashboard access to only admin roles - Admin: Update Order Status | Delete Order - Admin: Add/Update Products - Admin: Update User Data | Delete User - Admin: List Review of Product | Delete Review - Stock Management: Decrease stock of product when shipped ## Sneak Peek of Site ![App Screenshot 1](https://images2.imgbox.com/42/99/Gb9xX67F_o.png) ![App Screenshot 2](https://images2.imgbox.com/27/60/J10VY0bT_o.png) ![App Screenshot 3](https://images2.imgbox.com/34/fd/xP6wgFVn_o.png) ![App Screenshot 4](https://images2.imgbox.com/60/13/AjICajHg_o.png) <table> <tr> <td><img src="https://user-images.githubusercontent.com/64949957/153995383-367cbcc0-cce5-4523-a999-b8d92e44d6ab.jpg" alt="mockup" /></td> <td><img src="https://user-images.githubusercontent.com/64949957/153995406-45e36cbc-8d42-4416-b23a-08ad592e4ebc.jpg" alt="mockups" /></td> </tr> <tr> <td><img src="https://user-images.githubusercontent.com/64949957/153996560-bd631f30-46f0-4248-83b3-d8ce44a8f9e4.PNG" alt="mockup" /></td> <td><img src="https://user-images.githubusercontent.com/64949957/153996577-57b1a82d-064a-49dc-9055-e2bceb854ab2.PNG" alt="mockups" /></td> </tr> </table> ## Installation Clone the project ```bash git clone https://github.com/divyaGrvgithub/FLIPKART-MERN.git ``` Go to the project directory ```bash cd flipkart-clone ``` **For Client and Server both** Install dependencies ```bash npm install ``` Start the server ```bash npm run start ``` ## Environment Variables To run this project, you will need to add the following environment variables to your .env file **Server** `DB` `SECRET_KEY` `MERCHANT_KEY` `WEBSITE` `HOST_NAME` `INDUSTRY_TYPE` `CHANNEL_ID` **Client** `REACT_APP_API_KEY` `REACT_APP_AUTH_DOMAIN` `REACT_APP_PROJECT_ID` `REACT_APP_STORAGE_BUCKET` `REACT_APP_MESSAGING_SENDER_ID` `REACT_APP_ID` `REACT_APP_MEASUREMENT_ID`
Flipkart, a prominent e-commerce platform in India, has leveraged the MERN stack to power its web applications. MERN, which comprises MongoDB, Express.js, React.js, and Node.js, provides Flipkart with a robust and efficient foundation for backend development and frontend rendering.
authentication,authorization,expressjs,javascript,mongodb,nodejs,reactjs,heroku,jwt,paytm
2023-06-14T12:49:20Z
2023-06-23T09:48:43Z
null
2
0
265
0
4
3
null
null
JavaScript
dkrupali56/Mario-Matching-Game
main
# Mario Matching Game Welcome to the Mario Matching Game! This game challenges players to match three identical images within a specified time limit. ## Image ![image](https://github.com/dpvasani/Mario-Matching-Game/assets/109815626/fde14fbe-05fc-4231-9d26-ec8e975a633d) ## Gameplay - The game board consists of multiple tiles, each containing an image. ## Features - Reset Button: Start a new game round by resetting the board and timer. ## Technologies Used - HTML - CSS - JavaScript
Engage in the Mario Matching Game, where players aim to match three identical images within a time limit. Featuring an intuitive interface, reset functionality, and classic Mario-themed tiles, enjoy this fun and challenging game experience!
css,html5,javascript
2023-06-22T12:21:39Z
2024-05-03T05:17:04Z
null
1
0
3
0
0
3
null
null
CSS
nathang15/dson-market
main
# Dson Market # This is a marketplace for Dickinson Student to trade, sell, or buy any items at ease on one common platform. The website is only available for Dickinson students, members, and faculties who possess a @dickinson.edu email. ## Usage ## For users, using Dson Market is very straightforward. - Ensure that you have a @dickinson.edu email. - Navigate to [Dson Market website](https://dsonmarket.netlify.app) - Register at the main login page and confirm your email. (A confirmation email will be sent to the email address you provide). - To begin using all the features: - Go to your profile page by clicking on your avatar on the top right of the screen. - Change the weird-looking name into your name. - Add a profile picture to make it easier for other users to identifies you. ## Built With ## ReactJS - JavaScript library for building user interfaces based on components. ([react.dev/](https://react.dev/)) NextJS - A React framework used for server-side rendering ([nextjs.org](https://nextjs.org/)) Node.js - JavaScript runtime environment ([nodejs.org](https://nodejs.org/en/)) Supabase - An open-source replacement for Firebase ([supabase.com](https://supabase.com/)) and lots of other software/packages. ## Authors ## This application is owned by Nathan Nguyen - Dickinson College '25. For a list of contributors, [click here](https://github.com/nathang15/dson-market/graphs/contributors) ## Licensing ## This project is licensed under the GNU General Public License version 3.0. See the full licensing agreement [here](LICENSE.txt) ## Contributions ## Before beginning this install please review the [Code of Conduct](CODE_OF_CONDUCT.md) that sets the expectations for the FarmData2 community and the [License Information](LICENSE.txt) that describes DsonMarket's licensing. Full installation details for these tools are provided by the projects themselves as described and linked below: - [Install git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) - Test your install using the command: `git --version` - [Install NodeJS](https://nodejs.org/en/download) - Test your install using the command: `node -v` and `npm -v` - [Install Yarn](https://classic.yarnpkg.com/lang/en/docs/install/#windows-stable) - Test your install using the command: `yarn --version` - Assuming you are using VSCode, it is very beneficial to add ESLint extension as it greatly helps with code linting. ### Setting up development environment DsonMarket uses the fork model for development. (There are many descriptions of this process on the web but GitHub ones include a [general one](https://docs.github.com/en/get-started/quickstart/contributing-to-projects) and one with [more operational details.](https://docs.github.com/en/get-started/quickstart/fork-a-repo)) - This means you need to go to the main [DsonMarket GitHub](https://github.com/nathang15/dson-market) page (after login to GitHub), - Fork the project onto your own GitHub account. - Clone the forked copy onto you own development machine to work on the code base. You can place the clone anywhere you want on your machine. - Note the clone will place all the files inside a new directory named dson-market unless you put a "." at the end of the git clone command. - This model has the advantage that you can commit and push to your account without needing write permission on the main project repository. #### Run DsonMarket - Once you have DsonMarket installed and running, you will want to open it in a web browser. It should not matter which one you use. - To do this (use the terminal inside VSCode, assuming you are using VSCode): - If you are not already in DsonMarket folder, navigate to it by using the command `cd dson-market` - To check if you are in the correct folder, run the command `ls` and it should displays a bunch of files like package.json, .github, .next, etc. - Next, run the command `yarn run dev` to start the server. - Enter the address: localhost:3000 and load the page. "localhost" indicates the page is being served up from your machine and "3000" is the default port that DsonMarket uses to accept web connections. ### Steps for creating a pull request (PR) to integrate your code into DsonMarket. - While developing your code, we suggest you do the following: - **Create a branch of development branch** (the main branch is the default when you clone the project) and give it a name that indicates the work you intend to do. - Make sure you run DsonMarket in a web browser and it works as expected. Please check any feature that might have been impacted by your work and do a quick general check of the system so you know it works. - :warning: **WARNING**: - **All actions performed (e.g create posts, post comments, likes someone's posts, etc.)** during local development will also be live in production. Be careful not to perform those actions unless it is absulutely necessary. - We are trying our best to figure out how to set up a proper local development environment. - When your fork has code that is ready to add to the main code base, create a pull request from your branch into development on the main DsonMarket GitHub repository ([GitHub documentation](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork)). The pull request template should include the following: - An area at the top to describe this PR. It states: "Please include a summary of the change and which issue is touched on. Please also include relevant motivation and context." This is also the area to add recognition of others that worked on code. Use the @<GitHub name> where you put in the person's actual GitHub name (user id) without the angle brackets and GitHub will automatically link to their GitHub account. - Note any issues this PR addresses. Check to see if you are addressing any open issues. If so, please note in the pull request description. If your pull request completely fixes/addresses an open issue then put the words "Fixes #XXX", where XXX is the issue number. If it only partly addresses an issue then use "Partly Addresses #XXX". If it fixes an open issue then everyone will see the a note in the pull request (after opened) indicating it will close this issue when merged and there is also a related note in the issue. - There is a checkbox to indicate: "You acknowledge that every person contributing to this work has signed the DsonMarket Contributing License Agreement and each author is listed in the Description section." - An area to list any limitations of the PR: "Describe any issues that remain or work that should still be done." - If your work is not yet ready and you are sharing to get early feedback, please make the PR as a draft. ## Code of Conduct ## Dson Market is based on the idea of sharing so everyone benefits from our combined efforts. To benefit everyone, we need to maintain a welcoming and appropriate community.<br /> Dson Market has as a [code of conduct](CODE_OF_CONDUCT.md) that follows the [Contributor Covenant](https://www.contributor-covenant.org/) used by many open source projects.<br/> We are committed to promptly addressing any feedback that clearly articulates potential actions and reasons behind them. Regardless of the outcome, you will be informed of our decision. We want to emphasize our dedication to maintaining a welcoming and inclusive community, and we are committed to taking any concerns or improvement ideas seriously, working diligently to address them. ## Contact ## To contact us, send an email to nguyenat@dickinson.edu or open an issue on GitHub.
A marketplace for Dickinson College members
javascript,marketplace,nextjs,react,supabase,typescript
2023-06-15T11:27:00Z
2024-04-19T22:29:15Z
null
1
8
113
5
0
3
null
GPL-3.0
TypeScript
danieltistoj/backend-hackfest2023
main
<div align="center"> <h1>Backend Service Hackfest 2023</h1> <div> <img src="https://res.cloudinary.com/drrgpgkbk/image/upload/v1686546051/logos/Logoback_dpvg9k.png"> </div> <h1>Technologies</h1> </div> <div style="display: inline_block" align="center"> <img align="center" alt="Rafa-Csharp" height="50" width="150" src="https://img.shields.io/badge/JavaScript-323330?style=for-the-badge&logo=javascript&logoColor=F7DF1E"> <img align="center" alt="Rafa-Csharp" height="50" width="150" src="https://img.shields.io/badge/Node.js-43853D?style=for-the-badge&logo=node.js&logoColor=white"> <img align="center" alt="Rafa-Csharp" height="50" width="150" src="https://img.shields.io/badge/Express.js-404D59?style=for-the-badge"> <img align="center" alt="Rafa-Csharp" height="50" width="150" src="https://img.shields.io/badge/MongoDB-4EA94B?style=for-the-badge&logo=mongodb&logoColor=white"> <img align="center" alt="Rafa-Csharp" height="50" width="150" src="https://github.com/danieltistoj/backend-hackfest2023/assets/42653664/5a066537-1ae7-4811-9948-aac8548eb155"> </div> <br> <p>Instalar dependencias</p> ```sh npm i ``` <p>Ejecutar en local</p> ```sh npm run dev ``` <div align="center"> <h1>Dependencies</h1> </div> ```json "body-parser": "^1.20.2", "cloudinary": "^1.37.1", "cors": "^2.8.5", "dotenv": "^16.1.4", "express": "^4.18.2", "express-fileupload": "^1.4.0", "fs-extra": "^11.1.1", "mongoose": "^6.6.1", "morgan": "^1.10.0", "multer": "^1.4.5-lts.1" ``` <div align="center"> <h1>DevDependencies</h1> </div> ```json "nodemon": "^2.0.22" ``` <div> <div align="center"> <h1>Documentation</h1> </div> <p>Host</p> <ul> <li><strong> DEV: </strong><code>http://backend-hackfest2023-dev.up.railway.app</code></li> <li><strong> Local: </strong><code>http://localhost:4000</code></li> </ul> <div> <h2>User</h2> <h2>Data Model</h2> <table> <tr> <th>Field</th> <th>Type</th> <th>Required</th> <th>Trim</th> <th>Default Value</th> </tr> <tr> <td>name</td> <td>String</td> <td>Yes</td> <td>Yes</td> <td>-</td> </tr> <tr> <td>password</td> <td>String</td> <td>Yes</td> <td>Yes</td> <td>-</td> </tr> <tr> <td>email</td> <td>String</td> <td>Yes</td> <td>Yes</td> <td>Undefined</td> </tr> <tr> <td>profilePhoto</td> <td>String</td> <td>No</td> <td>Yes</td> <td>""</td> </tr> <tr> <td>publicId</td> <td>String</td> <td>No</td> <td>No</td> <td>-</td> </tr> <tr> <td>matchList</td> <td>Array</td> <td>No</td> <td>Yes</td> <td>[]</td> </tr> <tr> <td>phone</td> <td>String</td> <td>No</td> <td>Yes</td> <td>""</td> </tr> <tr> <td>rol</td> <td>String</td> <td>Yes</td> <td>Yes</td> <td>""</td> </tr> </table> <h3>Create User</h3> <p>Creates a new user.</p> <ul> <li><strong>Method:</strong> POST</li> <li><strong>URL:</strong> <code>{{host}}/api/v1/user/create-user</code></li> </ul> <p>Request body:</p> <pre> <code> { "name": "Ejemplo", "password": "MyPassword", "email": "nuevo@gmail.com" } </code> </pre> <h3>All Users</h3> <p>Retrieves all users.</p> <ul> <li><strong>Method:</strong> GET</li> <li><strong>URL:</strong> <code>{{host}}/api/v1/user/all-users</code></li> </ul> <h3>Get User By Name</h3> <p>Retrieves a user by their name.</p> <ul> <li><strong>Method:</strong> GET</li> <li><strong>URL:</strong> <code>{{host}}/api/v1/user/getUserByName/{name}</code></li> <li>Replace <code>{name}</code> with the user's name.</li> </ul> <h3>Get User By Id</h3> <p>Retrieves a user by their ID.</p> <ul> <li><strong>Method:</strong> GET</li> <li><strong>URL:</strong> <code>{{host}}/api/v1/user/getUserById/{id}</code></li> <li>Replace <code>{id}</code> with the user's ID.</li> </ul> <h3>Update User By Id</h3> <p>Updates a user by their ID.</p> <ul> <li><strong>Method:</strong> PUT</li> <li><strong>URL:</strong> <code>{{host}}/api/v1/user/updateUserById/{id}</code></li> <li>Replace <code>{id}</code> with the user's ID.</li> </ul> <p>Request body:</p> <pre> <code> { "email": "correo2345@gmail.com" } </code> </pre> <h3>Delete User By Id</h3> <p>Deletes a user by their ID.</p> <ul> <li><strong>Method:</strong> DELETE</li> <li><strong>URL:</strong> <code>{{host}}/api/v1/user/deleteUserById/{id}</code></li> <li>Replace <code>{id}</code> with the user's ID.</li> </ul> <h2>Pet</h2> <h2>Data Model</h2> <table> <tr> <th>Field</th> <th>Type</th> <th>Required</th> <th>Trim</th> <th>Default Value</th> </tr> <tr> <td>name</td> <td>String</td> <td>Yes</td> <td>Yes</td> <td>-</td> </tr> <tr> <td>profilePhoto</td> <td>String</td> <td>No</td> <td>No</td> <td>""</td> </tr> <tr> <td>publicId</td> <td>String</td> <td>No</td> <td>No</td> <td>-</td> </tr> <tr> <td>race</td> <td>String</td> <td>Yes</td> <td>Yes</td> <td>-</td> </tr> <tr> <td>age</td> <td>String</td> <td>Yes</td> <td>Yes</td> <td>-</td> </tr> <tr> <td>sex</td> <td>Number</td> <td>Yes</td> <td>Yes</td> <td>-</td> </tr> <tr> <td>description</td> <td>String</td> <td>No</td> <td>Yes</td> <td>-</td> </tr> </table> <h3>Create Pet</h3> <p>Creates a new pet.</p> <ul> <li><strong>Method:</strong> POST</li> <li><strong>URL:</strong> <code> {{host}}/api/v1/pet/create-pet</code></li> </ul> <p>Request body:</p> <pre> <code> { "name": "firulais", "image": [file], "race": "mestizo", "age": "2 meses", "sex": 1, "description": "Es un perro muy amigable" } </code> </pre> <p>If Postman is used, a form-data format must be used for this endpoint</p> <h3>All Pets</h3> <p>Retrieves all pets.</p> <ul> <li><strong>Method:</strong> GET</li> <li><strong>URL:</strong> <code> {{host}}/api/v1/pet/all-pet</code></li> </ul> <h2>Deployment</h2> <h3>User-deploy</h3> <p>These endpoints are available in the deployed version of the API.</p> <ul> <li><strong>Base URL:</strong> <code>http://backend-hackfest2023-dev.up.railway.app</code></li> </ul> <p>Please note that the deployed version may have different behavior or limitations compared to the local version.</p> </div> </div> <div align="center"> <h1>Thanks for watching</h1> <div> <img height="500" width="500" src="https://github.com/danieltistoj/backend-hackfest2023/assets/42653664/2d251ccc-2256-4aa7-9eab-25e0f340eb84"> </div> </div>
Xela url hackfest 2023 backend service from the ScriptSquad team
backend,express,javascript,nodejs
2023-06-10T02:26:22Z
2023-06-12T05:30:56Z
null
2
13
45
0
0
3
null
null
JavaScript
smartman1234/book-keeping-management-system
main
Hijos 🕯⛓⚒⚔️ ===== Free, open, small and simple lodge book-keeping management system Features --------- * Multiple lodge invoicing 💵 * 🇬🇧English and 🇪🇸Spanish supported * Keep track of expenses, debtors, donors, etc. 💸💸 * Send individual account balance email or mass account balances to each member. 🔨 Technical description ---------------------- `hijos` is a small and simple management system built on [Django](https://www.djangoproject.com), [SQLite](https://www.sqlite.org) and [Docker](https://www.docker.com). Currently it just supports English and Spanish. Getting Started ---------------- Thanks to `docker` and `git`, it's quite easy to setup. Assuming you have already installed both of them, for a local (testing/development) setup: $ git clone git@github.com:mbaragiola/hijos.git $ cd hijos $ cp config/settings/base.py.example config/settings/base.py $ cp config/settings/local.py.example config/settings/local.py Edit both configs as you please. $ docker-compose build $ docker-compose run django python manage.py migrate $ docker-compose run django python manage.py createsuperuser $ docker-compose up If you go to http://localhost:8000 (Linux) or http://192.168.99.100:8000 (macOS) you can start using `hijos` by logging with the username and password provided in the step before. Going to http://localhost:8000/admin/ you can create a new lodge with its categories (i.e., Simple and Student Discount) with its corresponding prices. For everything else, you can use the regular views on the main menu
Free, open, small and simple lodge book-keeping management system
django,html,docker,html5,javascript
2023-06-09T19:37:28Z
2019-04-02T16:55:22Z
null
1
0
95
0
1
3
null
BSD-3-Clause
Python
matej-kaska/WatchDog
main
# WatchDog WatchDog is a simple application designed to monitor the availability of websites by periodically sending requests to servers. Users can add websites and obtain detailed information about their availability, including a timeline graph, returned IP addresses, and server response status codes. The application also allows for verifying the availability and responsiveness of a server for a specific IP address of a website. The software aims to provide users with an overview of their website's availability and information about any potential outages. ## Tech 🛠 **Frontend:** Bootstrap **Backend:** FastAPI, Uvicorn, MariaDB, SQLAlchemy, Jinja **Tools:** Docker ## Features 🚀 - Website Monitoring: WatchDog monitors the availability of websites by regularly sending requests to the servers. This ensures that users can stay informed about any downtime or outages. - Detailed Information: Users can obtain detailed information about website availability, including a graphical representation of the availability over time. This allows for easy tracking and analysis of the website's performance. - IP Address Tracking: WatchDog provides the ability to view the IP addresses associated with a website. This can be useful for troubleshooting or verifying the server's configuration. - Server Response Status Codes: Users can access the status codes of the server responses, which indicate whether the server is functioning properly or encountering errors. This information helps diagnose and resolve any issues affecting the website's availability. - Verification of Server Availability: WatchDog allows users to verify the availability and responsiveness of a server for a specific IP address. This feature ensures that the server is accessible and capable of serving the website content. - User-Friendly Interface: The application provides a user-friendly interface that makes it easy to add and manage websites, view monitoring results, and access detailed reports. Users can navigate through the app effortlessly and quickly access the information they need. - Insights and Analytics: WatchDog offers insights and analytics regarding website availability, downtime frequency, and performance metrics. These reports help users gain a comprehensive understanding of their website's performance and identify areas for improvement. ## Installation 🛠 ### Your Instance 🔥 Clone my repository: ```bash git clone https://github.com/matej-kaska/WatchDog ``` Compose (in root folder): ```bash docker compose up -d ``` Now wait until it finishes, and then open <http://localhost:5001> in the web browser of your choice. ## User Guide ❤️ ### Main Page 📖 The main page of the WatchDog application serves as a centralized hub for monitoring the availability of websites. Upon opening the application, users are greeted with a user-friendly interface that displays a comprehensive overview of all the websites that have already been added to the monitoring list. This overview allows users to quickly assess the status and availability of their websites at a glance. To further enhance usability, the main page offers an intuitive interface for adding new websites to the monitoring list. Users can easily access the "Add Website" feature, where they can input the necessary details, such as the website's URL. Upon adding a new website, the application will initiate periodic requests to the server to monitor its availability. ![main page](pictures/main.png) ### Watched Website 📖 This website page within the WatchDog application provides users with detailed information about a specific website in a comprehensive and organized manner. This page offers valuable insights into the website's availability, including a graphical representation of its uptime status, a list of IP addresses that have responded to requests from the domain, along with their corresponding status codes, and the date and time of the last check. At the top of the website page, users will find a visually informative graph that depicts the website's availability over a period of time. This graph allows users to easily track any patterns or fluctuations in the website's uptime, providing a clear overview of its overall performance. By analyzing the graph, users can quickly identify periods of downtime or interruptions and take appropriate actions to rectify any issues. Beneath the graph, the website page displays a list of IP addresses that have responded to requests from the domain. Each IP address entry is accompanied by its corresponding status code, indicating the server's response status (e.g., 200 for a successful response, 404 for page not found, etc.). This list provides users with a comprehensive overview of the different servers for that website, offering insights into potential network or routing issues. ![website page](pictures/website.png) ## API UML Diagram 📚 ![FastAPI UML diahram](pictures/openapi.png) ## Contributors 👥 - [Matej Kaška](https://github.com/matej-kaska) - [Jan Chlouba](https://github.com/Boubik) - [Jakub Havel](https://github.com/M3chro)
WatchDog is a website monitoring application that checks server availability and provides users with detailed information. It helps users track website availability and detect potential outages.
fastapi,orm,python,sql,bootstrap,chartjs,javascript,docker
2023-06-21T16:53:31Z
2023-07-07T13:42:13Z
null
3
12
27
0
0
3
null
null
Python
adityaa-more/html-css-js-portfolio
main
# html-css-js-portfolio - Portfolio Template - Minimalistic Design - Responsive Design Design preview: <img src="https://github.com/adityaa-more/html-css-js-portfolio/assets/99107694/1e29a105-89d0-4917-a2b8-83fb03104e01" width="400px">
Minimal Responsive Portfolio Website
css,css3,flexbox,html,html-css-javascript,javascript,minimalist-design,portfolio,portfolio-template,portfolio-website
2023-06-15T15:59:34Z
2023-07-12T05:31:05Z
null
1
0
23
0
0
3
null
null
HTML
Uthmanbello/portfolio
dev
<a name="readme-top"></a> <div align="center"> </div> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [📝 License](#license) # 📖 [Portfolio] <a name="about-project"></a> Welcome to my **portfolio**! This project showcases my skills, projects, and journey as a developer. Explore my work, learn more about me, and get in touch to collaborate on exciting opportunities. Together, let's create something amazing! Built with HTML, CSS, and passion. ## 🛠 Built With <a name="built-with"></a> -HTML5 -CSS3 -JavaScript ## 🚀 Live Demo <a name="live-demo"></a> - [Live Demo Link](https://uthmanbello.github.io/portfolio/) <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 💻 Getting Started <a name="getting-started"></a> To get a local copy up and running, follow these steps: ### Prerequisites In order to run this project you need: -You need to have a code editor installed -Your linters environment must be fully setup ### Setup Clone this repository to your desired folder: To clone this repository to your desired folder, use your code editor terminal or git bash, then type the command below: `git clone https://github.com/Uthmanbello/portfolio`<br> `cd portfolio`<br> `code .` (If you are using VS Code) ### Install 1. Install WebHint: `npm install --save-dev hint@7.x` 2. Install StyleLint `npm install --save-dev stylelint@13.x stylelint-scss@3.x stylelint-config-standard@21.x stylelint-csstree-validator@1.x` ### Usage To run the project, execute the following command: - open cloned folder in your code editor ### Run tests To run tests, run the following command: To run tests and check for errors: - After installing the required linter, `npx stylelint "**/*.{css,scss}"` - To fix CSS or SCSS linters error: `npx stylelint "**/*.{css,scss}" --fix` <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 👥 Authors <a name="authors"></a> 👤 **Uthman Igein Bello-Imoukhuede** - GitHub: [@Uthmanbello](https://github.com/Uthmanbello) - Twitter: [@UthmanDeRoyale](https://twitter.com/UthmanDeRoyale) - LinkedIn: [Uthman Igein Bello-Imoukhuede](https://www.linkedin.com/in/uthmanbelloimoukhuede/) <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🤝 Contributing <a name="contributing"></a> Contributions, issues, and feature requests are welcome! Feel free to check the [issues page](https://github.com/Uthmanbello/portfolio/issues/). <p align="right">(<a href="#readme-top">back to top</a>)</p> ## ⭐️ Show your support <a name="support"></a> Give a star ⭐️ if you like this project and kindly follow me using my social media handles <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to thank my learning partners, morning and standup team members, mentors and other friends who helped throughout the process. <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 📝 License <a name="license"></a> This project is [MIT](https://github.com/Uthmanbello/portfolio/blob/dev/LICENSE) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
Welcome to my portfolio! This project showcases my skills, projects, and journey as a developer. Explore my work, learn more about me, and get in touch to collaborate on exciting opportunities. Together, let's create something amazing! Built with HTML, CSS, and passion.
css3,html5,javascript
2023-06-25T11:28:41Z
2023-12-25T18:59:26Z
null
1
194
156
3
0
3
null
MIT
CSS
3rd/benchmate
master
# benchmate Benchmate is a small but mighty benchmarking library for JavaScript. - Comes with sensible defaults and tries to figure out the best parameters on its own. - Supports duration and iteration count targeting. - Works with both `process.hrtime` and `performance.now`. - Has hooks for `setup` and `teardown` (before and after the entire test, not each execution). - Has `async` support, but you really shouldn't benchmark async functions. - Returns the metrics and prints the output nicely (optional). ## Demo [![benchmate on asciicast](https://asciinema.org/a/TCvVvn8qELEeQpflETsnoj64C.svg)](https://asciinema.org/a/TCvVvn8qELEeQpflETsnoj64C) ## Installation Benchmate is published on the NPM registry: [https://npmjs.com/package/benchmate](https://npmjs.com/package/benchmate) ```sh npm install -D benchmate pnpm install -D benchmate yarn add -D benchmate ``` ## Usage **Notes:** - **Don't disable batching** if you want accurate measurements. Metrics like `min`, `max`, and percentiles will me meaningless, as you get a single measurement. - **Don't expect accurate timings for fast async functions**, but you can compare their performance. ```ts import { Bench } from "benchmate"; // The default options are sensible, const bench = new Bench({ iterations: "auto", // number of iterations, must be "auto" when using time ╷ time: 1000, // target running time for tasks ⮜─╯ batching: { // batching improves accuracy by a <lot> enabled: true, size: "auto" // number of iterations per batch or "auto" }, warmup: { enabled: true, size: "auto", // number of warmup iterations or "auto" for (iterations / 10) }, method: "auto", // "auto" | "hrtime" | "performance.now" - measurement method, defaults to best available testSleepDuration: 0, // how long to sleep between tasks (ms) quiet: false, // don't print anything, defaults to `true` in browsers, `false` in Node setup: () => Promise<void> | void, // function to run before each test teardown: () => Promise<void> | void, // function to run after each test }); bench.add("RegExp#test", () => { if (!/o/.test("Hello World!")) console.log("nop"); }); bench.add("String#indexOf", () => { if ("Hello World!".indexOf("o") === -1) console.log("nop"); }); await bench.run(); // ^ returns an array of benchmark results: // type BenchmarkResult = { // name: string; // stats: { // samples: number; // batches: number; // time: { // all timings are in milliseconds // total: number; // min: number; // max: number; // average: number; // percentile50: number; // percentile90: number; // percentile95: number; // }; // opsPerSecond: { // average: number; // max: number; // min: number; // margin: number; // percentage // }; ``` ## Acknowledgements - [Mathias Bynens](https://mathiasbynens.be) and [Benchmark.js](https://github.com/bestiejs/benchmark.js) - [mitata](https://github.com/evanwashere/mitata) - [tinybench](https://github.com/tinylibs/tinybench)
Small but mighty benchmarking library for JavaScript
benchmark,javascript,performance,typescript
2023-06-19T14:35:20Z
2023-07-15T23:35:14Z
2023-07-15T23:35:14Z
2
0
42
0
0
3
null
MIT
TypeScript
merndev1101/typescript-tutorial_image-upload
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 the browser. The page will reload if you make edits.\ You will 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/).
This is a web application which upload the images.
css,html,image-manipulation,javascript,tutorial,typescript,reactjs
2023-06-11T04:25:52Z
2023-06-11T04:28:10Z
null
1
0
1
0
0
3
null
null
TypeScript
khuranamanan/twitify
main
<div align="center"> <img src="https://res.cloudinary.com/dsuxc3pwu/image/upload/f_auto,q_auto/lglnuneuzfq050hdqrmb" width="200px" /> <h1>Twitify</h1> <p>Twitify is a social media platform where you can connect, express, and engage with others.</p> </div> ## How to run the app locally? ``` $ git clone https://github.com/khuranamanan/twitify.git $ cd twitify $ npm install $ npm start ``` ## Screens in this project - Authentication (Login, Signup) Pages - Profile Page - Home Page - Explore Page - Bookmarks Page ## Features - Authentication using JWT along with Login and Signup Pages. All the below features are accessed after login. - User can create, edit and delete the post. - Image and Emojis can be added to the Post. - User can like or unlike any post. - User can add or remove post from bookmarks. - Home Page where user can see their posts and the posts of friends followed by user. - Trending, Latest & Oldest Feature where user can sort the posts based on maximum likes and by date. - Explore Page where all the posts will be visible. - Bookmarks Page where all the posts bookmarked by user will be visible. - User can follow or unfollow other users. - Profile Page where user can edit their profile. It contains details like Avatar, Name, Bio and Portfolio URL. User can edit the profile Image and Cover Image also. - User can view the profile of other users as well. - Search Functionality with search suggestions. - Loader is shown while the posts are fetched. - The User has options Light mode, Dark Mode and System's Preference For app's theme. System Preference being the default. - Alerts in the app to notify the users about success/failure operations. - All the screens are Responsive. ## Built With - React + Redux Toolkit - React Router v6 - TailwindCSS - Git For Version Control - Netlify for Deployment - Cloudinary for Image Storage ## Live Link [Twitify](https://twitify-khuranamanan.netlify.app/) ## Screenshots ![Log In Page](https://res.cloudinary.com/dsuxc3pwu/image/upload/f_auto,q_auto/v1/Twitify-Screenshots/javhbzcrzdsmotdhgttc) ![Sign Up Page](https://res.cloudinary.com/dsuxc3pwu/image/upload/f_auto,q_auto/v1/Twitify-Screenshots/ncrr1bzahamm9hv8uhdz) ![Home Page Dark](https://res.cloudinary.com/dsuxc3pwu/image/upload/f_auto,q_auto/v1/Twitify-Screenshots/l8mnnpybilppueu6ewr9) ![Home Page Light](https://res.cloudinary.com/dsuxc3pwu/image/upload/f_auto,q_auto/v1/Twitify-Screenshots/whpgynpcrsggi7ywszrk) ![Create Post](https://res.cloudinary.com/dsuxc3pwu/image/upload/f_auto,q_auto/v1/Twitify-Screenshots/qx5zietmqxugbim08gvs) ![Post Options](https://res.cloudinary.com/dsuxc3pwu/image/upload/f_auto,q_auto/v1/Twitify-Screenshots/ruzkhe9sgozwceg9vjwp) ![Explore Page](https://res.cloudinary.com/dsuxc3pwu/image/upload/f_auto,q_auto/v1/Twitify-Screenshots/xbod3fvylw5s511bpjcq) ![Profile Page](https://res.cloudinary.com/dsuxc3pwu/image/upload/f_auto,q_auto/v1/Twitify-Screenshots/ihkashgr8hybgrgprxlv) ![Profile Edit Options](https://res.cloudinary.com/dsuxc3pwu/image/upload/f_auto,q_auto/v1/Twitify-Screenshots/usbzni2lm16penvhez1o) ![Mobile Home](https://res.cloudinary.com/dsuxc3pwu/image/upload/f_auto,q_auto/v1/Twitify-Screenshots/wrnf9vndnumgndejw1mm) ![Mobile Explore](https://res.cloudinary.com/dsuxc3pwu/image/upload/f_auto,q_auto/v1/Twitify-Screenshots/ivnh4smu8rbgkhg1gd30) ![Tablet Explore](https://res.cloudinary.com/dsuxc3pwu/image/upload/f_auto,q_auto/v1/Twitify-Screenshots/o3awaqke0vfdg1zxaz28)
Twitify - A social media platform where you can connect, express, and engage with others.
javascript,react,react-hooks,react-router,reactjs,redux,redux-toolkit,tailwindcss,social-media,twitter
2023-06-09T10:35:32Z
2023-07-09T12:37:59Z
null
1
7
95
0
1
3
null
null
JavaScript
shadowplay1/discord-giveaways-super
main
# Discord Giveaways Super [![Downloads](https://img.shields.io/npm/dt/discord-giveaways-super?style=for-the-badge)](https://www.npmjs.com/package/discord-giveaways-super) [![Stable Version](https://img.shields.io/npm/v/discord-giveaways-super?style=for-the-badge)](https://www.npmjs.com/package/discord-giveaways-super) [![Build Status](https://github.com/shadowplay1/discord-economy-super/workflows/build/badge.svg)](https://www.npmjs.com/package/discord-giveaways-super) **Discord Giveaways Super** - Create and manage giveaways in [Discord](https://old.discordjs.dev/#/). ## ❓ | Why **Discord Giveaways Super**? - Clean TypeScript Defenitions 📘 - Multiple Databases Support 🍃 - Object-Oriented 📝 - Flexible and Customizable ⚙️ - Giveaway __start__, __edit__, __delete__, __reroll__, __extension__ and *many more* 🚀 - Handles Crashes/Restarts 🔄 - Database Caching System 📚 - Easy to Understand 👍 - Beginner Friendly 😄 - Extremely Fast 💨 ## 📂 | Installation **Node.js v16.9.0 or newer is required to install.** ```console $ npm i discord-giveaways-super $ yarn add discord-giveaways-super $ pnpm add discord-giveaways-super ``` ## [[Module Documentation]](https://dgs-docs.js.org) ## 🛠️ | Examples **Full bot examples** in both **JavaScript** and **TypeScript** are available [here](https://github.com/shadowplay1/discord-giveaways-super/tree/main/examples). ## 🤔 | Help **If you don't understand something in the documentation or you are experiencing problems, feel free to join our [Support Server](https://discord.gg/4pWKq8vUnb)**. ## 🕘 | My Other Modules - [discord-economy-super](https://www.npmjs.com/package/discord-economy-super) - [discord-achievements](https://www.npmjs.com/package/discord-achievements) - [quick-mongo-super](https://www.npmjs.com/package/quick-mongo-super) - [discord-leveling-super](https://www.npmjs.com/package/discord-leveling-super) ## ❗ | Useful Links - [Documentation](https://dgs-docs.js.org) - [NPM](https://www.npmjs.com/package/discord-giveaways-super) - [Frequently Asked Questions](https://dgs-docs.js.org/#/docs/main/1.0.5/general/faq) - [GitHub](https://github.com/shadowplay1/discord-giveaways-super) - [Examples](https://github.com/shadowplay1/discord-giveaways-super/tree/main/examples) - [Discord Server](https://discord.gg/4pWKq8vUnb) **If you don't understand something in the documentation or you are experiencing problems, feel free to join our [Support Server](https://discord.gg/4pWKq8vUnb)**. **Module Created by ShadowPlay (*@shadowplay_* in discord).** # ❤️ Thanks for choosing Discord Giveaways Super ❤️
Create and manage giveaways in Discord.
bot,bots,discord,djs-v14,easy-to-use,enmap,giveaways,javascript,js,json
2023-06-19T23:42:52Z
2024-01-08T00:49:04Z
2023-08-07T15:06:40Z
3
5
186
0
0
3
null
MIT
TypeScript
SxMAbel/media_hosting_api
main
# Media Hosting API [![License](https://img.shields.io/badge/license-Apache-blue.svg)](https://github.com/SxMAbel/media_hosting_api/blob/main/LICENSE) [![Contributions Welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg)](https://github.com/SxMAbel/media_hosting_api/pulls) ![GitHub Stars](https://img.shields.io/github/stars/SxMAbel/media_hosting_api.svg) [![Issues](https://img.shields.io/github/issues/SxMAbel/media_hosting_api.svg)](https://github.com/SxMAbel/media_hosting_api/issues) [![Pull Requests](https://img.shields.io/github/issues-pr/SxMAbel/media_hosting_api.svg)](https://github.com/SxMAbel/media_hosting_api/pulls) **Media Hosting API** is an open-source solution for streaming and managing media files. It provides a simple and efficient way to upload, access, and delete various types of media files. With Media Hosting API, you can streamline your media hosting needs and easily integrate media file management into your applications. ## Endpoints The following endpoints are available in the Media Hosting API: - _GET_ **`/api/v1/check/:id`** - _Check if a media file exists by ID. Returns 'isFound', 'id', 'url'._ - _DELETE_ **`/api/v1/delete/:id`** - _Remove a file by ID. Returns 'deleted', 'message'._ - _GET_ **`/api/v1/play/:id`** - _Stream only videos or mp3 files. Turns link into stream source._ - _POST_ **`/api/v1/upload`** - _Upload either images, video files, audio files. Returns 'id', 'url'._ - _GET_ **`/api/v1/view/:id`** - _Get source link of the media that includes the ID. Returns 'url'._ ## Accessing Errors If you encounter any errors while using the API, you can access the specific error message by checking `response.data.error` in the API response. ## Contributing We appreciate contributions to enhance the Media Hosting API. If you find any bugs or have suggestions for improvements, please feel free to contribute by following these steps: 1. Fork the repository. 2. Create a new branch for your changes. 3. Make the necessary modifications and fixes. 4. Test your changes thoroughly. 5. Submit a pull request, describing the changes you have made. Your contributions will help make the Media Hosting API even better! ## Bug Fixes If you have identified any bugs in the API and have fixed them, we encourage you to contribute by creating a pull request. We appreciate your effort in improving the stability and reliability of the API. ## Support If you need any assistance or have questions related to the Media Hosting API, please open create an issue with your question. ## Contributors Special thanks to the all the contributors who have helped make the Media Hosting API even better! <!-- CONTRIBUTORS_START --> <!-- CONTRIBUTORS_END -->
Media Hosting API: A open-source solution for streaming and managing media files. Upload any file type, access content via links, and easily delete files using media IDs. Simplify your media hosting needs with Media Hosting API.
api,backend-api,hoster,javascript,media-server,nodejs
2023-06-28T03:25:05Z
2024-05-23T04:02:04Z
null
2
4
16
0
1
3
null
Apache-2.0
TypeScript
Piercel2022/Blog-starter
main
REQUIRED SECTIONS: - Table of Contents - About the Project - Built With - Live Demo - Getting Started - Authors - Future Features - Contributing - Show your support - Acknowledgements - License # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [🚀 Live Demo](#live-demo) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Prerequisites](#prerequisites) - [Install](#install) - [Usage](#usage) - [Run tests](#run-tests) - [Deployment](#triangular_flag_on_post-deployment) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [❓ FAQ](#faq) - [📝 License](#license) **[Blog-starter]** is a A statically generated blog example using Next.js, Markdown, and TypeScript. The blog posts in the example will be stored as local markdown files in the application's directory (not fetched from an external data source), so there will be the need to read the data from the file system.It is built using the TypeScript programming language and leverages the power and flexibility of Markdown for content creation. ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <details> <summary>Language</summary> <ul> <li><a href="https://www.typescriptlang.org/">Typescript</a></li> </ul> </details> <details> <summary>Server</summary> <ul> <li><a href="https://nextjs.org//">Next.js</a></li> <details> <summary> Markdown is a text-to-HTML conversion tool for web writers. Markdown allows you to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid XHTML (or HTML). </summary> <ul> <li><a href=" https://daringfireball.net/projects/markdown/">Markdown</a></li> </ul> </details> <details> <summary>MD</summary> <ul> <li><a href="https://daringfireball.net/projects/markdown/">MarkDown</a></li> </ul> </details> ### Key Features <a name="key-features"></a> - **[key_feature_1]** - **[key_feature_2]** - **[key_feature_3]** ![Screenshot1](https://github.com/Piercel2022/Blog-starter/assets/98626003/a5a70ca4-603c-4bd4-996f-175e8ce1eb95) ![Screenshot2](https://github.com/Piercel2022/Blog-starter/assets/98626003/91d5ef2b-0d23-4b9b-a43b-14d66a4e07f5) ![Screenshot3](https://github.com/Piercel2022/Blog-starter/assets/98626003/4dc89028-e97f-4b07-abed-df1f711c7313) <summary> TypeScript is a strongly typed programming language that builds on JavaScript, giving you better tooling at any scale. </summary> <ul> <li><a href="https://www.typescriptlang.org/">typescript</a></li> </ul> </details> ### Key Features <a name="key-features"></a> - **[Post creation]** - **[Blog post management]** - **[Deployment and Hosting]** <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🚀 Live Demo <a name="live-demo"></a> - [blog starter](https://react-rails.netlify.app/) <p align="right">(<a href="#readme-top">back to top</a>)</p> - [Live Demo](https://react-rails.netlify.app/) ## 💻 Getting Started <a name="getting-started"></a> To get a local copy up and running, follow these steps. ### Prerequisites In order to run this project you need: ```sh yarn ``` Ruby, rails and postgresql installed ### Setup Clone this repository to your desired folder: ```sh git clone https://github.com/Piercel2022/Blog-starter ``` ```sh git clone git@github.com:Piercel2022/Blog-starter.git cd Blog-starter ``` ### Usage To run the project, execute the following command: ```sh yarn run dev ``` ## 👥 Authors <a name="authors"></a> ```sh yarn run build ``` <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 👥 Author <a name="author"></a> 👤 **Pierre Celestin Moussa** - GitHub: https://github.com/Piercel2022 - Twitter: https://twitter.com/pier_celestin - LinkedIn: https://linkedin.com/in/piercelestinmax <!-- FUTURE FEATURES --> ## 🔭 Future Features <a name="future-features"></a> - [ ] **[new_feature_1]** - [ ] **[new_feature_2]** - [ ] **[new_feature_3]** <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- CONTRIBUTING --> - GitHub:[@Piercel2022](https://github.com/Piercel2022) - Twitter:[@pier_celestin](https://twitter.com/pier_celestin) - LinkedIn: [@pierrecelestinmax](https://linkedin.com/in/pierrecelestinmax) <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🔭 Future Features <a name="future-features"></a> - [ ] **[User Authentication ]** <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🤝 Contributing <a name="contributing"></a> Contributions, issues, and feature requests are welcome! Feel free to check the [issues page](../../issues/). <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- SUPPORT --> <p align="right">(<a href="#readme-top">back to top</a>)</p> ## ⭐️ Show your support <a name="support"></a> If you like this project... <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- ACKNOWLEDGEMENTS --> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to thank Microverse for the knowledge I have gain during my studies <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to thank... ## 📝 License <a name="license"></a> This project is [MIT](./LICENSE) licensed.
Blog starter is a A statically generated blog example using Next.js, Markdown, and TypeScript. The blog posts in the example will be stored as local markdown files in the application's directory (not fetched from an external data source), so there will be the need to read the data from the file system.
javascript,tailwind,typescript
2023-06-23T06:14:20Z
2023-07-20T17:07:52Z
null
1
5
28
0
1
3
null
MIT
TypeScript
akashsoni01/svelte4_poc
main
# svlte4_poc The Repo is poc for the svelte official documentation. Doc - [https://svelte.dev/docs/introduction] Navigate to branche introduction, advance, basic sveltekit and advance sveltekit branch. # How to install npm install npm build npm run dev #svelte4 #svelte
SVELTE poc
frontend,javascript,svelte
2023-06-24T19:56:00Z
2023-12-01T19:51:56Z
null
1
0
4
0
0
3
null
MIT
CSS
ViktorSvertoka/goit-react-native-hw
main
![react-native](./assets/react-native-logo.png) # goit-react-native-hw ## ДЗ №1 ### Завдання​ 1. Встановити expo 2. Встановити Android Studio 3. Встановити Xcode (якщо працюєте на Mac) 4. Ініціалізувати проект за допомогою expo (Вибираємо шаблон проекту blank) 5. Запустити проект 6. Налаштувати Android Studio 7. Налаштувати Xcode (якщо працюєте на Mac) 8. Встановити expo client собі на телефон 9. Запустити створений проект на телефоні, емуляторі Android, симуляторі iOS (якщо працюєте на Mac) ## ДЗ №2 ### Завдання​ 1. Створити папку Screens 2. Створити компонент RegistrationScreen 3. Створити компонент LoginScreen 4. Створити екран PostsScreen 5. Додати розмітку форми в компонент RegistrationScreen 6. Додати розмітку форми в компонент LoginScreen 7. Додати стилі до компонента RegistrationScreen 8. Додати стилі до компонента LoginScreen ## ДЗ №3 ### Завдання​ 1. Додати логіку роботи з формою в компонент RegistrationScreen 2. Додати логіку роботи з формою в компонент LoginScreen 3. Під час сабміту форм збирати дані з них і виводити в консоль 4. Додати автозакриття клавіатури по кліку за межами форм (Використовуємо Keyboard.dismiss) ## ДЗ №4 ### Завдання​ 1. Створити екран CreatePostsScreen 2. Створити екран CommentsScreen 3. Створити екран ProfileScreen 4. Створити екран MapScreen 5. Створити екран Home 6. Підключити в проект навігацію. 7. Додати в проект переходи між екранами LoginScreen, RegistrationScreen за допомогою компонента createStackNavigator 8. З RegistrationScreen можна перейти на LoginScreen, натиснувши на текст Увійти 9. З LoginScreen можна перейти на RegistrationScreen, натиснувши на текст Зареєструватися 10. Після сабміту в LoginScreen, RegistrationScreen перекидає на Home, де відразу показується екран PostsScreen 11. Підключити нижню навігацію, використовуючи createBottomTabNavigator 12. У нижній навігації створити 3 переходи. 13. Клік по іконці №1 веде на екран PostsScreen 14. Клік по іконці №2 веде на екран CreatePostsScreen 15. Клік по іконці №3 веде на екран ProfileScreen 16. В хедері на екрані PostsScreen додати іконку для logout 17. Стилізувати нижню навігацію ## ДЗ №5 ### Завдання​ 1. Підключити камеру в компонент CreatePostsScreen 2. Під час відкриття екрану CreatePostsScreen активується камера і зображення з неї виводиться в блок з іконкою камери 3. По кліку на іконку камери робиться знімок 4. В інпут з плейсхолдером Назва можна додати назву фото 5. В інпут з плейсхолдером Місцевість можна додати назву, де було зроблено знімок 6. Додати визначення геолокації в момент створення посту при кліку на кнопку Опублікувати 7. Після створення посту повинно перенаправляти на екран PostsScreen 8. В компоненті окремого посту при кліку на іконку коментарів перекидає на екран CommentsScreen 9. У компоненті окремого посту під час кліку на іконку геолокації перекидає на екран MapScreen, де можна побачити мапу з маркером, де була зроблена фотографія ## ДЗ №6 ### Завдання​ 1. Підключити Redux до проекту 2. Підключити Firebase до проекту 3. Додати логіку реєстрації на екрані RegistrationScreen через методи Firebase 4. Додати логіку логіна на екрані LoginScreen через методи Firebase 5. Оновити профіль користувача на Firebase та додати туди логін у поле displayName після реєстрації 6. Зберігати дані про користувача в Redux після реєстрації або логінізації 7. Додати перевірку, чи залогінений користувач у застосунку чи ні. Якщо залогінений, то відразу перенаправляти на екран PostsScreen, інакше - на екран LoginScreen 8. Додати логіку Logout на екрані PostsScreen під час натискання на іконку в хедері, використовуючи методи Firebase 9. Додати логіку завантаження постів у базу даних, використовуючи Firebase та Redux 10. Додати логіку додавання коментаря під постом, використовуючи Firebase та Redux ## ДЗ №7 ### Завдання​ 1. Викласти проект на сервери expo ![react-native](./assets/1.jpg) ![react-native](./assets/2.jpg) `npx expo start` https://expo.dev/accounts/viktor_svertoka/projects/goit-react-native-hw/builds/75ab30c2-ba94-44f2-acfa-58c443b1656e
Home task for React Native course💠
react-native,babel,fonts,gitignore,images,javascript,jsconfig,prettier,goit,goit-react-native-hw
2023-06-20T17:58:28Z
2023-10-12T20:22:54Z
null
1
43
96
0
0
3
null
null
JavaScript
ShashankRaghuvanshi/CN-Full-Stack-Web-Development-
main
# Coding-Ninjas-Full-Stack-Web-Development- HTML5, CSS3, JavaScript, NodeJS, React
HTML5, CSS3, JavaScript, NodeJS, React
bootstrap5,css3,html5,javascript,nodejs,reactjs,mern
2023-06-14T11:48:57Z
2023-06-19T12:59:24Z
null
1
0
33
1
1
3
null
null
HTML
Shaurya9524/discord-rpc
main
# Discord RPC This project provides a simple and straightforward way to integrate Discord Rich Presence into your applications. You can display customised status messages and details to showcase the activity of your application to users on Discord. <img src="public/images/rpcInAction.png" alt="Discord RPC" style="border-radius: 8px"> ## Authors - **Shaurya Chauhan** - [Shaurya9524](https://github.com/Shaurya9524) ## Getting Started ### Installation 1. Clone the project repository: ```bash git clone https://github.com/Shaurya9524/discord-rpc.git ``` 2. Install the project dependencies: ```bash npm install ``` 3. Setup the environment variables: Create a .env file in the root directory of your project and add the following line, replacing <discord_client_id> with your actual Discord client ID: ```bash clientId=<discord_client_id> ``` 4. Start the application: ```bash npm start ``` ## Usage ### Configuration The configuration files are located at the [./src/config](src/config) directory. Customise the configuration files to suit your needs. The configuration files are as follows: | File | Description | | ------------------------------- | ------------------------------------------------------- | | [data.js](src/config/data.js) | Contains the details to be displayed in the Discord RPC | | [links.js](src/config/links.js) | Contains the links to be displayed in the Discord RPC | ## License This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
This project provides a simple and straightforward way to integrate Discord Rich Presence into your applications.
discord,discord-rpc,javascript
2023-06-25T16:12:25Z
2024-01-06T20:01:17Z
null
1
0
4
0
0
3
null
MIT
JavaScript
vxern/dexonline-scraper
main
## A tiny, battle-tested, performant and documented scraper for dexonline.ro. ### Usage To start using the scraper, first install it using the following command: ```ts npm install dexonline-scraper ``` The simplest way of using the scraper is as follows: ```ts import * as Dexonline from "dexonline-scraper"; const results = await Dexonline.get("word"); ``` Alternatively, you can parse HTML of the website directly, bypassing the fetch step as follows. Notice that, as opposed to `get()`, `parse()` is synchronous: ```ts import * as Dexonline from "dexonline-scraper"; const results = Dexonline.parse(html); ``` You can configure the mode according to which the parser will match results to the search term, ensuring that only terms identical to the search term are returned: ```ts import * as Dexonline from "dexonline-scraper"; const results = await Dexonline.get("word", { mode: "strict" }); ``` You can modify the results returned by Dexonline using flags: ```ts import * as Dexonline from 'dexonline-scraper'; import { DictionaryFlags } from 'dexonline-scraper'; const results = await Dexonline.get('word', { flags: | DictionaryFlags.UseCedillas // Use 'ş' and 'ţ' instead of 'ș' and 'ț'. | DictionaryFlags.MatchDiacritics // Do not return words where the only difference is a diacritic. | DictionaryFlags.UsePreReformOrthography // Use 'î' instead of 'â' in all cases except for the word 'român' and its derivatives. | DictionaryFlags.SearchOnlyNormativeDictionaries // Return results obtained only from the DEX and/or the DOOM. }); ```
A tiny, battle-tested, performant and documented scraper for dexonline.ro.
dexonline,dictionary,javascript,node,parser,romanian,scraper,typescript,language,battle-tested
2023-06-21T19:57:49Z
2024-03-02T18:25:53Z
2024-03-02T17:54:11Z
1
1
47
0
0
3
null
MIT
TypeScript
1hiteshk/FoodOrder-like-Swiggy
main
# FoodOrder-React I made 🚀 FoodFire App 😍 from scratch using React.js and Parcel
Using Reactjs, Restaurants info. food order website & fetching live api data from swiggy
babel,babel-plugin,cors-proxy,javascript,parceljs,reactjs,redux-toolkit
2023-06-29T11:04:30Z
2024-04-27T11:22:16Z
null
1
0
34
0
1
3
null
null
JavaScript
Sonikak004/Leaderboard-API
dev
<a name="readme-top"></a> <div align="center"> <h2><b>LEADERBOARD</b></h2> </div> # 📗 Table of Contents - [📖 About the Project](#about-project) - [🛠 Built With](#built-with) - [Tech Stack](#tech-stack) - [Key Features](#key-features) - [💻 Getting Started](#getting-started) - [Setup](#setup) - [Usage](#usage) - [👥 Authors](#authors) - [🔭 Future Features](#future-features) - [🤝 Contributing](#contributing) - [⭐️ Show your support](#support) - [🙏 Acknowledgements](#acknowledgements) - [📝 License](#license) # 📖 Leaderboard <a name="about-project"></a> The **leaderboard** website displays scores submitted by different players, it also allows you to submit your score. ## 🛠 Built With <a name="built-with"></a> ### Tech Stack <a name="tech-stack"></a> <details> <summary>Client</summary> <ul> <li><a href="#">HTML</a></li> <li><a href="#">CSS</a></li> <li><a href="#">JAVASCRIPT</a></li> <li><a href="#">Webpack</a></li> </ul> </details> ### Key Features <a name="key-features"></a> - **Real-time Updates** - **User Ranking** - **Score Tracking** <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 <br/> git clone https://github.com/Sonikak004/Leaderboard-API.git ### Usage To run the project, execute the following command: cd path/to/project <br/> **npm init -y** <br/> **npm start** ## 👥 Author <a name="authors"></a> 👤 **Author** - GitHub: [@sonikak004](https://github.com/sonikak004) - Twitter: [@sonikak004](https://twitter.com/sonikak004) - LinkedIn: [sonikak004](https://linkedin.com/in/sonikak004) <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🔭 Future Features <a name="future-features"></a> - [ ] **Acheivements and Badges** - [ ] **Challenges** - [ ] **Social Interaction** <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🤝 Contributing <a name="contributing"></a> Contributions, issues, and feature requests are welcome! Feel free to check the [issues page](https://github.com/Sonikak004/Leaderboard-API/issues). <p align="right">(<a href="#readme-top">back to top</a>)</p> ## ⭐️ Show your support <a name="support"></a> If you like this project please give me a star! <p align="right">(<a href="#readme-top">back to top</a>)</p> ## 🙏 Acknowledgments <a name="acknowledgements"></a> I would like to thank Microverse for giving me this oppurtunity. <p align="right">(<a href="#readme-top">back to top</a>)</p> <!-- LICENSE --> ## 📝 License <a name="license"></a> This project is [MIT](./mit.md) licensed. <p align="right">(<a href="#readme-top">back to top</a>)</p>
The leaderboard website displays scores submitted by different players, it also allows you to submit your score. All data is preserved to the external Leaderboard API service. The Leaderboard list app is built using webpack, ES6 features and modules.
api,css,html5,javascript,webpack
2023-06-28T02:51:07Z
2023-06-29T12:13:49Z
null
1
3
29
0
0
3
null
null
JavaScript
erikfinkel/gatshop
main
<p align="center"> <a href="https://www.shopify.com"> </a> <img alt="Shopify" src="https://cdn.shopify.com/shopifycloud/web/assets/v1/2217fb04df073033ccce8d125b0ea020.svg" width="60" /> </p> <p align="center"> <a href="https://gatsbyshopify.netlify.app/"> Visit: https://gatsbyshopify.netlify.app </a> </p> ## 🚀 Quick start **Start server.** Navigate into your new site’s directory and start it up. ```shell cd ./ gatsby develop ``` **Open the source code and start editing!** Your site is now running at `http://localhost:8000`! _Note: You'll also see a second link: _`http://localhost:8000/___graphql`_. This is a tool you can use to experiment with querying your data. <p align="center"> <a href="https://www.gatsbyjs.com"> </a> <img alt="Shopify" src="./static/score.png" /> </p> ***I am using free domain. Use custom/premium domain to increase performance score!***
Shopify gatsbyjs shop
gatsby,graphql,javascript,prettier,react
2023-06-10T18:11:57Z
2023-06-10T18:16:41Z
null
1
0
2
0
0
3
null
null
JavaScript
juninhokaponne/friendRecomendation
main
# Friend Recommender This project aims to use a simple recommendation algorithm, initially it was made for a challenge and today it counts as a free repository for everyone to contribute. ## How to Run Follow the steps below to run the project locally in your development environment. ### Prerequisites - Ensure you have Node.js installed on your system. You can download it from [https://nodejs.org](https://nodejs.org). ## Running Locally Clone the project ```bash git clone https://github.com/juninhokaponne/friendRecomendation.git ``` Navigate to the project directory ```bash cd friendRecomendation ``` Install dependencies ```bash npm install ``` Start the server ```bash npm run dev ``` ## Running Tests To run the tests, execute the following command ```bash npm run test ``` ## Reference - [Functional Requirements (PDF)](https://communication-assets.gupy.io/production/companies/51551/emails/1686938256054/communication-assets-3bb42930-0c6f-11ee-a60e-f18a54602daa/enunciado.pdf) ## Used Stack **Back-end:** Node, Express, Nodemon, Jest, Supertest ## API Documentation #### Create a User ```http POST /person ``` | Parâmetro | Tipo | Descrição | | :-------- | :------- | :-------------- | | `cpf` | `number` | **Obrigatório** | | `name` | `string` | **Obrigatório** | #### Retrieve a User ```http GET /person/:CPF ``` | Parâmetro | Tipo | Descrição | | :-------- | :------- | :-------------- | | `cpf` | `number` | **Obrigatório** | #### Clean - Delete all records ```http DELETE /clean ``` #### Create a Relationship between two CPFs ```http POST /relationship ``` | Parâmetro | Tipo | Descrição | | :-------- | :------- | :-------------- | | `cpf1` | `number` | **Obrigatório** | | `cpf2` | `number` | **Obrigatório** | #### Get Friend Recommendations ```http GET /recommendations/:CPF ``` | Parâmetro | Tipo | Descrição | | :-------- | :------- | :-------------- | | `cpf` | `number` | **Obrigatório** | ## How to Contribute If you'd like to contribute to this repository over time, please follow these guidelines: 1. Fork the project 2. Clone the forked repository to your local machine. 3. Make your desired changes and improvements. 4. Create a new branch for your changes. 5. Commit your changes with clear and concise commit messages. 6. Push your changes to your forked repository. 7. Create a pull request to the original repository, explaining your changes and why they should be merged Thank you for considering contributing to this project! Your contributions are highly appreciated. ## Licenses [![MIT License](https://img.shields.io/badge/License-MIT-green.svg)](https://choosealicense.com/licenses/mit/)
This project aims to use a simple recommendation algorithm, initially it was made for a challenge and today it counts as a free repository for everyone to contribute.
algorithms,hacktoberfest,javascript,jest,node,nodejs,recomendation-algorithm,recommender-system,test,testing
2023-06-20T11:37:52Z
2023-10-05T17:42:49Z
null
3
3
46
0
4
3
null
null
JavaScript
kanakjaiswal16/Digi-Pay
main
# Digi Pay Digi Pay is a decentralized crypto wallet application built with React and Ethereum blockchain. It allows users to create an Ethereum wallet, manage account balance, send transactions, and view transaction history. ## Features - Create a new Ethereum wallet - Recover an existing wallet using the seed phrase - View account balance in Ether (ETH) - Send Ether to other addresses - View transaction history ## Demo Check out the live demo of Digi Pay [here](https://64980e8de8a7736f6ab166da--digi-pay.netlify.app/).
A decentralized crypto wallet to send and recieve ether.
ethersjs,javascript,reactjs
2023-06-24T07:34:09Z
2023-06-25T10:00:03Z
null
1
0
11
0
0
3
null
null
JavaScript
chijete/crafynsfwjs
main
null
NSFW.js implementation for image, gif and video. NSFW detection on the client-side via TensorFlow.js
javascript,machine-learning,nsfw-classifier,nsfw-detection,nsfw-filter,nsfw-recognition,tensorflowjs
2023-06-21T04:45:17Z
2024-01-25T08:34:46Z
null
1
0
5
0
0
3
null
MIT
JavaScript
muskanthapa2000/muskanthapa2000.github.io
main
null
A portfolio for a full stack developer showcases a diverse collection of projects, demonstrating proficiency in both frontend and backend development. It serves as a visual resume, highlighting skills, experience, and the ability to create web applications from end to end.
chakra-ui,css,javascript,react
2023-06-14T14:11:04Z
2024-01-29T17:35:04Z
null
1
0
24
0
0
3
null
null
HTML
AnamolZ/ReactFusion
main
## API Integration with ReactJS: Unleashing Data-Driven Web Applications **Introduction** In the realm of web development, API integration has become a cornerstone of creating dynamic and data-driven applications. ReactJS, a popular JavaScript library for building user interfaces, has emerged as a powerful tool for integrating with APIs and crafting rich web experiences. **What is API Integration with ReactJS?** API integration with ReactJS involves connecting a ReactJS application to an external API to retrieve and display data dynamically. This process enables developers to fetch data from various sources, such as databases, social media platforms, or e-commerce systems, and seamlessly incorporate it into their ReactJS applications. **Benefits of API Integration with ReactJS** API integration offers a plethora of benefits for ReactJS applications: 1. **Data-Driven Applications:** By integrating with APIs, ReactJS applications can transform into dynamic data-driven interfaces, retrieving and displaying real-time information from external sources. This allows for personalized content, interactive features, and up-to-date data presentation. 2. **Reduced Server-Side Load:** Offloading data processing and retrieval to APIs significantly reduces the burden on the server, improving overall application performance and scalability. ReactJS applications can focus on UI rendering and user interactions, while the API handles data management. 3. **Enhanced User Experience:** API integrations empower ReactJS applications to provide users with a more engaging and personalized experience. Real-time updates, tailored content, and interactive features contribute to a more satisfying user journey. **Steps in API Integration with ReactJS** The process of integrating with APIs in ReactJS typically involves the following steps: 1. **API Selection:** Choose an appropriate API that aligns with the application's data requirements and functionalities. Ensure the API adheres to security protocols and offers compatibility with ReactJS. 2. **Data Fetching:** Utilize libraries like Axios or the native Fetch API to make HTTP requests to the API and retrieve data in JSON format. These libraries streamline the process of making API calls and handling responses. 3. **Data Handling:** Parse and manipulate the retrieved JSON data to extract relevant information and prepare it for presentation in the ReactJS application. This may involve data transformation, filtering, and organization. 4. **Data Display:** Employ ReactJS components and state management techniques to dynamically render the retrieved data in a visually appealing and interactive manner. Utilize ReactJS's component-based architecture and state management libraries to create a seamless data-driven interface. **Key Considerations for API Integration with ReactJS** While integrating APIs into ReactJS applications, consider these crucial aspects: 1. **Data Security:** Implement proper authentication and authorization mechanisms to protect sensitive data and prevent unauthorized access. Utilize secure protocols like HTTPS and access tokens to safeguard user information and API endpoints. 2. **Error Handling:** Gracefully handle errors that may occur during API interactions, providing informative feedback to users. Employ error handling libraries to intercept and manage API errors effectively. 3. **Performance Optimization:** Optimize API calls and data rendering to ensure a smooth and responsive user experience. Implement caching mechanisms, lazy loading techniques, and efficient data transformation strategies to minimize performance bottlenecks. 4. **API Documentation:** Thoroughly review API documentation to understand data structures, endpoints, usage guidelines, and error codes. Familiarize yourself with the API's capabilities and limitations to ensure seamless integration. **Conclusion** API integration with ReactJS has become a fundamental practice in modern web development, empowering developers to create data-driven and dynamic applications. By leveraging the power of APIs, ReactJS applications can fetch and present real-time information, personalize user experiences, and enhance application functionality. As the demand for data-rich and interactive web applications continues to grow, API integration with ReactJS will undoubtedly play an increasingly pivotal role in shaping the future of web development.
API integration with ReactJS involves connecting a ReactJS application to an external API to retrieve and display data dynamically. This process enables developers to create interactive and data-driven web applications that fetch and present real-time information from external sources.
api,javascript,reactjs
2023-06-18T16:30:49Z
2024-04-03T02:56:26Z
null
1
0
6
0
0
3
null
null
CSS
safouat/Real-Estate-App
main
DEMO:https://www.youtube.com/watch?v=URVBppV7nkg <img width="946" alt="Capture d’écran 2023-06-02 181439" src="https://github.com/safouat/Real-Estate-Sales-Application-LARAVEL/assets/120058233/f61a0bac-323d-4a60-82e9-df2079d03b44"> <img width="949" alt="Capture d’écran 2023-06-02 181503" src="https://github.com/safouat/Real-Estate-Sales-Application-LARAVEL/assets/120058233/c9f262ee-8d4f-4d7c-b23d-a7feaaa1aa94"> <img width="960" alt="Capture d’écran 2023-06-02 181524" src="https://github.com/safouat/Real-Estate-Sales-Application-LARAVEL/assets/120058233/10fb8f77-1820-4d78-a49f-1baca6e7e22c"> <img width="960" alt="Capture d’écran 2023-06-02 181542" src="https://github.com/safouat/Real-Estate-Sales-Application-LARAVEL/assets/120058233/f74673b4-f399-42be-b37d-5b386639c69d"> <img width="960" alt="Capture d’écran 2023-06-04 135029" src="https://github.com/safouat/Real-Estate-Sales-Application-LARAVEL/assets/120058233/6e6b6e85-39dd-499c-a530-9954269e381b"> <img width="949" alt="Capture d’écran 2023-06-02 181632" src="https://github.com/safouat/Real-Estate-Sales-Application-LARAVEL/assets/120058233/b2dbee90-ff0e-49fa-9416-df8f55a19917"> <img width="956" alt="Capture d’écran 2023-06-02 181728" src="https://github.com/safouat/Real-Estate-Sales-Application-LARAVEL/assets/120058233/9cc74b31-41e0-40c3-aa12-6d15e8461daf"> <img width="948" alt="Capture d’écran 2023-06-02 181746" src="https://github.com/safouat/Real-Estate-Sales-Application-LARAVEL/assets/120058233/0a889d70-4dda-407a-ba15-7534d311b9a3"> <img width="947" alt="Capture d’écran 2023-06-02 181821" src="https://github.com/safouat/Real-Estate-Sales-Application-LARAVEL/assets/120058233/57199836-dcf1-4b1d-bd70-4f1b9b8bc50c"> <img width="947" alt="Capture d’écran 2023-06-02 181849" src="https://github.com/safouat/Real-Estate-Sales-Application-LARAVEL/assets/120058233/7812ba1c-5f41-4a09-a705-d4e1ed3ba190"> <img width="947" alt="Capture d’écran 2023-06-02 182020" src="https://github.com/safouat/Real-Estate-Sales-Application-LARAVEL/assets/120058233/5d770575-a73b-4e14-a096-5be1cc42225b"> <img width="946" alt="Capture d’écran 2023-06-02 182037" src="https://github.com/safouat/Real-Estate-Sales-Application-LARAVEL/assets/120058233/9c1b9d89-9585-49c2-ad92-5ff9f483f6cb"> <img width="952" alt="Capture d’écran 2023-06-02 181946" src="https://github.com/safouat/Real-Estate-Sales-Application-LARAVEL/assets/120058233/3fd59146-ecec-453f-b91a-0e70e66c3b74"> <img width="941" alt="Capture d’écran 2023-06-04 135843" src="https://github.com/safouat/Real-Estate-Sales-Application-LARAVEL/assets/120058233/4da6ce03-3789-48e4-bb07-ce11a2349aa5">
This Laravel app enables users to authenticate, manage their profile and posts, like and comment on posts, and schedule appointments. It also includes a notification system and confirmation emails. The admins can analyze performance using data and graphs.
ajax,blade,chartjs,javascript,jquery,laravel,laravel-framework,php,real-estate-management,real-estate-platform
2023-06-15T20:41:18Z
2024-04-13T14:16:55Z
null
1
0
42
0
0
3
null
null
PHP
Isaiah512/openai-dall-e-api
master
null
OpenAI voice and chatbot assistant with dall-e generated Image based on the conversation for a more human like interaction.
chatbot,dall-e,dalle,gpt,javascript,openai,openai-api,react,reactjs
2023-06-18T18:01:16Z
2023-06-18T18:42:41Z
null
2
0
4
0
1
3
null
null
JavaScript
a8hok/NextJS-Study-Guide
main
# NextJS Study Guide ## Table of Contents * [NextJS](#nextjs) * [NextJS 13](#nextjs-13) * [NextJS deployment](#nextjs-deployment) * [NextJS SEO](#nextjs-seo) * [NextJS youtube](#nextjs-youtube) * [NextJS projects](#nextjs-projects) * [NextJS auth](#next-auth) * [NextJS Migration](#nextjs-migration) * [NextJS Routing](#nextjs-routing) * [NextJS Server](#nextjs-server) * [NextJS Layout](#nextjs-layout) * [NextJS Deploy](#nextjs-deploy) * [NextJS GraphQL](#nextjs-graphql) * [NextJS Security](#nextjs-security) * [NextJS boilerplate](#nextjs-boilerplate) * [NextJS vs Remix](#nextjs-vs-remix) * [NextJS CSR and SSR](#nextjs-csr-and-ssr) * [NextJS boilerplate](#nextjs-boilerplate-1) ## NextJS - [https://www.freecodecamp.org/news/how-to-build-a-portfolio-site-with-nextjs-tailwindcss/](https://www.freecodecamp.org/news/how-to-build-a-portfolio-site-with-nextjs-tailwindcss/)<br> - [https://bestofreactjs.com/repo/beauwilliams-demo-next-typescript-hardhat-marketplace](https://bestofreactjs.com/repo/beauwilliams-demo-next-typescript-hardhat-marketplace)<br> - [https://github.com/avneesh0612/react-nextjs-snippets?ref=producthunt](https://github.com/avneesh0612/react-nextjs-snippets?ref=producthunt)<br> - [https://dev.to/dabit3/the-complete-guide-to-full-stack-web3-development-4g74](https://dev.to/dabit3/the-complete-guide-to-full-stack-web3-development-4g74)<br> - [https://www.thisdot.co/blog/next-js-and-react-js-5-differences-to-help-you-make-your-choice](https://www.thisdot.co/blog/next-js-and-react-js-5-differences-to-help-you-make-your-choice)<br> - [https://tsh.io/blog/ssr-vs-ssg-in-nextjs/](https://tsh.io/blog/ssr-vs-ssg-in-nextjs/)<br> - [https://dev.to/codebeast/from-figma-to-nextjs-app-in-minutes-4jp9](https://dev.to/codebeast/from-figma-to-nextjs-app-in-minutes-4jp9)<br> - [https://blog.astrosaurus.me/how-to-nextjs](https://blog.astrosaurus.me/how-to-nextjs)<br> - [https://blog.openreplay.com/state-management-in-next-js-with-redux-toolkit/](https://blog.openreplay.com/state-management-in-next-js-with-redux-toolkit/)<br> - [https://www.freecodecamp.org/news/learn-next-js-tutorial/](https://www.freecodecamp.org/news/learn-next-js-tutorial/)<br> - [https://blog.logrocket.com/best-next-js-starter-templates/](https://blog.logrocket.com/best-next-js-starter-templates/)<br> - [https://vercel.com/blog/building-a-fast-animated-image-gallery-with-next-js](https://vercel.com/blog/building-a-fast-animated-image-gallery-with-next-js)<br> - [https://dev.to/arafat4693/how-i-built-my-fullstack-and-typesafe-portfolio-website-26ia](https://dev.to/arafat4693/how-i-built-my-fullstack-and-typesafe-portfolio-website-26ia)<br> - [https://medium.com/adminjs/building-a-blog-with-next-js-adminjs-and-react-a-simple-step-by-step-guide-8838f4e594a6](https://medium.com/adminjs/building-a-blog-with-next-js-adminjs-and-react-a-simple-step-by-step-guide-8838f4e594a6)<br> - [https://vercel.com/blog/next-js-13-data-fetching](https://vercel.com/blog/next-js-13-data-fetching)<br> - [https://dev.to/adrai/static-html-export-with-i18n-compatibility-in-nextjs-8cd](https://dev.to/adrai/static-html-export-with-i18n-compatibility-in-nextjs-8cd)<br> - [https://dev.to/medusajs/how-i-built-a-food-ecommerce-restaurant-with-nextjs-paystack-and-medusa-2oh0](https://dev.to/medusajs/how-i-built-a-food-ecommerce-restaurant-with-nextjs-paystack-and-medusa-2oh0)<br> - [https://vercel.com/blog/nextjs-app-router-data-fetching](https://vercel.com/blog/nextjs-app-router-data-fetching)<br> - [https://prismic.io/blog/building-custom-nextjs-starter](https://prismic.io/blog/building-custom-nextjs-starter)<br> - [https://www.freecodecamp.org/news/decentralized-identity-build-a-profile-with-ethereum-ceramic-and-reactjs/](https://www.freecodecamp.org/news/decentralized-identity-build-a-profile-with-ethereum-ceramic-and-reactjs/)<br> - [https://www.freecodecamp.org/news/create-full-stack-app-with-nextjs13-and-firebase/](https://www.freecodecamp.org/news/create-full-stack-app-with-nextjs13-and-firebase/)<br> - [https://prismic.io/blog/advanced-nextjs-server-context](https://prismic.io/blog/advanced-nextjs-server-context)<br> - [https://blog.bitsrc.io/fundamentals-of-next-js-for-react-developers-85b93c2c2dfa](https://blog.bitsrc.io/fundamentals-of-next-js-for-react-developers-85b93c2c2dfa)<br> - [https://blog.bitsrc.io/how-to-write-unit-tests-with-react-testing-library-in-the-next-js-5d22798afd9a](https://blog.bitsrc.io/how-to-write-unit-tests-with-react-testing-library-in-the-next-js-5d22798afd9a)<br> - [https://nextjs.org/blog/next-13-2](https://nextjs.org/blog/next-13-2)<br> - [https://dev.to/this-is-learning/first-experience-with-nextjs-2a58](https://dev.to/this-is-learning/first-experience-with-nextjs-2a58)<br> - [https://mojoauth.com/blog/how-to-implement-passwordless-authentication-in-next.js/](https://mojoauth.com/blog/how-to-implement-passwordless-authentication-in-next.js/)<br> - [https://dev.to/ishratumar/nextjs-vs-react-which-is-the-best-for-your-project-1eim](https://dev.to/ishratumar/nextjs-vs-react-which-is-the-best-for-your-project-1eim)<br> - [https://www.paulsblog.dev/create-your-portfolio-using-next-js-tailwind-css-stripe-and-paypal/](https://www.paulsblog.dev/create-your-portfolio-using-next-js-tailwind-css-stripe-and-paypal/)<br> - [https://blog.openreplay.com/comparing-frameworks--next-vs-remix/](https://blog.openreplay.com/comparing-frameworks--next-vs-remix/)<br> - [https://dev.to/this-is-learning/first-experience-with-nextjs-part-2-pi4](https://dev.to/this-is-learning/first-experience-with-nextjs-part-2-pi4)<br> - [https://blog.openreplay.com/implementing-a-feedback-form-with-next-js/](https://blog.openreplay.com/implementing-a-feedback-form-with-next-js/)<br> - [https://vercel.com/blog/vercel-cache-api-nextjs-cache](https://vercel.com/blog/vercel-cache-api-nextjs-cache)<br> - [https://blog.logrocket.com/biggest-next-js-boilerplates-2023/](https://blog.logrocket.com/biggest-next-js-boilerplates-2023/)<br> - [https://blog.devgenius.io/advanced-next-js-concepts-8439a8752597](https://blog.devgenius.io/advanced-next-js-concepts-8439a8752597)<br> - [https://www.freecodecamp.org/news/create-full-stack-app-with-nextjs13-and-firebase/](https://www.freecodecamp.org/news/create-full-stack-app-with-nextjs13-and-firebase/)<br> - [https://dev.to/this-is-learning/reading-local-json-data-with-nextjs-part-5-59le](https://dev.to/this-is-learning/reading-local-json-data-with-nextjs-part-5-59le)<br> - [https://blog.logrocket.com/building-next-js-app-tailwind-storybook/](https://blog.logrocket.com/building-next-js-app-tailwind-storybook/)<br> - [https://www.paulsblog.dev/create-your-portfolio-using-next-js-tailwind-css-stripe-and-paypal/](https://www.paulsblog.dev/create-your-portfolio-using-next-js-tailwind-css-stripe-and-paypal/)<br> - [https://www.tigrisdata.com/blog/adding-real-time-full-text-search-to-a-next.js-app-with-tigris/](https://www.tigrisdata.com/blog/adding-real-time-full-text-search-to-a-next.js-app-with-tigris/)<br> - [https://blog.logrocket.com/guide-cookies-next-js/](https://blog.logrocket.com/guide-cookies-next-js/)<br> - [https://www.traversymedia.com/blog/next-js-13-crash-course-app-directory-server-components-more](https://www.traversymedia.com/blog/next-js-13-crash-course-app-directory-server-components-more)<br> - [https://nextjs.org/blog/next-13-3](https://nextjs.org/blog/next-13-3)<br> - [https://dev.to/this-is-learning/fetching-data-with-nextjs-part-6-3hf](https://dev.to/this-is-learning/fetching-data-with-nextjs-part-6-3hf)<br> - [https://blog.dennisokeeffe.com/blog/2021-12-06-nextjs-enterprise-project-structure](https://blog.dennisokeeffe.com/blog/2021-12-06-nextjs-enterprise-project-structure)<br> - [https://www.freecodecamp.org/news/build-a-blog-website-with-ghost-api-and-nextjs/](https://www.freecodecamp.org/news/build-a-blog-website-with-ghost-api-and-nextjs/)<br> - [https://medium.com/@imamdev_/3-scalable-next-js-architecture-boilerplate-6adf1caf06c2](https://medium.com/@imamdev_/3-scalable-next-js-architecture-boilerplate-6adf1caf06c2)<br> - [https://maxleiter.com/blog/build-a-blog-with-nextjs-13](https://maxleiter.com/blog/build-a-blog-with-nextjs-13)<br> - [https://levelup.gitconnected.com/what-you-need-to-know-about-next-13-app-directory-83ab9149b8b](https://levelup.gitconnected.com/what-you-need-to-know-about-next-13-app-directory-83ab9149b8b)<br> - [https://www.inngest.com/blog/5-lessons-learned-from-taking-next-js-app-router-to-production](https://www.inngest.com/blog/5-lessons-learned-from-taking-next-js-app-router-to-production)<br> - [https://blog.logrocket.com/structure-scalable-next-js-project-architecture/](https://blog.logrocket.com/structure-scalable-next-js-project-architecture/)<br> - [https://www.codemotion.com/magazine/frontend/multilingual-site-in-next-js-with-next-i18next/](https://www.codemotion.com/magazine/frontend/multilingual-site-in-next-js-with-next-i18next/)<br> - [https://blogs.shenyien.cyou/the-nextjs-13-app-directory-and-server-components](https://blogs.shenyien.cyou/the-nextjs-13-app-directory-and-server-components)<br> - [https://www.apollographql.com/blog/announcement/frontend/using-apollo-client-with-next-js-13-releasing-an-official-library-to-support-the-app-router/](https://www.apollographql.com/blog/announcement/frontend/using-apollo-client-with-next-js-13-releasing-an-official-library-to-support-the-app-router/)<br> - [https://github.com/unicodeveloper/awesome-nextjs](https://github.com/unicodeveloper/awesome-nextjs)<br> - [https://dev.to/joshchu/how-to-setup-prettier-eslint-husky-and-lint-staged-with-a-nextjs-and-typescript-project-i7b](https://dev.to/joshchu/how-to-setup-prettier-eslint-husky-and-lint-staged-with-a-nextjs-and-typescript-project-i7b)<br> - [https://dev.to/arshadayvid/how-i-built-an-event-ticketing-system-with-nextjs-and-firebase-50l2](https://dev.to/arshadayvid/how-i-built-an-event-ticketing-system-with-nextjs-and-firebase-50l2)<br> - [https://dev.to/arshadayvid/how-i-built-an-event-ticketing-system-with-nextjs-and-firebase-50l2](https://dev.to/arshadayvid/how-i-built-an-event-ticketing-system-with-nextjs-and-firebase-50l2)<br> - [https://www.permit.io/blog/location-based-access-control-made-easy-with-nextjs-and-ipinfo](https://www.permit.io/blog/location-based-access-control-made-easy-with-nextjs-and-ipinfo)<br> - [https://auth0.com/blog/using-nextjs-server-actions-to-call-external-apis/?ref=dailydev](https://auth0.com/blog/using-nextjs-server-actions-to-call-external-apis/?ref=dailydev)<br> ## NextJS 13 - [https://www.builder.io/blog/layouts-in-nextjs-13-visual](https://www.builder.io/blog/layouts-in-nextjs-13-visual)<br> - [https://blog.tericcabrel.com/protect-your-api-routes-in-next-js-with-middleware/](https://blog.tericcabrel.com/protect-your-api-routes-in-next-js-with-middleware/)<br> - [https://www.builder.io/blog/layouts-in-nextjs-13-visual](https://www.builder.io/blog/layouts-in-nextjs-13-visual)<br> - [https://www.builder.io/blog/prefetching-nextjs-visual-guide](https://www.builder.io/blog/prefetching-nextjs-visual-guide)<br> - [https://hackernoon.com/how-to-manage-state-in-nextjs-13-using-redux-toolkit?source=rss](https://hackernoon.com/how-to-manage-state-in-nextjs-13-using-redux-toolkit?source=rss)<br> - [https://prismic.io/blog/nextjs-fonts](https://prismic.io/blog/nextjs-fonts)<br> - [https://hackernoon.com/how-lesssuspense-greater-and-components-streaming-works-in-nextjs?source=rss](https://hackernoon.com/how-lesssuspense-greater-and-components-streaming-works-in-nextjs?source=rss)<br> - [https://www.antstack.com/blog/exploring-react-server-components-and-server-actions-with-next-js/?ref=dailydev](https://www.antstack.com/blog/exploring-react-server-components-and-server-actions-with-next-js/?ref=dailydev)<br> - [https://hackernoon.com/the-ultimate-guide-to-integrating-cloudinary-with-nextjs?source=rss&ref=dailydev](https://hackernoon.com/the-ultimate-guide-to-integrating-cloudinary-with-nextjs?source=rss&ref=dailydev)<br> - [https://www.freecodecamp.org/news/how-to-setup-authentication-and-protected-route-in-next-js-13-with-next-auth-js/?ref=dailydev](https://www.freecodecamp.org/news/how-to-setup-authentication-and-protected-route-in-next-js-13-with-next-auth-js/?ref=dailydev)<br> - [https://prismic.io/blog/nextjs-13-app-directory?ref=dailydev](https://prismic.io/blog/nextjs-13-app-directory?ref=dailydev)<br> - [https://javascript.plainenglish.io/things-you-dont-know-about-next-js-02ee54cb5b7f](https://javascript.plainenglish.io/things-you-dont-know-about-next-js-02ee54cb5b7f)<br> ## NextJS deployment - [https://www.thisdot.co/blog/utilizing-api-environment-variables-on-next-js-apps-deployed-to-aws-amplify/](https://www.thisdot.co/blog/utilizing-api-environment-variables-on-next-js-apps-deployed-to-aws-amplify/)<br> - [https://blog.openreplay.com/going-serverless-with-nextjs/](https://blog.openreplay.com/going-serverless-with-nextjs/)<br> - [https://dev.to/scaabel/containerizing-a-nextjs-application-for-development-204d](https://dev.to/scaabel/containerizing-a-nextjs-application-for-development-204d)<br> ## NextJS SEO - [https://www.builder.io/blog/routing-seo-metadata-nextjs-13](https://www.builder.io/blog/routing-seo-metadata-nextjs-13)<br> - [https://hackernoon.com/optimizing-seo-in-nextjs-techniques-for-better-search-engine-visibility?source=rss](https://hackernoon.com/optimizing-seo-in-nextjs-techniques-for-better-search-engine-visibility?source=rss)<br> - [https://devphobia.com/posts/how-to-setup-auto-generate-sitemap-in-nextjs](https://devphobia.com/posts/how-to-setup-auto-generate-sitemap-in-nextjs)<br> ## NextJS youtube - [https://www.youtube.com/watch?v=34396VmsYp8](https://www.youtube.com/watch?v=34396VmsYp8)<br> - [https://www.youtube.com/watch?v=5Cac3FoEEWM](https://www.youtube.com/watch?v=5Cac3FoEEWM)<br> - [https://www.youtube.com/watch?v=pUNSHPyVryU](https://www.youtube.com/watch?v=pUNSHPyVryU)<br> - [https://www.youtube.com/watch?v=yQaSCQ0OQtQ](https://www.youtube.com/watch?v=yQaSCQ0OQtQ)<br> - [https://www.youtube.com/watch?v=Ai7HJH2I08s](https://www.youtube.com/watch?v=Ai7HJH2I08s)<br> - [https://www.youtube.com/watch?v=keYFkLycaDg](https://www.youtube.com/watch?v=keYFkLycaDg)<br> - [https://www.youtube.com/watch?v=pixly3VT5yY](https://www.youtube.com/watch?v=pixly3VT5yY)<br> - [https://www.youtube.com/watch?v=3d1UDgl-JpU](https://www.youtube.com/watch?v=3d1UDgl-JpU)<br> - [https://www.youtube.com/watch?v=5miHyP6lExg](https://www.youtube.com/watch?v=5miHyP6lExg)<br> ## NextJS projects - [https://dev.to/arshadayvid/how-i-built-a-sales-management-app-with-nextjs-13-typescript-and-firebase-16cb](https://dev.to/arshadayvid/how-i-built-a-sales-management-app-with-nextjs-13-typescript-and-firebase-16cb)<br> - [https://hackernoon.com/building-a-pricing-page-and-charging-visitors-a-nextjs-guide?source=rss](https://hackernoon.com/building-a-pricing-page-and-charging-visitors-a-nextjs-guide?source=rss)<br> - [https://www.freecodecamp.org/news/full-stack-with-nextjs-and-appwrite-course/](https://www.freecodecamp.org/news/full-stack-with-nextjs-and-appwrite-course/)<br> - [https://www.builder.io/blog/nextjs-drag-and-drop](https://www.builder.io/blog/nextjs-drag-and-drop)<br> - [https://morioh.com/a/b5c3e94e680a/build-a-full-stack-pinterest-clone-using-nextjs-13-reactjs-nextaut](https://morioh.com/a/b5c3e94e680a/build-a-full-stack-pinterest-clone-using-nextjs-13-reactjs-nextaut)<br> - [https://itnext.io/build-a-full-stack-reminderapp-with-react-nextjs-typescript-serveraction-zod-hook-form-prisma-4ac0f4cab053](https://itnext.io/build-a-full-stack-reminderapp-with-react-nextjs-typescript-serveraction-zod-hook-form-prisma-4ac0f4cab053)<br> - [https://www.freecodecamp.org/news/build-and-deploy-an-ai-saas-with-paid-subscriptions/](https://www.freecodecamp.org/news/build-and-deploy-an-ai-saas-with-paid-subscriptions/)<br> - [https://www.freecodecamp.org/news/build-an-seo-optimized-blog-with-next-js/](https://www.freecodecamp.org/news/build-an-seo-optimized-blog-with-next-js/)<br> - [https://getstream.io/blog/whatsapp-nextjs/](https://getstream.io/blog/whatsapp-nextjs/)<br> - [https://coinsbench.com/build-a-decentralized-voting-dapp-with-next-js-typescript-tailwind-css-and-cometchat-3e1aaa1cdced](https://coinsbench.com/build-a-decentralized-voting-dapp-with-next-js-typescript-tailwind-css-and-cometchat-3e1aaa1cdced)<br> - [https://hackernoon.com/how-to-build-a-shopping-cart-with-nextjs-and-zustand-state-management-with-typescript](https://hackernoon.com/how-to-build-a-shopping-cart-with-nextjs-and-zustand-state-management-with-typescript)<br> - [https://dev.to/alexefimenko/building-a-local-development-environment-running-a-nextjs-full-stack-app-with-postgresql-and-minio-s3-using-docker-1e6m?ref=dailydev](https://dev.to/alexefimenko/building-a-local-development-environment-running-a-nextjs-full-stack-app-with-postgresql-and-minio-s3-using-docker-1e6m?ref=dailydev)<br> - [https://www.freecodecamp.org/news/beginner-web-dev-tutorial-build-a-weather-app-with-next-js-typescript/](https://www.freecodecamp.org/news/beginner-web-dev-tutorial-build-a-weather-app-with-next-js-typescript/)<br> - [https://www.freecodecamp.org/news/build-full-stack-app-with-typescript-nextjs-redux-toolkit-firebase/?ref=dailydev](https://www.freecodecamp.org/news/build-full-stack-app-with-typescript-nextjs-redux-toolkit-firebase/?ref=dailydev)<br> - [https://www.freecodecamp.org/news/create-a-google-photos-clone-with-nextjs-and-cloudinary/?ref=dailydev](https://www.freecodecamp.org/news/create-a-google-photos-clone-with-nextjs-and-cloudinary/?ref=dailydev)<br> - [https://www.freecodecamp.org/news/ecommerce-site-with-next-js-tailwind-daisyui-course/](https://www.freecodecamp.org/news/ecommerce-site-with-next-js-tailwind-daisyui-course/)<br> ## Next auth - [https://remaster.com/blog/next-auth-jwt-session](https://remaster.com/blog/next-auth-jwt-session)<br> - [https://dev.to/ekimcem/nextauthjs-authjs-credential-authentication-with-methods-you-need--21al](https://dev.to/ekimcem/nextauthjs-authjs-credential-authentication-with-methods-you-need--21al)<br> - [https://dev.to/husnain/how-to-use-jwt-authentication-in-nodejsnextjs-2pp0](https://dev.to/husnain/how-to-use-jwt-authentication-in-nodejsnextjs-2pp0)<br> - [https://www.freecodecamp.org/news/how-to-authenticate-users-with-nextauth-in-nextjs-app-and-pages-router/](https://www.freecodecamp.org/news/how-to-authenticate-users-with-nextauth-in-nextjs-app-and-pages-router/)<br> - [https://www.traversymedia.com/blog/nextjs-react-authentication-clerk](https://www.traversymedia.com/blog/nextjs-react-authentication-clerk)<br> - [https://www.permit.io/blog/nextjs-passwordless-authentication-with-supertokens-and-twilio](https://www.permit.io/blog/nextjs-passwordless-authentication-with-supertokens-and-twilio)<br> - [https://www.freecodecamp.org/news/secure-next-js-applications-with-role-based-authentication-using-nextauth/?ref=dailydev](https://www.freecodecamp.org/news/secure-next-js-applications-with-role-based-authentication-using-nextauth/?ref=dailydev)<br> - [https://www.robinwieruch.de/next-authentication/?ref=dailydev](https://www.robinwieruch.de/next-authentication/?ref=dailydev)<br> - [https://www.cerbos.dev/blog/a-complete-guide-to-next-js-authorization?ref=dailydev](https://www.cerbos.dev/blog/a-complete-guide-to-next-js-authorization?ref=dailydev)<br> ## NextJS Migration - [https://betterprogramming.pub/migrating-a-complete-creat-react-app-to-nextjs-ba6edd8e64f1](https://betterprogramming.pub/migrating-a-complete-creat-react-app-to-nextjs-ba6edd8e64f1)<br> ## NextJS Routing - [https://www.builder.io/blog/dev-drop-7](https://www.builder.io/blog/dev-drop-7)<br> - [https://auth0.com/blog/auth0-stable-support-for-nextjs-app-router/](https://auth0.com/blog/auth0-stable-support-for-nextjs-app-router/)<br> - [https://supabase.com/blog/using-supabase-with-vercel](https://supabase.com/blog/using-supabase-with-vercel)<br> - [https://hackernoon.com/building-real-time-applications-with-nextjs-134-server-actions-1-introduction?source=rss](https://hackernoon.com/building-real-time-applications-with-nextjs-134-server-actions-1-introduction?source=rss)<br> - [https://javascript.plainenglish.io/5-must-have-tools-for-building-web-applications-with-next-js-app-router-e24002aa4dcf](https://javascript.plainenglish.io/5-must-have-tools-for-building-web-applications-with-next-js-app-router-e24002aa4dcf)<br> - [https://www.freecodecamp.org/news/routing-in-nextjs/](https://www.freecodecamp.org/news/routing-in-nextjs/)<br> - [https://awstip.com/nextjs-data-fetching-strategies-for-server-side-components-3c66b021e8fa](https://awstip.com/nextjs-data-fetching-strategies-for-server-side-components-3c66b021e8fa)<br> - [https://prismic.io/blog/nextjs-typescript?ref=dailydev](https://prismic.io/blog/nextjs-typescript?ref=dailydev)<br> - [https://spin.atomicobject.com/api-route-handlers-app-router/?ref=dailydev](https://spin.atomicobject.com/api-route-handlers-app-router/?ref=dailydev)<br> - [https://blog.logrocket.com/exploring-advanced-next-js-routing-conventions/?ref=dailydev](https://blog.logrocket.com/exploring-advanced-next-js-routing-conventions/?ref=dailydev)<br> ## NextJS Server - [https://www.thisdot.co/blog/next-js-13-server-actions/](https://www.thisdot.co/blog/next-js-13-server-actions/)<br> - [https://sadkebab.dev/blog/how-to-build-a-real-time-application-with-react-server-components-in-nextjs-14?ref=dailydev](https://sadkebab.dev/blog/how-to-build-a-real-time-application-with-react-server-components-in-nextjs-14?ref=dailydev)<br> - [https://www.thisdot.co/blog/nextjs-14-server-actions-and-why-building-crud-apps-is-good-for-you-with?ref=dailydev](https://www.thisdot.co/blog/nextjs-14-server-actions-and-why-building-crud-apps-is-good-for-you-with?ref=dailydev)<br> ## NextJS Layout - [https://dev.to/logrocket/a-guide-to-nextjs-layouts-and-nested-layouts-5c0d](https://dev.to/logrocket/a-guide-to-nextjs-layouts-and-nested-layouts-5c0d)<br> ## NextJS Deploy - [https://awstip.com/running-a-next-js-application-on-a-linux-based-ec2-instance-1b5bab9c6728](https://awstip.com/running-a-next-js-application-on-a-linux-based-ec2-instance-1b5bab9c6728)<br> - [https://blog.openreplay.com/build-a-cloud-based-project-management-app-with-next-js/](https://blog.openreplay.com/build-a-cloud-based-project-management-app-with-next-js/)<br> - [https://hackernoon.com/docker-for-beginners-containerizing-a-nextjs-application?source=rss](https://hackernoon.com/docker-for-beginners-containerizing-a-nextjs-application?source=rss)<br> - [https://www.freecodecamp.org/news/how-to-deploy-next-js-app-to-github-pages/](https://www.freecodecamp.org/news/how-to-deploy-next-js-app-to-github-pages/)<br> ## NextJS GraphQL - [https://dev.to/franciscomendes10866/nextjs-and-graphql-the-perfect-combination-for-full-stack-development-18l7](https://dev.to/franciscomendes10866/nextjs-and-graphql-the-perfect-combination-for-full-stack-development-18l7)<br> ## NextJS Security - [https://blog.openreplay.com/best-practices-for-security-in-nextjs/?ref=dailydev](https://blog.openreplay.com/best-practices-for-security-in-nextjs/?ref=dailydev)<br> ## NextJS boilerplate - [https://dev.to/fredy/top-5-nextjs-reactjs-boilerplates-for-2024-ll9?ref=dailydev](https://dev.to/fredy/top-5-nextjs-reactjs-boilerplates-for-2024-ll9?ref=dailydev)<br> - [https://github.com/ixartz/Next-js-Boilerplate](https://github.com/ixartz/Next-js-Boilerplate)<br> ## NextJS vs Remix - [https://blog.saeloun.com/2024/02/21/next.js-vs-remix/?ref=dailydev](https://blog.saeloun.com/2024/02/21/next.js-vs-remix/?ref=dailydev)<br> ## NextJS CSR and SSR - [https://appwrite.io/blog/post/csr-vs-ssr-with-nextjs?ref=dailydev](https://appwrite.io/blog/post/csr-vs-ssr-with-nextjs?ref=dailydev)<br> ## NextJS Unit testing - [https://www.freecodecamp.org/news/how-to-setup-react-testing-library-with-nextjs/?ref=dailydev](https://www.freecodecamp.org/news/how-to-setup-react-testing-library-with-nextjs/?ref=dailydev)<br> ## NextJS 14 - [https://focusreactive.com/breaking-down-next-js-14/?ref=dailydev](https://focusreactive.com/breaking-down-next-js-14/?ref=dailydev)<br>
NextJS Study Guide
interview-preparation,javascript,nextjs
2023-06-12T01:11:55Z
2024-05-05T03:17:47Z
null
1
0
92
0
0
3
null
MIT
null
AnkanSaha/outers
main
## outers - a all in one package for your day to day use [![npm version](https://badge.fury.io/js/outers.svg)](https://badge.fury.io/js/outers) [![CodeQL](https://github.com/AnkanSaha/outers/actions/workflows/github-code-scanning/codeql/badge.svg)](https://github.com/AnkanSaha/outers/actions/workflows/github-code-scanning/codeql) [![CircleCI](https://dl.circleci.com/status-badge/img/gh/AnkanSaha/outers/tree/main.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/AnkanSaha/outers/tree/main) This package provides services like Response Sender, Colorful Console, HTTP Status Codes, API Call, Random Number Generate, Create Cluster in NodeJS Easily also you can Store Temporary Data in Server Side like localStorage in Client Side ## Usage ```shell npm install outers@latest --save # install the package ``` ### If You Want to Use Encrypt and Decrypt, You Need To Install in your Client Side ```shell npm i react-caches@latest --save ``` ## Encrypt and Decrypt ```javascript const { ClassBased } = require("outers"); // import the package const Crypto = new ClassBased.CryptoGraphy("secretKey"); // create a new instance of CryptoGraphy class const ASYNCencrypted = Crypto.Encrypt("Hello World!"); // encrypt the string with secret key in async way const SYNCencrypted = Crypto.EncryptSync("Hello World!"); // encrypt the string with secret key in sync way const ASYNCdecrypted = Crypto.Decrypt(ASYNCencrypted); // decrypt the string with secret key in async way const SYNCdecrypted = Crypto.DecryptSync(SYNCencrypted); // decrypt the string with secret key in sync way ``` ## Send HTTP Response in Efficient Way with HTTP Status Code ```javascript const { Serve, StatusCodes } = require('outers'); // import the package Serve.JSON({ // send a JSON response to the client status: true, // boolean value response: response, // response object in Express or Node Server statusCode: StatusCodes.OK, // HTTP Status Code Title: 'Hello World!', // Title of the response (you can pass anything or yo can pass undefined) ** Mainly used in Modal POP-UP Text ** data: { // data object of the response (you can pass anything or yo can pass undefined) message: 'Hello World!' // message of the response }, message: 'Hello World!' // message of the response (you can pass anything or yo can pass undefined) ** Mainly used in Modal POP-UP Text ** cookieData: [ // cookieData array of the response (you can pass anything or yo can pass undefined) { name: 'cookieName', // name of the cookie value: 'cookieValue', // value of the cookie options: { // options of the cookie maxAge: 1000 * 60 * 60 * 24 * 30, // 30 days httpOnly: true, secure: true, sameSite: 'none', } } ] contentType: 'application/x-www-form-urlencoded' // set custom content type for your need }) // send a JSON response to the client Serve.File({ // send a file to the client response: response, // response object in Express or Node Server rootName: 'public', // root directory name or your static directory name statusCode: StatusCodes.OK, // HTTP Status Code Filename: 'index.html', // Name of the File that you want to send, it can be anything like, image, html file, pdf, audio, video etc. cookieData: [ // cookieData array of the response (you can pass anything or yo can pass undefined) { name: 'cookieName', // name of the cookie value: 'cookieValue', // value of the cookie options: { // options of the cookie maxAge: 1000 * 60 * 60 * 24 * 30, // 30 days httpOnly: true, secure: true, sameSite: 'none', } } ] contentType: 'application/x-www-form-urlencoded' // set content type as your need }) // send a file to the client ``` ## Class Based Response Sender ```javascript const { ClassBased } = require('outers'); // import the package // Create a new instance of ResponseSender class const OK = new ClassBased.Response.JSON(response, StatusCode, contentType?); // create a new instance of JSON class with response, status code and content type OK.Send(Data, Message, Title, CookieData?); // send a JSON response to the client ``` ## API Call in Efficient Way ```javascript const { ClassBased } = require('outers'); // import the package const Call = new ClassBased.API("https://jsonplaceholder.typicode.com"); // create a new instance of API class with base URL Call.Get('/todos/1', true, {"Custom Headers"}).then((response) => { Console.log(response) }); // send a GET request to the server with you want to parse the response to JSON Call.Get('/todos', false, {"Custom Headers"}).then((response) => { Console.log(response) }); // send a POST request to the server with you want to not parse the response to JSON Call.Post('/posts', { title: 'foo', body: 'bar', userId: 1, }, true, {"Custom Headers"}).then((response) => { Console.log(response) }); // send a POST request to the server with you want to parse the response to JSON Call.Post('/posts/1', { id: 1, title: 'foo', body: 'bar', userId: 1, }, false, {"Custom Headers"}).then((response) => { Console.log(response) }); // send a PUT request to the server with you want not to parse the response to JSON Call.Put('/posts/1', { id: 1, title: 'foo', body: 'bar', userId: 1, }, true, {"Custom Headers"}).then((response) => { Console.log(response) }); // send a PUT request to the server with you want to parse the response to JSON Call.Put('/posts/1', { id: 1, title: 'foo', body: 'bar', userId: 1, }, false, {"Custom Headers"}).then((response) => { Console.log(response) }); // send a PUT request to the server with you want not to parse the response to JSON Call.Delete('/posts/1', true, {"Custom Headers"}).then((response) => {}); // send a DELETE request to the server with you want to parse the response to JSON Call.Delete('/posts/1', false, {"Custom Headers"}).then((response) => {}); // send a DELETE request to the server with you want not to parse the response to JSON ** Note : You can set Custom Headers in the third parameter of the function, by default it is set to application/json ** ``` ## Generate Random Number, Words, Symbols ```javascript const { ClassBased } = require('outers'); // import the package const Unique = new ClassBased.UniqueGenerator(10); // create a new instance of UniqueGenerator class with length of the random string or number or symbol const Number = Unique.RandomNumber(true, ["Custom Numbers"]); // generate a random number with custom numbers with Zero const Number = Unique.RandomNumber(false, ["Custom Numbers"]); // generate a random number with custom numbers without Zero const Words = Unique.RandomWord(true, ["Custom Words"]); // generate a random word with custom words in Capital Letters const Words = Unique.RandomWord(false, ["Custom Words"]); // generate a random word with custom words in Small Letters const Mixed = Unique.RandomMixed(true, ["Custom Mixed"]); // generate a random mixed string with custom mixed in Capital Letters const Mixed = Unique.RandomMixed(false, ["Custom Mixed"]); // generate a random mixed string with custom mixed in Small Letters const Symbols = Unique.RandomSymbol(["Custom Symbols"]); // generate a random symbol with custom symbols ** Custom Numbers, Words, Mixed and Symbols are optional, you can pass anything or you can pass undefined ** ``` ## Console Colorful Print ```javascript const { Console } = require("outers"); // import the package Console.green("Hello World!"); // print a string to the console with green color Console.red("Hello World!"); // print a string to the console with red color Console.blue("Hello World!"); // print a string to the console with blue color Console.yellow("Hello World!"); // print a string to the console with yellow color Console.magenta("Hello World!"); // print a string to the console with magenta color Console.bright("Hello World!"); // print a string to the console with bright color Console.cyan("Hello World!"); // print a string to the console with cyan color ``` ## Get Requester IP Address in Request.body Object ```javascript const { Middleware } = require("outers"); // import the package app.use("/api", Middleware.RequestInjectIP(["PUT"]), MainFunction); // inject the IP Address in Request.body When the Request Method is PUT app.use("/api", Middleware.RequestInjectIP(["PUT", "POST"]), MainFunction); // inject the IP Address in Request.body When the Request Method is PUT or POST ``` - Note : You can access the IP Address in Request.body Object - Example : Request.body.RequesterIPaddress - Requirement : This Middleware work only can with POST, PATCH, PUT and DELETE Request - Note : You can use this Middleware in any route, but it is recommended to use in the first route - Example : app.use('/api', Middleware.RequestInjectIP, MainFunction); - You need to set trust proxy to true in express app to get the IP Address - Example : app.set('trust proxy', true); - You Need to Set X-Forwarded-For in the Header of the Request in Nginx or Apache or any other server - Example : proxy_set_header X-Forwarded-For $remote_addr; ## Create Function Based Cluster in NodeJS Easily ```javascript const { ClassBased } = require('outers'); // import the package ClassBased.ClusterCreator.FunctionBased(ExpressServer, PORT, CustomWorkerCount, BeforeListenFunctions? AfterListenFunctions?, ...FunctionMiddlewares?); // create a cluster with custom worker count ``` # Full Example ```javascript const Express = require("express"); // import express const { ClassBased } = require("outers"); // import the package const app = Express(); // create a new express app const CORS = require("cors"); // import cors const PORT = process.env.PORT || 3000; // set the port // Set the All Middlewares & First with the Express App like Body Parser, Cookie Parser, CORS, Helmet, Compression, Request Inject IP etc. app.static("public"); // set the static directory app.set("trust proxy", true); // set trust proxy to true app.use(CORS); // use CORS app.use(Express.json()); // use Express.json() app.use(Express.urlencoded({ extended: true })); // use Express.urlencoded() app.use(Middleware.RequestInjectIP); // inject the IP Address in Request.body // Set the Routes with the Express App app.use("/api", Routes); // set the routes // At Last Create a Cluster with the Express App ClassBased.CreateByFunction(app, PORT, 2); // create a cluster with custom worker count // Default Value of CustomWorkerCount is length of the CPU Core & Default Value of PORT is 3000 // If you want to use the default value of CustomWorkerCount then you can pass undefined in the third parameter of the function // You Don't need to listen the app, it will automatically listen the app in the cluster // After all the setup, you can connect Database or anything else that you want to do // If you want to use the engine middlewares, then you can pass the engine middlewares in the fourth parameter of the function or you can pass undefined if you don't want to use engine middlewares or you want to use outside of the cluster // If you want to use the before listen functions, then you can pass the before listen functions in the fifth parameter of the function or you can pass undefined if you don't want to use before listen functions or you want to use outside of the cluster // If you want to use the after listen functions, then you can pass the after listen functions in the sixth parameter of the function or you can pass undefined if you don't want to use after listen functions or you want to use outside of the cluster // If you want to use the function middlewares, then you can pass the function middlewares in the seventh parameter of the function or you can pass undefined if you don't want to use function middlewares or you want to use outside of the cluster, you can pass as many as you want ``` # Create Class Based Clusters in NodeJS Easily ```javascript const { ClassBased } = require("outers"); // import the package const cluster = new ClassBased.ClusterCreator.ClassBased( ExpressServer, PORT, numberOfWorkers, ); // create a cluster instance cluster.AddBeforeListenFunction(function () {}); //To Add a function to the cluster that will be called before server starts cluster.AddAfterListenFunction(function () {}); //To Add a function to the cluster that will be called after server cluster.AddFunctionMiddleware(function (Request, Response, Next) {}); // To Add a function to the cluster that linked to the middleware function cluster.AddFunctionMiddleware(CORS()); //To Add CORS middleware to the cluster that will be called after server starts cluster.StartServer(); // start the cluster server ``` # Store Temporary Data in Server Side like localStorage in Client Side ```javascript const { ClassBased } = require('outers'); // import the package const storage = new ClassBased.Storage.CreateNewShortStorage('Ankan Saha', 100, "ANCNCE", "Cache/"); // create a new instance of Storage class with name of the storage with 100 MB of storage size with secret key with storage directory storage.Save("Ankan", { // save a data in the storage with key and value with .then() method Name: "Ankan", Roll: 67 }).then((res) => { console.log(res) }) await storage.Save("Ankan", { // save a data in the storage with key and value with await keyword Name: "Ankan", Roll: 67 }) storage.Get("Ankan").then((res) => { // get a data from the storage with key with .then() method console.log(res) }) await storage.Get("Ankan") // get a data from the storage with key with await keyword await storage.Delete("Ankan") // delete a data from the storage with key with await keyword storage.Delete("Ankan").then((res) => { // delete a data from the storage with key with .then() method console.log(res) }) storage.DeleteStorage().(res=> console.log(res)); // Delete The All Data & also Delete the Data Storage with .then method await storage.DeleteStorage() // Delete The All Data & also Delete the Data Storage with await keyword ``` # Use MongoSuper Within Outers ```javascript const { ClassBased } = require("outers"); // import the package const MongoSuper = new ClassBased.MongoSuper(); // create a new instance of MongoSuper class ``` ## [Follow MongoSuper Documentation for Usage](https://www.npmjs.com/package/mongosuper) # Control URL Access in NodeJS ```javascript const { Middleware } = require("outers"); // import the package app.use( "/api", Middleware.URL_Controller( ["ARRAY OF URLs"], FailedStatusCode, ErrorMessage, Reverse, ), MainFunction, ); // control the URL Access in NodeJS with the Middleware function ``` - Note : You can pass as many as you want URLs in the first parameter of the function - Note : You can pass the Failed Status Code in the second parameter of the function, by default it is set to 403, it will send a 403 status code if the verification failed - Note : You can pass the Error Message in the third parameter of the function, by default it is set to 'You are not allowed to access this URL', it will send a error message if the verification failed - Note : You can pass the Reverse in the fourth parameter of the function, by default it is set to false, if you set it to true then it will reverse the verification, it will send a 403 status code if the verification success # Control IP Address Access in NodeJS ```javascript const { Middleware } = require("outers"); // import the package app.use( "/api", Middleware.IPAccessController( ["ARRAY OF IP ADDRESSES"], FailedStatusCode, ErrorMessage, Reverse, ), MainFunction, ); // control the IP Address Access in NodeJS with the Middleware function ``` - Note : You can pass as many as you want IP Addresses in the first parameter of the function - Note : You can pass the Failed Status Code in the second parameter of the function, by default it is set to 403, it will send a 403 status code if the verification failed - Note : You can pass the Error Message in the third parameter of the function, by default it is set to 'You are not allowed to access this URL', it will send a error message if the verification failed - Note : You can pass the Reverse in the fourth parameter of the function, by default it is set to false, if you set it to true then it will reverse the verification, it will send a 403 status code if the verification success # Download Git Repository in NodeJS ```javascript const { ClassBased } = require("outers"); // import the package const Git = new ClassBased.GitCloner("PROVIDER_NAME", "USERNAME"); // create a new instance of GitCloner class ``` - Note : You can pass the Provider Name in the first parameter of the function, it can be anything like GitHub, GitLab, BitBucket etc. - Note : You can pass the Username in the second parameter of the function, it can be anything like AnkanSaha, ankan, ankan-saha etc. - Note : You can pass true/false in the third parameter of the function, by default it is set to false, if you set it to true then it will find if any repository is available in the current directory, if it is available then it will delete the repository and clone the new repository - Note : You can pass Custom Directory in the fourth parameter of the function, by default it is set to undefined, if you set it to undefined then it will clone the repository in the Repository Name Directory, if you set it to any directory then it will clone the repository in the custom directory - Caution : If you set the third parameter to true then you can't use the custom directory, it will clone the repository in the Repository Name Directory ```javascript Git.Clone("RepositoryName").then((res) => { console.log(res); }); // it will clone the repository in the current directory; ``` ```javascript const { ClassBased } = require("outers"); // import the package ClassBased.GitCloner.Clone("REPOSITORY_URL").then((res) => { console.log(res); }); // it will clone the repository in the current directory; ``` # Control User Agent Access in NodeJS ```javascript const { Middleware } = require("outers"); // import the package app.use( "/api", Middleware.User_AgentController( ["ARRAY OF BROWSERS NAMES"], ["ARRAY OF BROWSERS VERSIONS"] FailedStatusCode, ErrorMessage, Reverse, ), MainFunction, ); // control the User Agent Access in NodeJS with the Middleware function ``` - Note : You can pass as many as you want Browsers Names in the first parameter of the function - Note : You can pass as many as you want Browsers Versions in the second parameter of the function (it is optional) - Note : You can pass the Failed Status Code in the third parameter of the function, by default it is set to 403, it will send a 403 status code if the verification failed - Note : You can pass the Error Message in the fourth parameter of the function, by default it is set to 'You are not allowed to access this URL', it will send a error message if the verification failed - Note : You can pass the Reverse in the fifth parameter of the function, by default it is set to false, if you set it to true then it will reverse the verification, it will send a 403 status code if the verification success ## Control Which Method is Allowed in NodeJS ```javascript const { Middleware } = require("outers"); // import the package app.use( "/api", Middleware.ClassBasedController(["GET", "POST", "PUT", "DELETE"]), MainRouter, ); // control the method access in NodeJS with the Middleware function ``` ## Use JWT Validator Middleware in NodeJS ```javascript const { Middleware } = require("outers"); // import the package app.use("/api", Middleware.JWTValidator("FieldName", Token), MainRouter); // use the JWT Validator Middleware in NodeJS ``` - Note : You can pass the Field Name in the first parameter of the function, it can be anything like Authorization, Token, JWT etc. - Note : The Field Name is anywhere in the Request Object, it can be in the Header, Body, Query, Params etc. it automatically find the Field Name in the Request Object when you provide the Field Name - Note : You can pass the JWT Secret Token in the second parameter of the function, it can be anything like SecretKey, SecretToken, Secret etc. to verify the JWT Token // You can pass as many as you want ClassBased in the first parameter of the function ## Save Request Logs ```javascript const { Middleware } = require("outers"); // import the package app.use( "/api", Middleware.RequestLogger(true, true, true, true, true), MainRouter, ); // count the number of requests in NodeJS with the Middleware function ``` - Note : You can pass true/false in all parameters of the function, by default it is set to true, if you set it to true then it will count the number of requests in the console - Note : The First Parameter is SaveIP which is used to save the IP Address in the Request Object, by default it is set to true, if you set it to true then it will save the IP Address in the Request Object - Note : The Second Parameter is SaveUserAgent which is used to save the User Agent in the Request Object, by default it is set to true, if you set it to true then it will save the User Agent in the Request Object - Note : The Third Parameter is SaveRequestTime which is used to save the Request Time in the Request Object, by default it is set to true, if you set it to true then it will save the Request Time in the Request Object - Note : The Fourth Parameter is SaveContentType which is used to save the Content Type in the Request Object, by default it is set to true, if you set it to true then it will save the Content Type in the Request Object - Note : The Fifth Parameter is SaveMethod which is used to save the Method in the Request Object, by default it is set to true, if you set it to true then it will save the Method in the Request Object ## License MIT ``` ```
Outers is a vibrant npm package that can help you to encrypt - decrypt messages, color up in terminal, send response,and many more things
color,encryption,encryption-library,javascript,nodejs,collaborate,github-codespaces,gitkraken,gitlens,termius
2023-06-24T15:47:23Z
2024-05-12T06:32:57Z
2024-03-08T15:09:30Z
2
199
755
1
0
3
null
MIT
TypeScript
VovaK0-23/esbuild-react-ts-boilerplate
master
# Step-by-Step Tutorial: Setting up React + Esbuild + Typescript Project Table of Contents 1. [Project Setup](#project-setup) 1. [Prerequisites](#prerequisites) 2. [Install Node.js](#step-1-install-nodejs) 3. [Initialize the Project](#step-2-initialize-the-project) 4. [Install Dependencies](#step-3-install-dependencies) 5. [Configure Gitignore](#step-4-configure-gitignore) 6. [Configure TypeScript](#step-5-configure-typescript) 7. [Create Public Directory](#step-6-create-public-directory) 8. [Add Public Files](#step-7-add-public-files) 9. [Add Optional Files](#step-8-add-optional-files) 10. [Create Esbuild Configuration](#step-9-create-esbuild-configuration) 11. [Enable Live Reloading (Optional)](#step-10-enable-live-reloading-optional) 12. [Create Environment Variables File](#step-11-create-environment-variables-file) 13. [Update Package.json](#step-12-update-package-json) 14. [Run the Project](#step-13-run-the-project) 2. [Test Suite Setup](#test-suite-setup) 1. [Install Packages](#step-1-install-packages) 2. [Add Jest Config](#step-2-add-jest-config) 3. [Add Tests Setup File](#step-3-add-tests-setup-file) 4. [Add Scripts to Package.json](#step-4-optional-add-paths-to-tsconfigjson) 3. [Linter and Formatter Setup](#linter-and-formatter-setup) 1. [Install Packages](#step-1-install-packages) 2. [Add ESLint Config](#step-2-add-eslint-config) 3. [Add Prettier Config](#step-3-add-prettier-config) 4. [Add Paths to tsconfig.json (Optional)](#step-4-add-paths-to-tsconfig-json-optional) 5. [Add Scripts to Package.json](#step-5-add-scripts-to-package-json) ## Project setup ### Prerequisites Before you begin, make sure you have the following prerequisites installed: - Node Version Manager (nvm) ### Step 1: Install Node.js 1. Open your terminal. 2. Install the latest LTS version of Node.js using nvm by running the following command: ```shell nvm install --lts ``` 3. Create an .nvmrc file in your project's root directory and add the installed Node.js version to it by running the following command: ```shell node --version > .nvmrc ``` ### Step 2: Initialize the Project 1. Create a new directory for your project. 2. Navigate to the project's root directory in the terminal. 3. Initialize a new private project using Npm by running the following command: ```shell npm init -yp ``` 4. Edit the generated `package.json` file as needed. For example, you can remove the `"main"` field if you won't be publishing the package, change the `"license"`, etc. ### Step 3: Install Dependencies 1. Install the necessary packages for React, Esbuild, Typescript, and other required dependencies by running the following command: ```shell npm install esbuild react react-dom dotenv typescript ``` 2. Install type definitions for React and React DOM as dev dependencies by running the following command: ```shell npm install --save-dev @types/react @types/react-dom ``` 3. Run `npm install` ### Step 4: Configure Gitignore 1. Add following lines to `.gitignore` ```shell *.log .env coverage node_modules public/build/ !public/build/.keep ``` ### Step 5: Configure TypeScript 1. Initialize the `tsconfig.json` file by running the following command: ```shell npx tsc --init --rootDir src --jsx react --module es6 --moduleResolution node --noEmit true ``` ### Step 6: Create Public Directory 1. Create a `public` directory in the project's root directory. ### Step 7: Add Public Files 1. Create an `index.html` file inside the `public` directory. 2. Add the following HTML code to the `index.html` file: ```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Title</title> <meta name="description" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link rel="manifest" href="/manifest.json" /> <link rel="apple-touch-icon" href="/apple-touch-icon.png" /> <script type="module" src="./build/bundle.js"></script> </head> <body> <noscript>You need to enable JavaScript to run this app.</noscript> <div id="root"></div> </body> </html> ``` ### Step 8: Add Optional Files 1. Optionally, you can add a `favicon.ico` file and a `manifest.json` file to the `public` directory. ### Step 9: Create Esbuild Configuration 1. Create an `esbuild.config.js` file in the project's root directory. 2. Add the following JavaScript code to the `esbuild.config.js` file: ```js import dotenv from 'dotenv'; import esbuild from 'esbuild'; dotenv.config(); const args = process.argv; const config = { logLevel: 'info', entryPoints: ['src/index.ts'], outfile: 'public/build/bundle.js', bundle: true, define: { NODE_ENV: JSON.stringify(process.env.NODE_ENV || 'production'), }, }; if (args.includes('--build')) { esbuild .build({ ...config, minify: true, sourcemap: false, }) .catch((e) => { console.error(e); process.exit(1); }); } if (args.includes('--start')) { esbuild .context({ ...config, minify: false, sourcemap: true, }) .then(async (ctx) => { await ctx.watch(); // this is needed only if live reloading will be used await ctx.serve({ servedir: 'public', onRequest: ({ remoteAddress, method, path, status, timeInMS }) => { console.info(remoteAddress, status, `"${method} ${path}" [${timeInMS}ms]`); }, }); }) .catch((e) => { console.error(e); process.exit(1); }); } ``` ### Step 10: Enable Live Reloading (Optional) 1. Open the entry file (src/index.ts) in your code editor. 2. Add the following line of code at the beginning of the file: ```ts declare const NODE_ENV: string; if (NODE_ENV === 'development') new EventSource('/esbuild').addEventListener('change', () => location.reload()); ``` ### Step 11: Create Environment Variables File 1. Create a `.env` file in the project's root directory. 2. Add the following content to the `.env` file: ```env NODE_ENV=development ``` ### Step 12: Update Package.json 1. Open the `package.json` file in your code editor. 2. Change the `"type"` field to `"module"` to enable ECMAScript modules: ```json "type": "module", ``` 3. Add the following scripts to the `"scripts"` section of the `package.json` file: ```json "scripts": { "build": "node esbuild.config.js --build", "start": "node esbuild.config.js --start" }, ``` ### Step 13: Run the Project 1. Open your terminal. 2. Navigate to the project's root directory. 3. Start the project by running the following command: ```shell yarn start ``` 4. The project should now be running, and you can view it in your browser at the specified URL. Congratulations! You have successfully set up a React + Esbuild + Typescript project. You can now start developing your application using this setup. ## Test suite Setup ### Step 1: Install packages - `jest`: A JavaScript testing framework used for writing and executing tests. - `@testing-library/jest-dom`: Provides additional matchers and utilities for testing DOM-related behavior in Jest. - `@testing-library/react`: Offers utilities for testing React components using the Testing Library approach. - `@testing-library/user-event`: Allows simulating user events in React components during testing. - `@types/jest`: TypeScript type definitions for Jest, ensuring accurate type information. - `esbuild-jest`: A Jest transformer that compiles JSX and TypeScript in test files, leveraging the fast esbuild bundler. - `jest-environment-jsdom`: Provides a JSDOM environment for Jest, allowing tests to interact with the DOM. ```shell yarn add -D jest \ @testing-library/jest-dom @testing-library/react @testing-library/user-event \ @types/jest esbuild-jest \ jest-environment-jsdom ``` ### Step 2: Add jest config 1. Create `jest.config.js` ```js /* * For a detailed explanation regarding each configuration property, visit: * https://jestjs.io/docs/configuration */ export default { // Stop running tests after `n` failures bail: 1, // Automatically clear mock calls, instances, contexts and results before every test clearMocks: true, // Indicates whether the coverage information should be collected while executing the test collectCoverage: true, // The directory where Jest should output its coverage files coverageDirectory: 'coverage', // Indicates which provider should be used to instrument code for coverage coverageProvider: 'v8', // The root directory that Jest should scan for tests and modules within // rootDir: undefined, // A list of paths to directories that Jest should use to search for files in roots: ['src'], // The paths to modules that run some code to configure or set up the testing environment before each test // setupFiles: [], // A list of paths to modules that run some code to configure or set up the testing framework before each test setupFilesAfterEnv: ['<rootDir>/src/setupTests.ts'], // The number of seconds after which a test is considered as slow and reported as such in the results. slowTestThreshold: 5, // A list of paths to snapshot serializer modules Jest should use for snapshot testing // snapshotSerializers: [], // The test environment that will be used for testing testEnvironment: 'jsdom', // A map from regular expressions to paths to transformers transform: { '^.+\\.tsx?$': 'esbuild-jest', '^.+\\.ts?$': 'esbuild-jest', }, }; ``` ### Step 3: Add tests setup file 1. Create `src/setupTests.ts` ```js // to expand availiable matchers in tests import '@testing-library/jest-dom'; ``` ### Step 4: Add scripts to `package.json` 1. Update your `package.json` file and add the following scripts: ```json "scripts": { "test": "jest --watch" } ``` ## Linter and Formatter Setup ### Step 1: Install packages 1. Install the following packages using Npm: - `eslint`: Code quality tool to catch bugs. - `eslint-plugin-compat`: Plugin to lint the browser compatibility of your code. - `eslint-plugin-react`: ESLint support for React. - `eslint-config-prettier`: Config extension to remove conflicts between ESLint and Prettier. - `@typescript-eslint/eslint-plugin` and `@typescript-eslint/parser`: ESLint support for TypeScript. - `prettier`: Code formatter to make code style consistent. - (Optional) `@trivago/prettier-plugin-sort-imports`: Plugin for Prettier to automatically sort imports. ```shell npm install --save-dev eslint \ eslint-plugin-compat eslint-plugin-react eslint-config-prettier \ @typescript-eslint/eslint-plugin @typescript-eslint/parser \ prettier @trivago/prettier-plugin-sort-imports ``` ### Step 2: Add eslint config 1. Create `eslint.config.cjs` and add the following configuration: ```js module.exports = { env: { browser: true, es2021: true, }, extends: [ 'eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:react/recommended', 'plugin:compat/recommended', 'prettier', ], overrides: [ { env: { node: true, }, files: ['.eslintrc.{js,cjs}'], parserOptions: { sourceType: 'script', }, }, ], parser: '@typescript-eslint/parser', parserOptions: { ecmaVersion: 'latest', sourceType: 'module', }, plugins: ['@typescript-eslint', 'react', 'compat'], ignorePatterns: ['public/build/*'], settings: { react: { version: 'detect', }, }, rules: {}, }; ``` ### Step 3: Add prettier config 1. Create `.prettierrc` (Optional, if you don't plan to use the import sort plugin, you can leave the defaults): ```json { "printWidth": 100, "singleQuote": true, "jsxSingleQuote": true, "importOrder": ["^@/(.*)$", "^[./]"], "importOrderSeparation": true, "importOrderSortSpecifiers": true } ``` 2. Create `.prettierignore` and add the following line to exclude the `public/build` directory: ```shell public/build ``` ### Step 4: (Optional) Add paths to `tsconfig.json` 1. Update your `tsconfig.json` file and add the following paths configuration to support absolute imports: ```json "baseUrl": "src", "paths": { "@/*": ["*"] } ``` ### Step 5: Add scripts to `package.json` 1. Update your `package.json` file and add the following scripts: ```json "scripts": { "fmt": "prettier --write", "lint": "eslint --fix" } ``` Usage: - Run ESLint and automatically fix linting issues: ```shell npm run lint . npm run lint <filepath> ``` - Format your code using Prettier: ```shell npm run fmt . npm run fmt <filepath> ```
Step by step tutorial on how to setup Esbuild + React + Ts project. With example boilerplate
boilerplate,esbuild,javascript,js,react,reactjs,ts,tutorial,typescript
2023-06-28T15:59:15Z
2023-11-09T12:05:37Z
null
1
0
11
0
0
3
null
MIT
JavaScript
benoitcrauet/WebMIV
main
# WebMIV Félicitations pour l'acquisition de votre superbe copie de __WebMIV__ ! 🎉 Ce projet est directement inspiré de l'application pour Android [My-MIV](https://github.com/Florian1548/My-MIV) _(allez donc y faire un tour !)_ développée par [Florian1548](https://github.com/Florian1548). __WebMIV__ avait été créé à l'origine pour répondre à un besoin personnel consistant à avoir cette même interface, mais en version web, afin de pouvoir l'intégrer à Home Assistant. Merci à Florian d'autoriser la publication de ce projet fortement inspiré du sien ! ![Capture d'écran de l'interface WebMIV](https://github.com/benoitcrauet/WebMIV/assets/9050929/ddfede9b-91e0-4951-9579-9b7dce8f8eea) ![Capture d'écran de l'interface WebMIV](https://github.com/benoitcrauet/WebMIV/assets/9050929/5db0667c-3ac0-4df1-865b-fb99c6e7cdce) ## Introduction __WebMIV__ est un logiciel libre sous licence AGPL-3.0 développé par [_Benoît Crauet_](https://github.com/benoitcrauet) et distribué gratuitement. Il permet l'affichage des 🚆 trains, 🚇 métros, 🚃 trams et 🚎 bus de vos lignes IDFM favorites (ou détestées, ça, c'est vous qui voyez). __WebMIV__ a été spécifiquement conçu pour être facilement intégrable puisqu'il repose intégralement sur la technologie Web. Vous pouvez par exemple l'afficher sur : - Une télévision - Une tablette (iOS ou Android) - Un ordinateur (Linux, macOS, Windows) - Un Raspberry Pi (ou équivalents) - Un système de digital signage - ...et plus globalement tout ce qui permet d'afficher une page web ! 💡 __WebMIV__ s'intègre également parfaitement en tant que web card dans un dashboard ___Home Assistant___. C'est même l'impulsion d'origine du projet : pouvoir intégrer proprement sur une tablette fixée au mur, au beau milieu d'un dashboard _Home Assistant_, les prochains trains et bus d'un ou plusieurs arrêts. Le projet fonctionne avec un principe de client-serveur. Vous pouvez l'installer sur n'importe quel système prenant en charge Node et Git (Windows, Linux, Mac, Raspberry, machine virtuelle...). Les clients, eux, n'ont besoin que d'un simple navigateur web. ## Installation Assurez-vous d'avoir installé sur votre système **NodeJS**. Par exemple, sur système Linux : ```bash sudo apt update sudo apt install nodejs node -v # Affiche le numéro de version ``` Rendez-vous sur [le site internet de NodeJS](https://nodejs.org/en/download) pour avoir plus d'informations sur la procédure d'installation sur votre OS. > _WebMIV a été testé sans encombre sur NodeJS v20._ --- Positionnez-vous dans le répertoire dans lequel vous souhaitez installer WebMIV : ```bash cd /home/Me/apps/ # Par exemple ``` Faites un `git clone` du projet : ```bash git clone git@github.com:benoitcrauet/WebMIV.git ``` Git va automatiquement créer le sous-dossier `WebMIV`. Positionnez-vous dans le répertoire créé : ```bash cd WebMIV/ ``` Initialisez le projet en installant les dépendances : ```bash npm install ``` Dupliquez le fichier de configuration `settings.sample.ini` en `settings.ini` : ```bash cp settings.sample.ini settings.ini ``` Ouvrez ensuite le fichier `settings.ini` et modifiez la configuration selon vos besoins (vous trouverez à la suite de ce README des détails sur la configuration) : ```bash nano settings.ini ``` Une fois configuré, lancez le serveur WebMIV avec la commande suivante: ```bash node . ``` > 👍🏻 _WebMIV fonctionne aussi parfaitement en tant que service, dans systemctl par exemple._ Comme pour tous les autres programmes dans le terminal, vous pouvez stopper WebMIV avec un `Ctrl+C`, ou `^C`. ## Mise à jour de WebMIV Si cette application évolue, la propagation des nouvelles versions n'est pas automatique. Vous devez alors faire une mise à jour manuelle du paquet WebMIV. 💡 Pensez d'abord à stopper WebMIV, soit avec `Ctrl+C`, soit en stoppant le service (si vous l'avez configuré comme tel). Positionnez-vous dans le répertoire d'éxécution de WebMIV : ```bash cd /home/Me/apps/WebMIV # Par exemple. Adaptez à votre configuration ``` La mise à jour se fait en une seule commande : ```bash git pull ``` Le fichier `settings.sample.ini` réapparaîtra : c'est normal. Supprimez-le. Enfin, relancez WebMIV sous sa nouvelle version : ```bash node . ``` ⚠️ __ATTENTION__ : Il est possible qu'une réadaptation du fichier `settings.ini` soit nécessaire, par exemple en cas d'ajout ou de modification de fonctionnalités. Auquel cas, assurez-vous que votre fichier `settings.ini` réponde bien aux directives de ce README avant de lancer WebMIV. ## Les pré-requis Vous aurez besoin d'un accès personnel à l'API Prim mise à disposition par **Île-de-France Mobilités**. C'est une plateforme permettant aux logiciels tiers comme WebMIV de récupérer les données des transports franciliens. WebMIV discute avec l'API Prim, mais il lui faut 🔑 **un jeton unique d'accès**. Nous allons donc la créer : - Pour commencer, créez un compte sur le site IDFM Prim : https://prim.iledefrance-mobilites.fr/fr - Ensuite, cliquez sur votre nom d'utilisateur en haut à droite et allez dans "Mes jetons d'authentification". - Cliquez enfin sur "Générer mon nouveau jeton" ![Capture d'écran du bouton "Générer mon nouveau jeton"](https://github.com/benoitcrauet/WebMIV/assets/9050929/41994708-7d36-4317-9817-9ffa5e1a38c1) 🔑 Notez bien ce jeton et conservez-le précieusement ! <ins>__Il ne vous sera plus redonné par le site.__</ins> <ins>Vous ne pouvez avoir qu'un seul jeton par compte.</ins> Autrement dit, si vous avez besoin d'interconnecter d'autres applications, vous devrez utiliser le même jeton pour les apps utilisant votre compte. Si vous regénérez un nouveau jeton, vous devrez le mettre à jour sur chaque application utilisant votre jeton. D'où l'intérêt de bien le noter quelque part, de manière sécurisée (dans votre gestionnaire de mots de passe, par exemple). ## Fonctionnement de WebMIV WebMIV va s'appuyer sur un système de vues préconfigurées contenant chacunes leurs propres paramètres. Vous pouvez ensuite afficher ces vues en utilisant l'argument `display=` dans l'URL. ## Configuration de WebMIV L'intégralité de la configuration se situe dans le fichier `settings.ini`. Voici la liste des paramètres de la section `[general]` : | Paramètre | Type | Description | |--|--|--| | `httpport` | integer | Port d'écoute du serveur web sur lequel WebMIV fonctionnera (port 80 par défaut). | | `apikey` | string | Le 🔑 jeton de tout à l'heure, vous vous souvenez ? Et bien, inscrivez-le ici ! | Nous passons ensuite à la configuration des vues. Chaque vues est en réalité une section du fichier `settings.ini`. Voici ce que chaque vue doit contenir comme paramètres : | Paramètre | Type | Decription | Valeur(s) | |--|--|--|--| | `linetype` | string | Défini le type de ligne. Permet d'adapter l'esthétique. | `rer`/`bus`/`tram`/`metro` | | `linenumber` | string | Numéro/lettre de la ligne. Permet d'adapter l'esthétique. | `A` pour le RER A, par exemple. | | `linecolor` | string | Couleur de la ligne en héxadécimal, sans le dièse. Permet d'adapter l'esthétique. | `FF4343` pour le RER A. | | `minimumwait` | integer | Nombre de secondes minimum d'attente requis pour afficher un trajet. | `180` pour exclure tous les trains arrivant dans moins de 3 minutes. | | `limit` | integer | Nombre maximal de trajets à afficher. 0 pour aucune limite. | `3` pour afficher maximum 3 trains. | | `displayname` | string | Nom complet de la vue, affiché dans le bandeau blanc en haut de l'interface. | `Val d'Europe - Direction Chessy` | | `displayclock` | boolean | Défini si l'horloge doit être visible sur l'affichage. | `true` pour afficher l'horloge, `false` pour la cacher | | `stationid` | integer | ID de l'Arrêt __OU__ de la Zone d'Arrêt. Un arrêt défini un quai, ou un abri de bus précis, tandis qu'une Zone d'Arrêt défini un arrêt, avec l'ensemble de ses quais ou abris. Pour récupérer les ID des Arrêts ou des Zones d'Arrêts, allez sur [la page dédiée sur IDFM Prim](https://data.iledefrance-mobilites.fr/explore/dataset/arrets-transporteur/custom/?disjunctive.fournisseurname). | `474003` pour le quai RER A de Val d'Europe, direction Chessy. | ### Gestion des filtres de vue Chaque vue dispose également de variables de filtres. Ces filtres permettent d'affiner l'affichage des trajets en cas, par exemple, de l'affichage d'un point d'arrêt majeur comportant plusieurs lignes et destinations. Pour connaître les valeurs à entrer dans ces filtres, rendez-vous dans la page web de votre vue, et ouvrez la console JavaScript avec la touche `F12` ou `Cmd+Alt+I` sur macOS, et entrez une des commandes suivantes : - `displayLines()` pour afficher toutes les lignes connues par l'afficheur - `displayDirections()` pour afficher toutes les directions connues par l'afficheur - `displayDestinations()` pour afficher toutes les destinations connues par l'afficheur ⚠️ __Attention__ : il est possible qu'en fonction de l'heure, toutes les directions, destinations ou lignes ne s'affichent pas. La console n'affiche que les données rencontrées depuis le rechargement de la page. => ___Je vous conseille de soit laisser la page tourner un petit moment avant de lancer la commande, soit faire cette opération en heure de pointe afin d'être certain que le système puisse avoir l'occasion de capturer toutes les datas possibles.___ Une fois que vous avez vos données de lignes, directions et/ou destinations, il vous suffit de copier/coller la ou les valeur(s) depuis la console directement dans votre fichier `settings.ini` dans les variables suivantes : | Paramètre | Type | Decription | |--|--|--| | `filterDestination[]` | string | Permet de filtrer une __destination__. La destination correspond au terminus du trajet. | | `filterDirection[]` | string | Permet de filtrer une __direction__. Différent de la destination, la direction va plutôt donner un sens global. | | `filterLine[]` | string | Inscrire le string __COMPLET__ de la référence de ligne. Les identifiants de référence de ligne IDFM peuvent être étranges, mais une valeur `STIF:Line::C00632:` est tout à fait valable. | Même si vous ne définissez pas de filtre, vous devez quand même laisser les variables `filterDestination[]`, `filterDirection[]` et `filterLine[]`, sans valeur. À partir moment où un filtre est défini, l'afficheur n'affichera __QUE__ les lignes, directions ou destinations désignées. __Les filtres agissent comme une whitelist.__ En l'absence de filtres définis, l'afficheur affichera tous les trajets, sans condition. ‼️ __Important : lorsque vous changez la configuration, vous devez relancer WebMIV.__ # Utilisation de WebMIV Maintenant que vous avez configuré et lancé WebMIV, il ne vous reste qu'à l'afficher ! Voici l'URL de WebMIV : ``` http://[IP-DU-WEBMIV]:[PORT]/ ``` Une liste des vues configurées dans `settings.ini` s'affichera alors. ![Capture d'écran de la liste des vues configurées](https://github.com/benoitcrauet/WebMIV/assets/9050929/94253cd7-a4f4-4553-888e-1c5a7af70581) ## Afficher une vue pré-configurée 💡 Vous pouvez également utiliser des 🔗 permaliens vers un affichage précis. Il vous suffit alors de rajouter l'argument suivant dans l'URL et de l'enregistrer dans votre navigateur, votre dashboard ou votre afficheur web : ``` http://[IP-DU-WEBMIV]:[PORT]/?display=[NOM-DE-LA-VUE] ``` ___Admettons par exemple que le serveur WebMIV ai pour IP `192.168.1.200` et le `httpport` du fichier `settings.ini` ai pour valeur `8080`.___ Pour afficher la vue préconfigurée `chateaudevincennes-ladefence`, vous devrez saisir l'URL suivant : ``` http://192.168.1.200:8080/?display=chateaudevincennes-ladefense ``` ![Capture d'écran de l'interface](https://github.com/benoitcrauet/WebMIV/assets/9050929/721bf2ed-4153-4a74-b0f4-64dba9cad546) Les prochains trajets s'afficheront alors, en tenant compte des paramètres propres à la vue sélectionnée. ## Surcharger la configuration d'affichage Vous pouvez rajouter dans l'URL appelé un ou plusieurs paramètres d'affichage permettant de surcharger certains paramètres configurés dans `settings.ini` : | Argument | Type | Decription | Exemple | |--|--|--|--| | `limit` | integer | Personnalise ponctuellement le nombre maximal de trajets à afficher, sans tenir compte de la configuration dans `settings.ini`. | `3` pour n'afficher que 3 trajets. | | `displayclock` | integer | Permet d'afficher ou de cacher l'horloge, sans tenir compte de la configuration dans `settings.ini`. | `1` pour forcer l'affichage, `0` pour cacher. | Voici un exemple avec la vue `versailleschantiers-montparnasse` en forçant l'affichage de seulement 3 trajets (utile si la vue est affichée sur un petit écran), et en cachant l'horloge : ``` http://192.168.1.200:8080/?display=versailleschantiers-montparnasse&limit=3&displayclock=0 ``` _**Avec** les arguments de surcharge de configuration :_ ![Capture d'écran](https://github.com/benoitcrauet/WebMIV/assets/9050929/e55c9d1d-1e48-4459-bcfd-fbc9deee3f33) _**Sans** les arguments de surcharge de configuration_ ![Capture d'écran](https://github.com/benoitcrauet/WebMIV/assets/9050929/53712565-400f-4d86-94aa-e1dbb5660591) ## Suivre un véhicule Vous avez repéré un train qui serait idéal pour votre sortie, mais vous devez vous préparer rapidement juste avant... Avec les temps d'attente qui évoluent, vous risqueriez de le confondre avec un autre, 15 minutes après, et de risquer de le rater. Ce serait fort fâcheux. 💡 **Vous pouvez donc cliquer sur le train qui vous intéresse** : ceci mettra votre train en surbrillance afin que vous puissiez le surveiller en un coup d'oeil, et ce même s'il change de position sur l'écran ! Pour désactiver le suivi d'un véhicule, re-cliquez tout simplement dessus. ![Capture d'écran de l'interface avec un train mis en surbrillance](https://github.com/benoitcrauet/WebMIV/assets/9050929/647632bf-114e-4887-9799-37ed47bc4393) > Voilà ! Vous n'avez maintenant plus d'excuse pour rater votre train. 🤓🚈 # Annexe : intégration de la fonte "Parisine" Si vous souhaitez que WebMIV s'affiche avec la fonte ___Parisine___ (la fonte officielle RATP), c'est possible ! Mais sachez cependant que la fonte Parisine est payante et sous licence et vous devrez vous la procurer légalement pour pouvoir l'intégrer à votre copie de __WebMIV__. Vous retrouverez dans le répertoire `htdocs/font/` les instructions pour intégrer la fonte Parisine dans le projet.
Afficheur web pour les prochains trains/bus/tram/métro sur le réseau Île-de-France Mobilités. 🚆🚋🚇🚌
css,domotic,html,http,javascript,lifestyle,nodejs,transport,france,iledefrance
2023-06-23T17:32:12Z
2024-05-03T09:18:22Z
null
1
0
46
0
0
3
null
NOASSERTION
JavaScript
mskian/next-cricket-score
main
# Next JS - Live Cricket Score This repo was Moved to - <https://github.com/sanwebinfo/next-cricket-score>
Simple web app to Get Live Ashes Test Cricket Score 2023.
cricket,cricket-api,cricket-app,cricket-score,css,html,javascript,next,next-api,nextjs
2023-06-16T13:27:37Z
2023-09-08T13:56:07Z
null
1
27
56
1
1
3
null
MIT
JavaScript
tjx666/leetcode-javascript-2023
main
# LeetCode JavaScript 2023 <div align="center"> [![test](https://github.com/tjx666/leetcode-javascript-2023/actions/workflows/test.yml/badge.svg)](https://github.com/tjx666/leetcode-javascript-2023/actions/workflows/test.yml) [![codecov](https://codecov.io/gh/tjx666/leetcode-javascript-2023/branch/main/graph/badge.svg?token=FQDHJODKYD)](https://codecov.io/gh/tjx666/leetcode-javascript-2023) <img src="https://img.shields.io/badge/progress-27/200-green" /> <img src="https://img.shields.io/badge/easy-23-green" /> <img src="https://img.shields.io/badge/medium-4-yellow" /> </div> ## 刷题顺序 1. [0002. 两数相加](https://leetcode.cn/problems/add-two-numbers/) 2. [0206. 反转链表](https://leetcode.cn/problems/reverse-linked-list/) 3. [0445. 两数相加 II](https://leetcode.cn/problems/add-two-numbers-ii/) 4. [0160. 相交链表](https://leetcode.cn/problems/intersection-of-two-linked-lists/) 5. [0141. 环形链表](https://leetcode.cn/problems/linked-list-cycle/) 6. [0142. 环形链表 II](https://leetcode.cn/problems/linked-list-cycle-ii/) 7. [0021. 合并两个有序链表](https://leetcode.cn/problems/merge-two-sorted-lists/description/) 8. [0203. 移除链表元素](https://leetcode.cn/problems/remove-linked-list-elements/) 9. [0083. 删除排序链表中的重复元素](https://leetcode.cn/problems/remove-duplicates-from-sorted-list/description) 10. [0876. 链表的中间结点](https://leetcode.cn/problems/middle-of-the-linked-list/description/) 11. [0234. 回文链表](https://leetcode.cn/problems/palindrome-linked-list/) 12. [1290. 二进制链表转整数](https://leetcode.cn/problems/convert-binary-number-in-a-linked-list-to-integer/description/) 13. [0144. 二叉树的前序遍历](https://leetcode.cn/problems/binary-tree-preorder-traversal/) 14. [0094. 二叉树的中序遍历](https://leetcode.cn/problems/binary-tree-inorder-traversal/description/) 15. [0145. 二叉树的后序遍历](https://leetcode.cn/problems/binary-tree-postorder-traversal/description/) 16. [0102. 二叉树的层序遍历](https://leetcode.cn/problems/binary-tree-level-order-traversal/description/) 17. [0104. 二叉树的最大深度](https://leetcode.cn/problems/maximum-depth-of-binary-tree/description/) 18. [0226. 翻转二叉树](https://leetcode.cn/problems/invert-binary-tree/description/) 19. [0257. 二叉树的所有路径](https://leetcode.cn/problems/binary-tree-paths/description/) 20. [0101. 对称二叉树](https://leetcode.cn/problems/symmetric-tree/) 21. [0111. 二叉树的最小深度](https://leetcode.cn/problems/minimum-depth-of-binary-tree/) 22. [0543. 二叉树的直径](https://leetcode.cn/problems/diameter-of-binary-tree/) 23. [0100. 相同的树](https://leetcode.cn/problems/same-tree/) 24. [0617. 合并二叉树](https://leetcode.cn/problems/merge-two-binary-trees/) 25. [0236. 二叉树的最近公共祖先](https://leetcode.cn/problems/lowest-common-ancestor-of-a-binary-tree/description/) 26. [14. 最长公共前缀](https://leetcode.cn/problems/longest-common-prefix/description/) 27. [1556. 千位分隔数](https://leetcode.cn/problems/thousand-separator/description/)
每逢面试必刷题
algorithm,font-end,interview,javascript,leetcode
2023-06-12T10:42:34Z
2024-01-07T05:27:00Z
null
1
0
71
0
0
3
null
null
JavaScript