As a <user or stakeholder type>
I want <some software feature>
So that <some business value>
(http://blog.crisp.se/2014/09/25/david-evans/as-a-i-want-so-that-considered-harmful)
In order to <achieve some business value>,
As a
As a <user or stakeholder type>
I want <some software feature>
So that <some business value>
(http://blog.crisp.se/2014/09/25/david-evans/as-a-i-want-so-that-considered-harmful)
In order to <achieve some business value>,
As a
| <?php | |
| // This can be found in the Symfony\Component\HttpFoundation\Response class | |
| const HTTP_CONTINUE = 100; | |
| const HTTP_SWITCHING_PROTOCOLS = 101; | |
| const HTTP_PROCESSING = 102; // RFC2518 | |
| const HTTP_OK = 200; | |
| const HTTP_CREATED = 201; | |
| const HTTP_ACCEPTED = 202; |
| <script setup> | |
| import { ref, computed } from 'vue' | |
| const header = ('Shopping list app') | |
| const characterCount = computed(() => { | |
| return newItem.value.length | |
| }) | |
| const editingItem = ref(false) | |
| const items = ref([ | |
| { |
Other people's projects:
My projects (tutorials are on my blog at http://maxoffsky.com):