Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```