Skip to content

Instantly share code, notes, and snippets.

@nirname
nirname / sqlformat.sh
Last active August 8, 2016 17:29
Using `sqlformat` for pgAdmin3
#!/bin/bash
/usr/local/bin/sqlformat --keywords upper --reindent --identifiers lower -
@nirname
nirname / notifier.rb
Last active July 10, 2018 12:29
Send email through ApplicationMailer with file attachments from ActiveStorage
response.docs.each_with_index do |doc, i|
attachments[doc.filename.to_s] = {:mime_type => doc.blob.content_type, :content => doc.blob.download }
end