<?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>Shaun Ambrose &#187; Internet</title>
	<atom:link href="http://www.shaunambrose.com/category/internet/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.shaunambrose.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sun, 01 Apr 2012 04:21:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Zootool Lasso button for Opera</title>
		<link>http://www.shaunambrose.com/2011/01/12/zootool-lasso-button-for-opera/</link>
		<comments>http://www.shaunambrose.com/2011/01/12/zootool-lasso-button-for-opera/#comments</comments>
		<pubDate>Wed, 12 Jan 2011 22:05:05 +0000</pubDate>
		<dc:creator>Shaun</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[opera]]></category>

		<guid isPermaLink="false">http://www.shaunambrose.com/?p=509</guid>
		<description><![CDATA[If you&#8217;re using Zootool with Opera. Here&#8217;s a custom Opera button for the Zootool Lasso. Zootool does provide a bookmarklet for the Lasso tool for Opera, but you have to have it in your Bookmarks Bar. I don&#8217;t use the Bookmarks Bar, so I made an Opera button for the Lasso that you can use [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.shaunambrose.com/wp-content/uploads/2011/01/opera-zootool-lasso.png" alt="" title="Opera Zootool Lasso" width="535" height="110" class="alignnone size-full wp-image-510" /></p>
<p>If you&#8217;re using <a href="http://www.zootool.com/">Zootool</a> with Opera. Here&#8217;s a custom Opera button for the Zootool Lasso.<br />
<span id="more-509"></span><br />
Zootool does provide a bookmarklet for the Lasso tool for Opera, but you have to have it in your Bookmarks Bar. I don&#8217;t use the Bookmarks Bar, so I made an Opera button for the Lasso that you can use in the Address Bar or anywhere in Opera.</p>
<pre style="padding: 15px 10px; margin: 25px 0;">
<a href="opera:/button/Go to page,%22 javascript:(function(){var%20u='http://zootool.com';var%20d=document;function%20l(){if(!d.body)return%20p();if(!d.getElementById('zt-script')){var%20s=d.createElement('script');s.src=u+'/js/lasso.js?v=1.3';s.id='zt-script';d.body.appendChild(s);}s=setInterval(function(){u=0;try{u=!!(typeof%20ztinit=='function');}catch(i){}if(u){clearInterval(s);ztinit('1.3');}},200);}function%20p(){var%20w=500;var%20h=465;var%20l=(screen.width?(screen.width-w)/2:0);var%20t=(screen.height?(screen.height-h)/4:0);var%20win=window.open(u+'/post/?url='+encodeURIComponent(location.href)+'&#038;title='+encodeURIComponent(d.title),'lasso','width='+w+',height='+h+',left='+l+',top='+t+',resizable=yes,scrollbars=yes');(!win)?alert('Please%20deactivate%20your%20Popup-Blocker!'):win.focus();}try{l();}catch(e){p();}})();%22" title="Zootool Lasso">Click here for the Opera Zootool Lasso button</a>
</pre>
<p>It&#8217;s exactly the same as the Zootool one except that it&#8217;s an Opera button instead of a bookmarklet.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shaunambrose.com/2011/01/12/zootool-lasso-button-for-opera/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to create a virtual directory in Apache</title>
		<link>http://www.shaunambrose.com/2010/10/01/how-to-create-a-virtual-directory-in-apache/</link>
		<comments>http://www.shaunambrose.com/2010/10/01/how-to-create-a-virtual-directory-in-apache/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 22:45:10 +0000</pubDate>
		<dc:creator>Shaun</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.shaunambrose.com/?p=443</guid>
		<description><![CDATA[Suppose you&#8217;re working on your local machine. You&#8217;re running Apache/PHP or an all-on-one package like XAMPP. You have a bunch of websites, but you don&#8217;t want to store them all under Apache&#8217;s webroot. Maybe some of your websites use PHP and you want to test them locally in your browser. Here&#8217;s how to map a [...]]]></description>
			<content:encoded><![CDATA[<p>Suppose you&#8217;re working on your local machine. You&#8217;re running Apache/PHP or an all-on-one package like XAMPP. You have a bunch of websites, but you don&#8217;t want to store them all under Apache&#8217;s webroot. Maybe some of your websites use PHP and you want to test them locally in your browser.</p>
<p>Here&#8217;s how to map a directory so you can access it via Apache without it being in the webroot.<br />
<span id="more-443"></span><br />
Add this to your httpd.conf file:</p>
<pre>
<code>
&lt;IfModule alias_module&gt;
  Alias /myphpsite/ "D:/websites/myphpsite/"

  &lt;Directory "D:/websites/myphpsite/"&gt;
    Options Indexes FollowSymLinks Includes ExecCGI
    AllowOverride all
    Order allow,deny
    Allow from all
  &lt;/Directory&gt;
&lt;/IfModule&gt;
</code></pre>
<p>Just update &#8220;myphpsite&#8221; with your own alias and update &#8220;D:/websites/myphpsite/&#8221; with the drive/directory of the actual site. I tested this using Apache2.2.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shaunambrose.com/2010/10/01/how-to-create-a-virtual-directory-in-apache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get the Citi Cards website to work in Opera</title>
		<link>http://www.shaunambrose.com/2010/06/05/how-to-get-the-citi-cards-website-to-work-in-opera/</link>
		<comments>http://www.shaunambrose.com/2010/06/05/how-to-get-the-citi-cards-website-to-work-in-opera/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 20:57:18 +0000</pubDate>
		<dc:creator>Shaun</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Random Stuff]]></category>
		<category><![CDATA[opera]]></category>

		<guid isPermaLink="false">http://www.shaunambrose.com/?p=414</guid>
		<description><![CDATA[If you can&#8217;t log in to the Citi Cards website in Opera, here are a couple of ways to fix that&#8230; You need to disable Flash to get the Citi Cards website to work. For a temporary fix. Press F12 to bring up Quick Preferences and uncheck Enable Plugins. But you&#8217;ll have to remember to [...]]]></description>
			<content:encoded><![CDATA[<p>If you can&#8217;t log in to the Citi Cards website in Opera, here are a couple of ways to fix that&#8230;<br />
<span id="more-414"></span><br />
You need to disable Flash to get the Citi Cards website to work.</p>
<ul>
<li>For a temporary fix. Press F12 to bring up Quick Preferences and uncheck Enable Plugins.
<li>
</ul>
<p>But you&#8217;ll have to remember to enable/re-enable this every time. Or you can setup a a Site Preference to permanently disable Flash for the entire site.</p>
<ul>
<li>Go to the Preferences settings by pressing Ctrl + F12. Go to the Advanced tab. Click on Content, then click on the Manage Site Preferences button.
<li>Now add a new entry, for the site enter: www.citicards.com and then under the Content tab uncheck Enable Plugins.
</ul>
<p>After you do this, you should be able to use the site with no problems.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shaunambrose.com/2010/06/05/how-to-get-the-citi-cards-website-to-work-in-opera/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to fix &#8220;find as you type&#8221; in Opera 10.50</title>
		<link>http://www.shaunambrose.com/2010/03/05/how-to-fix-find-as-you-type-in-opera-10-50/</link>
		<comments>http://www.shaunambrose.com/2010/03/05/how-to-fix-find-as-you-type-in-opera-10-50/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 07:43:25 +0000</pubDate>
		<dc:creator>Shaun</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[opera]]></category>

		<guid isPermaLink="false">http://www.shaunambrose.com/?p=408</guid>
		<description><![CDATA[Here&#8217;s how to fix &#8220;find as you type&#8221; and &#8220;find in page&#8221; in the new version of Opera (10.50). I upgraded to the new version of Opera and &#8220;find as you type&#8221; wasn&#8217;t highlighting the search terms. Also, &#8220;find in page&#8221; wasn&#8217;t working either; when I was hitting Enter, it was taking me to a [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s how to fix &#8220;find as you type&#8221; and &#8220;find in page&#8221; in the new version of Opera (10.50).<br />
<span id="more-408"></span><br />
I upgraded to the new version of Opera and &#8220;find as you type&#8221; wasn&#8217;t highlighting the search terms. Also, &#8220;find in page&#8221; wasn&#8217;t working either; when I was hitting Enter, it was taking me to a dictionary page. This was really frustrating! Thanks to the <a href="http://my.opera.com/community/forums/topic.dml?id=405491&#038;t=1265954744&#038;page=1#comment4181441">Opera Forums</a> I found out how to fix this.</p>
<p>To fix it, edit your search.ini file and add this entry.</p>
<pre><code>
[Search Engine 23]
UNIQUEID=368291005FC211DD8DE6B90756D89593
Name=
URL=
Query=
Key=f
Is post=0
Has endseparator=0
Encoding=
Search Type=12
Verbtext=0
Position=-1
Nameid=71103
</code></pre>
<p>Just replace &#8220;23&#8243; with the next sequence in your search.ini file. So, if your last entry was Search Engine 15, this one should be Search Engine 16. Restart Opera and it should be fixed! </p>
]]></content:encoded>
			<wfw:commentRss>http://www.shaunambrose.com/2010/03/05/how-to-fix-find-as-you-type-in-opera-10-50/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy way to enlarge online videos</title>
		<link>http://www.shaunambrose.com/2010/01/27/easy-way-to-zoom-in-on-online-videos/</link>
		<comments>http://www.shaunambrose.com/2010/01/27/easy-way-to-zoom-in-on-online-videos/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 08:15:18 +0000</pubDate>
		<dc:creator>Shaun</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.shaunambrose.com/?p=284</guid>
		<description><![CDATA[I find it annoying that when watching videos online most sites only have the choice of original video size and full screen. Some sites don&#8217;t even offer full screen. And what&#8217;s annoying about full screen mode is that if you have dual monitors, you can&#8217;t navigate to the secondary monitor with the video in full [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.shaunambrose.com/wp-content/uploads/2010/01/expanded-video.jpg" alt="Zoomed in video" title="Zoomed in video" width="535" height="180" class="alignnone size-full wp-image-288" /></p>
<p>I find it annoying that when watching videos online most sites only have the choice of original video size and full screen. Some sites don&#8217;t even offer full screen. And what&#8217;s annoying about full screen mode is that if you have dual monitors, you can&#8217;t navigate to the secondary monitor with the video in full screen mode. Here&#8217;s a tip to increase the video size.<br />
<span id="more-284"></span><br />
If you&#8217;re using a browser with &#8220;page zoom&#8221; most browsers nowadays have it (Opera, Firefox, Safari/Chrome, IE7). Just zoom in on the page by using the plus/minus keys or by holding down Control (or Command) and using the scroll wheel on your mouse to zoom in or out. This will increase the size of the video. It&#8217;s not quite as good as full screen; most videos don&#8217;t look good at full screen anyway. But it does make the video bigger and gives the ability to use your second monitor. I use &#8220;page zoom&#8221; on almost every video I watch online now.</p>
<p>Try it with this video below. Use the +/- keys on the keyboard or use Control and scroll the mouse wheel to zoom in and out.</p>
<p><br clear="none" /></p>
<div class="video"><object width="400" height="302" data="http://vimeo.com/moogaloop.swf?clip_id=1316791&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=1316791&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /></object></div>
]]></content:encoded>
			<wfw:commentRss>http://www.shaunambrose.com/2010/01/27/easy-way-to-zoom-in-on-online-videos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to search in Opera</title>
		<link>http://www.shaunambrose.com/2008/11/13/how-to-search-in-opera/</link>
		<comments>http://www.shaunambrose.com/2008/11/13/how-to-search-in-opera/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 09:20:44 +0000</pubDate>
		<dc:creator>Shaun</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[opera]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://www.shaunambrose.com/?p=106</guid>
		<description><![CDATA[Here are a couple of ways that Opera makes it easier to search the Internet and to search for text on a website&#8230; Find as you type This type of search is similar to FireFox&#8217;s find function. Press the forward slash key (/) or the period key (.) and start typing. Opera will find the [...]]]></description>
			<content:encoded><![CDATA[<p>Here are a couple of ways that Opera makes it easier to search the Internet and to search for text on a website&#8230;</p>
<p><span id="more-106"></span></p>
<h3>Find as you type</h3>
<p>This type of search is similar to FireFox&#8217;s find function. Press the forward slash key (/) or the period key (.) and start typing. Opera will find the word as you are typing.</p>
<p><img class="alignnone size-full wp-image-107" title="Opera - Find as you type" src="http://www.shaunambrose.com/wp-content/uploads/2008/11/find-as-you-type.jpg" alt="" width="310" height="135" /></p>
<p>To move to the next search result, press F3 or Ctrl + G.<br />
To find the previous search result, press Shift + F3 or Ctrl + Shift + G.</p>
<p>Read more about this type of search <a href="http://portal.opera.com/discover/?feature=findtype">here</a>.</p>
<hr />
<h3>Keyword searches</h3>
<p>This type of search uses keyword shortcuts in the address bar. For example, by default &#8216;e&#8217; is assigned to search ebay. So you can type &#8216;e wii&#8217; in the address bar and it will search eBay for Wii. To view the default keyword searches, click Tools -&gt; Preferences (or use the keyboard shortcut, Ctrl + F12) and then click on the Search tab.</p>
<p>Also, the keyboard shortcut to set focus on the adress bar is: Ctrl + L or Alt + D or you can press F8. Take your pick!</p>
<p><img class="alignnone size-full wp-image-108" title="Opera - Keyword searches" src="http://www.shaunambrose.com/wp-content/uploads/2008/11/keyword-searches.jpg" alt="" width="310" height="135" /></p>
<p>Read more about this type of search <a href="http://portal.opera.com/discover/?feature=search">here</a>.</p>
<hr />
<h3>Custom keyword searches</h3>
<p>You can also create your own keyword searches. In any search form field, right-click and select Create Search. Then in the dialog box, assign this search to any keyword or letter.</p>
<p><img class="alignnone size-full wp-image-109" title="Opera - Custom keyword searches" src="http://www.shaunambrose.com/wp-content/uploads/2008/11/custom-keyword-searches.jpg" alt="" width="310" height="135" /></p>
<p>Read more about this type of search <a href="http://portal.opera.com/discover/?feature=customsearch">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shaunambrose.com/2008/11/13/how-to-search-in-opera/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

