Skip to content

Commit

Permalink
Merge branch 'main' into b-holiday-quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
seths10 authored Oct 25, 2022
2 parents 18113d0 + 99c5bac commit a9df1fb
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 7 deletions.
18 changes: 15 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,20 @@

This is a website for generating random quotes which can be tweeted.

Please give this project a star 🌟 and don't forget to follow me 😊.
This is a website for generating random quotes which can be tweeted.
Using basic HTML,CSS,JS with a few helpful packages

The generate button picks text and author out of a list of quotes from quote.js

The tweet this. redirect you to tweet text box url with the quote you generated

copy qoute basically copies the current quote

If you are looking to make your first contribution, follow the steps below.
the download button uses the package [npm-text-image](https://www.npmjs.com/package/text-image) to capture and format the quote to image/png and saves it to your local storage.

Please give this project a star 🌟 and don't forget to follow me 😊.

If you are looking to make your first contribution, follow the steps below.
Check the CONTRIBUTING.md file file if you are already familiar with the git workflow.

<img align="right" width="300" src="https://firstcontributions.github.io/assets/Readme/fork.png" alt="fork this repository" />
Expand Down Expand Up @@ -101,9 +112,10 @@ Now submit the pull request.
Soon I'll be merging all your changes into the master branch of this project. You will get a notification email once the changes have been merged.

## Run In Docker

```
docker build -t quotegen ./
docker run -p 8080:80 quotegen
```

Then open localhost:8080 from local browser.
Then open localhost:8080 from local browser.
16 changes: 12 additions & 4 deletions js/quotes.js
Original file line number Diff line number Diff line change
Expand Up @@ -1681,7 +1681,7 @@ const quotes = [
},
{
text: "Most people are other people. Their thoughtx are someone else's opinions, their lives a mimicry, their passions a quotation.",
author: 'Oskar Wilde',
author: 'Oscar Wilde',
},
{
text: "We accept the reality of the world with which we are presented. It's as simple as that.",
Expand Down Expand Up @@ -3845,7 +3845,7 @@ const quotes = [
},
{
text: "Most people are other people. Their thoughtx are someone else's opinions, their lives a mimicry, their passions a quotation.",
author: 'Oskar Wilde',
author: 'Oscar Wilde',
},
{
text: "We accept the reality of the world with which we are presented. It's as simple as that.",
Expand Down Expand Up @@ -5974,7 +5974,7 @@ const quotes = [
},
{
text: "Most people are other people. Their thoughtx are someone else's opinions, their lives a mimicry, their passions a quotation.",
author: 'Oskar Wilde',
author: 'Oscar Wilde',
},
{
text: "We accept the reality of the world with which we are presented. It's as simple as that.",
Expand Down Expand Up @@ -6627,5 +6627,13 @@ const quotes = [
{
text: 'The obstacle in the path becomes the path.',
author: 'Ryan Holiday',
},
},
{
text: 'You’ll never achieve 100 percent if 99 percent is okay.',
author: 'Will Smith',
},
{
text: "Many of life's failures are people who did not realize how close to success they were when they gave up.",
author: 'Thomas Edison',
}
];

0 comments on commit a9df1fb

Please sign in to comment.