<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title>ZerUniverse</title>
		<description>On the way</description>
		<link>https://blog.zeyu.me</link>
		<atom:link href="https://blog.zeyu.me/feed.xml" rel="self" type="application/rss+xml" />
		<generator>Jekyll</generator>
		<language>zh-CN</language>
		<ttl>600</ttl>
		<lastBuildDate>Wed, 20 May 2026 03:41:05 +0000</lastBuildDate>
		
			<item>
				<title>How to thoroughly erase a computer</title>
				
					<dc:creator>ZerUniverse</dc:creator>
				
				
					<description>&lt;p&gt;Erasing a computer or a hard disk is essential sometimes such as selling your used computer or safely throwing your old hard drives... (Click to read more)&lt;/p&gt;</description>
				
				<pubDate>Fri, 23 Oct 2015 12:00:00 +0000</pubDate>
				<link>https://blog.zeyu.me/2015-10-23/how-to-thoroughly-erase-a-computer/</link>
				<guid isPermaLink="true">https://blog.zeyu.me/2015-10-23/how-to-thoroughly-erase-a-computer/</guid>
			</item>
		
			<item>
				<title>Install dwm - dynamic window manager with Chinese environment</title>
				
					<dc:creator>ZerUniverse</dc:creator>
				
				
					<description>&lt;p&gt;DWM is a simple wondow manager. Since I only need terminal and browser in most cases. Dwm would be a better choice for me than Gnome... (Click to read more)&lt;/p&gt;</description>
				
				<pubDate>Tue, 20 Oct 2015 12:00:00 +0000</pubDate>
				<link>https://blog.zeyu.me/2015-10-20/install-dwm/</link>
				<guid isPermaLink="true">https://blog.zeyu.me/2015-10-20/install-dwm/</guid>
			</item>
		
			<item>
				<title>Install Arch Linux on Thinkpad T440 with Windows 10</title>
				
					<dc:creator>ZerUniverse</dc:creator>
				
				
					<description>&lt;p&gt;I usually use BIOS for installing Linux system. However, on this T440, a Windows is already installed in UEFI boot mode and I want to keep it. Thus, I decided to try installing Arch on UEFI mode. And actually, it turned out to be easier to use UEFI boot mode... (Click to read more)&lt;/p&gt;</description>
				
				<pubDate>Tue, 20 Oct 2015 11:00:00 +0000</pubDate>
				<link>https://blog.zeyu.me/2015-10-20/install-arch-linux-on-thinkpad-t440-with-windows-10/</link>
				<guid isPermaLink="true">https://blog.zeyu.me/2015-10-20/install-arch-linux-on-thinkpad-t440-with-windows-10/</guid>
			</item>
		
			<item>
				<title>Apply a Free SSL Certificate and Make it Work</title>
				
					<dc:creator>ZerUniverse</dc:creator>
				
				
					<description>&lt;p&gt;I Just found that my SSL certificate for this domain expires soon, so I applied a new one from StartSSL today. Currently, StartSSL is the only website offering free SSL certificates which are trusted by most web browsers. It’s not a good idea to sign a self-signed certificate because web browsers will tell your visitors the website they try to visit is dangerous (like the following graph), which is extremely unfriendly... (Click to read more)&lt;/p&gt;</description>
				
				<pubDate>Fri, 22 May 2015 11:00:00 +0000</pubDate>
				<link>https://blog.zeyu.me/2015-05-22/apply-a-free-ssl-certificate-and-make-it-work/</link>
				<guid isPermaLink="true">https://blog.zeyu.me/2015-05-22/apply-a-free-ssl-certificate-and-make-it-work/</guid>
			</item>
		
			<item>
				<title>Recover Deleted File in Linux</title>
				
					<dc:creator>ZerUniverse</dc:creator>
				
				
					<description>&lt;p&gt;I still clearly remembered once I mistyped &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;mv&lt;/code&gt; as &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;rm&lt;/code&gt; and I deleted my assignment which takes me an entire weekend to write. That time, I wanted to execute the command: &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;mv xxx.c src/xxx.c&lt;/code&gt; (I wanted to put all source code in &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;src&lt;/code&gt; folder) but what I really typed in the terminal was: &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;rm xxx.c src/xxx.c&lt;/code&gt;. Right after I pressed the enter key, I realized that was a disaster. But it was already too late (though &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;src/xxx.c&lt;/code&gt; doesn’t exist, &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;xxx.c&lt;/code&gt; will be deleted anyway if that command executes). Fortunately, I recovered it finally but it took much more time than that of recovering a file in Microsoft Windows... (Click to read more)&lt;/p&gt;</description>
				
				<pubDate>Sun, 10 May 2015 11:00:00 +0000</pubDate>
				<link>https://blog.zeyu.me/2015-05-10/recover-deleted-file-in-linux/</link>
				<guid isPermaLink="true">https://blog.zeyu.me/2015-05-10/recover-deleted-file-in-linux/</guid>
			</item>
		
			<item>
				<title>Add Swap in CentOS</title>
				
					<dc:creator>ZerUniverse</dc:creator>
				
				
					<description>&lt;p&gt;Today when I tried to compile an opensource software in my DigitalOcean VPS, I encountered a weird problem: every time when I &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;make&lt;/code&gt; it, the command ends with error message &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Killed&lt;/code&gt;. However, I didn’t press &lt;em&gt;CTRL+C&lt;/em&gt; all the time. Then I keyed in command &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;top&lt;/code&gt; and I saw &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;gcc&lt;/code&gt; used up my memory! So I decided to add a swap file to enlarge my memory... (Click to read more)&lt;/p&gt;</description>
				
				<pubDate>Sat, 09 May 2015 11:00:00 +0000</pubDate>
				<link>https://blog.zeyu.me/2015-05-09/add-swap-in-centos/</link>
				<guid isPermaLink="true">https://blog.zeyu.me/2015-05-09/add-swap-in-centos/</guid>
			</item>
		
			<item>
				<title>Use PDO to Avoid SQL Injection</title>
				
					<dc:creator>ZerUniverse</dc:creator>
				
				
					<description>&lt;p&gt;Ten years ago, people talked about SQL Injection. Today, people still talked about this. The difference is, SQL Injection used to be very easy. For some old website, you might simply input... (Click to read more)&lt;/p&gt;</description>
				
				<pubDate>Wed, 06 May 2015 11:00:00 +0000</pubDate>
				<link>https://blog.zeyu.me/2015-05-06/use-pdo-to-avoid-sql-injection/</link>
				<guid isPermaLink="true">https://blog.zeyu.me/2015-05-06/use-pdo-to-avoid-sql-injection/</guid>
			</item>
		
			<item>
				<title>Web Server Security</title>
				
					<dc:creator>ZerUniverse</dc:creator>
				
				
					<description>&lt;p&gt;The security configuration of a web server is very important especially when some confidential data is stored in its database. However, I didn’t do anything to ensure the safety of my server after I installed operating system into it. So I decide to make up this today... (Click to read more)&lt;/p&gt;</description>
				
				<pubDate>Tue, 05 May 2015 11:00:00 +0000</pubDate>
				<link>https://blog.zeyu.me/2015-05-05/web-server-security/</link>
				<guid isPermaLink="true">https://blog.zeyu.me/2015-05-05/web-server-security/</guid>
			</item>
		
			<item>
				<title>Start blogging!</title>
				
					<dc:creator>ZerUniverse</dc:creator>
				
				
					<description>&lt;p&gt;I used to think there’s no need for me to write a technical blog. Because everything I need can be found in Internet. However, as time passes by, I found out that techniques/knowledge I use today are supposed to be used in the future (maybe just tomorrow). In this case, I have to search the Internet again since it’s hard for me to remember everything... (Click to read more)&lt;/p&gt;</description>
				
				<pubDate>Tue, 05 May 2015 10:00:00 +0000</pubDate>
				<link>https://blog.zeyu.me/2015-05-05/start-blogging/</link>
				<guid isPermaLink="true">https://blog.zeyu.me/2015-05-05/start-blogging/</guid>
			</item>
		
	</channel>
</rss>
