- Pick one project idea.
- Each person picks one role: PM/PO, UX/UI, Dev, or Learning/Coach.
- Copy the matching role prompt into your agent.
- Paste all role outputs into the consolidation prompt.
- Ask for the short shared spec.
- Review the shared spec from your role.
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
| public class TestMessages extends ActivityTest { | |
| @Test | |
| public void writeMessageToContact() throws Exception{ | |
| onView(withId(userFieldId)).perform(typeText("test_user@domain.com"), closeSoftKeyboard()); | |
| onView(withId(is(passwordFieldId))).perform(scrollTo()).check(matches(isDisplayed())).perform(typeText("mySecretPassword"), closeSoftKeyboard()); | |
| onView(withId(is(loginButtonId))).perform(scrollTo(), click()); |
I hereby claim:
- I am iltempo on github.
- I am iltempo (https://keybase.io/iltempo) on keybase.
- I have a public key whose fingerprint is AD64 FFDF 4983 CE13 F9F4 8EC0 447B 4556 0531 38E8
To claim this, I am signing this object:
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
| notify_deploy_environments = %w(staging production integration) | |
| notify_deploy_roles = %w(solo app_master) | |
| if notify_deploy_environments.include?(environment) && notify_deploy_roles.include?(current_role) | |
| run "cd #{current_path} && bundle exec rake airbrake:deploy TO=#{environment} REVISION=#{revision} USER=`whoami` REPO=#{repo}" | |
| end |
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
| # Method converting hash of attributes to url string | |
| def to_url_params(params) | |
| params.each do |key, value| | |
| "#{CGI::escape(key.to_s)}=#{CGI::escape(value.to_s)}" | |
| end.join('&') | |
| end |