Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tarektouati/programming-quotes
Computer programming wisdom and quotes from @codewisdom Twitter account
https://github.com/tarektouati/programming-quotes
elm javascript programming-quotes quotes
Last synced: 4 days ago
JSON representation
Computer programming wisdom and quotes from @codewisdom Twitter account
- Host: GitHub
- URL: https://github.com/tarektouati/programming-quotes
- Owner: Tarektouati
- Created: 2019-08-27T09:46:13.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T03:26:32.000Z (about 2 years ago)
- Last Synced: 2024-10-28T10:45:09.779Z (about 2 months ago)
- Topics: elm, javascript, programming-quotes, quotes
- Language: JavaScript
- Homepage: https://nifty-leakey-7b4a12.netlify.com
- Size: 1.61 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# programming-quotes
## Configuration :
### Requirement :
It require `ELM_APP_URL` env which is your API url.
this app only perform a `GET` request on the endpoint provided :
```bash
curl -X GET \
```### API :
API should responde a list of Tweets in this format :
```json
[{ "text": "content of tweet", "created_at": "Mon Aug 26 17:01:17 +0000 2019" }]
```You can check out the [`Tweet` type](https://github.com/Tarektouati/programming-quotes/blob/master/src/API/Quotes.elm#L8) to learn more.