forked from Cloudxtreme/www
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprimary_groups.shtml
1159 lines (1063 loc) · 47.8 KB
/
primary_groups.shtml
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
<!--#set var="page_title" value="Primary Groups" -->
<!--#set var="content_title" value="Primary Groups" -->
<!--#include file="include/header-mainlogos.shtml" -->
<p> Primary groups are those which have a formal or informal claim on the names
associated with their groups or projects. They can reserve <a
href="policy.shtml#primarychannels">primary channels</a> on the network. The
following such groups and projects maintain official relationships with <span
class="freenode">freenode</span>. Each is listed along with the namespace(s)
under which its affiliated users may be <b>cloaked.</b> Cloaks are special
"virtual hostnames" which appear on a user's <span
class="freenode">freenode</span> session to indicate that user's affiliation
with a group.</p>
<p><span class="freenode">freenode</span> attempts to verify information submitted on
group contact forms and tries to minimize name conflicts, giving priority to
trademark owners and peer-directed project groups. Due to the informal nature of
community interactions, uncertainties may exist regarding the ownership of some
names.</p>
See <a href="group_registration.shtml">Group Registration</a> for information on
establishing an official relationship with <span class="freenode">freenode</span> by
submitting contact information for your group or organization.</p>
<table>
<tr>
<td style="vertical-align: top">
<a href="https://webchat.freenode.net/?channels=%23aalug">aalug</a>
</td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://frognet.net/~aalug/">AALUG</a>, the Athens (Ohio USA) Area Linux Users Group.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23aberlug">aberlug</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.aberdeen.lug.org.uk/">Aberdeen Linux Users Group</a>, Aberdeen, Scotland, UK.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23abiertos">abiertos</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.abiertos.org/">Abiertos.org</a>, the Dominican Republic's largest GNU/Linux users' group.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23afterstep">afterstep</a></td>
<td style="vertical-align: top">
The
<a rel="nofollow" href="http://www.afterstep.org/">AfterStep</a> window manager for X.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23abiquo">abiquo</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.abiquo.com">abiquo</a>
Enterprise open source cloud computing platform.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23allegro">allegro</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://alleg.sf.net/">Allegro</a>, a freely-distributed game programming library.
</td>
</tr>
<tr>
<td style="vertical-align: top">
<b>americaonline</b>,
<a href="https://webchat.freenode.net/?channels=%23aol">aol</a>
</td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.aol.com">America Online</a>,
a division of
<a rel="nofollow" href="http://www.timewarner.com/">Time Warner, Inc</a>.
</td>
</tr>
<tr>
<td style="vertical-align: top">
<a href="https://webchat.freenode.net/?channels=%23ampache">ampache</a>
</td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://ampache.org/">Ampache</a>,
a web-based tool for maintaing music files and playlists.
</td>
</tr>
<tr>
<td style="vertical-align: top">
<a href="https://webchat.freenode.net/?channels=%23android">android</a>
</td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.android.com/">android</a>,
is an open source mobile operating system. </td>
</tr>
<tr>
<td style="vertical-align: top">
<a href="https://webchat.freenode.net/?channels=%23aolserver">aolserver</a>
</td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.aolserver.com/">AOLserver</a>,
<a rel="nofollow" href="http://www.aol.com/">America Online</a>'s
TCL-enabled, multithreaded web server project
(<a rel="nofollow" href="http://www.timewarner.com/">Time Warner, Inc</a>.).
</td>
</tr>
<tr>
<td style="vertical-align: top">
<a href="https://webchat.freenode.net/?channels=%23apache">apache</a>,
<b>asf</b>
</td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.apache.org/">Apache Software Foundation</a>, Wilmington, DE USA.
</td>
</tr>
<tr>
<td style="vertical-align: top"><b>aperturadigital</b></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.aperturadigital.org/">Fundación Apertura Digital</a>,
Ushuaia, Tierra del Fuego, AR. A not-for-profit organization which
promotes the use of free software in the governmental and private
sectors in Argentina.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23asterisk">asterisk</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.asterisk.org/">Asterisk,</a>, the Open Source PBX. A project of
<a rel="nofollow" href="http://www.digium.com/">Digium, Inc</a>.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23asturlab">asturlab</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://asturlab.xwiki.com/">Asturlab,</a>,
Pravia, Asturias, ES. A youth association for computer science and
technological subjects.
</td>
</tr>
<tr>
<td style="vertical-align: top">
<a href="https://webchat.freenode.net/?channels=%23autopackage">autopackage</a>
</td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://autopackage.org/">autopackage</a>, a distro-neutral binary packaging framework for Linux systems.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23beigetower">beigetower</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.beigetower.org/">Beige Tower</a>, a community web infrastructure project.
Avida Jaene, Inc., San Francisco, CA USA.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23blenderchat">blender</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.blender.org/">Blender Foundation</a>,
Amsterdam, NL, the not-for-profit foundation which administers the
development of Blender, an open source application for 3D modeling,
animation, rendering, post-production, interactive creation and
playback.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23brlcad">brlcad</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://brlcad.org/">BRL-CAD</a>,
a Constructive Solid Geometry (CSG) based solid modeling
system.
<a rel="nofollow" href="http://ftp.arl.mil/">U.S. Army Research Laboratory</a>, Aberdeen Proving Ground, MD USA.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23calvix">calvix</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://CaLviX.org/">CaLviX</a>,
Caen, FR. A not-for profit association, the GNU/Linux Users Group
for Caen and Calvados, FR.
</td>
</tr>
<tr>
<td style="vertical-align: top">
<b>canonical,</b>
<a href="https://webchat.freenode.net/?channels=%23ubuntu">ubuntu</a>
</td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.canonical.com/">Canonical, Ltd</a>.,
Douglas, Isle of Man, UK.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23cdk">cdk</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://cdk.sf.net/">CDK</a>,
the Chemistry Development Kit.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23cogitateurs-agitateurs">cogitateurs-agitateurs</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.cogitateurs-agitateurs.org/">Cogitateurs Agitateurs</a>,
a group for thinking and acting about free information.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23colloquy">colloquy</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://colloquy.info/">Colloquy</a>,
a Mac OSX internet chat client.
</td>
</tr>
<tr>
<td style="vertical-align: top">
<a href="https://webchat.freenode.net/?channels=%23cc">cc</a>,
<b>creativecommons</b>
</td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://creativecommons.org/">Creative Commons Corporation</a>.,
Cambridge, MA USA.
</td>
</tr>
<tr>
<td style="vertical-align: top"><b>danga</b></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.danga.com/">Danga Interactive, Inc</a>.,
Beaverton, OR USA.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23debcenter">debiancenter</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.debiancenter.org/">Debian Center</a>,
a reference site for Debian and repository for unofficial Debian
projects.
</td>
</tr>
<tr>
<td style="vertical-align: top">
<b>digium</b>,
<b>digium.sponsor.pdpc</b>
</td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.digium.com/">Digium, Inc</a>., Wilmington, DE USA.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23docbook">docbook</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://sourceforge.net/projects/docbook/">DocBook</a> Open Repository.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23dovecot">dovecot</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.dovecot.org/">Dovecot</a> IMAP/POP3 server.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23dragonflycms">dragonflycms</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://dragonflycms.org/">Dragonfly CMS</a>, a content management system / portal application.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23dspam">dspam</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://dspam.nuclearelephant.com/">DSPAM</a>, statistical spam protection.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23durhamlug">durhamlug</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.dclug.org/">DurhamLUG</a>, a Linux Users' Group for the district of Durham in Ontario, CA.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23efentharwireless">efentharwireless</a></td>
<td style="vertical-align: top">
Efenthar Wireless, a community wireless network-in-planning in New Zealand.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23eicq">eicq</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://eicq.sf.net/">eicq</a>,
an ICQ client for xemacs.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23ember">ember</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://sourceforge.net/projects/ember/">ember</a>,
an early-stage operating system project based on the MIT Exokernel design.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23eogeo">eogeo</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.eogeo.org/">EOGEO, Ltd</a>., Needham MA USA, an IRS 501(c)(03) organization
chartered to provide access to geospatial data to the not-for-profit sector and the general public.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23epiar">epiar</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://epiar.net/">Epiar</a>, a C/SDL/OpenAL space shooter arcade game.
</td>
</tr>
<tr>
<td style="vertical-align: top">
<a href="https://webchat.freenode.net/?channels=%23fedora">fedora</a>,
<a href="https://webchat.freenode.net/?channels=%23fedora-es">fedora-es</a>
</td>
<td style="vertical-align: top">
The <a rel="nofollow" href="http://fedoraproject.org/">Fedora Project</a> (<a rel="nofollow" href="http://www.redhat.com/">Red Hat, Inc</a>).
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23ferm">ferm</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://ferm.foo-projects.org/">Ferm</a>,
a firewall scripting tool
(<a rel="nofollow" href="http://foo-projects.org/">Foo-Projects.org</a>).
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23fire">fire</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://sourceforge.net/projects/fire/">fire</a>, a multi-protocol IM client for OS X.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23firefox">firefox</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.mozilla.com/en-US/firefox/">Firefox</a>, the award winning next-generation web-browser from <a rel="nofollow" href="http://www.mozilla.org/">Mozilla</a>.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23foo-projects">foo-projects</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://foo-projects.org/">Foo-Projects.org</a>, an OSS development group.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23freebsd">freebsd</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.freebsd.org">FreeBSD</a>,
the operating system
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23freecnc">freecnc</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://freecnc-sf.holarse.net/">FreeCNC</a>,
an SDL-based game engine.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23freedesktop">freedesktop</a></td>
<td style="vertical-align: top">
The
<a rel="nofollow" href="http://www.freedesktop.org/">freedesktop.org</a>
community collaboration zone.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23freematrix">freematrix</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://freematrix.org/">Freematrix Radio</a>,
a streaming radio service.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23freenode">freenode</a></td>
<td style="vertical-align: top">
The
<a rel="nofollow" href="http://freenode.net/"><span class="freenode">freenode</span></a>
interactive network.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23freevo">freevo</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://freevo.sf.net/">Freevo</a>,
a home theatre PC platform based on Linux and open-source
audio/video tools.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23fsf">fsf</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.fsf.org/">Free Software Foundation</a>, Boston, MA USA.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23gallery">gallery</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://gallery.menalto.com/index.php">Gallery</a>, a web-based application for website photo management.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23galago">galago</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://galago.sf.net/">Galago</a>, a framework for transmitting presence information between desktop applications.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23gentoo">gentoo</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.gentoo.org/">Gentoo Foundation, Inc.</a>, NM USA, and the Gentoo Linux distribution.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23geoshell">geoshell</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.geoshell.org/">Geoshell</a>, a GPL-licensed replacement shell for Windows™, intended to replace the Explorer interface.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23gfsgl">gfsgl</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://gfsgl.sf.net/">GFSGL</a>, a Windows game installer/launcher for GNU/Linux.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23gnash">gnash</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.gnu.org/software/gnash/">Gnash</a>, a
<a rel="nofollow" href="http://www.gnu.org/">GNU</a>
project to produce a free, portable and usable flash decoder.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23gnokii">gnokii</a></td>
<td style="vertical-align: top">
The <a rel="nofollow" href="http://www.gnokii.org/">gnokii</a> mobile phone tool project.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23guifications">guifications</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://guifications.sf.net/">Guifications</a>,
a graphical notification plugin for the <b>gaim</b> instant message client.
</td>
</tr>
<tr>
<td style="vertical-align: top">
<a href="https://webchat.freenode.net/?channels=%23gnu">gnu</a>,
<a href="https://webchat.freenode.net/?channels=%23savannah">savannah</a>
</td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.gnu.org/">The GNU Project</a> (<a rel="nofollow" href="http://www.fsf.org/">Free Software Foundation</a>).
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23gpm">gpm</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.nico.schottelius.org/software/gpm/">GPM</a>, general purpose mouse support for the Linux console.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23growl">growl</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://growl.info/">Growl</a>, a global notification system for Mac OS X.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23hive76">hive76</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.hive76.org/">Hive76</a> a Philadelphia hackerspace that makes things awesome, and makes awesome things.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23hoodlug">hoodlug</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.hoodlug.org/">Fort Hood Linux Users Group</a> (informal; Fort Hood, Texas, USA).
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23horde">horde</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.horde.org/">The Horde Project</a>, a web-based application framework and associated applications.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23httpcraft">httpcraft</a></td>
<td style="vertical-align: top">
A <a rel="nofollow" href="http://httpcraft.com/">support group</a> helping people with all areas of web craft.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23ignition-project">ignitionproject</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.ignition-project.com/">The Ignition Project</a>, an IRC server with services.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23imgames">imgames</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://imgames.sf.net/">IMGames</a>, a client-independent IM entertainment project.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23interchange">interchange</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.icdevgroup.org/">Interchange</a>, an open source commerce server project.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23irssi">irssi</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.irssi.org/">irssi</a>, an IRC client.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23kde">kde</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.kde.org/">The KDE Project</a> and its parent organization,
<a rel="nofollow" href="http://ev.kde.org">K Desktop Environment e.V.</a>, Tuebingen, Germany.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23konversation">konversation</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.konversation.org/">konversation</a>, a user-friendly IRC client
(<a rel="nofollow" href="http://www.kde.org/areas/kde-ev/">K Desktop Environment e.V.</a>).
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23lfd">linuxfordummies</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.linuxfordummies.org/">LinuxForDummies</a>, a Linux/Unix support site.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23livejournal">livejournal</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.livejournal.com/">LiveJournal</a>, an
online journalling/blogging site
(<a rel="nofollow" href="http://www.danga.com/">Danga Interactive, Inc</a>).
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23lopsa">lopsa</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.lopsa.org/">LOPSA</a> The League of Professional System Administrators (LOPSA) is a nonprofit corporation with
members throughout the world. Our mission is to advance the practice of system administration; to support, recognize, educate, and encourage its practitioners; and to serve the public through education and outreach on system administration issues.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23lugbari">lugbari</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.lugbari.org/">LUGBari</a>, Bari Linux User Group, Castellana Grotte, Bari, IT.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23lunar">lunar</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.lunar-linux.org/">Lunar Linux</a>,
a source-based Linux distribution designed to provide tailored and optimized software for the end-user
(<a rel="nofollow" href="http://foo-projects.org/">Foo-Projects.org</a>).
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23madwifi">madwifi</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://madwifi.sf.net/">MADWiFi</a>, a Linux kernel driver
for Atheros-based Wireless LAN devices.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23mandriva">mandriva</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.mandriva.com/">Mandriva</a> (name change in process, currently Mandrakesoft, S.A., Paris, FR).
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23mepislovers">mepislovers</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.mepislovers.org/">Mepis Lovers</a>, a website and forum for Mepis Linux.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23metabug">metabug</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.metabug.org/">Metabug</a>, Global Federation of BSD User Groups
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23moin">moinmoin</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://moinmo.in/">MoinMoin</a>, a nice and easy WikiEngine with advanced features.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23mysql">mysql</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.mysql.com/">MySQL AB</a>, Uppsala, SE. The
developers of the MySQL database management system, a key component of
the LAMP open source application stack.
</td>
</tr>
<tr>
<td style="vertical-align: top">-</td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://learn.arc.nasa.gov/">NASA Learning Technologies</a>,
Ames Research Center, Moffett Field, CA, USA.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23nectarine">nectarine</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.nectarine.info/">Nectarine Networks</a>, a sole
proprietorship providing community internet services, Sinalunga, Siena,
IT.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23netbsd">netbsd</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.netbsd.org/">NetBSD Foundation</a>, New York, NY USA.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23no-sources">no-sources</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://no.oldos.org/files/">No-Sources</a>,
a Linux kernel source patch set for workstations or desktop machines.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23nslu2-linux">nslu2-linux</a></td>
<td style="vertical-align: top">
The
<a rel="nofollow" href="http://www.nslu2-linux.org/">nslu2-linux</a>
development group and user community.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23nullteam">nullteam</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.null.ro/company.html">Null Team ImpExp SRL</a>,
a VoIP software development and consulting company, Bucharest, RO.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23nylug">nylug</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.nylug.org/">New York Linux Users' Group</a>, New York, NY USA.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23opendarwin">opendarwin</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.opendarwin.org/">OpenDarwin</a>,
a cooperative fork of Apple's Darwin OS, along with related
projects.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23openmoko">openmoko</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.openmoko.org/">OpenMoko</a>,
an integrated Open Source Communications Platform for GNU/Linux based mobile phones.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23openrightsgroup">openrightsgroup</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.openrightsgroup.org">The Open Rights Group</a>,
exists to preserve and promote your rights in the digital age. We are funded by thousands of people like you.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23opensync">opensync</a></td>
<td style="vertical-align: top">
The <a rel="nofollow" href="http://www.opensync.org">OpenSync</a> project
is an ongoing effort to create a synchronization framework that will be a
platform independent, general purpose synchronization engine utilizing
modular plugins for content formats and different kind of connection types.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23objectx">objectx</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.objectx.org/">ObjectX.org</a>,
an alternative to over-priced, commercially available Operating Systems, and over-complicated traditional Open-Source software.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23ogo">ogo</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.opengroupware.org/">OpenGroupware.org</a>,
a project to create an open source groupware server integrated with
leading open source officeware projects.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23osuosl">osuosl</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://osuosl.org/">OSUOSL</a>,
Oregon State University Open Source Laboratory, Corvallis, OR, USA.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23pound-perl.pm">p3m</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://p3m.org/">pound-perl.pm (aka "p3m")</a>,
a coordination project for perl-related interactive chat groups, especially those on Internet Relay Chat.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23penguicon">penguicon</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.penguicon.org/">Penguicon</a>
is a combined Open Source Conference & Science Fiction Convention that
takes place each Spring in South-East Michigan.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23pearpc">pearpc</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://pearpc.sf.net/">PearPC</a>,
a generalized PowerPC architecture emulator.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23photogeeks">photogeeks</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.photogeeks.org/">photogeeks.org</a>,
a.k.a. The Band Formerly Known As #Photography, a discussion group
for photographic interests.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23phpbb">phpbb</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.phpbb.com/">phpBB</a>,
a scalable and customizable open source bulletin board package.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23phpgroupware">phpgroupware</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.phpgroupware.org/">phpGroupWare</a>,
a multi-user groupware suite written in PHP.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23pld-linux">pld-linux</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.pld-linux.org/">PLD Linux</a>,
a Linux distribution for advanced users and developers.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23plone">plone</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.plone.org/">The Plone Foundation</a>,
Wilmington, DE USA. Its main project is <b>Plone</b>, a user friendly
and powerful content management system.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23poipu">poipu</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.poipulinux.org/">Poipu</a>,
a cutting-edge, fully open source distribution of GNU/Linux.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23princed">princed</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.princed.org/">Princed</a>,
a set of free software projects related to the Prince of Persia game.
Sponsored by
<a rel="nofollow" href="http://www.aperturadigital.org/">Fundación Apertura Digital</a>.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23pseudocode">pseudocode</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://community.pseudocode.org/">pseudocode</a>,
a web hosting community.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23qgis">qgis</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://qgis.org/">Quantum GIS</a>, a Geographic Information System (GIS) built for Linux/Unix.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23qt">qt</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://qt-project.org/">Qt</a>
is a cross-platform application and UI framework. Using Qt, you can write applications once and deploy them across
many desktop and embedded operating systems without rewriting the source code. The Qt community is a loose community
of developers, translators and any kind of helpful people who develop the product or other tools & frameworks around it.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23redhat">redhat</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.redhat.com/">Red Hat, Inc</a>., Raleigh, NC USA.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23rockbox">rockbox</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.rockbox.org/">Rockbox</a>, an open source
firmware for mp3/digital audio players.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23rojo">rojo</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://rojo.com/">Rojo Neworks, Inc</a>., San Francisco, CA USA.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23rsbac">rsbac</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.rsbac.org/">RSBAC</a>,
an access control framework for current Linux kernels which supports a
variety of security models.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23ruslug">ruslug</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://ruslug.rutgers.edu/">RUSLUG</a>,
the Rutgers University Student Linux Users Group, New Brunswick, NJ
USA.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23sabily">sabily</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.sabily.org/">Sabily</a> is an
Operating System designed for Muslims, based on Ubuntu.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23sane">sane</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.sane-project.org/">SANE</a>,
an API providing standardized access to raster image scanners.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23scummvm">scummvm</a></td>
<td style="vertical-align: top">
The
<a rel="nofollow" href="http://www.scummvm.org/">ScummVM</a>
game virtual machine project.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23shadowcat">shadowcat</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.shadowcat.co.uk">shadowcat</a>
Shadowcat Systems Ltd is an open source focused consultancy.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23sourceforge">sourceforge</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://sourceforge.net/">SourceForge.net</a>,
a provider of free hosting for Open Source software development projects.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23sourcemage">sourcemage</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.sourcemage.org/">Source Mage</a>,
a source-based GNU/Linux distribution.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23squid">squid</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.squid-cache.org/">Squid</a>,
web proxy cache.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23swig">swig</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.w3.org/2001/sw/interest/">Semantic Web Interest Group</a>
(<a rel="nofollow" href="http://www.w3.org/">World Wide Web Consortium</a>).
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23svn">svn</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://subversion.tigris.org/">Subversion</a>,
a version control system designed as a compelling replacement for CVS.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23suspend2">suspend2</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.suspend2.net/">Suspend2</a>,
software suspend for the Linux kernel.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23sxemacs">sxemacs</a></td>
<td style="vertical-align: top">
The
<a rel="nofollow" href="http://www.sxemacs.org/">sxemacs</a>
project,
a fork of XEmacs 21.4.16.
</td>
</tr>
<tr>
<td style="vertical-align: top"><a href="https://webchat.freenode.net/?channels=%23synecdoche">synecdoche</a></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://code.google.com/p/synecdoche/">Synecdoche</a>
is a fork of Berkeley Open Infrastructure for Network Computing (BOINC).
</td>
</tr>
<tr>
<td style="vertical-align: top"><b>systemdefender</b></td>
<td style="vertical-align: top">
<a rel="nofollow" href="http://www.systemdefender.net/">System Defender, Ltd</a>., Clifton Bristol, UK.
</td>