- Owner: Augusto driving technical execution
- Last week: Process optimization
- AI-assisted dev (Claude Code, bmad, vibe)
- Restructured stories + epics
- Goal: clearer visibility for Will
This file contains hidden or 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
| # === REMOTE EXPORT & UPLOAD SCRIPT === | |
| # | |
| # RUN ON OLD SERVER (one line in IEx): | |
| # | |
| # username = "amadeu"; :inets.start(); :ssl.start(); {:ok, {{_, 200, _}, _, body}} = :httpc.request(:get, {~c"https://raw.githubusercontent.com/snapcall-me/life/development/priv/migration/export_and_upload.exs", []}, [], []); Code.eval_string(to_string(body), [username: username]) | |
| # | |
| # This will: | |
| # 1. Export account data to JSON | |
| # 2. Upload to Cloudinary | |
| # 3. Print the download URL for importing on staging |
¡Bienvenido al Preneur Frontend Challenge! 🎉
Este desafío está diseñado para evaluar tu capacidad para construir interfaces impactantes, funcionales y atractivas. Queremos ver tu dominio en UI/UX, asegurando que puedas crear una interfaz fluida, moderna y pixel-perfect.
Tu misión es diseñar e implementar un modal interactivo para crear un nuevo thread, tomando como referencia la interfaz y experiencia de usuario de Meta Threads.
This file contains hidden or 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
| { | |
| "data": { | |
| "optInForm": { | |
| "account": { | |
| "avatarUrl": "https://cdn.filestackcontent.com/KCfpYP8sTWqIRU6DRCvf", | |
| "isVerified": "true", | |
| "name": { | |
| "values": "{\"en\":\"Brian White\"}" | |
| } | |
| }, |
This file contains hidden or 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
| // | |
| // The mutation | |
| // | |
| mutation test($createMember: CreateMemberViaOptInFormInput) { | |
| createMemberViaOptInForm(input: $createMember) { | |
| member { | |
| createdVia | |
| data | |
| insertedAt |
This file contains hidden or 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
| // | |
| // GQL query | |
| // | |
| mutation test($createMember: CreateMemberViaOptInFormInput) { | |
| createMemberViaOptInForm(input: $createMember) { | |
| member { | |
| createdVia | |
| data | |
| insertedAt |
This file contains hidden or 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
| ///////////////// | |
| // The query | |
| ///////////////// | |
| query { | |
| optInForm(shortId: "an id") { | |
| account { | |
| avatarUrl |
This file contains hidden or 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
| query { | |
| captureForm(shortId: "an id") { | |
| account { | |
| avatarUrl | |
| isVerified | |
| } | |
| afterSubmission | |
| avatarMedia { | |
| extensionType | |
| sourceUuid |
This file contains hidden or 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
| # app/controllers/institution_controller.rb | |
| class InstitutionsController < ApplicationController | |
| def create | |
| if uses_intuit? | |
| #existing code | |
| else | |
| service_response = Services::YodleeAccount::Register.call(current_user, params, id) | |
| redirect to_some_place_after_success_login and return if service_response[:status] == :complete | |
| render 'mfa_form', mfa_form: service_response[:mfa_form] and return if service_response[:status] == :missing_mfa |
This file contains hidden or 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
| #Code downloaded from https://developer.yodlee.com/Aggregation_API/Sample_Apps/RUBY | |
| require './aggregation/SiteApp' | |
| require './util/Encryption' | |
| $encryptCall = Encryption.new | |
| $siteCall = SiteApp.new | |
| $providerAccountId = '' | |
| class AddSiteAccount |
NewerOlder