<?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>Dom Barnes dot com &#187; work</title>
	<atom:link href="http://dombarnes.com/category/work/feed/" rel="self" type="application/rss+xml" />
	<link>http://dombarnes.com</link>
	<description></description>
	<lastBuildDate>Sun, 05 Sep 2010 21:27:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>HOWTO: Install a WIM Image in VMWare Fusion</title>
		<link>http://dombarnes.com/2009/03/howto-install-a-wim-image-in-vmware-fusion/</link>
		<comments>http://dombarnes.com/2009/03/howto-install-a-wim-image-in-vmware-fusion/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 21:32:46 +0000</pubDate>
		<dc:creator>Dom</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[macosx]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[imagex]]></category>
		<category><![CDATA[vmware fusion]]></category>
		<category><![CDATA[wim]]></category>

		<guid isPermaLink="false">http://dombarnes.com/?p=249</guid>
		<description><![CDATA[My company builds their machines based on a USB rebuild solution, applying a Windows WIM image with Windows PE. I wanted to get this into a VMWare Fusion VM. After some googling, I managed to get it working, and here is how. My main resource was this invaluable page. I have put my steps here [...]]]></description>
			<content:encoded><![CDATA[<p>My company builds their machines based on a USB rebuild solution, applying a Windows WIM image with Windows PE. I wanted to get this into a VMWare Fusion VM. After some googling, I managed to get it working, and here is how. My main resource was <a href="O2UKOfficial@markperera We are working with Apple on tethering, but we're not making any announcements yet.">this invaluable page</a>. I have put my steps here for clarity.</p>
<p>1. Follow the instructions <a href="http://www.svrops.com/svrops/articles/winvistape2.htm">here</a> for creating a Windows PE boot disc. You will need a Windows system to create this with. Unfortunately the file resultant ISO file is 180MB, not really suitable to share here.<br />
2. Get your WIM image on a USB drive.<br />
3. Create you VM, selecting the appropriate OS, in my case, XP. Use the ISO image you created in step 1 as the install media.<br />
4. Start up your VM and wait to be presented by a command prompt.<br />
5. Type <em>DISKPART</em> to start the disk partition tool. Type the following commands</p>
<p style="padding-left: 30px;"><em>list disk<br />
sel dis 0<br />
clean<br />
create part pri size=30000</em> (for 30GB, change as necessary)<br />
<em>ass letter=c<br />
format fs=ntfs label=XP quick<br />
act<br />
exit</em></p>
<p>6. Next you need to insert the USB drive with your WIM image on. And we need to go back into <em>DISKPART</em>. You need to assign a letter to your partition on the drive. So do this</p>
<p style="padding-left: 30px;">list disk<br />
<em>sel dis 1</em> (confirm disk number from list disk command)<br />
<em>list vol</em><br />
<em>sel vol 3</em> (in my case, my partition on the drive was 3)<br />
<em>ass letter=m<br />
exit</em></p>
<p>7. Back at the command prompt, you can now begin applying the WIM to your VM. Type the following command, inserting your own wim file name where I put in filename.wim<br />
<em>imagex  /apply m:\filename.wim 1 c: /verify</em></p>
<p>The variables for this are of course your wim file name, the destination drive should usually be C:, and the &#8220;1&#8243; is the index number on your wim. This is likely to be 1 but if you are unsure or have issues, refer to the <a href="http://technet.microsoft.com/en-us/library/cc722145.aspx">Microsoft Support</a> pages.</p>
<p>Then, give it about 10 minutes to apply your WIM and once done, type &#8220;exit&#8221; to reboot the system. You will probably need to shutdown the VM when it reboots, to allow you to remove the ISO image which will be attached to the VM as a physical disc. Once that is out, reboot and make sure you&#8217;re plugged into your company network if needed, and that the networking mode is Bridged. This will give your VM a physical IP address from the DHCP server, rather than using NAT routing to reuse the IP address of your Mac.</p>
]]></content:encoded>
			<wfw:commentRss>http://dombarnes.com/2009/03/howto-install-a-wim-image-in-vmware-fusion/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How Not to run your network</title>
		<link>http://dombarnes.com/2008/09/how-not-to-run-your-network/</link>
		<comments>http://dombarnes.com/2008/09/how-not-to-run-your-network/#comments</comments>
		<pubDate>Sun, 28 Sep 2008 14:00:39 +0000</pubDate>
		<dc:creator>Dom</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[vnc]]></category>

		<guid isPermaLink="false">http://dombarnes.com/?p=198</guid>
		<description><![CDATA[I&#8217;ve recently finished working with one employer, and start a new job tomorrow. This job was my first step into IT and it was quite a eye opener, mainly in the way of how not to run your network. My former employer was a public sector company, and foolishly I expected things to be a [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently finished working with one employer, and start a new job tomorrow. This job was my first step into IT and it was quite a eye opener, mainly in the way of how not to run your network. </p>
<p>My former employer was a public sector company, and foolishly I expected things to be a bit more secure than they were. And as a result, I&#8217;d like to share a few details of what they were going wrong.</p>
<p>1. At least 40% of employees using PC&#8217;s used a generic login, really designed for the IT department for debugging.<br />
2. User profiles were locally cached and stored. This meant all your files remain on one PC, provided no means of backing up data, and made PC replacements very difficult.<br />
3. All users had local admin rights. You would be surprised how many PC&#8217;s I saw running Firefox, BBC iPlayer, uTorrent. I can say right now that I would never transfer MP3 files or any films downloaded by these tools.<br />
4. Desktops were not locked down. Change your wallpaper, delete or create any files.<br />
5. USB drives, floppy drives and CD drives were all open. So much so that I caught a virus on my USB drive from one PC and spread it around to others before McAfee even detected it!<br />
6. Desktop Support was provided using a tool called PushVNC which is a back-alley way of starting a VNC session with a remote client. Doesn&#8217;t provide the user any notification someone is watching or ask for permission. Serious Data Protection Act issues there.</p>
<p>Issues like these can be easily solved, and if someone would make the effort, things would be so much more secure. Group Policies could limit files being saved to My Documents only, stop USB drives, CDs, and floppies being used. No local admin rights would save issues with unauthorised software being used. Roaming profiles could be implemented, mapping a drive to a SAN for the My Documents and caching profiles locally. This would also provide a easier method of backing up, and certainly make my old job of replacing PC&#8217;s quicker. I can tell you that the data transfer was the most time consuming thing, especially when you have a Dell GX150 with USB 1.1 giving slow data transfer rates. </p>
<p>Anyway, my new job is private sector, and I&#8217;m fairly certain their network will be much more secure and easier to manage. But we shall see&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://dombarnes.com/2008/09/how-not-to-run-your-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOWTO: Install WiFi Certificates on your iPhone</title>
		<link>http://dombarnes.com/2008/07/howto-install-wifi-certificates-on-your-iphone/</link>
		<comments>http://dombarnes.com/2008/07/howto-install-wifi-certificates-on-your-iphone/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 21:35:45 +0000</pubDate>
		<dc:creator>Dom</dc:creator>
				<category><![CDATA[iphone]]></category>
		<category><![CDATA[macosx]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[certificate]]></category>
		<category><![CDATA[wifi]]></category>

		<guid isPermaLink="false">http://dombarnes.com/?p=170</guid>
		<description><![CDATA[So I now work where they employ the use of certificates for wifi security, and I want to use the wifi on my iPhone since the data connection sucks. But how? Well with iPhone 2.0 software, there is support for certificates. But how do you get it on your phone? Well&#8230; 1. Go to http://www.apple.com/support/downloads/iphoneconfigurationutility10formacosx.html and [...]]]></description>
			<content:encoded><![CDATA[<p>So I now work where they employ the use of certificates for wifi security, and I want to use the wifi on my iPhone since the data connection sucks. But how?</p>
<p>Well with iPhone 2.0 software, there is support for certificates. But how do you get it on your phone?</p>
<p>Well&#8230;</p>
<p>1. Go to http://www.apple.com/support/downloads/iphoneconfigurationutility10formacosx.html and download the iPhone Configuration Tool. Install</p>
<p>2. Open up the Config tool from your Utilities folder.</p>
<p>3. Select Configuration Profiles and click New</p>
<p>4. Fill in the details on the General Tab.</p>
<p>5. Click Credentials. and click the plus sign, and navigate to the Certificate file (in my case a .cer file). Click OK.</p>
<p>6. Check the details look correct, and give it a name.</p>
<p>And thats it! Done.</p>
<p>Well not quite. You need to install it on your iphone. You have two/three options but the third involves Mac OS X Server which many personal users won&#8217;t have. So your two options are host a file on a website somewhere, or email it to yourself. If you want to host it, click the Export button, save the file to disk, and then upload it somewhere. Then navigate to that file online and it should ask you to install.</p>
<p>The second easier option is to email it to yourself. So click Share, and wait for Mail.app to open a new mail and punch in an email address you can access on your iPhone. Click send. Wait (or go and check your mail).</p>
<p>Then in the email, click the file, and you will be asked to install the file. Do so and bingo. Success. Now go test it and make sure it works!</p>
<p>Update: I have tested this at work, and it worked perfectly. You have to make sure you enter your username as Domain\username and your password as normal or it won&#8217;t authenticate. So now I can use the internet connection at work. Only thing is that IMAP and POP3 ports are blocked so can&#8217;t use the Mail.app to check them, but everything else works a treat!</p>
]]></content:encoded>
			<wfw:commentRss>http://dombarnes.com/2008/07/howto-install-wifi-certificates-on-your-iphone/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Working hard</title>
		<link>http://dombarnes.com/2008/06/working-hard/</link>
		<comments>http://dombarnes.com/2008/06/working-hard/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 21:19:54 +0000</pubDate>
		<dc:creator>Dom</dc:creator>
				<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://dombarnes.com/?p=168</guid>
		<description><![CDATA[Remember a while ago when I was losing my job? Well that happened, an I was unemployed. And that was fun. I saw a few films, relaxed and just wasted my time. Until one day later when I had a job interview. And then 2 days later, I started again. My title is now PC [...]]]></description>
			<content:encoded><![CDATA[<p>Remember a while ago when I was losing my job? Well that happened, an I was unemployed. And that was fun. I saw a few films, relaxed and just wasted my time. Until one day later when I had a job interview. And then 2 days later, I started again.</p>
<p>My title is now PC Installations Engineer, although my security badge says ICT Technician, but same difference. So I spend my time installing new PC&#8217;s, replacing old ones, and transferring data. Oh and I have spent a lot of time fixing printers.</p>
<p>While it may not be the most exciting or detailed job, its a start in the industry, and its experience for me which is the main thing.</p>
<p>The hope is that while I do this, I can study for my Network+ and by the last quarter of the year, I should be qualified and that should help me get a better job.</p>
<p>What have I learnt so far? Well roaming profiles are VERY important to a network, all users should NOT be given admin priviledges, and internet ports should be closed (iPlayer, Torrents) &#8211; basically the network at my work is not great by any means. Data transfer involves, pulling out the old drive, copying user folders to a new folder on the new machine, and leaving a text file on the All Users desktop with instructions, involving logging on and off, using the generic IT logon, and copying files across. Its by no means nice. And of course you have HUGE internet cache&#8217;s to deal with too.</p>
<p>So in the mean time, I&#8217;ll be hauling Dells. And I must say its really tiring.</p>
]]></content:encoded>
			<wfw:commentRss>http://dombarnes.com/2008/06/working-hard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Last days at work</title>
		<link>http://dombarnes.com/2008/05/last-days-at-work/</link>
		<comments>http://dombarnes.com/2008/05/last-days-at-work/#comments</comments>
		<pubDate>Wed, 07 May 2008 22:51:38 +0000</pubDate>
		<dc:creator>Dom</dc:creator>
				<category><![CDATA[work]]></category>
		<category><![CDATA[redundancy]]></category>

		<guid isPermaLink="false">http://dombarnes.com/?p=160</guid>
		<description><![CDATA[Today marks the final day of my working life in Financial Services. Today I had a trip to Manchester to demo a database, little knowing that I would probably not see most of my colleagues again. So Tuesday seems to be the last day for that. As of 15th May I&#8217;ll be unemployed (well 16th [...]]]></description>
			<content:encoded><![CDATA[<p>Today marks the final day of my working life in Financial Services. Today I had a trip to Manchester to demo a database, little knowing that I would probably not see most of my colleagues again. So Tuesday seems to be the last day for that. As of 15th May I&#8217;ll be unemployed (well 16th really). Its (hopefull) the end of an era.</p>
<p>I&#8217;ve been working in FS for about 5 years now, starting originally at Norwich Union in 2003 and working there until 2006, when I moved up to Birmingham, and then went into FS again just as a temporary job. As often happens I settled and put a new job on the back burner, and then over the past year, I have been slowly working toward my IT qualifications, hoping to move over.</p>
<p>Well that time came upon me quicker than I planned, and I also got a little pay out to go with it. Without mentioning the company name, we have been going through some changes, and found out a few months back our office was going to close. After hearing that it just became an issue of when.</p>
<p>Today on my train journey I was listening to Leo Laporte talk on TWiT about the Yahoo/Microsoft business and in particular, some of the comments about Yahoo sounded all to familiar. Jerry Yang and other Yahoo bods made comments about now that the Microsoft deal deadline passed, they can move on and focus on being  more efficient business. And that is literally what the bosses at my work were saying.</p>
<p>My worry is for the company that they are already too far down that path, and that for years they have been hiding failure behind small successes, and of course that means for the current employees, a tough time, uncertainty and risk of redundancy too.</p>
<p>But I&#8217;ve been through it now and have to look foward to a new job. I&#8217;m looking at starting off as some sort of technician, doing installation and repairs or hardware and network stuff, hopefully in a full time position, but I&#8217;m also looking at contract work so we&#8217;ll see how we get on.</p>
<p>Either way, I&#8217;ve got some time to myself which I will spend making music, tidying the house and seeing a variety of films, and probably blog a fair bit too!</p>
]]></content:encoded>
			<wfw:commentRss>http://dombarnes.com/2008/05/last-days-at-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Look out fire, just reached the frying pan. You&#8217;re next!</title>
		<link>http://dombarnes.com/2008/03/look-out-fire-just-reached-the-frying-pan-youre-next/</link>
		<comments>http://dombarnes.com/2008/03/look-out-fire-just-reached-the-frying-pan-youre-next/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 22:47:02 +0000</pubDate>
		<dc:creator>Dom</dc:creator>
				<category><![CDATA[blogs]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://domster83.wordpress.com/2008/03/07/look-out-fire-just-reached-the-frying-pan-youre-next/</guid>
		<description><![CDATA[That title may not make much sense, and thats cos its a really far off simily (look it up) to my current work situation. As I said before, I&#8217;m currently impending redundancy, and this week, we reached the end of the consultancy period. What does that mean? Well they are now at free liberty to [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-family:Georgia;font-size:16px;line-height:20px;">That title may not make much sense, and thats cos its a really far off simily (look it up) to my current work situation.</span></p>
<p><span style="font-family:Georgia;font-size:16px;line-height:20px;">As I said before, I&#8217;m currently impending redundancy, and this week, we reached the end of the consultancy period. What does that mean? Well they are now at free liberty to give us our 30 days notice at any point. There has to be some formal dismissal hearing, and then 48 hours, but basically we&#8217;ll be going soon.</span></p>
<p><span style="font-family:Georgia;font-size:16px;line-height:20px;">What does that mean for me? Well of course I&#8217;m looking for a new job. I wanna take this as an opportunity to get out of my industry and into IT. So I&#8217;m spending my time looking at IT Technician, Help desk jobs, anything that I can get for a good starting job, where I can do hardware and software repairs, and if possible, some travel.</span></p>
<p><span style="font-family:Georgia;font-size:16px;line-height:20px;">I think I wanna get into network admin. At least that&#8217;s what I feel like I wanna do so I&#8217;ll follow that path unless my heart says otherwise.</span></p>
<p><span style="font-family:Georgia;font-size:16px;line-height:20px;">So if you&#8217;re interested in hiring an aspiring IT Technician, who is A+ certified and working on his Network+, then please drop me a note and make me an offer.</span></p>
<p><span style="font-family:Georgia;font-size:16px;line-height:20px;">Otherwise, I&#8217;ll keep trawling those online job search sites, and watching the hours tick away at work, as the share price drops, as well as my level of concentration and focus. <img src="http://dombarnes.com/wp-content/uploads/2008/03/shareprice.png" width="349"/></span></p>
<p><span style="font-family:Georgia;font-size:16px;line-height:20px;">Until then, I&#8217;ll be working more on the new site, perfecting the theme for launch. Which hopefully won&#8217;t be too many more weeks away.</span></p>
<p><span style="font-family:Georgia;font-size:16px;line-height:20px;">And speaking of that, is there anyway of getting my posts on the old blog to auto-forward to the new blog? Maybe not but worth asking. I&#8217;d just like to drive traffic away from the old, and make sure I&#8217;m still getting visitors to the new one for the same searches. Leave me a note in the comments.</span></p>
<div class="posttagsblock"><a href="http://technorati.com/tag/work" rel="tag">work</a>, <a href="http://technorati.com/tag/redundancy" rel="tag">redundancy</a>, <a href="http://technorati.com/tag/new%20job" rel="tag">new job</a>, <a href="http://technorati.com/tag/it%20technician" rel="tag">it technician</a></div>
]]></content:encoded>
			<wfw:commentRss>http://dombarnes.com/2008/03/look-out-fire-just-reached-the-frying-pan-youre-next/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redundancy</title>
		<link>http://dombarnes.com/2008/02/redundancy/</link>
		<comments>http://dombarnes.com/2008/02/redundancy/#comments</comments>
		<pubDate>Tue, 05 Feb 2008 20:06:40 +0000</pubDate>
		<dc:creator>Dom</dc:creator>
				<category><![CDATA[life]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[fired]]></category>
		<category><![CDATA[job]]></category>
		<category><![CDATA[redundancy]]></category>

		<guid isPermaLink="false">http://domster83.wordpress.com/?p=169</guid>
		<description><![CDATA[Today I received a bit of bad news. My company has decided to close all its sales offices in the UK, and centralise the work in Manchester. This, as you can guess from the title, means bad news for me. My office, along with a few more from around the country will be closing in [...]]]></description>
			<content:encoded><![CDATA[<p>Today I received a bit of bad news. My company has decided to close all its sales offices in the UK, and centralise the work in Manchester. This, as you can guess from the title, means bad news for me. My office, along with a few more from around the country will be closing in the next few months. We&#8217;ve entered a consultation period at the moment, and that will finish on 5th March. Then notice periods will be issued, or at least begin to be issued.</p>
<p>For me, this means that I will get my 1 month notice either in March or April. During that time, we&#8217;ll have to pass on our group schemes to Manchester as they all get centralised up there. And then we will probably have to clear out the office, so relocate files, remove the literature supplies we have, the desks, computers, switches and servers, phones, chairs, and everything else. Everyone else in the office is in the same boat, so we&#8217;ll all be looking for new jobs.</p>
<p>I guess I&#8217;m in a slightly better position as I&#8217;m already looking for new jobs in IT. But everyone else will have to adjust to the fact that we&#8217;re being fired, and then get into job searching mode.</p>
<p>In terms of redundancy pay, since I&#8217;ve been there for 19 months, I should get about 5 weeks pay, which isn&#8217;t fab, but its better than nothing and it should tide me over till I can get another job.</p>
<p>In the mean time, I&#8217;m sure business will dry up, and the attitude in the office will be low. No one is going to have the spirit to work particularly hard, which will make things more difficult.</p>
<p>So over the next few months I&#8217;ll be blogging a bit more about my job, and keeping you reader(s) up to date with the comings and goings of my job. And of course my hunt for a new job. For now, I&#8217;m just dealing with it, and thinking about my trip to Athens that I will probably never get.</p>
]]></content:encoded>
			<wfw:commentRss>http://dombarnes.com/2008/02/redundancy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Women&#8217;s No Pay Day</title>
		<link>http://dombarnes.com/2007/10/womens-no-pay-day/</link>
		<comments>http://dombarnes.com/2007/10/womens-no-pay-day/#comments</comments>
		<pubDate>Tue, 30 Oct 2007 08:49:00 +0000</pubDate>
		<dc:creator>Dom</dc:creator>
				<category><![CDATA[feminism]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[]]></category>
		<category><![CDATA[fawcett]]></category>
		<category><![CDATA[no pay day]]></category>
		<category><![CDATA[unison]]></category>
		<category><![CDATA[womens no pay day]]></category>

		<guid isPermaLink="false">http://domster83.wordpress.com/2007/10/30/womens-no-pay-day/</guid>
		<description><![CDATA[  Today is Women&#8217;s No Pay Day. Its a day to make people aware that (as you see above) on average 17% of women are paid £4000 less than their male counterparts, thats the same as working for free from October 30th till the end of the year. So please join in Fawcett and Unison&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><img border="0" width="372" src="http://www.fawcettsociety.org.uk/Images/rip-off%20web%20dated(3).GIF" height="352" /> </p>
<p>Today is Women&#8217;s No Pay Day. Its a day to make people aware that (as you see above) on average 17% of women are paid £4000 less than their male counterparts, thats the same as working for free from October 30th till the end of the year.</p>
<p>So please join in Fawcett and Unison&#8217;s campaign to make people aware, and fight the blatent sexism that still happens in some workplaces. If you can, print of flyers from the website, tell people about the day or just be aware of it. And be sure to sign the <a target="_blank" href="http://petitions.pm.gov.uk/paygap/">online petition.</a></p>
<p>Via <a href="http://www.fawcettsociety.org.uk/index.asp?Pageid=515">Fawcett Society</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dombarnes.com/2007/10/womens-no-pay-day/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Powerpoint Problems &#8211; Watch this Employers!</title>
		<link>http://dombarnes.com/2007/10/powerpoint-problems-watch-this-employers/</link>
		<comments>http://dombarnes.com/2007/10/powerpoint-problems-watch-this-employers/#comments</comments>
		<pubDate>Sun, 07 Oct 2007 22:53:13 +0000</pubDate>
		<dc:creator>Dom</dc:creator>
				<category><![CDATA[video]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[comedy]]></category>
		<category><![CDATA[powerpoint]]></category>
		<category><![CDATA[slideshows]]></category>

		<guid isPermaLink="false">http://domster83.wordpress.com/2007/10/07/powerpoint-problems-watch-this-employers/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/HLpjrHzgSRM&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/HLpjrHzgSRM&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://dombarnes.com/2007/10/powerpoint-problems-watch-this-employers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I Want to work at an Apple Store!!</title>
		<link>http://dombarnes.com/2007/10/i-want-to-work-at-an-apple-store/</link>
		<comments>http://dombarnes.com/2007/10/i-want-to-work-at-an-apple-store/#comments</comments>
		<pubDate>Fri, 05 Oct 2007 06:29:17 +0000</pubDate>
		<dc:creator>Dom</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[]]></category>
		<category><![CDATA[apple store]]></category>
		<category><![CDATA[genius]]></category>
		<category><![CDATA[mac genius]]></category>
		<category><![CDATA[salary]]></category>
		<category><![CDATA[wages]]></category>

		<guid isPermaLink="false">http://domster83.wordpress.com/2007/10/05/i-want-to-work-at-an-apple-store/</guid>
		<description><![CDATA[Yes its true. I feel the mothership calling me. But the big questions is&#8230;what does working at the Apple Store pay? I&#8217;m trying to get a rough idea cos I don&#8217;t wanna go for a job to find out it won&#8217;t pay the bills. So can anyone help, or give a rough idea? What is [...]]]></description>
			<content:encoded><![CDATA[<p>Yes its true. I feel the mothership calling me. But the big questions is&#8230;what does working at the Apple Store pay? I&#8217;m trying to get a rough idea cos I don&#8217;t wanna go for a job to find out it won&#8217;t pay the bills.<br />
So can anyone help, or give a rough idea? What is the salary of an Apple Store Employee? Don&#8217;t even want a full figure, just an idea. What is the lowest salary they pay? HELP PLEASE!</p>
]]></content:encoded>
			<wfw:commentRss>http://dombarnes.com/2007/10/i-want-to-work-at-an-apple-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
