<?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>Tips &amp; Tricks | KC's Blog</title>
	<atom:link href="https://www.kjctech.net/category/stuff-in-general/tips-tricks/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.kjctech.net</link>
	<description></description>
	<lastBuildDate>Tue, 24 Jan 2023 18:21:04 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://i0.wp.com/www.kjctech.net/wp-content/uploads/2016/12/cropped-KC-Logo.png?fit=32%2C32&#038;ssl=1</url>
	<title>Tips &amp; Tricks | KC's Blog</title>
	<link>https://www.kjctech.net</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">24634607</site>	<item>
		<title>Fixing Unknown Collation utf8mb4_unicode_520_ci</title>
		<link>https://www.kjctech.net/fixing-unknown-collation-utf8mb4_unicode_520_ci/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fixing-unknown-collation-utf8mb4_unicode_520_ci</link>
					<comments>https://www.kjctech.net/fixing-unknown-collation-utf8mb4_unicode_520_ci/#respond</comments>
		
		<dc:creator><![CDATA[Kent Chen]]></dc:creator>
		<pubDate>Fri, 02 Nov 2018 00:06:11 +0000</pubDate>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.kjctech.net/?p=4213</guid>

					<description><![CDATA[<p>I was trying to restore a database to a MySQL server on a test machine and this error occurred: #1273 - Unknown collation: 'utf8mb4_unicode_520_ci' The problem is, the server that runs the live database is MySQL 5.7 that supports utf8mb4_unicode_520_ci but the test server I run is only MySQL 5.5 which does not support this specific encoding. By the way, [&#8230;]</p>
The post <a href="https://www.kjctech.net/fixing-unknown-collation-utf8mb4_unicode_520_ci/">Fixing Unknown Collation utf8mb4_unicode_520_ci</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>I was trying to restore a database to a MySQL server on a test machine and this error occurred:</p>



<pre class="wp-block-preformatted">#1273 - Unknown collation: 'utf8mb4_unicode_520_ci'</pre>



<p>The problem is, the server that runs the live database is MySQL 5.7 that supports utf8mb4_unicode_520_ci but the test server I run is only MySQL 5.5 which does not support this specific encoding.</p>



<p>By the way, to check which version of MySQL you are running, run the following command:</p>



<pre class="wp-block-preformatted">mysql -V</pre>



<p>The easiest way to fix this collation error is to upgrade MySQL 5.5 to either 5.6 or 5.7. Since the version of my test machine is Ubuntu 14.04, I can easily upgrade it to 5.6 by following:</p>



<pre class="wp-block-code"><code class="">sudo apt-get update
sudo apt-get upgrade
sudo apt-get install mysql-client-core-5.6
sudo apt-get install mysql-client-5.6
sudo apt-get install mysql-server-5.6</code></pre>



<p>The restore went successfully once the server is upgraded to 5.6.</p>



<p>You may want to back up all databases and restore them back, in case anything goes wrong.</p>



<p>To back up all databases at once,</p>



<pre class="wp-block-preformatted">mysqldump --lock-all-tables -u root -p --all-databases > dump.sql</pre>



<p>To restore them all once the server is upgraded,</p>



<pre class="wp-block-preformatted">mysql -u root -p &lt; dump.sql</pre>



<p>If upgrading MySQL isn&#8217;t an option for you, you will need to modify the backup file by replacing all <strong>utf8mb4_unicode_520_ci</strong> with <strong>utf8mb4_unicode_ci</strong>. Not ideal, but still works.</p>The post <a href="https://www.kjctech.net/fixing-unknown-collation-utf8mb4_unicode_520_ci/">Fixing Unknown Collation utf8mb4_unicode_520_ci</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kjctech.net/fixing-unknown-collation-utf8mb4_unicode_520_ci/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">4213</post-id>	</item>
		<item>
		<title>Document SQL Server with Database Note Taker</title>
		<link>https://www.kjctech.net/document-sql-server-with-database-note-taker/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=document-sql-server-with-database-note-taker</link>
					<comments>https://www.kjctech.net/document-sql-server-with-database-note-taker/#respond</comments>
		
		<dc:creator><![CDATA[Kent Chen]]></dc:creator>
		<pubDate>Wed, 07 Mar 2018 20:30:38 +0000</pubDate>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Documentation]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[sql server]]></category>
		<category><![CDATA[Tools]]></category>
		<guid isPermaLink="false">https://www.kjctech.net/?p=3842</guid>

					<description><![CDATA[<p>Database Note Taker is a free note-taking app made specifically for SQL databases. It makes a database schema and structures a lot easier to capture and document, and definitely simplifies the database documentation and takes the guesswork out of everyday development with databases. How does it work? More specifically, Connect to your database. Refresh with the current structure of your database. [&#8230;]</p>
The post <a href="https://www.kjctech.net/document-sql-server-with-database-note-taker/">Document SQL Server with Database Note Taker</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p><a href="http://databasenotetaker.com/" target="_blank" rel="noopener">Database Note Taker</a> is a free note-taking app made specifically for SQL databases. It makes a database schema and structures a lot easier to capture and document, and definitely simplifies the database documentation and takes the guesswork out of everyday development with databases.</p>
<h2>How does it work?</h2>
<p><a href="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/03/homeDiagram.png?ssl=1" data-rel="lightbox-image-0" data-rl_title="" data-rl_caption="" title=""><img data-recalc-dims="1" decoding="async" class="alignnone size-full wp-image-3843" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/03/homeDiagram.png?resize=184%2C270&#038;ssl=1" alt="" width="184" height="270" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/03/homeDiagram.png?w=184&amp;ssl=1 184w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/03/homeDiagram.png?resize=100%2C147&amp;ssl=1 100w" sizes="(max-width: 184px) 100vw, 184px" /></a></p>
<p>More specifically,</p>
<ul class="bullets">
<li><b>Connect</b> to your database.</li>
<li><b>Refresh</b> with the current structure of your database.</li>
<li>Database Note Taker shows where documentation is missing.</li>
<li><b>Add and edit notes</b> for tables, columns, stored procedures and so on.</li>
<li><b>Publish</b> and distribute the documentation.</li>
<li>When your database has changed, refresh and add new notes.</li>
</ul>
<p><a href="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/03/Database-Note-Taker.png?ssl=1" data-rel="lightbox-image-1" data-rl_title="" data-rl_caption="" title=""><img data-recalc-dims="1" fetchpriority="high" decoding="async" class="alignnone size-large wp-image-3844" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/03/Database-Note-Taker.png?resize=600%2C278&#038;ssl=1" alt="" width="600" height="278" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/03/Database-Note-Taker.png?resize=600%2C278&amp;ssl=1 600w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/03/Database-Note-Taker.png?resize=250%2C116&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/03/Database-Note-Taker.png?resize=450%2C209&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/03/Database-Note-Taker.png?resize=768%2C356&amp;ssl=1 768w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/03/Database-Note-Taker.png?resize=700%2C324&amp;ssl=1 700w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/03/Database-Note-Taker.png?resize=520%2C241&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/03/Database-Note-Taker.png?resize=360%2C167&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/03/Database-Note-Taker.png?resize=100%2C46&amp;ssl=1 100w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2018/03/Database-Note-Taker.png?w=960&amp;ssl=1 960w" sizes="(max-width: 600px) 100vw, 600px" /></a></p>
<h2>Features</h2>
<p>Here are a few features worth mentioning:</p>
<ul>
<li>Separate documentation</li>
<li>Work offline &#8211; a live database connection is only required to refresh the database.</li>
<li>Publish to HTML</li>
<li>Database platform independent</li>
<li>Source control friendly</li>
<li>Search</li>
<li>Multiple developers friendly</li>
<li>History tracking</li>
<li>etc.</li>
</ul>
<p>Not enough and looking for more database documentation options? Check out <a href="https://www.sqlshack.com/sql-server-documentation-tools/" target="_blank" rel="noopener">this list</a> compiled by SQLShark.</p>The post <a href="https://www.kjctech.net/document-sql-server-with-database-note-taker/">Document SQL Server with Database Note Taker</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kjctech.net/document-sql-server-with-database-note-taker/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">3842</post-id>	</item>
		<item>
		<title>iOS 7 Tip #25: How To Access Email Drafts</title>
		<link>https://www.kjctech.net/ios-7-tip-25-how-to-access-email-drafts/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ios-7-tip-25-how-to-access-email-drafts</link>
					<comments>https://www.kjctech.net/ios-7-tip-25-how-to-access-email-drafts/#respond</comments>
		
		<dc:creator><![CDATA[Kent Chen]]></dc:creator>
		<pubDate>Sat, 16 Aug 2014 00:19:46 +0000</pubDate>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iOS 7]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<guid isPermaLink="false">http://www.kjctech.net/?p=2647</guid>

					<description><![CDATA[<p>Having more than one email drafts saved in your mail app on your iPhone or iPad? Here is how you can get access to it very easily and quickly. Hold down the Compose icon in the lower right corner of your screen, and it&#8217;ll quickly jump to a list of your drafts. I use this feature all the time.</p>
The post <a href="https://www.kjctech.net/ios-7-tip-25-how-to-access-email-drafts/">iOS 7 Tip #25: How To Access Email Drafts</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p><span style="color: #000000;">Having more than one email drafts saved in your mail app on your iPhone or iPad? Here is how you can get access to it very easily and quickly.</span></p>
<p><span style="color: #000000;">Hold down the Compose icon in the lower right corner of your screen, and it&#8217;ll quickly jump to a list of your drafts. I use this feature all the time.</span></p>
<p><img data-recalc-dims="1" decoding="async" class="alignnone size-large wp-image-2648" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/6dfe7bda-ca4c-4471-8cd1-db57d8503b5b_medium--600x532.jpg?resize=600%2C532" alt="6dfe7bda-ca4c-4471-8cd1-db57d8503b5b_medium-" width="600" height="532" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/6dfe7bda-ca4c-4471-8cd1-db57d8503b5b_medium-.jpg?resize=600%2C532&amp;ssl=1 600w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/6dfe7bda-ca4c-4471-8cd1-db57d8503b5b_medium-.jpg?resize=250%2C222&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/6dfe7bda-ca4c-4471-8cd1-db57d8503b5b_medium-.jpg?resize=450%2C399&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/6dfe7bda-ca4c-4471-8cd1-db57d8503b5b_medium-.jpg?resize=520%2C461&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/6dfe7bda-ca4c-4471-8cd1-db57d8503b5b_medium-.jpg?resize=360%2C319&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/6dfe7bda-ca4c-4471-8cd1-db57d8503b5b_medium-.jpg?resize=100%2C89&amp;ssl=1 100w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/6dfe7bda-ca4c-4471-8cd1-db57d8503b5b_medium-.jpg?w=620&amp;ssl=1 620w" sizes="(max-width: 600px) 100vw, 600px" /></p>The post <a href="https://www.kjctech.net/ios-7-tip-25-how-to-access-email-drafts/">iOS 7 Tip #25: How To Access Email Drafts</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kjctech.net/ios-7-tip-25-how-to-access-email-drafts/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2647</post-id>	</item>
		<item>
		<title>iOS 7 Tip #24: Add Web Suffixes with A Single Tap</title>
		<link>https://www.kjctech.net/ios-7-tip-24-add-web-suffixes-with-a-single-tap/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ios-7-tip-24-add-web-suffixes-with-a-single-tap</link>
					<comments>https://www.kjctech.net/ios-7-tip-24-add-web-suffixes-with-a-single-tap/#respond</comments>
		
		<dc:creator><![CDATA[Kent Chen]]></dc:creator>
		<pubDate>Wed, 13 Aug 2014 22:57:07 +0000</pubDate>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iOS 7]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<guid isPermaLink="false">http://www.kjctech.net/?p=2644</guid>

					<description><![CDATA[<p>I wish I&#8217;d known about it sooner. When you&#8217;re typing in a web address, just hold down the &#8220;.&#8221; at the bottom of your keyboard, and a menu will pop up showing a list of web suffixes (.com, .net, .edu, etc.)</p>
The post <a href="https://www.kjctech.net/ios-7-tip-24-add-web-suffixes-with-a-single-tap/">iOS 7 Tip #24: Add Web Suffixes with A Single Tap</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p><span style="color: #000000;">I wish I&#8217;d known about it sooner. When you&#8217;re typing in a web address, just hold down the &#8220;.&#8221; at the bottom of your keyboard, and a menu will pop up showing a list of web suffixes (.com, .net, .edu, etc.)</span></p>
<p><img data-recalc-dims="1" loading="lazy" decoding="async" class="alignnone size-full wp-image-2645" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/iOS-Tip-24.png?resize=465%2C287" alt="iOS Tip 24" width="465" height="287" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/iOS-Tip-24.png?w=465&amp;ssl=1 465w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/iOS-Tip-24.png?resize=250%2C154&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/iOS-Tip-24.png?resize=450%2C278&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/iOS-Tip-24.png?resize=360%2C222&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/iOS-Tip-24.png?resize=100%2C62&amp;ssl=1 100w" sizes="auto, (max-width: 465px) 100vw, 465px" /></p>The post <a href="https://www.kjctech.net/ios-7-tip-24-add-web-suffixes-with-a-single-tap/">iOS 7 Tip #24: Add Web Suffixes with A Single Tap</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kjctech.net/ios-7-tip-24-add-web-suffixes-with-a-single-tap/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2644</post-id>	</item>
		<item>
		<title>iOS 7 Tip #23: Lock Auto-focus and Exposure While Taking A Picture</title>
		<link>https://www.kjctech.net/ios-7-tip-23-lock-auto-focus-and-exposure-while-taking-a-picture/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ios-7-tip-23-lock-auto-focus-and-exposure-while-taking-a-picture</link>
					<comments>https://www.kjctech.net/ios-7-tip-23-lock-auto-focus-and-exposure-while-taking-a-picture/#respond</comments>
		
		<dc:creator><![CDATA[Kent Chen]]></dc:creator>
		<pubDate>Fri, 08 Aug 2014 18:58:26 +0000</pubDate>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iOS 7]]></category>
		<category><![CDATA[iPhone]]></category>
		<guid isPermaLink="false">http://www.kjctech.net/?p=2641</guid>

					<description><![CDATA[<p>It can get annoying when you&#8217;re trying to take a picture and your iPhone camera keeps refocusing and automatically adjusting the exposure. Do you know that you can actually lock both auto-focus and exposure until you are done with a picture? Press and hold your finger on the screen until you see a yellow square blink twice. A yellow icon that says [&#8230;]</p>
The post <a href="https://www.kjctech.net/ios-7-tip-23-lock-auto-focus-and-exposure-while-taking-a-picture/">iOS 7 Tip #23: Lock Auto-focus and Exposure While Taking A Picture</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>It can get annoying when you&#8217;re trying to take a picture and your iPhone camera keeps refocusing and automatically adjusting the exposure. Do you know that you can actually lock both auto-focus and exposure until you are done with a picture?</p>
<p><strong>Press and hold your finger</strong> on the screen until you see a yellow square blink twice. A yellow icon that says “<strong>AE/AF Lock</strong>&#8221; will appear at the bottom of the screen letting you know that you&#8217;ve locked in the exposure and focus. It&#8217;ll stay that way until you&#8217;re done with the shot.</p>
<p><img data-recalc-dims="1" loading="lazy" decoding="async" class="alignnone size-full wp-image-2642" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/17c92f1a-ba82-439a-94aa-c303069e2801_medium-.jpg?resize=600%2C338" alt="17c92f1a-ba82-439a-94aa-c303069e2801_medium-" width="600" height="338" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/17c92f1a-ba82-439a-94aa-c303069e2801_medium-.jpg?w=600&amp;ssl=1 600w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/17c92f1a-ba82-439a-94aa-c303069e2801_medium-.jpg?resize=250%2C141&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/17c92f1a-ba82-439a-94aa-c303069e2801_medium-.jpg?resize=450%2C254&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/17c92f1a-ba82-439a-94aa-c303069e2801_medium-.jpg?resize=520%2C293&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/17c92f1a-ba82-439a-94aa-c303069e2801_medium-.jpg?resize=360%2C203&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/17c92f1a-ba82-439a-94aa-c303069e2801_medium-.jpg?resize=100%2C56&amp;ssl=1 100w" sizes="auto, (max-width: 600px) 100vw, 600px" /></p>The post <a href="https://www.kjctech.net/ios-7-tip-23-lock-auto-focus-and-exposure-while-taking-a-picture/">iOS 7 Tip #23: Lock Auto-focus and Exposure While Taking A Picture</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kjctech.net/ios-7-tip-23-lock-auto-focus-and-exposure-while-taking-a-picture/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2641</post-id>	</item>
		<item>
		<title>iOS 7 Tip #22: Take Photo with Volume Buttons and Burst Mode</title>
		<link>https://www.kjctech.net/ios-7-tip-22-take-photo-with-volume-buttons-and-burst-mode/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ios-7-tip-22-take-photo-with-volume-buttons-and-burst-mode</link>
					<comments>https://www.kjctech.net/ios-7-tip-22-take-photo-with-volume-buttons-and-burst-mode/#respond</comments>
		
		<dc:creator><![CDATA[Kent Chen]]></dc:creator>
		<pubDate>Thu, 07 Aug 2014 20:46:57 +0000</pubDate>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iOS 7]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<guid isPermaLink="false">http://www.kjctech.net/?p=2637</guid>

					<description><![CDATA[<p>Do you know that you don&#8217;t have to tap the capture button on your screen to snap a picture? You can actually just press the volume up/down button. That&#8217;s just much easier, isn&#8217;t it? Also, do you know you can take multiple photo bursts all at once by simply holding down the capture button or the volume up/down button? your phone [&#8230;]</p>
The post <a href="https://www.kjctech.net/ios-7-tip-22-take-photo-with-volume-buttons-and-burst-mode/">iOS 7 Tip #22: Take Photo with Volume Buttons and Burst Mode</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>Do you know that you don&#8217;t have to tap the capture button on your screen to snap a picture? You can actually just press the volume up/down button. That&#8217;s just much easier, isn&#8217;t it?</p>
<p>Also, do you know you can take multiple photo bursts all at once by simply holding down the capture button or the volume up/down button? your phone will take a series of rapid shots, or bursts, in quick succession. This is especially useful if you&#8217;re photographing a moving subject. Later you can scan through all the bursts and pick your favorite ones.</p>
<p><img data-recalc-dims="1" loading="lazy" decoding="async" class="alignnone size-large wp-image-2638" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/iPhone-5s-Burst-mode-600x338.jpg?resize=600%2C338" alt="iPhone-5s-Burst-mode" width="600" height="338" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/iPhone-5s-Burst-mode.jpg?resize=600%2C338&amp;ssl=1 600w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/iPhone-5s-Burst-mode.jpg?resize=250%2C141&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/iPhone-5s-Burst-mode.jpg?resize=450%2C254&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/iPhone-5s-Burst-mode.jpg?resize=768%2C433&amp;ssl=1 768w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/iPhone-5s-Burst-mode.jpg?resize=700%2C394&amp;ssl=1 700w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/iPhone-5s-Burst-mode.jpg?resize=520%2C293&amp;ssl=1 520w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/iPhone-5s-Burst-mode.jpg?resize=360%2C203&amp;ssl=1 360w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/iPhone-5s-Burst-mode.jpg?resize=100%2C56&amp;ssl=1 100w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/iPhone-5s-Burst-mode.jpg?w=1136&amp;ssl=1 1136w" sizes="auto, (max-width: 600px) 100vw, 600px" /></p>The post <a href="https://www.kjctech.net/ios-7-tip-22-take-photo-with-volume-buttons-and-burst-mode/">iOS 7 Tip #22: Take Photo with Volume Buttons and Burst Mode</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kjctech.net/ios-7-tip-22-take-photo-with-volume-buttons-and-burst-mode/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2637</post-id>	</item>
		<item>
		<title>iOS 7 Tip #21: Automatically turn off your music with the timer</title>
		<link>https://www.kjctech.net/ios-7-tip-21-automatically-turn-off-your-music-with-the-timer/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ios-7-tip-21-automatically-turn-off-your-music-with-the-timer</link>
					<comments>https://www.kjctech.net/ios-7-tip-21-automatically-turn-off-your-music-with-the-timer/#respond</comments>
		
		<dc:creator><![CDATA[Kent Chen]]></dc:creator>
		<pubDate>Tue, 05 Aug 2014 22:41:53 +0000</pubDate>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iOS 7]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<guid isPermaLink="false">http://www.kjctech.net/?p=2633</guid>

					<description><![CDATA[<p>If you like to doze off with music playing, you can use the timer to automatically turn your music off so that it doesn&#8217;t play all night. In the timer app, tap When Timer Ends → scroll down to the bottom and tap Stop Playing. The Timer will automatically turn off your tunes after whatever length of time you set.</p>
The post <a href="https://www.kjctech.net/ios-7-tip-21-automatically-turn-off-your-music-with-the-timer/">iOS 7 Tip #21: Automatically turn off your music with the timer</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>If you like to doze off with music playing, you can use the timer to automatically turn your music off so that it doesn&#8217;t play all night.</p>
<p>In the timer app, tap <strong>When Timer Ends</strong> → scroll down to the bottom and tap <strong>Stop Playing</strong>. The Timer will automatically turn off your tunes after whatever length of time you set.</p>
<p><img data-recalc-dims="1" loading="lazy" decoding="async" class="alignnone size-large wp-image-2634" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/08/9e52ab7a-153f-46f0-a122-ee6d600b8e07_medium--600x532.jpg?resize=600%2C532" alt="9e52ab7a-153f-46f0-a122-ee6d600b8e07_medium-" width="600" height="532" /></p>The post <a href="https://www.kjctech.net/ios-7-tip-21-automatically-turn-off-your-music-with-the-timer/">iOS 7 Tip #21: Automatically turn off your music with the timer</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kjctech.net/ios-7-tip-21-automatically-turn-off-your-music-with-the-timer/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2633</post-id>	</item>
		<item>
		<title>iOS 7 Tip #20: Email Notifications on Sub-Folders</title>
		<link>https://www.kjctech.net/ios-7-tip-20-email-notifications-on-sub-folders/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ios-7-tip-20-email-notifications-on-sub-folders</link>
					<comments>https://www.kjctech.net/ios-7-tip-20-email-notifications-on-sub-folders/#comments</comments>
		
		<dc:creator><![CDATA[Kent Chen]]></dc:creator>
		<pubDate>Thu, 17 Jul 2014 22:42:34 +0000</pubDate>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iOS 7]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<guid isPermaLink="false">http://www.kjctech.net/?p=2615</guid>

					<description><![CDATA[<p>By default, you only get notified when you have new mails arrived in your inbox. If you have a rule set up in your mailbox that skips certain emails to one of your sub-folders, you won&#8217;t get notified on your iPhone or iPad when these emails arrived. Here is how you can change it to have these sub-folders also enabled [&#8230;]</p>
The post <a href="https://www.kjctech.net/ios-7-tip-20-email-notifications-on-sub-folders/">iOS 7 Tip #20: Email Notifications on Sub-Folders</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>By default, you only get notified when you have new mails arrived in your inbox. If you have a rule set up in your mailbox that skips certain emails to one of your sub-folders, you won&#8217;t get notified on your iPhone or iPad when these emails arrived.</p>
<p>Here is how you can change it to have these sub-folders also enabled for notification.</p>
<p>Go to Settings → Mails, Contacts, Calendars → Fetch New Data</p>
<p><a href="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/07/2014-07-17-15.27.55.png" data-rel="lightbox-image-0" data-rl_title="" data-rl_caption="" title=""><img data-recalc-dims="1" loading="lazy" decoding="async" class="alignnone size-thumbnail wp-image-2617" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/07/2014-07-17-15.27.55-250x443.png?resize=250%2C443" alt="2014-07-17 15.27.55" width="250" height="443" /></a></p>
<p>Tap the mailbox you want to have sub-folders set for notification, and select them.</p>
<p><a href="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/07/2014-07-17-15.28.05.png" data-rel="lightbox-image-1" data-rl_title="" data-rl_caption="" title=""><img data-recalc-dims="1" loading="lazy" decoding="async" class="alignnone size-thumbnail wp-image-2616" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/07/2014-07-17-15.28.05-250x443.png?resize=250%2C443" alt="2014-07-17 15.28.05" width="250" height="443" srcset="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/07/2014-07-17-15.28.05.png?resize=250%2C443&amp;ssl=1 250w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/07/2014-07-17-15.28.05.png?resize=450%2C798&amp;ssl=1 450w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/07/2014-07-17-15.28.05.png?resize=600%2C1065&amp;ssl=1 600w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/07/2014-07-17-15.28.05.png?resize=332%2C589&amp;ssl=1 332w, https://i0.wp.com/www.kjctech.net/wp-content/uploads/2014/07/2014-07-17-15.28.05.png?w=640&amp;ssl=1 640w" sizes="auto, (max-width: 250px) 100vw, 250px" /></a></p>
<p>Go back and it&#8217;s all set. Next time when an email arrives into one of these sub-folders you will get notified right away.</p>The post <a href="https://www.kjctech.net/ios-7-tip-20-email-notifications-on-sub-folders/">iOS 7 Tip #20: Email Notifications on Sub-Folders</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kjctech.net/ios-7-tip-20-email-notifications-on-sub-folders/feed/</wfw:commentRss>
			<slash:comments>6</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2615</post-id>	</item>
		<item>
		<title>iOS 7 Tip #19: How To Undo A Typing or Copy/Paste</title>
		<link>https://www.kjctech.net/ios-7-tip-19-how-to-undo-a-typing-or-copypaste/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ios-7-tip-19-how-to-undo-a-typing-or-copypaste</link>
					<comments>https://www.kjctech.net/ios-7-tip-19-how-to-undo-a-typing-or-copypaste/#respond</comments>
		
		<dc:creator><![CDATA[Kent Chen]]></dc:creator>
		<pubDate>Sat, 16 Nov 2013 00:33:30 +0000</pubDate>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iOS 7]]></category>
		<category><![CDATA[iPhone]]></category>
		<guid isPermaLink="false">http://www.kjctech.net/?p=2417</guid>

					<description><![CDATA[<p>Let&#8217;s say you are in Notes app typing non-stop and all of sudden you found you&#8217;ve made a mistake and deleted something you don&#8217;t want to delete but couldn&#8217;t pick up your mind to remember what you typed, and now you are wondering how you can undo what you did, just like what we do in Word. Now, let&#8217;s just [&#8230;]</p>
The post <a href="https://www.kjctech.net/ios-7-tip-19-how-to-undo-a-typing-or-copypaste/">iOS 7 Tip #19: How To Undo A Typing or Copy/Paste</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>Let&#8217;s say you are in Notes app typing non-stop and all of sudden you found you&#8217;ve made a mistake and deleted something you don&#8217;t want to delete but couldn&#8217;t pick up your mind to remember what you typed, and now you are wondering how you can undo what you did, just like what we do in Word.</p>
<p>Now, let&#8217;s just firmly hold your device and shake it. I am not joking. Just shake your it and you will get a popup like below. Tap undo, and bang.</p>
<p><figure id="attachment_2418" aria-describedby="caption-attachment-2418" style="width: 250px" class="wp-caption alignnone"><a href="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2013/11/2013-11-15-16.25.40.png" data-rel="lightbox-image-0" data-rl_title="" data-rl_caption="" title=""><img data-recalc-dims="1" loading="lazy" decoding="async" class="size-thumbnail wp-image-2418" alt="Shake to undo on iPhone" src="https://i0.wp.com/www.kjctech.net/wp-content/uploads/2013/11/2013-11-15-16.25.40-250x443.png?resize=250%2C443" width="250" height="443" /></a><figcaption id="caption-attachment-2418" class="wp-caption-text">Shake to undo on iPhone</figcaption></figure></p>The post <a href="https://www.kjctech.net/ios-7-tip-19-how-to-undo-a-typing-or-copypaste/">iOS 7 Tip #19: How To Undo A Typing or Copy/Paste</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kjctech.net/ios-7-tip-19-how-to-undo-a-typing-or-copypaste/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2417</post-id>	</item>
		<item>
		<title>iOS 7 Tip #18: How To Record and Save Slo-Mo Video Clips</title>
		<link>https://www.kjctech.net/ios-7-tip-18-how-to-record-and-save-slo-mo-video-clips/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ios-7-tip-18-how-to-record-and-save-slo-mo-video-clips</link>
					<comments>https://www.kjctech.net/ios-7-tip-18-how-to-record-and-save-slo-mo-video-clips/#respond</comments>
		
		<dc:creator><![CDATA[Kent Chen]]></dc:creator>
		<pubDate>Wed, 06 Nov 2013 15:04:41 +0000</pubDate>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iOS 7]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPhone 5s]]></category>
		<guid isPermaLink="false">http://www.kjctech.net/?p=2404</guid>

					<description><![CDATA[<p>The Slo-Mo video recording feature is only available in iPhone 5s. If you are one of those who upgraded your iPhone to this model, here is how you can record a video in slow motion. Easy peasy, go into Camera, simply swipe the recording mode to the right. The slo-mo mode is at the very left. After having a slo-mo [&#8230;]</p>
The post <a href="https://www.kjctech.net/ios-7-tip-18-how-to-record-and-save-slo-mo-video-clips/">iOS 7 Tip #18: How To Record and Save Slo-Mo Video Clips</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>The Slo-Mo video recording feature is only available in iPhone 5s. If you are one of those who upgraded your iPhone to this model, here is how you can record a video in slow motion.</p>
<p>Easy peasy, go into Camera, simply swipe the recording mode to the right. The slo-mo mode is at the very left.</p>
<p>After having a slo-mo video recorded, if you just download these videos to your computer, and play it in your media player, you won&#8217;t see a slow motion effect in the video. It will just play normally in regular speed.</p>
<p>The best way to save them properly before it gets downloaded to your computer is to use a free app called <strong>TruSloMo</strong>. You can use this app to save a slo-mo recorded video into a video that can be played regularly while still showing the slow motion effects.</p>
<p><img data-recalc-dims="1" decoding="async" class="alignnone" alt="" src="https://i0.wp.com/www.nextofwindows.com/wp-content/uploads/2013/10/2013-10-30-11.36.08-450x798.png?w=250"  /></p>
<p>/via <a href="http://www.nextofwindows.com/how-to-save-and-play-iphone-5s-slow-motion-video-clips-on-windows/" target="_blank" rel="noopener">Next of Windows</a>/</p>The post <a href="https://www.kjctech.net/ios-7-tip-18-how-to-record-and-save-slo-mo-video-clips/">iOS 7 Tip #18: How To Record and Save Slo-Mo Video Clips</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kjctech.net/ios-7-tip-18-how-to-record-and-save-slo-mo-video-clips/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2404</post-id>	</item>
	</channel>
</rss>
