- Lots of muslin blankets you'll need those in many occations.
- Nosefrida suck the נזלת
- baby carruer helps cary baby around while sleeping
- [Baby monitor](https://www.amazon.ca/dp/B01CW4AR9K/ref=redir_mobile_desktop?_encoding=UTF8&aaxitk=8bda9d376600ef1d3bfdc95fa55042c3&hsa_cr_id=7749195250701&pd_rd_plhdr=t&pd_rd_r=0f2279b4-c673-
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def upload_stream(file_stream, file_format) | |
filename = "Report_#{@unit.serial_number}.#{file_format}" | |
s3 = Aws::S3::Resource.new(region: ENV['AWS_REGION']) | |
obj = s3.bucket("flowlink-daily-reports-#{Rails.env}").object(filename) | |
obj.put(body: file_stream) | |
end | |
def upload_file(file_path) | |
s3 = Aws::S3::Resource.new(region: ENV['AWS_REGION']) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const rp = require('request-promise') | |
const Botkit = require('botkit'); | |
const emojiDict = require("emoji-dictionary"); | |
const shuffle = require('shuffle-array') | |
const getRandomInt = (min, max) => { | |
return Math.floor(Math.random() * (max - min + 1)) + min; | |
} | |
const controller = Botkit.slackbot(); |