-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.xml
1508 lines (1185 loc) · 98.7 KB
/
index.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Kaohsiung Linux User Group</title>
<link>https://kalug.linux.org.tw/</link>
<description>Recent content on Kaohsiung Linux User Group</description>
<generator>Hugo -- gohugo.io</generator>
<lastBuildDate>Sun, 20 Oct 2019 00:00:00 +0000</lastBuildDate>
<atom:link href="https://kalug.linux.org.tw/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Drone CI/CD 支援 Auto cancellation 機制</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20191020_auto-cancellation-in-drone-ci-cd/</link>
<pubDate>Sun, 20 Oct 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20191020_auto-cancellation-in-drone-ci-cd/</guid>
<description>大家一定會問什麼是『Auto cancellation』呢?中文翻作自動取消,這機制會用在 CI/CD 的哪個流程或步驟呢?我們先來探討一個情境,不知道大</description>
</item>
<item>
<title>用 Go 語言實作 Job Queue 機制</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20191019_job-queue-in-golang/</link>
<pubDate>Sat, 19 Oct 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20191019_job-queue-in-golang/</guid>
<description>很高興可以在 Mopcon 分享『用 Go 語言實現 Job Queue 機制』,透過簡單的 goroutine 跟 channel 就可以實現簡單 Queue 機制,並且限制同時可以執行多少個 Job,才不會讓系統超載。最後透</description>
</item>
<item>
<title>Kobo 社群小聚 1st x Kobo Libra H2O 介紹</title>
<link>https://kalug.linux.org.tw/planet/chusiang/20191010_kobo-meetup-1st-x-kobo-libra-h2o-intro.html/</link>
<pubDate>Thu, 10 Oct 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/chusiang/20191010_kobo-meetup-1st-x-kobo-libra-h2o-intro.html/</guid>
<description>2019/10/07 是凍仁受邀 Kobo 台灣公司 (底下簡稱 K 社) 三週年開辦第 1 屆 Kobo 社群小聚的日子,也是團隊週期性上版 (release) 的日子。感謝團隊伙伴和家人,讓在下可以安心地參加</description>
</item>
<item>
<title>在 Docker 內設定使用者及群組權限的三種方式</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20191010_three-ways-to-setup-docker-user-and-group/</link>
<pubDate>Thu, 10 Oct 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20191010_three-ways-to-setup-docker-user-and-group/</guid>
<description>如果平常本身有在玩 Docker 的開發者肯定知道透過 docker command 啟動的容器預設是使用 root 來當作預設使用者及群組,這邊會遇到一個問題,當 Host 環境你有 root 權限就沒有此問題</description>
</item>
<item>
<title>Ansible 設定 Google Container Registry 搭配 Drone 自動上傳</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20191003_ansible-setup-google-container-registry-and-upload-image-via-drone-ci-cd/</link>
<pubDate>Thu, 03 Oct 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20191003_ansible-setup-google-container-registry-and-upload-image-via-drone-ci-cd/</guid>
<description>最近剛好有需求要串接 GCR (Google Container Registry),專案如果是搭配 GCP 服務,個人建議就直接用 GCR 了。本篇要教大家如何透過 Ansible 管理遠端機器直接登入 GCR,</description>
</item>
<item>
<title>新台幣三千元左右就能建置一套圖書館管理系統</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20190928_koha-library-system.html/</link>
<pubDate>Sat, 28 Sep 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20190928_koha-library-system.html/</guid>
<description>今日自由軟體社群前輩,已退休的毛慶禎教授分享了這一個案例,滿值得大家參考。當然不是要大家都去建一套圖書館管理系統;但是這個案例也跟協會理事長</description>
</item>
<item>
<title>Joinup OSOR 報導:台灣政府推動開放文件格式標準化</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20190926_joinup-osor.html/</link>
<pubDate>Thu, 26 Sep 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20190926_joinup-osor.html/</guid>
<description>前言:Joinup 是由歐盟委員會所建立的協作平台,由歐盟透過ISA2 計劃提供資金運作。主要內容包括針對歐盟運作提供觀察、批評與建議。其中「開</description>
</item>
<item>
<title>系統工程師的打怪升級之旅</title>
<link>https://kalug.linux.org.tw/planet/chusiang/20190917_my-devops-tour-0.1.html/</link>
<pubDate>Tue, 17 Sep 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/chusiang/20190917_my-devops-tour-0.1.html/</guid>
<description>從大學畢業、進入職場,經歷 SI、IT、RD &hellip; 等許多角色,凍仁目前最喜歡的是「系統工程師 (System Engineer)」這個稱號,而〈系統工程師的打怪升</description>
</item>
<item>
<title>用 Drone 自動化上傳 Docker Image 到 GitHub Docker Registry</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20190907_upload-docker-image-to-github-registry-using-drone/</link>
<pubDate>Sat, 07 Sep 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20190907_upload-docker-image-to-github-registry-using-drone/</guid>
<description>很高興收到 GitHub 的 Beta 邀請函來開始試用 GitHub Package Registry 相關功能,從說明文件可以知道目前 Registry 支援了好幾種 Package 像是 npm, gem, docker, mvn 及 nuget,這篇主要跟大家介紹如何用 Drone 快</description>
</item>
<item>
<title>Go 語言目錄結構與實踐</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20190831_golang-project-layout-and-practice/</link>
<pubDate>Sat, 31 Aug 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20190831_golang-project-layout-and-practice/</guid>
<description>很高興今年錄取 Modernweb 講師,又有機會去宣傳 Go 語言,這次的議程最主要跟大家介紹 Go 專案的目錄該如何設計,一個基本的專案該需要有哪些功能,以及如何實現。</description>
</item>
<item>
<title>用 10 分鐘安裝好 Drone 搭配 GitLab</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20190823_install-drone-with-gitlab-in-10-minutes/</link>
<pubDate>Fri, 23 Aug 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20190823_install-drone-with-gitlab-in-10-minutes/</guid>
<description>如果你沒在使用 GitLab CI,那可以來嘗試看看 Drone CI/CD,用不到 10 分鐘就可以快速架設好 Drone,並且上傳一個 .drone.yml 並且開啟第一個部署或測試流程,安裝</description>
</item>
<item>
<title>【2019 LibreOffice 亞洲論壇報導】第一篇:不用錢的自由軟體,如何默默耕耘出商業生態系</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20190820_2019-libreoffice-asia-conf-report1.html/</link>
<pubDate>Tue, 20 Aug 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20190820_2019-libreoffice-asia-conf-report1.html/</guid>
<description>前言:2019 年五月底,史上第一次以亞洲區國家為主的 LibreOffice 亞洲論壇在東京舉行。目前就讀台大,同時也任職於開放文化基金會擔任記者的林冠廷,受邀參加</description>
</item>
<item>
<title>【2019 LibreOffice 亞洲論壇報導】第二篇:你電腦裝的軟體,為什麼可以影響國家主體性?</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20190820_2019-libreoffice-asia-conf-report2.html/</link>
<pubDate>Tue, 20 Aug 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20190820_2019-libreoffice-asia-conf-report2.html/</guid>
<description>前言:2019 年五月底,史上第一次以亞洲區國家為主的 LibreOffice 亞洲論壇在東京舉行。目前就讀台大,同時也任職於開放文化基金會擔任記者的林冠廷,受邀參加</description>
</item>
<item>
<title>Minio 從 Docker 容器移除 healthcheck 腳本</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20190818_minio-remove-healthcheck-script-for-docker-image/</link>
<pubDate>Sun, 18 Aug 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20190818_minio-remove-healthcheck-script-for-docker-image/</guid>
<description>Minio 是一套開源專案的 Object 儲存容器,如果你有使用 AWS S3,相信要找一套代替 S3 的替代品,一定會想到這套用 Go 語言開發的 Minio 專案。讓您在公司內部也可以享有 S3</description>
</item>
<item>
<title>[Drone] 將單一 Job 分配到多台機器,降低部署執行時間</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20190805_drone-multiple-machine/</link>
<pubDate>Mon, 05 Aug 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20190805_drone-multiple-machine/</guid>
<description>在傳統 CI/CD 流程,都是會在同一台機器上進行,所以當有一個 Job 吃了很大的資源時,其他工作都必須等待該 Job 執行完畢,釋放出資源後,才可以繼續進行。現在 Drone</description>
</item>
<item>
<title>從「計畫外工作」看 PDCA</title>
<link>https://kalug.linux.org.tw/planet/chusiang/20190804_see-pdca-from-recovery-work.html/</link>
<pubDate>Sun, 04 Aug 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/chusiang/20190804_see-pdca-from-recovery-work.html/</guid>
<description>計畫外工作 (recovery work),源自《鳳凰專案》一書的四種工作類型,又稱之為例外 (outage) 和救火工作。它是四種工作中最容易被忽視,且殺傷力最強的。一旦計畫外</description>
</item>
<item>
<title>透過 Drone CLI 手動觸發 CI/CD 流程</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20190730_trigger-the-drone-job-via-promotion/</link>
<pubDate>Tue, 30 Jul 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20190730_trigger-the-drone-job-via-promotion/</guid>
<description>相信大家對於 Drone 並不陌生,這次來介紹 Drone 1.0 的新功能 (更多的 1.0 功能會陸續介紹,也可以參考之前的文章),叫做 promotion,為什麼作者會推出這功</description>
</item>
<item>
<title>架設 Go Proxy 服務加速 go module 下載速度</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20190710_speed-up-go-module-download-using-go-proxy-athens/</link>
<pubDate>Wed, 10 Jul 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20190710_speed-up-go-module-download-using-go-proxy-athens/</guid>
<description>Go 語言在 1.11 推出 go module 來統一市面上不同管理 Go 套件的工具,像是 dep 或 govendor 等,還不知道如何使用 go module,可以參考之前寫的一篇文章『Go Module 導入到專案</description>
</item>
<item>
<title>用 Ansible 安裝 Drone CI/CD 開源專案</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20190617_install-drone-ci-cd-using-ansible/</link>
<pubDate>Mon, 17 Jun 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20190617_install-drone-ci-cd-using-ansible/</guid>
<description>相信大家對於 Drone 開源專案並不陌生,如果對於 Drone 不了解的朋友們,可以直接看之前寫的系列文章,本篇要教大家如何使用 Ansible 來安裝 Drone CI/CD 開源專案。目前 Drone 可以支</description>
</item>
<item>
<title>Go Module 如何發佈 v2 以上版本</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20190607_how-to-release-the-v2-or-higher-version-in-go-module/</link>
<pubDate>Fri, 07 Jun 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20190607_how-to-release-the-v2-or-higher-version-in-go-module/</guid>
<description>Go Module 是 Golang 推出的一套件管理系統,在 Go 1.11 推出後,許多 Package 也都陸續支援 Go Module 取代舊有的套件管理系統,像是 govendor 或 dep 等,而再過不久之後,保留 vendor 的方式也會被移</description>
</item>
<item>
<title>見樹又見林的系統思考</title>
<link>https://kalug.linux.org.tw/planet/chusiang/20190530_systems-thinking-the-forest-and-the-tree.html/</link>
<pubDate>Thu, 30 May 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/chusiang/20190530_systems-thinking-the-forest-and-the-tree.html/</guid>
<description>正式入門系統思考 (Systems Thinking) 不到一年的凍仁,在 05/16-17 的 Agile Summit 2019,投了場閃電秀,用超過 5 分鐘的時間簡單地介紹何為系統思考。 系統思考,又稱之為系統思維和</description>
</item>
<item>
<title>從台鐵售票系統看 Public Money Public Code 的必要性</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20190523_public-money-public-code.html/</link>
<pubDate>Thu, 23 May 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20190523_public-money-public-code.html/</guid>
<description>*Public Money, Public Code (PMPC):&nbsp;用納稅人的錢所製作的軟體系統,應該要開放源碼供大眾檢驗並再利用。 五月份是報綜合所得稅的季節,每逢這時期想必</description>
</item>
<item>
<title>GitHub 推出 CI/CD 服務 Actions 之踩雷經驗</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20190521_introduction-to-github-actions/</link>
<pubDate>Tue, 21 May 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20190521_introduction-to-github-actions/</guid>
<description>今年很高興又去 Cloud Summit 研討會給一場議程『初探 GitHub 自動化流程工具 Actions』,這場議程沒有講很多如何使用 GitHub Actions,反倒是講了很多設計上的</description>
</item>
<item>
<title>15 分鐘學習 Go 語言如何處理多個 Channel 通道</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20190513_handle-multiple-channel-in-15-minutes/</link>
<pubDate>Mon, 13 May 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20190513_handle-multiple-channel-in-15-minutes/</guid>
<description>大家在初學 Go 語言時,肯定很少用到 Go Channel,也不太確定使用的時機點,其實在官方 Blog 有提供一篇不錯的文章『Go Concurrency Patterns: Pipelines and cancellati</description>
</item>
<item>
<title>[Go 語言教學影片] 在 struct 內的 pointers 跟 values 差異</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20190506_what-is-different-between-pointer-and-value-in-golang/</link>
<pubDate>Mon, 06 May 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20190506_what-is-different-between-pointer-and-value-in-golang/</guid>
<description>Struct Method 在 Go 語言開發上是一個很重大的功能,而新手在接觸這塊時,通常會搞混為什麼會在 function 內的 struct name 前面多一個 * pointer 符號,而有時候又沒有看到呢?以及如何用</description>
</item>
<item>
<title>〈系統思考培訓工作坊 Lv1〉與「中級學徒」</title>
<link>https://kalug.linux.org.tw/planet/chusiang/20190402_systems-thinking-training-lv1-intermediate-apprentice.html/</link>
<pubDate>Tue, 02 Apr 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/chusiang/20190402_systems-thinking-training-lv1-intermediate-apprentice.html/</guid>
<description>知曉系統思考 (Systems Thinking) 至今兩年的凍仁,雖早在半年前入門這項技藝,但為了更快、更有效地的學習,在敏捷老司機 James Wang 的介紹,報名了 2019/03/15-16 的〈系統思考培訓工作坊</description>
</item>
<item>
<title>10 分鐘內用 Traefik 架設 Drone 搭配 GitHub 服務</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20190322_setup-traefik-with-drone-ci-cd-in-ten-minutes/</link>
<pubDate>Fri, 22 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20190322_setup-traefik-with-drone-ci-cd-in-ten-minutes/</guid>
<description>這標題也許有點誇張,但是如果實際操作一次,肯定可以在 10 分鐘內操作完成。本篇來教大家如何用 Traefik 當作前端 Proxy,後端搭配 Drone 服務接 GitHub,</description>
</item>
<item>
<title>開源專案 Gitea 支援 OAuth Provider</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20190309_gitea-support-oauth-provider/</link>
<pubDate>Sat, 09 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20190309_gitea-support-oauth-provider/</guid>
<description>很高興看到 Gitea 正式支援 OAuth Provider 了,此功能經歷了四個月終於正式合併進 master 分支,預計會在 1.8 版本釋出,由於此功能已經進 master,這樣我們就可以把原本 Drone</description>
</item>
<item>
<title>解決「嘸蝦米輸入法 v2.6.4」未預期中止問題 on Android 8.0</title>
<link>https://kalug.linux.org.tw/planet/chusiang/20190226_fixed-boshiamy-ime-v2.6.4-oops-error-on-android-8.0.html/</link>
<pubDate>Tue, 26 Feb 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/chusiang/20190226_fixed-boshiamy-ime-v2.6.4-oops-error-on-android-8.0.html/</guid>
<description>嘸蝦米 (Boshiamy IME) Android 版,自從 2019/02/18 釋出 v2.6.4 後,除造成不少 Android 用戶無法正常使用嘸蝦米,還會一直跳出「未預期中止的錯誤訊息」視窗阻礙操作。相信部份使用者,正因如</description>
</item>
<item>
<title>在 docker-in-docker 環境中使用 cache-from 提升編譯速度</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20190224_using-cache-from-can-speed-up-your-docker-builds/</link>
<pubDate>Sun, 24 Feb 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20190224_using-cache-from-can-speed-up-your-docker-builds/</guid>
<description>在現代 CI/CD 的環境流程中,使用 Docker In Docker 來編譯容器已經相當流行了,像是 GitLab CI 或 Drone 都是全走 Docker 環境,然而有很多人建議盡量不要在 CI 環境使用 Docker In Docker,</description>
</item>
<item>
<title>快速部署網站到 Heroku 雲平台</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20190218_deploy-golang-app-to-heroku/</link>
<pubDate>Mon, 18 Feb 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20190218_deploy-golang-app-to-heroku/</guid>
<description>大家在寫開源專案時,一定需要一個免費的雲空間來放置網站,方便其他開發者在 GitHub 看到時,可以先點選 Demo 網站來試用,也許開發者可以使用 GitHub 提供的免費靜態</description>
</item>
<item>
<title>軟體自由協會 2019 年度會員大會將在 3 月 23 日舉行</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20190218_2019-3-23-slat-general-assembly.html/</link>
<pubDate>Mon, 18 Feb 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20190218_2019-3-23-slat-general-assembly.html/</guid>
<description>軟體自由協會 2019 年 年度會員大會 3 月 23 日下午二時 於 A+A Space 舉行 地圖:Open Street Map、Google Map 本次會員大會 將改選 第十屆理監事會 敬請出席參與</description>
</item>
<item>
<title>有效率的用 jsonnet 撰寫 Drone CI/CD 設定檔</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20190125_converts-a-jsonnet-configuration-file-to-a-yaml-in-drone/</link>
<pubDate>Fri, 25 Jan 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20190125_converts-a-jsonnet-configuration-file-to-a-yaml-in-drone/</guid>
<description>Drone 在 1.0 版本推出了用 jsonnet 來撰寫 YAML 設定檔,方便開發者可以維護多個專案設定。不知道大家有無遇過在啟動新的專案後,需要從舊的專案複製設定到新專案,或者</description>
</item>
<item>
<title>Seagate 2.5吋 4TB 外接硬碟 好市多 2699 元</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20190120_costco-seagate-usb-hard-disk-2699/</link>
<pubDate>Sun, 20 Jan 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20190120_costco-seagate-usb-hard-disk-2699/</guid>
<description>本週 Costco 正在特價 Seagate 4TB 外接硬碟特價 2699 元,本來只有 3TB 特價 2699 元活動,後來廠商供應數量不夠,只好拿 4TB 一起來特價 2699 元,所以我去賣場發現一樣價錢,但是足足</description>
</item>
<item>
<title>Traefik 搭配 Docker 自動更新 Let’s Encrypt 憑證</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20190120_traefik-docker-and-lets-encrypt/</link>
<pubDate>Sun, 20 Jan 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20190120_traefik-docker-and-lets-encrypt/</guid>
<description>之前寫過蠻多篇 Let&#8217;s Encrypt 的使用教學,但是這次要跟大家介紹一套非常好用的工具 Traefik 搭配自動化更新 Let&#8217;s Encrypt 憑證,為什麼會推薦 Traefik 呢,原因在於 Traefik 可以自動偵測 Docker 容器</description>
</item>
<item>
<title>用 Traefik 搭配 Docker 快速架設服務</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20190108_deploy-service-using-traefik-and-docker/</link>
<pubDate>Tue, 08 Jan 2019 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20190108_deploy-service-using-traefik-and-docker/</guid>
<description>更新: 2019.01.10 新增教學影片 相信大家在架設服務肯定會選一套像是 HAProxy, Nginx, Apache 或 Caddy,這四套架設的難度差不多,如果要搭配 Let&#8217;s Encrypt 前面兩套需要自己串接 (Nginx, Apa</description>
</item>
<item>
<title>系統工程師的 DevOps 實踐之道</title>
<link>https://kalug.linux.org.tw/planet/chusiang/20181231_devops-practice-of-system-engineer.html/</link>
<pubDate>Mon, 31 Dec 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/chusiang/20181231_devops-practice-of-system-engineer.html/</guid>
<description>系統思考 (Systems Thinking),一是門需要刻意練習的技藝!趁著在新竹敏捷之旅 (Agile Tour Hsinchu 2018) 和高雄敏捷之旅 (Agile Tour Kaohsiung 2018) 上台分享的機會,凍仁試著使用因果循環</description>
</item>
<item>
<title>Go Module 導入到專案內且搭配 Travis CI 或 Drone 工具</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20181230_go-module-integrate-with-travis-or-drone/</link>
<pubDate>Sun, 30 Dec 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20181230_go-module-integrate-with-travis-or-drone/</guid>
<description>相信各位 Go 語言開發者陸陸續續都將專案從各種 Vendor 工具轉換到 Go Module,本篇會帶大家一步一步從舊專案轉換到 Go Module,或是該如何導入新專案</description>
</item>
<item>
<title>付費軟體才是好?5 個超實用自由軟體,免費而且功能超強大!</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20181230_5.html/</link>
<pubDate>Sun, 30 Dec 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20181230_5.html/</guid>
<description>主筆/劉宇馨、黃俊元&nbsp; &nbsp;協作/洪靖雯、黃閔貞、凌郁涵 你還在使用付費或盜版軟體嗎?使用自由軟體(free software)</description>
</item>
<item>
<title>KaLUG 1812聚會</title>
<link>https://kalug.linux.org.tw/meetups/1812/</link>
<pubDate>Sat, 29 Dec 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/meetups/1812/</guid>
<description>Louis - QGIS 系统 https://www.facebook.com/photo.php?fbid=10156202263772523&amp;set=gm.10156775586295429&amp;type=3&amp;theater&amp;ifg=1</description>
</item>
<item>
<title>用 Docker 整合測試 Flutter 框架</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20181226_docker-testing-with-flutter-sdk/</link>
<pubDate>Wed, 26 Dec 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20181226_docker-testing-with-flutter-sdk/</guid>
<description>Flutter 是一套以 Dart 語言為主體的手機 App 開發框架,讓開發者可以寫一種語言產生 iOS 及 Android,只要裝好 Flutter 框架,就可以在個人電腦上面同時測試 iOS 及 Android 流程</description>
</item>
<item>
<title>將 Flickr 相簿備份到 Google Photos</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20181220_upload-flickr-to-google-photos/</link>
<pubDate>Thu, 20 Dec 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20181220_upload-flickr-to-google-photos/</guid>
<description>Flickr 在 2019 年一月會開始將免費會員照片刪除到剩下 1000 張,這次透過 Go 工具 來將備份好的 Flickr 相簿上傳到 Google Photos,此工具只適合用在 MacOS 及 Linux 上面,Windo</description>
</item>
<item>
<title>Drone CI/CD 推出 Cloud 服務支援開源專案</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20181209_drone-cloud-service/</link>
<pubDate>Sun, 09 Dec 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20181209_drone-cloud-service/</guid>
<description>Drone 在上個月宣布推出 Cloud 服務 整合 GitHub 帳戶內的 Repo,只要登入後就可以跑 GitHub 上面的專案自動化整合及測試,原先在 GitHub 上面常見的就是 Travis 或 CircleCI,</description>
</item>
<item>
<title>Flutter 推出 1.0 版本</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20181205_flutter-release-1-0-0-version/</link>
<pubDate>Wed, 05 Dec 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20181205_flutter-release-1-0-0-version/</guid>
<description>很高興看到台灣時間 12&frasl;5 號 Flutter 正式推出 1.0 版本,相信很多人都不知道什麼是 Flutter,簡單來說開發者只要學會 Flutter 就可以維護一套程式碼,並且同時編譯出</description>
</item>
<item>
<title>KaLUG 1811聚會</title>
<link>https://kalug.linux.org.tw/meetups/1811/</link>
<pubDate>Sat, 24 Nov 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/meetups/1811/</guid>
<description>1811 11&frasl;24 同選舉日活動時間延後至下午四點開始 雲凱 - 如何貢獻 denite.vim 魏炎 - 海外期貨交易系統概述</description>
</item>
<item>
<title>Microsoft Office 2016 & 365 不只傳送「軟體診斷資料」,還私下傳送了...</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20181116_windows-office-2016-365.html/</link>
<pubDate>Fri, 16 Nov 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20181116_windows-office-2016-365.html/</guid>
<description>原文出處:https://www.zdnet.com/article/dutch-government-report-says-micros</description>
</item>
<item>
<title>Raw 檔顯色器軟體 darktable 徵求翻譯中</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20181113_darktable-translation-bounty.html/</link>
<pubDate>Tue, 13 Nov 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20181113_darktable-translation-bounty.html/</guid>
<description>現代數位攝影領域中,以 Raw 檔顯色器編修原始相片的過程,已取代傳統的暗房洗片與顯色。自由軟體世界中,亦有 darktable 這樣的 Raw 檔顯色軟體開放給任何人自由使用</description>
</item>
<item>
<title>高雄 Mopcon 濁水溪以南最大研討會 – Drone CI/CD 介紹</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20181106_drone-ci-cd-platform-in-mopconf/</link>
<pubDate>Tue, 06 Nov 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20181106_drone-ci-cd-platform-in-mopconf/</guid>
<description>今年又以講者身份參加 Mopcon 南區最大研討會,此次回高雄最主要推廣 Drone 這套 CI/CD 平台。大家可以從過去的 Blog 或影片可以知道我在北部推廣了很多次 Drone 開源軟體,唯獨</description>
</item>
<item>
<title>KaLUG 1810聚會</title>
<link>https://kalug.linux.org.tw/meetups/1810/</link>
<pubDate>Sat, 27 Oct 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/meetups/1810/</guid>
<description>KaLUG 20 周年特别聚會 地點: 睦工廠 鹽埕店 自助吧大食團 + Lighting talk (以下開放 Lighting talk 報名) 經典回顧</description>
</item>
<item>
<title>用 10 分鐘部署專案到 AWS Lambda</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20181025_deploy-app-to-aws-lambda-using-up-tool-in-ten-minutes/</link>
<pubDate>Thu, 25 Oct 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20181025_deploy-app-to-aws-lambda-using-up-tool-in-ten-minutes/</guid>
<description>看到這標題也許非常聳動,也可能覺得不可思議,今天來探討如何將專案直接部署到 AWS Lambda 並且自動化將 API Gateway 設定完成。當然要做到完全自動化,必須要使用一些</description>
</item>
<item>
<title>Go 語言 1.11 版本推出 go module</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20181016_go-1-11-support-go-module/</link>
<pubDate>Tue, 16 Oct 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20181016_go-1-11-support-go-module/</guid>
<description>本篇來聊聊 Go 語言在 1.11 版本推出的 新功能,相信大家也許還不知道此功能是做什麼用的,我們來回顧看看在初學 Go 語言的時候,最令人困擾的就是 GOPATH</description>
</item>
<item>
<title>KaLUG 1809聚會</title>
<link>https://kalug.linux.org.tw/meetups/1809/</link>
<pubDate>Sat, 29 Sep 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/meetups/1809/</guid>
<description>Rick - raspberry pi cluster Shawn - Bootstrap Kubernetes</description>
</item>
<item>
<title>gofight 支援多個檔案上傳測試</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20180925_gofight-support-upload-file-testing/</link>
<pubDate>Tue, 25 Sep 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20180925_gofight-support-upload-file-testing/</guid>
<description>gofight 是一套用 Go 語言撰寫的 HTTP API 測試套件,之前已經寫過一篇介紹用法,當時候尚未支援檔案上傳測試,也就是假設寫了一個檔案上傳的 http handler 在專案內如何寫測試</description>
</item>
<item>
<title>Go 語言專案程式碼品質</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20180920_golang-project-quality/</link>
<pubDate>Thu, 20 Sep 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20180920_golang-project-quality/</guid>
<description>本篇想介紹我在寫開源專案會用到的工具及服務,其實在編譯 Go 語言同時,就已經確保了一次程式碼品質,或者是在編譯之前會跑 go fmt 或 go vet 的驗證,網路上也</description>
</item>
<item>
<title>2018 軟體自由日:國際反數位版權鎖日(Internal Day Against DRM, IDAD)</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20180918_2018-internal-day-against-drm.html/</link>
<pubDate>Tue, 18 Sep 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20180918_2018-internal-day-against-drm.html/</guid>
<description>@page { size: 595.3pt 841.9pt; margin: 56.7pt } p { margin-top: 11.4pt; margin-bottom: 0pt; text-align: justify; background: transparent; page-break-before: auto } 今天是「國際反數位版權鎖」日,英文稱為 IDAD,International Day Against DRM。 所謂的 DRM</description>
</item>
<item>
<title>Go 語言的 graphQL-go 套件正式支援 Concurrent Resolvers</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20180916_graphql-go-library-support-concurrent-resolvers/</link>
<pubDate>Sun, 16 Sep 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20180916_graphql-go-library-support-concurrent-resolvers/</guid>
<description>要在 Go 語言寫 graphQL,大家一定對 graphql-go 不陌生,討論度最高的套件,但是我先說,雖然討論度是最高,但是效能是最差的,如果大家很要求效能,可以先</description>
</item>
<item>
<title>「系統思考的四堂課」與「萬人敵」</title>
<link>https://kalug.linux.org.tw/planet/chusiang/20180902_systems-thinking-workshop-of-devops.html/</link>
<pubDate>Sun, 02 Sep 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/chusiang/20180902_systems-thinking-workshop-of-devops.html/</guid>
<description>系統思考 (Systems Thinking),是一項用因果關係,推導出系統整體,進而看見世界全貌的高深技藝。凍仁第一次見到它,是在 DevOpsDays Taipei 2017 的場子,聽 Ruddy Lee 老師分</description>
</item>
<item>
<title>在 PostgreSQL 時區轉換及計算時間</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20180902_converting-timestamp-to-timestamp-in-a-specific-time-zone-in-postgres/</link>
<pubDate>Sun, 02 Sep 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20180902_converting-timestamp-to-timestamp-in-a-specific-time-zone-in-postgres/</guid>
<description>通常在使用資料表時,都會在每一筆紀錄上面寫入當下時間,而這個時間會根據目前系統所在的時區而有所不同,當然我們都會使用 UTC+0 作為標準時區,而欄位我</description>
</item>
<item>
<title>在 Go 語言內的 URL RawQuery 的改變</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20180827_escape-url-rawquery-on-parse-in-golang/</link>
<pubDate>Mon, 27 Aug 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20180827_escape-url-rawquery-on-parse-in-golang/</guid>
<description>更新 (2018.08.29) 感謝中國網友幫忙發個 Issue,大家有空可以關注看看,等官方怎麼回應 Go 語言內的 net/url 函式庫讓開發者可以簡單的 Parse 指定的 URL,最近 Google 上了這個</description>
</item>
<item>
<title>《鳳凰專案》- 踏入 DevOps 之旅的第一本書</title>
<link>https://kalug.linux.org.tw/planet/chusiang/20180826_the-phoenix-project-book.html/</link>
<pubDate>Sun, 26 Aug 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/chusiang/20180826_the-phoenix-project-book.html/</guid>
<description>《鳳凰專案》其原文書書名為《The Phoenix Project: A Novel about IT, DevOps, and Helping Your Business Win》,是一部「IT 人藉由『DevOps』讓企業克敵制勝」的小說。 作者:Gene K</description>
</item>
<item>
<title>KaLUG 1808聚會</title>
<link>https://kalug.linux.org.tw/meetups/1808/</link>
<pubDate>Sat, 25 Aug 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/meetups/1808/</guid>
<description>Rick68: Rust ABC 最近大家都在玩新語言, Rick要來幫我們介紹一下Rust Louis: 介紹高雄港站與臨港線 好久不見的Louis 要帶給我們一些鐵道相關 一些訊息 COSCUP 08/11~08/12 COSCUP</description>
</item>
<item>
<title>Enabling the InnoDB File-Per-Table tablespaces and migrate the MySQL database for Zabbix 3.2.6 on CentOS 7</title>
<link>https://kalug.linux.org.tw/planet/chusiang/20180818_enabling-mysql-innodb-file-per-table-for-zabbix-3.2.6-centos-7.html/</link>
<pubDate>Sat, 18 Aug 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/chusiang/20180818_enabling-mysql-innodb-file-per-table-for-zabbix-3.2.6-centos-7.html/</guid>
<description>As the Zabbix Ops, we want to split the large ibdata1 file, so than we can reduce the obsolete data like history_uint table. [ jonny@zabbix-server ~ ] $ ls -lh /var/lib/mysql/ [Enter] total 16G -rw-rw&mdash;- 1 mysql mysql 16K Aug 15 10:36 aria_log.00000001 -rw-rw&mdash;- 1 mysql mysql 52 Aug 15 10:36 aria_log_control -rw-rw&mdash;- 1 mysql mysql 15G Aug 15 12:45 ibdata1 -rw-rw&mdash;- 1 mysql mysql 5.0M Aug 15 12:45 ib_logfile0</description>
</item>
<item>
<title>DevOps Engineer、SRE 徵才求職雜談</title>
<link>https://kalug.linux.org.tw/planet/chusiang/20180729_devops-journey-devops-engineer-sre-jobs.html/</link>
<pubDate>Sun, 29 Jul 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/chusiang/20180729_devops-journey-devops-engineer-sre-jobs.html/</guid>
<description>擔任 DevOps Taiwan 的社群志工的凍仁,不時會收到企業轉介 DevOps Engineer 或 SRE (Site Reliability Engineer) 的請求,因為這類的異數著實不好找。 DevOps、SRE 這兩個名詞代表著不同的意義,</description>
</item>
<item>
<title>用 Drone CI/CD 整合 Packer 自動產生 GCP 或 AWS 映像檔</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20180729_drone-with-hashicorp-packer/</link>
<pubDate>Sun, 29 Jul 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20180729_drone-with-hashicorp-packer/</guid>
<description>本篇來介紹 Hashicorp 旗下其中一個產品叫 Packer,其實在 Hashicorp 旗下有很多其他雲端工具都非常好用,如果大家有興趣都可以上官網參考看看。而 Packer 是用來產生各大</description>
</item>
<item>
<title>KaLUG 1807聚會</title>
<link>https://kalug.linux.org.tw/meetups/1807/</link>
<pubDate>Sat, 28 Jul 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/meetups/1807/</guid>
<description>時間:2018/07/28 14:00(+0800) Qerter: 怎麼逆向Linux elf程式 (Radare2) https://github.com/radare/radare2 Hawk 給了一個例子為了個要逆向 dlink zero day https://www.zdnet.com/article/10-d-link-zero-day-router-flaws-exposed/ Hawk: Gopher Puzzlers 藉由許多想都沒想過的問題來學習到gol</description>
</item>
<item>
<title>用 Caddy 申請 Let’s Encrypt Wildcard 憑證</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20180727_caddy-lets-encrypt-wildcard-certificate/</link>
<pubDate>Fri, 27 Jul 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20180727_caddy-lets-encrypt-wildcard-certificate/</guid>
<description>2018 年 3 月 Let&#8217;s Encrypt 官方正式公告支援 Wildcard Certificate 憑證,有在玩多個 subdomain 有福了,未來只要申請一張 *.example.com 就全部通用啦,當然很高興 Caddy 也跟進了,在 v11.0 正式支援多種 DNS Provi</description>
</item>
<item>
<title>Go 語言實戰 GraphQL</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20180719_graphql-in-go/</link>
<pubDate>Thu, 19 Jul 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20180719_graphql-in-go/</guid>
<description>很高興能在 2018 ModernWeb 研討會跟大家分享用 Go 語言實戰 GraphQL,相信大家都知道 GraphQL 帶給前端後端及手機開發者很多好處,強烈推薦大家來嘗試看看。這場議程</description>
</item>
<item>
<title>在本機端快速產生網站免費憑證</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20180706_mkcert-zero-config-tool-to-make-locally-trusted-development-certificates/</link>
<pubDate>Fri, 06 Jul 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20180706_mkcert-zero-config-tool-to-make-locally-trusted-development-certificates/</guid>
<description>大家看到網站免費憑證,一定會想到 Let&#8217;s encrypt 服務商提供一個網域可以使用 100 個免費憑證,如果您有很多 subdomain 需求,還可以申請獨立一張 wildcard 憑證,但是這是在伺服器端</description>
</item>
<item>
<title>從《心態致勝》看敏捷</title>
<link>https://kalug.linux.org.tw/planet/chusiang/20180630_see-the-agile-from-mindset.html/</link>
<pubDate>Sat, 30 Jun 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/chusiang/20180630_see-the-agile-from-mindset.html/</guid>
<description>正式入門 Agile (敏捷) 一年的凍仁,在 06/28-29 的 Agile Summit 2018,投了場閃電秀,用 5 分鐘分享近日閱讀《心態致勝》心得。 《心態致勝》的原文書名為《Mindse</description>
</item>
<item>
<title>如何在 Go 語言內寫效能測試</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20180626_how-to-write-benchmark-in-go/</link>
<pubDate>Tue, 26 Jun 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20180626_how-to-write-benchmark-in-go/</guid>
<description>Go 語言不只有內建基本的 Testing 功能,另外也內建了 Benchmark 工具,讓開發者可以快速的驗證自己寫的程式碼效能如何?該如何使用基本的 Benchmark 工具,底下用簡單的例子來說</description>
</item>
<item>
<title>KaLUG 1806聚會 KaLUG website rebuild + Erlang/LISP/GoLang/Python coroutine</title>
<link>https://kalug.linux.org.tw/meetups/1806/</link>
<pubDate>Sat, 23 Jun 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/meetups/1806/</guid>
<description>聚會時間:2018/06/23 14:00~17:30 Shawn: KaLUG website rebuild slide: https://hackmd.io/Z68T7mslSIiQrb6zl_gY5g 共筆撰寫 (KaLUG共筆https://kalug.linux.org.tw/note)[htt</description>
</item>
<item>
<title>Drone 搭配 Kubernetes 部署 Go 語言項目</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20180605_drone-kubernetes-with-golang/</link>
<pubDate>Tue, 05 Jun 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20180605_drone-kubernetes-with-golang/</guid>
<description>在之前寫過一篇『Drone 搭配 Kubernetes 升級應用程式版本』,裡面內容最主要介紹 honestbee 撰寫的 drone 外掛: drone-kubernetes,但是此外掛並非用 Go 語</description>
</item>
<item>
<title>簡單易用的 Zabbix 監控服務</title>
<link>https://kalug.linux.org.tw/planet/chusiang/20180531_zabbix-the-easy-to-use-monitoring-tools.html/</link>
<pubDate>Thu, 31 May 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/chusiang/20180531_zabbix-the-easy-to-use-monitoring-tools.html/</guid>
<description>上週六 (05/26),是 DevOps Taiwan 的社群日。這次「Monitoring Tools 大亂鬥」一共邀請了 11 位講者,從雲端運算 (Cloud Computing) 的 AWS, Azure, GCP,和自由軟體 (Free Software) 的 Consul,</description>
</item>
<item>
<title>KaLUG 1805聚會: 接續早上 高雄Go + COSCUP科技政策規劃Workshop 討論</title>
<link>https://kalug.linux.org.tw/meetups/1805/</link>
<pubDate>Sat, 26 May 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/meetups/1805/</guid>
<description>時間:2018/05/26 14:00(+0800) 地點:【高雄】Aroma caf&rsquo;e live 香氣現場 / 前金區長生街25號</description>
</item>
<item>
<title>如何在 Go 專案內寫測試</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20180514_how-to-write-testing-in-golang/</link>
<pubDate>Mon, 14 May 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20180514_how-to-write-testing-in-golang/</guid>
<description>相信大家都知道專案內不導入測試,未來越來越多功能,技術債就會越來越多,接手的人罵聲連連,而寫測試的簡單與否決定專案初期是否要先導入。為什麼專</description>
</item>
<item>
<title>Go 語言的 vendor 目錄</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20180505_what-is-vendor-in-golang/</link>
<pubDate>Sat, 05 May 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20180505_what-is-vendor-in-golang/</guid>
<description>很多朋友剛入門 Go 語言時,第一個會遇到的問題是,該如何設定專案配置,讓專案可以正常執行,在個人電腦該如何開發多個專案,這邊就會遇到該如何設定 $</description>
</item>
<item>
<title>怎麼無痛升級 Ansible</title>
<link>https://kalug.linux.org.tw/planet/chusiang/20180428_how-to-stable-upgrade-the-ansible.html/</link>
<pubDate>Sat, 28 Apr 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/chusiang/20180428_how-to-stable-upgrade-the-ansible.html/</guid>
<description>昨天,是凍仁參加 DevOps Taiwan Meetup #13 Ansible User 小聚,並擔任閃電秀講者的日子。還記得 2 年前,剛入門 Ansible 時,凍仁一直很想參加 Ansible 小聚,好親自與前輩們討教,降低學習門壏</description>
</item>
<item>
<title>Go 語言的 init 函式</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20180419_init-func-in-golang/</link>
<pubDate>Thu, 19 Apr 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20180419_init-func-in-golang/</guid>
<description>本篇會帶大家認識 Go 語言的 init 函式,在了解 init func 之前,大家應該都知道在同一個 Package 底下是不可以有重複的變數或者是函式名稱,但是唯獨 init() 可以在同一個 package 內宣</description>
</item>
<item>
<title>[影片教學] 使用 Filter 將專案跑在特定 Drone Agent 服務</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20180415_how-to-use-filter-in-drone/</link>
<pubDate>Sun, 15 Apr 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20180415_how-to-use-filter-in-drone/</guid>
<description>Drone 是一套用 Go 語言撰寫的 CI/CD 開源專案,是由一個 Server 跟多個 Agent 所組成,Agent 上面必須安裝好 Dokcer 才可以順利測試及部署,但是團隊內會出現一個狀況,每個專</description>
</item>
<item>
<title>KaLUG 1804聚會: 1. Emacs的org-mode&&GTD 2.katacoda 開開心心學k8s</title>
<link>https://kalug.linux.org.tw/meetups/1804/</link>
<pubDate>Sat, 14 Apr 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/meetups/1804/</guid>
<description>時間:2018/04/14 14:00(+0800)~16:40 地點:橋頭糖廠博物館 的 糖廠咖啡 / 高雄市橋頭區橋南里糖廠路24號 橋頭糖廠博物館</description>
</item>
<item>
<title>如何使用 Go 語言 Flag 套件 (影片教學)</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20180412_how-to-use-golang-flag-package/</link>
<pubDate>Thu, 12 Apr 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20180412_how-to-use-golang-flag-package/</guid>
<description>之前寫過一篇『用 Golang 寫 Command line 工具』教學,作者我錄了一個教學影片,教大家如何使用 Go 語言的 Flag 套件,套件用法很簡單,相信看了底下的影片教學馬上就會了,</description>
</item>
<item>
<title>Go 語言基礎實戰教學影片上線了</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20180329_golang-introduction-video/</link>
<pubDate>Thu, 29 Mar 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20180329_golang-introduction-video/</guid>
<description>購買連結 去年在台灣推廣 Drone 這套由 Go 語言所撰寫的開源專案,身為維護者之一,也將 Drone 跟 Gitea 完成整合。如果對於從開發到部署整個流程,還不是很了解的朋友,</description>
</item>
<item>
<title>Go 語言搭配 Docker Healthy Check 檢查</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20180319_docker-healthcheck-in-golang/</link>
<pubDate>Mon, 19 Mar 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20180319_docker-healthcheck-in-golang/</guid>
<description>在 Docker 1.12 版本後,提供了 HEALTHCHECK 指令,通過指定的一行命令來判斷容器內的服務是否正常運作。在此之前大部分都是透過判斷程式是否 Crash 來決定容器是否存活,但是這</description>
</item>
<item>
<title>Install the Vim 8.0 and YouCompleteMe with Make on CentOS 7.3</title>
<link>https://kalug.linux.org.tw/planet/chusiang/20180319_install-vim-80-and-youcompleteme-with.html/</link>
<pubDate>Mon, 19 Mar 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/chusiang/20180319_install-vim-80-and-youcompleteme-with.html/</guid>
<description>As a vimmer, I want to complete and install the Vim 7.4.1578+ at ~/.local , so than I can use the YouCompleteMe plugin on CentOS 7.3. ▲ The Vim 8.0.1522 on CentOS 7.3.1611. Install the Vim 8.0 with Make1. Install the necessary package. [ jonny@centos7 ~ ] $ sudo yum install gcc-c++ ncurses-devel python-devel 2. Get the source code of Vim. [ jonny@centos7 ~ ] $ git clone https://github.com/vim/vim.git 3.</description>
</item>
<item>
<title>從 Pianoboy 高至豪的故事看軟體自由運動的價值觀</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20180318_pianoboy.html/</link>
<pubDate>Sun, 18 Mar 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20180318_pianoboy.html/</guid>
<description>https://www.plurk.com/p/moeuyd https://www.ptt.cc/bbs/Gossiping/M.1520850748.A.3C2.html 這是一個堅持30餘年,在台灣握有資源的人看不見他的價值,於是自己另尋出路,闖出另一片天的故事。 原轉 po 網友 AkiRa 重點放在台灣握有資源的人的一些</description>
</item>
<item>
<title>1803聚會主題: 開源與天文 地點 橋頭糖廠博物館 糖廠咖啡</title>
<link>https://kalug.linux.org.tw/meetups/1803/</link>
<pubDate>Sat, 17 Mar 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/meetups/1803/</guid>
<description>時間:2018/03/17 14:00(+0800)~16:40 地點:橋頭糖廠博物館 的 糖廠咖啡 / 高雄市橋頭區橋南里糖廠路24號 橋頭糖廠博物館</description>
</item>
<item>
<title>用 Nginx 來架設線上即時縮圖機</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20180317_nginx-reverse-proxy-image-resizing/</link>
<pubDate>Sat, 17 Mar 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20180317_nginx-reverse-proxy-image-resizing/</guid>
<description>在更早以前我們怎麼實現縮圖機制,當使用者上傳一張檔案,後端會固定將圖片縮圖成各種前端網頁需要的大小,不管前端頁面是否有使用,後端都會先產生好</description>
</item>
<item>
<title>用 Go 語言實現單一或多重 Queue 搭配 optimistic concurrency</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20180310_simple-queue-with-optimistic-concurrency-in-go/</link>
<pubDate>Sat, 10 Mar 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20180310_simple-queue-with-optimistic-concurrency-in-go/</guid>
<description>本篇教學會著重在如何使用 Go 語言的 goroutine 及 channel。MongoDB 是一套具有高效能讀寫的 NoSQL 資料庫,但是不像傳統關連式資料庫,有非常好用的 Transaction 交</description>
</item>
<item>
<title>中華民國軟體自由協會 FB 粉絲頁分享連結:Supporters of Free Software Foundation Europe</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20180307_fb-supporters-of-free-software.html/</link>
<pubDate>Wed, 07 Mar 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20180307_fb-supporters-of-free-software.html/</guid>
<description>協會很榮幸受到歐洲自由軟體基金會(Free Software Foundation Europe) 邀請,發一段支持軟體自由運動與 FSFE 的聲明。今天刊載在 FSFE 網站上了。雖然網站上由現任理事長代表,但</description>
</item>
<item>
<title>中華民國軟體自由協會 FB 粉絲頁分享連結:軟體自由協會 線上書城 - 我們想要的是哪一種錢?</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20180306_fb.html/</link>
<pubDate>Tue, 06 Mar 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20180306_fb.html/</guid>
<description>【線上書城新書上架】金融科技的起手式—《我們想要的是哪一種錢?》 協會的線上書城有新書上架了! 金錢是最常被提起的話題:每個人都在談錢,並且終其</description>
</item>
<item>
<title>將 Go Html Template 存入 String 變數</title>
<link>https://kalug.linux.org.tw/planet/appleboy/20180228_simply-output-go-html-template-execution-to-strings/</link>
<pubDate>Wed, 28 Feb 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/appleboy/20180228_simply-output-go-html-template-execution-to-strings/</guid>
<description>在 Go 語言內通常都將 Html Temaple 寫入到 io.Writer interface 像是 *http.ResponseWriter,但是有些情境需要將 Template 寫入到 String 變數內,例如實作簡訊 Templat</description>
</item>
<item>
<title>中華民國軟體自由協會 分享相片:過去這一年在數位世界中,並不是太好過。德國慕尼黑市在政治因素操作下,儘管各項分析都顯示會大幅度增加經濟成本與減少本地就業機會,但市議會仍決議丟棄十幾年來使用的自由軟體系統,逐步在未來數年回到專有軟體廠商的懷抱;美國通過了廢除網路中立性的法案,讓網路服務供應商可以依自己喜好輕易扼殺其他網路服務的競爭力,而台灣的電信商也跟進喊燒!臉書不斷修改規則,降低粉絲專頁的觸及率,還進一步過濾敏感詞,只為了討好大國...... 但是在過去這一年中,也不是沒有好消息。慕尼黑市踢開了自由軟體,但西班牙的巴塞隆納卻反其道,揚棄專有軟體投向自由開源的未來!此外在台灣更是有許多進展。我們突破了技能檢定考試只預裝專有軟體的障礙,讓自由軟體納入預裝軟體選擇;開放文件格式政策在各政府機關逐漸發芽,而台灣更成了 LibreOffice 與文件基金會在亞洲的堅實堡壘! 生活在現代的我們,與網際網路的連結已經是緊密不可分;但面對許多想要限制、束縛我們在數位世界自由的勢力,我們若再不覺醒、再不反抗,後果就是在數位世界中任大廠宰割。#軟體自由運動 是我們的核心理念。在此歡迎關切軟體自由運動的各位,在 3 月 17 日一起來軟體自由反抗軍的基地 A+A space 共創共享空間,聽聽我們這一年在軟體自由運動上的進展,還有未來的展望。 日期:107 年 3 月 17 日(星期六) 時間:13:30 ~ 16:30 地點:A+A 共創共享空間 地址:台北市南京東路五段213號4樓之1 捷運南京三民站1號出口左轉,於南京東路五段與三民路口彰化銀行樓上。大樓入口在三民路上。</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20180227_libreoffice-3-17-aa-space-107-3-17-1330.html/</link>
<pubDate>Tue, 27 Feb 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20180227_libreoffice-3-17-aa-space-107-3-17-1330.html/</guid>
<description>從 中華民國軟體自由協會 文章連結:http://ift.tt/2ESOPGC</description>
</item>
<item>
<title>中華民國軟體自由協會 FB 粉絲頁分享連結:Early availability of LibreOffice 5.4.5 and LibreOffice 6.0.1: all users are invited to update for improved robustness and security</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20180209_fb-early-availability-of-libreoffice.html/</link>
<pubDate>Fri, 09 Feb 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20180209_fb-early-availability-of-libreoffice.html/</guid>
<description>【LibreOffice 安全性更新通報】 雖然 LibreOffice 6.0 才剛發布不久,團隊核心成員上週也都在布魯賽爾參加 FOSDEM 以及半年一次的實體會議,但在接到重大安全性</description>
</item>
<item>
<title>中華民國軟體自由協會 FB 粉絲頁分享連結:會員大會宣傳短片【Funky版】</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20180202_fb-funky.html/</link>
<pubDate>Fri, 02 Feb 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20180202_fb-funky.html/</guid>
<description>軟體自由協會 2018 年會員大會,將在 3&frasl;17 日下午一點半於 A+A Space 共創共享空間舉行。在 3 月 1 日以前加入協會的會員都有提案並表決的權利。尚未加入協會的朋友也歡</description>
</item>
<item>
<title>中華民國軟體自由協會 FB 粉絲頁分享連結:會員大會宣傳短片【浪潮版】</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20180202_fb.html/</link>
<pubDate>Fri, 02 Feb 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20180202_fb.html/</guid>
<description>軟體自由協會 2018 年會員大會,將在 3&frasl;17 日下午一點半於 A+A Space 共創共享空間舉行。在 3 月 1 日以前加入協會的會員都有提案並表決的權利。尚未加入協會的朋友也歡</description>
</item>
<item>
<title>【文件基金會新聞稿】LibreOffice 6.0 發行:強大、簡單、安全,桌面與雲端互通</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20180131_libreoffice-60.html/</link>
<pubDate>Wed, 31 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20180131_libreoffice-60.html/</guid>
<description>@page { margin: 2cm } p.第一行縮排-western { text-indent: 0.8cm; direction: inherit; font-family: &ldquo;Liberation Sans&rdquo;, sans-serif; line-height: 115%; text-align: justify } p.第一行縮排-cjk { text-indent: 0.8cm; direction: inherit; font-family: &ldquo;Noto Sans CJK TC Regular&rdquo;, sans-serif; font-size: 12pt; so-language: zh-TW; line-height: 115%; text-align: justify } p.第一</description>
</item>
<item>
<title>中華民國軟體自由協會 FB 粉絲頁分享連結:【文件基金會新聞稿】LibreOffice 6.0 發行:強大、簡單、安全,桌面與雲端互通</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20180131_fb-libreoffice-60.html/</link>
<pubDate>Wed, 31 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20180131_fb-libreoffice-60.html/</guid>
<description>【新聞稿】LibreOffice 6.0 正式釋出! http://ift.tt/2FwUFcG 請點擊連結: 【文件基金會新聞稿】LibreOffice 6.0 發行:強大、簡單、安全,桌面與雲端互通</description>
</item>
<item>
<title>中華民國軟體自由協會 FB 粉絲頁分享連結:LibreOffice 正體中文消息</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20180126_fb-libreoffice.html/</link>
<pubDate>Fri, 26 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20180126_fb-libreoffice.html/</guid>
<description>各位有在用 LibreOffice 的朋友都可以到 Ask LibreOffice 網站看看喔!😍 請點擊連結: LibreOffice 正體中文消息</description>
</item>
<item>
<title>中華民國軟體自由協會 分享相片:</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20180125_blog-post_20.html/</link>
<pubDate>Thu, 25 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20180125_blog-post_20.html/</guid>
<description>從 中華民國軟體自由協會 文章連結:http://ift.tt/2FdbKbs</description>
</item>
<item>
<title>中華民國軟體自由協會 分享相片:</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20180125_blog-post_25.html/</link>
<pubDate>Thu, 25 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20180125_blog-post_25.html/</guid>
<description>從 中華民國軟體自由協會 文章連結:http://ift.tt/2DIH7xq</description>
</item>
<item>
<title>中華民國軟體自由協會 分享相片:</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20180125_blog-post_51.html/</link>
<pubDate>Thu, 25 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20180125_blog-post_51.html/</guid>
<description>從 中華民國軟體自由協會 文章連結:http://ift.tt/2DGUD4K</description>
</item>
<item>
<title>中華民國軟體自由協會 FB 粉絲頁分享連結:Jason</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20180123_fb-jason.html/</link>
<pubDate>Tue, 23 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20180123_fb-jason.html/</guid>
<description>耀達電腦為協會的自由軟體服務廠商聯盟成員。目前徵求 MIS 工程師,工作地點在台中市。公司福利小編親眼目睹,十分羨慕!歡迎身懷絕技、有志以開源解決方</description>
</item>
<item>
<title>中華民國軟體自由協會 FB 粉絲頁分享連結:Italo</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20180121_fb-italo.html/</link>
<pubDate>Sun, 21 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20180121_fb-italo.html/</guid>
<description>3&frasl;24-3/25,全世界的開源超級週末! 在這兩天 - 自由軟體基金會在波士頓舉辦 LibrePlanet 年會 - 新加坡舉辦 FOSSASIA - 印尼舉辦 LibreOffice Conference Indonesia - 義大利 Torino 舉辦</description>
</item>
<item>
<title>中華民國軟體自由協會 分享相片:</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20180113_blog-post_13.html/</link>
<pubDate>Sat, 13 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20180113_blog-post_13.html/</guid>
<description>從 中華民國軟體自由協會 文章連結:http://ift.tt/2EDfse2</description>
</item>
<item>
<title>中華民國軟體自由協會 分享相片:</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20180113_blog-post_31.html/</link>
<pubDate>Sat, 13 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20180113_blog-post_31.html/</guid>
<description>從 中華民國軟體自由協會 文章連結:http://ift.tt/2Fv4uZz</description>
</item>
<item>
<title>中華民國軟體自由協會 分享連結:軟體自由‧開源浪潮 2018 一起發‧同樂會</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20180107_2018.html/</link>
<pubDate>Sun, 07 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20180107_2018.html/</guid>
<description>軟體自由協會與 A+A Space 共創共享空間的同樂會報名將在 10 日截止喔!不限會員,歡迎認同、想認識這群軟體自由反抗軍的朋友們一起來參加! http://ift.tt/2maot7D http://ift.tt/2maot7D</description>
</item>
<item>
<title>囧星人:贊助專案大成功,卻發現錢能載舟亦能覆舟</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20180107_content-share.html/</link>
<pubDate>Sun, 07 Jan 2018 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20180107_content-share.html/</guid>
<description>今天看到了這一篇報導: https://www.businesstoday.com.tw/article/category/154768/post/201801030030 囧星人在跨年夜開直播,說明為何結束一年來的募資活動。其中這一段我們認為是重點: 『囧星人自我要求高,一集10分鐘的說書</description>
</item>
<item>
<title>KaLUG 1712: 醫療用Linux/在家工作經驗分享 地點 橋頭糖廠博物館 糖廠咖啡</title>
<link>https://kalug.linux.org.tw/meetups/1712/</link>
<pubDate>Sat, 30 Dec 2017 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/meetups/1712/</guid>
<description>時間:2017/12/30 14:00(+0800)~17:00 地點:高雄 橋頭糖廠博物館糖廠咖啡 / 高雄市橋頭區橋南里糖廠路24號 橋頭糖廠博物館</description>
</item>
<item>
<title>從一個人的 DevOps,到一個 DevOps 的團隊</title>
<link>https://kalug.linux.org.tw/planet/chusiang/20171224_from-one-persons-devops-to-one-devops-team.html/</link>
<pubDate>Sun, 24 Dec 2017 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/chusiang/20171224_from-one-persons-devops-to-one-devops-team.html/</guid>
<description>還記得先前在「敏捷原理與團隊塑造」課堂的最後,講者 William Yeh 提到,難得自己可以待在正在導入敏捷 (Agile) 的團隊,不妨藉由年底的 IT 鐵人賽,把導入 Agile 的種種給寫</description>
</item>
<item>
<title>GNU 網站翻譯計畫</title>
<link>https://kalug.linux.org.tw/planet/slat-tw/20171213_gnu.html/</link>
<pubDate>Wed, 13 Dec 2017 00:00:00 +0000</pubDate>
<guid>https://kalug.linux.org.tw/planet/slat-tw/20171213_gnu.html/</guid>
<description>今年初我在協會中提案希望能翻譯 GNU 網站上的內容,長期目標是翻譯完自由軟體基金會出版的《Free Software, Free Society》和《Free as in Freedom (2.0)</description>