<?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>TrickyBook</title>
	<atom:link href="https://trickybook.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://trickybook.com/</link>
	<description>The Engineer&#039;s Blog</description>
	<lastBuildDate>Tue, 27 Oct 2015 21:40:57 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.5</generator>
	<item>
		<title>KNN algorithm implementation in c++ graphics.h</title>
		<link>https://trickybook.com/knn-algorithm-implementation-in-c-graphics/</link>
					<comments>https://trickybook.com/knn-algorithm-implementation-in-c-graphics/#respond</comments>
		
		<dc:creator><![CDATA[Mehran Aziz]]></dc:creator>
		<pubDate>Mon, 13 Jul 2015 11:47:36 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<guid isPermaLink="false">http://trickybook.com/?p=1474</guid>

					<description><![CDATA[<p>KNN algorithm implementation in C++ with graphics.h. And also learn the concept and working of K nearest neighbor algorithm. This program is implemented in C++ using Turbo C. Use Graphics.h header file for visual understanding of the algorithm. Graphics.h is&#8230; <a href="https://trickybook.com/knn-algorithm-implementation-in-c-graphics/" class="more-link">Continue Reading <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a href="https://trickybook.com/knn-algorithm-implementation-in-c-graphics/">KNN algorithm implementation in c++ graphics.h</a> appeared first on <a href="https://trickybook.com">TrickyBook</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2 style="text-align: center;">KNN algorithm implementation in C++ with graphics.h. And also learn the concept and working of K nearest neighbor algorithm.</h2>
<div style="float: left; margin: 11px 5px 5px 0;"><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" async=""></script><!-- ad_7 --> <ins class="adsbygoogle" style="display: inline-block; width: 336px; height: 280px;" data-ad-client="ca-pub-3152641701721559" data-ad-slot="6707003426"></ins><script>// <![CDATA[
(adsbygoogle = window.adsbygoogle || []).push({});
// ]]&gt;</script></div>
<p>This program is implemented in C++ using Turbo C. Use Graphics.h header file for visual understanding of the algorithm. Graphics.h is the C library which helps to create graphical shapes, like Circle, Rectangles etc.</p>
<p>This knn algorithm program has two classes A and B. Each class has 4 members. This program Get x and y coordinates of the class members in input.</p>
<p>When all members of class A &amp; B are located than enter new member location. Program automatically calculates the distance of new member from the member of both classes.</p>
<p>After calculating and sorting the distances between the members of classes. Put the value of k (which is less than 9 for this program). New member goes into any of these classes with respect to the value of k. For download this knn algorithm program .cpp file Click below.</p>
<p style="text-align: center;"><strong><a href="https://trickybook.com/wp-content/uploads/2015/07/MYKNN.rar" target="_blank">Download .cpp</a></strong></p>
<h3><strong>How this knn algorithm Program component work</strong></h3>
<p>You need to have installed Turbo C which have Graphics.h library in working condition. I am sure you clearly understood about the operating system on which it work.</p>
<div align="center">
<table border="0" width="67%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="border-color: #ededed; border-right-width: 0px; border-left-width: 0px;" align="left" valign="top"><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" async=""></script><!-- ad_4 --> <ins class="adsbygoogle" style="display: inline-block; width: 200px; height: 90px;" data-ad-client="ca-pub-3152641701721559" data-ad-slot="1097713822"></ins><script>// <![CDATA[
(adsbygoogle = window.adsbygoogle || []).push({});
// ]]&gt;</script></td>
<td style="border-color: #ededed; border-right-width: 0px; border-left-width: 0px;" align="left" valign="top"><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" async=""></script><!-- ad_4 --> <ins class="adsbygoogle" style="display: inline-block; width: 200px; height: 90px;" data-ad-client="ca-pub-3152641701721559" data-ad-slot="1097713822"></ins><script>// <![CDATA[
(adsbygoogle = window.adsbygoogle || []).push({});
// ]]&gt;</script></td>
</tr>
</tbody>
</table>
</div>
<ul>
<li>These<span style="color: #ff0000;"> for loops</span> take input for class A and Class B members locations. And show circles on that locations.</li>
</ul>
<pre>cout&lt;&lt;"Enter the Class A memebers location"&lt;&lt;endl;
	for (i=0 ; i&gt;A[0][i];
		cout&lt;&lt;"ty-cordinates of member "&lt;&lt;++i&lt;&lt;" ="; 
                i--; cin&gt;&gt;A[1][i];
		x1=A[0][i];
		y1=A[1][i];
		circle(getmaxx()/2+x1, getmaxy()/2-y1, radius);
		clas[j]='A';
	}

cout&lt;&lt;"Enter the Class B memebers location"&lt;&lt;endl;
	setcolor(5);
	for (h=0, j=4 ; h&gt;B[0][h];
		cout&lt;&lt;"ty-cordinates of member "&lt;&lt;++h&lt;&lt;" ="; 
                h--; 		cin&gt;&gt;B[1][h];
		x1=B[0][h];
		y1=B[1][h];
		clas[j]='B';
		circle(getmaxx()/2+x1, getmaxy()/2-y1, radius);
	}
</pre>
<ul>
<li>Take the location of <span style="color: #ff0000;">New member</span> which point in the form of circle. After that for loop <span style="color: #ff0000;">calculate the distance</span> of New member from the members of other classes (A &amp; B).</li>
</ul>
<pre>cout&lt;&lt;"Enter x-cordinate of New member = "; cin&gt;&gt;x2;
cout&lt;&lt;"Enter y_cordinate of New member = " ; cin&gt;&gt;y2;
circle(getmaxx()/2+x2, getmaxy()/2-y2, 5);

for(j=0, h=0; j&lt;4;h++, j++)
{
	x1=A[0][h];
	y1=A[1][h];
	distance[j]=sqrt((pow((x2-x1), 2.0 ) + pow((y2-y1) , 2.0)) );
}
for(j=4, h=0; j&lt;8;h++, j++)
{
	x1=B[0][h];
	y1=B[1][h];
	distance[j]=sqrt((pow((x2-x1), 2.0 ) + pow((y2-y1) , 2.0)) );
}
</pre>
<ul>
<li><span style="color: #ff0000;">Nested for loop</span> for sorting the distances; which calculated between new member and class members.</li>
</ul>
<pre>int m, l,n;
float key;
	for( m=0; m&lt;8; m++) 		
               for(n=7 ; n&gt;=m+1 ; n--)
			if(distance[n] &lt; distance[n-1])
			{
				int t = distance[n];
				distance[n]= distance[n-1];
				distance[n-1] = t;
				char temp = clas[n];
				clas[n]=clas[n-1];
				clas[n-1]=temp;
			}</pre>
<ul>
<li><span style="color: #ff0000;">Get the value of K</span> and make decision on the base of its value. Either New member goes into Class A or in Class B. And finally knn algorithm work is done.</li>
</ul>
<pre>cout&lt;&lt; "nEnter value of K = "; cin&gt;&gt;k;
int chk ,a=0,b=0;
	for (chk=0; chk&lt;k; chk++)
	{
		cout&lt;&lt;clas[chk]&lt;&lt;"  ";
		if(clas[chk]=='A')
		{
			a++;
		}
		else if(clas[chk]=='B')
		{
			b++;
		}
	}

cout&lt;&lt;""&lt;&lt;endl; 	if(a&gt;b)
	{
        setcolor(3);
	outtextxy(getmaxx()/2,getmaxy()/2+50,"New Member lies in Class A");
	}
	else if(b&gt;a)
	{
	setcolor(5);
	outtextxy(getmaxx()/2,getmaxy()/2+50,"New Member lies in Class B");
	}
</pre>
<p style="text-align: left;">Hope! this program is really useful for you. Feel free to contact us! If you face any problem about this KNN Algorithm program. This is my way of implementation of the algorithm. Below is the place (in Comments) where you can share yours <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /> .</p>
<p>The post <a href="https://trickybook.com/knn-algorithm-implementation-in-c-graphics/">KNN algorithm implementation in c++ graphics.h</a> appeared first on <a href="https://trickybook.com">TrickyBook</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://trickybook.com/knn-algorithm-implementation-in-c-graphics/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Download Excel Daily Planner template</title>
		<link>https://trickybook.com/download-excel-daily-planner-template/</link>
					<comments>https://trickybook.com/download-excel-daily-planner-template/#respond</comments>
		
		<dc:creator><![CDATA[Mehran Aziz]]></dc:creator>
		<pubDate>Wed, 08 Jul 2015 14:14:55 +0000</pubDate>
				<category><![CDATA[Downloads]]></category>
		<guid isPermaLink="false">http://trickybook.com/?p=1483</guid>

					<description><![CDATA[<p>Download excel daily planner template 2015 freely &#8211; Excel daily planner which start from wake up time and cover one day schedule of a user. Hey! I am come with very useful excel template to manage your daily schedule easily.&#8230; <a href="https://trickybook.com/download-excel-daily-planner-template/" class="more-link">Continue Reading <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a href="https://trickybook.com/download-excel-daily-planner-template/">Download Excel Daily Planner template</a> appeared first on <a href="https://trickybook.com">TrickyBook</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2 style="text-align: center;">Download excel daily planner template 2015 freely &#8211; Excel daily planner which start from wake up time and cover one day schedule of a user.</h2>
<div style="float: left; margin: 11px 5px 5px 0;"><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" async=""></script><!-- ad_7 --> <ins class="adsbygoogle" style="display: inline-block; width: 336px; height: 280px;" data-ad-client="ca-pub-3152641701721559" data-ad-slot="6707003426"></ins><script>// <![CDATA[
(adsbygoogle = window.adsbygoogle || []).push({});
// ]]&gt;</script></div>
<p>Hey! I am come with very useful excel template to manage your daily schedule easily. This is an Excel daily planner. This will help you to remember your daily per hour tasks and Calls.</p>
<p>It provides you facility of evaluation at the end of the day. You can check total number of completed, uncompleted and partial complete tasks at the end of the day. And also check total number of uncompleted calls.</p>
<p>In this way, you can evaluate your daily progress and ready yourself to plane your next day tasks. You can save your reaming tasks of the current day.</p>
<h3><strong>How to use this Excel Daily Planner template</strong></h3>
<p>The use of this daily planner is very simple. Just put wake up time in a Cell. And enter tasks with respect to specific hours. Be patient! I did not leave you here <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f600.png" alt="😀" class="wp-smiley" style="height: 1em; max-height: 1em;" /> . I am going to explain its usage in details in below steps.</p>
<div align="center">
<table border="0" width="67%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="border-color: #ededed; border-right-width: 0px; border-left-width: 0px;" align="left" valign="top"><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" async=""></script><!-- ad_4 --> <ins class="adsbygoogle" style="display: inline-block; width: 200px; height: 90px;" data-ad-client="ca-pub-3152641701721559" data-ad-slot="1097713822"></ins><script>// <![CDATA[
(adsbygoogle = window.adsbygoogle || []).push({});
// ]]&gt;</script></td>
<td style="border-color: #ededed; border-right-width: 0px; border-left-width: 0px;" align="left" valign="top"><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" async=""></script><!-- ad_4 --> <ins class="adsbygoogle" style="display: inline-block; width: 200px; height: 90px;" data-ad-client="ca-pub-3152641701721559" data-ad-slot="1097713822"></ins><script>// <![CDATA[
(adsbygoogle = window.adsbygoogle || []).push({});
// ]]&gt;</script></td>
</tr>
</tbody>
</table>
</div>
<p>You need to install Microsoft Excel in your windows operating system. If you have installed Excel than continue to read the following steps.</p>
<p style="text-align: center;"><strong><a href="https://trickybook.com/wp-content/uploads/2015/07/Excel-Daily-Planner.xlsx" target="_blank">Download Template</a></strong></p>
<ol>
<li>Open Excel Daily Planner Template in Excel. <span style="color: #ff0000;">Current date</span> is display on the header of the template automatically.</li>
<li>You need to set Wake up Goal under <span style="color: #ff0000;">walk up time goal</span> cell. And under <span style="color: #ff0000;">Wake up time</span> cell put actual wake up time. Status automatically updated and <span style="color: #ff0000;">time Column</span> start from your wake up time.</li>
<li>Put your daily route tasks, in front of time columns, under the tasks. You can put maximum two tasks within one hour. In Calls fill name and place of the call.</li>
<li>When you update tasks and calls fields. Save and close your planner. And start your day.<br />
<div id="attachment_1493" style="width: 609px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/07/excel-daily-planner-templete.jpg"><img fetchpriority="high" decoding="async" aria-describedby="caption-attachment-1493" class=" wp-image-1493" src="https://trickybook.com/wp-content/uploads/2015/07/excel-daily-planner-templete.jpg" alt="excel daily planner template" width="599" height="241" srcset="https://trickybook.com/wp-content/uploads/2015/07/excel-daily-planner-templete.jpg 1169w, https://trickybook.com/wp-content/uploads/2015/07/excel-daily-planner-templete-300x121.jpg 300w, https://trickybook.com/wp-content/uploads/2015/07/excel-daily-planner-templete-1024x413.jpg 1024w" sizes="(max-width: 599px) 100vw, 599px" /></a><p id="caption-attachment-1493" class="wp-caption-text">excel daily planner template [trickybook.com]</p></div></li>
<li>After the completion of the day open your Daily planner again. and <span style="color: #ff0000;">Fill Checks</span> against your tasks. <span style="text-decoration: underline;">If you complete your task than check Yes, if not than check No. If you complete your task partially than select partially check.</span></li>
<li>When checks are updated than you can analyze summary of Tasks. Summary of tasks show total no. of tasks, completed tasks, uncompleted tasks, parity completed tasks and uncompleted calls.</li>
<li>Finally in Remaining tasks put your reaming tasks of the day for further working.</li>
</ol>
<p>Hope! you find this excel daily planner template helpful <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /> . Fell free to share any issue or feedback about this template with us. Don&#8217;t forget to share with your friends.</p>
<p>The post <a href="https://trickybook.com/download-excel-daily-planner-template/">Download Excel Daily Planner template</a> appeared first on <a href="https://trickybook.com">TrickyBook</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://trickybook.com/download-excel-daily-planner-template/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Delete undeletable files in windows xp,7,8 easily</title>
		<link>https://trickybook.com/delete-undeletable-files-in-windows-easily/</link>
					<comments>https://trickybook.com/delete-undeletable-files-in-windows-easily/#respond</comments>
		
		<dc:creator><![CDATA[Mehran Aziz]]></dc:creator>
		<pubDate>Sat, 23 May 2015 15:26:01 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<guid isPermaLink="false">http://trickybook.com/?p=1446</guid>

					<description><![CDATA[<p>How to delete undeletable files in windows xp,7,8 &#8211; You can also move, rename a file which have some problem in your windows operating system. In windows operating system we always prefer to work in graphical environment. In graphical interface,&#8230; <a href="https://trickybook.com/delete-undeletable-files-in-windows-easily/" class="more-link">Continue Reading <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a href="https://trickybook.com/delete-undeletable-files-in-windows-easily/">Delete undeletable files in windows xp,7,8 easily</a> appeared first on <a href="https://trickybook.com">TrickyBook</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2 style="text-align: center;">How to delete undeletable files in windows xp,7,8 &#8211; You can also move, rename a file which have some problem in your windows operating system.</h2>
<div style="float: left; margin: 11px 5px 5px 0;"><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" async=""></script><!-- ad_7 --> <ins class="adsbygoogle" style="display: inline-block; width: 336px; height: 280px;" data-ad-client="ca-pub-3152641701721559" data-ad-slot="6707003426"></ins><script>// <![CDATA[
(adsbygoogle = window.adsbygoogle || []).push({});
// ]]&gt;</script></div>
<p>In windows operating system we always prefer to work in graphical environment. In graphical interface, you are not familiar with deep level problems. And try to find the solution of problems in GUI form. Therefore, i come with a solution of a problem, which is in a graphical form.</p>
<p>Sometimes you may see that, some files or a file is not rename, move or delete due to some errors or after infected from a virus.</p>
<p>You cannot delete them with traditional way of deleting files. No double, there are many methods to delete undeletable files. Like, you can delete these files after some registry changes. But today i am give you a very simple way to deleting these files. You can also delete any infected file or virus directly <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /> .</p>
<h3><strong>Follow below steps to delete undeletable files</strong></h3>
<p>First of all download this small tool of size 1MB only, link is <a href="http://www.mediafire.com/download/gb3hoy66a6632ek/Unlocker1.9.2.rar" target="_blank">Here</a>. After download this software unzips it with winRAR. After uncompressed, install it in your windows operating system. Its installation is very simple. So, i am not describing it now.</p>
<div align="center">
<table border="0" width="67%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="border-color: #ededed; border-right-width: 0px; border-left-width: 0px;" align="left" valign="top"><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" async=""></script><!-- ad_4 --> <ins class="adsbygoogle" style="display: inline-block; width: 200px; height: 90px;" data-ad-client="ca-pub-3152641701721559" data-ad-slot="1097713822"></ins><script>// <![CDATA[
(adsbygoogle = window.adsbygoogle || []).push({});
// ]]&gt;</script></td>
<td style="border-color: #ededed; border-right-width: 0px; border-left-width: 0px;" align="left" valign="top"><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" async=""></script><!-- ad_4 --> <ins class="adsbygoogle" style="display: inline-block; width: 200px; height: 90px;" data-ad-client="ca-pub-3152641701721559" data-ad-slot="1097713822"></ins><script>// <![CDATA[
(adsbygoogle = window.adsbygoogle || []).push({});
// ]]&gt;</script></td>
</tr>
</tbody>
</table>
</div>
<p style="line-height: 18.0pt; margin: 3.0pt 0in 7.5pt 0in;"><span style="font-size: 11.5pt; font-family: 'Arial','sans-serif'; color: #333333;">When you install this application successfully then it is added in menu which opens &#8220;</span><span style="color: #ff0000;"><span style="font-size: 11.5pt; font-family: 'Arial','sans-serif'; color: red;">when you right click on a file in windows</span></span><span style="font-size: 11.5pt; font-family: 'Arial','sans-serif'; color: #333333;">&#8220;. Like below.</span></p>
<div id="attachment_1457" style="width: 276px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/05/Add-unlooker-in-menu.jpg"><img decoding="async" aria-describedby="caption-attachment-1457" class="size-full wp-image-1457" src="https://trickybook.com/wp-content/uploads/2015/05/Add-unlooker-in-menu.jpg" alt="Add unlooker in menu" width="266" height="382" srcset="https://trickybook.com/wp-content/uploads/2015/05/Add-unlooker-in-menu.jpg 266w, https://trickybook.com/wp-content/uploads/2015/05/Add-unlooker-in-menu-209x300.jpg 209w" sizes="(max-width: 266px) 100vw, 266px" /></a><p id="caption-attachment-1457" class="wp-caption-text">Add unlooker in menu [trickybook.com]</p></div>
<ol>
<li><span style="color: #ff0000;">Right click</span> on a file which you want to rename, move or delete. You see <span style="color: #ff0000;">Unlocker</span> option like above. Select this option.</li>
<li>A small window of this software is appearing. Select an <span style="color: #ff0000;">action</span> you want to perform on a file from here. There are three options move, rename and delete. Select anyone action you want to perform.
<p><div id="attachment_1459" style="width: 389px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/05/Select-a-action.jpg"><img decoding="async" aria-describedby="caption-attachment-1459" class="size-full wp-image-1459" src="https://trickybook.com/wp-content/uploads/2015/05/Select-a-action.jpg" alt="Select a action to perform on a file" width="379" height="207" srcset="https://trickybook.com/wp-content/uploads/2015/05/Select-a-action.jpg 379w, https://trickybook.com/wp-content/uploads/2015/05/Select-a-action-300x164.jpg 300w" sizes="(max-width: 379px) 100vw, 379px" /></a><p id="caption-attachment-1459" class="wp-caption-text">Select a action to perform on a file</p></div></li>
<li>After select an action. Click on <span style="color: #ff0000;">OK</span> button to perform selected action on the file.</li>
<li>This app quickly provides required output. Sometimes files may not delete in a simply way. In that case this <span style="text-decoration: underline;">app asks for performing action on next reboot of the system.</span></li>
<li>If you select to perform that action on next reboot than. It must delete undeletable files after reboot. You can check this after starting your system.</li>
</ol>
<p><span style="color: #ff0000;"><strong>My view about this tool:</strong></span></p>
<p>&#8220;I personally use it many times and it provides me required result every times&#8221;. But i am not using this tool for moving, renaming and removing <span style="color: #ff0000;">operating system files</span>.</p>
<p><span style="color: #ff0000;"><strong>Over to you:</strong></span></p>
<p>At the end, I want to tell you &#8220;use this tool on your own risk, when you working with operating system files. I not responsible for any damage in your system files. Hope! You enjoy this kill tool for move, rename or delete undeletable files very easily.</p>
<p>The post <a href="https://trickybook.com/delete-undeletable-files-in-windows-easily/">Delete undeletable files in windows xp,7,8 easily</a> appeared first on <a href="https://trickybook.com">TrickyBook</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://trickybook.com/delete-undeletable-files-in-windows-easily/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Play chrome dinosaur game if unable to connect to internet</title>
		<link>https://trickybook.com/play-chrome-dinosaur-game-not-connect-internet/</link>
					<comments>https://trickybook.com/play-chrome-dinosaur-game-not-connect-internet/#respond</comments>
		
		<dc:creator><![CDATA[Mehran Aziz]]></dc:creator>
		<pubDate>Sat, 02 May 2015 16:21:47 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<guid isPermaLink="false">http://trickybook.com/?p=1427</guid>

					<description><![CDATA[<p>Play hidden chrome dinosaur game if unable to connect to internet &#8211; unable to connect to the internet dinosaur in Chrome is a Game. Hey! Google chrome users. I come with new information about Google chrome web browser. Almost, all&#8230; <a href="https://trickybook.com/play-chrome-dinosaur-game-not-connect-internet/" class="more-link">Continue Reading <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a href="https://trickybook.com/play-chrome-dinosaur-game-not-connect-internet/">Play chrome dinosaur game if unable to connect to internet</a> appeared first on <a href="https://trickybook.com">TrickyBook</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2 style="text-align: center;">Play hidden chrome dinosaur game if unable to connect to internet &#8211; unable to connect to the internet dinosaur in Chrome is a Game.</h2>
<div style="float: left; margin: 11px 5px 5px 0;"><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" async=""></script><!-- ad_7 --> <ins class="adsbygoogle" style="display: inline-block; width: 336px; height: 280px;" data-ad-client="ca-pub-3152641701721559" data-ad-slot="6707003426"></ins><script>// <![CDATA[
(adsbygoogle = window.adsbygoogle || []).push({});
// ]]&gt;</script></div>
<p>Hey! Google chrome users. I come with new information about Google chrome web browser. Almost, all of you watch a Dinosaur with a message &#8220;unable to connect to internet&#8221;.</p>
<p>This message display when you are not connects to internet, due to any reason. Chrome shows Dinosaur which may try to realize us &#8220;Without internet, you now living in the dinosaurs age&#8221; <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f608.png" alt="😈" class="wp-smiley" style="height: 1em; max-height: 1em;" /> .</p>
<p>This Dinosaur is not only a cartoon or image. It is a chrome dinosaur game which you can play, when you don&#8217;t connect to internet.</p>
<p>For example, you disconnect with internet for a few seconds. Then you can start playing this game. I&#8217;m sure; you can&#8217;t play this game for a long period because it is too simple. Just make a small fun <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f600.png" alt="😀" class="wp-smiley" style="height: 1em; max-height: 1em;" /> during this boring period (in which internet is not available).</p>
<h3><strong>How to play offline Chrome Dinosaur game</strong></h3>
<p>For play this game you need to disconnect from the internet. When you disconnect to internet open Chrome and search or open any website.</p>
<div align="center">
<table border="0" width="67%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="border-color: #ededed; border-right-width: 0px; border-left-width: 0px;" align="left" valign="top"><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" async=""></script><!-- ad_4 --> <ins class="adsbygoogle" style="display: inline-block; width: 200px; height: 90px;" data-ad-client="ca-pub-3152641701721559" data-ad-slot="1097713822"></ins><script>// <![CDATA[
(adsbygoogle = window.adsbygoogle || []).push({});
// ]]&gt;</script></td>
<td style="border-color: #ededed; border-right-width: 0px; border-left-width: 0px;" align="left" valign="top"><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" async=""></script><!-- ad_4 --> <ins class="adsbygoogle" style="display: inline-block; width: 200px; height: 90px;" data-ad-client="ca-pub-3152641701721559" data-ad-slot="1097713822"></ins></td>
</tr>
</tbody>
</table>
</div>
<ol>
<li>Chrome displays “unable to connect to internet” massage with <span style="color: #ff0000;">Dinosaur</span> (T-Rex).<br />
<div id="attachment_1441" style="width: 531px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/05/unable-to-connect-to-internet.jpg"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1441" class=" wp-image-1441" src="https://trickybook.com/wp-content/uploads/2015/05/unable-to-connect-to-internet.jpg" alt="unable to connect to internet" width="521" height="210" srcset="https://trickybook.com/wp-content/uploads/2015/05/unable-to-connect-to-internet.jpg 637w, https://trickybook.com/wp-content/uploads/2015/05/unable-to-connect-to-internet-300x121.jpg 300w" sizes="auto, (max-width: 521px) 100vw, 521px" /></a><p id="caption-attachment-1441" class="wp-caption-text">unable to connect to internet [trickybook.com]</p></div></li>
<li>Press <span style="color: #ff0000;">Space button</span> from your keyboard or <span style="color: #ff0000;">touch</span> the Rex if you are on touch phone.</li>
<li>Game will automatically start, now you need to jump over the cacti. For jump, use space bar from your keyboard or tapping on the dinosaur, on touch screen.<br />
<div id="attachment_1436" style="width: 530px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/05/jump-over-the-cacti.jpg"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1436" class="size-full wp-image-1436" src="https://trickybook.com/wp-content/uploads/2015/05/jump-over-the-cacti.jpg" alt="jump over the cacti" width="520" height="179" srcset="https://trickybook.com/wp-content/uploads/2015/05/jump-over-the-cacti.jpg 520w, https://trickybook.com/wp-content/uploads/2015/05/jump-over-the-cacti-300x103.jpg 300w" sizes="auto, (max-width: 520px) 100vw, 520px" /></a><p id="caption-attachment-1436" class="wp-caption-text">jump over the cacti [trickybook.com]</p></div></li>
<li>At the top right corner of the game, you see two readings &#8220;one is your highest score&#8221; and other is your current game session score. This continuously increases as you play game. You hear a sound at every 100 points cover.</li>
<li>There is no <span style="color: #ff0000;">pause option / button</span> appears in game. So, for pause just leave Chrome screen by press outside of the Chrome. Game resume automatically when you again select chrome screen.</li>
<li>When Dinosaur touch with the cacti. Game was over <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f625.png" alt="😥" class="wp-smiley" style="height: 1em; max-height: 1em;" /> . For play again, press Space bar again.<br />
<div id="attachment_1437" style="width: 550px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/05/game-over.jpg"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1437" class=" wp-image-1437" src="https://trickybook.com/wp-content/uploads/2015/05/game-over.jpg" alt="game over when touch with cacti" width="540" height="176" srcset="https://trickybook.com/wp-content/uploads/2015/05/game-over.jpg 549w, https://trickybook.com/wp-content/uploads/2015/05/game-over-300x98.jpg 300w" sizes="auto, (max-width: 540px) 100vw, 540px" /></a><p id="caption-attachment-1437" class="wp-caption-text">game over when touch with cacti [trickybook.com]</p></div></li>
<li>One more thing you need to know; if during game playing, your internet is comeback than game session is automatically close. And your required web page is start loading.</li>
</ol>
<h3><strong>New updates in Chrome dinosaur game</strong></h3>
<ol>
<li>Now Chrome updates this game by adding <span style="color: #ff0000;">Birds</span>. These birds come when your score is almost above 400. For saving from these birds, you not always need a jump. After adding these birds, game becomes difficult with respect to previous version.
<p><div id="attachment_1467" style="width: 549px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/05/new-update-in-google-dinosaur-game.jpg"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1467" class=" wp-image-1467" src="https://trickybook.com/wp-content/uploads/2015/05/new-update-in-google-dinosaur-game.jpg" alt="new update in google dinosaur game" width="539" height="158" srcset="https://trickybook.com/wp-content/uploads/2015/05/new-update-in-google-dinosaur-game.jpg 631w, https://trickybook.com/wp-content/uploads/2015/05/new-update-in-google-dinosaur-game-300x88.jpg 300w" sizes="auto, (max-width: 539px) 100vw, 539px" /></a><p id="caption-attachment-1467" class="wp-caption-text">new update in google dinosaur game</p></div></li>
<li>Now you can also save your Dinosaur from flying bird by Pressing <span style="color: #ff0000;">Down arrow key</span>. In this way, it sets down and safely continue its running.<br />
<div id="attachment_1570" style="width: 550px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/05/press-down-key-to-save.png"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1570" class=" wp-image-1570" src="https://trickybook.com/wp-content/uploads/2015/05/press-down-key-to-save.png" alt="press down key to save dinosaur demo image" width="540" height="139" srcset="https://trickybook.com/wp-content/uploads/2015/05/press-down-key-to-save.png 623w, https://trickybook.com/wp-content/uploads/2015/05/press-down-key-to-save-300x77.png 300w" sizes="auto, (max-width: 540px) 100vw, 540px" /></a><p id="caption-attachment-1570" class="wp-caption-text">press down key to save dinosaur [trickybook.com]</p></div></li>
</ol>
<p>This chrome dinosaur game is only present in recent versions. You have an old version? Then you need to upgrade your browser to play this game.</p>
<p><strong><span style="color: #ff0000;">Let’s play it!</span></strong></p>
<p>Now if your internet is connected. Disconnect it yourself to play chrome dinosaur game for testing. You really engine it. This is a very simple game. Chrome may update it more in future. Don&#8217;t forget to share with your friends.</p>
<p>The post <a href="https://trickybook.com/play-chrome-dinosaur-game-not-connect-internet/">Play chrome dinosaur game if unable to connect to internet</a> appeared first on <a href="https://trickybook.com">TrickyBook</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://trickybook.com/play-chrome-dinosaur-game-not-connect-internet/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Auto scroll a document in adobe reader continually</title>
		<link>https://trickybook.com/auto-scroll-a-document-in-adobe-reader-continually/</link>
					<comments>https://trickybook.com/auto-scroll-a-document-in-adobe-reader-continually/#comments</comments>
		
		<dc:creator><![CDATA[Mehran Aziz]]></dc:creator>
		<pubDate>Fri, 01 May 2015 12:38:53 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<guid isPermaLink="false">http://trickybook.com/?p=1403</guid>

					<description><![CDATA[<p>How to auto scroll a document in adobe reader continually &#8211; Move PDF document in adobe reader, up or down side, at any speed you want. You know adobe reader only open a document of PDF format. We can read&#8230; <a href="https://trickybook.com/auto-scroll-a-document-in-adobe-reader-continually/" class="more-link">Continue Reading <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a href="https://trickybook.com/auto-scroll-a-document-in-adobe-reader-continually/">Auto scroll a document in adobe reader continually</a> appeared first on <a href="https://trickybook.com">TrickyBook</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2 style="text-align: center;">How to auto scroll a document in adobe reader continually &#8211; Move PDF document in adobe reader, up or down side, at any speed you want.</h2>
<div style="float: left; margin: 11px 5px 5px 0;"><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" async=""></script><!-- ad_7 --> <ins class="adsbygoogle" style="display: inline-block; width: 336px; height: 280px;" data-ad-client="ca-pub-3152641701721559" data-ad-slot="6707003426"></ins><script>// <![CDATA[
(adsbygoogle = window.adsbygoogle || []).push({});
// ]]&gt;</script></div>
<p>You know adobe reader only open a document of PDF format. We can read any article, book, slide and any other document which is in PDF format.</p>
<p>You scroll a document in adobe reader by pressing down/up arrow keys. You need to press these buttons rapidly for up and down the document. This thinking is boring when you read a long document or book.</p>
<p>In adobe reader, you can scroll automatically up and down document, with any speed you want.</p>
<p>This facility is very helpful for the readers that prefer to read documents on computer screen. You may also like to read <a href="https://trickybook.com/how-to-convert-webpage-to-pdf/">How to convert webpage to pdf format</a>.</p>
<div id="attachment_1419" style="width: 249px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/05/auto-scroll.png"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1419" class=" wp-image-1419" src="https://trickybook.com/wp-content/uploads/2015/05/auto-scroll.png" alt="Auto scroll a document in adobe reader" width="239" height="239" srcset="https://trickybook.com/wp-content/uploads/2015/05/auto-scroll.png 300w, https://trickybook.com/wp-content/uploads/2015/05/auto-scroll-150x150.png 150w" sizes="auto, (max-width: 239px) 100vw, 239px" /></a><p id="caption-attachment-1419" class="wp-caption-text">Auto scroll a document in adobe reader</p></div>
<h3 style="text-align: left;"><strong>Steps to auto scroll a document in adobe reader continually</strong></h3>
<ol>
<li>Open any PDF document or book in Adobe Reader.</li>
<li>For scrolling document, go to top menu bar, Click on <span style="color: #ff0000;">view</span> and then in <span style="color: #ff0000;">Page Display</span> select <span style="color: #ff0000;">automatically Scroll</span>. Or simply using short key for scrolling <span style="color: #ff0000;">Ctrl­ + Shift + H</span>. Your document is start moving.<br />
<div id="attachment_1417" style="width: 584px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/05/Auto-scroll-a-document-in-adobe-reader.jpg"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1417" class="size-full wp-image-1417" src="https://trickybook.com/wp-content/uploads/2015/05/Auto-scroll-a-document-in-adobe-reader.jpg" alt="Auto scroll a document in adobe reader" width="574" height="351" srcset="https://trickybook.com/wp-content/uploads/2015/05/Auto-scroll-a-document-in-adobe-reader.jpg 574w, https://trickybook.com/wp-content/uploads/2015/05/Auto-scroll-a-document-in-adobe-reader-300x183.jpg 300w" sizes="auto, (max-width: 574px) 100vw, 574px" /></a><p id="caption-attachment-1417" class="wp-caption-text">start Auto scroll a document in adobe reader [trickybook.com]</p></div></li>
<li>This start moving with default speed. You can increase/decrease moving speed by press up arrow keys. You can set the speed according to your reading speed.</li>
<li>When you start auto scroll in adobe reader than you cannot go to next page by using arrow keys. Because now arrow keys are used for changing the speed of the document. So, for moving next page press <span style="color: #ff0000;">Space Button </span>or<span style="color: #ff0000;"> pg down </span>keys.</li>
<li>If you want to stop auto scroll than again press <span style="color: #ff0000;">Ctrl +shift +H</span> Buttons. After press these short keys, your document is stop continue scrolling.</li>
</ol>
<p>Hope! You enjoy auto scroll a document in adobe reader. We often said that reading in soft form on computer screen is a difficult job. Therefore, we prefer to read textbook in hard form. But this type of facilities like current auto scroll facility increase the interest of readers <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f600.png" alt="😀" class="wp-smiley" style="height: 1em; max-height: 1em;" /> .</p>
<p>The post <a href="https://trickybook.com/auto-scroll-a-document-in-adobe-reader-continually/">Auto scroll a document in adobe reader continually</a> appeared first on <a href="https://trickybook.com">TrickyBook</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://trickybook.com/auto-scroll-a-document-in-adobe-reader-continually/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>How to create a virtual machine using vmware</title>
		<link>https://trickybook.com/how-to-create-a-virtual-machine-using-vmware/</link>
					<comments>https://trickybook.com/how-to-create-a-virtual-machine-using-vmware/#respond</comments>
		
		<dc:creator><![CDATA[Mehran Aziz]]></dc:creator>
		<pubDate>Tue, 07 Apr 2015 06:42:30 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<guid isPermaLink="false">http://trickybook.com/?p=1300</guid>

					<description><![CDATA[<p>How to create a virtual machine using vmware workstation 10 &#8211; learn how to make windows 7 virtual machine using VMware workstaion. Everyone knows the importance of virtual machine. Virtual machine provides a very good platform to work virtually on&#8230; <a href="https://trickybook.com/how-to-create-a-virtual-machine-using-vmware/" class="more-link">Continue Reading <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a href="https://trickybook.com/how-to-create-a-virtual-machine-using-vmware/">How to create a virtual machine using vmware</a> appeared first on <a href="https://trickybook.com">TrickyBook</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2 style="text-align: center;">How to create a virtual machine using vmware workstation 10 &#8211; learn how to make windows 7 virtual machine using VMware workstaion.</h2>
<div style="float: left; margin: 11px 5px 5px 0;"><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" async=""></script><!-- ad_7 --> <ins class="adsbygoogle" style="display: inline-block; width: 336px; height: 280px;" data-ad-client="ca-pub-3152641701721559" data-ad-slot="6707003426"></ins><script>// <![CDATA[
(adsbygoogle = window.adsbygoogle || []).push({});
// ]]&gt;</script></div>
<p>Everyone knows the importance of virtual machine. Virtual machine provides a very good platform to work virtually on windows.</p>
<p>Creating virtual machine is very simple. You can use any operating system like Ubuntu, windows, fedora, Red hat Linux etc. Or any server like mikrotik, windows, ubuntu severs and many others.</p>
<p>After making these virtual machine you can do any experiments on them. For example, you want to learn mikrotik server configuration than you can simply do this on your own system. You can also create ubuntu proxy servers virtually.</p>
<p>Due to these advantages of virtual machine, we need to work on it. So, no more wait just start learning How to create a virtual machine using VMware workstation.</p>
<h2 style="text-align: center;"><strong>Follow bellow steps to create a virtual machine:</strong></h2>
<p>Open VMware Workstation and click on File in the menu bar. Here select <span style="color: #ff0000;">Create a New virtual machine</span> or simply press ctrl + n buttons.</p>
<ol>
<li>A new window name “New Virtual Machine Wizard&#8221; is appearing. Here you need to select, what type of configuration you want to use. Select <span style="color: #ff0000;">Typical</span> if you are new user and press next.
<div align="center">
<table border="0" width="67%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="border-color: #ededed; border-right-width: 0px; border-left-width: 0px;" align="left" valign="top"><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" async=""></script><!-- ad_4 --> <ins class="adsbygoogle" style="display: inline-block; width: 200px; height: 90px;" data-ad-client="ca-pub-3152641701721559" data-ad-slot="1097713822"></ins><script>// <![CDATA[
(adsbygoogle = window.adsbygoogle || []).push({});
// ]]&gt;</script></td>
<td style="border-color: #ededed; border-right-width: 0px; border-left-width: 0px;" align="left" valign="top"><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" async=""></script><!-- ad_4 --> <ins class="adsbygoogle" style="display: inline-block; width: 200px; height: 90px;" data-ad-client="ca-pub-3152641701721559" data-ad-slot="1097713822"></ins><script>// <![CDATA[
(adsbygoogle = window.adsbygoogle || []).push({});
// ]]&gt;</script></td>
</tr>
</tbody>
</table>
</div>
</li>
<li>There are three options
<ul>
<li>Use first option if operating system/server is on Disk.</li>
<li>2nd for selecting ISO image of the operating system during creation of virtual machine.</li>
<li>In 3rd you can create a virtual machine without any operating system. But you need to select an operating system in ISO format, before using this virtual machine.</li>
</ul>
<p><div id="attachment_1357" style="width: 450px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/04/1.jpg"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1357" class="size-full wp-image-1357" src="https://trickybook.com/wp-content/uploads/2015/04/1.jpg" alt="three methods to select operating system  " width="440" height="400" srcset="https://trickybook.com/wp-content/uploads/2015/04/1.jpg 440w, https://trickybook.com/wp-content/uploads/2015/04/1-300x273.jpg 300w" sizes="auto, (max-width: 440px) 100vw, 440px" /></a><p id="caption-attachment-1357" class="wp-caption-text">three methods for how to create a virtual machine   [trickybook.com]</p></div></li>
<li><span style="text-decoration: underline;">In my case, I select second option and browse an iso image of windows 7 from my system</span>. This iso image may be of an operating system or server.</li>
<li>In next window you need to select <span style="color: #ff0000;">guest operating system</span> type and there version. Select Microsoft windows if your operating system is windows product (like windows 7, 8 or windows server 2008, 2003). Or select Linux if you want to install any Linux distro like (fedora, Ubuntu etc).</li>
<li>Next page enter a product key; you need to enter this product key in case of windows product.And select flavor of windows product (professional, home basic, premium etc). Linux products not required product keys. at the end press next.<br />
<div id="attachment_1358" style="width: 451px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/04/2.jpg"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1358" class="size-full wp-image-1358" src="https://trickybook.com/wp-content/uploads/2015/04/2.jpg" alt="enter a product key and select flavor" width="441" height="399" srcset="https://trickybook.com/wp-content/uploads/2015/04/2.jpg 441w, https://trickybook.com/wp-content/uploads/2015/04/2-300x271.jpg 300w" sizes="auto, (max-width: 441px) 100vw, 441px" /></a><p id="caption-attachment-1358" class="wp-caption-text">enter a product key and select flavor [trickybook.com]</p></div></li>
<li>Here you see default name and path for the new virtual machine. You can change name and also the path of the virtual machine if you want. and press next.<br />
<div id="attachment_1359" style="width: 452px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/04/3.jpg"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1359" class="size-full wp-image-1359" src="https://trickybook.com/wp-content/uploads/2015/04/3.jpg" alt="Change name and path of the virtual machine" width="442" height="399" srcset="https://trickybook.com/wp-content/uploads/2015/04/3.jpg 442w, https://trickybook.com/wp-content/uploads/2015/04/3-300x271.jpg 300w" sizes="auto, (max-width: 442px) 100vw, 442px" /></a><p id="caption-attachment-1359" class="wp-caption-text">Change name and path of the virtual machine [trickybook.com]</p></div></li>
<li>Set the size of the disk, by default it is 60 GB for windows. Change this to 20 GB or as you like. Select <span style="color: #ff0000;">split virtual disk into multiple files</span> option from below. This option provides you help to use virtual machine on any other system.  Just copy the folder which contains the virtual machine files and past on other system which also have Virtual machine software.  And use it.<br />
<div id="attachment_1360" style="width: 450px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/04/4.jpg"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1360" class="size-full wp-image-1360" src="https://trickybook.com/wp-content/uploads/2015/04/4.jpg" alt="Select disk space and way of saving data" width="440" height="401" srcset="https://trickybook.com/wp-content/uploads/2015/04/4.jpg 440w, https://trickybook.com/wp-content/uploads/2015/04/4-300x273.jpg 300w" sizes="auto, (max-width: 440px) 100vw, 440px" /></a><p id="caption-attachment-1360" class="wp-caption-text">Select disk space and way of saving data [trickybook.com]</p></div></li>
<li>In next window you can customize hardware, like you can increase or decrease the ram allocation to virtual machine. and finally press<span style="color: #ff0000;"> finish</span>.</li>
</ol>
<p>VMware start creating disk. After few seconds, you see operating system installation is start which you want to install on in virtual machine. This installation is similar like normal installation. This procedure requires some time and it depends upon your physical memory allocation. If you allocate more memory than it install quickly <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /> .</p>
<p>Hope! No more need to search for how to create a virtual machine using vmware. Don&#8217;t forget to share with your friends.</p>
<p>The post <a href="https://trickybook.com/how-to-create-a-virtual-machine-using-vmware/">How to create a virtual machine using vmware</a> appeared first on <a href="https://trickybook.com">TrickyBook</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://trickybook.com/how-to-create-a-virtual-machine-using-vmware/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Backup and restore PTCL DSL modem settings</title>
		<link>https://trickybook.com/backup-and-restore-ptcl-dsl-modem-settings/</link>
					<comments>https://trickybook.com/backup-and-restore-ptcl-dsl-modem-settings/#respond</comments>
		
		<dc:creator><![CDATA[Mehran Aziz]]></dc:creator>
		<pubDate>Sun, 05 Apr 2015 06:42:58 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<guid isPermaLink="false">http://trickybook.com/?p=1297</guid>

					<description><![CDATA[<p>How to Backup and Restore PTCL DSL modem settings &#8211; Do this important step, before any changing in your DSL modem settings. You may need to change configuration settings of DSL modem. like changing WiFi password, use time restriction or&#8230; <a href="https://trickybook.com/backup-and-restore-ptcl-dsl-modem-settings/" class="more-link">Continue Reading <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a href="https://trickybook.com/backup-and-restore-ptcl-dsl-modem-settings/">Backup and restore PTCL DSL modem settings</a> appeared first on <a href="https://trickybook.com">TrickyBook</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2 style="text-align: center;">How to Backup and Restore PTCL DSL modem settings &#8211; Do this important step, before any changing in your DSL modem settings.</h2>
<div style="float: left; margin: 11px 5px 5px 0;"><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" async=""></script><!-- ad_7 --> <ins class="adsbygoogle" style="display: inline-block; width: 336px; height: 280px;" data-ad-client="ca-pub-3152641701721559" data-ad-slot="6707003426"></ins><script>// <![CDATA[
(adsbygoogle = window.adsbygoogle || []).push({});
// ]]&gt;</script></div>
<p>You may need to change configuration settings of DSL modem. like changing WiFi password, use time restriction or mac filter options, make a bridge and there are a lot more settings.</p>
<p>But you not try new things because you are afraid for the loss of settings. So, no more scare to try new things. You may familiar or not from backup and restore PTCL DSL modem settings facility. This facility provides you a backup (.conf) file which contains all your modem settings. This file is in some kilobytes (kb).</p>
<p>When you download this file in your pc, you can do any change in configuration setting without any fear. And at any stage where you do some wrong settings and not find its correction than simply restore backup file. Follow below steps to backup and restore PTCL DSL modem settings.</p>
<p>You may also like to read <a title="How to secure wifi network using MAC filter" href="https://trickybook.com/how-to-secure-wifi-network-using-mac-filter/">how to secure wifi network using MAC filter in DSL modem</a>.</p>
<h3><strong>Procedure to backup PTCL DSL modem settings</strong></h3>
<ol>
<li>First of all login to dsl modem by write ip 192.168.1.1 in browser url. If you not already login to DSL modem or you not change the password than simple use default login (admin as username and also admin as password). In latest PTCL modem, the username is remaining admin. But password in no more admin. But don&#8217;t worry their password is written behind dsl modem. So, find it and login.</li>
<li>When you are successfully login to dsl modem, you see some basic settings. Click on <span style="color: #ff0000;">Advanced settings</span> to see complete settings. You can also check your <a href="http://howpk.com/check-ptcl-telephone-bill-online-duplicate/" target="_blank">PTCL bill</a> online free.</li>
<li>In advance settings, there is a list of different option at the left side. Click on <span style="color: #ff0000;">management </span>option and select <span style="color: #ff0000;">settings</span> under management. In settings, you see three options &#8220;backup, restore and restore default&#8221;. Click on backup option to backup the configuration settings.
<div align="center">
<table border="0" width="67%" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="border-color: #ededed; border-right-width: 0px; border-left-width: 0px;" align="left" valign="top"><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" async=""></script><!-- ad_4 --> <ins class="adsbygoogle" style="display: inline-block; width: 200px; height: 90px;" data-ad-client="ca-pub-3152641701721559" data-ad-slot="1097713822"></ins><script>// <![CDATA[
(adsbygoogle = window.adsbygoogle || []).push({});
// ]]&gt;</script></td>
<td style="border-color: #ededed; border-right-width: 0px; border-left-width: 0px;" align="left" valign="top"><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" async=""></script><!-- ad_4 --> <ins class="adsbygoogle" style="display: inline-block; width: 200px; height: 90px;" data-ad-client="ca-pub-3152641701721559" data-ad-slot="1097713822"></ins><script>// <![CDATA[
(adsbygoogle = window.adsbygoogle || []).push({});
// ]]&gt;</script></td>
</tr>
</tbody>
</table>
</div>
</li>
<li>At the right side, <span style="color: #ff0000;">backup settings</span> button is appearing click on it, to save your router configurations to a file on your PC. Extension of this file is .conf.</li>
</ol>
<div id="attachment_1317" style="width: 590px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/04/backup-dsl-modem-settings.jpg"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1317" class=" wp-image-1317" src="https://trickybook.com/wp-content/uploads/2015/04/backup-dsl-modem-settings.jpg" alt="backup dsl modem settings" width="580" height="350" srcset="https://trickybook.com/wp-content/uploads/2015/04/backup-dsl-modem-settings.jpg 760w, https://trickybook.com/wp-content/uploads/2015/04/backup-dsl-modem-settings-300x181.jpg 300w, https://trickybook.com/wp-content/uploads/2015/04/backup-dsl-modem-settings-200x120.jpg 200w" sizes="auto, (max-width: 580px) 100vw, 580px" /></a><p id="caption-attachment-1317" class="wp-caption-text">backup dsl modem settings [trickybook.com]</p></div>
<h3><strong>How to restore PTCL DSL modem settings</strong></h3>
<ol>
<li>If you want to update / restore your backup settings from your pc. Again go to <span style="color: #ff0000;">management &gt; settings &gt; update settings</span>. At the right side, you see two buttons <span style="color: #ff0000;">Choose File</span> and <span style="color: #ff0000;">Update Settings</span>. Click on <strong>choose file</strong> button to select a file from your PC.</li>
<li>After choosing file, click on <strong>update settings</strong> button. When file is updated than modem is <strong>reboot</strong> to achieve new settings.<div id="attachment_1318" style="width: 591px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/04/restore-dsl-modem-settings.jpg"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1318" class=" wp-image-1318" src="https://trickybook.com/wp-content/uploads/2015/04/restore-dsl-modem-settings.jpg" alt="restore dsl modem settings" width="581" height="329" srcset="https://trickybook.com/wp-content/uploads/2015/04/restore-dsl-modem-settings.jpg 775w, https://trickybook.com/wp-content/uploads/2015/04/restore-dsl-modem-settings-300x170.jpg 300w" sizes="auto, (max-width: 581px) 100vw, 581px" /></a><p id="caption-attachment-1318" class="wp-caption-text">restore dsl modem settings [tricybook.com]</p></div></li>
</ol>
<p><span style="color: #ff0000;">Remember!</span> There is also a third option available which is Restore default. Use this option carefully because it changes all your settings to default settings. After reading above procedure, you are able to backup and restore PTCL DSL modem settings. Now change any modem settings and do any experiment you want without the afraid of problem in modem settings.</p>
<p>The post <a href="https://trickybook.com/backup-and-restore-ptcl-dsl-modem-settings/">Backup and restore PTCL DSL modem settings</a> appeared first on <a href="https://trickybook.com">TrickyBook</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://trickybook.com/backup-and-restore-ptcl-dsl-modem-settings/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to use keyboard as mouse in windows</title>
		<link>https://trickybook.com/how-to-use-keyboard-as-mouse/</link>
					<comments>https://trickybook.com/how-to-use-keyboard-as-mouse/#respond</comments>
		
		<dc:creator><![CDATA[Mehran Aziz]]></dc:creator>
		<pubDate>Sun, 22 Mar 2015 17:25:19 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<guid isPermaLink="false">http://trickybook.com/?p=1268</guid>

					<description><![CDATA[<p>How to use keyboard as mouse to move cursor in windows 7/8- Complete setting of using keyboard for moving mouse cursor effectively. No doubt mouse is very important device when we work in graphical environment. As we use mouse cursor&#8230; <a href="https://trickybook.com/how-to-use-keyboard-as-mouse/" class="more-link">Continue Reading <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a href="https://trickybook.com/how-to-use-keyboard-as-mouse/">How to use keyboard as mouse in windows</a> appeared first on <a href="https://trickybook.com">TrickyBook</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2 style="text-align: center;">How to use keyboard as mouse to move cursor in windows 7/8- Complete setting of using keyboard for moving mouse cursor effectively.</h2>
<div style="float: left; margin: 11px 5px 5px 0;"><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" async=""></script><!-- ad_7 --> <ins class="adsbygoogle" style="display: inline-block; width: 336px; height: 280px;" data-ad-client="ca-pub-3152641701721559" data-ad-slot="6707003426"></ins><script>// <![CDATA[
(adsbygoogle = window.adsbygoogle || []).push({});
// ]]&gt;</script></div>
<p>No doubt mouse is very important device when we work in graphical environment. As we use mouse cursor in windows environment (pointing tool) to perform as much as possible tasks.</p>
<p>But sometimes when you not have a mouse or your mouse is not working properly than don&#8217;t worry more. Because you can use your keyboard to perform all tasks which you need to do with mouse.</p>
<p>You can move your cursor with numeric key of keyboard. The method of how to use keyboard as mouse in windows is available below. Just follow the below easy steps with screenshots. You may like to read <a title="How to change startup programs in windows" href="https://trickybook.com/how-to-change-startup-programs/">How to change startup programs in windows</a>.</p>
<h3><strong>How to use keyboard as mouse in windows</strong></h3>
<ol>
<li>Go to control panel in your windows. Click on <span style="color: #ff0000;">Ease of Access</span>.<br />
<div id="attachment_1278" style="width: 537px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/03/1.jpg"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1278" class=" wp-image-1278" src="https://trickybook.com/wp-content/uploads/2015/03/1.jpg" alt="Select easy of access option in control panel" width="527" height="304" srcset="https://trickybook.com/wp-content/uploads/2015/03/1.jpg 555w, https://trickybook.com/wp-content/uploads/2015/03/1-300x173.jpg 300w" sizes="auto, (max-width: 527px) 100vw, 527px" /></a><p id="caption-attachment-1278" class="wp-caption-text">Select easy of access option in control panel [trickybook.com]</p></div></li>
<li>Select <span style="color: #ff0000;">Ease of Access Center</span> from Here. and then click on <span style="color: #ff0000;">Make the mouse easier to use</span>.<br />
<div id="attachment_1279" style="width: 538px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/03/2.jpg"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1279" class=" wp-image-1279" src="https://trickybook.com/wp-content/uploads/2015/03/2.jpg" alt="make the mouse ease to use" width="528" height="182" srcset="https://trickybook.com/wp-content/uploads/2015/03/2.jpg 706w, https://trickybook.com/wp-content/uploads/2015/03/2-300x104.jpg 300w" sizes="auto, (max-width: 528px) 100vw, 528px" /></a><p id="caption-attachment-1279" class="wp-caption-text">make the mouse ease to use [trickybook.com]</p></div></li>
<li>Now you see all mouse settings here. Click on <span style="color: #ff0000;">set up Mouse Keys</span> under the &#8220;Control the mouse with the keyboard&#8221; settings.</li>
</ol>
<div><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" async=""></script><!-- ad_3 --> <ins class="adsbygoogle" style="display: inline-block; width: 468px; height: 15px;" data-ad-client="ca-pub-3152641701721559" data-ad-slot="8760581422"></ins><script>// <![CDATA[
(adsbygoogle = window.adsbygoogle || []).push({});
// ]]&gt;</script></div>
<p>This <span style="color: #ff0000;">set up Mouse Keys</span> windows contains all settings for using keyboard as mouse.</p>
<ul>
<li>First check button is for enable mouse keys, so check it.</li>
<li>In the session of <span style="color: #ff0000;">pointer speed</span>, move speed and acceleration sliders to full right side to achieve high and fast levels respectively.</li>
<li>Next check &#8220;Hold down CTRL to speed up and SHIFT to slow down&#8221; button. After selecting this option, you can move cursor with more/less speed by pressing ctrl/shift keys.</li>
<li>After doing all these settings, like in below image click on <span style="color: #ff0000;">Apply</span> to save these settings.<br />
<div id="attachment_1280" style="width: 594px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/03/3.jpg"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1280" class=" wp-image-1280" src="https://trickybook.com/wp-content/uploads/2015/03/3.jpg" alt="how to use keyboard as mouse" width="584" height="403" srcset="https://trickybook.com/wp-content/uploads/2015/03/3.jpg 1029w, https://trickybook.com/wp-content/uploads/2015/03/3-300x207.jpg 300w, https://trickybook.com/wp-content/uploads/2015/03/3-1024x708.jpg 1024w" sizes="auto, (max-width: 584px) 100vw, 584px" /></a><p id="caption-attachment-1280" class="wp-caption-text">how to use keyboard as mouse [trickybook.com]</p></div></li>
</ul>
<p>When you doing all above settings; You are able to move mouse cursor with keyboard <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /> . You can use followings numeric keys to move cursor.</p>
<table>
<tbody>
<tr>
<th>top left corner</th>
<th>top right corner</th>
<th>bottom left corner</th>
<th>bottom right<br />
corner</th>
<th>left click</th>
</tr>
<tr>
<td>7</td>
<td>9</td>
<td>1</td>
<td>3</td>
<td>5</td>
</tr>
<tr>
<th> up side</th>
<th>down side</th>
<th>left side</th>
<th>right side</th>
<th>ON/OFF</th>
</tr>
<tr>
<td> 8</td>
<td> 2</td>
<td>4</td>
<td>6</td>
<td> Num Lock</td>
</tr>
</tbody>
</table>
<p>These are the default numeric keys which you find on external or laptop (having full keyboard) keyboard. These key may be different, if your keyboard layout is different. You may also like to check <a title="9 best new Windows 10 features" href="https://trickybook.com/best-new-windows-10-features/">Best new Windows 10 features</a>.</p>
<p>The post <a href="https://trickybook.com/how-to-use-keyboard-as-mouse/">How to use keyboard as mouse in windows</a> appeared first on <a href="https://trickybook.com">TrickyBook</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://trickybook.com/how-to-use-keyboard-as-mouse/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to delete Skype chat &#038; call history</title>
		<link>https://trickybook.com/how-to-delete-skype-chat-history/</link>
					<comments>https://trickybook.com/how-to-delete-skype-chat-history/#respond</comments>
		
		<dc:creator><![CDATA[Mehran Aziz]]></dc:creator>
		<pubDate>Thu, 05 Mar 2015 20:50:24 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<guid isPermaLink="false">http://trickybook.com/?p=1236</guid>

					<description><![CDATA[<p>How to delete Skype chat history and also clear call, video messages, file transfer history completely, in Skype desktop application. Hey, welcome to Skype users. Every one of you knows Skype provides live audio/video calls, chatting and files transfer facility freely.&#8230; <a href="https://trickybook.com/how-to-delete-skype-chat-history/" class="more-link">Continue Reading <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a href="https://trickybook.com/how-to-delete-skype-chat-history/">How to delete Skype chat &#038; call history</a> appeared first on <a href="https://trickybook.com">TrickyBook</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2 style="text-align: center;">How to delete Skype chat history and also clear call, video messages, file transfer history completely, in Skype desktop application.</h2>
<div style="float: left; margin: 11px 5px 5px 0;"><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" async=""></script><!-- ad --> <ins class="adsbygoogle" style="display: inline-block; width: 300px; height: 250px;" data-ad-client="ca-pub-3152641701721559" data-ad-slot="5831551822"></ins><script>// <![CDATA[
(adsbygoogle = window.adsbygoogle || []).push({});
// ]]&gt;</script></div>
<p>Hey, welcome to Skype users. Every one of you knows Skype provides live audio/video calls, chatting and files transfer facility freely. Skype application saves message and also information about these calls as history in your system.</p>
<p>This history is helpful in many situations like you can read previous messages. But in some cases you may want to delete this history. So, if you still not know about how to delete Skype chat history than don&#8217;t worry and ready to learn in this article.</p>
<p>You may also like to read <a title="How to block and unblock someone on Skype" href="https://trickybook.com/how-to-block-and-unblock-someone-on-skype/">How to block and unblock someone on Skype</a>.</p>
<h3><strong>Learn how to delete Skype chat history</strong></h3>
<ol>
<li>First of all, sign in to Skype with your Skype account, on windows desktop application of the Skype.</li>
<li>When you will successfully login to Skype. Click on <span style="color: #ff0000;">Tools</span> from the top menu bar and select <span style="color: #ff0000;">Options..</span> from here. You can open it by pressing ( <span style="color: #ff0000;">ctrl+,</span> ) together.<br />
<div id="attachment_1247" style="width: 366px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/03/open-options.jpg"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1247" class="size-full wp-image-1247" src="https://trickybook.com/wp-content/uploads/2015/03/open-options.jpg" alt="open skype options setting" width="356" height="151" srcset="https://trickybook.com/wp-content/uploads/2015/03/open-options.jpg 356w, https://trickybook.com/wp-content/uploads/2015/03/open-options-300x127.jpg 300w" sizes="auto, (max-width: 356px) 100vw, 356px" /></a><p id="caption-attachment-1247" class="wp-caption-text">open skype options setting [trickybook.com]</p></div></li>
<li>Now in options window, Select<span style="color: #ff0000;"> Privacy</span> from the left side. And open <span style="color: #ff0000;">privacy settings</span> under privacy tab.
<div><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" async=""></script><!-- ad_3 --> <ins class="adsbygoogle" style="display: inline-block; width: 468px; height: 15px;" data-ad-client="ca-pub-3152641701721559" data-ad-slot="8760581422"></ins><script>// <![CDATA[
(adsbygoogle = window.adsbygoogle || []).push({});
// ]]&gt;</script></div>
<p>You may know that you can keep history for a specific time. Means, skype will automatically delete previous history before that specific time. This settings are available under &#8220;<span style="color: #ff0000;">Keep history for</span>&#8221; text.<br />
you can keep history for 2 weeks, one month, 3 months or forever.<br />
Select any option as you like for future. Remember, this setting is not related with present topic &#8220;how to delete skype chat history&#8221;. So, leave this here and go to next step <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /> .</li>
<li>You see some settings for history at the middle of the window. Click on <span style="color: #ff0000;">clear history</span> button to delete skype chat history.<br />
<div id="attachment_1246" style="width: 575px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/03/clear-history.jpg"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1246" class=" wp-image-1246" src="https://trickybook.com/wp-content/uploads/2015/03/clear-history.jpg" alt="clear skype history" width="565" height="435" srcset="https://trickybook.com/wp-content/uploads/2015/03/clear-history.jpg 793w, https://trickybook.com/wp-content/uploads/2015/03/clear-history-300x231.jpg 300w" sizes="auto, (max-width: 565px) 100vw, 565px" /></a><p id="caption-attachment-1246" class="wp-caption-text">clear skype history [trickybook.com]</p></div></li>
<li>As you click on clear history, you see a new small message for conformation of history removal. Click on <span style="color: #ff0000;">delete</span>.<br />
<div id="attachment_1248" style="width: 391px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/03/delete-history.jpg"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1248" class="size-full wp-image-1248" src="https://trickybook.com/wp-content/uploads/2015/03/delete-history.jpg" alt="conform to delete skype history" width="381" height="254" srcset="https://trickybook.com/wp-content/uploads/2015/03/delete-history.jpg 381w, https://trickybook.com/wp-content/uploads/2015/03/delete-history-300x200.jpg 300w" sizes="auto, (max-width: 381px) 100vw, 381px" /></a><p id="caption-attachment-1248" class="wp-caption-text">conform to delete skype history [trickybook.com]</p></div></li>
<li>You clearly understand from above image that which things history is deleting. All Skype Messages, SMS, calls, voice messages and file transfers will delete from history. At last click on &#8220;save button&#8221; on previous windows (options window) to save and close options window.</li>
</ol>
<div><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" async=""></script><!-- ad_3 --> <ins class="adsbygoogle" style="display: inline-block; width: 468px; height: 15px;" data-ad-client="ca-pub-3152641701721559" data-ad-slot="8760581422"></ins><script>// <![CDATA[
(adsbygoogle = window.adsbygoogle || []).push({});
// ]]&gt;</script></div>
<p>FINAL WORDS:</p>
<p>Now are successfully delete Skype sms, calls, file transfers history successfully. Hope! you clearly understand how to delete skype chat history successfully. Feel free to comment below, in case of any problem during above process.</p>
<p>The post <a href="https://trickybook.com/how-to-delete-skype-chat-history/">How to delete Skype chat &#038; call history</a> appeared first on <a href="https://trickybook.com">TrickyBook</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://trickybook.com/how-to-delete-skype-chat-history/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>9 best new Windows 10 features</title>
		<link>https://trickybook.com/best-new-windows-10-features/</link>
					<comments>https://trickybook.com/best-new-windows-10-features/#respond</comments>
		
		<dc:creator><![CDATA[Mehran Aziz]]></dc:creator>
		<pubDate>Tue, 03 Mar 2015 07:28:17 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<guid isPermaLink="false">http://trickybook.com/?p=1191</guid>

					<description><![CDATA[<p>Best new Windows 10 features list and some information about them &#8211; also these features comparison with previous versions. Here is the best new Windows 10 features list. All the features which are listed below are not new. Some of&#8230; <a href="https://trickybook.com/best-new-windows-10-features/" class="more-link">Continue Reading <span class="meta-nav">&#8594;</span></a></p>
<p>The post <a href="https://trickybook.com/best-new-windows-10-features/">9 best new Windows 10 features</a> appeared first on <a href="https://trickybook.com">TrickyBook</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2 style="text-align: center;">Best new Windows 10 features list and some information about them &#8211; also these features comparison with previous versions.</h2>
<div style="float: left; margin: 11px 5px 5px 0;"><script src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js" async=""></script><!-- ad_7 --> <ins class="adsbygoogle" style="display: inline-block; width: 336px; height: 280px;" data-ad-client="ca-pub-3152641701721559" data-ad-slot="6707003426"></ins><script>// <![CDATA[
(adsbygoogle = window.adsbygoogle || []).push({});
// ]]&gt;</script></div>
<p>Here is the best new Windows 10 features list. All the features which are listed below are not new. Some of them are updated from previous features. Now these features are really amazing.</p>
<p>Personally i like all operating system either Linux, mac or windows. As I check the new features of windows 10, i fell that many changes in these features come from other operating systems like Linux/Mac systems. This thing is really good because this is welcome for Linux/mac users.</p>
<p>These changes are really help for new and also current users of windows operating system. Some of best new windows 10 features are listed below. So, let’s read them.</p>
<h3><strong>Return of the Start menu</strong></h3>
<p>First best new Windows 10 feature is return of the start menu. Start menu same like start menu of the windows 7.</p>
<ul>
<li>Here search bar and all apps available.</li>
<li>You will find traditional windows desktop apps and also metro apps/universal apps here.</li>
<li>You can pin your favorite apps at right side of the start menu. These pinned apps can easily unpin from here by right click on it.</li>
<li>Same like windows 8, you see moving tiles at right side of the start menu. You can resize these tiles also.</li>
</ul>
<div id="attachment_1228" style="width: 439px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/03/start-menu.png"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1228" class="size-full wp-image-1228" src="https://trickybook.com/wp-content/uploads/2015/03/start-menu.png" alt="start menu return " width="429" height="471" srcset="https://trickybook.com/wp-content/uploads/2015/03/start-menu.png 429w, https://trickybook.com/wp-content/uploads/2015/03/start-menu-273x300.png 273w" sizes="auto, (max-width: 429px) 100vw, 429px" /></a><p id="caption-attachment-1228" class="wp-caption-text">start menu return [trickybook.com]</p></div>
<h3><strong>Window Universal Apps </strong></h3>
<p>Updated windowed universal apps view is best Windows 10 features. Universal apps are same like windows 8 but flexibility in their appearances is increased.</p>
<ul>
<li>Now you can Maxims, minims and also open universal app in any size like other windows desktop apps.</li>
<li>In windows 8, we open the settings of any app by right click in the app but this thing is changed in windows 10. Now you see a hand burger button at the top right side of the universal app. Here you find all settings and functionality of the app.</li>
</ul>
<div id="attachment_1227" style="width: 618px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/03/windows-store-apps.jpg"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1227" class=" wp-image-1227" src="https://trickybook.com/wp-content/uploads/2015/03/windows-store-apps.jpg" alt="windows store apps updated view" width="608" height="467" srcset="https://trickybook.com/wp-content/uploads/2015/03/windows-store-apps.jpg 835w, https://trickybook.com/wp-content/uploads/2015/03/windows-store-apps-300x230.jpg 300w" sizes="auto, (max-width: 608px) 100vw, 608px" /></a><p id="caption-attachment-1227" class="wp-caption-text">windows store apps updated view</p></div>
<h3><strong>Task View</strong></h3>
<p>Windows 10 best new feature is Task View for multiple desktops. Task view is a virtual desktop technology. This feature is not new for those who are pretty familiar with Linux/mac operating system. But this thing is definitely new for windows users. The idea behind this feature is to increase the number of desktops. For example we have only one desktop in windows 7 or 8. We open all apps (either desktop or universal apps) on that single desktop. Now in windows 10 you can open more than one desktop and can open different apps on different desktop.</p>
<ul>
<li>You can see only those apps which are available on that desktop (which you are currently selected). Other apps are hidden (which are opened on other desktops).</li>
<li>You can create, view, remove desktop from task view. We can also move open apps from one desktop to other desktop.</li>
<li>The apps which are opened on other desktops are having a thin line below them in the task bar.</li>
</ul>
<div id="attachment_1226" style="width: 617px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/03/task-view.jpg"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1226" class=" wp-image-1226" src="https://trickybook.com/wp-content/uploads/2015/03/task-view.jpg" alt="task view for managing desktops" width="607" height="449" srcset="https://trickybook.com/wp-content/uploads/2015/03/task-view.jpg 799w, https://trickybook.com/wp-content/uploads/2015/03/task-view-300x222.jpg 300w" sizes="auto, (max-width: 607px) 100vw, 607px" /></a><p id="caption-attachment-1226" class="wp-caption-text">task view for managing desktopstask view</p></div>
<h3><strong>Continuum</strong></h3>
<p>Windows 10 best new feature 4 is continuum. Continuum is actually for the tablet environment. For example first you attach mouse and keyboard with tablet. And when you detach them than windows 10 automatically change the environment like start button shift to tablet start button. At that time UI elements become bigger to allow you to easily navigate with finger on tablet screen. For more understanding about this feature watch below video.</p>
<div align="center"><iframe loading="lazy" src="https://www.youtube.com/embed/F_O-LrGL-YQ?list=UUVGOyzms_XJNk_DHqrffXCw" width="600" height="350" frameborder="0" allowfullscreen="allowfullscreen"></iframe></div>
<h3><strong>Snap Assist</strong></h3>
<p>Snap assist is available in all versions of windows and also present in windows 10. But now it was updated.</p>
<ul>
<li><strong>Earlier versions:</strong> When we took any open window to right/left side it is fit and takes half desktop. We can only keep two windows with the walls of the desktop (one at right and other at left side).</li>
<li><strong>In windows 10</strong> Now in windows 10 you can keep maxim 4 windows. Two windows can set at right side and two at left side.</li>
</ul>
<div id="attachment_1225" style="width: 615px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/03/snap-assist.jpg"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1225" class=" wp-image-1225" src="https://trickybook.com/wp-content/uploads/2015/03/snap-assist.jpg" alt="snap assist desktop view" width="605" height="342" srcset="https://trickybook.com/wp-content/uploads/2015/03/snap-assist.jpg 1133w, https://trickybook.com/wp-content/uploads/2015/03/snap-assist-300x170.jpg 300w, https://trickybook.com/wp-content/uploads/2015/03/snap-assist-1024x579.jpg 1024w" sizes="auto, (max-width: 605px) 100vw, 605px" /></a><p id="caption-attachment-1225" class="wp-caption-text">snap assist desktop view in windows 10 features</p></div>
<h3><strong>Notification Center</strong></h3>
<p>Microsoft notification area. A notification icon is available in taskbar. When you click on it you see an inner active box there.</p>
<ul>
<li>A list of notifications of different apps on your system will appearing. When click on a notification massage, it take you some related area of that notification.</li>
<li>You can customize notification settings. In notification settings, you can on/off app notification, sound of notification and much more. You can also stop notification during specific hours.</li>
</ul>
<h3><strong>File Explorer Tweaks</strong></h3>
<p>One of the best windows 10 features is file explorer. Now window explorer is called file explorer. But file explorer is updated in windows 10.</p>
<ul>
<li>Here is a home screen layout. It decreases the use of favorites. You know that we can only add a shortcut of any item or folder in favorites. But in home you can pin any folder or item directly, by right click on the folder/item.</li>
<li>You see a blue color pined icons along with pined item in home. You can simply use this icon if you want to remove these items from Home.</li>
<li>In file explorer share portion is also updated. Select a file form file explore and go ,at the top, share area. Click on Share button than any related application to this is show up. For example you can this file in mail.</li>
</ul>
<div id="attachment_1224" style="width: 614px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/03/file-explorer.jpg"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1224" class=" wp-image-1224" src="https://trickybook.com/wp-content/uploads/2015/03/file-explorer.jpg" alt="updated file explorer" width="604" height="316" srcset="https://trickybook.com/wp-content/uploads/2015/03/file-explorer.jpg 766w, https://trickybook.com/wp-content/uploads/2015/03/file-explorer-300x157.jpg 300w" sizes="auto, (max-width: 604px) 100vw, 604px" /></a><p id="caption-attachment-1224" class="wp-caption-text">updated file explorer [trickybook.com]</p></div>
<h3><strong>Universal Search </strong></h3>
<p>This is really amazing you can search anywhere at the sometime. Universal search provides results from system and also from internet. Click on search icon in the taskbar. A mini browser is opened. In this mini browser, you see Bing trading at the right side and recent searches at the left side. You can can also clear this search history.</p>
<ul>
<li>When you search anything in search bar than by default it appear in Microsoft Bing search engine. By default, it provide web results.</li>
<li>To items from system, click on files that is under the search bar. You see local files which are present in you system.</li>
</ul>
<div id="attachment_1223" style="width: 441px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/03/universal-search.jpg"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1223" class="size-full wp-image-1223" src="https://trickybook.com/wp-content/uploads/2015/03/universal-search.jpg" alt="universal search in windows 10" width="431" height="521" srcset="https://trickybook.com/wp-content/uploads/2015/03/universal-search.jpg 431w, https://trickybook.com/wp-content/uploads/2015/03/universal-search-248x300.jpg 248w" sizes="auto, (max-width: 431px) 100vw, 431px" /></a><p id="caption-attachment-1223" class="wp-caption-text">universal search in windows 10 features [trickybook.com]</p></div>
<h3><strong>Windows PowerShell v5</strong></h3>
<p>PowerShell v5 is one of the best Windows 10 features. Windows 10 comes with power shell version 5. This is a latest and greatest version of PowerShell. Here the most important thing is packages related commands. If you use Linux you may install different software through command line. For example, in terminal we use apt-get commands for installing, updating software. Now that same functionality is come in windows PowerShell v5.  You can install software through PowerShell and leave the browsing on web browsers.</p>
<p><div id="attachment_1219" style="width: 618px" class="wp-caption aligncenter"><a href="https://trickybook.com/wp-content/uploads/2015/03/powershellv5.jpg"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-1219" class=" wp-image-1219" src="https://trickybook.com/wp-content/uploads/2015/03/powershellv5.jpg" alt="powershellv5 in windows 10" width="608" height="315" srcset="https://trickybook.com/wp-content/uploads/2015/03/powershellv5.jpg 675w, https://trickybook.com/wp-content/uploads/2015/03/powershellv5-300x156.jpg 300w" sizes="auto, (max-width: 608px) 100vw, 608px" /></a><p id="caption-attachment-1219" class="wp-caption-text">powershellv5 best windows 10 features  [trickybook]</p></div><span style="color: #000000;"><strong>Final words</strong></span> Above is the summary of some best windows 10 features. Hope! You like this. These are my analysis. What is your analysis and what you find new in technical preview? Share with your friends and with us. Submit information about any new feature other than above.</p>
<p>The post <a href="https://trickybook.com/best-new-windows-10-features/">9 best new Windows 10 features</a> appeared first on <a href="https://trickybook.com">TrickyBook</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://trickybook.com/best-new-windows-10-features/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
