Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hikari-no-yume/crockfordfacts.org
Facts about Douglas Crockford
https://github.com/hikari-no-yume/crockfordfacts.org
Last synced: 17 days ago
JSON representation
Facts about Douglas Crockford
- Host: GitHub
- URL: https://github.com/hikari-no-yume/crockfordfacts.org
- Owner: hikari-no-yume
- License: other
- Created: 2015-04-01T01:31:57.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-21T18:46:58.000Z (about 9 years ago)
- Last Synced: 2024-10-31T05:08:23.009Z (2 months ago)
- Language: JavaScript
- Homepage: http://crockfordfacts.org/
- Size: 7.81 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
Read me
=======crockfordfacts.org is a website containing many facts about [Douglas Crockford](http://crockford.com). I made this because I was sad about the demise of crockfordfacts*.com*, and luckily I could recover many of its facts from the tweets of the [@CrockfordFacts](http://twitter.com/CrockfordFacts) bot someone had made for that site, and from IRC logs of [CrockBot](https://github.com/mikeal/crockbot), a similar IRC bot.
Written in JavaScript using node.js. ![JSLint](http://www.jslint.com/jslintpill.gif) compliant, of course: [jslint.com](http://www.JSLint.com/)
The website proper is in `src`. There's a tool for collecting facts from that old Twitter bot in `collector`.
Website setup works like so:
1. `npm install` (installs dependencies)
2. `cp config.example.json config.json && vim config.json` (set the port)
3. One of:
* `curl http://crockfordfacts.org/.json > facts.json`
* `cp facts.example.json facts.json && vim facts.json`
* `cp ../collector/facts.json facts.json`
4. `node site.js` (runs the site)You may want to reverse-proxy it. See the example nginx config file in `config/nginx/crockfordfacts.org`.