<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>Andy Wang &#8211; BrilliantCode.net</title>
	<atom:link href="https://www.brilliantcode.net/author/snow-168-flake/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.brilliantcode.net</link>
	<description></description>
	<lastBuildDate>Fri, 05 Jan 2024 10:23:10 +0000</lastBuildDate>
	<language>zh-TW</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.2.3</generator>

<image>
	<url>https://i0.wp.com/www.brilliantcode.net/wp-content/uploads/2017/06/cropped-icon-2.png?fit=32%2C32&#038;ssl=1</url>
	<title>Andy Wang &#8211; BrilliantCode.net</title>
	<link>https://www.brilliantcode.net</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">130881408</site>	<item>
		<title>1維 Barcode 長寬比參數調整</title>
		<link>https://www.brilliantcode.net/2237/1d-barcode-width-height-ratio/</link>
				<comments>https://www.brilliantcode.net/2237/1d-barcode-width-height-ratio/#respond</comments>
				<pubDate>Fri, 05 Jan 2024 10:23:10 +0000</pubDate>
		<dc:creator><![CDATA[Andy Wang]]></dc:creator>
				<category><![CDATA[應用軟體]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">https://www.brilliantcode.net/?p=2237</guid>
				<description><![CDATA[<p>使用 ZXing.Net + ReportViewer 開發標籤軟體時遇到一維條碼列印出來後很難被條碼機成功識別的問題。<br />
其原因是我們的條碼字元數是不固定的，有時候英文字比較多，有時數字比較多。這也使得系統透過固定參數(條碼寬、高)產生出來的條碼很容易出現模糊不清或間距太近導致很難被正確掃描等狀況。</p>
<p>這篇文章 <a rel="nofollow" href="https://www.brilliantcode.net/2237/1d-barcode-width-height-ratio/">1維 Barcode 長寬比參數調整</a> 最早出現於 <a rel="nofollow" href="https://www.brilliantcode.net">BrilliantCode.net</a>。</p>
]]></description>
						<wfw:commentRss>https://www.brilliantcode.net/2237/1d-barcode-width-height-ratio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
						<post-id xmlns="com-wordpress:feed-additions:1">2237</post-id>	</item>
		<item>
		<title>rsync &#8211; Linux常用指令#03</title>
		<link>https://www.brilliantcode.net/2180/backup-data-to-synology-nas-using-rsync/</link>
				<comments>https://www.brilliantcode.net/2180/backup-data-to-synology-nas-using-rsync/#respond</comments>
				<pubDate>Sun, 31 May 2020 07:23:41 +0000</pubDate>
		<dc:creator><![CDATA[Andy Wang]]></dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[教學]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[rsync]]></category>

		<guid isPermaLink="false">https://www.brilliantcode.net/?p=2180</guid>
				<description><![CDATA[<p>由於直接說明這個指令的各種功能好像太無聊，所以我想到一個例子：就是如何將 Linux 的備份檔儲存到 NAS，如果剛好手邊有 Synology NAS 的話，就可以用來存放來自 Linux 的備份檔。如果你只是打算要在同一台 Linux 上建立備份資料夾，可以從本文的 rsync 章節開始閱讀即可。</p>
<p>這篇文章 <a rel="nofollow" href="https://www.brilliantcode.net/2180/backup-data-to-synology-nas-using-rsync/">rsync &#8211; Linux常用指令#03</a> 最早出現於 <a rel="nofollow" href="https://www.brilliantcode.net">BrilliantCode.net</a>。</p>
]]></description>
						<wfw:commentRss>https://www.brilliantcode.net/2180/backup-data-to-synology-nas-using-rsync/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
						<post-id xmlns="com-wordpress:feed-additions:1">2180</post-id>	</item>
		<item>
		<title>Shell 基礎 2-判斷指令執行成功</title>
		<link>https://www.brilliantcode.net/2166/shell-script-how-to-do-things-after-command-finished/</link>
				<comments>https://www.brilliantcode.net/2166/shell-script-how-to-do-things-after-command-finished/#respond</comments>
				<pubDate>Sat, 23 May 2020 16:48:10 +0000</pubDate>
		<dc:creator><![CDATA[Andy Wang]]></dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[教學]]></category>
		<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">https://www.brilliantcode.net/?p=2166</guid>
				<description><![CDATA[<p>通常使用 Shell script 會需要判斷一些指令的執行結果，並將執行結果列印至 log 記錄起來，或是做出相對應的處理。本文在此列出 2 種可以達成此目標的語法。</p>
<p>這篇文章 <a rel="nofollow" href="https://www.brilliantcode.net/2166/shell-script-how-to-do-things-after-command-finished/">Shell 基礎 2-判斷指令執行成功</a> 最早出現於 <a rel="nofollow" href="https://www.brilliantcode.net">BrilliantCode.net</a>。</p>
]]></description>
						<wfw:commentRss>https://www.brilliantcode.net/2166/shell-script-how-to-do-things-after-command-finished/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
						<post-id xmlns="com-wordpress:feed-additions:1">2166</post-id>	</item>
		<item>
		<title>Apache進階設定(2)-KeepAlive</title>
		<link>https://www.brilliantcode.net/2135/apache-advance-settings-keepalive/</link>
				<comments>https://www.brilliantcode.net/2135/apache-advance-settings-keepalive/#respond</comments>
				<pubDate>Sat, 18 Apr 2020 12:23:28 +0000</pubDate>
		<dc:creator><![CDATA[Andy Wang]]></dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[教學]]></category>

		<guid isPermaLink="false">https://www.brilliantcode.net/?p=2135</guid>
				<description><![CDATA[<p>KeepAlive設定值可以增進Apache效能。本文將會介紹3種設定值：KeepAlive, KeepAliveTimeout, MaxKeepAliveRequests。若伺服器記憶體相當稀少，建議可以將此功能關閉以節省記憶體被佔用的情況發生。</p>
<p>這篇文章 <a rel="nofollow" href="https://www.brilliantcode.net/2135/apache-advance-settings-keepalive/">Apache進階設定(2)-KeepAlive</a> 最早出現於 <a rel="nofollow" href="https://www.brilliantcode.net">BrilliantCode.net</a>。</p>
]]></description>
						<wfw:commentRss>https://www.brilliantcode.net/2135/apache-advance-settings-keepalive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
						<post-id xmlns="com-wordpress:feed-additions:1">2135</post-id>	</item>
		<item>
		<title>MySQL #01 binary logs 設定與屬性</title>
		<link>https://www.brilliantcode.net/2097/mysql-01-binary-logs-settings-attributes/</link>
				<comments>https://www.brilliantcode.net/2097/mysql-01-binary-logs-settings-attributes/#comments</comments>
				<pubDate>Sat, 04 Apr 2020 17:50:58 +0000</pubDate>
		<dc:creator><![CDATA[Andy Wang]]></dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[教學]]></category>
		<category><![CDATA[MySQL Event]]></category>

		<guid isPermaLink="false">https://www.brilliantcode.net/?p=2097</guid>
				<description><![CDATA[<p>無意間忽略 MySQL Binary Log 相關設定可能會造成很嚴重的問題，而這包括資料庫增長速度異常。所以在本文中將會介紹一些跟 Binary Log 相關的設定、以及如何建立可以自動刪除 binary log 的 MySQL Event。本文提供三種方法解決 Binary log 佔據過多空間的問題，各方法之間皆有不同的用途與特色，只有使用情境是否適合而已。</p>
<p>這篇文章 <a rel="nofollow" href="https://www.brilliantcode.net/2097/mysql-01-binary-logs-settings-attributes/">MySQL #01 binary logs 設定與屬性</a> 最早出現於 <a rel="nofollow" href="https://www.brilliantcode.net">BrilliantCode.net</a>。</p>
]]></description>
						<wfw:commentRss>https://www.brilliantcode.net/2097/mysql-01-binary-logs-settings-attributes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
						<post-id xmlns="com-wordpress:feed-additions:1">2097</post-id>	</item>
		<item>
		<title>WordPress 不斷重新導向</title>
		<link>https://www.brilliantcode.net/2078/wordpress-too-many-redirect/</link>
				<comments>https://www.brilliantcode.net/2078/wordpress-too-many-redirect/#respond</comments>
				<pubDate>Tue, 31 Mar 2020 13:33:43 +0000</pubDate>
		<dc:creator><![CDATA[Andy Wang]]></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[SSL]]></category>

		<guid isPermaLink="false">https://www.brilliantcode.net/?p=2078</guid>
				<description><![CDATA[<p>這個問題我之前有遇過幾次，通常是更改 Cloudflare 設定時會碰到，但有一次碰到完全無解的情況。於是透過在網路上查找問題的過程中，找到了這個解法，提供給有此問題的人參考看看。</p>
<p>這篇文章 <a rel="nofollow" href="https://www.brilliantcode.net/2078/wordpress-too-many-redirect/">WordPress 不斷重新導向</a> 最早出現於 <a rel="nofollow" href="https://www.brilliantcode.net">BrilliantCode.net</a>。</p>
]]></description>
						<wfw:commentRss>https://www.brilliantcode.net/2078/wordpress-too-many-redirect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
						<post-id xmlns="com-wordpress:feed-additions:1">2078</post-id>	</item>
		<item>
		<title>WordPress 資料庫大小猛增</title>
		<link>https://www.brilliantcode.net/2070/wordpress-database-size-too-large/</link>
				<comments>https://www.brilliantcode.net/2070/wordpress-database-size-too-large/#comments</comments>
				<pubDate>Mon, 30 Mar 2020 18:12:19 +0000</pubDate>
		<dc:creator><![CDATA[Andy Wang]]></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">https://www.brilliantcode.net/?p=2070</guid>
				<description><![CDATA[<p>第一次遇到這種詭異的事情，不過也確實需要另外花時間深究 Wordpress 到底何德何能可以把 160GB 的硬碟容量撐爆。本文將會介紹兩種檢查 MySQL 資料表容量的做法以及如何使用 plugin 輕鬆解決此問題。</p>
<p>這篇文章 <a rel="nofollow" href="https://www.brilliantcode.net/2070/wordpress-database-size-too-large/">WordPress 資料庫大小猛增</a> 最早出現於 <a rel="nofollow" href="https://www.brilliantcode.net">BrilliantCode.net</a>。</p>
]]></description>
						<wfw:commentRss>https://www.brilliantcode.net/2070/wordpress-database-size-too-large/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
						<post-id xmlns="com-wordpress:feed-additions:1">2070</post-id>	</item>
		<item>
		<title>CentOS 8 架站教學彙整</title>
		<link>https://www.brilliantcode.net/2030/centos-8-installation-settings/</link>
				<comments>https://www.brilliantcode.net/2030/centos-8-installation-settings/#respond</comments>
				<pubDate>Tue, 10 Mar 2020 18:18:03 +0000</pubDate>
		<dc:creator><![CDATA[Andy Wang]]></dc:creator>
				<category><![CDATA[CentOS]]></category>
		<category><![CDATA[教學]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[build web server]]></category>
		<category><![CDATA[FTP Server]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[SSL]]></category>

		<guid isPermaLink="false">https://www.brilliantcode.net/?p=2030</guid>
				<description><![CDATA[<p>官方說 CentOS 8 會支援更新到 2029 年，所以最近需要架站的話，建議就直上版本 8 吧！這是最省事實惠的選擇。以下是整理我們發表過關於 CentOS 8 設定與安裝步驟的文章，希望能幫助到有需要的人。</p>
<p>這篇文章 <a rel="nofollow" href="https://www.brilliantcode.net/2030/centos-8-installation-settings/">CentOS 8 架站教學彙整</a> 最早出現於 <a rel="nofollow" href="https://www.brilliantcode.net">BrilliantCode.net</a>。</p>
]]></description>
						<wfw:commentRss>https://www.brilliantcode.net/2030/centos-8-installation-settings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
						<post-id xmlns="com-wordpress:feed-additions:1">2030</post-id>	</item>
		<item>
		<title>WordPress: SSL Failed: WordPress 回報無 SSL 支援</title>
		<link>https://www.brilliantcode.net/2032/wordpress-ssl-failed-reports-no-ssl-supported/</link>
				<comments>https://www.brilliantcode.net/2032/wordpress-ssl-failed-reports-no-ssl-supported/#respond</comments>
				<pubDate>Thu, 06 Feb 2020 16:55:05 +0000</pubDate>
		<dc:creator><![CDATA[Andy Wang]]></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[SELinux]]></category>

		<guid isPermaLink="false">https://www.brilliantcode.net/?p=2032</guid>
				<description><![CDATA[<p>如果是 CentOS 或 Fedora 系統遇到使用Jetpack 時顯示這個錯誤『SSL Failed: WordPress 回報無 SSL 支援』，那你找對地方囉。</p>
<p>這篇文章 <a rel="nofollow" href="https://www.brilliantcode.net/2032/wordpress-ssl-failed-reports-no-ssl-supported/">WordPress: SSL Failed: WordPress 回報無 SSL 支援</a> 最早出現於 <a rel="nofollow" href="https://www.brilliantcode.net">BrilliantCode.net</a>。</p>
]]></description>
						<wfw:commentRss>https://www.brilliantcode.net/2032/wordpress-ssl-failed-reports-no-ssl-supported/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
						<post-id xmlns="com-wordpress:feed-additions:1">2032</post-id>	</item>
		<item>
		<title>Shell 備份 網站資料, config, 資料庫</title>
		<link>https://www.brilliantcode.net/1974/use-shell-script-backup-website-config-database/</link>
				<comments>https://www.brilliantcode.net/1974/use-shell-script-backup-website-config-database/#comments</comments>
				<pubDate>Sun, 26 Jan 2020 18:00:32 +0000</pubDate>
		<dc:creator><![CDATA[Andy Wang]]></dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[教學]]></category>
		<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">https://www.brilliantcode.net/?p=1974</guid>
				<description><![CDATA[<p>本篇來介紹備份伺服器的重要資料，在 Linux 備份資料有很多種方法可以達成，本文將著重於使用 Shell script 備份網站資料、資料庫及重要設定檔的流程與程式步驟進行說明。</p>
<p>這篇文章 <a rel="nofollow" href="https://www.brilliantcode.net/1974/use-shell-script-backup-website-config-database/">Shell 備份 網站資料, config, 資料庫</a> 最早出現於 <a rel="nofollow" href="https://www.brilliantcode.net">BrilliantCode.net</a>。</p>
]]></description>
						<wfw:commentRss>https://www.brilliantcode.net/1974/use-shell-script-backup-website-config-database/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
						<post-id xmlns="com-wordpress:feed-additions:1">1974</post-id>	</item>
	</channel>
</rss>
