-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNewsletter.html
2988 lines (2692 loc) · 143 KB
/
Newsletter.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="zh-tw" lang="zh-tw" >
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<link rel="shortcut icon" href="images/favicon.ico" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="robots" content="index, follow" />
<meta name="keywords" content="Who's Who, whoswho, opensource, Open Source, People, people, Community, 社群, Group, group, Taiwan, taiwan, 台灣, workshop, 工作坊, OSSF, 自由軟體鑄造場, 自由軟體,人才,產業,Linux, GNU, 人群,工作坊,分享,學習,法律,授權,GPL,資源表列,討論區,專案開發平台,OpenFoundry,自由軟體人才資料庫,開放源碼, 專案, 軟體, Web Hosting, 網站代管, Subversion, CVS, Issue Tracker, 待辨事項, Wiki, 共同筆記, Project Management, 專案管理, Release, 釋出, Version Control, 版本釋出, tw,TW, Open Foundry, Open, 中央研究院,資訊科學研究所, 自由軟體電子報" />
<meta name="description" content="OpenFoundry provides essential tools and services through its service platform for users to develop Open Source Software Projects, the operating funds comes from the National Science Council and the Research Center for Information Technology Innovation of Academia Sinica Taiwan." />
<meta name="generator" content="" />
<title>電子報總覽 - OpenFoundry</title>
<link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
<link rel="stylesheet" href="components/com_gantry/css/gantry.css" type="text/css" />
<link rel="stylesheet" href="components/com_gantry/css/grid-12.css" type="text/css" />
<link rel="stylesheet" href="components/com_gantry/css/joomla.css" type="text/css" />
<link rel="stylesheet" href="templates/rt_quantive_j15/css/joomla.css" type="text/css" />
<link rel="stylesheet" href="templates/rt_quantive_j15/css/style1.css" type="text/css" />
<link rel="stylesheet" href="templates/rt_quantive_j15/css/light-body.css" type="text/css" />
<link rel="stylesheet" href="templates/rt_quantive_j15/css/demo-styles.css" type="text/css" />
<link rel="stylesheet" href="templates/rt_quantive_j15/css/template.css" type="text/css" />
<link rel="stylesheet" href="templates/rt_quantive_j15/css/typography.css" type="text/css" />
<link rel="stylesheet" href="templates/rt_quantive_j15/css/fusionmenu.css" type="text/css" />
<style type="text/css">
<!--
#rt-main-surround ul.menu li.active > a, #rt-main-surround ul.menu li.active > .separator, #rt-main-surround ul.menu li.active > .item, #rt-main-surround .square4 ul.menu li:hover > a, #rt-main-surround .square4 ul.menu li:hover > .item, #rt-main-surround .square4 ul.menu li:hover > .separator, .roktabs-links ul li.active span {color:#0088B5;}
a, #rt-main-surround ul.menu a:hover, #rt-main-surround ul.menu .separator:hover, #rt-main-surround ul.menu .item:hover {color:#0088B5;}
-->
</style>
<script type="text/javascript" src="components/com_jcomments/js/jcomments-v2.1.js%3Fv=2"></script>
<script type="text/javascript" src="components/com_jcomments/libraries/joomlatune/ajax.js"></script>
<script type="text/javascript" src="media/system/js/mootools.js"></script>
<script type="text/javascript" src="components/com_gantry/js/gantry-buildspans.js"></script>
<script type="text/javascript" src="components/com_gantry/js/gantry-inputs.js"></script>
<script type="text/javascript" src="templates/rt_quantive_j15/js/jquery.cookie.js"></script>
<script type="text/javascript" src="modules/mod_roknavmenu/themes/fusion/js/fusion.js"></script>
<script type="text/javascript" src="modules/mod_ofssologin/js/ofssologin.js"></script>
<script type="text/javascript">
window.addEvent('domready', function() {
var modules = ['rt-block'];
var header = ['h3','h2','h1'];
GantryBuildSpans(modules, header);
});
InputsExclusion.push('.content_vote','#rt-popup')
window.addEvent('load', function() {
new Fusion('ul.menutop', {
pill: 0,
effect: 'slide and fade',
opacity: 1,
hideDelay: 500,
centered: 0,
tweakInitial: {'x': -2, 'y': 0},
tweakSubsequent: {'x': 0, 'y': -14},
menuFx: {duration: 200, transition: Fx.Transitions.Sine.easeOut},
pillFx: {duration: 400, transition: Fx.Transitions.Back.easeOut}
});
});
</script>
<!-- <script type="text/javascript" src="/sso/javascripts/langsync.js"></script> -->
<!-- <script src="/templates/rt_quantive_j15/js/ossf.js"></script> -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-4136519-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body class="backgroundlevel-low backgroundstyle-style8 bodylevel-med bodystyle-light cssstyle-style1 logostyle-dark font-family-helvetica font-size-is-default menu-type-fusionmenu col12 ">
<div id="rt-main-background">
<div class="rt-container">
<div id="rt-header">
<div class="rt-grid-7 rt-alpha">
<div class="rt-block">
<a href="index.html" id="rt-logo"></a>
</div>
</div>
<div class="rt-grid-5 rt-omega">
<div class="square9">
<div class="rt-block">
<div class="rt-module-surround">
<div class="rt-module-top"><div class="rt-module-top2"><div class="rt-module-top3"></div></div></div>
<div class="rt-module-inner">
<div class="module-content">
<div class="ofssologin_square9"><a href="index.html">登入</a>  | <span><a href="en/previous-issue.html" ><span lang="en" xml:lang="en">English</span></a></li></ul></span><!--Joom!fish V2.0.4 (Lightning)-->
<!-- © 2003-2009 Think Network, released under the GPL. -->
<!-- More information: at http://www.joomfish.net -->
<div class="ofssologin_search_square9">
<form id="of_search" action="https://www.openfoundry.org/of/openfoundry/search" method="get" onsubmit="of_search(); return false;">
<select id="of_search_type">
<option value="Projects"> 專案 </option>
<option value="Content"> 文章 </option>
<option value="People"> 人才 </option>
</select>
<input id="query" name="query" id="mod_search_searchword" maxlength="50" alt="search" class="inputbox" type="text" size="28" value="search..." onblur="if(this.value=='') this.value='search...';" onfocus="if(this.value=='search...') this.value='';" />
<input type="hidden" name="commit" value="search" />
</form>
</div></div> </div>
</div>
<div class="rt-module-bottom"><div class="rt-module-bottom2"><div class="rt-module-bottom3"></div></div></div>
</div>
</div>
</div>
</div>
<div class="clear"></div>
</div>
<div id="rt-navigation"><div id="rt-navigation2"><div id="rt-navigation3">
<div class="nopill">
<ul class="menutop level1 " >
<li class="item1 root" >
<a class="orphan item bullet" href="index.html" >
<span>
首頁
</span>
</a>
</li>
<li class="item32 root" >
<a class="orphan item bullet" href="archived.html" >
<span>
專案
</span>
</a>
</li>
<li class="item186 root" >
<a class="orphan item bullet" href="tw/community.html" >
<span>
Who's Who
</span>
</a>
</li>
<li class="item4 root" >
<a class="orphan item bullet" href="tw/news.html" >
<span>
新聞
</span>
</a>
</li>
<li class="item5 root" >
<a class="orphan item bullet" href="tw/law-and-licensing.html" >
<span>
法律源地
</span>
</a>
</li>
<li class="item3 root" >
<a class="orphan item bullet" href="tw/activities.html" >
<span>
活動
</span>
</a>
</li>
<li class="item2 root" >
<a class="orphan item bullet" href="tw/resourcecatalog%3FName=Value.html" >
<span>
資源表列
</span>
</a>
</li>
<li class="item45 root" >
<a class="orphan item bullet" href="tw/about.html" >
<span>
關於
</span>
</a>
</li>
</ul>
</div>
<div class="clear"></div>
</div></div></div>
<div class="rt-surround"><div class="rt-surround2"><div class="rt-surround3">
<div id="rt-showcase-section">
<div id="rt-showcase">
<div class="rt-grid-12 rt-alpha rt-omega">
<div class="clear"></div>
<div class="close-note">
<div class="rt-block">
<div class="module-content">
<div style="font-size:medium; background-image:linear-gradient(120deg,#159957,#4298b2);color:white;padding:20px;margin:-10px -18px;">感謝您對「自由軟體鑄造場」的支持與愛護,十多年來「自由軟體鑄造場」受中央研究院支持,並在資訊科學研究所以及資訊科技創新研究中心執行,現已完成階段性的任務。 本網站預計持續維運至 2021年底,網站內容基本上不會再更動。<br />也紀念我們永遠的朋友 李士傑先生(Shih-Chieh Ilya Li)。</div> </div>
</div>
</div>
</div>
<div class="clear"></div>
</div>
</div>
<div id="rt-main-surround">
<div id="rt-breadcrumbs">
<div class="rt-breadcrumb-surround">
<a href="index.html" id="breadcrumbs-home"></a>
<span class="breadcrumbs pathway">
<span class="no-link">電子報總覽</span></span>
</div>
<div class="clear"></div>
</div>
<div id="rt-main" class="sa3-mb9">
<div class="rt-main-inner">
<div class="rt-grid-9 rt-push-3">
<div class="rt-block">
<div class="square1">
<div class="rt-module-surround">
<div class="rt-module-top"><div class="rt-module-top2"><div class="rt-module-top3"></div></div></div>
<div class="rt-module-inner">
<div id="rt-mainbody">
<table align="center">
<tr>
<td><!--
<a href="/<?php// echo sefRelToAbs( 'index.php?option=com_letterman&task=subscribe&Itemid='. $Itemid ) ?>" title="">
<img src="/components/com_letterman/images/subscribe.png" alt="<?php// echo LM_SUBSCRIBE ?>" align="center" border="0" /> </a>
--></td>
</tr>
</table>
<table width="100%" cellpadding="4" cellspacing="0" border="0" align="center">
<tr>
<td colspan="3" class="componentheading"></td>
<td align="right" class="componentheading" nowrap="nowrap">
</td>
</tr>
<tr>
<td width="32" align="center" class="sectiontableheader"> </td>
<td width="70%" class="sectiontableheader">主題</td>
<td width="30%" class="sectiontableheader">發佈日期</td>
<!-- <td width="10%" align="left" class="sectiontableheader"></td>-->
<td width="10%" align="center" class="sectiontableheader"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=874.html">第 261 期 輕鬆學習 CentOS 7 基礎安裝、升級與使用</a>
</td>
<td width="10%">2015-03-26</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=873.html">第 260 期 企業開源 XenServer 基礎建置與管理</a>
</td>
<td width="10%">2015-03-12</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=872.html">第 259 期 企業虛擬化平台的另類選擇 - Proxmox Virtual Environment 實戰</a>
</td>
<td width="10%">2015-02-11</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=871.html">第 258 期 企業 Moodle 進階管理與安全整合應用</a>
</td>
<td width="10%">2015-01-29</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=870.html">第 257 期 第一次用 PHPUnit 寫測試就上手(下)</a>
</td>
<td width="10%">2015-01-13</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=869.html">第 256 期 第一次用 PHPUnit 寫測試就上手(上)</a>
</td>
<td width="10%">2014-12-31</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=867.html">第 255 期 Docker 實作入門</a>
</td>
<td width="10%">2014-12-17</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=866.html">第 254 期 受雇人利用 GPL 元件開發公司產品的著作權歸屬與運用疑義解析</a>
</td>
<td width="10%">2014-11-27</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=865.html">第 253 期 追蹤版本的版本:Mercurial Evolve Extension</a>
</td>
<td width="10%">2014-11-12</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=864.html">第 252 期 淺談自由開源商業終端使用者之善意保護</a>
</td>
<td width="10%">2014-10-30</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=863.html">第 251 期 我懂你想說什麼!專訪銘傳大學「一個行動手語圖形檢索參考架構與系統」</a>
</td>
<td width="10%">2014-10-15</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=862.html">第 250 期 降低開源授權爭訟風險的三大要點</a>
</td>
<td width="10%">2014-10-01</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=861.html">第 249 期 「兒童呼吸網」關心幼兒呼吸與睡眠─「健康資訊雲端服務平台」專訪</a>
</td>
<td width="10%">2014-09-16</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=860.html">第 248 期 專訪台科大「基於時脈偏移的裝置識別技術於雲端服務之研究」</a>
</td>
<td width="10%">2014-08-26</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=859.html">第 247 期 睡不好嗎?專訪輔仁大學「基於 HTML5 的跨行動平台響應式睡眠節律服務」</a>
</td>
<td width="10%">2014-08-14</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=858.html">第 246 期 專訪中央大學「支援行動裝置使用者與虛擬實驗平台之雲端技術研究」整合型計畫</a>
</td>
<td width="10%">2014-07-31</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=857.html">第 245 期 Xserver 的介紹與應用</a>
</td>
<td width="10%">2014-07-16</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=856.html">第 244 期 正確尋找自由開源軟體的授權資訊</a>
</td>
<td width="10%">2014-06-26</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=855.html">第 243 期 LiveReload - 網頁開發者必備的自動重新整理外掛</a>
</td>
<td width="10%">2014-06-11</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=854.html">第 242 期 CSS3 動畫基礎</a>
</td>
<td width="10%">2014-05-28</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=853.html">第 241 期 Code Review 指引</a>
</td>
<td width="10%">2014-05-14</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=851.html">第 240 期 AngularJS - 指令</a>
</td>
<td width="10%">2014-04-30</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=850.html">第 239 期 AngularJS 簡介</a>
</td>
<td width="10%">2014-04-16</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=849.html">第 238 期 從自由開源軟體授權看庶民式法律時代的開展契機</a>
</td>
<td width="10%">2014-03-26</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=847.html">第 237 期 Gnome、KDE 與 Cinnamon 的平鋪視窗控制</a>
</td>
<td width="10%">2014-03-12</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=846.html">第 236 期 自由開源軟體不收取授權金之特性</a>
</td>
<td width="10%">2014-02-26</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=845.html">第 235 期 行動裝置的除蟲技術概論─第一部</a>
</td>
<td width="10%">2014-01-28</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=844.html">第 234 期 在 PhoneGap HTML5 上實現卡片 (Card) 的使用者介面</a>
</td>
<td width="10%">2014-01-14</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=843.html">第 233 期 自由開源軟體預設的不附隨保證與擔保特性</a>
</td>
<td width="10%">2013-12-24</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=842.html">第 232 期 Scala vs Java:兩者間的差異與相似處</a>
</td>
<td width="10%">2013-12-10</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=841.html">第 231 期 從開放源碼的理念到提供源碼的義務</a>
</td>
<td width="10%">2013-11-27</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=840.html">第 230 期 Sound Juicer--從 CD 中擷取音樂</a>
</td>
<td width="10%">2013-11-12</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=839.html">第 229 期 淺析自由開源軟體專案與其個別元件授權條款之差異</a>
</td>
<td width="10%">2013-10-31</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=837.html">第 228 期 給年輕開發者的 JavaScript 除錯手冊</a>
</td>
<td width="10%">2013-10-15</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=836.html">第 227 期 再論開放硬體及其授權方式</a>
</td>
<td width="10%">2013-09-25</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=835.html">第 226 期 Android 應用程式開發:處理更多的相機功能</a>
</td>
<td width="10%">2013-09-10</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=834.html">第 225 期 Android 應用程式開發:如何錄製影片</a>
</td>
<td width="10%">2013-08-27</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=833.html">第 224 期 NoSQL 入門指引</a>
</td>
<td width="10%">2013-08-13</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=832.html">第 223 期 利用自由開源軟體元件開發雲端應用專案</a>
</td>
<td width="10%">2013-07-31</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=831.html">第 222 期 Sphinx - 用 reStructuredText 寫網站與書</a>
</td>
<td width="10%">2013-07-16</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=830.html">第 221 期 商業利用自由開源軟體之商標須知</a>
</td>
<td width="10%">2013-06-25</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=829.html">第 220 期 GCStar 收集狂的藏寶箱 </a>
</td>
<td width="10%">2013-06-11</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=828.html">第 219 期 LGPL-3.0 訴訟案例解析:FreeAdhocUDF 侵權和解案</a>
</td>
<td width="10%">2013-05-28</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=827.html">第 218 期 《雪凡與好朋友們的 Ren'Py 遊戲引擎初學心得提示》第八回:大雜煮與黑暗鍋!</a>
</td>
<td width="10%">2013-05-14</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=826.html">第 217 期 淺談貢獻者契約在自由開源軟體之應用</a>
</td>
<td width="10%">2013-04-30</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=825.html">第 216 期 JStock-開源的股票看盤軟體</a>
</td>
<td width="10%">2013-04-16</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=824.html">第 215 期 利用 Apache-2.0 程式所應遵守的義務規定</a>
</td>
<td width="10%">2013-03-27</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=823.html">第 214 期 MyPaint 1.1 新鮮事-老玩具,新東西</a>
</td>
<td width="10%">2013-03-12</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=822.html">第 213 期 簡論「轉授權/再授權」於公眾授權領域的效力與應用方式</a>
</td>
<td width="10%">2013-02-26</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=819.html">第 212 期 條文解析自由開源軟體的專利授權條款</a>
</td>
<td width="10%">2013-01-30</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=818.html">第 211 期 《雪凡與好朋友們的 Ren'Py 遊戲引擎初學心得提示》第六回:Displayable 與動畫轉置語言 </a>
</td>
<td width="10%">2013-01-15</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=816.html">第 210 期 從產品租賃來看 GPL 的散布定義與範圍</a>
</td>
<td width="10%">2012-12-26</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=815.html">第 209 期 於 NOKIA N900 上安裝 w3m on Maemo 5</a>
</td>
<td width="10%">2012-12-11</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=814.html">第 208 期 淺談自由開源軟體透過線上軟體市集散布之問題</a>
</td>
<td width="10%">2012-11-27</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=813.html">第 207 期 MyPaint-今天來畫圖吧!</a>
</td>
<td width="10%">2012-11-13</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=810.html">第 206 期 從開源軟體到開放資料-論 Open Database License v1.0</a>
</td>
<td width="10%">2012-10-24</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=806.html">第 205 期 3D 除錯新視界:xDIVA 專案報導</a>
</td>
<td width="10%">2012-10-09</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=804.html">第 204 期 Simile Widget Timeline - 用靜態網頁表現時間線</a>
</td>
<td width="10%">2012-09-25</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=802.html">第 203 期 於 Ubuntu 12.04 安裝 indicator-virtualbox</a>
</td>
<td width="10%">2012-09-12</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=801.html">第 202 期 如何提供 GPL 元件的程式源碼</a>
</td>
<td width="10%">2012-08-28</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=800.html">第 201 期 如何利用 Onion 管理 PHP 專案</a>
</td>
<td width="10%">2012-08-14</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=799.html">第 200 期 GPL-3.0 與 GPL-2.0 的異同比較與應用分析</a>
</td>
<td width="10%">2012-07-24</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=798.html">第 199 期 授權流言終結者5:Neo4j 授權的分析與探討</a>
</td>
<td width="10%">2012-07-10</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=796.html">第 198 期 利用 GitHub 建立自己的 PEAR 頻道</a>
</td>
<td width="10%">2012-06-26</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=795.html">第 197 期 GWT (1) - 使用 GWT Eclipse Plugin 與 GWT 基礎架構</a>
</td>
<td width="10%">2012-06-11</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=793.html">第 196 期 從 Copyleft 看自由開源軟體授權相容性</a>
</td>
<td width="10%">2012-05-29</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=790.html">第 195 期 利用 RequireJs 將 Backbone.js 程式模組化</a>
</td>
<td width="10%">2012-05-15</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=788.html">第 194 期 初探 RequireJS</a>
</td>
<td width="10%">2012-04-24</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=786.html">第 193 期 使用 Debian 與 KVM+libvirt 架設虛擬化叢集-線上移轉與其他工具</a>
</td>
<td width="10%">2012-04-10</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=783.html">第 192 期 開放源碼的安全演算法工具︰OpenSSL(3)- RSA 非對稱式加解密演算法</a>
</td>
<td width="10%">2012-03-27</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=780.html">第 191 期 開放源碼的安全演算法工具︰OpenSSL(2)- 對稱式加解密演算法</a>
</td>
<td width="10%">2012-03-14</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=779.html">第 190 期 開放源碼的安全演算法工具︰OpenSSL(1) - 基礎操作與雜湊演算法</a>
</td>
<td width="10%">2012-02-21</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=774.html">第 189 期 保護雲端隱私的技術:Homomorphic Encryption 與 Unhosted</a>
</td>
<td width="10%">2012-02-07</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry1">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=772.html">第 188 期 PaaS:程式語言開發在雲端「Programming in Paas」(下)</a>
</td>
<td width="10%">2012-01-17</td>
<!-- <td width="9%" align="center"></td>-->
<td width="32" align="center"> </td>
</tr>
<tr class="sectiontableentry2">
<td width="32" align="center"> </td>
<td width="80%">
<a href="tw/previous-issue%3Ftask=view&id=766.html">第 187 期 PaaS:程式語言開發在雲端「Programming in Paas」(上)</a>
</td>
<td width="10%">2011-12-27</td>
<!-- <td width="9%" align="center"></td>-->