I hereby claim:
- I am Gowiem on github.
- I am gowiem (https://keybase.io/gowiem) on keybase.
- I have a public key whose fingerprint is A9EF C5FB 5653 47B5 9038 2B42 2838 626E 0AAC 0ECD
To claim this, I am signing this object:
#!/usr/bin/env bash | |
### | |
### This is intended to be copied and stored alongside your Terraform code. This keeps a historical record of your various migrations. | |
### It requires editing for each migration that you want to do according to the source + destination root modules and the resources you intend to move. | |
### | |
### This is dependent on the $ATMOS_STACK environment variable (available when using Atmos / Spacelift automated via https://github.com/cloudposse/terraform-spacelift-cloud-infrastructure-automation) | |
### for the WORKSPACE that you're moving from, but you can obviously update that if you're not working in that environment. | |
set -eu -o pipefail |
#!/bin/zsh | |
if [ ! -f README.yaml ]; then | |
echo "Too old." | |
exit 0 | |
fi | |
if [ ! -f versions.tf ]; then | |
echo "Too old." | |
exit 0 |
#!/bin/bash | |
GITHUB_USERNAME=Gowiem | |
MINS_AGO=$(date -v-30M -u +"%Y-%m-%dT%H:%M:%SZ") | |
PRS_CREATED_RECENTLY=$(curl -u $GITHUB_USERNAME:$GITHUB_API_TOKEN \ | |
-H "Accept: application/vnd.github.v3+json" \ | |
"https://api.github.com/issues?since=$MINS_AGO&per_page=100") | |
PR_URLS=($(echo $PRS_CREATED_RECENTLY | jq -r ".[].pull_request.url | @sh")) |
#!/bin/bash | |
if [ ! -f README.yaml ]; then | |
echo "Too old." | |
exit 0 | |
fi | |
if [ ! -f versions.tf ]; then | |
echo "Too old." | |
exit 0 |
#!/bin/bash | |
if [ ! -f README.yaml ]; then | |
echo "Too old." | |
exit 0 | |
fi | |
if [ ! -d ./test/src/ ]; then | |
echo "Too old." | |
exit 0 |
I hereby claim:
To claim this, I am signing this object:
remote_var: "val" |
import Ember from 'ember'; | |
import DS from 'ember-data'; | |
const { RSVP } = Ember; | |
const { PromiseObject } = DS; | |
async function loadSections(form) { | |
return form.get('formSections'); | |
} |
import Ember from 'ember'; | |
export default Ember.Mixin.create({ | |
normalizeQueryResponse(store, clazz, payload) { | |
const result = this._super(...arguments); | |
result.meta = result.meta || {}; | |
if (payload.links) { | |
result.meta.pagination = this.createPageMeta(payload.links); | |
} |
In a recent project, I put together Rails API backend and a Ember CLI frontend for one of my awesome clients. With Rails5, Devise, and Ember Simple Auth Devise it's a beaut of a project; Being both a pleasure to work in as well as being an environment which is highly productive. One tiny hill I had to run up while working on this project was using the DeviseInvitable (DV) plugin to create a email invite sign up flow for the app's users. DV adds some out of the box routes and a mailer to your application so you can simply call User.invite!(email: '[email protected]')
and it will create a user, assign them an invite token, and set them up so they can sign up via the email that it sends out.
In my project, I needed to make this system work with my Ember only frontend. This was a simple enough process but requir