<?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/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>netsnbytes blog</title>
	<atom:link href="https://blog.netsnbytes.org/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.netsnbytes.org</link>
	<description>from nuts and bolts to nets and bytes</description>
	<lastBuildDate>Sat, 27 Apr 2019 15:03:34 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.7.6</generator>
<site xmlns="com-wordpress:feed-additions:1">54308751</site>	<item>
		<title>Upgrading your FIOS router&#8217;s wireless security to WPA2</title>
		<link>https://blog.netsnbytes.org/net-admin/upgrading-your-fios-routers-wireless-security-to-wpa2/</link>
		
		<dc:creator><![CDATA[Dave]]></dc:creator>
		<pubDate>Wed, 17 Apr 2019 19:00:43 +0000</pubDate>
				<category><![CDATA[net admin]]></category>
		<category><![CDATA[tips]]></category>
		<guid isPermaLink="false">https://blog.netsnbytes.org/?p=527</guid>

					<description><![CDATA[Verizon configures their wireless routers with WEP by default. WEP is incredibly easy to crack. Networking or security skills are not really needed. A simple Google search sets would be hackers on their way to cracking a WEP protected wireless network. The good news is WPA2. Most Verizon routers support WPA2. Setting up WPA2 on [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Verizon configures their wireless routers with WEP by default. WEP is incredibly easy to crack. Networking or security skills are not really needed. A simple <a href="http://www.google.com/search?source=ig&amp;hl=en&amp;channel=2PSP&amp;rlz=&amp;=&amp;q=crack+wep&amp;btnG=Google+Search&amp;aq=f&amp;oq=">Google search </a>sets would be hackers on their way to cracking a WEP protected wireless network.</p>
<p>The good news is <a href="http://en.wikipedia.org/wiki/Wi-Fi_Protected_Access">WPA2</a>. Most Verizon routers support WPA2.</p>
<p>Setting up WPA2 on your Verizon router</p>
<ol>
<li>Connect to the router with your web browser &#8211; <a href="http://192.168.1.1">http://192.168.1.1</a> and login</li>
<li>Click on Wireless Settings in the top bar</li>
<li>Click on Basic Wireless Settings in the left nav bar</li>
<li>If Wireless is off &#8211; turn it on</li>
<li>If WEP is on &#8211; turn it off</li>
<li>Click Apply at the bottom</li>
<li>Click Advanced Security Settings in the left navigation bar</li>
<li>Select WPA2 under Level 1</li>
<li>Select Pre-Shared Key for Authentication Method</li>
<li>Select ASCII as the format for the Pre-Shared Key</li>
<li>Enter a <strong>good pass phrase* </strong>for the Pre-Shared Key.</li>
<li>Select TKIP and AES for the Encryption Algorithm.</li>
<li>Click Apply at the bottom.</li>
<li>Test the new settings.</li>
</ol>
<ul>
<li><a href="http://www22.verizon.com/residentialhelp/fiosinternet/networking/setup/vzmi424/120467.htm">Verizon security update</a></li>
<li><a href="http://www22.verizon.com/ResidentialHelp/FiOSInternet/Networking/Setup/Security/124985.htm">Compatibility Issues</a></li>
<li><a href="http://www22.verizon.com/ResidentialHelp/FiOSInternet/Networking/Setup/VzMI424/125059.htm">Verizon&#8217;s instructions for enabling WPA2</a></li>
<li><a href="http://blogs.pcmag.com/securitywatch/2009/05/verizon_and_their_inadequate_w.php">PC Magazine article on Verizon&#8217;s WEP problem</a></li>
</ul>
<p><strong>* Use a good Pass phrase</strong></p>
<ul>
<li>Use a good, strong pass phrase. <a href="https://en.m.wikipedia.org/wiki/Password_strength" target="_blank" rel="noopener">wikipedia.org/wiki/Password_strength</a></li>
<li>Don&#8217;t worry. The pass phrase is only used the first time a computer accesses the network. It doesn&#8217;t get entered every time.</li>
<li>Do not forget to write the passphrase down.</li>
</ul>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">527</post-id>	</item>
		<item>
		<title>BFG Repo-Cleaner</title>
		<link>https://blog.netsnbytes.org/programming/bfg-repo-cleaner/</link>
		
		<dc:creator><![CDATA[Dave]]></dc:creator>
		<pubDate>Tue, 30 May 2017 16:41:16 +0000</pubDate>
				<category><![CDATA[programming]]></category>
		<guid isPermaLink="false">https://blog.netsnbytes.org/?p=1184</guid>

					<description><![CDATA[BFG Repo-Cleaner is a good tool to clean up a Git repository before sharing. Removes large or troublesome blobs like git-filter-branch does, but faster. And written in Scala. $ bfg --strip-blobs-bigger-than 100M --replace-text banned.txt repo.git Replace all passwords and listed in a file (prefix lines &#8216;regex:&#8217; or &#8216;glob:&#8217; if required) with ***REMOVED*** wherever they occur [&#8230;]]]></description>
										<content:encoded><![CDATA[<h2><a href="https://rtyley.github.io/bfg-repo-cleaner/">BFG Repo-Cleaner </a>is a good tool to clean up a Git repository before sharing.</h2>
<blockquote><p>Removes large or troublesome blobs like git-filter-branch does, but faster. And written in Scala.</p>
<pre>

<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">$ bfg --strip-blobs-bigger-than 100M --replace-text banned.txt repo.git</div></div>

</pre>
<p>Replace all passwords and listed in a file <em>(prefix lines &#8216;regex:&#8217; or &#8216;glob:&#8217; if required)</em> with</p>
<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">***REMOVED***</div></div>
<p>wherever they occur in your repository :</p>
<pre>

<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">&nbsp;</div></div>

</pre>
<pre>

<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">$ bfg &lt;strong&gt;--replace-text passwords.txt&lt;/strong&gt; &nbsp;my-repo.git</div></div>

</pre>
<p>Delete all files named &#8216;id_rsa&#8217; or &#8216;id_dsa&#8217; :</p>
<pre>

<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">&nbsp;</div></div>

</pre>
<pre>

<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">$ bfg &lt;strong&gt;--delete-files id_{dsa,rsa}&lt;/strong&gt; &nbsp;my-repo.git</div></div>

</pre>
</blockquote>
<h2>
<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">&nbsp;</div></div>
<p>Using BFG on Windows:</h2>
<ul>
<li>Use <a href="https://superuser.com/questions/1053633/what-is-git-bash-for-windows-anyway">Git Bash</a> or <a href="https://msdn.microsoft.com/en-us/commandline/wsl/install_guide">Windows 10 Bash</a>.</li>
<li>Download and install Java from <a href="https://www.java.com/en/download/manual.jsp">here</a>.</li>
<li>Download BFG <a href="https://search.maven.org/remote_content?g=com.madgag&amp;a=bfg&amp;v=LATEST">here</a>.</li>
<li>Make an alias for BFG:</li>
</ul>
<p style="padding-left: 60px;"><span style="color: #008000;"><strong>java -jar bfg.jar $*</strong></span></p>
<ul>
<li>Make a replace.txt file:</li>
</ul>
<pre style="padding-left: 60px;"><span style="color: #008000;"><strong>PASSWORD        <span style="color: #0000ff;"># Replaces PASSWORD with ***REMOVED***</span></strong></span>
<span style="color: #008000;"><strong>PASSWORD==&gt;TEST <span style="color: #0000ff;"># Replaces PASSWORD with TEST</span></strong></span>
<span style="color: #008000;"><strong>PASSWORD==&gt;     <span style="color: #0000ff;"># Replaces PASSWORD with blank</span></strong></span>
<span style="color: #0000ff;"><strong>                # You can use Regular Expressions also</strong></span></pre>
<ul>
<li>Run this command in the repo folder from Git Bash or Win10 Bash:</li>
</ul>
<p style="padding-left: 60px;"><span style="color: #008000;"><strong>bfg &#8211;replace-text replace.txt</strong></span></p>
<ul>
<li>When bfg is done run these commands</li>
</ul>
<p style="padding-left: 60px;"><span style="color: #008000;"><strong>git reflog expire &#8211;expire=now &#8211;all &amp;&amp; git gc &#8211;prune=now &#8212; aggressive</strong></span></p>
<p style="padding-left: 60px;"><span style="color: #008000;"><strong>git pushÂ Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â  <span style="color: #0000ff;"># -f may be needed</span><br />
</strong></span></p>
<h2>Notes:</h2>
<ul>
<li>I had already pushed the repo and shared it.Â  That got complicated by multiple branches.Â  My fault.Â  It would have been much simpler to run bfg before sharing.</li>
<li>I fumbled a bit trying to get bfg running in Windows command shell.</li>
</ul>
<h2>Resources:</h2>
<ul>
<li><a href="https://stackoverflow.com/questions/tagged/bfg-repo-cleaner">StackOverflow</a></li>
<li>
<p id="51d7" class="graf graf--h3 graf--leading graf--title"><a href="https://medium.com/@rhoprhh/removing-keys-passwords-and-other-sensitive-data-from-old-github-commits-on-osx-2fb903604a56">Removing Keys, Passwords and Other Sensitive Data from Old Github Commits onÂ OSX</a></p>
</li>
<li><a href="https://rtyley.github.io/bfg-repo-cleaner/">BFG Repo-Cleaner &#8211; Removes large or troublesome blobs like git-filter-branch does, but faster. And written in Scala.</a></li>
<li><a href="https://github.com/IBM/BluePic/wiki/Using-BFG-Repo-Cleaner-tool-to-remove-sensitive-files-from-your-git-repo">Using BFG Repo Cleaner tool to remove sensitive files from your git repo</a></li>
<li>
<p class="gh-header-title instapaper_title"><a href="https://github.com/firemodels/fds/wiki/The-BFG-Repo-Cleaner">The BFG Repo Cleaner</a></p>
</li>
</ul>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1184</post-id>	</item>
		<item>
		<title>Microsoft Windows File Server Locked File Watcher</title>
		<link>https://blog.netsnbytes.org/net-admin/microsoft-windows-file-server-locked-file-watcher/</link>
		
		<dc:creator><![CDATA[Dave]]></dc:creator>
		<pubDate>Mon, 29 May 2017 20:43:14 +0000</pubDate>
				<category><![CDATA[net admin]]></category>
		<guid isPermaLink="false">https://blog.netsnbytes.org/?p=1182</guid>

					<description><![CDATA[It is common for companies to work with Excel, Word and other files on Windows network shared folders. More than one user cannot usually work on files like Excel at the same time. When trying to open a locked network file it can be hard to see who has it locked. The best method to [&#8230;]]]></description>
										<content:encoded><![CDATA[<ul>
<li>It is common for companies to work with Excel, Word and other files on Windows network shared folders.</li>
<li>More than one user cannot usually work on files like Excel at the same time.</li>
<li>When trying to open a locked network file it can be hard to see who has it locked.</li>
<li>The best method to see who has a file locked is from the Windows file server. But that requires Administrator level access. That level of access is not practical for all users for security reasons.</li>
<li>This tool has two parts:</li>
<li>A Powershell process that watches for locked files and saves the result.</li>
<li>A web server that displays the locked files and who has them locked.</li>
<li>No special access is required to view the web results.The Powershell process uses</li>
<li>The Powershell process uses a list of <em>watched</em> files and folders. This limits the number of files displayed. This also allows it to avoid showing sensitive files or network folders.</li>
</ul>
<p>Visit <a href="https://github.com/p7th0n/check_for_locked_files">Github </a>to download.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1182</post-id>	</item>
		<item>
		<title>Cliplink &#8211; a utility for short, reliable links on Windows networks</title>
		<link>https://blog.netsnbytes.org/net-admin/cliplink-a-utility-for-short-reliable-links-on-windows-networks/</link>
		
		<dc:creator><![CDATA[Dave]]></dc:creator>
		<pubDate>Thu, 02 Mar 2017 16:42:52 +0000</pubDate>
				<category><![CDATA[net admin]]></category>
		<guid isPermaLink="false">https://blog.netsnbytes.org/?p=1172</guid>

					<description><![CDATA[What is Cliplink for? I developed Clipboard-Link from end user need. It is a reliable method to create links to files and folders on Windows network drives. Spaces and special characters break Outlook&#8217;s ability to create hyperlinks to network files. Clipboard-Link eliminates that problem. How do I get set up? Get Cliplink from =&#62; GitHub. [&#8230;]]]></description>
										<content:encoded><![CDATA[<h3>What is Cliplink for?</h3>
<ul>
<li>I developed Clipboard-Link from end user need. It is a reliable method to create links to files and folders on Windows network drives.</li>
<li>Spaces and special characters break Outlook&#8217;s ability to create hyperlinks to network files. Clipboard-Link eliminates that problem.</li>
</ul>
<h3><a id="user-content-how-do-i-get-set-up" class="anchor" href="https://github.com/p7th0n/clipboardlink#how-do-i-get-set-up"></a>How do I get set up?</h3>
<ul>
<li>Get Cliplink from =&gt; <strong><a href="https://github.com/p7th0n/clipboardlink">GitHub</a></strong>.</li>
<li>There is no configuration</li>
<li>There are no dependencies</li>
<li>No database configuration</li>
<li>Save the contents of this repo to a network drive or share.</li>
<li>Tell users to run <strong>setup</strong> from there.</li>
</ul>
<h3><a id="user-content-how-does-it-work" class="anchor" href="https://github.com/p7th0n/clipboardlink#how-does-it-work"></a>How does it work</h3>
<ul>
<li>Locate the file or folder on the network.</li>
<li>Right-click and select <strong>Send To</strong> &gt; <strong>clipboard-link</strong></li>
<li>Cliplink creates a safe link to the file and puts it on the Clipboard.</li>
<li>Paste the link into Email, documents, etc.</li>
</ul>
<h3><a id="user-content-to-make-a-friendly-link" class="anchor" href="https://github.com/p7th0n/clipboardlink#to-make-a-friendly-link"></a>To make a friendly link</h3>
<ul>
<li>Create a link to a network file or folder with Clipboard-link and paste into a message</li>
<li>Select the link part and Cut</li>
<li>Select the name part between the brackets</li>
<li>Select Insert menu &gt; Hyperlink</li>
<li>Paste the link in the URL box</li>
<li>Click Ok</li>
<li>Clipboard-link copies the file / folder name and shortened link to the clipboard</li>
</ul>
<pre>

<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[Engineering Documentation] &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;file://F:\ENGINE~1 <br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ^ Name ^ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ^ &nbsp; link &nbsp;^</div></div>

</pre>
<p>NOTE: **Cliplink will not create links for executables [files ending with .EXE, .COM, .BAT, etc.].</p>
<h3><a id="user-content-who-am-i" class="anchor" href="https://github.com/p7th0n/clipboardlink#who-am-i"></a>Who am I?</h3>
<ul>
<li>Developed by <a href="mailto:dkurman@netsnbytes.com">dkurman@netsnbytes.com</a> with lots of help and feedback. I had jobs as I.T. Manager, sysadmin, helpdesk and programmer for several companies.</li>
<li><a href="https://twitter.com/davekurman">@davekurman on Twitter</a></li>
<li><a href="https://www.linkedin.com/in/davekurman?trk=profile-badge-cta">LinkedIn</a></li>
</ul>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1172</post-id>	</item>
		<item>
		<title>Confluence, a Great IT Documentation Tool</title>
		<link>https://blog.netsnbytes.org/net-admin/confluence-a-great-it-documentation-tool/</link>
		
		<dc:creator><![CDATA[Dave]]></dc:creator>
		<pubDate>Tue, 28 Feb 2017 18:17:44 +0000</pubDate>
				<category><![CDATA[net admin]]></category>
		<guid isPermaLink="false">https://blog.netsnbytes.org/?p=1170</guid>

					<description><![CDATA[Introduction Years ago, I was the new system administrator at the company. I had to get a handle on the multitude of systems, servers and software. My predecessors did a great job of documenting the details in Microsoft Word. Because of the number of documents it was hard to find stuff. It was time consuming [&#8230;]]]></description>
										<content:encoded><![CDATA[<div class="prose">
<h2>Introduction</h2>
<p>Years ago, I was the new system administrator at the company. I had to get a handle on the multitude of systems, servers and software. My predecessors did a great job of documenting the details in <a href="http://products.office.com/en-us/word" target="_blank" rel="nofollow noopener">Microsoft Word</a>. Because of the number of documents it was hard to find stuff. It was time consuming to keep details up to date as software and systems changed.</p>
<p>Then I discovered <a href="http://www.mediawiki.org/wiki/MediaWiki" target="_blank" rel="nofollow noopener">MediaWiki</a>, the Open Source software that runs <a href="http://www.wikipedia.org/" target="_blank" rel="nofollow noopener">Wikipedia</a>. An old donated PC was host for Linux and MediaWiki. I copied the Word documents into the wiki. It was easy and natural (for me at least) to build easy to navigate links to the IT documentation. MediaWiki keeps older versions so it is easy to see the history of changes. Wiki markup is weird and unnatural to normal people but a few folks at the company took to it. The help was welcome for maintaining the IT processes and procedures. Contributors logged in to MediaWiki so we could see who made changes.</p>
<p>Unlike the Word documents it was easy to search and find information. We could email hyperlinks to folks in need of support. That saved time for me and other power users. And normal folks would some times let us know when documentation was out of date or wrong. MediaWiki reduced the friction of sharing and managing the documentation.</p>
<p>I looked at <a href="http://products.office.com/en-us/sharepoint/collaboration" target="_blank" rel="nofollow noopener">SharePoint </a>a few times. SharePoint is well integrated with Windows and Microsoft Office products. It seems like a natural extension for folks familiar with that world. SharePoint&#8217;s wiki didn&#8217;t work for me though. And the easy extensibility worked against using it for documentation. That lead to a lot of rabbit holes to get lost in when the focus should be elsewhere. Don&#8217;t get me wrong, I am very good in the Microsoft world but it felt like more friction to get things done.</p>
<h2>Atlassian Confluence</h2>
<p>I came across <a href="http://www.atlassian.com/software/confluence" target="_blank" rel="nofollow noopener">Atlassian Confluence</a> while exploring <a href="http://agilemethodology.org/" target="_blank" rel="nofollow noopener">Agile development methods</a>. Confluence is like a polished MediaWiki.</p>
<p>Working together on documentation is well thought out. Instead of emailing the author about changes a user selects text on the Confluence page. A popup presents the user with the option to comment right on the page. Comments are part of the documentation. That is much better than email silos.</p>
<p>The real time collaboration is great. When more than one user edits a page at the same time the changes synchronize between them in real time.</p>
<p>Like MediaWiki, Confluence keeps track of previous versions of the pages. Having that history gives users more confidence. They do not have to maintain many copies of a document. The history is all right there with that page in Confluence.</p>
<p>Embedding and attaching pictures is easy in Confluence. Users can also attach Word, Excel, PDFs and other files.</p>
<p>A cool plugin for Confluence is <a href="http://www.gliffy.com/products/confluence-plugin/" target="_blank" rel="nofollow noopener">Gliffy</a>. It is like a web based Visio for creating diagrams, flowcharts and so forth. Many times IT documentation is better with a network diagram or a business workflow. The Gliffy plugin tracks versions as well. Users have that history of changes which helps with complex diagrams.</p>
<p>Confluence benefits from tight integration with <a href="http://www.atlassian.com/software/jira" target="_blank" rel="nofollow noopener">Atlassian JIRA</a>. That is good if you use JIRA. JIRA is an issue tracking tool that is great for software development. Many use JIRA for business project management and managing service.</p>
<p>Confluence and JIRA are both available as cloud services from Atlassian. No servers to maintain.</p>
<p>Having time on my hands I went with installing Confluence and JIRA on my servers. Well, actually Hyper-V virtual machines running Linux. The install process is well documented. I ran into a few problems but Atlassian had intuitive help to get through them. The price made me smile. My self-hosted servers were $10 each for 10 users. That&#8217;s a good value and a low barrier for these tools.</p>
<p>Confluence helps my efficiency with the <a href="http://en.wikipedia.org/wiki/Don%27t_repeat_yourself" target="_blank" rel="nofollow noopener">DRY principle</a> (Don&#8217;t Repeat Yourself). Having the notes and documentation online means they&#8217;re available almost everywhere. And Confluence reduces the friction of maintaining documentation.</p>
</div>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1170</post-id>	</item>
		<item>
		<title>After upgrading Confluence, you are unable to create new pages or spaces</title>
		<link>https://blog.netsnbytes.org/net-admin/after-upgrading-confluence-you-are-unable-to-create-new-pages-or-spaces/</link>
		
		<dc:creator><![CDATA[Dave]]></dc:creator>
		<pubDate>Sat, 18 Feb 2017 22:40:53 +0000</pubDate>
				<category><![CDATA[net admin]]></category>
		<guid isPermaLink="false">https://blog.netsnbytes.org/?p=1165</guid>

					<description><![CDATA[After upgrading Confluence the Administrator Atlassian Support Tools should be the first stop. The Tools diagnosed a problem from the logs and presented a link to the Knowledge Base article about it.Â  The article presented the problem and diagnosis.Â  It then explained the cause and resolution.Â  There were examples to explain the problem.Â  The article [&#8230;]]]></description>
										<content:encoded><![CDATA[<div id="sidebar-container" class="blogpost view">
<div id="main-content" class="wiki-content">
<div class="wiki-content">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr">After upgrading Confluence the Administrator Atlassian Support Tools should be the first stop.</div>
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr"></div>
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr">The Tools diagnosed a problem from the logs and presented a link to the Knowledge Base article about it.Â  The article presented the problem and diagnosis.Â  It then explained the cause and resolution.Â  There were examples to explain the problem.Â  The article also had links to related information.</div>
<div></div>
<div>
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr">This is what I love about wiki&#8217;s.Â  As a system administrator I imported my predecessor&#8217;s Word documents into <a href="https://www.mediawiki.org/wiki/MediaWiki">MediaWiki</a>. It ran on an unused PC with Linux. The plain text markup caught on with a few engineers. Most were still stuck in Word (change is hard). When I saw a wiki template in <a href="https://products.office.com/en-us/sharepoint/collaboration">SharePoint </a>I thought it might be a bridge from MS Office to the wiki way of doing things. SharePoint didn&#8217;t have that flow. Atlassian&#8217;s <a href="https://www.atlassian.com/software/confluence">Confluence </a>makes me happy so far. It combines the linking and flow of MediaWiki with formatting tools. The Confluence formatting tools and workflows should help Office users.</div>
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr"></div>
</div>
<ul>
<li>Atlassian Support Tools Analyze Log: Â <a href="http://localhost:8090/plugins/servlet/stp/view/" rel="nofollow">http://localhost:8090/plugins/servlet/stp/view/</a></li>
<li>KB article:Â <a class="external-link" href="https://confluence.atlassian.com/confkb/after-upgrading-confluence-you-are-unable-to-create-new-pages-or-spaces-785457379.html?utm_medium=logScan&amp;utm_source=STP" rel="nofollow">https://confluence.atlassian.com/confkb/after-upgrading-confluence-you-are-unable-to-create-new-pages-or-spaces-785457379.html?utm_medium=logScan&amp;utm_source=STP</a></li>
</ul>
</div>
</div>
</div>
<p><span id="more-1165"></span></p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1165</post-id>	</item>
		<item>
		<title>Bogus Adobe Acrobat Reader update notifications?</title>
		<link>https://blog.netsnbytes.org/interests/bogus-adobe-acrobat-reader-update-notifications/</link>
		
		<dc:creator><![CDATA[Dave]]></dc:creator>
		<pubDate>Fri, 17 Feb 2017 20:17:22 +0000</pubDate>
				<category><![CDATA[Interests]]></category>
		<guid isPermaLink="false">https://blog.netsnbytes.org/?p=1158</guid>

					<description><![CDATA[Each time I open a PDF document in Acrobat Reader Adobe a warning pops up. The warning claims Acrobat Reader is out of date&#8230;etc. This is strange. I choose not to have Adobe notifications.Â  This is an Adobe warning.Â  I tracked it down with the SysInternals Process Explorer.Â  It seems Adobe doesn&#8217;t respect my choices. [&#8230;]]]></description>
										<content:encoded><![CDATA[<div class="" data-block="true" data-editor="69tl6" data-offset-key="erg98-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="erg98-0-0"><span data-offset-key="erg98-0-0">Each time I open a PDF document in Acrobat Reader Adobe a warning pops up. The warning claims Acrobat Reader is out of date&#8230;etc. This is strange. I choose not to have Adobe notifications.Â  This is an Adobe warning.Â  I tracked it down with the SysInternals Process Explorer.Â  It seems Adobe doesn&#8217;t respect my choices.<br />
</span></div>
</div>
<div class="" data-block="true" data-editor="69tl6" data-offset-key="4mqhm-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="4mqhm-0-0"><span data-offset-key="4mqhm-0-0">Â </span></div>
</div>
<div class="" data-block="true" data-editor="69tl6" data-offset-key="3rip8-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="3rip8-0-0"><span data-offset-key="3rip8-0-0">I visit Adobe&#8217;s website for the Reader update and choose the latest version. The warning still pops up with the latest available Adobe update. I used the <a href="https://secuniaresearch.flexerasoftware.com/support/download/">Secunia PSI</a> software checker for several years. PSI is reliable and I had no problems with it. PSI was happy with the version of Reader that Adobe complains about.</span></div>
</div>
<div class="" data-block="true" data-editor="69tl6" data-offset-key="221q4-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="221q4-0-0"><span data-offset-key="221q4-0-0">Â </span></div>
</div>
<div class="" data-block="true" data-editor="69tl6" data-offset-key="41se0-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="41se0-0-0"><span data-offset-key="41se0-0-0">The bogus Adobe warning pops up on more than one Windows computer. It affects Windows 7, 8, 8.1 and 10. The warning didn&#8217;t popup on my Mac but the OS X built-in Preview app handles PDFs by default. The Mac has Adobe Reader installed and out of date (due to lack of use) but there are no warnings.</span></div>
</div>
<div class="" data-block="true" data-editor="69tl6" data-offset-key="1551o-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="1551o-0-0"><span data-offset-key="1551o-0-0">Â </span></div>
</div>
<div class="" data-block="true" data-editor="69tl6" data-offset-key="7dbg2-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="7dbg2-0-0"><span data-offset-key="7dbg2-0-0">I avoid opening Acrobat files on Windows. Instead I use my iPad or iPhone since they are usually near by. Gmail is great to preview Acrobat files without Adobe.Â  I understand Google has their own Flash player in Chrome too.Â  Adobe Flash is also a big security liability.<br />
</span></div>
</div>
<div class="" data-block="true" data-editor="69tl6" data-offset-key="a026j-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="a026j-0-0"><span data-offset-key="a026j-0-0">Â </span></div>
</div>
<div class="" data-block="true" data-editor="69tl6" data-offset-key="ao4g5-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="ao4g5-0-0"><span data-offset-key="ao4g5-0-0">Adobe&#8217;s shameful bundling of crapware is another reason to use care. The Adobe download sites default to pushing extra software with updates. Make sure to uncheck stuff like McAfee, Ask toolbars, etc.</span></div>
</div>
<div class="" data-block="true" data-editor="69tl6" data-offset-key="f2cgi-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="f2cgi-0-0"><span data-offset-key="f2cgi-0-0">Â </span></div>
</div>
<div class="" data-block="true" data-editor="69tl6" data-offset-key="3uh06-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="3uh06-0-0"><span data-offset-key="3uh06-0-0">Considering costs and innocent users affected Adobe may be worse than malware creators.</span></div>
</div>
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="3uh06-0-0">
<div class="" data-block="true" data-editor="edb33" data-offset-key="ed4fb-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="ed4fb-0-0">
<hr />
</div>
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="ed4fb-0-0"><span data-offset-key="ed4fb-0-0">UPDATE:</span></div>
</div>
<div class="" data-block="true" data-editor="edb33" data-offset-key="3stok-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="3stok-0-0"><span data-offset-key="3stok-0-0">Â </span></div>
</div>
<div class="" data-block="true" data-editor="edb33" data-offset-key="5p24p-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="5p24p-0-0"><span data-offset-key="5p24p-0-0">Adobe&#8217;s suggested update is to the same, installed version. During the installation I selected NOT to have Adobe&#8217;s notifications. Regardless of my choices Adobe installed Windows Services and Windows Schedule Tasks. The tasks check for updates. I removed the tasks and services. No means no, Adobe.</span></div>
</div>
</div>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1158</post-id>	</item>
		<item>
		<title>CAD Drawings to PDF with SolidWorks, eDrawings and VBA</title>
		<link>https://blog.netsnbytes.org/interests/cad-drawings-to-pdf-with-solidworks-edrawings-and-vba/</link>
		
		<dc:creator><![CDATA[Dave]]></dc:creator>
		<pubDate>Thu, 02 Feb 2017 16:01:17 +0000</pubDate>
				<category><![CDATA[Interests]]></category>
		<guid isPermaLink="false">https://blog.netsnbytes.org/?p=1155</guid>

					<description><![CDATA[An automated solution to make Acrobat PDF files from CAD drawings. The solution handles SolidWorks and AutoCAD drawings.]]></description>
										<content:encoded><![CDATA[<div class="" data-block="true" data-editor="7kljv" data-offset-key="317j8-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="317j8-0-0"><span data-offset-key="317j8-0-0">An automated solution to make Acrobat PDF files from CAD drawings. The solution handles SolidWorks and AutoCAD drawings.</span></div>
</div>
<div class="" data-block="true" data-editor="7kljv" data-offset-key="45ook-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="45ook-0-0"><span data-offset-key="45ook-0-0">Â </span></div>
</div>
<h2 class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="fvf45-0-0"><span data-offset-key="fvf45-0-0">The problem</span></h2>
<div class="" data-block="true" data-editor="7kljv" data-offset-key="fj2l3-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="fj2l3-0-0"><span data-offset-key="fj2l3-0-0">Â </span></div>
</div>
<div class="" data-block="true" data-editor="7kljv" data-offset-key="8gqu3-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="8gqu3-0-0"><span data-offset-key="8gqu3-0-0">The company had a solution for plotting engineering drawings. Â Employees in production had a fast utility to lookup CAD drawings. There were tens of thousands of drawings. Â Printing was a simple button click. Â There were no printer dialogs. Â No printer choices. Â No choosing settings. Â Less wasted paper.Â  It was a huge time and resource saver. Â With the upgrade to Windows 7 the supporting engineering tools no longer worked. Â TheÂ efficient CAD printing no longer worked after the I.T. upgrades.</span></div>
</div>
<div class="" data-block="true" data-editor="7kljv" data-offset-key="caf6e-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="caf6e-0-0"><span data-offset-key="caf6e-0-0">Â </span></div>
</div>
<h2 class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="f7amg-0-0"><span data-offset-key="f7amg-0-0">The parts</span></h2>
<div class="" data-block="true" data-editor="7kljv" data-offset-key="d9asj-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="d9asj-0-0"><span data-offset-key="d9asj-0-0">Â </span></div>
</div>
<div class="" data-block="true" data-editor="7kljv" data-offset-key="45hts-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="45hts-0-0"><span data-offset-key="45hts-0-0">eDrawings is a free utility from SolidWorks. Â eDrawings opens SolidWorks and AutoCAD drawing files. Â eDrawings updatesÂ every year. Â eDrawings handles new AutoCAD drawing formats with the updates. Â Like most of SolidWorks, you can automate eDrawings.</span></div>
</div>
<div class="" data-block="true" data-editor="7kljv" data-offset-key="9l2k5-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="9l2k5-0-0"><span data-offset-key="9l2k5-0-0">Â </span></div>
</div>
<div class="" data-block="true" data-editor="7kljv" data-offset-key="e1jdj-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="e1jdj-0-0"><span data-offset-key="e1jdj-0-0">novaPDF is a utility to generate Adobe Acrobat [.PDF] files. Â novaPDF is available on Windows computers.</span></div>
</div>
<div class="" data-block="true" data-editor="7kljv" data-offset-key="crbvv-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="crbvv-0-0"><span data-offset-key="crbvv-0-0">Â </span></div>
</div>
<div class="" data-block="true" data-editor="7kljv" data-offset-key="abcm7-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="abcm7-0-0"><span data-offset-key="abcm7-0-0">Microsoft Access 64bit. Â Most use the 32bit versions of MS Access and MS Office. Â For this solution we need a 64bit VBA capable container to host the eDrawings component.</span></div>
</div>
<div class="" data-block="true" data-editor="7kljv" data-offset-key="eoto9-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="eoto9-0-0"><span data-offset-key="eoto9-0-0">Â </span></div>
</div>
<h2 class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="1rtm-0-0"><span data-offset-key="1rtm-0-0">The solution</span></h2>
<div class="" data-block="true" data-editor="7kljv" data-offset-key="dfspo-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="dfspo-0-0"><span data-offset-key="dfspo-0-0">Â </span></div>
</div>
<div class="" data-block="true" data-editor="7kljv" data-offset-key="ble4c-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="ble4c-0-0"><span data-offset-key="ble4c-0-0">With novaPDF create some virtual printers. Â Create separate printers for each CAD drawing page size and orientation. Â For example: &#8216;B_Size_portrait&#8217;, &#8216;B_Size_landscape&#8217;, &#8216;D_Size_landscape&#8217;, &#8216;C_Size_landscape&#8217;.</span></div>
</div>
<div class="" data-block="true" data-editor="7kljv" data-offset-key="7f7c-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="7f7c-0-0"><span data-offset-key="7f7c-0-0">Â </span></div>
</div>
<div class="" data-block="true" data-editor="7kljv" data-offset-key="a1cmf-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="a1cmf-0-0"><span data-offset-key="a1cmf-0-0">Create a blank MS Access database application. Â Add a blank Form without a linked table. Â Embed the eDrawings component into the form. Â </span></div>
</div>
<div class="" data-block="true" data-editor="7kljv" data-offset-key="alj53-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="alj53-0-0"><span data-offset-key="alj53-0-0">Â </span></div>
</div>
<div class="" data-block="true" data-editor="7kljv" data-offset-key="d5krp-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="d5krp-0-0"><span data-offset-key="d5krp-0-0">Switch to the VBA editor for the MS Access Form. Â The first step is a loop to watch for new SolidWorks or AutoCAD drawing files. Â Opening each drawing file in turn.</span></div>
</div>
<div class="" data-block="true" data-editor="7kljv" data-offset-key="foe7h-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="foe7h-0-0"><span data-offset-key="foe7h-0-0">Â </span></div>
</div>
<div class="" data-block="true" data-editor="7kljv" data-offset-key="3gmge-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="3gmge-0-0"><span data-offset-key="3gmge-0-0">Use the eDrawings component Event functions to handle the file once it opens. Â The eDrawings component has properties to detect the drawing paper size and orientation. Â Use those properties to choose the matching novaPDF virtual printer and print.</span></div>
</div>
<div class="" data-block="true" data-editor="7kljv" data-offset-key="ef22t-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="ef22t-0-0"><span data-offset-key="ef22t-0-0">Â </span></div>
</div>
<div class="" data-block="true" data-editor="7kljv" data-offset-key="a0l4r-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="a0l4r-0-0"><span data-offset-key="a0l4r-0-0">Provide error handling for the eDrawings Event functions for problems like corrupt files. Â This app rejects undefined paper sizes. Â We ran into a problem detecting AutoCAD drawing sizes that used different scales. Â The solution was to calculateÂ the size ratio of height to width and use the ratio to select the output paper size. Â The MS Access/eDrawings solution becomes unstable after processing 40 to 50 files. Â Auto-restarting MS Access after 20 to 30 files solves the problem.</span></div>
</div>
<div class="" data-block="true" data-editor="7kljv" data-offset-key="5qup1-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="5qup1-0-0"><span data-offset-key="5qup1-0-0">Â </span></div>
</div>
<div class="" data-block="true" data-editor="7kljv" data-offset-key="8j68r-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="8j68r-0-0"><span data-offset-key="8j68r-0-0">This PDF Generator solution runs on a Windows virtual machine. Â It averages processing drawing files every three to five seconds with moderate resources. Â The solution keeps up with an engineering department of about a dozen. Â Well over a hundred thousand legacy CAD files ran through the PDF Generator.</span></div>
</div>
<div class="" data-block="true" data-editor="7kljv" data-offset-key="7heir-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="7heir-0-0"><span data-offset-key="7heir-0-0">Â </span></div>
</div>
<div class="" data-block="true" data-editor="7kljv" data-offset-key="4uok3-0-0">
<div class="public-DraftStyleDefault-block public-DraftStyleDefault-ltr" data-offset-key="4uok3-0-0"><span data-offset-key="4uok3-0-0">There are a few other pieces to the solution. Â A lightweight, custom server process provides point and click printing. Â A custom web server and front end JavaScript client provides searching and viewing. Â The CAD library is now available to desktops, laptops, tablets and smartphones now. There are other, comercial solutions but this preserved the company&#8217;s workflow.</span></div>
</div>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1155</post-id>	</item>
		<item>
		<title>LinkedIn worries</title>
		<link>https://blog.netsnbytes.org/opinion/linkedin-worries-2/</link>
		
		<dc:creator><![CDATA[Dave]]></dc:creator>
		<pubDate>Mon, 10 Mar 2014 03:17:09 +0000</pubDate>
				<category><![CDATA[opinion]]></category>
		<category><![CDATA[security]]></category>
		<guid isPermaLink="false">https://blog.netsnbytes.org/?p=1137</guid>

					<description><![CDATA[The primary reasons LinkedInÂ is the mustached, trench coat and wire frame glasses wearing mouth breather of the internetÂ are the â€œPeople You May Knowâ€ and â€œPeople Also Viewedâ€ features. interactually &#8211; LinkedIn: The Creepiest Social Network Recently I noticed â€œPeople You May Knowâ€ displaying plain email addresses instead of LinkedIn profiles. The plain email accounts do [&#8230;]]]></description>
										<content:encoded><![CDATA[<blockquote>
<p>The primary reasons LinkedInÂ is the mustached, trench coat and wire frame glasses wearing mouth breather of the internetÂ are the â€œPeople You May Knowâ€ and â€œPeople Also Viewedâ€ features.</p>
<ul>
<li><a href="http://www.interactually.com/linkedin-creepiest-social-network/">interactually &#8211; LinkedIn: The Creepiest Social Network</a></li>
</ul>
</blockquote>
<h4>Recently I noticed  â€œPeople You May Knowâ€ displaying plain email addresses instead of LinkedIn profiles.</h4>
<p>The plain email accounts do not have actual LinkedIn profiles.  My guess is that LinkedIn wants me to try to connect and then send that email address an invite to join LinkedIn.  </p>
<p>The creepiest part of it is how LinkedIn is connecting email addresses to my LinkedIn account.  I never imported contacts though the prompts appear at nearly every login.  I installed the iOS LinkedIn app but never actually launched it (just deleted the LinkedIn app).  I use <a href="http://www.mozilla.org/en-US/firefox/new/">Firefox</a> with <a href="http://noscript.net/">No-Script</a> and only allow LinkedIn scripts while on their site.</p>
<p>I do not use LinkedIn much.  There are a few subscribed groups with the weekly email digests.  After scanning the digests the emails are deleted.  Search is only used when the mostly random marketing people or Indians send invites.  I check them out.</p>
<p>At what point did LinkedIn go from being cool tech to creepy.  A lot of the stuff they were building was interesting from a tech perspective.  I guess I&#39;m not liking the direction their heading.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1137</post-id>	</item>
		<item>
		<title>Search with Google&#8230; link for Mobile Safari</title>
		<link>https://blog.netsnbytes.org/interests/search-with-google-link-for-mobile-safari-2/</link>
		
		<dc:creator><![CDATA[Dave]]></dc:creator>
		<pubDate>Mon, 04 Nov 2013 04:19:18 +0000</pubDate>
				<category><![CDATA[Interests]]></category>
		<guid isPermaLink="false">https://blog.netsnbytes.org/?p=1127</guid>

					<description><![CDATA[In desktop browsers, Firefox &#038; Chrome, you can select text or a phrase and right-click to *Search with Google*. The desktop browser opens another tab with search results for your selected text. This is a handy feature I miss on the iPad. How to create the bookmarklet in iOS â€¨1. Create a new bookmark using [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>In desktop browsers, Firefox &#038; Chrome, you can select text or a phrase and right-click to *Search with Google*.  The desktop browser opens another tab with search results for your selected text.  This is a handy feature I miss on the iPad.</p>
<p><span id="more-1127"></span></p>
<h3>How to create the bookmarklet in iOS </h3>
<p>â€¨1. Create a new bookmark using the Safari Send to button (bookmark this web page).<br />
2. Name the bookmark &#8220;Search with Google&#8221;.<br />
3. Select and copy the bookmarklet code below.<br />
4. Open Safari&#8217;s bookmarks and locate the &#8220;Search&#8230;&#8221; bookmark.<br />
5. Edit the bookmark, deleting the URL/link and paste the copied code.<br />
6. Save the changes.â€¨</p>
<h3>Using the *Search Google for&#8230;* bookmarklet in iOS Safari</h3>
<p>* Highlight text or a phrase on a web page.<br />
* Click the Search&#8230; bookmarklet to open results in new tab.</p>
<h3>Search with Google Bookmarklet code</h3>
<div class="codecolorer-container text vibrant" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">javascript:q = &quot;&quot; + (window.getSelection ? window.getSelection() : document.getSelection ? document.getSelection() : document.selection.createRange().text); if (!q) q = prompt(&quot;Search words&quot;, &quot;&quot;); if (q!=null) window.open(&quot;http://www.google.com/search?q=&quot; + escape(q).replace(/ /g, &quot;+&quot;)); void 0</div></div>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1127</post-id>	<georss:point>39.961767 -75.932655</georss:point>
		<geo:lat>39.961767</geo:lat>
		<geo:long>-75.932655</geo:long>
	</item>
	</channel>
</rss>
