https://github.com/controversial/controversial.io
The previous iteration of my portfolio site (2016-2019)
https://github.com/controversial/controversial.io
Last synced: about 1 year ago
JSON representation
The previous iteration of my portfolio site (2016-2019)
- Host: GitHub
- URL: https://github.com/controversial/controversial.io
- Owner: controversial
- License: mit
- Created: 2016-08-23T22:56:43.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2021-01-05T03:02:37.000Z (over 5 years ago)
- Last Synced: 2025-04-19T10:13:15.525Z (about 1 year ago)
- Language: JavaScript
- Homepage: https://controversial.io/
- Size: 10.2 MB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [controversial.io](https://controversial.io/) [](https://travis-ci.com/controversial/controversial.io)
This is my website. There are many like it, but this one is mine.
This website is comprised entirely of my own code – the only external libraries loaded are polyfills to improve browser support.
# Code style
All of the JavaScript in this website is written using next generation ES6 features. The ES6 code is compliant with [Airbnb's JavaScript style guide](https://github.com/airbnb/javascript). The code is then transpiled to ES5 using [Babel](https://babeljs.io) so that older browsers can execute it.
All of the CSS for this website is written using the [Sass indented syntax](http://sass-lang.com/documentation/file.INDENTED_SYNTAX.html). This is linted using [sass-lint](https://github.com/sasstools/sass-lint) and a custom style guide (found in `.sass-lint.yml`).
You can check code style by running `npm test` and can compile everything with `npm run build`.