<?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>教學 &#8211; BrilliantCode.net</title>
	<atom:link href="https://www.brilliantcode.net/category/tutorial/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>教學 &#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>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>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>
		<item>
		<title>Shell 基礎 1-宣告, 變數, 函數, 確認檔案存在</title>
		<link>https://www.brilliantcode.net/1978/shell-basics-1-declare-variable-function-file-exists/</link>
				<comments>https://www.brilliantcode.net/1978/shell-basics-1-declare-variable-function-file-exists/#comments</comments>
				<pubDate>Sun, 26 Jan 2020 13:42:36 +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=1978</guid>
				<description><![CDATA[<p>因為寫了一篇介紹如何使用 shell script 來備份伺服器資料的小程式，發現如果連相關的基礎使用也放進去的話會導致篇幅過長，所以我另外寫一篇文章介紹這些基礎用法。</p>
<p>這篇文章 <a rel="nofollow" href="https://www.brilliantcode.net/1978/shell-basics-1-declare-variable-function-file-exists/">Shell 基礎 1-宣告, 變數, 函數, 確認檔案存在</a> 最早出現於 <a rel="nofollow" href="https://www.brilliantcode.net">BrilliantCode.net</a>。</p>
]]></description>
						<wfw:commentRss>https://www.brilliantcode.net/1978/shell-basics-1-declare-variable-function-file-exists/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
						<post-id xmlns="com-wordpress:feed-additions:1">1978</post-id>	</item>
		<item>
		<title>CentOS 8 安裝與設定 MySQL 8, phpMyAdmin 4.9</title>
		<link>https://www.brilliantcode.net/1966/centos-8-install-mysql-8-phpmyadmin-4-9/</link>
				<comments>https://www.brilliantcode.net/1966/centos-8-install-mysql-8-phpmyadmin-4-9/#comments</comments>
				<pubDate>Sat, 25 Jan 2020 09:13:59 +0000</pubDate>
		<dc:creator><![CDATA[Andy Wang]]></dc:creator>
				<category><![CDATA[CentOS]]></category>
		<category><![CDATA[教學]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[phpMyAdmin]]></category>

		<guid isPermaLink="false">https://www.brilliantcode.net/?p=1966</guid>
				<description><![CDATA[<p>MySQL 8 具有更快的速度與穩定性，據說在許多項目的效能又勝過孿生兄弟 MariaDB，事實上這兩個孿生兄弟軟體的表現都很優秀。總之，本文就是要介紹該如何在 CentOS 8 上完成 MySQL 8、phpMyAdmin 4.9的安裝與基本設定。值得注意的是，請先將伺服器的 PHP 和 網站伺服器(Apache or Nginx或其他) 都安裝完成，才有辦法測試 phpMyAdmin。</p>
<p>這篇文章 <a rel="nofollow" href="https://www.brilliantcode.net/1966/centos-8-install-mysql-8-phpmyadmin-4-9/">CentOS 8 安裝與設定 MySQL 8, phpMyAdmin 4.9</a> 最早出現於 <a rel="nofollow" href="https://www.brilliantcode.net">BrilliantCode.net</a>。</p>
]]></description>
						<wfw:commentRss>https://www.brilliantcode.net/1966/centos-8-install-mysql-8-phpmyadmin-4-9/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
						<post-id xmlns="com-wordpress:feed-additions:1">1966</post-id>	</item>
		<item>
		<title>CentOS 8 Apache 2.4, PHP7.3 安裝與設定</title>
		<link>https://www.brilliantcode.net/1955/centos-8-apache24-php73-installation-settings/</link>
				<comments>https://www.brilliantcode.net/1955/centos-8-apache24-php73-installation-settings/#comments</comments>
				<pubDate>Thu, 23 Jan 2020 16:28:53 +0000</pubDate>
		<dc:creator><![CDATA[Andy Wang]]></dc:creator>
				<category><![CDATA[CentOS]]></category>
		<category><![CDATA[教學]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[PHP-FPM]]></category>
		<category><![CDATA[SELinux]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">https://www.brilliantcode.net/?p=1955</guid>
				<description><![CDATA[<p>本文章除了會介紹該怎麼正確的安裝 Apache 2.4、PHP7.3 與 php-fpm 服務簡易操作，以及符合 SELinux 規則的網站根目錄權限設定方式。</p>
<p>這篇文章 <a rel="nofollow" href="https://www.brilliantcode.net/1955/centos-8-apache24-php73-installation-settings/">CentOS 8 Apache 2.4, PHP7.3 安裝與設定</a> 最早出現於 <a rel="nofollow" href="https://www.brilliantcode.net">BrilliantCode.net</a>。</p>
]]></description>
						<wfw:commentRss>https://www.brilliantcode.net/1955/centos-8-apache24-php73-installation-settings/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
						<post-id xmlns="com-wordpress:feed-additions:1">1955</post-id>	</item>
	</channel>
</rss>
