Skip to content

Instantly share code, notes, and snippets.

View marisastrong's full-sized avatar
💭
shufflin'

marisa strong marisastrong

💭
shufflin'
View GitHub Profile
@marisastrong
marisastrong / DMPHub-IAS-Review.txt
Created March 30, 2022 19:01
DMPHub Review with IAS
March 30, 2022
IAS DMPHub discussion
Cloudfront / API Gateway - WAF can go in front of these. So probably don't need an ELB.
High Availability is offered in Application Logic Tier with how many containers you have, etc
Fargate is hourly charged, slightly higher than ECS. do not have manage underlying Docker hosts, have to overprovision it.
can get away with running something not by the hour.
do work in stage - AWS Console is new

Keybase proof

I hereby claim:

  • I am marisastrong on github.
  • I am mstrong (https://keybase.io/mstrong) on keybase.
  • I have a public key ASCXNN0wbL16WU1jk2kq0pvJytN7PegGUBjrw6d7_4JreQo

To claim this, I am signing this object:

@marisastrong
marisastrong / filename.extension
Created December 8, 2017 19:37
This is where we put some information on the code snippet what it does and why it is useful to use
/* this is my gist. can be code if i want. */
ids = []
Template.find_by_sql(id_query).each do |templ|
ids << templ.id
end
Template.includes(:org).where(id: ids).order('orgs.name, templates.title')