Difference between revisions of "Card sorting by function"

From FreekiWiki
Jump to navigation Jump to search
 
(81 intermediate revisions by 11 users not shown)
Line 1: Line 1:
 +
{{migrated}}
 +
[https://docs.google.com/document/d/1ON2Qu2vZqpMwQQCJtDW44Gor32gurx5Bd6DfAljBG0s/edit?usp=sharing link]
 +
 
__NOTOC__
 
__NOTOC__
 +
== Step One -- Familiarize Yourself with Connectors ==
 +
First, get a box of cards to be sorted, pour them into a pile in the center of the table, and rummage through them, looking for these connector types:
 +
{| BORDER=1 CELLPADDING=5 CELLSPACING=0
 +
|-
 +
! width=150 | Type
 +
! width=150 | Picture
 +
! width=150 | Clue
 +
|- align = "center"
 +
| HD15
 +
| [[Image:Hd15port.png]]
 +
| '''three''' rows of holes
 +
|- align = "center"
 +
| DVI
 +
| [[Image:Dvi.png]]
 +
| lots of little '''square holes'''
 +
|- align = "center"
 +
| RJ11
 +
| [[Image:Rj11port.png]]
 +
| like for a '''phone''', has 4 pins
 +
|- align = "center"
 +
| RJ45
 +
| [[Image:Rj45port.png]]
 +
| '''bigger''' than an RJ11
 +
|- align = "center"
 +
|  Sound Ports
 +
| [[Image:Soundports.png]]
 +
| little and round, don't stick out, may be 3, 4, 5 or 6
 +
|- align = "center"
 +
|  Antenna Connector
 +
| [[Image:SMA.jpg|50px]]
 +
| much smaller than a F connector (connector for a cable TV)
 +
|}
  
== Step One -- Familiarize Yourself with Connectors ==
+
'''NOTE:''' You're not sorting yet, just learning the different connector types.
Get a box of cards to be sorted and rummage through them, looking for these connector types:
+
 
* HD15 [[Image:Hd15port.png]] (three rows of holes)
+
There will be other connector types, but the above ones are all you need to pay attention to in order to complete this job.
* RJ11 [[Image:Rj11port.png]] (like for a phone)
 
* RJ45 [[Image:Rj45port.png]] (bigger than an RJ11)
 
* BNC [[Image:Bncport.png]] (like for cable TV)
 
* Little Round Sound Ports [[Image:Soundports.png]]
 
  
 
== Step Two -- The Basic Sort ==
 
== Step Two -- The Basic Sort ==
  
Pick up each card and using the following chart, put each card in one of five piles (video, sound, modem, network, and everything else.) Note: This takes you to the bold boxes in the chart.
+
Pick up each card and using the following chart, put each card in one of six piles (video, sound, modem, network, wireless, and miscellaneous.)
  
 
<graphviz>
 
<graphviz>
 
   digraph D {
 
   digraph D {
 +
 +
  node [fontname="Helvetica", fontsize="11"]
 +
  edge [fontname="Helvetica"]
  
 
   start        [label="START HERE", fontsize="11", shape="box", style="bold"]
 
   start        [label="START HERE", fontsize="11", shape="box", style="bold"]
Line 21: Line 55:
 
   modem        [label="MODEM", fontsize="11", shape="box", style="bold"]
 
   modem        [label="MODEM", fontsize="11", shape="box", style="bold"]
 
   nic          [label="NETWORK", fontsize="11", shape="box", style="bold"]
 
   nic          [label="NETWORK", fontsize="11", shape="box", style="bold"]
   else          [label="EVERYTHING ELSE", fontsize="11", shape="box", style="bold"]
+
   wireless      [label="WIRELESS", fontsize="11", shape="box", style="bold"]
 
+
   else          [label="MISC", fontsize="11", shape="box", style="bold"]
   hd15            [label="Does it have an\nHD15 connector?", fontsize="11"]
 
  rj11s          [label="Does it have\nTWO RJ11 connectors?", fontsize="11"]
 
  bnc_rj45        [label="Does it have a\nBNC or RJ45 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"]
 
  singlejackmodem [label="Does it have an\na SINGLE RJ11 connector?", fontsize="11"]
 
  
   subsortpci    [label="Subsort into\nPCI and NON-PCI piles", fontsize="11", style="bold"]
+
   hd15            [label="Does it have an\nHD15\nconnector?"]
   subsortagp    [label="Subsort into\nPCI, AGP, and OTHER", fontsize="11", style="bold"]
+
  dvi            [label="Does it have a\nDVI\nconnector?"]
   subsortisa    [label="Subsort into\nPCI, ISA, and OTHER", fontsize="11", style="bold"]
+
  rj11s          [label="Does it have\nTWO RJ11 connectors?"]
 +
   rj45            [label="Does it have an\n RJ45 connector?"]
 +
  antenna        [label="Does it have an\n ANTENNA\nor a connector for an antenna?"]
 +
  soundports      [label="Does it have little round\nSOUND PORTS?"]
 +
   singlerj11      [label="Does it have a\n SINGLE RJ11 connector?"]
 +
  singlejackmodem [label="Does it have a\n SINGLE RJ11 connector?"]
  
  
 
   start -> hd15
 
   start -> hd15
 
   hd15 -> video [label="YES"]
 
   hd15 -> video [label="YES"]
   hd15 -> rj11s [label="NO"]
+
   hd15 -> dvi  [label="NO"]
 +
  dvi -> video [label="YES"]
 +
  dvi -> rj11s [label="NO"]
 
   rj11s -> modem [label="YES"]
 
   rj11s -> modem [label="YES"]
   rj11s -> bnc_rj45 [label="NO"]
+
   rj11s -> rj45 [label="NO"]
   bnc_rj45 -> nic [label="YES"]
+
   rj45 -> nic [label="YES"]
   bnc_rj45 -> soundports [label="NO"]
+
   rj45 -> antenna [label="NO"]
 +
  antenna -> wireless [label="YES"]
 +
  antenna -> soundports [label="NO"]
 
   soundports -> singlerj11 [label="YES"]
 
   soundports -> singlerj11 [label="YES"]
 
   soundports -> singlejackmodem [label="NO"]
 
   soundports -> singlejackmodem [label="NO"]
Line 48: Line 85:
 
   singlerj11 -> else [label="YES"]
 
   singlerj11 -> else [label="YES"]
 
   singlerj11 -> sound [label="NO"]
 
   singlerj11 -> sound [label="NO"]
 
  video -> subsortagp
 
  modem -> subsortisa
 
  sound -> subsortpci
 
  nic -> subsortpci
 
  else -> subsortpci
 
 
 
    
 
    
 
   }
 
   }
 
</graphviz>
 
</graphviz>
  
== Step Three -- The Sub-sort ==
+
== Step Three -- Finish Up ==
 
+
See if it's correct. You should now have up to 6 piles:
Get someone to check your work so far, and they will show you how to tell PCI, ISA, and AGP slots from all the other types of card slots. Then you can use the above chart to subsort each of the five piles into a grand total of twelve piles. (See the bold ovals below each of the five main types to do your sub-sort.)
 
 
 
== Step Four -- Sub-sub-sort the PCI Network Cards ==
 
 
 
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>
 
 
 
== Step Five -- Finish Up ==
 
See if it's correct. You should now have up to 13 piles:
 
  
# Video Cards, PCI
+
# Video Cards
# Video Cards, AGP
+
# Modems
# Video Cards, OTHER
+
# Sound
# Modems, PCI
+
# Network
# Modems, ISA
+
# Wireless
# Modems, OTHER
+
# Miscellaneous
# Sound, PCI
 
# Sound, NON-PCI
 
# Network, PCI, 100
 
# Network, PCI, NOT 100
 
# Network, NON-PCI
 
# Miscellaneous, PCI
 
# Miscellaneous, NON-PCI
 
  
Have someone check your work and then put the cards in their boxes.  (Check the box contents as you go, since someone before you might have made a mistake!)
+
'''Have someone check your work'''
  
Thanks for helping us sort these cards!
+
[[Card sorting by function en Espanol | En Español]]
  
[[Category: Triage]]
+
[[Category: Hardware ID]]
[[Category: Prebuild]]
 
[[Category: Howto]]
 

Latest revision as of 16:21, 5 July 2014

deletion

This page has been migrated to a document on Free Geek's Google Drive.

Information remaining behind may no longer be relevant.

MIGRATOR:

When you have tagged this page as migrated,
please add a link to the new document on Google Drive.

(Link to new page immediately below.)


link


Step One -- Familiarize Yourself with Connectors

First, get a box of cards to be sorted, pour them into a pile in the center of the table, and rummage through them, looking for these connector types:

Type Picture Clue
HD15 Hd15port.png three rows of holes
DVI Dvi.png lots of little square holes
RJ11 Rj11port.png like for a phone, has 4 pins
RJ45 Rj45port.png bigger than an RJ11
Sound Ports Soundports.png little and round, don't stick out, may be 3, 4, 5 or 6
Antenna Connector SMA.jpg much smaller than a F connector (connector for a cable TV)

NOTE: You're not sorting yet, just learning the different connector types.

There will be other connector types, but the above ones are all you need to pay attention to in order to complete this job.

Step Two -- The Basic Sort

Pick up each card and using the following chart, put each card in one of six piles (video, sound, modem, network, wireless, and miscellaneous.)

This is a graph with borders and nodes. Maybe there is an Imagemap used so the nodes may be linking to some Pages.

Step Three -- Finish Up

See if it's correct. You should now have up to 6 piles:

  1. Video Cards
  2. Modems
  3. Sound
  4. Network
  5. Wireless
  6. Miscellaneous

Have someone check your work

En Español