All Projects → benhoneywill → stoic-quotes

benhoneywill / stoic-quotes

Licence: MIT license
An app that dispenses Stoic wisdom with bite-size quotes.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to stoic-quotes

aurelius
Quotes from Marcus Aurelius (Elm SPA)
Stars: ✭ 22 (-12%)
Mutual labels:  philosophy, aurelius
motivate
⚡ motivate ⚡ - A simple script to print random motivational quotes. Highly influenced by linux command fortune.
Stars: ✭ 24 (-4%)
Mutual labels:  quotes, quote-generator
github-readme-quotes
Dynamic quote generator for your GitHub readmes | Give a poetic touch to readmes
Stars: ✭ 128 (+412%)
Mutual labels:  quotes, quote-generator
Orocommerce
Main OroCommerce package with core functionality.
Stars: ✭ 148 (+492%)
Mutual labels:  quotes
Go Quote
Yahoo finance/Google finance/Coinbase/Bittrex/Binance/Tiingo historical quote downloader library and cli written in golang
Stars: ✭ 198 (+692%)
Mutual labels:  quotes
self-organizing-predictions
In which prediction agents organize themselves through competition.
Stars: ✭ 24 (-4%)
Mutual labels:  philosophy
springcrm
An open-source CRM.
Stars: ✭ 14 (-44%)
Mutual labels:  quotes
Node Finance
Module for portfolio optimization, prices and options
Stars: ✭ 101 (+304%)
Mutual labels:  quotes
Quotes
Quotes Status Creator lets you share quotations as status images on social media
Stars: ✭ 31 (+24%)
Mutual labels:  quotes
itflow
Free and open-source web application for MSPs that streamlines IT documentation, ticketing, invoicing, and accounting, an alternative to ITGlue. It helps in managing and organizing client's IT information, increasing efficiency and profitability.
Stars: ✭ 282 (+1028%)
Mutual labels:  quotes
porn-description-generator
Generates new porn descriptions based on an edited dataset of xhamster video descriptions uploaded between 2007-2016.
Stars: ✭ 40 (+60%)
Mutual labels:  quote-generator
Ron Swanson Quotes
Node.js server for providing Ron Swanson quotes
Stars: ✭ 212 (+748%)
Mutual labels:  quotes
awesome-philosophy
A curated list of awesome philosophy
Stars: ✭ 119 (+376%)
Mutual labels:  philosophy
Fortune Mod
Implementation of the Unix fortune command for displaying a random quotation, for Linux and other systems.
Stars: ✭ 156 (+524%)
Mutual labels:  quotes
wallstreet
Stock Quotes and Charts for the Terminal
Stars: ✭ 75 (+200%)
Mutual labels:  quotes
Kelsey Hightower Wisdom
tweets & quotes from Kelsey Hightower 🦉📜
Stars: ✭ 128 (+412%)
Mutual labels:  quotes
rt-quotes
Цитаты подкаста Радио-Т
Stars: ✭ 19 (-24%)
Mutual labels:  quotes
Nietzsche
Scrap quotes from Goodreads and schedule random tweets.
Stars: ✭ 44 (+76%)
Mutual labels:  quotes
bookmarker
A personal project to help me retain information from books
Stars: ✭ 63 (+152%)
Mutual labels:  quotes
website
The Teen Quotes' website
Stars: ✭ 16 (-36%)
Mutual labels:  quotes

Stoic Quotes

A simple app that displays random Stoic quotes from Seneca, Marcus Aurelius, and Epictetus.

stoic-quotes.com

Please feel free to make a pull request if you want to add your favourite Stoic quote to the app 🙂

Using the API

This app exposes a public API which you are free to use to fetch random Stoic quotes for use in your own applications.

Endpoints

Get a random Stoic quote

GET https://stoic-quotes.com/api/quote
Example JSON response
{
  "text": "All that exists is the seed of what will emerge from it.",
  "author": "Marcus Aurelius"
}

Get a list of random Stoic quotes

GET https://stoic-quotes.com/api/quotes

Optionally pass in a num param to change the number of quotes returned. num defaults to 10, and can not be higher than 100.

GET https://stoic-quotes.com/api/quotes?num=10
Example JSON response
[
  {
    "text": "All that exists is the seed of what will emerge from it.",
    "author": "Marcus Aurelius"
  },
  {
    "text": "If it doesn't harm your character, how can it harm your life?",
    "author": "Marcus Aurelius"
  }
]
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].