Difference between revisions of "Card sorting by function"
Jump to navigation
Jump to search
(we will probably never use this but I was bored so I created a flow chart for card sorting) |
|||
| Line 3: | Line 3: | ||
start [label="START HERE", fontsize="11", shape="box", style="bold"] | start [label="START HERE", fontsize="11", shape="box", style="bold"] | ||
| − | + | video [label="VIDEO", fontsize="11", shape="box", style="bold"] | |
| − | + | sound [label="SOUND", fontsize="11", shape="box", style="bold"] | |
| − | + | modem [label="MODEM", fontsize="11", shape="box", style="bold"] | |
| − | + | nic [label="NETWORK", fontsize="11", shape="box", style="bold"] | |
| − | modem | + | combo [label="COMBO", fontsize="11", shape="box", style="bold"] |
| − | nic | + | else [label="EVERYTHING ELSE", fontsize="11", shape="box", style="bold"] |
| − | combo | + | |
| − | + | hd15 [label="Does it have an\nHD15 connector?", fontsize="11"] | |
| − | + | rj11s [label="Does it have an\nTWO RJ11 connectors?", fontsize="11"] | |
| − | + | rj45 [label="Does it have an\nRJ45 connector?", fontsize="11"] | |
| − | + | soundports [label="Does it have little round\nSOUND PORTS?", fontsize="11"] | |
| − | + | singlerj11 [label="Does it have an\na SINGLE RJ11 connector?", fontsize="11"] | |
| − | + | ||
| − | + | subsortpci [label="Subsort into\nPCI and NON-PCI piles", fontsize="11", style="bold"] | |
| − | + | nosubsort [label="No Subsort Needed", fontsize="11", style="bold"] | |
| − | + | subsortagp [label="Subsort into\nPCI, AGP, and OTHER", fontsize="11", style="bold"] | |
| − | + | subsortisa [label="Subsort into\nPCI, ISA, and OTHER", fontsize="11", style="bold"] | |
| − | + | ||
| − | + | ||
| − | + | start -> hd15 | |
| − | + | hd15 -> video [label="YES"] | |
| − | + | hd15 -> rj11s [label="NO"] | |
| − | + | rj11s -> modem [label="YES"] | |
| − | + | rj11s -> rj45 [label="NO"] | |
| − | + | rj45 -> nic [label="YES"] | |
| − | + | rj45 -> soundports [label="NO"] | |
| − | + | soundports -> singlerj11 [label="YES"] | |
| + | soundports -> else [label="NO"] | ||
| + | singlerj11 -> combo [label="YES"] | ||
| + | singlerj11 -> sound [label="NO"] | ||
| + | |||
| + | video -> subsortagp | ||
| + | modem -> subsortisa | ||
| + | combo -> nosubsort | ||
| + | sound -> subsortpci | ||
| + | nic -> subsortpci | ||
| + | else -> subsortpci | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
} | } | ||
</graphviz> | </graphviz> | ||
| + | |||
| + | If it is a PCI network card, sort into two piles, those marked 100 and those that are not: | ||
| + | |||
| + | <graphviz> | ||
| + | digraph D { | ||
| + | |||
| + | nicpci100 [label="NETWORK\nPCI MARKED 100", fontsize="11", shape="box", style="bold"] | ||
| + | nicpci10 [label="NETWORK\nPCI NOT MARKED 100", fontsize="11", shape="box", style="bold"] | ||
| + | |||
| + | } | ||
| + | </graphviz> | ||
| + | |||
| + | You should now have up to 14 piles: | ||
| + | |||
| + | # Video Cards, PCI | ||
| + | # Video Cards, AGP | ||
| + | # Video Cards, OTHER | ||
| + | # Modems, PCI | ||
| + | # Modems, ISA | ||
| + | # Modems, OTHER | ||
| + | # Sound, PCI | ||
| + | # Sound, NON-PCI | ||
| + | # Network, PCI, 100 | ||
| + | # Network, PCI, NOT 100 | ||
| + | # Network, NON-PCI | ||
| + | # Miscellaneous, PCI | ||
| + | # Miscellaneous, NON-PCI | ||
| + | # Combo | ||
| + | |||
[[Category: Triage]] | [[Category: Triage]] | ||
[[Category: Prebuild]] | [[Category: Prebuild]] | ||
Revision as of 18:08, 11 March 2006
If it is a PCI network card, sort into two piles, those marked 100 and those that are not:
You should now have up to 14 piles:
- Video Cards, PCI
- Video Cards, AGP
- Video Cards, OTHER
- Modems, PCI
- Modems, ISA
- Modems, OTHER
- Sound, PCI
- Sound, NON-PCI
- Network, PCI, 100
- Network, PCI, NOT 100
- Network, NON-PCI
- Miscellaneous, PCI
- Miscellaneous, NON-PCI
- Combo