Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lukakerr/lukakerr.github.io
Github pages site, built with jekyll
https://github.com/lukakerr/lukakerr.github.io
jekyll
Last synced: about 2 months ago
JSON representation
Github pages site, built with jekyll
- Host: GitHub
- URL: https://github.com/lukakerr/lukakerr.github.io
- Owner: lukakerr
- Created: 2018-03-31T03:34:52.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-11-04T23:42:00.000Z (about 1 year ago)
- Last Synced: 2023-11-05T00:24:27.164Z (about 1 year ago)
- Topics: jekyll
- Language: HTML
- Homepage: https://lukakerr.github.io
- Size: 138 MB
- Stars: 4
- Watchers: 4
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# lukakerr.github.io
My Github Pages jekyll site.
Front matter [color reference](https://raw.githubusercontent.com/Diastro/github-colors/master/github-colors.json)
### Start
`bundle exec jekyll serve`
### Resize photos
To resize all to 700px wide:
```
# Convert to 700px wide
convert '*.jpg' -set filename:fn '%[basename]-small' -geometry 700x '%[filename:fn].jpg'
```To create a cover.jpg:
```
# Crop to 393px tall and wide
convert ./cover.jpg -gravity center -crop 393x393+0+0 cropped.jpg
```