Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/SebastianSzturo/kaisuu
Japan's Kanji Usage on Twitter in Realtime
https://github.com/SebastianSzturo/kaisuu
elixir hex japan japanese tweets twitter
Last synced: about 1 month ago
JSON representation
Japan's Kanji Usage on Twitter in Realtime
- Host: GitHub
- URL: https://github.com/SebastianSzturo/kaisuu
- Owner: SebastianSzturo
- Archived: true
- Created: 2016-02-15T17:37:56.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-17T12:08:43.000Z (almost 9 years ago)
- Last Synced: 2024-08-02T02:11:42.610Z (4 months ago)
- Topics: elixir, hex, japan, japanese, tweets, twitter
- Language: Elixir
- Homepage: https://kaisuu.herokuapp.com/
- Size: 69.3 KB
- Stars: 67
- Watchers: 5
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- freaking_awesome_elixir - Elixir - Watch Japan's Kanji Usage on Twitter in Realtime. (Examples and funny stuff)
- fucking-awesome-elixir - kaisuu - Watch Japan's Kanji Usage on Twitter in Realtime. (Examples and funny stuff)
- awesome-elixir - kaisuu - Watch Japan's Kanji Usage on Twitter in Realtime. (Examples and funny stuff)
README
# 回数 - Kaisuu
Kaisuu streams live data from Twitter to gather kanji frequency usage patterns in tweets. It can be used to optimize the order of your kanji studies or to make assumptions about what people in Japan are tweeting about.
## Installation
Install dependencies with
```
mix deps.get
```Install Node.js dependencies with
```
npm install
```Create a `./config/dev.secret.exs` with your twitter credentials
```Elixir
use Mix.Configconfig :extwitter, :oauth, [
consumer_key: "CONSUMER_KEY",
consumer_secret: "CONSUMER_SECRET",
access_token: "ACCESS_TOKEN",
access_token_secret: "ACCESS_TOKEN_SECRET"
]
```Start Phoenix endpoint with
```
mix phoenix.server
```Now you can visit [`localhost:4000`](http://localhost:4000) from your browser.