<?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/"
	>

<channel>
	<title>Random | Paul's Logs</title>
	<atom:link href="https://logs.paulooi.com/category/random-stuff/feed" rel="self" type="application/rss+xml" />
	<link>https://logs.paulooi.com</link>
	<description>Logging Troubles</description>
	<lastBuildDate>Fri, 08 May 2026 12:35:37 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>iptables on Debian</title>
		<link>https://logs.paulooi.com/iptables-on-debian.php?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=iptables-on-debian</link>
		
		<dc:creator><![CDATA[Paul Ooi]]></dc:creator>
		<pubDate>Fri, 08 May 2026 12:35:37 +0000</pubDate>
				<category><![CDATA[Random]]></category>
		<guid isPermaLink="false">https://logs.paulooi.com/?p=1847</guid>

					<description><![CDATA[<p>Recently decided to switch over to Debian for some websites. Making another distro on my list after Alma, Rocky and FreeBSD. Reason I chosen iptables because I have a repo keeping my generic for all my machines. Here is how...</p>
The post <a href="https://logs.paulooi.com/iptables-on-debian.php">iptables on Debian</a> first appeared on <a href="https://logs.paulooi.com">Paul's Logs</a>.]]></description>
										<content:encoded><![CDATA[<p>Recently decided to switch over to Debian for some websites. Making another distro on my list after Alma, Rocky and FreeBSD. </p>



<p>Reason I chosen iptables because I have a repo keeping my generic for all my machines. </p>



<p>Here is how to make iptables work on Debian. First, get apt repo update and install iptables-persistent. Persistent making the rules permanently there</p>



<pre class="wp-block-code"><code>apt update &amp;&amp; apt install iptables-persistent </code></pre>



<p>Once it&#8217;s install, it will automatically start <strong>without</strong> a default rules, unlike rocky/alma, it comes with the default rules and enable port 22 (ssh)</p>



<p>Here is the rules you can refer to as a start in /etc/iptables/rules.v4</p>



<pre class="wp-block-code"><code>*filter
:INPUT ACCEPT &#91;0:0]
:FORWARD ACCEPT &#91;0:0]
:OUTPUT ACCEPT &#91;0:0]
-A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
-A INPUT -p icmp -j ACCEPT
-A INPUT -i lo -j ACCEPT

## Free flow for VPN IP
-A INPUT -p tcp -m state --state NEW -s x.x.x.x/32 -m tcp -j ACCEPT

## Only allow 80 and 443
-A INPUT -p tcp -m state --state NEW -m tcp --dport 80 -j ACCEPT
-A INPUT -p tcp -m state --state NEW -m tcp --dport 443 -j ACCEPT
-A INPUT -p tcp -m state --state NEW -m tcp --dport 22 -j ACCEPT

-A INPUT -j REJECT --reject-with icmp-host-prohibited
-A FORWARD -j REJECT --reject-with icmp-host-prohibited
COMMIT</code></pre>



<p>That will be the same iptables&#8217; rules for ipv4. Restart the services </p>



<pre class="wp-block-code"><code># systemctl restart iptables </code></pre>



<p>That&#8217;s the basic setup of iptables on Debian with persistent rules.</p>



<p></p>The post <a href="https://logs.paulooi.com/iptables-on-debian.php">iptables on Debian</a> first appeared on <a href="https://logs.paulooi.com">Paul's Logs</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Proxmox Cluster Quorum Error</title>
		<link>https://logs.paulooi.com/proxmox-cluster-quorum-error.php?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=proxmox-cluster-quorum-error</link>
		
		<dc:creator><![CDATA[Paul Ooi]]></dc:creator>
		<pubDate>Sun, 13 Apr 2025 09:30:38 +0000</pubDate>
				<category><![CDATA[Random]]></category>
		<guid isPermaLink="false">https://logs.paulooi.com/?p=1833</guid>

					<description><![CDATA[<p>One of my promox cluster is broken, and the one host has been dead for quiet some time. Whenever I restart my Proxmox host, it cannot boot up the VM and throwing the error &#8220;proxmox cluster no quorum&#8221; It was...</p>
The post <a href="https://logs.paulooi.com/proxmox-cluster-quorum-error.php">Proxmox Cluster Quorum Error</a> first appeared on <a href="https://logs.paulooi.com">Paul's Logs</a>.]]></description>
										<content:encoded><![CDATA[<p>One of my promox cluster is broken, and the one host has been dead for quiet  some time.</p>



<p>Whenever I restart my Proxmox host, it cannot boot up the VM and throwing the error &#8220;proxmox cluster no quorum&#8221; </p>



<p>It was due to the quorum for a cluster required minimum of 2 hosts. You can set the quorum expect to 1 manually whenever the host boot up. </p>



<pre class="wp-block-code"><code>pvmctl expect 1</code></pre>



<p>However it cannot be hard coded, whenever you patch the proxmox machine, you are required to set the value again on order to have the VMs running. </p>



<p>I&#8217;ve decided to find a permanent fix, to remove the host from the cluster. </p>



<p>Here are the steps to do it. </p>



<pre class="wp-block-code"><code>systemctl stop pve-cluster corosync
pmxcfs -l
rm /etc/corosync/*
rm /etc/pve/corosync.conf
killall pmxcfs
systemctl start pve-cluster</code></pre>



<p>Thankfully, the info was shared in one of the <a href="https://forum.proxmox.com/threads/no-quorum-error.113459/#post-490150" target="_blank" rel="noopener" title="">Promox forum threads</a>. </p>



<p>Now, I can patch the proxmox machine and reboot it, sipping coffee and wait for the VMs slowly boot up <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>The post <a href="https://logs.paulooi.com/proxmox-cluster-quorum-error.php">Proxmox Cluster Quorum Error</a> first appeared on <a href="https://logs.paulooi.com">Paul's Logs</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Thunderbird Unified Folder Some Account Inbox Missing</title>
		<link>https://logs.paulooi.com/thunderbird-unified-folder-some-account-inbox-missing.php?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=thunderbird-unified-folder-some-account-inbox-missing</link>
		
		<dc:creator><![CDATA[Paul Ooi]]></dc:creator>
		<pubDate>Sun, 26 Nov 2023 14:36:27 +0000</pubDate>
				<category><![CDATA[Random]]></category>
		<guid isPermaLink="false">https://logs.paulooi.com/?p=1827</guid>

					<description><![CDATA[<p>Recently I&#8217;ve completed a &#8220;clean&#8221; migration to latest Thunderbird Supernova 115.5.0 Previously the auto update (Check for update on Thunderbird) didn&#8217;t work well for me. I&#8217;ve had issues like calendar invite missing, attachment cannot view in the email, sender name...</p>
The post <a href="https://logs.paulooi.com/thunderbird-unified-folder-some-account-inbox-missing.php">Thunderbird Unified Folder Some Account Inbox Missing</a> first appeared on <a href="https://logs.paulooi.com">Paul's Logs</a>.]]></description>
										<content:encoded><![CDATA[<p>Recently I&#8217;ve completed a &#8220;clean&#8221; migration to latest Thunderbird Supernova 115.5.0 </p>



<p>Previously the auto update (Check for update on Thunderbird) didn&#8217;t work well for me. I&#8217;ve had issues like calendar invite missing, attachment cannot view in the email, sender name didn&#8217;t display correctly in an email view. </p>



<p>After a &#8220;clean&#8221; migration, I noticed it also doesn&#8217;t have performance issue. i.e previously loading email was pretty slow, and it took almost a second to load an email. </p>



<p>But, I&#8217;ve have the issue of the Unified didn&#8217;t display all inbox folders for my 12 email accounts, only 10 inboxes are showing on Unified Inbox folder. </p>



<p>This <a href="https://support.mozilla.org/en-US/questions/1300055" target="_blank" rel="noopener" title="">support forum</a> in Mozilla resolve my issue. </p>



<p>All you need to do is close your Thunderbird (in my case it&#8217;s Thunderbird running on MacOS), and go to your profile folder, usually it&#8217;s in your Library/Thunerbird/Profile folder. </p>



<p>In your profile folder, delete the file <strong>virtualFolders.dat. </strong></p>



<p>Navigate to <strong>Mail</strong> folder, and delete the folder <strong>smart mailboxes.</strong></p>



<p>Launch Thunderbird again, and now you should be seeing all the inboxes in Unified Folder view option. </p>The post <a href="https://logs.paulooi.com/thunderbird-unified-folder-some-account-inbox-missing.php">Thunderbird Unified Folder Some Account Inbox Missing</a> first appeared on <a href="https://logs.paulooi.com">Paul's Logs</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>This Site is 18 Years Old</title>
		<link>https://logs.paulooi.com/this-site-is-18-years-old.php?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=this-site-is-18-years-old</link>
		
		<dc:creator><![CDATA[Paul Ooi]]></dc:creator>
		<pubDate>Sun, 15 Oct 2023 13:09:32 +0000</pubDate>
				<category><![CDATA[Random]]></category>
		<guid isPermaLink="false">https://logs.paulooi.com/?p=1816</guid>

					<description><![CDATA[<p>Believe it or not, this site has been &#8220;running&#8221; for 18 years, however there were updates for at least 8 years. I think I need to get back to writing some technical notes, I&#8217;m getting old and sometimes the brain...</p>
The post <a href="https://logs.paulooi.com/this-site-is-18-years-old.php">This Site is 18 Years Old</a> first appeared on <a href="https://logs.paulooi.com">Paul's Logs</a>.]]></description>
										<content:encoded><![CDATA[<p>Believe it or not, this site has been &#8220;running&#8221; for 18 years, however there were updates for at least 8 years. I think I need to get back to writing some technical notes, I&#8217;m getting old and sometimes the brain cannot function well (especially since people say memory gets bad if you contracted COVID). </p>



<p>Things have changed quite a lot, I think there are fewer people writing or blogging. Now they do it on Youtube (Youtuber) for tutorials.  </p>



<p>Let&#8217;s see what I will start to write next <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /> </p>



<p>p/s: I don&#8217;t think people visit this site either, if you do, please drop a message and say hi. </p>



<p></p>The post <a href="https://logs.paulooi.com/this-site-is-18-years-old.php">This Site is 18 Years Old</a> first appeared on <a href="https://logs.paulooi.com">Paul's Logs</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How to Rsync from Remote Server to Synology</title>
		<link>https://logs.paulooi.com/how-to-rsync-from-remote-server-to-synology.php?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-rsync-from-remote-server-to-synology</link>
					<comments>https://logs.paulooi.com/how-to-rsync-from-remote-server-to-synology.php#comments</comments>
		
		<dc:creator><![CDATA[Paul Ooi]]></dc:creator>
		<pubDate>Tue, 21 Jul 2015 04:33:33 +0000</pubDate>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[Systems]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[synology]]></category>
		<category><![CDATA[sysadmin]]></category>
		<guid isPermaLink="false">http://systems.takizo.com/?p=1757</guid>

					<description><![CDATA[<p>I hava a synology at home, mainly use to store important files, and realize beside have a backup of my server files on dropbox, may be it can have another copy in Synology as well. I explored the possibility of...</p>
The post <a href="https://logs.paulooi.com/how-to-rsync-from-remote-server-to-synology.php">How to Rsync from Remote Server to Synology</a> first appeared on <a href="https://logs.paulooi.com">Paul's Logs</a>.]]></description>
										<content:encoded><![CDATA[<p>I hava a synology at home, mainly use to store important files, and realize beside have a backup of my server files on dropbox, may be it can have another copy in Synology as well. I explored the possibility of rsync the backup either on dropbox or server into synology, and&#8230; it works!</p>
<p>Here is what you need to prepare before proceed with the backup. </p>
<p>1. Create a directory for backup. i.e folder name of ServerBackup. Go to &#8220;Control Panel&#8221; -> &#8220;Shared Folder&#8221;. </p>
<p>2. Enable SSH on Synology. Go to &#8220;Control Panel&#8221; -> &#8220;Terminal &#038; SNMP&#8221; -> &#8220;Enable SSH Service&#8221;. If you option to change the SSH port or not <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p><a href="https://logs.paulooi.com/wp-content/uploads/2015/07/synology-backup-enablessh.png"><img decoding="async" src="https://logs.paulooi.com/wp-content/uploads/2015/07/synology-backup-enablessh-300x140.png" alt="synology-backup-enablessh" width="300" height="140" class="aligncenter size-medium wp-image-1758" srcset="https://logs.paulooi.com/wp-content/uploads/2015/07/synology-backup-enablessh-300x140.png 300w, https://logs.paulooi.com/wp-content/uploads/2015/07/synology-backup-enablessh.png 594w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p>3. Try to ssh into Synology with username &#8220;root&#8221;. The root password is the same with &#8220;admin&#8221;. </p>
<p>If are you done, let&#8217;s do it. </p>
<p><strong>Generate SSH Key</strong></p>
<p>You wouldn&#8217;t want to key in password whenever want to access to the server to grab the file. Generate a &#8220;custom&#8221; ssh key which will be used for synology. Remember, please do not set the password. Give you ssh file a &#8220;special name&#8221;, DO NOT use the default. I.e we used synobackup, there are 2 files will be generate </p>
<p>1. synobackup &#8211; This is the private key files<br />
2. synobackup.pub &#8211; This is the public key which will be placed on the remote server. </p>
<p><a href="https://logs.paulooi.com/wp-content/uploads/2015/07/synology-backup-sshkey.png"><img fetchpriority="high" decoding="async" src="https://logs.paulooi.com/wp-content/uploads/2015/07/synology-backup-sshkey-300x231.png" alt="synology-backup-sshkey" width="300" height="231" class="aligncenter size-medium wp-image-1759" srcset="https://logs.paulooi.com/wp-content/uploads/2015/07/synology-backup-sshkey-300x231.png 300w, https://logs.paulooi.com/wp-content/uploads/2015/07/synology-backup-sshkey.png 537w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p>Next, we will copy this 2 files into Synology folder ServerBackup. We create a folder name &#8220;scripts&#8221;, and the file will be placed in synology</p>
<p>1. /Volume/ServerBackup/scripts/synobackup<br />
2. /Volume/ServerBackup/scripts/synobackup.pub</p>
<p>We will copy the key on synobackup.pub into remote server&#8217;s ssh directory &#8220;.ssh/authorized_keys&#8221; for the user&#8217;s home directory where you will login with the username later. i.e &#8220;/home/takizo/.ssh/authorized_keys&#8221;</p>
<p><a href="https://logs.paulooi.com/wp-content/uploads/2015/07/synology-backup-homeauthorizedkey.png"><img decoding="async" src="https://logs.paulooi.com/wp-content/uploads/2015/07/synology-backup-homeauthorizedkey-300x101.png" alt="synology-backup-homeauthorizedkey" width="300" height="101" class="aligncenter size-medium wp-image-1760" srcset="https://logs.paulooi.com/wp-content/uploads/2015/07/synology-backup-homeauthorizedkey-300x101.png 300w, https://logs.paulooi.com/wp-content/uploads/2015/07/synology-backup-homeauthorizedkey.png 453w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p>Ok.. we are done with ssh thingy. Let&#8217;s write some script. </p>
<p><strong>Simple Scripting</strong></p>
<p>Next, we will do some scripting as below. </p>
<pre>
#!/bin/ash

#This is the private key
PRIVKEY="/volume/ServerBackup/scripts/snology"

#This is the folder you would like to backup from
HOSTFOLDER=/backup/*

#This is the folder you would like to backup to Synology
DESTFOLDER="/volume/ServerBackup/database/server-godzilla/"

#We will be using rsync in synology, this will do the rync! 
/usr/syno/bin/rsync -avz -e "ssh -p7777 -i $PRIVKEY" takizo@godzilla.takizo.com:$HOSTFOLDER $DESTFOLDER
</pre>
<p>Save the script above into your Synology backup folder which created earlier &#8220;/volume/ServerBackup/scripts/database.backup.sh&#8221; </p>
<p>Please take note that the remote folder is define by yourself. We are done with the script, it&#8217;s time to Execute it! </p>
<p><strong>Configure the Backup Script</strong></p>
<p>Due to it&#8217;s the first time access to the remote server, you need to manually run the script in shell to accept the SSH session. We are almost there. </p>
<p>SSH to Synology server </p>
<pre>
ssh -p2222 root@your_synology_ip
mydisk> cd /volume/ServerBackup/scripts
mydisk> ./database.backup.sh
The authenticity of host '[godzilla.takizo.com]:2222 ([123.456.123.111]:2222)' can't be established.
ECDSA key fingerprint is f7:9b:d6:92:7b:33.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '[godzilla.takizo.com]:2222,[123.456.123.111]:2222' (ECDSA) to the list of known hosts.
receiving incremental file list
20150721122502.dbbackup.tar.gz

sent 42 bytes  received 18901016 bytes  1021678.81 bytes/sec
total size is 18997573  speedup is 1.01
</pre>
<p>The important part for this action is this line</p>
<pre>
Warning: Permanently added '[godzilla.takizo.com]:2222,[123.456.123.111]:2222' (ECDSA) to the list of known hosts.
</pre>
<p>This will add the host into /root/.ssh/known_hosts, when the script is run next time, it will not prompt the message again.</p>
<p><strong>Setup the Task on Synology</strong></p>
<p>Since the script is working perfectly fine. The last step is add it into Synology&#8217;s Task Schedule. </p>
<p>1. Go to &#8220;Control Panel&#8221; -> &#8220;Task Schedule&#8221;<br />
2. Create &#8220;User defined-script&#8221;<br />
3. Give a meaningful name for your &#8220;Task&#8221;<br />
4. User choose &#8220;root&#8221; or any user you prefer<br />
5. User-defined script: The script you created earlier inside Synology folder, &#8220;/volume/ServerBackup/scripts/database.backup.sh&#8221;<br />
6. Put up a schedule for this, how often it should run and at what time. </p>
<p>After the schedule has been created, try run it again and check is the files transfer into your Synology folder (if you don&#8217;t have new copy of file in the server, delete the files earlier being rsync into synology).</p>
<p>Yep, basically you have another copy of backup on synology! Enjoy backup more stuff from remote server <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>The post <a href="https://logs.paulooi.com/how-to-rsync-from-remote-server-to-synology.php">How to Rsync from Remote Server to Synology</a> first appeared on <a href="https://logs.paulooi.com">Paul's Logs</a>.]]></content:encoded>
					
					<wfw:commentRss>https://logs.paulooi.com/how-to-rsync-from-remote-server-to-synology.php/feed</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>Are you a Programmer and Preparing for an Interview?</title>
		<link>https://logs.paulooi.com/are-you-a-programmer-and-preparing-for-an-interview.php?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=are-you-a-programmer-and-preparing-for-an-interview</link>
		
		<dc:creator><![CDATA[Paul Ooi]]></dc:creator>
		<pubDate>Fri, 17 Jul 2015 14:12:57 +0000</pubDate>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[interview]]></category>
		<category><![CDATA[leetcode]]></category>
		<category><![CDATA[programmer]]></category>
		<category><![CDATA[whiteboard interview]]></category>
		<guid isPermaLink="false">http://systems.takizo.com/?p=1754</guid>

					<description><![CDATA[<p>Are you a programmer and preparing for an upcoming interview? Are you preparing yourself well for upcoming interview when interviewer is throwing you some Coding Question? There is a site I found interesting, it&#8217;s called LeetCode LeetCode have list of...</p>
The post <a href="https://logs.paulooi.com/are-you-a-programmer-and-preparing-for-an-interview.php">Are you a Programmer and Preparing for an Interview?</a> first appeared on <a href="https://logs.paulooi.com">Paul's Logs</a>.]]></description>
										<content:encoded><![CDATA[<p>Are you a programmer and preparing for an upcoming interview? Are you preparing yourself well for upcoming interview when interviewer is throwing you some Coding Question? There is a site I found interesting, it&#8217;s called <a href="https://leetcode.com" target="_blank">LeetCode</a></p>
<p>LeetCode have list of programming interview question for programmer to run through, well it&#8217;s not necessary for programmer, it&#8217;s good for employer to give programming question to programmer if they want to test out the programmer&#8217;s thinking skills. </p>
<p>It&#8217;s a good way to prepare yourself for a <a href="https://www.quora.com/What-are-some-good-whiteboard-based-interview-questions-for-screening-engineering-talent-at-a-startup" target="_blank">Whiteboard Interview</a>, you can try to go through the coding test and give your some confident myth. </p>
<p>Good luck. </p>The post <a href="https://logs.paulooi.com/are-you-a-programmer-and-preparing-for-an-interview.php">Are you a Programmer and Preparing for an Interview?</a> first appeared on <a href="https://logs.paulooi.com">Paul's Logs</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>What is mdworker Working On Right Now</title>
		<link>https://logs.paulooi.com/what-is-mdworker-working-on-right-now.php?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=what-is-mdworker-working-on-right-now</link>
					<comments>https://logs.paulooi.com/what-is-mdworker-working-on-right-now.php#respond</comments>
		
		<dc:creator><![CDATA[Paul Ooi]]></dc:creator>
		<pubDate>Wed, 19 Mar 2014 16:33:48 +0000</pubDate>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[Mavericks]]></category>
		<category><![CDATA[mds_stores]]></category>
		<category><![CDATA[mdworker]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[Spotlight]]></category>
		<guid isPermaLink="false">http://systems.takizo.com/?p=1662</guid>

					<description><![CDATA[<p>I just did a clean install of OSX Mavericks, after migrated important via Migration Assistant, the mdworker on OSX Mavericks is busy indexing stuff. You will see a bunch of mdworker(s) doing their work in Activity Monitor If you want...</p>
The post <a href="https://logs.paulooi.com/what-is-mdworker-working-on-right-now.php">What is mdworker Working On Right Now</a> first appeared on <a href="https://logs.paulooi.com">Paul's Logs</a>.]]></description>
										<content:encoded><![CDATA[<p>I just did a clean install of OSX Mavericks, after migrated important via Migration Assistant, the mdworker on OSX Mavericks is busy indexing stuff. </p>
<p>You will see a bunch of mdworker(s) doing their work in Activity Monitor</p>
<p><a href="https://logs.paulooi.com/wp-content/uploads/2014/03/Screen-Shot-2014-03-20-at-12.29.30-AM.png"><img loading="lazy" decoding="async" src="https://logs.paulooi.com/wp-content/uploads/2014/03/Screen-Shot-2014-03-20-at-12.29.30-AM-300x61.png" alt="Screen Shot 2014-03-20 at 12.29.30 AM" width="300" height="61" class="aligncenter size-medium wp-image-1663" srcset="https://logs.paulooi.com/wp-content/uploads/2014/03/Screen-Shot-2014-03-20-at-12.29.30-AM-300x61.png 300w, https://logs.paulooi.com/wp-content/uploads/2014/03/Screen-Shot-2014-03-20-at-12.29.30-AM.png 651w" sizes="auto, (max-width: 300px) 100vw, 300px" /></a></p>
<p>If you want to find out what are mdworker(s) working on, can try this command in the terminal </p>
<pre>
<code>
$ sudo fs_usage -w -f filesys mdworker
</code>
</pre>
<p>If you found out there are folders you don&#8217;t want Spotlight to index, can add it into Privacy tab on Spotlight&#8217;s preference. </p>
<p>Enjoy! </p>The post <a href="https://logs.paulooi.com/what-is-mdworker-working-on-right-now.php">What is mdworker Working On Right Now</a> first appeared on <a href="https://logs.paulooi.com">Paul's Logs</a>.]]></content:encoded>
					
					<wfw:commentRss>https://logs.paulooi.com/what-is-mdworker-working-on-right-now.php/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>iOS 7 Available to Public on 10th September</title>
		<link>https://logs.paulooi.com/ios-7-available-to-public-on-10th-september.php?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ios-7-available-to-public-on-10th-september</link>
					<comments>https://logs.paulooi.com/ios-7-available-to-public-on-10th-september.php#respond</comments>
		
		<dc:creator><![CDATA[Paul Ooi]]></dc:creator>
		<pubDate>Wed, 28 Aug 2013 02:09:04 +0000</pubDate>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iOS7]]></category>
		<guid isPermaLink="false">http://systems.takizo.com/?p=1578</guid>

					<description><![CDATA[<p>After news leaked of Apple&#8217;s upcoming iPhone event on September 10th, it was assumed the new iOS 7 would be announced at the same time — but now there&#8217;s proof. Today, a developer named Owen Williams received an email indicating...</p>
The post <a href="https://logs.paulooi.com/ios-7-available-to-public-on-10th-september.php">iOS 7 Available to Public on 10th September</a> first appeared on <a href="https://logs.paulooi.com">Paul's Logs</a>.]]></description>
										<content:encoded><![CDATA[<p><a href="https://logs.paulooi.com/wp-content/uploads/2013/08/takizo-ios7.jpg"><img loading="lazy" decoding="async" src="https://logs.paulooi.com/wp-content/uploads/2013/08/takizo-ios7-300x260.jpg" alt="iOS7 Available to Public on 10th September" width="300" height="260" class="aligncenter size-medium wp-image-1579" srcset="https://logs.paulooi.com/wp-content/uploads/2013/08/takizo-ios7-300x260.jpg 300w, https://logs.paulooi.com/wp-content/uploads/2013/08/takizo-ios7.jpg 817w" sizes="auto, (max-width: 300px) 100vw, 300px" /></a></p>
<p>After news leaked of Apple&#8217;s upcoming iPhone event on September 10th, it was assumed the new iOS 7 would be announced at the same time — but now there&#8217;s proof. Today, a developer named Owen Williams received an email indicating that iOS 7 would be released to the general public on the 10th, giving non-developers their first peek at the controversial operating system. The email comes from Nuance, which works closely enough with Apple to know the date in advance.</p>
<p>[News via <a href="http://j.mp/1dNAhlj" title="iOS 7 Available to Public on 10th September" target="_blank">TheVerge</a>]</p>The post <a href="https://logs.paulooi.com/ios-7-available-to-public-on-10th-september.php">iOS 7 Available to Public on 10th September</a> first appeared on <a href="https://logs.paulooi.com">Paul's Logs</a>.]]></content:encoded>
					
					<wfw:commentRss>https://logs.paulooi.com/ios-7-available-to-public-on-10th-september.php/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Blue Samsung Galaxy Tab 3 &#8211; 7.0 revealed in leaked press render</title>
		<link>https://logs.paulooi.com/blue-samsung-galaxy-tab-3-7-0-revealed-in-leaked-press-render.php?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=blue-samsung-galaxy-tab-3-7-0-revealed-in-leaked-press-render</link>
					<comments>https://logs.paulooi.com/blue-samsung-galaxy-tab-3-7-0-revealed-in-leaked-press-render.php#respond</comments>
		
		<dc:creator><![CDATA[Paul Ooi]]></dc:creator>
		<pubDate>Sun, 25 Aug 2013 13:50:29 +0000</pubDate>
				<category><![CDATA[Random]]></category>
		<guid isPermaLink="false">http://systems.takizo.com/?p=1575</guid>

					<description><![CDATA[<p>Looks like white and brown won&#8217;t be the only colors on offer for Samsung&#8217;s Galaxy Tab 3 7.0 for long. Evidently set to join those variants, @evleaks recently pushed out a purported press render of the slate clad in a...</p>
The post <a href="https://logs.paulooi.com/blue-samsung-galaxy-tab-3-7-0-revealed-in-leaked-press-render.php">Blue Samsung Galaxy Tab 3 – 7.0 revealed in leaked press render</a> first appeared on <a href="https://logs.paulooi.com">Paul's Logs</a>.]]></description>
										<content:encoded><![CDATA[<p><a href="https://logs.paulooi.com/wp-content/uploads/2013/08/takizo.blue_.galaxy.tab_.3.7.0.png"><img loading="lazy" decoding="async" src="https://logs.paulooi.com/wp-content/uploads/2013/08/takizo.blue_.galaxy.tab_.3.7.0.png" alt="Blue Galaxy Tab 3 - 7.0" width="458" height="361" class="aligncenter size-full wp-image-1576" srcset="https://logs.paulooi.com/wp-content/uploads/2013/08/takizo.blue_.galaxy.tab_.3.7.0.png 458w, https://logs.paulooi.com/wp-content/uploads/2013/08/takizo.blue_.galaxy.tab_.3.7.0-300x236.png 300w" sizes="auto, (max-width: 458px) 100vw, 458px" /></a></p>
<p>Looks like white and brown won&#8217;t be the only colors on offer for Samsung&#8217;s Galaxy Tab 3 7.0 for long. Evidently set to join those variants, @evleaks recently pushed out a purported press render of the slate clad in a deep blue. No word on when and where this version might be available</p>
<p>[via <a href="http://j.mp/1dFm3D3" target="_blank">Engadget</a>]</p>The post <a href="https://logs.paulooi.com/blue-samsung-galaxy-tab-3-7-0-revealed-in-leaked-press-render.php">Blue Samsung Galaxy Tab 3 – 7.0 revealed in leaked press render</a> first appeared on <a href="https://logs.paulooi.com">Paul's Logs</a>.]]></content:encoded>
					
					<wfw:commentRss>https://logs.paulooi.com/blue-samsung-galaxy-tab-3-7-0-revealed-in-leaked-press-render.php/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Latest iPhone 5C Photo Leaked</title>
		<link>https://logs.paulooi.com/latest-iphone-5c-photo-leaked.php?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=latest-iphone-5c-photo-leaked</link>
					<comments>https://logs.paulooi.com/latest-iphone-5c-photo-leaked.php#respond</comments>
		
		<dc:creator><![CDATA[Paul Ooi]]></dc:creator>
		<pubDate>Sun, 25 Aug 2013 13:45:24 +0000</pubDate>
				<category><![CDATA[Random]]></category>
		<guid isPermaLink="false">http://systems.takizo.com/?p=1572</guid>

					<description><![CDATA[<p>A quality control employee at Pegatron, Apple’s manufacturing partner, has published a photo on her Weibo profile (a Chinese microblogging site), which appears to be a large number of iPhone 5C units in testing mode. Engadget reports that the employee...</p>
The post <a href="https://logs.paulooi.com/latest-iphone-5c-photo-leaked.php">Latest iPhone 5C Photo Leaked</a> first appeared on <a href="https://logs.paulooi.com">Paul's Logs</a>.]]></description>
										<content:encoded><![CDATA[<p><a href="https://logs.paulooi.com/wp-content/uploads/2013/08/takizo.iphone5c.leaked.jpg"><img loading="lazy" decoding="async" src="https://logs.paulooi.com/wp-content/uploads/2013/08/takizo.iphone5c.leaked.jpg" alt="Latest iPhone5c Leaked" width="619" height="464" class="aligncenter size-full wp-image-1573" srcset="https://logs.paulooi.com/wp-content/uploads/2013/08/takizo.iphone5c.leaked.jpg 619w, https://logs.paulooi.com/wp-content/uploads/2013/08/takizo.iphone5c.leaked-300x224.jpg 300w" sizes="auto, (max-width: 619px) 100vw, 619px" /></a></p>
<p>A quality control employee at Pegatron, Apple’s manufacturing partner, has published a photo on her Weibo profile (a Chinese microblogging site), which appears to be a large number of iPhone 5C units in testing mode.</p>
<p>Engadget reports that the employee appears to have joined the quality control department in mid-July.</p>
<p>[via <a href="http://j.mp/18Th65H" target="_blank">iPhoneHacks</a>]</p>The post <a href="https://logs.paulooi.com/latest-iphone-5c-photo-leaked.php">Latest iPhone 5C Photo Leaked</a> first appeared on <a href="https://logs.paulooi.com">Paul's Logs</a>.]]></content:encoded>
					
					<wfw:commentRss>https://logs.paulooi.com/latest-iphone-5c-photo-leaked.php/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
