-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatom.xml
6010 lines (5990 loc) · 271 KB
/
atom.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"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/" xmlns:indexing="urn:atom-extension:indexing" indexing:index="no"><access:restriction xmlns:access="http://www.bloglines.com/about/specs/fac-1.0" relationship="deny"/>
<title>Planet Ubuntu - Wisconsin Edition</title>
<updated>2016-02-02T18:53:49Z</updated>
<generator uri="http://intertwingly.net/code/venus/">Venus</generator>
<author>
<name>Simon Quigley</name>
<email>[email protected]</email>
</author>
<id>http://planet.ubuntu-wisconsin.org/atom.xml</id>
<link href="http://planet.ubuntu-wisconsin.org/atom.xml" rel="self" type="application/atom+xml"/>
<link href="http://planet.ubuntu-wisconsin.org/" rel="alternate"/>
<entry>
<id>http://ubuntu-wisconsin.org/blog/2016/01/27/</id>
<link href="http://ubuntu-wisconsin.org/blog/2016/01/27/" rel="alternate" type="text/html"/>
<title>About our Mailing List</title>
<summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><h3>Post by Simon Quigley (tsimonq2)</h3>
<p>
Instead of having our mailing list through Ubuntu Lists, we have it through Launchpad.
There are a lot of advantages to having this setup, but before I outline those, I would like to explain what goes on the mailing list.
Every week, I forward the Ubuntu Weekly Newsletter on to the mailing list with a quick little comment about our recent blog post like I am probably going to do soon.
I also forward the Kernel Team newsletter on, although before I started doing this, I sent an email to the list explaining this. This might change in the future.
Along with the newsletters, I send details about our next meeting 2 weeks and 24 hours(to clear up confusion, two seperate emails, one 2 weeks before and one 24 hours before) before our next monthly meeting describing the details such as the agenda and general encouragement to participate.
I will make a blog post next week describing our monthly meeting process, because next week is when I do the prep either way.
Also, if members have questions about the LoCo, this is the place to ask them and get feedback, such as the planning for our Xenial Xerus release party.
</p>
<br/>
<p>
Here are the advantages and disadvantages of using Launchpad for our mailing list:
</p>
<br/>
<p>
<b>Advantages:</b>
</p>
<ul>
<li>
When a new member joins the team, they already have a Launchpad account, and it is easy to subscribe
</li>
<li>
When a new member joins the Launchpad team, they can subscribe to the mailing list while joining
</li>
<li>
The archives are organized well, with many useful features for viewing them
</li>
<li>
I can see who is subscribed and how many members, with links to their Launchpad pages
</li>
<li>
I can easily view scrubbed HTML attachments
</li>
</ul>
<p>
<b>Disadvantages:</b>
</p>
<ul>
<li>
It is not on an *.ubuntu.com domain
</li>
<li>
The mailing list archives can be a bit slow to show up on the page for this, although it has gotten better and it is being addressed
</li>
<li>
This isn't necessarily traditional for a LoCo to do, as far as I know
</li>
<li>
It isn't approved by the LoCo Council (yet)
</li>
</ul>
<p>
Although it has it's downsides, using Launchpad for our mailing list has been very smooth for us and the advantages outweigh the disadvantages, in my honest opinion.
So we will continue to use it.
</p>
<br/>
<p>
This concludes the blog post about our wiki page. If you have any questions/comments/concerns about this blog post or the mailing list, please contact Simon Quigley or stop by #ubuntu-us-wi on Freenode.
</p></div>
</summary>
<updated>2016-01-27T20:00:00Z</updated>
<author>
<name>Simon Quigley</name>
<email>[email protected]</email>
</author>
<source>
<id>http://ubuntu-wisconsin.org/blog/</id>
<link href="http://ubuntu-wisconsin.org/blog/" rel="alternate" type="text/html"/>
<link href="http://ubuntu-wisconsin.org/blog/feed" rel="self" type="application/rss+xml"/>
<subtitle>The official blog for the Ubuntu US Wisconsin LoCo Team</subtitle>
<title>Ubuntu US Wisconsin LoCo Team Blog</title>
<updated>2016-02-02T18:53:45Z</updated>
</source>
</entry>
<entry>
<id>http://ubuntu-wisconsin.org/blog/2016/01/20/</id>
<link href="http://ubuntu-wisconsin.org/blog/2016/01/20/" rel="alternate" type="text/html"/>
<title>Tour of our Wiki Page</title>
<summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><h3>Post by Simon Quigley (tsimonq2)</h3>
<p>
We have set up a wiki page for existing members to use as a resource for doing LoCo related tasks.
This blog post is a walkthrough of the wiki page, and the resources we have in place.
</p>
<h2>
<a href="https://wiki.ubuntu.com/WisconsinTeam" style="color: blue;">The main page</a>
</h2>
<p>
On the very top of the page are details about our next IRC and monthly meetings.
We also have other pages listed that I will describe in a bit.
In addition, we have brief information about our Local Community team.
<br/>
<br/>
After the top part, we have the <b>Joining</b>, <b>Events</b>, and <b>Meetings</b> headers.
Under the <b>Joining</b> header, we have a link to our NewMemberOrientation page, which I will describe in a bit.
Under the <b>Events</b> header, we have a link to the LoCo Portal that has our upcoming events.
At the time of writing this, we don't have any upcoming events, but once we do, it will go on the wiki page under his header.
Under the <b>Meetings</b> header, we have a link to the LoCo Portal that has our upcoming meetings.
A blog post will be written describing our meetings in the future, although if you would like to check that out and discover yourself, go ahead.
<br/>
<br/>
The final header on the wiki page is <b>Communication</b>.
This section has some useful resources that are occasionally used by our members.
It will get a little revamping after Alex finishes making some orange badges for Reddit and such.
</p>
<h2>
<a href="https://wiki.ubuntu.com/WisconsinTeam/MeetingAgendas" style="color: blue;">MeetingAgendas</a>
</h2>
<p>
On this page, we have Meeting Agendas.
Every monthly meeting we have, the meeting chair (usually myself) updates this page.
It just has the agendas, which will be explained in a future blog post.
Also, whenever we have a successful IRC meeting, the IRC logs go here.
</p>
<h2>
<a href="https://wiki.ubuntu.com/WisconsinTeam/NewMemberOrientation" style="color: blue;">NewMemberOrientation</a>
</h2>
<p>
This page is our (lowercase c) canonical resource for getting people started with our team.
It provides all of the information needed to be considered an official member.
It does need a bit of revising to strengthen the language and clarity (if you, the reader, feel inclined to take a look, by all means, go ahead), but this is the most solid resource we have.
</p>
<h2>
<a href="https://wiki.ubuntu.com/WisconsinTeam/QuickStart" style="color: blue;">QuickStart</a>
</h2>
<p>
This is currently a bare page, with a lot of work needed.
It is a huge concept I am working on with Alex.
More information to come.
</p>
<h2>
<a href="https://wiki.ubuntu.com/WisconsinTeam/TeamReports" style="color: blue;">TeamReports</a>
</h2>
<p>
This page is out of date.
We plan on keeping our team reports here, but since we haven't really had any major meetings besides the monthly meeting and some IRC meetings that more than just 2 people attend, it isn't large enough yet to make a good team report.
This will change in the future.
</p>
<br/>
<p>
This concludes the walkthrough of our wiki page.
If you have any questions/comments/concerns about this article or the wiki page, please contact tsimonq2 on Freenode or stop by #ubuntu-us-wi.
</p></div>
</summary>
<updated>2016-01-21T01:00:00Z</updated>
<author>
<name>Simon Quigley</name>
<email>[email protected]</email>
</author>
<source>
<id>http://ubuntu-wisconsin.org/blog/</id>
<link href="http://ubuntu-wisconsin.org/blog/" rel="alternate" type="text/html"/>
<link href="http://ubuntu-wisconsin.org/blog/feed" rel="self" type="application/rss+xml"/>
<subtitle>The official blog for the Ubuntu US Wisconsin LoCo Team</subtitle>
<title>Ubuntu US Wisconsin LoCo Team Blog</title>
<updated>2016-02-02T18:53:45Z</updated>
</source>
</entry>
<entry>
<id>http://ubuntu-wisconsin.org/blog/2016/01/15/</id>
<link href="http://ubuntu-wisconsin.org/blog/2016/01/15/" rel="alternate" type="text/html"/>
<title>About the Ubuntu US Wisconsin Local Community Team</title>
<summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><h3>Post by Simon Quigley (tsimonq2)</h3>
<p>
This first blog post on behalf of the Ubuntu US Wisconsin LoCo Team is to explain some items about the team in general.
If you have any questions/comments/concerns about any of this, please contact tsimonq2 on IRC or stop by #ubuntu-us-wi on Freenode.
</p>
<h2>
Who leads the LoCo?
</h2>
<p>
Simon Quigley is the main coordinator, contact, and facilitative leader for the team.
Until the team grows a bit, he does the planning and execution of meetings and events for the team.
He was appointed the position from Anthony Hook, the previous leader, in mid-November 2015.
</p>
<h2>
How many active members do you have?
</h2>
<p>
In Launchpad, we have 21 members.
We have about 5-10 members who are very active, and a couple more who occasionally respond to threads on our Mailing List.
When a new member joins, they get a one year term, and then they have to renew. This helps eliminate anyone who isn't active any more.
A lot of the members were already there since the last bit of activity in 2012, but have stuck around.
</p>
<h2>
What do you use for a mailing list?
</h2>
<p>
Instead of using Ubuntu Mailing Lists, we use the Launchpad mailing list system.
This makes it much easier for new members to join the mailing list after joining the LoCo.
It is also easy to find if you can find our Launchpad page link.
</p>
<h2>
Are you on the Ubuntu Forums?
</h2>
<p>
We had a forum, but we voted to no longer use it due to the inactivity.
Since we have a few Reddit experts in our team, we decided to use Reddit in place of that.
Our subreddit is <a href="https://www.reddit.com/r/ubuntuwisconsinloco" style="color: blue;">/r/ubuntuwisconsinloco</a>.
</p>
<h2>
What other resources do you have established?
</h2>
<p>
</p><ul>
<li><a href="https://wiki.ubuntu.com/WisconsinTeam" style="color: blue;">Wiki Page</a> - meant as a base for already existing members</li>
<li><a href="https://launchpad.net/~ubuntu-us-wisconsin" style="color: blue;">Launchpad</a></li>
<li><a href="http://ubuntu-wisconsin.org/" style="color: blue;">ubuntu-wisconsin.org</a> - The site you are currently on, a major work in progress, blog post to come</li>
<li><a href="https://lists.launchpad.net/ubuntu-us-wisconsin/" style="color: blue;">Mailing list</a> - Team coordination</li>
<li><a href="https://www.reddit.com/r/ubuntuwisconsinloco" style="color: blue;">Subreddit</a> - Non-LoCo-specific content for the LoCo, such as a trick that someone found, or a discussion about a piece of default software in Ubuntu</li>
</ul>
<p/>
<h2>
Are these approved by the LoCo Council?
</h2>
<p>
At the time of writing this, we are still waiting for feedback from the LoCo Council to see if our resources can be officially recognized, in order to be able to become verified.
</p>
<h2>
What other people help with the LoCo?
</h2>
<p>
<b>Alex Dueppen (adueppen)</b> - Head of Graphic Design, Head of Reddit Operations.
The LoCo would be a lot different if it weren't for his many hours of dedication to this team.
<br/>
<b>Anthony Hook (h00k)</b> - Former LoCo Leader.
Anthony has been essential for helping the LoCo start up again.
Also, he spent a lot of valuable time with this LoCo before it was in the possession of Simon Quigley.
This LoCo would most likely not exist without his help.
<br/>
<b>Mike Putnam (mikeputnam)</b> - LUG Coordinator.
Mike makes sure that scheduling is fine, and that it doesn't conflict with any other Linux events around the state.
He also fills in for Simon when Simon isn't available (which is rare).
He has provided a lot of valuable help to this team.
</p></div>
</summary>
<updated>2016-01-16T03:00:00Z</updated>
<author>
<name>Simon Quigley</name>
<email>[email protected]</email>
</author>
<source>
<id>http://ubuntu-wisconsin.org/blog/</id>
<link href="http://ubuntu-wisconsin.org/blog/" rel="alternate" type="text/html"/>
<link href="http://ubuntu-wisconsin.org/blog/feed" rel="self" type="application/rss+xml"/>
<subtitle>The official blog for the Ubuntu US Wisconsin LoCo Team</subtitle>
<title>Ubuntu US Wisconsin LoCo Team Blog</title>
<updated>2016-02-02T18:53:45Z</updated>
</source>
</entry>
<entry>
<id>tag:blogger.com,1999:blog-2703060415027607989.post-7286433965252748885</id>
<link href="http://cheesehead-techblog.blogspot.com/feeds/7286433965252748885/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/>
<link href="http://www.blogger.com/comment.g?blogID=2703060415027607989&postID=7286433965252748885" rel="replies" title="0 Comments" type="text/html"/>
<link href="http://www.blogger.com/feeds/2703060415027607989/posts/default/7286433965252748885" rel="edit" type="application/atom+xml"/>
<link href="http://www.blogger.com/feeds/2703060415027607989/posts/default/7286433965252748885" rel="self" type="application/atom+xml"/>
<link href="http://cheesehead-techblog.blogspot.com/2015/12/are-you-ready-for-new-members.html" rel="alternate" title="Are you ready for new members?" type="text/html"/>
<title>Are you ready for new members?</title>
<content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><a href="http://design.ubuntu.com/wp-content/uploads/pictogram-community-orange-hex.svg" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"><img border="0" src="http://design.ubuntu.com/wp-content/uploads/pictogram-community-orange-hex.svg"/></a> In a few days, many Ubuntu users will unwrap new hardware, plug it in, and have a fantastic experience.<br/><br/>Some users will get inspired to join the community to solve bugs, add features, contribute code, and much more.<br/><br/><br/><h2>Support Gurus: use Find-a-Task</h2>New, enthusiastic users often show up in the many Ubuntu help forums.<br/><br/>Encourage them to try <a href="http://community.ubuntu.com/contribute/find-a-task" target="_blank">Find-a-Task</a> to see the variety of ways they can help.<br/>Just send them over, and we'll do the rest. <br/><br/><br/><h2>Team Leaders: Is your team ready?</h2>Is your team ready to welcome, train, and integrate these new volunteers?<br/><br/>Has your team looked at it's <a href="http://community.ubuntu.com/contribute/find-a-task" target="_blank">Find-a-Task</a> roles for volunteers? It's easy to <a href="http://cheesehead-techblog.blogspot.com/2015/01/introducing-ubuntu-find-task.html" target="_blank">add or change your team's listings</a>.<br/><br/>Is your team approachable? Can you be contacted easily by a new volunteer? Is your web page for new volunteers accurate?<br/><br/><br/><h2>Improving Find-a-Task</h2><a href="http://community.ubuntu.com/contribute/find-a-task" target="_blank">Find-a-Task</a> is the Ubuntu community's job board for volunteers. Introduced in January 2015, <a href="http://community.ubuntu.com/contribute/find-a-task" target="_blank">Find-a-Task</a> shows fellow volunteers the variety of tasks and roles available, and links those roles to the team web pages. <br/><br/>Please share your suggestions to improve <a href="http://community.ubuntu.com/contribute/find-a-task" target="_blank">Find-a-Task</a> to the Ubuntu Community Team <a href="https://lists.ubuntu.com/archives/ubuntu-community-team/" target="_blank">mailing list</a>.</div>
</content>
<updated>2015-12-20T14:40:18Z</updated>
<published>2015-12-20T14:40:00Z</published>
<category scheme="http://www.blogger.com/atom/ns#" term="Find-A-Task"/>
<category scheme="http://www.blogger.com/atom/ns#" term="planet-ubuntu"/>
<author>
<name>Ian</name>
<email>[email protected]</email>
<uri>http://www.blogger.com/profile/13159046087533726064</uri>
</author>
<source>
<id>tag:blogger.com,1999:blog-2703060415027607989</id>
<category term="python"/>
<category term="command-line"/>
<category term="Ubuntu"/>
<category term="planet-ubuntu"/>
<category term="Debian"/>
<category term="bug"/>
<category term="dbus"/>
<category term="server"/>
<category term="Xubuntu"/>
<category term="install"/>
<category term="bash"/>
<category term="superseded"/>
<category term="cron"/>
<category term="Find-A-Task"/>
<category term="GPS"/>
<category term="dbus-send"/>
<category term="fail"/>
<category term="grub"/>
<category term="upstart"/>
<category term="weather"/>
<category term="5000-L"/>
<category term="Brainstorm"/>
<category term="Epia"/>
<category term="Linux"/>
<category term="National Weather Service"/>
<category term="Network Manager"/>
<category term="Simutrans"/>
<category term="e-mail"/>
<category term="geolocation"/>
<category term="imagemagick"/>
<category term="openoffice"/>
<category term="ssh"/>
<category term="vala"/>
<category term="OSX"/>
<category term="USB"/>
<category term="VIA"/>
<category term="debootstrap"/>
<category term="fanless"/>
<category term="gpsd"/>
<category term="html"/>
<category term="initramfs"/>
<category term="package management"/>
<category term="socket"/>
<category term="sound"/>
<category term="svg"/>
<category term="torrent"/>
<category term="xml"/>
<category term="931181"/>
<category term="CAC"/>
<category term="D-feet"/>
<category term="DVD"/>
<category term="MacBook"/>
<category term="OLPC"/>
<category term="USB-ZIP"/>
<category term="XP"/>
<category term="apt-get"/>
<category term="bashrc"/>
<category term="curl"/>
<category term="evolution"/>
<category term="gtfs"/>
<category term="iptables"/>
<category term="kernel"/>
<category term="kingbaron"/>
<category term="map"/>
<category term="music"/>
<category term="nail"/>
<category term="odt"/>
<category term="python3-gi"/>
<category term="route"/>
<category term="schedule"/>
<category term="sha-1"/>
<category term="startup"/>
<category term="timetable"/>
<category term="transit"/>
<category term="trip"/>
<category term="zenity"/>
<category term="355209"/>
<category term="DSL"/>
<category term="Deluge"/>
<category term="FLAC"/>
<category term="GeoClue"/>
<category term="GitHub"/>
<category term="Google Maps"/>
<category term="IDE"/>
<category term="METAR"/>
<category term="NTFS"/>
<category term="QuickBooks"/>
<category term="S518"/>
<category term="Sangoma"/>
<category term="Synaptic"/>
<category term="TomTom"/>
<category term="UDS"/>
<category term="USB-to-serial adapter"/>
<category term="Unity"/>
<category term="Unix Domain socket"/>
<category term="VM"/>
<category term="anacron"/>
<category term="apt-cache"/>
<category term="blog"/>
<category term="businesscard"/>
<category term="c"/>
<category term="certificates"/>
<category term="compile"/>
<category term="convert"/>
<category term="crontab"/>
<category term="css"/>
<category term="current conditions"/>
<category term="ddclient"/>
<category term="debtorrent"/>
<category term="dhcp"/>
<category term="diff"/>
<category term="dpkg"/>
<category term="dvd::rip"/>
<category term="firefox"/>
<category term="firewall"/>
<category term="forecast"/>
<category term="fwknop"/>
<category term="gdbm"/>
<category term="geocode-glib"/>
<category term="getty"/>
<category term="git"/>
<category term="grep"/>
<category term="iBook"/>
<category term="import"/>
<category term="introspection"/>
<category term="irssi"/>
<category term="jablicator"/>
<category term="log"/>
<category term="logging"/>
<category term="medibuntu"/>
<category term="mgrs"/>
<category term="modem"/>
<category term="mount"/>
<category term="netinstall"/>
<category term="ntp"/>
<category term="odg"/>
<category term="package"/>
<category term="patch"/>
<category term="pci"/>
<category term="pdf"/>
<category term="port"/>
<category term="pygtk"/>
<category term="pynotify"/>
<category term="python-dbus"/>
<category term="rmadison"/>
<category term="rss"/>
<category term="rsyslog"/>
<category term="scan"/>
<category term="serial"/>
<category term="shapefile"/>
<category term="skype"/>
<category term="ssmtp"/>
<category term="strings"/>
<category term="sudo"/>
<category term="sudoers"/>
<category term="syslinux"/>
<category term="syslog"/>
<category term="terminal"/>
<category term="tty"/>
<category term="visudo"/>
<category term="webserver"/>
<category term="wget"/>
<category term="wine"/>
<category term="-39"/>
<category term=".desktop"/>
<category term=".epub"/>
<category term=".lit"/>
<category term=".qbw"/>
<category term="0003:0D8C:000C.0003"/>
<category term="109917"/>
<category term="11.10"/>
<category term="117984"/>
<category term="158706"/>
<category term="189642"/>
<category term="302"/>
<category term="3689"/>
<category term="3g2"/>
<category term="858122"/>
<category term="AKO Instant Messenger"/>
<category term="AR9721"/>
<category term="Amtrak"/>
<category term="Appleworks"/>
<category term="Application Indicator"/>
<category term="Bean"/>
<category term="Blogger"/>
<category term="C-Media"/>
<category term="CHKDSK"/>
<category term="DNS-321"/>
<category term="DOD"/>
<category term="E625-5192"/>
<category term="ElementTree"/>
<category term="EtherWrite"/>
<category term="GIMP"/>
<category term="Garmin"/>
<category term="GeoIP"/>
<category term="Google+"/>
<category term="Journal"/>
<category term="LAMP"/>
<category term="LXC"/>
<category term="LaserWriter 4/600"/>
<category term="LiMux"/>
<category term="LiveCD"/>
<category term="Munich"/>
<category term="NAS"/>
<category term="National Digital Forecast Database"/>
<category term="OCR"/>
<category term="Outlook Express"/>
<category term="Pidgin"/>
<category term="RAID 1"/>
<category term="RESTful"/>
<category term="RS232"/>
<category term="RTFM"/>
<category term="Rubik's Cube"/>
<category term="SCX-4725"/>
<category term="SD"/>
<category term="Screen"/>
<category term="Shuttle"/>
<category term="TCP"/>
<category term="TL-WN722N"/>
<category term="Tesseract"/>
<category term="Thunar"/>
<category term="USB-FDD"/>
<category term="V745A"/>
<category term="Vicks"/>
<category term="Windows XP"/>
<category term="Wordpress"/>
<category term="XO"/>
<category term="[]"/>
<category term="abcde"/>
<category term="abiword"/>
<category term="add-remove"/>
<category term="admin"/>
<category term="ai"/>
<category term="alerts"/>
<category term="alias"/>
<category term="alternate CD"/>
<category term="amixer"/>
<category term="anacrontab"/>
<category term="aplay"/>
<category term="apt"/>
<category term="apt-move"/>
<category term="apt-rdepends"/>
<category term="aptitude"/>
<category term="aria2c"/>
<category term="asknot"/>
<category term="aspell"/>
<category term="atd"/>
<category term="ath9k_htc"/>
<category term="audio"/>
<category term="autostart"/>
<category term="avahi"/>
<category term="avahi-discover"/>
<category term="backports"/>
<category term="backup"/>
<category term="backup-manager"/>
<category term="blacklist"/>
<category term="brasero"/>
<category term="broken"/>
<category term="cackey"/>
<category term="checksum"/>
<category term="clit"/>
<category term="clock"/>
<category term="color"/>
<category term="configparse"/>
<category term="console"/>
<category term="console-kit"/>
<category term="container"/>
<category term="copy"/>
<category term="crash"/>
<category term="crda"/>
<category term="cups"/>
<category term="dash"/>
<category term="dbm"/>
<category term="ddns"/>
<category term="deb"/>
<category term="deborphan"/>
<category term="defrag"/>
<category term="degraded array"/>
<category term="deluged"/>
<category term="dependencies"/>
<category term="desktop"/>
<category term="developer.ubuntu.com"/>
<category term="devscripts"/>
<category term="diagram"/>
<category term="disk utility"/>
<category term="dmesg"/>
<category term="dos"/>
<category term="drive"/>
<category term="dvdcopy"/>
<category term="ebook"/>
<category term="environment variable"/>
<category term="etherape"/>
<category term="etrex"/>
<category term="external monitor"/>
<category term="favicon"/>
<category term="fbreader"/>
<category term="file sharing"/>
<category term="firefly"/>
<category term="fix"/>
<category term="font"/>
<category term="format"/>
<category term="gateway"/>
<category term="geoclue-test-gui"/>
<category term="gif"/>
<category term="gnome-keyring"/>
<category term="go"/>
<category term="gobject"/>
<category term="hal"/>
<category term="hard drive"/>
<category term="hdparm"/>
<category term="headless"/>
<category term="headset"/>
<category term="hosts.deny"/>
<category term="http.server"/>
<category term="httplib2"/>
<category term="humidifier"/>
<category term="iMac"/>
<category term="icon"/>
<category term="imagemap"/>
<category term="initctl"/>
<category term="initctl2dot"/>
<category term="initrd"/>
<category term="inkscape"/>
<category term="intel_rng"/>
<category term="interprocess"/>
<category term="iwlist"/>
<category term="javascript"/>
<category term="jpg"/>
<category term="korinthian violins"/>
<category term="launchd"/>
<category term="library"/>
<category term="list"/>
<category term="lit2epub"/>
<category term="localtalk"/>
<category term="logger"/>
<category term="logging.handlers"/>
<category term="login"/>
<category term="logoff"/>
<category term="logout"/>
<category term="logrotate"/>
<category term="make-kpkg"/>
<category term="mdadm"/>
<category term="metapackage"/>
<category term="mirror"/>
<category term="missing"/>
<category term="moderator"/>
<category term="mozilla"/>
<category term="mp3"/>
<category term="mt-daapd"/>
<category term="netatalk"/>
<category term="netcat"/>
<category term="notification"/>
<category term="null-modem"/>
<category term="pacmd"/>
<category term="palette"/>
<category term="phone"/>
<category term="pipe"/>
<category term="plist"/>
<category term="png"/>
<category term="popen"/>
<category term="port knock"/>
<category term="printer"/>
<category term="process"/>
<category term="ps"/>
<category term="ps2pdf"/>
<category term="pulseaudio"/>
<category term="python3-gdbm"/>
<category term="qbfc"/>
<category term="qbxml"/>
<category term="radar"/>
<category term="rdiff-backup"/>
<category term="realtime"/>
<category term="reboot"/>
<category term="redirect"/>
<category term="remount"/>
<category term="resume"/>
<category term="reviewer"/>
<category term="router"/>
<category term="rsnapshot"/>
<category term="runlevel"/>
<category term="samba"/>
<category term="security"/>
<category term="services-admin"/>
<category term="set"/>
<category term="signals"/>
<category term="skype4pidgin"/>
<category term="slocate"/>
<category term="snd-hda-intel"/>
<category term="speaker"/>
<category term="spelling"/>
<category term="sql"/>
<category term="sqlite"/>
<category term="sshd"/>
<category term="sshfs"/>
<category term="status"/>
<category term="stop"/>
<category term="stop_times.txt"/>
<category term="string arrays"/>
<category term="subprocess"/>
<category term="success"/>
<category term="systemd"/>
<category term="tiff"/>
<category term="tkinter"/>
<category term="top"/>
<category term="trace bitmap"/>
<category term="trackpad"/>
<category term="train"/>
<category term="transcode"/>
<category term="update-grub"/>
<category term="update-notifier"/>
<category term="upstart-monitor"/>
<category term="valve"/>
<category term="vapi"/>
<category term="vga"/>
<category term="video"/>
<category term="vista"/>
<category term="warnings"/>
<category term="watches"/>
<category term="weather-util"/>
<category term="weather-util-data"/>
<category term="web scraper"/>
<category term="wireless"/>
<category term="wireless dongle"/>
<category term="wodim"/>
<category term="xdot"/>
<category term="xrandr"/>
<author>
<name>Ian</name>
<email>[email protected]</email>
<uri>http://www.blogger.com/profile/13159046087533726064</uri>
</author>
<link href="http://cheesehead-techblog.blogspot.com/feeds/posts/default" rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml"/>
<link href="http://www.blogger.com/feeds/2703060415027607989/posts/default" rel="self" type="application/atom+xml"/>
<link href="http://cheesehead-techblog.blogspot.com/" rel="alternate" type="text/html"/>
<link href="http://pubsubhubbub.appspot.com/" rel="hub" type="text/html"/>
<link href="http://www.blogger.com/feeds/2703060415027607989/posts/default?start-index=26&max-results=25" rel="next" type="application/atom+xml"/>
<subtitle type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">I document my adventures and problems so that I remember my mistakes, and perhaps you may learn something.<br/>I'm not a programmer, nor a computer expert.<br/>I'm just a tinkering guy in Milwaukee with a store and three kids to keep me busy.</div>
</subtitle>
<title>Ian's TechBlog</title>
<updated>2016-01-25T02:51:30Z</updated>
</source>
</entry>
<entry xml:lang="en-US">
<id>http://anthonyrhook.com/?p=70</id>
<link href="http://anthonyrhook.com/wi-vmug-supervmug-useful-tools-updated-from-march-version/" rel="alternate" type="text/html"/>
<title>WI-VMUG SuperVMUG – Useful Tools (Updated from March Version)</title>
<content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p/></div>
</content>
<updated>2015-11-19T19:39:28Z</updated>
<category term="Uncategorized"/>
<author>
<name>anthony</name>
</author>
<source>
<id>http://anthonyrhook.com</id>
<link href="http://anthonyrhook.com/feed/" rel="self" type="application/rss+xml"/>
<link href="http://anthonyrhook.com" rel="alternate" type="text/html"/>
<subtitle>death before decaf</subtitle>
<title>this is the hook</title>
<updated>2016-02-02T18:34:51Z</updated>
</source>
</entry>
<entry>
<id>tag:blogger.com,1999:blog-2703060415027607989.post-5297523414793422118</id>
<link href="http://cheesehead-techblog.blogspot.com/feeds/5297523414793422118/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/>
<link href="http://www.blogger.com/comment.g?blogID=2703060415027607989&postID=5297523414793422118" rel="replies" title="0 Comments" type="text/html"/>
<link href="http://www.blogger.com/feeds/2703060415027607989/posts/default/5297523414793422118" rel="edit" type="application/atom+xml"/>
<link href="http://www.blogger.com/feeds/2703060415027607989/posts/default/5297523414793422118" rel="self" type="application/atom+xml"/>
<link href="http://cheesehead-techblog.blogspot.com/2015/11/uos-overflow-session-find-task.html" rel="alternate" title="UOS Overflow Session: FInd-a-Task" type="text/html"/>
<title>UOS Overflow Session: FInd-a-Task</title>
<content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><a href="http://design.ubuntu.com/wp-content/uploads/pictogram-community-orange-hex.svg" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"><img border="0" src="http://design.ubuntu.com/wp-content/uploads/pictogram-community-orange-hex.svg"/></a>The <a href="http://summit.ubuntu.com/uos-1511/" target="_blank">Ubuntu Online Summit</a> has added an overflow session on Find-a-Task, the Ubuntu community's volunteer job board. The job board tries to link volunteers with a wide range of jobs that need to be done.<br/><br/><ul><li>Does it work?</li><li>Have you tried it?</li><li>Do you know anyone who has joined a team after using it?</li><li>Is your team listed on it?</li><li>How can it be improved?</li><li>Is it the best gateway for undecided new volunteers?</li></ul><br/>Join us tomorrow, 05 Nov at 1800 UTC to discuss the future of Find-a-Task, and the best ways to recruit new Ubuntu Members.<br/><br/>Watch Live at <a class="ot-anchor aaTEdf" dir="ltr" href="http://summit.ubuntu.com/uos-1511/meeting/22644/growing-new-community-members/" rel="nofollow" target="_blank">http://summit.ubuntu.com/uos-1511/meeting/22644/growing-new-community-members/</a><br/>Or join us on freenode IRC: #ubuntu-uos-overflow<br/><br/>See you there!</div>
</content>
<updated>2015-11-04T22:36:49Z</updated>
<published>2015-11-04T22:36:00Z</published>
<category scheme="http://www.blogger.com/atom/ns#" term="Find-A-Task"/>
<category scheme="http://www.blogger.com/atom/ns#" term="planet-ubuntu"/>
<author>
<name>Ian</name>
<email>[email protected]</email>
<uri>http://www.blogger.com/profile/13159046087533726064</uri>
</author>
<source>
<id>tag:blogger.com,1999:blog-2703060415027607989</id>
<category term="python"/>
<category term="command-line"/>
<category term="Ubuntu"/>
<category term="planet-ubuntu"/>
<category term="Debian"/>
<category term="bug"/>
<category term="dbus"/>
<category term="server"/>
<category term="Xubuntu"/>
<category term="install"/>
<category term="bash"/>
<category term="superseded"/>
<category term="cron"/>
<category term="Find-A-Task"/>
<category term="GPS"/>
<category term="dbus-send"/>
<category term="fail"/>
<category term="grub"/>
<category term="upstart"/>
<category term="weather"/>
<category term="5000-L"/>
<category term="Brainstorm"/>
<category term="Epia"/>
<category term="Linux"/>
<category term="National Weather Service"/>
<category term="Network Manager"/>
<category term="Simutrans"/>
<category term="e-mail"/>
<category term="geolocation"/>
<category term="imagemagick"/>
<category term="openoffice"/>
<category term="ssh"/>
<category term="vala"/>
<category term="OSX"/>
<category term="USB"/>
<category term="VIA"/>
<category term="debootstrap"/>
<category term="fanless"/>
<category term="gpsd"/>
<category term="html"/>
<category term="initramfs"/>
<category term="package management"/>
<category term="socket"/>
<category term="sound"/>
<category term="svg"/>
<category term="torrent"/>
<category term="xml"/>
<category term="931181"/>
<category term="CAC"/>
<category term="D-feet"/>
<category term="DVD"/>
<category term="MacBook"/>
<category term="OLPC"/>
<category term="USB-ZIP"/>
<category term="XP"/>
<category term="apt-get"/>
<category term="bashrc"/>
<category term="curl"/>
<category term="evolution"/>
<category term="gtfs"/>
<category term="iptables"/>
<category term="kernel"/>
<category term="kingbaron"/>
<category term="map"/>
<category term="music"/>
<category term="nail"/>
<category term="odt"/>
<category term="python3-gi"/>
<category term="route"/>
<category term="schedule"/>
<category term="sha-1"/>
<category term="startup"/>
<category term="timetable"/>
<category term="transit"/>
<category term="trip"/>
<category term="zenity"/>
<category term="355209"/>
<category term="DSL"/>
<category term="Deluge"/>
<category term="FLAC"/>
<category term="GeoClue"/>
<category term="GitHub"/>
<category term="Google Maps"/>
<category term="IDE"/>
<category term="METAR"/>
<category term="NTFS"/>
<category term="QuickBooks"/>
<category term="S518"/>
<category term="Sangoma"/>
<category term="Synaptic"/>
<category term="TomTom"/>
<category term="UDS"/>
<category term="USB-to-serial adapter"/>
<category term="Unity"/>
<category term="Unix Domain socket"/>
<category term="VM"/>
<category term="anacron"/>
<category term="apt-cache"/>
<category term="blog"/>
<category term="businesscard"/>
<category term="c"/>
<category term="certificates"/>
<category term="compile"/>
<category term="convert"/>
<category term="crontab"/>
<category term="css"/>
<category term="current conditions"/>
<category term="ddclient"/>
<category term="debtorrent"/>
<category term="dhcp"/>
<category term="diff"/>
<category term="dpkg"/>
<category term="dvd::rip"/>
<category term="firefox"/>
<category term="firewall"/>
<category term="forecast"/>
<category term="fwknop"/>
<category term="gdbm"/>
<category term="geocode-glib"/>
<category term="getty"/>
<category term="git"/>
<category term="grep"/>
<category term="iBook"/>
<category term="import"/>
<category term="introspection"/>
<category term="irssi"/>
<category term="jablicator"/>
<category term="log"/>
<category term="logging"/>
<category term="medibuntu"/>
<category term="mgrs"/>
<category term="modem"/>
<category term="mount"/>
<category term="netinstall"/>
<category term="ntp"/>
<category term="odg"/>
<category term="package"/>
<category term="patch"/>
<category term="pci"/>
<category term="pdf"/>
<category term="port"/>
<category term="pygtk"/>
<category term="pynotify"/>
<category term="python-dbus"/>
<category term="rmadison"/>
<category term="rss"/>
<category term="rsyslog"/>
<category term="scan"/>
<category term="serial"/>
<category term="shapefile"/>
<category term="skype"/>
<category term="ssmtp"/>
<category term="strings"/>
<category term="sudo"/>
<category term="sudoers"/>
<category term="syslinux"/>
<category term="syslog"/>
<category term="terminal"/>
<category term="tty"/>
<category term="visudo"/>
<category term="webserver"/>
<category term="wget"/>
<category term="wine"/>
<category term="-39"/>
<category term=".desktop"/>
<category term=".epub"/>
<category term=".lit"/>
<category term=".qbw"/>
<category term="0003:0D8C:000C.0003"/>
<category term="109917"/>
<category term="11.10"/>
<category term="117984"/>
<category term="158706"/>
<category term="189642"/>
<category term="302"/>
<category term="3689"/>
<category term="3g2"/>
<category term="858122"/>
<category term="AKO Instant Messenger"/>
<category term="AR9721"/>
<category term="Amtrak"/>
<category term="Appleworks"/>
<category term="Application Indicator"/>
<category term="Bean"/>
<category term="Blogger"/>
<category term="C-Media"/>
<category term="CHKDSK"/>
<category term="DNS-321"/>
<category term="DOD"/>
<category term="E625-5192"/>
<category term="ElementTree"/>
<category term="EtherWrite"/>
<category term="GIMP"/>
<category term="Garmin"/>
<category term="GeoIP"/>
<category term="Google+"/>
<category term="Journal"/>
<category term="LAMP"/>
<category term="LXC"/>
<category term="LaserWriter 4/600"/>
<category term="LiMux"/>
<category term="LiveCD"/>
<category term="Munich"/>
<category term="NAS"/>
<category term="National Digital Forecast Database"/>
<category term="OCR"/>
<category term="Outlook Express"/>
<category term="Pidgin"/>
<category term="RAID 1"/>
<category term="RESTful"/>
<category term="RS232"/>
<category term="RTFM"/>
<category term="Rubik's Cube"/>
<category term="SCX-4725"/>
<category term="SD"/>
<category term="Screen"/>
<category term="Shuttle"/>
<category term="TCP"/>
<category term="TL-WN722N"/>
<category term="Tesseract"/>
<category term="Thunar"/>
<category term="USB-FDD"/>
<category term="V745A"/>
<category term="Vicks"/>