Skip to content

Instantly share code, notes, and snippets.

@nirname
nirname / stdin.sh
Created August 8, 2016 17:29
Read stdin in shell
myvar=`cat`
echo "$myvar"
@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