This repository has been archived by the owner on Feb 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrss.xml
2281 lines (1339 loc) · 108 KB
/
rss.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.usability.gov/get-involved/blog/rss.xml" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:og="http://ogp.me/ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:sioc="http://rdfs.org/sioc/ns#" xmlns:sioct="http://rdfs.org/sioc/types#" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#">
<channel>
<title>Usability.gov - Improving the User Experience</title>
<link>https://www.usability.gov/get-involved/blog/rss.xml</link>
<description></description>
<language>en</language>
<atom:link href="https://www.usability.gov/rss.xml" rel="self" type="application/rss+xml" />
<item>
<title>USDA Invites You to Reimagine the National School Meals Program Application</title>
<link>https://www.usability.gov/get-involved/blog/2016/02/usda-invites-you-to-reimagine-national-school-meals-program.html</link>
<description><i>Monday, February 8, 2016</i><br>
USDA challenges others to redesign and reimagine the National School Meals Program Application. <a href="https://www.usability.gov/get-involved/blog/2016/02/usda-invites-you-to-reimagine-national-school-meals-program.html"> Read More </a></description>
<guid isPermaLink="false">https://www.usability.gov/get-involved/blog/2016/02/usda-invites-you-to-reimagine-national-school-meals-program.html</guid>
</item>
<item>
<title>Recruiting Participants &amp; the Legend of “The General Public”</title>
<link>https://www.usability.gov/get-involved/blog/2015/07/recruiting-participants.html</link>
<description><i>Wednesday, July 29, 2015</i><br>
Recruiting the correct participants for your test is worth the effort and the benefits show not only in your results, but also in the acceptance of your recommendations by your team members. <a href="https://www.usability.gov/get-involved/blog/2015/07/recruiting-participants.html"> Read More </a></description>
<guid isPermaLink="false">https://www.usability.gov/get-involved/blog/2015/07/recruiting-participants.html</guid>
</item>
<item>
<title>Welcome to the Reimagined HHS.gov</title>
<link>https://www.usability.gov/get-involved/blog/2015/05/welcome-to-relauched-hhsgov.html</link>
<description><i>Tuesday, May 19, 2015</i><br>
Learn more about the improvements HHS made to HHS.gov to help users find the information and resources they need faster and easier. <a href="https://www.usability.gov/get-involved/blog/2015/05/welcome-to-relauched-hhsgov.html"> Read More </a></description>
<guid isPermaLink="false">https://www.usability.gov/get-involved/blog/2015/05/welcome-to-relauched-hhsgov.html</guid>
</item>
<item>
<title>Color Basics</title>
<link>https://www.usability.gov/how-to-and-tools/methods/color-basics.html</link>
<description><i>Wednesday, February 11, 2015</i><br>
A color wheel is an illustrative model of color hues around a circle. It shows the relationships between the primary, secondary, and intermediate/ tertiary colors and helps demonstrate color temperature. Digital teams communicate exact colors through the use of hex codes. <a href="https://www.usability.gov/how-to-and-tools/methods/color-basics.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/methods/color-basics.html</guid>
</item>
<item>
<title>Usability Testing with Kids and Teens</title>
<link>https://www.usability.gov/get-involved/blog/2015/02/working-with-kids-and-teens.html</link>
<description><i>Tuesday, February 3, 2015</i><br>
Working with children and teens can be an enlightening experience. You can learn so much about how young people reason, think, and express themselves. <a href="https://www.usability.gov/get-involved/blog/2015/02/working-with-kids-and-teens.html"> Read More </a></description>
<guid isPermaLink="false">https://www.usability.gov/get-involved/blog/2015/02/working-with-kids-and-teens.html</guid>
</item>
<item>
<title>Constructing and Equipping a Lab – Part 3</title>
<link>https://www.usability.gov/get-involved/blog/2014/12/building-a-lab-series-constructing-and-equipping-a-lab.html</link>
<description><i>Monday, December 1, 2014</i><br>
With a designated space, a mix of equipment, and some practice, you can begin to collect usability data in your own time and on your own turf. <a href="https://www.usability.gov/get-involved/blog/2014/12/building-a-lab-series-constructing-and-equipping-a-lab.html"> Read More </a></description>
<guid isPermaLink="false">https://www.usability.gov/get-involved/blog/2014/12/building-a-lab-series-constructing-and-equipping-a-lab.html</guid>
</item>
<item>
<title>Deciding if You Need a Dedicated Usability Lab – Part 2</title>
<link>https://www.usability.gov/get-involved/blog/2014/10/building-a-lab-series-deciding-if-you-need-a-dedicated-usability-lab.html</link>
<description><i>Thursday, October 16, 2014</i><br>
Nothing beats the convenience of having a dedicated usability lab but do you really need one? We provide scenarios to help you decide whether a fixed lab is the right move for your team. <a href="https://www.usability.gov/get-involved/blog/2014/10/building-a-lab-series-deciding-if-you-need-a-dedicated-usability-lab.html"> Read More </a></description>
<guid isPermaLink="false">https://www.usability.gov/get-involved/blog/2014/10/building-a-lab-series-deciding-if-you-need-a-dedicated-usability-lab.html</guid>
</item>
<item>
<title>Determining Goals, Needs &amp; Resources for Building a Usability Lab – Part 1</title>
<link>https://www.usability.gov/get-involved/blog/2014/09/building-a-lab-series-determining-goals-and-resources.html</link>
<description><i>Wednesday, September 24, 2014</i><br>
Building a usability lab, whether you are new to the field or leading a team, can be quite an undertaking. We’ll take a look at determining organization and client needs, as well as making the most of the technology and resources available in big and small organizations. <a href="https://www.usability.gov/get-involved/blog/2014/09/building-a-lab-series-determining-goals-and-resources.html"> Read More </a></description>
<guid isPermaLink="false">https://www.usability.gov/get-involved/blog/2014/09/building-a-lab-series-determining-goals-and-resources.html</guid>
</item>
<item>
<title>Usability: What a Project Manager Needs to Know – Part 2</title>
<link>https://www.usability.gov/get-involved/blog/2014/06/part-2-what-a-pm-needs-to-know-about-usability.html</link>
<description><i>Tuesday, June 10, 2014</i><br>
Part two of a blog series sharing helpful tips for what a project manager would need to know about usability when managing a technical project plan. <a href="https://www.usability.gov/get-involved/blog/2014/06/part-2-what-a-pm-needs-to-know-about-usability.html"> Read More </a></description>
<guid isPermaLink="false">https://www.usability.gov/get-involved/blog/2014/06/part-2-what-a-pm-needs-to-know-about-usability.html</guid>
</item>
<item>
<title>Usability: What a Project Manager Needs to Know – Part 1</title>
<link>https://www.usability.gov/get-involved/blog/2014/05/part-1-what-a-pm-needs-to-know-about-usability.html</link>
<description><i>Wednesday, May 21, 2014</i><br>
Find some helpful tips for a project manager to know about usability when managing a technical project plan. <a href="https://www.usability.gov/get-involved/blog/2014/05/part-1-what-a-pm-needs-to-know-about-usability.html"> Read More </a></description>
<guid isPermaLink="false">https://www.usability.gov/get-involved/blog/2014/05/part-1-what-a-pm-needs-to-know-about-usability.html</guid>
</item>
<item>
<title>Content Strategy Basics</title>
<link>https://www.usability.gov/what-and-why/content-strategy.html</link>
<description><i>Friday, December 13, 2013</i><br>
Content strategy plans for the creation, publication, and governance of useful, usable content. Content not only includes the words on the page but also the images that are used, the structure and layout, how it is found, and more. <a href="https://www.usability.gov/what-and-why/content-strategy.html"> Read More </a></description>
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/what-and-why/content-strategy.html</guid>
</item>
<item>
<title>Creating Cross-Channel Experiences</title>
<link>https://www.usability.gov/get-involved/blog/2013/11/creating-cross-channel-experiences.html</link>
<description><i>Tuesday, November 12, 2013</i><br>
Ensuring a valuable and consistent user experience across all channels helps build credibility and trust in your brand. <a href="https://www.usability.gov/get-involved/blog/2013/11/creating-cross-channel-experiences.html"> Read More </a></description>
<guid isPermaLink="false">https://www.usability.gov/get-involved/blog/2013/11/creating-cross-channel-experiences.html</guid>
</item>
<item>
<title>Take Our Redesign Survey!</title>
<link>https://www.usability.gov/take-our-redesign-survey.html</link>
<description><i>Monday, October 7, 2013</i><br>
<a href="https://www.usability.gov/take-our-redesign-survey.html"> Read More </a></description>
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/take-our-redesign-survey.html</guid>
</item>
<item>
<title>DigitalGov User Experience Program</title>
<link>https://www.usability.gov/how-to-and-tools/guidance/gsa-first-fridays-program.html</link>
<description><i>Monday, October 7, 2013</i><br>
GSA’s DigitalGov User Experience Program, formerly the First Fridays Usability Testing Program, is a twice-monthly demonstration project aimed at teaching agency staff how to find and fix usability problems on government websites and applications. <a href="https://www.usability.gov/how-to-and-tools/guidance/gsa-first-fridays-program.html"> Read More </a></description>
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/guidance/gsa-first-fridays-program.html</guid>
</item>
<item>
<title>HHS Usability Lab</title>
<link>https://www.usability.gov/how-to-and-tools/guidance/hhs-usability-lab.html</link>
<description><i>Monday, October 7, 2013</i><br>
HHS operates two usability labs that are free of charge to other federal agencies. Learn more about the lab set-up, how to make a reservation, and planning a test. <a href="https://www.usability.gov/how-to-and-tools/guidance/hhs-usability-lab.html"> Read More </a></description>
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/guidance/hhs-usability-lab.html</guid>
</item>
<item>
<title>Traditional Clearance Process for Information Collection</title>
<link>https://www.usability.gov/how-to-and-tools/guidance/traditional-clearance-process.html</link>
<description><i>Monday, October 7, 2013</i><br>
The Traditional Clearance process is one of the two processes for obtaining PRA clearance. Traditional Clearance Process requires a 60-day Federal Register notice. <a href="https://www.usability.gov/how-to-and-tools/guidance/traditional-clearance-process.html"> Read More </a></description>
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/guidance/traditional-clearance-process.html</guid>
</item>
<item>
<title>Fast-Track Clearance Process for Information Collection</title>
<link>https://www.usability.gov/how-to-and-tools/guidance/fast-track-clearance-process.html</link>
<description><i>Monday, October 7, 2013</i><br>
The Fast-Track Clearance process is one of the two processes for obtaining PRA clearance. Collections submitted for Fast-Track clearance do not require a 60-day Federal Register notice. There are two parts to the Fast-Track Clearance. <a href="https://www.usability.gov/how-to-and-tools/guidance/fast-track-clearance-process.html"> Read More </a></description>
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/guidance/fast-track-clearance-process.html</guid>
</item>
<item>
<title>Information Collection and Paperwork Reduction Act (PRA) Overview</title>
<link>https://www.usability.gov/how-to-and-tools/guidance/pra-overview.html</link>
<description><i>Monday, October 7, 2013</i><br>
To avoid overburdening the public with federally sponsored data collections, the Paperwork Reduction Act (PRA) requires that federal agencies obtain Office of Management and Budget (OMB) approval before requesting or collecting most types of information from the public. <a href="https://www.usability.gov/how-to-and-tools/guidance/pra-overview.html"> Read More </a></description>
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/guidance/pra-overview.html</guid>
</item>
<item>
<title>User-Centered Design Process Map</title>
<link>https://www.usability.gov/how-to-and-tools/resources/ucd-map.html</link>
<description><i>Monday, October 7, 2013</i><br>
The user-centered design process is composed of several methods and tasks related to website development.The type of site you are developing, your timeline and the environment in which you are developing will determine the tasks you perform and the order in which you perform them. <a href="https://www.usability.gov/how-to-and-tools/resources/ucd-map.html"> Read More </a></description>
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/resources/ucd-map.html</guid>
</item>
<item>
<title>Creating a User-Centered Approach in Government</title>
<link>https://www.usability.gov/what-and-why/user-centered-government.html</link>
<description><i>Monday, October 7, 2013</i><br>
Agencies improve the quality of their information and services by embracing a user-centric approach. They also save money long-term through focusing on iterative improvements. <a href="https://www.usability.gov/what-and-why/user-centered-government.html"> Read More </a></description>
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/what-and-why/user-centered-government.html</guid>
</item>
<item>
<title>Benefits of User-Centered Design</title>
<link>https://www.usability.gov/what-and-why/benefits-of-ucd.html</link>
<description><i>Monday, October 7, 2013</i><br>
Find out why doing user experience work is worth the time and resources. Learn how to measure and communicate your success. <a href="https://www.usability.gov/what-and-why/benefits-of-ucd.html"> Read More </a></description>
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/what-and-why/benefits-of-ucd.html</guid>
</item>
<item>
<title>Tour the Site</title>
<link>https://www.usability.gov/site-tour.html</link>
<description><i>Monday, October 7, 2013</i><br>
Usability.gov is focused on your needs by providing the information and tools to create usable, responsive, intuitive, and accessible online experiences. <a href="https://www.usability.gov/site-tour.html"> Read More </a></description>
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/site-tour.html</guid>
</item>
<item>
<title>About Us</title>
<link>https://www.usability.gov/about-us/index.html</link>
<description><i>Monday, October 7, 2013</i><br>
Usability.gov is the leading resource for information on usability and user-centered design. Find out more about linking to site resources, citing as a source, and contact information. <a href="https://www.usability.gov/about-us/index.html"> Read More </a></description>
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/about-us/index.html</guid>
</item>
<item>
<title>Widgets and Badges</title>
<link>https://www.usability.gov/stay-connected/index.html</link>
<description><i>Monday, October 7, 2013</i><br>
Connect your users with user experience best practices and resources. Add a usability.gov widget to your website, blog, or other site. <a href="https://www.usability.gov/stay-connected/index.html"> Read More </a></description>
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/stay-connected/index.html</guid>
</item>
<item>
<title>Visual Design Basics</title>
<link>https://www.usability.gov/what-and-why/visual-design.html</link>
<description><i>Monday, October 7, 2013</i><br>
Visual design focuses on the aesthetics of a site and its related materials by strategically implementing images, colors, fonts, and other elements. <a href="https://www.usability.gov/what-and-why/visual-design.html"> Read More </a></description>
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/what-and-why/visual-design.html</guid>
</item>
<item>
<title>User Interface Design Basics</title>
<link>https://www.usability.gov/what-and-why/user-interface-design.html</link>
<description><i>Monday, October 7, 2013</i><br>
The goal of User Interface (UI) design is to anticipate what users might need to do and ensures that the interface has elements that are easy to access, understand, and use to facilitate those actions. <a href="https://www.usability.gov/what-and-why/user-interface-design.html"> Read More </a></description>
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/what-and-why/user-interface-design.html</guid>
</item>
<item>
<title>Information Architecture Basics</title>
<link>https://www.usability.gov/what-and-why/information-architecture.html</link>
<description><i>Monday, October 7, 2013</i><br>
Information architecture (IA) focuses on organizing, structuring, and labeling content in an effective and sustainable way. <a href="https://www.usability.gov/what-and-why/information-architecture.html"> Read More </a></description>
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/what-and-why/information-architecture.html</guid>
</item>
<item>
<title>Usability Evaluation Basics</title>
<link>https://www.usability.gov/what-and-why/usability-evaluation.html</link>
<description><i>Monday, October 7, 2013</i><br>
Usability Evaluation focuses on how well users can learn and use a product to achieve their goals. It also refers to how satisfied users are with that process. <a href="https://www.usability.gov/what-and-why/usability-evaluation.html"> Read More </a></description>
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/what-and-why/usability-evaluation.html</guid>
</item>
<item>
<title>Interaction Design Basics</title>
<link>https://www.usability.gov/what-and-why/interaction-design.html</link>
<description><i>Monday, October 7, 2013</i><br>
Interaction design focuses on creating engaging interfaces with well thought out behaviors. <a href="https://www.usability.gov/what-and-why/interaction-design.html"> Read More </a></description>
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/what-and-why/interaction-design.html</guid>
</item>
<item>
<title>Web Analytics Basics</title>
<link>https://www.usability.gov/what-and-why/web-analytics.html</link>
<description><i>Monday, October 7, 2013</i><br>
Web analytics is the collection, reporting, and analysis of website data. <a href="https://www.usability.gov/what-and-why/web-analytics.html"> Read More </a></description>
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/what-and-why/web-analytics.html</guid>
</item>
<item>
<title>Accessibility Basics</title>
<link>https://www.usability.gov/what-and-why/accessibility.html</link>
<description><i>Monday, October 7, 2013</i><br>
Accessibility relates to how a disabled person accesses or benefits from a site, system or application. Section 508 is the governing principal; it requires that all government information be accessible to disabled users. <a href="https://www.usability.gov/what-and-why/accessibility.html"> Read More </a></description>
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/what-and-why/accessibility.html</guid>
</item>
<item>
<title>User Experience Basics</title>
<link>https://www.usability.gov/what-and-why/user-experience.html</link>
<description><i>Monday, October 7, 2013</i><br>
User experience (UX) refers to the quality of the user’s interaction with and perceptions of a system. User experience design requires a deep understanding of users. <a href="https://www.usability.gov/what-and-why/user-experience.html"> Read More </a></description>
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/what-and-why/user-experience.html</guid>
</item>
<item>
<title>Project Management Basics</title>
<link>https://www.usability.gov/what-and-why/project-management.html</link>
<description><i>Monday, October 7, 2013</i><br>
Project management focuses on planning and organizing a project and its resources. <a href="https://www.usability.gov/what-and-why/project-management.html"> Read More </a></description>
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/what-and-why/project-management.html</guid>
</item>
<item>
<title>User Research Basics</title>
<link>https://www.usability.gov/what-and-why/user-research.html</link>
<description><i>Monday, October 7, 2013</i><br>
User research focuses on understanding user behaviors, needs, and motivations through observation techniques, task analysis, and other feedback methodologies. <a href="https://www.usability.gov/what-and-why/user-research.html"> Read More </a></description>
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/what-and-why/user-research.html</guid>
</item>
<item>
<title>With Measurable Usability Goals – We All Score</title>
<link>https://www.usability.gov/get-involved/blog/2013/09/measurable-usability-goals.html</link>
<description><i>Thursday, September 19, 2013</i><br>
Setting measurable usability goals, focused on how users complete top tasks, helps your team to assess the performance of your site. <a href="https://www.usability.gov/get-involved/blog/2013/09/measurable-usability-goals.html"> Read More </a></description>
<guid isPermaLink="false">https://www.usability.gov/get-involved/blog/2013/09/measurable-usability-goals.html</guid>
</item>
<item>
<title>Reporting Usability Test Results</title>
<link>https://www.usability.gov/how-to-and-tools/methods/reporting-usability-test-results.html</link>
<description><i>Wednesday, September 18, 2013</i><br>
Reporting usability test results should focus primarily on your findings and recommendations that are differentiated by levels of severity. <a href="https://www.usability.gov/how-to-and-tools/methods/reporting-usability-test-results.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/methods/reporting-usability-test-results.html</guid>
</item>
<item>
<title>Running a Usability Test</title>
<link>https://www.usability.gov/how-to-and-tools/methods/running-usability-tests.html</link>
<description><i>Wednesday, September 18, 2013</i><br>
Conducting a successful usability test requires you to have a test plan ready, participants recruited, and moderation technique decided on. <a href="https://www.usability.gov/how-to-and-tools/methods/running-usability-tests.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/methods/running-usability-tests.html</guid>
</item>
<item>
<title>Recruiting Usability Test Participants</title>
<link>https://www.usability.gov/how-to-and-tools/methods/recruiting-usability-test-participants.html</link>
<description><i>Wednesday, September 18, 2013</i><br>
Recruit usability test participants who represent you target users. Although you may have multiple potential users groups, try to include each. <a href="https://www.usability.gov/how-to-and-tools/methods/recruiting-usability-test-participants.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/methods/recruiting-usability-test-participants.html</guid>
</item>
<item>
<title>Planning a Usability Test</title>
<link>https://www.usability.gov/how-to-and-tools/methods/planning-usability-testing.html</link>
<description><i>Wednesday, September 18, 2013</i><br>
A usability test plan documents what metrics you are going to capture, the number of participants you are going to test, and what scenarios you will use. <a href="https://www.usability.gov/how-to-and-tools/methods/planning-usability-testing.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/methods/planning-usability-testing.html</guid>
</item>
<item>
<title>Receipt Form: Usability Test Compensation Receipt Form (Adult)</title>
<link>https://www.usability.gov/how-to-and-tools/resources/templates/receipt-form-usability-test-compensation-adult.html</link>
<description><i>Tuesday, September 17, 2013</i><br>
<p>A receipt to document that a participant has received compensation for testing.</p>
<a href="https://www.usability.gov/how-to-and-tools/resources/templates/receipt-form-usability-test-compensation-adult.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/resources/templates/receipt-form-usability-test-compensation-adult.html</guid>
</item>
<item>
<title>Receipt Form: Usability Test Compensation (Minor)</title>
<link>https://www.usability.gov/how-to-and-tools/resources/templates/receipt-form-usability-test-compensation-minor.html</link>
<description><i>Tuesday, September 17, 2013</i><br>
<p>A receipt to document that a minor child has received compensation for testing. To be competed by the parent or guardian in attendance for testing.</p>
<a href="https://www.usability.gov/how-to-and-tools/resources/templates/receipt-form-usability-test-compensation-minor.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/resources/templates/receipt-form-usability-test-compensation-minor.html</guid>
</item>
<item>
<title>Introduction to Testing with Moderator Interaction</title>
<link>https://www.usability.gov/how-to-and-tools/resources/templates/introduction-to-testing-with-moderator-interaction.html</link>
<description><i>Tuesday, September 17, 2013</i><br>
<p>An example of how to welcome and prepare participants for their test session, explain the purpose and explain the roles during the session.</p>
<a href="https://www.usability.gov/how-to-and-tools/resources/templates/introduction-to-testing-with-moderator-interaction.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/resources/templates/introduction-to-testing-with-moderator-interaction.html</guid>
</item>
<item>
<title>Digital Recording Release Form (Minor)</title>
<link>https://www.usability.gov/how-to-and-tools/resources/templates/digital-recording-release-form-minor.html</link>
<description><i>Tuesday, September 17, 2013</i><br>
<div></div> <a href="https://www.usability.gov/how-to-and-tools/resources/templates/digital-recording-release-form-minor.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/resources/templates/digital-recording-release-form-minor.html</guid>
</item>
<item>
<title>Consent Form: Remote Usability Test (Adult)</title>
<link>https://www.usability.gov/how-to-and-tools/resources/templates/consent-form-remote-usability-test-adult.html</link>
<description><i>Tuesday, September 17, 2013</i><br>
<p>Use this form to document a participant's consent to participate in a remote usability test session.</p>
<a href="https://www.usability.gov/how-to-and-tools/resources/templates/consent-form-remote-usability-test-adult.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/resources/templates/consent-form-remote-usability-test-adult.html</guid>
</item>
<item>
<title>Consent Form (Minor)</title>
<link>https://www.usability.gov/how-to-and-tools/resources/templates/consent-form-minor.html</link>
<description><i>Tuesday, September 17, 2013</i><br>
<p>Use this form to document a parent/guardian's consent to have a child or young person, less than eighteen years of age participate in testing.</p>
<a href="https://www.usability.gov/how-to-and-tools/resources/templates/consent-form-minor.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/resources/templates/consent-form-minor.html</guid>
</item>
<item>
<title>Consent Form (Adult)</title>
<link>https://www.usability.gov/how-to-and-tools/resources/templates/consent-form-adult.html</link>
<description><i>Tuesday, September 17, 2013</i><br>
<p>Use this form to document a participant's consent to participate in testing.</p>
<a href="https://www.usability.gov/how-to-and-tools/resources/templates/consent-form-adult.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/resources/templates/consent-form-adult.html</guid>
</item>
<item>
<title>Consent &amp; Recording Release Form (Minor)</title>
<link>https://www.usability.gov/how-to-and-tools/resources/templates/consent-recording-release-form-minor.html</link>
<description><i>Tuesday, September 17, 2013</i><br>
<p>Use this form to document a parent/guardian's consent to have a child or young person, less than eighteen years of age, participate in testing and have that session recorded.</p>
<a href="https://www.usability.gov/how-to-and-tools/resources/templates/consent-recording-release-form-minor.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/resources/templates/consent-recording-release-form-minor.html</guid>
</item>
<item>
<title>One Site Fits All: A Responsive Solution</title>
<link>https://www.usability.gov/get-involved/blog/2013/08/responsive-design-one-site-fits-all.html</link>
<description><i>Monday, August 26, 2013</i><br>
Responsive design is often the most effective solution to provide a positive experience for users accessing information from a growing variety of devices. Learn more at Usability.gov. <a href="https://www.usability.gov/get-involved/blog/2013/08/responsive-design-one-site-fits-all.html"> Read More </a></description>
<guid isPermaLink="false">https://www.usability.gov/get-involved/blog/2013/08/responsive-design-one-site-fits-all.html</guid>
</item>
<item>
<title>Getting the Guidelines Up-to-Date</title>
<link>https://www.usability.gov/get-involved/blog/2013/08/getting-the-guidelines-up-to-date.html</link>
<description><i>Monday, August 5, 2013</i><br>
Updating the Guidelines is an important part of the reboot of our Usability.gov Program. We’re creating the process and want to know how you’d like to see it take shape. <a href="https://www.usability.gov/get-involved/blog/2013/08/getting-the-guidelines-up-to-date.html"> Read More </a></description>
<guid isPermaLink="false">https://www.usability.gov/get-involved/blog/2013/08/getting-the-guidelines-up-to-date.html</guid>
</item>
<item>
<title>A New Purpose; A New Design: Welcome to the Usability.gov Re-boot</title>
<link>https://www.usability.gov/get-involved/blog/2013/07/welcome-to-relaunched-site.html</link>
<description><i>Tuesday, July 9, 2013</i><br>
Usability.gov’s re-boot not only has a pioneering new design; it also reflects our new, expanded purpose. Learn more about the reboot. <a href="https://www.usability.gov/get-involved/blog/2013/07/welcome-to-relaunched-site.html"> Read More </a></description>
<guid isPermaLink="false">https://www.usability.gov/get-involved/blog/2013/07/welcome-to-relaunched-site.html</guid>
</item>
<item>
<title>Consent &amp; Recording Release Form (Adult)</title>
<link>https://www.usability.gov/how-to-and-tools/resources/templates/consent-recording-release-form-adult.html</link>
<description><i>Monday, June 24, 2013</i><br>
<p>Use this form to document a participant's consent to participate in testing and have that session recorded.</p>
<a href="https://www.usability.gov/how-to-and-tools/resources/templates/consent-recording-release-form-adult.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/resources/templates/consent-recording-release-form-adult.html</guid>
</item>
<item>
<title>Email Template: Usability Study Recruiting</title>
<link>https://www.usability.gov/how-to-and-tools/resources/templates/email-template-usability-study-recruiting.html</link>
<description><i>Monday, June 24, 2013</i><br>
<p>Email templates for recruitment, confirmation and reminder emails.</p>
<a href="https://www.usability.gov/how-to-and-tools/resources/templates/email-template-usability-study-recruiting.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/resources/templates/email-template-usability-study-recruiting.html</guid>
</item>
<item>
<title>UX Study Overview Template</title>
<link>https://www.usability.gov/how-to-and-tools/resources/templates/ux-study-overview-template.html</link>
<description><i>Monday, June 24, 2013</i><br>
<p>A brief outline to provide the background, purpose, methodology and outcomes of planned testing.</p>
<a href="https://www.usability.gov/how-to-and-tools/resources/templates/ux-study-overview-template.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/resources/templates/ux-study-overview-template.html</guid>
</item>
<item>
<title>Usability Study Process and Materials Checklist</title>
<link>https://www.usability.gov/how-to-and-tools/resources/templates/usability-study-process-and-materials-checklist.html</link>
<description><i>Monday, June 24, 2013</i><br>
<p>A checklist for planning and executing a usability study.</p>
<a href="https://www.usability.gov/how-to-and-tools/resources/templates/usability-study-process-and-materials-checklist.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/resources/templates/usability-study-process-and-materials-checklist.html</guid>
</item>
<item>
<title>Report Template: Usability Test</title>
<link>https://www.usability.gov/how-to-and-tools/resources/templates/report-template-usability-test.html</link>
<description><i>Monday, June 24, 2013</i><br>
<div>
An example of a usability test report. Customize the report to suit your needs.</div>
<a href="https://www.usability.gov/how-to-and-tools/resources/templates/report-template-usability-test.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/resources/templates/report-template-usability-test.html</guid>
</item>
<item>
<title>Usability Test Plan Template</title>
<link>https://www.usability.gov/how-to-and-tools/resources/templates/usability-test-plan-template.html</link>
<description><i>Monday, June 24, 2013</i><br>
<div>
An example of a usability test plan. Customize the plan to suit your needs.</div>
<a href="https://www.usability.gov/how-to-and-tools/resources/templates/usability-test-plan-template.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/resources/templates/usability-test-plan-template.html</guid>
</item>
<item>
<title>Usability Test Screener: Website (example 1)</title>
<link>https://www.usability.gov/how-to-and-tools/resources/templates/usability-test-screener-website-example-1.html</link>
<description><i>Monday, June 24, 2013</i><br>
<p>An example of a screener for Web site testing. You may want other questions or a different mix of participants for a usability test of your site.</p>
<a href="https://www.usability.gov/how-to-and-tools/resources/templates/usability-test-screener-website-example-1.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/resources/templates/usability-test-screener-website-example-1.html</guid>
</item>
<item>
<title>Usability Test Screener: Government website</title>
<link>https://www.usability.gov/how-to-and-tools/resources/templates/usability-test-screener-government-site.html</link>
<description><i>Monday, June 24, 2013</i><br>
<p>An example of a screener for a specific government Web site. You may want other questions or a different mix of participants for a usability test of your site.</p>
<a href="https://www.usability.gov/how-to-and-tools/resources/templates/usability-test-screener-government-site.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/resources/templates/usability-test-screener-government-site.html</guid>
</item>
<item>
<title>Report Template: Usability Test Results (Short/Informal)</title>
<link>https://www.usability.gov/how-to-and-tools/resources/templates/report-template-usability-test-short.html</link>
<description><i>Monday, June 24, 2013</i><br>
<p>An example of a usability test report. Customize the report to suit your needs.</p>
<a href="https://www.usability.gov/how-to-and-tools/resources/templates/report-template-usability-test-short.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/resources/templates/report-template-usability-test-short.html</guid>
</item>
<item>
<title>Report Template: Usability Test Results (Long/Formal)</title>
<link>https://www.usability.gov/how-to-and-tools/resources/templates/report-template-usability-test-long.html</link>
<description><i>Monday, June 24, 2013</i><br>
<div>
An example of a usability test report. Customize the report to suit your needs.</div>
<div>
</div>
<a href="https://www.usability.gov/how-to-and-tools/resources/templates/report-template-usability-test-long.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/resources/templates/report-template-usability-test-long.html</guid>
</item>
<item>
<title>Introduction to Testing without Moderator Interaction</title>
<link>https://www.usability.gov/how-to-and-tools/resources/templates/introduction-to-testing-without-interaction.html</link>
<description><i>Monday, June 24, 2013</i><br>
<p>An example of how to welcome and prepare participants for their test session, explain the purpose and explain the roles during the session.</p>
<a href="https://www.usability.gov/how-to-and-tools/resources/templates/introduction-to-testing-without-interaction.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/resources/templates/introduction-to-testing-without-interaction.html</guid>
</item>
<item>
<title>Position Description: Usability Specialist</title>
<link>https://www.usability.gov/how-to-and-tools/resources/templates/position-description-usability-specialist.html</link>
<description><i>Monday, June 24, 2013</i><br>
<div>
A position description for a Usability Specialist in government service. Skills and duties are applicable to the private sector as well.</div>
<div>
</div>
<a href="https://www.usability.gov/how-to-and-tools/resources/templates/position-description-usability-specialist.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/resources/templates/position-description-usability-specialist.html</guid>
</item>
<item>
<title>Report Template: Survey</title>
<link>https://www.usability.gov/how-to-and-tools/resources/templates/report-template-survey.html</link>
<description><i>Monday, June 24, 2013</i><br>
<p>An example of a survey report. Customize the report to suit your needs.</p>
<a href="https://www.usability.gov/how-to-and-tools/resources/templates/report-template-survey.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/resources/templates/report-template-survey.html</guid>
</item>
<item>
<title>SOW Template: Web Usability Testing</title>
<link>https://www.usability.gov/how-to-and-tools/resources/templates/sow-template-web-usability-testing.html</link>
<description><i>Monday, June 24, 2013</i><br>
<div>
This template is designed to detail the requirements and expectations of a Contractor organizing, facilitating and reporting on web usability testing.</div>
<a href="https://www.usability.gov/how-to-and-tools/resources/templates/sow-template-web-usability-testing.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/resources/templates/sow-template-web-usability-testing.html</guid>
</item>
<item>
<title>SOW Template: Web Usability Consulting</title>
<link>https://www.usability.gov/how-to-and-tools/resources/templates/sow-template-web-usability-consulting.html</link>
<description><i>Monday, June 24, 2013</i><br>
<div>
This template is designed to detail the requirements and expectations of a Contractor providing usability and standards development consulting support. </div>
<a href="https://www.usability.gov/how-to-and-tools/resources/templates/sow-template-web-usability-consulting.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/resources/templates/sow-template-web-usability-consulting.html</guid>
</item>
<item>
<title>SOW Template: Usability and Focus Group Participant Recruitment</title>
<link>https://www.usability.gov/how-to-and-tools/resources/templates/sow-template-usability-focus-group-participant-recruitment.html</link>
<description><i>Monday, June 24, 2013</i><br>
<p>This template is designed to detail the requirements and expectations of a Contractor to support recruiting, scheduling, and compensating participants to take part usability testing and focus group</p> <a href="https://www.usability.gov/how-to-and-tools/resources/templates/sow-template-usability-focus-group-participant-recruitment.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/resources/templates/sow-template-usability-focus-group-participant-recruitment.html</guid>
</item>
<item>
<title>Usability Test Screener: Online Survey</title>
<link>https://www.usability.gov/how-to-and-tools/resources/templates/usability-test-screener-online-survey.html</link>
<description><i>Friday, June 21, 2013</i><br>
<p>An example of a screener used to recruit participants for an online survey. </p>
<a href="https://www.usability.gov/how-to-and-tools/resources/templates/usability-test-screener-online-survey.html"> Read More </a></description>
<pubDate />
<dc:creator />
<guid isPermaLink="false">https://www.usability.gov/how-to-and-tools/resources/templates/usability-test-screener-online-survey.html</guid>
</item>
<item>
<title>Usability Test Screener - Mobile Device Testing</title>
<link>https://www.usability.gov/how-to-and-tools/resources/templates/usability-test-screener-mobile-device-testing.html</link>
<description><i>Friday, June 21, 2013</i><br>
<p>An example of a screener used to recruit participants for a website test using their Smartphones.</p>
<a href="https://www.usability.gov/how-to-and-tools/resources/templates/usability-test-screener-mobile-device-testing.html"> Read More </a></description>