<?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>ajgraham.com &#187; General IT</title>
	<atom:link href="http://www.ajgraham.com/category/it-general/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ajgraham.com</link>
	<description>web design, development and consultation in Prague</description>
	<lastBuildDate>Fri, 02 Jul 2010 21:55:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Adjusting Google Chromes default search to English</title>
		<link>http://www.ajgraham.com/2010/02/changing-google-chromes-default-search-to-english/</link>
		<comments>http://www.ajgraham.com/2010/02/changing-google-chromes-default-search-to-english/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 14:02:46 +0000</pubDate>
		<dc:creator>alex</dc:creator>
				<category><![CDATA[General IT]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[default]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://www.ajgraham.com/?p=216</guid>
		<description><![CDATA[Go to google.com, click on &#8220;Google in English&#8221;. Only after doing this will your cookie be saved. Google Chrome will respect the homepage setting, and should use whatever base URL for Google you get when you visit google.com. After doing the above change, restart the browser and wait ten seconds. [...]]]></description>
			<content:encoded><![CDATA[<p>Go to google.com, click on &#8220;Google in English&#8221;. Only after doing this will your cookie be saved. Google Chrome will respect the homepage setting, and should use whatever base URL for Google you get when you visit google.com. After doing the above change, restart the browser and wait ten seconds. At that point, the {google:baseURL} entry should point to google.com.</p>
<p>Hurrah! No more google.xx which you didn&#8217;t want <img src='http://www.ajgraham.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ajgraham.com/2010/02/changing-google-chromes-default-search-to-english/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Checking Java version and installing via batch file/command line</title>
		<link>http://www.ajgraham.com/2009/12/checking-java-version-and-installing-via-batch-filecommand-line/</link>
		<comments>http://www.ajgraham.com/2009/12/checking-java-version-and-installing-via-batch-filecommand-line/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 17:07:39 +0000</pubDate>
		<dc:creator>alex</dc:creator>
				<category><![CDATA[General IT]]></category>
		<category><![CDATA[batch file]]></category>
		<category><![CDATA[check]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[version]]></category>

		<guid isPermaLink="false">http://www.ajgraham.com/?p=200</guid>
		<description><![CDATA[Unusual situation the other day. I got asked to add an Intranet page with a guide to explain how end users can check the version (or versions) of Java they have installed. I thought to myself there has to be a better and more efficient way of doing this, and [...]]]></description>
			<content:encoded><![CDATA[<p>Unusual situation the other day. I got asked to add an Intranet page with a guide to explain how end users can check the version (or versions) of Java they have installed. I thought to myself there has to be a better and more efficient way of doing this, and making it easier for the end user at the same time.</p>
<p><strong>First</strong> I had the idea of pointing them to the official Java install test page at <a href="http://www.java.com/en/download/help/testvm.xml">Sun Micro</a>, or the more detailed and thorough page over at <a href="http://www.javatester.org/version.html">http://www.javatester.org/version.html</a>. I thought this was a decent solution, until I found out that if a user has more than 1 version of Java installed then a users Web browser can be set to use a different version of Java than the one that might be getting used for other applications.</p>
<p><strong>Second</strong> solution was to use a batch file that would show all versions of Java that were installed on a machine:</p>
<blockquote><p>
java -version<br />
pause
</p></blockquote>
<p>This worked fine I thought. Just create a batch file, put it on an accessible network source and fire round an email with a link to it.</p>
<p><strong>Third</strong> solution. I spoke to a friend who is great with Desktop Support/Windows/etc. He managed to write a script that checks the specific version of Java that was needed (in this case jre-1_5_0_18-windows-i586-p.exe) and if its not installed, installs it from a network resource.</p>
<blockquote><p>
@Echo off<br />
cls<br />
Echo Installing Java 1.5.0_18, Please be patient</p>
<p>set temp_file_a=c:\temp_a.txt<br />
set net2=0<br />
if exist %temp_file_a%  del %temp_file_a% echo clear temp file</p>
<p>rem get java installations<br />
regedit /e %temp_file_a% &#8220;HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Plug-in\1.5.0_18&#8243;<br />
if exist %temp_file_a% set net2=1<br />
echo checked registry</p>
<p>if %net2% == 0  echo Java 1.5.0_18 Not Installed if %net2% == 1  echo Java 1.5.0_18 Already Installed if %net2% == 1  goto ta05 echo.<br />
echo Installing Java 1.5.0_18. Please be patient \\&#8221;jre-1_5_0_18-windows-i586-p.exe&#8221; /passive<br />
:ta05</p>
<p>if exist %temp_file_a%  del %temp_file_a% cls Echo Java 1.5.0_18 Installed.<br />
pause
</p></blockquote>
<p> This got rolled out via a run once group policy for the 400 users required. From Web Developer to Desktop Support in 3 easy steps <img src='http://www.ajgraham.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ajgraham.com/2009/12/checking-java-version-and-installing-via-batch-filecommand-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Facebook Problem</title>
		<link>http://www.ajgraham.com/2009/09/the-facebook-problem/</link>
		<comments>http://www.ajgraham.com/2009/09/the-facebook-problem/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 12:53:01 +0000</pubDate>
		<dc:creator>alex</dc:creator>
				<category><![CDATA[General IT]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[settings]]></category>

		<guid isPermaLink="false">http://ajgraham.com/?p=60</guid>
		<description><![CDATA[Facebook is a really useful service which I use a lot to keep up with friends that have moved away, I even have my dad added on it. There is a huge privacy conundrum in its current state due to the way applications are given free reign with data. 
If [...]]]></description>
			<content:encoded><![CDATA[<p>Facebook is a really useful service which I use a lot to keep up with friends that have moved away, I even have my dad added on it. There is a huge privacy conundrum in its current state due to the way applications are given free reign with data. </p>
<p>If one of your Friends installs/uses an application, that application is given the same access rights to <em>all</em> of their Friends data (one of them being you!) as they have. This gives the application the opportunity to copy and store very personal information such as date of birth, address, telephone number(s), employment and/or education history (assuming you&#8217;ve added it and not limited the access to it). So for every silly, pointless quiz/game that one of your Friends installs/uses it opens all of the data on your profile up for it to misuse.</p>
<p>There is a very simple fix to this though. Delete your profile, all your friends or wait until next year sometime when Facebook implements more stringent controls on data access for applications&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ajgraham.com/2009/09/the-facebook-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to waste time and money, when trying to save both</title>
		<link>http://www.ajgraham.com/2009/09/how-to-waste-time-and-money-when-trying-to-save-both/</link>
		<comments>http://www.ajgraham.com/2009/09/how-to-waste-time-and-money-when-trying-to-save-both/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 21:34:01 +0000</pubDate>
		<dc:creator>alex</dc:creator>
				<category><![CDATA[General IT]]></category>
		<category><![CDATA[browser bugs]]></category>
		<category><![CDATA[browser testing]]></category>
		<category><![CDATA[IE6]]></category>

		<guid isPermaLink="false">http://ajgraham.com/?p=36</guid>
		<description><![CDATA[I&#8217;m a Web Developer, if you didn&#8217;t know (what? You knew that already? Ahh, that&#8217;ll be because it&#8217;s written on most pages&#8230;) and as part of that lucky role I have to make square pegs fit round holes. Most of that task is focused on making sure that new web [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a Web Developer, if you didn&#8217;t know (what? You knew that already? Ahh, that&#8217;ll be because it&#8217;s written on most pages&#8230;) and as part of that lucky role I have to make square pegs fit round holes. Most of that task is focused on making sure that new web pages are backwards compatible (or my preferred term &#8211; degrade gracefully) for Internet Explorer 6.</p>
<p>IE6 is now over 8 years old, thats historic in IT terms. Unfortunately there are many (un-named) organisations that persist in using it due to a fear of upgrading to IE7. This would be understandable, except that so much time has now passed it now requires more work to support IE6 than it would ever take to upgrade. I have recently found myself spending hours extra to ensure that a site would look okay <em>just</em> for IE6 with every other browser working seamlessly. I enjoy being tested and my skills pushed to the limit, but not if its unnecessary and the lessons learnt are only applicable to an out-of-date web browser. I have much better things to do with my time, like count pixels on my screen&#8230;.</p>
<blockquote><p>[IE6 is] Compatible with IT departments that fear change</p></blockquote>
<p>For a sarcastic view on the issue see: <a href="http://saveie6.com/" target="_blank">http://saveie6.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ajgraham.com/2009/09/how-to-waste-time-and-money-when-trying-to-save-both/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
