This file contains 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
#!/bin/sh | |
SCRIPTNAME=$(basename $0) | |
CURRENT_DIR=$(cd $(dirname $0);pwd) | |
REPO_PATH="$CURRENT_DIR/image-merge-conflict-test-repo" | |
if [ -d "$REPO_PATH" ]; then | |
rm -fr "$REPO_PATH" | |
fi |
This file contains 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
`rm -rf *` | |
`sudo make -me care --dry-run` | |
$CATCH_PHRASE_NOT_FOUND | |
*swish* nothin' but net | |
...Oh, sorry, I have to take this... BRB | |
0x8BADF00D | |
110% | |
:joy_cat: | |
:knife: :knife: :knife: :knife: :knife: :knife: :knife: | |
:octopus: who knows !? |
- Do you have a smartphone, what’s your favorite app? How would you test it?
- Tell me about your favorite bug that you found and reported.
- What are the benefits of an exploratory approach to software testing? Downsides?
- Where do test cases fit into your typical project lifecycle in an agile project in the client services world?
- Where does design fit into your test coverage strategy? How do you work with designers?
- Do you have any view on QA versus QC versus Test nomenclature?
Read books.
These teach you:
- ⭐ The kind of Exploratory testing you need to know in modern environments
- How to get started in web auto testing for the complete neophyte
- WebAIM - Web Development for Designers - https://webaim.org/resources/designers/
- Salesforce - 7 Things Every Designer Needs to Know about Accessibility https://medium.com/salesforce-ux/7-things-every-designer-needs-to-know-about-accessibility-64f105f0881b
- https://usecontrast.com (https://usecontrast.com/guide)
- Photosensitive Epilepsy Analysis Tool PEAT! https://trace.umd.edu/peat
- https://hexnaw.com/ - Hex Naw is a tool that helps designers and developers test entire color systems for contrast and accessibility. Plug in your palette or color system and let Hex Naw do the rest.
- Color Oracle: colorblind simulator for Mac, Linux and Windows http://colororacle.org Shifts your screen to see anything in 3 blindness types
This file contains 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
apiVersion: extensions/v1beta1 | |
kind: PodSecurityPolicy | |
metadata: | |
name: restricted | |
annotations: | |
seccomp.security.alpha.kubernetes.io/allowedProfileNames: 'docker/default' | |
apparmor.security.beta.kubernetes.io/allowedProfileNames: 'runtime/default' | |
seccomp.security.alpha.kubernetes.io/defaultProfileName: 'docker/default' | |
apparmor.security.beta.kubernetes.io/defaultProfileName: 'runtime/default' | |
spec: |
Picking the right architecture = Picking the right battles + Managing trade-offs
- Clarify and agree on the scope of the system
- User cases (description of sequences of events that, taken together, lead to a system doing something useful)
- Who is going to use it?
- How are they going to use it?
OlderNewer