-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1187 lines (1024 loc) · 55.5 KB
/
index.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb" >
<head>
<base href="" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="robots" content="index, follow" />
<meta name="keywords" content="SFD, PULUG, Software Freedom Day, UIET, Panjab University, FOSS" />
<meta name="title" content="Software Freedom, underpinning your human rights" />
<meta name="author" content="Shubham Chaudhary Shamsher Ahmed" />
<meta name="description" content="Software Freedom Day - The worldwide celebration of Free Software!" />
<title>Software Freedom Day, Panjab University - Software Freedom, underpinning your human rights</title>
<link href="http://www.softwarefreedomday.org/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<link rel="stylesheet" href="http://www.softwarefreedomday.org/plugins/system/rokbox/themes/light/rokbox-style.css" type="text/css" />
<link rel="stylesheet" href="http://www.softwarefreedomday.org/templates/rt_affinity_j15/css/template.css" type="text/css" />
<link rel="stylesheet" href="http://www.softwarefreedomday.org/templates/rt_affinity_j15/css/style1.css" type="text/css" />
<link rel="stylesheet" href="http://www.softwarefreedomday.org/templates/rt_affinity_j15/css/typography.css" type="text/css" />
<link rel="stylesheet" href="http://www.softwarefreedomday.org/templates/rt_affinity_j15/css/planet.css" type="text/css" />
<link rel="stylesheet" href="http://www.softwarefreedomday.org/templates/rt_affinity_j15/css/generic.css" type="text/css" />
<link rel="stylesheet" href="http://www.softwarefreedomday.org/templates/system/css/system.css" type="text/css" />
<link rel="stylesheet" href="http://www.softwarefreedomday.org/templates/system/css/general.css" type="text/css" />
<link rel="stylesheet" href="http://www.softwarefreedomday.org/templates/rt_affinity_j15/css/rokmoomenu.css" type="text/css" />
<link rel="stylesheet" href="http://www.softwarefreedomday.org/modules/mod_jflanguageselection/tmpl/mod_jflanguageselection.css" type="text/css" />
<style type="text/css">
<!--
.osolCaptchaBlock{
width:100%;
}
.osolCaptchaBlock label{
}
.osolCaptchaBlock table td{
text-align:left;
}
div.wrapper { margin: 0 auto; width: 979px;padding:0;}
#leftcol { width:0px;padding:0;float:left;}
#rightcol { width:260px;padding:0;}
#main-body { width:699px;padding:0;float:left;}
#maincol { width:654px;padding:0;float:right;}
#inset-block-left { width:0px;padding:0;}
#inset-block-right { width:0px;padding:0;}
#maincontent-block { margin-right:0px;margin-left:0px;}
.gallery-flickr ul li {list-style-type:none;float:left;background: none;margin-left:0}.gallery-flickr ul {margin: 0} #right .gallery-flickr ul li a,#left .gallery-flickr ul li a,.gallery-flickr ul li a {float:left;margin:0 4px 4px 0;padding: 0;background:none;border: 0;} .gallery-flickr ul li a:hover {background: #ddd} #gallery-flickr {padding: 0;line-height: 0;margin: 0} .clearfix {clear:both}
-->
</style>
<script type="text/javascript" src="http://www.softwarefreedomday.org/media/system/js/mootools.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="http://www.softwarefreedomday.org/media/system/js/caption.js"></script>
<script type="text/javascript" src="http://www.softwarefreedomday.org/plugins/system/rokbox/rokbox.js"></script>
<script type="text/javascript" src="http://www.softwarefreedomday.org/plugins/system/rokbox/themes/light/rokbox-config.js"></script>
<script type="text/javascript" src="http://www.softwarefreedomday.org/templates/rt_affinity_j15/js/rokfonts.js"></script>
<script type="text/javascript" src="http://www.softwarefreedomday.org/templates/rt_affinity_j15/js/rokdate.js"></script>
<script type="text/javascript" src="http://www.softwarefreedomday.org/templates/rt_affinity_j15/js/rokutils.js"></script>
<script type="text/javascript" src="http://www.softwarefreedomday.org/templates/rt_affinity_j15/js/rokutils.inputs.js"></script>
<script type="text/javascript" src="http://www.softwarefreedomday.org/templates/rt_affinity_j15/js/rokmoomenu.js"></script>
<script type="text/javascript" src="http://www.softwarefreedomday.org/templates/rt_affinity_j15/js/mootools.bgiframe.js"></script>
<script type="text/javascript" src="http://www.softwarefreedomday.org/modules/mod_roktabs/tmpl/roktabs.js"></script>
<script type="text/javascript" src="http://www.softwarefreedomday.org/modules/mod_JFlickr/js/JFlickr.js"></script>
<script type="text/javascript" src="http://www.softwarefreedomday.org/modules/mod_JFlickr/js/jquery.fancybox/jquery.fancybox-1.2.1.pack.js"></script>
<script type="text/javascript" src="http://www.softwarefreedomday.org/modules/mod_rokstories/tmpl/js/rokstories.js"></script>
<script type="text/javascript" src="http://www.softwarefreedomday.org/modules/mod_rokintroscroller/rokintroscroller.js"></script>
<script type="text/javascript" src="http://www.softwarefreedomday.org/modules/mod_rokajaxsearch/js/rokajaxsearch.js"></script>
<script type="text/javascript">
jQuery.noConflict();
var rokboxPath = '/plugins/system/rokbox/';
window.addEvent('domready', function() {
var modules = ['side-mod','module','moduletable'];
var header = ['h3'];
RokBuildSpans(modules, header);
});
InputsExclusion.push('.content_vote','#login-module')
window.addEvent('domready', function() {
new Rokmoomenu($E('ul.menutop '), {
bgiframe: false,
delay: 500,
verhor: true,
animate: {
props: ['height'],
opts: {
duration: 500,
fps: 100,
transition: Fx.Transitions.Quad.easeOut
}
},
bg: {
enabled: true,
overEffect: {
duration: 500,
transition: Fx.Transitions.Sine.easeOut
},
outEffect: {
duration: 600,
transition: Fx.Transitions.Sine.easeOut
}
},
submenus: {
enabled: true,
opacity: 0.9,
overEffect: {
duration: 50,
transition: Fx.Transitions.Expo.easeOut
},
outEffect: {
duration: 600,
transition: Fx.Transitions.Sine.easeIn
},
offsets: {
top: 3,
right: 1,
bottom: 0,
left: 1
}
}
});
});
window.addEvent('domready', function(){ var JTooltips = new Tips($$('.slickTip'), { maxTitleChars: 50, fixed: false}); });
var RokStoriesImage = {}, RokStoriesLinks = {};
RokStoriesImage['rokstories-45'] = [];
RokStoriesLinks['rokstories-45'] = [];
window.addEvent('domready', function() {
new RokStories('rokstories-45', {
'id': 45,
'startElement': 0,
'thumbsOpacity': 1,
'mousetype': 'click',
'autorun': 1,
'delay': 5000,
'scrollerDuration': 1000,
'scrollerTransition': Fx.Transitions.Expo.easeInOut,
'startWidth': 'auto',
'layout': 'layout2',
'linkedImgs': 0,
'showThumbs': 0,
'fixedThumb': 1,
'mask': 1,
'descsAnim': 'topdown',
'imgsAnim': 'bottomup',
'thumbLeftOffsets': {x: -40, y: -100},
'thumbRightOffsets': {x: -30, y: -100}
});
});
window.addEvent('domready', function() {
var rnu = new RokIntroScroller('rokintroscroller', {
'arrows': {
'effect': true,
'opacity': 0.85
},
'scroll': {
'duration': 800,
'itemsPerClick': 6,
'transition': Fx.Transitions.Quad.easeOut
}
});
});
window.addEvent((window.webkit) ? 'load' : 'domready', function() {
window.rokajaxsearch = new RokAjaxSearch({
'results': ' Results',
'close': '',
'websearch': 0,
'blogsearch': 0,
'imagesearch': 0,
'videosearch': 0,
'imagesize': 'MEDIUM',
'safesearch': 'MODERATE',
'search': ' Search...',
'readmore': ' Read more...',
'noresults': ' No results',
'advsearch': ' Advanced search',
'page': ' Page',
'page_of': ' of',
'searchlink': 'http://www.softwarefreedomday.org/index.php?option=com_search&view=search&tmpl=component',
'advsearchlink': 'http://www.softwarefreedomday.org/index.php?option=com_search&view=search',
'uribase': 'http://www.softwarefreedomday.org/',
'limit': '10',
'perpage': '3',
'ordering': 'newest',
'phrase': 'any',
'hidedivs': '',
'includelink': 1,
'viewall': ' View all results',
'estimated': ' estimated',
'showestimated': 1,
'showpagination': 1,
'showcategory': 1,
'showreadmore': 1,
'showdescription': 1
});
});
</script>
<!--[if lte IE 6]>
<script type="text/javascript" src="/plugins/system/jbLibrary/includes/js/jquery.badBrowser.js"></script>
<![endif]-->
<link href="http://www.softwarefreedomday.org/images/favicon.ico" rel="shortcut icon" type="image/x-icon" />
</head>
<body id="ff-affinity" class="f-default style1 iehandle">
<!--Begin Top Bar-->
<div id="top-bar">
<div class="wrapper">
<div class="top-bar-padding">
<div class="topbar-strip">
<div class="date-block">
<span class="date1">Celebrate SFD 2013 on Saturday, September 28th; Come to <a href="https://maps.google.co.in/maps?expflags=enable_star_based_justifications:true&ie=UTF8&cid=7812561119633999736&q=Golden+Jubliee+hall&iwloc=A&gl=IN&hl=en" target="_blank" >Golden Jubilee Hall</a></span>
</div>
<div class="flags-mod">
<div class="moduletable">
<div id="jflanguageselection"><label for="jflanguageselection" class="jflanguageselection">Select</label>
<select name="lang" class="jflanguageselection" size="1" onchange="document.location.replace(this.value);">
<option value="http://www.softwarefreedomday.org/en" selected="selected" >English</option>
</select>
</div><noscript><a href="en"><span lang="en" xml:lang="en">English</span></a> </noscript><!--JoomFish V2.1.7 (Dafad)-->
<!-- © 2003-2011 Think Network, released under the GPL. -->
<!-- More information: at http://www.joomfish.net -->
</div>
</div>
<div id="accessibility">
<div id="buttons">
<a href="index.html?fontstyle=f-larger" title="Increase Font Size" class="large"><span class="button png"> </span></a>
<a href="index.html?fontstyle=f-smaller" title="Decrease Font Size" class="small"><span class="button png"> </span></a>
</div>
<div class="textsizer-desc">Text Size</div>
</div>
<a href="index.html#" id="lock-button" rel="rokbox[240 210][module=login-module]"><span id="lock-icon" class="login"></span><span>Login</span></a>
</div>
</div>
</div>
</div>
<!--End Top Bar-->
<!--Begin Header-->
<div id="header">
<div id="header-overlay">
<div class="wrapper">
<a href="index.html" id="logo" class="png"></a>
<div class="header-mod">
<div class="moduletable">
<script type="text/javascript">
//######################################################################################
// Author: ricocheting.com
// For: public release (freeware)
// Date: 4/24/2003 (update: 6/26/2009)
// Description: displays the amount of time until the "dateFuture" entered below.
// NOTE: the month entered must be one less than current month. ie; 0=January, 11=December
// NOTE: the hour is in 24 hour format. 0=12am, 15=3pm etc
// format: dateFuture = new Date(year,month-1,day,hour,min,sec)
// example: dateFuture = new Date(2003,03,26,14,15,00) = April 26, 2003 - 2:15:00 pm
dateFuture = new Date(2013,8,28,9,30,0);
// TESTING: comment out the line below to print out the "dateFuture" for testing purposes
// document.write(dateFuture +"<br />");
//###################################
//nothing beyond this point
function GetCount(){
dateNow = new Date(); //grab current date
amount = dateFuture.getTime() - dateNow.getTime(); //calc milliseconds between dates
delete dateNow;
// time is already past
if(amount < 0){
document.getElementById('countbox').innerHTML="Happy SFD!";
document.getElementById('tagline').innerHTML="";
}
// date is still good
else{
days=0;hours=0;mins=0;secs=0;out="";tagout="left until SFD 2013";
amount = Math.floor(amount/1000);//kill the "milliseconds" so just secs
days=Math.floor(amount/86400);//days
amount=amount%86400;
hours=Math.floor(amount/3600);//hours
amount=amount%3600;
mins=Math.floor(amount/60);//minutes
amount=amount%60;
secs=Math.floor(amount);//seconds
if(days != 0){out += days +" day"+((days!=1)?"s":"");}
else {
if(days = 0 || hours != 0){out += hours +":";}
if(days = 0 || hours != 0 || mins != 0){out += mins +":";}
out += secs ;
}
document.getElementById('countbox').innerHTML=out;
document.getElementById('tagline').innerHTML=tagout;
setTimeout("GetCount()", 1000);
}
}
window.onload=GetCount;//call when everything has loaded
</script>
<div style="position:relative;text-align:center !important;width:100%;color:#FDA80B;display:block;line-height:normal;margin:10px;">
<div id="countbox" style="font-size:20px;font-weight:bold;"></div>
<div id="tagline"></div>
</div> </div>
</div>
<div class=" search:43">
<div id="searchmod-surround">
<div class="searchmod-top"></div>
<div class="searchmod-main">
<div id="searchmod">
<div class="module">
<form name="rokajaxsearch" id="rokajaxsearch" class="blue" action="index.html" method="get">
<div class="rokajaxsearch">
<div class="roksearch-wrapper">
<input id="roksearch_search_str" name="searchword" type="text" class="inputbox" value=" Search..." />
</div>
<input type="hidden" name="searchphrase" value="any"/>
<input type="hidden" name="limit" value="1" />
<input type="hidden" name="ordering" value="newest" />
<input type="hidden" name="view" value="search" />
<input type="hidden" name="Itemid" value="99999999" />
<input type="hidden" name="option" value="com_search" />
<div id="roksearch_results"></div>
</div>
<div id="rokajaxsearch_tmp" style="visibility:hidden;display:none;"></div>
</form> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--End Header-->
<div id="page-bg"><div id="page-bg2">
<div class="wrapper">
<!--Begin Horizontal Menu-->
<div id="horiz-menu" class="moomenu"><div id="horiz-menu2"><div id="horiz-menu3">
<ul class="menutop" >
<li class="item1 active " id="current">
<a class="topdaddy link" href="index.html" >
<span>Home</span>
</a>
</li>
<li class="item110 parent " >
<a class="topdaddy link" href="participate/index.html" >
<span>Participate</span>
</a>
<div class="drop-wrap columns-1"><div class="png drop1"><div class="drop2"><div class="drop3"></div></div></div>
<ul class="png columns-1">
<li class="item112 c0" >
<a class="link" href="https://www.facebook.com/events/1413753542177795/" target="_blank" >
<span>Register yourself!</span>
</a>
</li>
<li class="item114 c0" >
<a class="link" href="map.1.html" >
<span>Look at SFD2013 map!</span>
</a>
</li>
<li class="item155 c1 coltop" >
<a class="link" href="https://www.facebook.com/events/1413753542177795/" target="_blank" >
<span>Help us promote SFD</span>
</a>
</li>
<li class="item151 c0" >
<a class="link" href="participate/countdown.html" >
<span>SFD Countdown</span>
</a>
</li>
</ul>
</div>
</li>
<li class="item139 parent " >
<a class="topdaddy link" href="register/register.html" >
<span>Register</span>
</a>
<div class="drop-wrap columns-1"><div class="png drop1"><div class="drop2"><div class="drop3"></div></div></div>
<ul class="png columns-1">
<li class="item154 c0" >
<a class="link" href="register/register.html" >
<span>Registration Instructions</span>
</a>
</li>
</ul>
</div>
</li>
<li class="item115 parent " >
<a class="topdaddy link" href="task/index.html" >
<span>Talks</span>
</a>
<!-- <div class="drop-wrap columns-1"><div class="png drop1"><div class="drop2"><div class="drop3"></div></div></div>
<ul class="png columns-1">
<li class="item116 c0 coltop" >
<a class="link" href="http://wiki.softwarefreedomday.org/" target="_blank" >
<span>SFD Wiki</span>
</a>
</li>
<li class="item117 c0" >
<a class="link" href="community/mailing-lists.html" >
<span>Mailing lists</span>
</a>
</li>
<li class="item118 c0" >
<a class="link" href="community/irc-chat.html" >
<span>IRC Chat</span>
</a>
</li>
<li class="item150 c0" >
<a class="link" href="community/sfd-planet.html" >
<span>SFD Planet</span>
</a>
</li>
</ul>
</div>
</li>
<li class="item120 parent " >
<a class="topdaddy link" href="sfd/index.html" >
<span>About Us</span>
</a>
<div class="drop-wrap columns-1"><div class="png drop1"><div class="drop2"><div class="drop3"></div></div></div>
<ul class="png columns-1">
<li class="item121 c0" >
<a class="link" href="sfd/software-freedom.html" >
<span>Software Freedom</span>
</a>
</li>
<li class="item122 c0" >
<a class="link" href="sfd/pulug.html" >
<span>PULUG</span>
</a>
</li>
<li class="item156 c0" >
<a class="link" href="sfd/uiet.html" >
<span>UIET</span>
</a>
</li>
<li class="item156 c0" >
<a class="link" href="sfd/team.html" >
<span>Team</span>
</a>
</li>
</ul>
</div>
-->
</li>
<li class="item126 parent " >
<a class="topdaddy link" href="map.1.html" >
<span>Worldwide SFD Events Map</span>
</a>
<div class="drop-wrap columns-1"><div class="png drop1"><div class="drop2"><div class="drop3"></div></div></div>
<ul class="png columns-1">
<li class="item157 c0 coltop" >
<a class="link" href="http://www.softwarefreedomday.org/map/index.php?year=2013" target="_blank" >
<span>2013</span>
</a>
</li>
<li class="item153 c0" >
<a class="link" href="http://www.softwarefreedomday.org/map/index.php?year=2012" target="_blank" >
<span>2012</span>
</a>
</li>
<li class="item149 c0" >
<a class="link" href="http://www.softwarefreedomday.org/map/index.php?year=2011" target="_blank" >
<span>2011</span>
</a>
</li>
<li class="item127 c0" >
<a class="link" href="http://www.softwarefreedomday.org/map/index.php?year=2010" target="_blank" >
<span>2010</span>
</a>
</li>
<li class="item128 c0" >
<a class="link" href="http://www.softwarefreedomday.org/map/index.php?year=2009" target="_blank" >
<span>2009</span>
</a>
</li>
<li class="item129 c0" >
<a class="link" href="http://www.softwarefreedomday.org/map/index.php?year=2008" target="_blank" >
<span>2008</span>
</a>
</li>
<li class="item130 c0" >
<a class="link" href="http://www.softwarefreedomday.org/map/index.php?year=2007" target="_blank" >
<span>2007</span>
</a>
</li>
<li class="item131 c0" >
<a class="link" href="http://www.softwarefreedomday.org/map/index.php?year=2006" target="_blank" >
<span>2006</span>
</a>
</li>
<li class="item132 c0" >
<a class="link" href="http://www.softwarefreedomday.org/map/index.php?year=2005" target="_blank" >
<span>2005</span>
</a>
</li>
</ul>
</div>
</li>
<li class="item123 " >
<a class="topdaddy link" href="contact-us.html">
<span>Contact us</span>
</a>
</li>
</ul>
<div class="clr"></div>
</div></div></div>
<!--End Horizontal Menu-->
<div id="vertical-sort">
<div id="section-row1" class="section-row">
<div id="showcase-surround">
<div id="showcase" class="png"><div id="showcase2" class="png"><div id="showcase3" class="png">
<div class="showcase-inner">
<div id="showmodules" class="spacer">
<div class="block full" style="width: 959px;">
<div class="module-light">
<div id="row1-block1" class="row"><div class="body-surround-top"><div class="body-surround-top2"><div class="body-surround-top3"></div></div></div>
<div class="body-surround">
<div class="body-surround2">
<div class="body-surround3">
<div class="flush showcase:45">
<div class="moduletable">
<script type="text/javascript">
RokStoriesImage['rokstories-45'].push('/images/stories/demo/rokstories/7.jpg');
RokStoriesImage['rokstories-45'].push('/images/stories/demo/rokstories/3.jpg');
RokStoriesImage['rokstories-45'].push('/images/stories/demo/rokstories/1.jpg');
</script>
<div id="rokstories-45" class="rokstories-layout2" >
<div class="feature-block">
<div class="image-container" style="float: left">
<div class="image-full">
<marquee scrollamount="15">
<img src="http://s20.postimg.org/vr229ytsd/6070_4202609034732_714767609_n.jpg" width="50%" height="5%" alt="Image 1" />
<img src="http://s20.postimg.org/ydhkqwkzx/58771_4202660596021_311988122_n.jpg" width="50%" height="5%" alt="Image 2" />
<img src="http://s20.postimg.org/gfwun3lu5/76214_4202580114009_1343251223_n.jpg" width="50%" height="5%" alt="Image 4" />
<img src="http://s20.postimg.org/piqdr8rwt/552018_4202745718149_1281256152_n.jpg" width="50%" height="5%" alt="Image 5" />
<img src="http://s20.postimg.org/4e626p1zh/189245_4202563033582_578050921_n.jpg" width="50%" height="5%" alt="Image 6" />
<img src="http://s20.postimg.org/n09qnoci5/598927_4202556393416_1198272074_n.jpg" width="50%" height="5%" alt="Image 7" />
<img src="http://s20.postimg.org/qaxn46lhp/227938_4202656915929_1789126880_n.jpg" width="50%" height="5%" alt="Image 8" />
<img src="http://s20.postimg.org/dyuqqoxn1/228079_4202640795526_1016952189_n.jpg" width="50%" height="5%" alt="Image 9" />
<img src="http://s20.postimg.org/dyuqqoxn1/228079_4202640795526_1016952189_n.jpg" width="50%" height="5%" alt="Image 10" />
<img src="http://s20.postimg.org/v3c1td5jh/254130_4202557833452_968232331_n.jpg" width="50%" height="5%" alt="Image 11" />
<img src="http://s20.postimg.org/4nhvl7zv1/269126_4202666116159_1246658287_n.jpg" width="50%" height="5%" alt="Image 12" />
<img src="http://s20.postimg.org/tzwiv5aa5/282288_4202546953180_1433101377_n.jpg" width="50%" height="5%" alt="Image 13" />
<img src="http://s20.postimg.org/tzwiv5aa5/282288_4202546953180_1433101377_n.jpg" width="50%" height="5%" alt="Image 14" />
<img src="http://s20.postimg.org/60460umod/301080_4202637355440_1540774797_n.jpg" width="50%" height="5%" alt="Image 15" />
<img src="http://s20.postimg.org/bw2p1zrd9/380160_4202552913329_853052096_n.jpg" width="50%" height="5%" alt="image 16" />
<img src="http://s20.postimg.org/atx3x6xxp/393669_4202763318589_1437705747_n.jpg" width="50%" height="5%" alt="Image 17" />
<img src="http://s20.postimg.org/me1xp86z1/408876_4202559393491_1876062094_n.jpg" width="50%" height="5%" alt="image 18" />
</marquee>
</div>
<!-- <div class="feature-block-tl"></div>
<div class="feature-block-tr"></div>
<div class="feature-block-bl"></div>
<div class="feature-block-br"></div>
<div class="feature-arrow-r"></div>
<div class="feature-arrow-l"></div>
</div>
<div class="desc-container">
<div class="description feature-pad">
<span class="feature-title">Software Freedom Day is everywhere!</span>
<span class="feature-desc">
SFD
is a yearly celebration for Software Freedom! Every year there are thousands teams organizing Software Freedom Day in different countries and cities. <br /><br /> <a href="http://www.softwarefreedomday.org/map/2010.php" target="_blank"></a><a href="map.1" target="_self"> Check the map</a> to find out the SFD event(s) around your area. <br /><br />
</span>
<div class="clr"></div><div class="readon-wrap1"><div class="readon1-l"></div><a href="en/component/content/article/38-sfistories/115-software-freedom-day-is-everywhere" class="readon-main"><span class="readon1-m"><span class="readon1-r"> Read the Full Story</span></span></a></div><div class="clr"></div>
</div>
<div class="description feature-pad">
<span class="feature-title">What is Software Freedom Day?</span>
<span class="feature-desc">
Software Freedom Day
is a worldwide celebration of Free and Open Source Software (FOSS). Our goal in this celebration is to educate the worldwide public about the benefits of using high quality FOSS in education, in government, at home, and in business -- in short, everywhere!
</span>
<div class="clr"></div><div class="readon-wrap1"><div class="readon1-l"></div><a href="en/component/content/article/38-sfistories/96-what-is-software-freedom-day" class="readon-main"><span class="readon1-m"><span class="readon1-r"> Read the Full Story</span></span></a></div><div class="clr"></div>
</div>
<div class="description feature-pad">
<span class="feature-title">It's FUN to organize Software Freedom Day</span>
<span class="feature-desc">
Organizing SFD event can be a lot of fun! In this site and its <a href="http://wiki.softwarefreedomday.org" target="_blank">wiki</a>, you will find a lot of guidelines and resources that can probably help you to set up your team and organize a Software Freedom Day event.<br /><br />
Happy Software Freedom Day!
</span>
<div class="clr"></div><div class="readon-wrap1"><div class="readon1-l"></div><a href="en/component/content/article/38-sfistories/95-its-fun-to-organize-software-freedom-day" class="readon-main"><span class="readon1-m"><span class="readon1-r"> Read the Full Story</span></span></a></div><div class="clr"></div>
</div>
</div>
</div>
</div> </div>
</div>
</div></div></div><div class="body-surround-bottom"><div class="body-surround-bottom2"><div class="body-surround-bottom3"></div></div></div>
-->
</div>
</div>
</div>
</div>
</div>
</div></div>
</div>
</div>
</div>
<div id="section-row3" class="section-row"><div id="section-row3-inner">
<div id="main-body-surround" class="spacer"><div id="main-body" class="spacing">
<div class="module-light"><div class="body-surround-top"><div class="body-surround-top2"><div class="body-surround-top3"></div></div></div>
<div class="body-surround"><div class="body-surround2"><div class="body-surround3">
<div id="main-content"><div id="maincol2">
<div class="maincol-padding"><div id="breadcrumbs"><div id="breadcrumbs2"><div id="breadcrumbs3"><a href="index.html" id="breadcrumbs-home"></a><span class="breadcrumbs pathway">
</span>
</div></div></div>
<div class="bodycontent">
<div class="mainbody-surround">
<div id="maincontent-block">
<div class="blog">
<div class="leading">
<div class="">
<div class="article-rel-wrapper">
</div>
<div class="fp-content1" style="background: url('http://www.softwarefreedomday.org/images/stories/demo/frontpage/registration-on.png') no-repeat scroll 0% 0% transparent; float: left; padding-top: 120px; width: 300px;">
<p><strong><a href="cgi-bin/register.py">Registration is Launched! </a><br /></strong></p>
<p>Registration for SFD 2013 starts from 23<sup>rd</sup> September(Monday), it is your chance to go out and tell the world how Software Freedom is <strong>IMPORTANT</strong>!</p>
<p>It's easy to register, you just need to <a href="register/register.html">Register here</a>.
<ul><p>
<li>There will be a Registration desk at UIET canteen</li>
<li> Registration fee will be Rs. 50/- for each day</li>
<li>Limited seats(only 150), first come first serve bases</li>
<li> So hurry and be fast to get yourself registered</li>
</ul></p>
<p><div class="clr"></div><div class="readon-wrap1"><div class="readon1-l"></div><a href="register/register.html" class="readon-main"><span class="readon1-m"><span class="readon1-r">Details about Registration Process!</span></span></a></div><div class="clr"></div></p>
</div>
<div class="fp-content2" style="background: url('http://www.softwarefreedomday.org/images/stories/demo/frontpage/front.png') no-repeat scroll 0% 0% transparent; float: right; padding-top: 120px; width: 300px;">
<p><strong><a href="http://wiki.softwarefreedomday.org/Promote" target="_self">What is SFD?<br /></a></strong></p>
<p>2013 Software Freedom Day is approaching, <strong>let's tell people about it!</strong></p>
<p> Software Freedom Day (aka SFD) is a yearly event organised all around the world by open source enthusiasts. The idea of SFD is for everyone without a vested interest in proprietary software to unite and educate the world about the ideals of Software Freedom and the practical benefits of Free Software. August 28th, 2004, was the first ever Software Freedom Day. And since then it is organised every year around the globe with ever increasing participants.</p>
<p><div class="clr"></div><div class="readon-wrap1"><div class="readon1-l"></div><a href="sfd/software-freedom.html" class="readon-main"><span class="readon1-m"><span class="readon1-r">More details!</span></span></a></div><div class="clr"></div></p>
</div>
</div>
</div>
<span class="leading_separator"> </span>
</div>
</div>
<div class="mainbody-tl"></div><div class="mainbody-tr"></div><div class="mainbody-bl"></div><div class="mainbody-br"></div>
</div>
</div><div id="mainmodules3" class="spacer w99"><div class="block full">
<div class=" main4:122">
<div class="moduletable">
<div class="module-header"><div class="module-header2"><div class="module-header3"><h3 class="module-title">Flickr Photostream (#softwarefreedomday) </h3></div></div></div>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery(".gallery-flickr-1").flickr({
api_key: "eaf20a06248b67918224a26e57b59b4f",
thumb_size: 's',
size: 'm',
per_page: 16,
randomise: 'false',
type: 'search',
sort: 'date-posted-desc',
tags: 'softwarefreedomday',
text: 'softwarefreedomday',
module_id: '1',
zoom_class: 'flickrZoom1',
callback: fancyboxCallback
});
function fancyboxCallback(){
jQuery("a[rel='flickrZoom1']").fancybox({
zoomOpacity: false,
padding: 30,
overlayOpacity: 0.6,
'overlayShow' : 1,
'zoomSpeedIn' : 600,
'zoomSpeedOut' : 500,
'hideOnContentClick' : false
});
}
});
</script>
<div class="gallery-flickr gallery-flickr-1"> </div>
<div class="clearfix"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div></div></div></div><div class="body-surround-bottom"><div class="body-surround-bottom2"><div class="body-surround-bottom3"></div></div></div>
</div>
</div>
<div id="rightcol">
<div class="rightcol-padding">
<div class="module-light"><div class="body-surround-top"><div class="body-surround-top2"><div class="body-surround-top3"></div></div></div>
<div class="body-surround"><div class="body-surround2"><div class="body-surround3">
<div class=" right:115">
<div class="side-mod">
<div class="module-header"><div class="module-header2"><div class="module-header3"><h3 class="module-title">SFD News</h3></div></div></div>
<div class="module">
<ul class="latestnews">
<li class="latestnews">
<a href="https://www.facebook.com/events/1413753542177795/?context=create" target="_blank" class="latestnews">
Facebook event page created</a>
</li>
<li class="latestnews">
<a href="sfd/team.html" class="latestnews">
Website under construction</a>
</li>
<li class="latestnews">
<a href="map.1.html" class="latestnews">
Venue Booked</a>
</li>
<li class="latestnews">
<a href="http://www.userblogarea.org/sfd/" target="_blank" class="latestnews">
Last Year's Website</a>
</li>
</ul>
</div>
</div>
</div>
<div class=" right:110">
<div class="side-mod">
<div class="module-header"><div class="module-header2"><div class="module-header3"><h3 class="module-title">Latest PULUG SFD posts</h3></div></div></div>
<div class="module">
<!-- slick rss http://joomla.daveslist.co.nz -->
<div class="slick-rss-container" style="direction: ltr; text-align: left">
<!-- <div class="latest_posts"> -->
<div class="latest_posts"><div class="latest_posts_subject">
<a href="https://groups.google.com/forum/#!topic/pulug/rR0FxYW8Ud8" title=" [SFD-discuss]...:: Julian H. Stacey: [SFD-discuss] .iso to USB was Re: OpenDisc is avaiable ?: <br /> [...] <br /> A few FreeBSD release have extended lifetimes, inc. the last minor release upgrade number at the end of a previous major release number series, eg ,..." class="slickTip" target="_blank" >[SFD13] - Topics & Talks under debate</a><div class="newsfeed_item_desc"></div></div></div>
<div class="latest_posts"><div class="latest_posts_subject">
<a href="https://groups.google.com/forum/#!topic/pulug/AeCkNVAlDZI" title=" [SFD-discuss]...::Ingeniero Forigua: [SFD-discuss] OpenDisc is avaiable ?: I recomend CDLibre <br /> http://www.cdlibre.org/descargar/index.html <br /> regards <br /> 2013/9/4 Severus &lt;huynhok.uit at vnoss.org&gt; <br /> [...] <br /> ========= Miembro Bogota Mesh ========== Dice el manifiesto: <br /> Utilizar Software Libre para la implementaci&oacute;n de los diferentes componentes de la red. [...]" class="slickTip" target="_blank" >[SFD-13] Website Developement</a><div class="newsfeed_item_desc"></div></div></div>
<div class="latest_posts"><div class="latest_posts_subject">
<a href="https://groups.google.com/forum/#!topic/pulug/MFqLjT_WtlM" title=" [SFD-discuss]...:: Frederic Muller - DFF: [SFD-discuss] .iso to USB was Re: OpenDisc is avaiable ?: [...] <br /> Big topic I agree, which will probably raise a lot of debates ;-). While I don&#39;t have any preferred choice I don&#39;t want an OS that..." class="slickTip" target="_blank" >SFD 2013</a><div class="newsfeed_item_desc"></div></div></div>
<div class="latest_posts"><div class="latest_posts_subject">
<a href="https://groups.google.com/forum/#!topic/pulug/gtSbPaSM1vc" title=" [SFD-discuss]...:: Julian H. Stacey: [SFD-discuss] .iso to USB was Re: OpenDisc is avaiable ?: <br /> [...] <br /> I didnt know what that was so for others: http://www.freedomtoaster.org https://en.wikipedia.org/wiki/Freedom_Toaster <br /> [...] <br /> Too big a topic to solve in time for SFD this year. One would need to..." class="slickTip" target="_blank" >[#pu-lug] IRC Meeting for SFD - Tue Jun 25, 2013 17:30 to 18:00 IST</a><div class="newsfeed_item_desc"></div></div></div>
<div class="latest_posts"><div class="latest_posts_subject">
<a href="https://groups.google.com/forum/#!topic/pulug/sNRXOxRCqnE" title=" [SFD-discuss]...:: Severus: [SFD-discuss] OpenDisc is avaiable ?: [...] <br /> I forward email to my team, and share any idea we have with other. <br /> We can customize anything without reburning, I think it&#39;s great idea but we must have sponsor for fee of usb..." class="slickTip" target="_blank" >Fwd: [SFD-announce] SFD 2013 registration is now ON!</a><div class="newsfeed_item_desc"></div></div></div><!-- </div> -->
</div>
<!-- /slick-rss --> </div>
</div>
</div>
<div class=" right:132">
<div class="side-mod">
<div class="module-header"><div class="module-header2"><div class="module-header3"><h3 class="module-title">Our Marketing Sponsers</h3></div></div></div>
<div class="module">
<!-- slick rss http://joomla.daveslist.co.nz -->
<div class="slick-rss-container" style="direction: ltr; text-align: left">
<!-- <div class="latest_posts"> -->
<div class="latest_posts"><div class="latest_posts_subject">
<a href="http://mail.sf-day.org/pipermail/marketing/2013-July/000520.html" title=" ISO...:: Diego Fernando Marin: ISO files for SFD: i&#39;m ready to help you out what is the time frame, deadline? everybody please send your suggestions quickly, to start making the ISOs El jul 3, 2013 12:12 a.m., &quot;Frederic Muller - DFF&quot; &lt; fred at digitalfreedomfoundation.org&gt;..." class="slickTip" target="_blank" >Sponser #1</a><div class="newsfeed_item_desc"></div></div></div>
<div class="latest_posts"><div class="latest_posts_subject">
<a href="http://mail.sf-day.org/pipermail/marketing/2013-July/000519.html" title=" ISO...:: bfkusi at gmail.com: ISO files for SFD: Am suggesting that goodies like pens with sfd embossed on it be added to this year&#39;s goodies Sent from my BlackBerry&reg; smartphone from Airtel Ghana Hi list! <br /> SFD registration has opened for around 2 weeks..." class="slickTip" target="_blank" >Sponser #2</a><div class="newsfeed_item_desc"></div></div></div>
<div class="latest_posts"><div class="latest_posts_subject">
<a href="http://mail.sf-day.org/pipermail/marketing/2013-July/000518.html" title=" ISO...:: Frederic Muller - DFF: ISO files for SFD: Hi list! <br /> SFD registration has opened for around 2 weeks now and we got 103 teams registered! <br /> We are preparing for the goodies at the moment, and hoping to ship everything by end of..." class="slickTip" target="_blank" >Sponser #3</a><div class="newsfeed_item_desc"></div></div></div><!-- </div> -->
</div>
<!-- /slick-rss --> </div>
</div>
</div>
</div></div></div><div class="body-surround-bottom"><div class="body-surround-bottom2"><div class="body-surround-bottom3"></div></div></div>
</div>
</div>
</div></div></div></div><div id="section-row4" class="section-row">
<div id="bottom-main">
<div id="mainmodules4" class="spacer">
<div class="block full" style="width: 959px;">
<div class="module-dark">
<div id="row4-block3" class="row"><div class="body-surround-top"><div class="body-surround-top2"><div class="body-surround-top3"></div></div></div>
<div class="body-surround"><div class="body-surround2"><div class="body-surround3">
<div class=" user6:83">
<div class="moduletable">
<script type="text/javascript">
RokTabsOptions.mouseevent.push('click');
RokTabsOptions.duration.push(600);
RokTabsOptions.transition.push(Fx.Transitions.Quad.easeInOut);
RokTabsOptions.auto.push(0);
RokTabsOptions.delay.push(2000);
RokTabsOptions.type.push('scrolling');
RokTabsOptions.linksMargins.push(0);
RokTabsOptions.navscroll.push(1);
</script>
<div class="roktabs-wrapper" style="width: 909px;">
<div class="roktabs base">
<!--<div class="roktabs-arrows">
<span class="previous">←</span>
<span class="next">→</span>
</div>-->
<div class='roktabs-links' >
<ul class='roktabs-top'>
<li class="first active icon-left"><span>1. Prerequisites for SFD</span></li>
<li class=" icon-left"><span>2. Why should I come to SFD</span></li>
<li class="last icon-left"><span></span></li>
</ul>
</div>
<div class="roktabs-container-tr">
<div class="roktabs-container-tl">
<div class="roktabs-container-br">
<div class="roktabs-container-bl">
<div class="roktabs-container-inner">
<div class="roktabs-container-wrapper">
<div class='roktabs-tab1'>
<div class='wrapper'>
<p>1. Prerequisites for SFD</br></br><strong>This year SFD will contain an introductory session on Day 1 and hands-on workshops on Day 2</strong></p>
<ul>
<li>DAY 1</li>
<p>This will be an introductory session to open source developement. You'll learn about different linux based distros and some minute awesome details about them that the speakers have learned after years of usage, that they wish they knew before they started. Their is nothing that you need to know.</p>
<p><strong>It's FUN, Be a part of this extra-ordinary event. Come join us in SFD!</strong></p>
<li>DAY 2</li>
<p>The focus of SFD this year is to educate as many people as possible and get more open-source developers from our college. On Day 2 we'll hold hands-on workshop where participants will be taught about various tools used in software developement. You will also get a chance to meet alumni of our college, who'll share their experience of software developement. See the list below for detailed list of talks.</p>
</ul>
<p><div class="clr"></div><div class="readon-wrap1"><div class="readon1-l"></div><a href="task/index.html" class="readon-main"><span class="readon1-m"><span class="readon1-r">Detailed list of Topics & Talks</span></span></a></div><div class="clr"></div></p> </div></div>
<div class='roktabs-tab2'>
<div class='wrapper'>
<p>2. Why should I come to SFD</br></br>
<strong>“The more I read, the more I acquire, the more certain I am that I know nothing.” </strong>― Voltaire
</br>
Because it's never too late to learn.
</br>
</br>
And more reasons:
<ul>
<li>Learn new techniques of software development.</li>
<li>Understand how computer developers work.</li>
<li>Learn about tools that companies use for big software projects.</li>
<li>Understand how and why is linux easy & better for a software developer.</li>
<li>Get a cutting edge over others</li>
<li>Learn more about your job perspective after B.Tech</li>
<li>Meet successful alumni of our college who made it to the biggest IT
companies.</li>
<li>Feel the awesomeness of open source world.<li></ul>
</p>
<p><div class="clr"></div><div class="readon-wrap1"><div class="readon1-l"></div><a href="register/register.html" class="readon-main"><span class="readon1-m"><span class="readon1-r">Registration Details</span></span></a></div><div class="clr"></div></p> </div></div>
<div class='roktabs-tab3'>
<div class='wrapper'>
<!--<p><a href="http://wiki.softwarefreedomday.org/SfdContactingSchool" target="_self"><strong>SFD@schools</strong></a></p>
<p>Why don't you get your local school or college talking about Free Software this Software Freedom Day! Giving a talk to students, teaching a class, providing demonstrations of Free Software, showing films about Free Software, and handing out Free Software CDs are all great ways of engaging young people.</p>
<p>Free Software is a major part of most workplaces and provides the core of the world's most popular websites. Young people are greatly affected by the software that they use, and SFD is a great way to reach them. Contact your local educational establishment and ask them about paying a visit. Since SFD falls on a Saturday, try to make an appointment for a day either side of the weekend.</p>
<p><div class="clr"></div><div class="readon-wrap1"><div class="readon1-l"></div><a href="http://wiki.softwarefreedomday.org/SfdContactingSchool" class="readon-main" target="_blank"><span class="readon1-m"><span class="readon1-r">Learn More</span></span></a></div><div class="clr"></div></p> </div></div>-->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div></div></div><div class="body-surround-bottom"><div class="body-surround-bottom2"><div class="body-surround-bottom3"></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div><div id="section-row5" class="section-row">
<div id="bottom-main2">
<div id="mainmodules5" class="spacer">
<div class="block first" style="width: 313px;">
<div class="module-light">
<div id="row5-block1" class="row"><div class="body-surround-top"><div class="body-surround-top2"><div class="body-surround-top3"></div></div></div>
<div class="body-surround"><div class="body-surround2"><div class="body-surround3">
<div class=" user7:107">
<div class="moduletable">
<div class="module-header"><div class="module-header2"><div class="module-header3"><h3 class="module-title">How did SFD begin? </h3></div></div></div>
<p>Software Freedom Day (SFD) was initiated by a group of FOSS believers, <strong>Matt Oquist</strong>, <strong>Henrik Omma</strong> and <strong>Phil Harper</strong> with the idea of distributing <a href="http://www.theopendisc.com/" target="_blank"><strong>The OpenCD</strong></a> to everyone.<br /> <br /> The idea of SFD is for everyone without a vested interest in proprietary software to unite and educate the world about the ideals of Software Freedom and the practical benefits of Free Software. August 28th, 2004, was the first ever Software Freedom Day. <div class="clr"></div><div class="readon-wrap1"><div class="readon1-l"></div><a href="index.php?option=com_content&id=128" class="readon-main"><span class="readon1-m"><span class="readon1-r">Learn More</span></span></a></div><div class="clr"></div></p> </div>
</div>
</div></div></div><div class="body-surround-bottom"><div class="body-surround-bottom2"><div class="body-surround-bottom3"></div></div></div>
</div>
</div>
</div>
<div class="block middle" style="width: 313px;">
<div class="module-medium">
<div id="row5-block2" class="row"><div class="body-surround-top"><div class="body-surround-top2"><div class="body-surround-top3"></div></div></div>
<div class="body-surround"><div class="body-surround2"><div class="body-surround3">
<div class=" user8:87">
<div class="moduletable">
<div class="module-header"><div class="module-header2"><div class="module-header3"><h3 class="module-title">IRC Channel:#pulugchd@freenode </h3></div></div></div>
<p>You want to share your ideas or experiences with other SFD teams? Welcome to join our <a href="en/community/irc-chat">Web IRC Chat </a>and mailing lists <a href="en/community"> <strong> here </strong> </a>!</p> </div>
</div>
<div class=" user8:84">
<div class="moduletable">
<div class="module-header"><div class="module-header2"><div class="module-header3"><h3 class="module-title">What is PULUG? </h3></div></div></div>