Skip to content

Instantly share code, notes, and snippets.

View rectangular's full-sized avatar

Geof Crowl rectangular

View GitHub Profile
@rectangular
rectangular / convert.sh
Created April 23, 2020 00:20
Convert multiple PNG images to JPGs using the guetzli encoder. Threaded.
#!/bin/bash
# This requires the guetzli jpg encoder:
# https://github.com/google/guetzli/
# Set the desired max quality
# Quality setting of 84 is the lowest google/guetzli allows :(
# Use my fork of guetzli if you would like to use lower quality settings
# https://github.com/rectangular/guetzli
QUALITY=84
@rectangular
rectangular / assign-if-nil.swift
Created December 21, 2017 22:59
??= An operator that will assign the left hand value to the right hand value if the left hand value is nil
/**
??= An operator that will assign the left hand value
to the right hand value if the left hand value is nil
Example Usage:
```
var str: String?
str ??= "Bob"