A portable workflow for using agents on engineering work without stuffing the whole job into one long context window.
Core idea:
Break a job into roles, give each role its own context, and pass only structured handoffs between them.
Loop:
| def execute | |
| until (user_input == "q") || (@position_match == 4) | |
| print "enter your guess ~> " | |
| @user_input = gets.chomp.downcase | |
| validator = GuessValidator.new(@user_input) | |
| @turns += 1 | |
| @turns_left -= 1 | |
| if validator.correct_length? == false || validator.correct_letters? == false | |
| puts 'Your guess must be a length of FOUR and' | |
| puts "be of these colors #{'(r)ed'.red}, #{'(y)ellow'.yellow}, #{'(g)reen'.green}, #{'(b)lue'.blue}" |
| Intro: | |
| End of Death | |
| "This isn't about how to live forever. Rather live indefinately." | |
| Body: | |
| Discuss the technologies, companies, and people that are going to make it happen. | |
| Social ramifications/criticism | |
| Conclusion: | |
| Resources |
What does it mean for an application to be multi-tenant? -serves many clients from one application on one server.
Why would you want to build an application to be multi-tenant? -so you only have to build ONE thing that can serve many people instead of many things to serve many people
How do you implement multi-tenancy at the data / database level? no idea
How do Active Record scopes help keep tenant data segregated?
| 1. What's the difference between a cookie and a session? | |
| 2. What's serialization and how does it come into play with cookies? | |
| 3. Can a cookie be shared by more than one user? How/why? | |
| 4. What would it mean to store a shopping cart in a cookie? | |
| 5. What advantages/disadvantages are there between cookie-stored carts and | |
| database-stored carts? |
| Here’s a list of the find methods that the spec harness uses. | |
| Please update if you find others | |
| FOR CUSTOMERS: | |
| find_by_last_name "Ullrich" | |
| find_all_by_first_name "Sasha” | |
| find_by_id | |
| FOR INVOICE_ITEMS: |