-
Notifications
You must be signed in to change notification settings - Fork 1
CSUA/csua-static-website
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Getting started:
================
Install jekyll:
$ gem install bundler jekyll
Serve files:
$ bundle exec jekyll serve
Install webpack/javascript dependencies
$ npm install
Build Javascript:
$ webpack
Misc commands
=============
jq command to convert old database
cat datadump.json | jq '[. | map(select(.model=="db_data.officer")) | .[].fields]' > officers.json
jq command to convert json to csv, when the json is structured as a list of
objects
cat officers.json | jq -r '(.[0] | keys_unsorted),(.[] | [.[]]) | @csv' > officers.csv
Resize office images
find . -name '*.jpg' | xargs -L1 -I{} convert "{}" -resize 200x200^ "{}"
Re-encode gifs
ffmpeg -i Neil_Lingarkar.gif -c:v libvpx -crf 12 -b:v 500K -auto-alt-ref 0 Neil_Lingarkar.webm
(And since mp4 is more well suppported)
ffmpeg -i Neil_Lingarkar.webm Neil_Lingarkar.mp4
About
[NOT IN USE/DEPRECATED] Static version of the website using a site generator (Jekyll)
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published