<?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>DJorgensen</title>
	<atom:link href="http://djorgensen.mine.nu/feed" rel="self" type="application/rss+xml" />
	<link>http://djorgensen.mine.nu</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Mon, 21 May 2012 07:57:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Linux &#8211; Using Screens</title>
		<link>http://djorgensen.mine.nu/2011/03/28/linux-using-screens</link>
		<comments>http://djorgensen.mine.nu/2011/03/28/linux-using-screens#comments</comments>
		<pubDate>Tue, 29 Mar 2011 05:14:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[basic guide]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[ctrl+a s]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[screen]]></category>

		<guid isPermaLink="false">http://d-jorgensen.com/?p=13337</guid>
		<description><![CDATA[Screens is a very handy tool when working in a terminal. It allows one to do more than one thing at a time with only one window. This is an extremely brief overview of how to use screens, for a more in depth guide check out: A Guide to Efficiently Using Irssi and Screen &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>Screens is a very handy tool when working in a terminal. It allows one to do more than one thing at a time with only one window. This is an extremely brief overview of how to use screens, for a more in depth guide check out:</p>
<p><a href="http://quadpoint.org/articles/irssi">A Guide to Efficiently Using Irssi and Screen &#8211; quadpoint.org</a>; and</p>
<p><a href="http://www.rackaid.com/resources/linux-screen-tutorial-and-how-to/">Linux Screen Tutorial and How To &#8211; Rackaid</a></p>
<p>&nbsp;</p>
<p><strong>Installation</strong></p>
<p>If you do not already have it, install it using the package manager you currently have installed (yum install screen / apt-get install screen )</p>
<pre>..(22:53 $).&gt; yum install screen</pre>
<p>&nbsp;</p>
<p><strong>Running</strong></p>
<p>Starting it up is simple:</p>
<pre>..(22:46 $).&gt; screen</pre>
<p>&nbsp;</p>
<p><strong>Common Commands</strong></p>
<p>Commands in screen often follow the ctrl+a [x] style, most commonly used are</p>
<pre>Ctrl+a d --&gt; detaches screens and brings you back to your main terminal

Ctrl+a n --&gt; moves to the next screen; and

Ctrl+a c --&gt; creates a new window</pre>
<p>&nbsp;</p>
<p><strong>Reattaching</strong></p>
<p>When detached and at your main terminal window, you can restore your screens with:</p>
<pre>..(08:19 $).&gt; screen -raAd</pre>
<p>Technically screen -r will work but this one does some more fancy voodoo with resizing and detaching from other sessions currently open.</p>
<p>&nbsp;</p>
<p><strong>Fixing screens</strong></p>
<p>This is more a note to myself since I infrequently halt my screens, and for the most part the point of this posting here&#8230;</p>
<pre>Ctrl+a s  or ctrl s --&gt; halts screens (usually by accidental keystrokes)

Ctrl+a q or ctrl q --&gt; starts them back up!</pre>
<p>Alternately one can simply add &#8220;stty -ixon -ixoff&#8221; into their .bashrc profile to turn off flow control and that should take care of it as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://djorgensen.mine.nu/2011/03/28/linux-using-screens/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Windows network shares on CentOS</title>
		<link>http://djorgensen.mine.nu/2010/11/21/adding-windows-network-shares-on-centos</link>
		<comments>http://djorgensen.mine.nu/2010/11/21/adding-windows-network-shares-on-centos#comments</comments>
		<pubDate>Mon, 22 Nov 2010 04:29:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[cifs]]></category>
		<category><![CDATA[fstab]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[smb]]></category>
		<category><![CDATA[windows share]]></category>

		<guid isPermaLink="false">http://d-jorgensen.com/?p=10420</guid>
		<description><![CDATA[In an effort to make my life easier and be able to access my files securely and easily I&#8217;ve set up my linux box to be able to read the window shares that I have running on my main box. This may not always be the setup I&#8217;ll have &#8211; but it is for now. [...]]]></description>
			<content:encoded><![CDATA[<p>In an effort to make my life easier and be able to access my files securely and easily I&#8217;ve set up my linux box to be able to read the window shares that I have running on my main box. This may not always be the setup I&#8217;ll have &#8211; but it is for now.</p>
<p>My linux box is a headless system that is setup without a GUI, and accessible through SSH, and on the same home network as my windows computer. On the windows computer I currently have a few shares available &#8211; though I will just be demonstrating with one share in this tutorial.</p>
<p>First, to see what shares are available, we run a command with smbclient:</p>
<pre>smbclient -L 192.168.100.50</pre>
<p>L simply lists the shares it finds, and here I just use the IP address of the machine I am looking at.</p>
<p>It will produce some output like this:</p>
<pre>Domain=[HOME] OS=[Windows 5.1] Server=[Windows 2000 LAN Manager]

Sharename       Type      Comment
---------       ----      -------
Complete        Disk
E$              Disk      Default share
IPC$            IPC       Remote IPC
D$              Disk      Default share
I$              Disk      Default share
G$              Disk      Default share
L               Disk
ADMIN$          Disk      Remote Admin
H$              Disk      Default share
C$              Disk      Default share
J$              Disk      Default share
</pre>
<p>In this case I wish to mount the L drive,  so I use the following command, where -t cifs is specifying the common internet file system, then we have the network path to the share, -o specifies options which are the username and password, and lastly the place we want to see the share (which is a folder that we&#8217;ve already created on the linux box) :</p>
<pre>mount -t cifs //192.168.100.50/L -o username=owner,password= /home/user/winbox/L</pre>
<p>So now that I have the share up and running, I can make it stick around permanently by editing fstab. I am a vi person, but just fire up your favourite editor like as follows:</p>
<pre>vi /etc/fstab</pre>
<p>At the bottom of the file we insert the following line, where we have the network path, the mount path, file system, username/password (_netdev so that it holds off trying to mount until the network is established), and 0 0  for the dump and fsck so that both ignore the mounted path:</p>
<pre>//192.168.100.50/L /home/user/winbox/L cifs username=owner,password=,_netdev 0 0</pre>
<p>Once we have that edited, we need to make sure the system will still survive a reboot by testing the mounts:</p>
<pre>mount -a</pre>
<p>And with that, it looks good to go. I can now SSH into this box from another pc somewhere else in the world, and with an application like <a href="http://winscp.net/eng/index.php">winSCP</a> I can pull files down to view them.</p>
<p>Other things that may be useful if you are stuck:</p>
<p><a href="http://linux.die.net/man/8/mount">mount man page</a></p>
<p><a href="http://www.tuxfiles.org/linuxhelp/fstab.html">how to edit fstab</a></p>
]]></content:encoded>
			<wfw:commentRss>http://djorgensen.mine.nu/2010/11/21/adding-windows-network-shares-on-centos/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Work, and furthering myself.</title>
		<link>http://djorgensen.mine.nu/2010/09/02/work-and-furthering-myself</link>
		<comments>http://djorgensen.mine.nu/2010/09/02/work-and-furthering-myself#comments</comments>
		<pubDate>Fri, 03 Sep 2010 05:37:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[a+]]></category>
		<category><![CDATA[CCNA]]></category>
		<category><![CDATA[ccnp]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[cissp]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[general update]]></category>
		<category><![CDATA[leatherwork]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[workspace]]></category>

		<guid isPermaLink="false">http://d-jorgensen.com/?p=4551</guid>
		<description><![CDATA[So for the past few months I&#8217;ve found myself consistently working. Been nice. I&#8217;ve also moved to a newer bigger place. Also nice. My time has been taken up with working, studying, and of course relaxing. Again nice. Found myself with an A+ certification. Not much to really say about it other than it&#8217;s really [...]]]></description>
			<content:encoded><![CDATA[<p>So for the past few months I&#8217;ve found myself consistently working.  Been nice. I&#8217;ve also moved to a newer bigger place. Also nice. My time  has been taken up with working, studying, and of course relaxing. Again  nice.</p>
<p>Found myself with an A+ certification. Not much to really say about it other than it&#8217;s really just a drop in the bucket of the rest of things I&#8217;ve done. Gearing up to hammer out a CCNA finally though &#8211; especially considering that I have everything together for it &#8211; and likely my ITIL, CISSP, and sometime next year CCNP, and really finding myself with a rekindled interest in programming. My current employer seems interested in a different direction congruent to their own interests, but that doesn&#8217;t mean I cannot further my own self. It is plausible that I may be retuning to university next fall depending upon the environment I find myself in as well.</p>
<p>So, yep, I am pretty busy these days. Never really did much in terms of proving my skills and education, but the market seems to be calling for it as there are not all that many jobs available still. Also in the plan for the next week is to create a good solid workspace for myself. My old desk fails to have adequate space for all the computer equipment and leatherwork gear I have in my office area. There shall be photos of it when it is all done though!</p>
<p>And yes, I am continuing to work on leather items! Recently I&#8217;ve been working on a mask of sorts that I am quite excited about, and I have also managed to complete a neck corset, as well as a simple bracer. I have managed to get some nice new supplies and am hoping to get much more done whilst studying and in place of being bored.</p>
<p>That is about all for now though.</p>
]]></content:encoded>
			<wfw:commentRss>http://djorgensen.mine.nu/2010/09/02/work-and-furthering-myself/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Work, travels, and all around good things</title>
		<link>http://djorgensen.mine.nu/2010/06/08/work-travels-and-all-around-good-things</link>
		<comments>http://djorgensen.mine.nu/2010/06/08/work-travels-and-all-around-good-things#comments</comments>
		<pubDate>Tue, 08 Jun 2010 23:08:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[alberta]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[employment]]></category>
		<category><![CDATA[moving]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[travel]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://d-jorgensen.com/?p=83</guid>
		<description><![CDATA[For the past few months now I have found myself working! April and May had me traveling this route: Google Maps, 2010 Journey, of which I have many photos of that are waiting to be processed (all added of course to the few thousand I have not gotten around to yet).  In the first week [...]]]></description>
			<content:encoded><![CDATA[<p>For the past few months now I have found myself working! April and May had me traveling this route: <a title="Google Maps, 2010 Journey" href="http://maps.google.ca/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;ll=54.226708,-112.412109&amp;spn=5.615235,16.907959&amp;z=7&amp;msid=106869244819078577546.00048638bb2d9720a78f5" target="_blank">Google Maps, 2010 Journey</a>, of which I have many photos of that are waiting to be processed (all added of course to the few thousand I have not gotten around to yet).  In the first week of May though, I managed to capture this small panorama of the Peace River and Dunvegan:</p>
<p style="text-align: center;"><a title="Dunvegan, Alberta by DJorgensen, on Flickr" href="http://www.flickr.com/photos/d-jorgensen/4664032541/"><img class="aligncenter" src="http://farm5.static.flickr.com/4042/4664032541_5ea1f93db1_m.jpg" alt="Dunvegan, Alberta" width="240" height="100" /></a></p>
<p style="text-align: left;">I also managed to capture some photos of the forest fire in Opal, the sunset on Highway 63 near Fort McMurray, and  some wildlife in the Muskoseepi Park in Grande Prairie, as well as some others here and there.</p>
<p style="text-align: left;">After completing that short contract, it was barely a week before I was put into my new role. It seems to be a fairly quiet and comfortable environment, which will certainly be nice. So finances looking up, free time looking up, and motivation also being quite on the up lately, things are really splendid! Still studying for some certifications (CCNA getting put on the backburner for the sake of what they wish me to complete for this new position), and still working on photography and some leatherwork, as well as taking care of my lovies, and seemingly reading more and more comics as the days go by&#8230;</p>
<p style="text-align: left;">It&#8217;s also very likely that I am moving (well less of the likely sort and more of a question of when it will happen).  Hopefully that gets cleared up &#8211; yet it is all for the best too since I shall finally get to have my Marilyn around more often.</p>
]]></content:encoded>
			<wfw:commentRss>http://djorgensen.mine.nu/2010/06/08/work-travels-and-all-around-good-things/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wanted: Employment</title>
		<link>http://djorgensen.mine.nu/2010/03/16/wanted-employment</link>
		<comments>http://djorgensen.mine.nu/2010/03/16/wanted-employment#comments</comments>
		<pubDate>Tue, 16 Mar 2010 06:19:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[difficut times]]></category>
		<category><![CDATA[IT job market]]></category>
		<category><![CDATA[panic]]></category>
		<category><![CDATA[unemployed]]></category>

		<guid isPermaLink="false">http://d-jorgensen.com/?p=77</guid>
		<description><![CDATA[It&#8217;s been a while, but there has not been a whole lot new for me to talk about lately. Been looking for a job, full time, and not really found myself doing much of anything else. I have a slew of photographs to edit and upload, been trying to do the photo 365 project, though [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while, but there has not been a whole lot new for me to talk about lately. Been looking for a job, full time, and not really found myself doing much of anything else. I have a slew of photographs to edit and upload, been trying to do the photo 365 project, though there seem to be some holes in there what with job hunt being that difficult and that time consuming.</p>
<p>Admittedly, the matter of employment has become a rather difficult thing. There is very little in terms of IT related jobs, especially around here. I&#8217;ve watched it since I became unemployed last year and while it improved marginally in the fall when I started job hunting again, I&#8217;ve also noticed that its gone downhill again here.</p>
<p>Terrible news for me at least, and I am trying my best to remain optimistic despite the fact that unless I have some money coming in right soon, bad things are going to happen.</p>
]]></content:encoded>
			<wfw:commentRss>http://djorgensen.mine.nu/2010/03/16/wanted-employment/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Leatherworking and mask making</title>
		<link>http://djorgensen.mine.nu/2009/12/18/leatherworking-and-mask-making</link>
		<comments>http://djorgensen.mine.nu/2009/12/18/leatherworking-and-mask-making#comments</comments>
		<pubDate>Sat, 19 Dec 2009 02:46:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[black cat mask]]></category>
		<category><![CDATA[horned mask]]></category>
		<category><![CDATA[leather]]></category>
		<category><![CDATA[leatherwork]]></category>
		<category><![CDATA[mask]]></category>
		<category><![CDATA[updates]]></category>

		<guid isPermaLink="false">http://d-jorgensen.com/?p=69</guid>
		<description><![CDATA[Over the past couple of months I have had the opportunity to actually learn some proper techniques and had access to leather working tools. It has been something that I desired to do for years so I am very thankful for the opportunity and rather pleased with the results of the work that I did. [...]]]></description>
			<content:encoded><![CDATA[<p>Over the past couple of months I have had the opportunity to actually learn some proper techniques and had access to leather working tools. It has been something that I desired to do for years so I am very thankful for the opportunity and rather pleased with the results of the work that I did. It is likely to be something that I shall continue to work with for many years to come.</p>
<p>While I created a few leather arm bands, and a choker, the most interesting items were the masks:</p>
<p style="text-align: center;"><a title="Black Cat by DJorgensen, on Flickr" href="http://www.flickr.com/photos/d-jorgensen/4196775346/"><img src="http://farm3.static.flickr.com/2624/4196775346_488a133777_m.jpg" alt="Black Cat" width="167" height="240" /></a> <a title="Contemplation by DJorgensen, on Flickr" href="http://www.flickr.com/photos/d-jorgensen/4182927020/"><img src="http://farm3.static.flickr.com/2643/4182927020_d9ffecdd39_m.jpg" alt="Contemplation" width="161" height="240" /></a></p>
<p style="text-align: center;">
<p style="text-align: left;">Beyond that, not a great deal is new, been doing plenty of reading, a fair bit of sketching, and just taking the time to enjoy the free time I have.</p>
]]></content:encoded>
			<wfw:commentRss>http://djorgensen.mine.nu/2009/12/18/leatherworking-and-mask-making/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some time now&#8230;</title>
		<link>http://djorgensen.mine.nu/2009/10/29/some-time-now</link>
		<comments>http://djorgensen.mine.nu/2009/10/29/some-time-now#comments</comments>
		<pubDate>Thu, 29 Oct 2009 07:55:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CCNA]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[costume]]></category>
		<category><![CDATA[halloween]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[pets]]></category>
		<category><![CDATA[snake]]></category>

		<guid isPermaLink="false">http://d-jorgensen.com/?p=50</guid>
		<description><![CDATA[Well it has been some time since the last update, and while I did have desire to continue updating all I really had to talk about was my ever growing family. As it is, I still have need to share my two newest additions, Sponges and Deca: Sponges is an amel motley corn snake, a [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Well it has been some time since the last update, and while I did have desire to continue updating all I really had to talk about was my ever growing family.</p>
<p>As it is, I still have need to share my two newest additions, Sponges and Deca:</p>
<p style="text-align: center;"><a title="Sponges by DJorgensen, on Flickr" href="http://www.flickr.com/photos/d-jorgensen/4054660415/"><img src="http://farm3.static.flickr.com/2689/4054660415_a1e5a7367b_m.jpg" alt="Sponges" width="162" height="240" /></a> <a title="Decarabia by DJorgensen, on Flickr" href="http://www.flickr.com/photos/d-jorgensen/4055401410/"><img src="http://farm3.static.flickr.com/2538/4055401410_a26f8c6e8b_m.jpg" alt="Decarabia" width="180" height="240" /></a></p>
<p style="text-align: center;"><a title="Sponges by DJorgensen, on Flickr" href="http://www.flickr.com/photos/d-jorgensen/3882609055/"><img src="http://farm3.static.flickr.com/2573/3882609055_6375144a25_m.jpg" alt="Sponges" width="240" height="154" /></a> <a title="Decarabia by DJorgensen, on Flickr" href="http://www.flickr.com/photos/d-jorgensen/4055401334/"><img src="http://farm3.static.flickr.com/2601/4055401334_182a72cd6f_m.jpg" alt="Decarabia" width="240" height="158" /></a></p>
<p>Sponges is an amel motley corn snake, a few years old, and about four feet long. I adopted him from a friend who was unable to make certain he was getting the proper care he needed.  Decarabia is my little baby black stripe ball python, only a few months old, and about a foot long currently. Already in the past month she has seemingly plumped up a bit. Both are very cuddly and friendly, and fairly constricty with their cuddles too!</p>
<p>Also, in the past few months I have been doing some manner of studying. Been working towards getting a couple IT certs, including redoing my CCNA (and likely continuing on towards the CCNP) and a CISSP certification. As such I now have this sitting alongside my desk:</p>
<p style="text-align: center;"><a title="Some home networking by DJorgensen, on Flickr" href="http://www.flickr.com/photos/d-jorgensen/4055401162/"><img src="http://farm3.static.flickr.com/2724/4055401162_ffbd1b18e0_m.jpg" alt="Some home networking" width="240" height="144" /></a></p>
<p>And then of course, last but not least &#8211; given that this is the season for Halloween &#8211; I have an outfit to show off.  Made by <a href="http://www.kathleensera.com/">Kathleen,</a> it is Silhouette from the Minutemen:</p>
<p style="text-align: center;"><a title="Silhouette: Minutemen by DJorgensen, on Flickr" href="http://www.flickr.com/photos/d-jorgensen/4055401676/"><img src="http://farm3.static.flickr.com/2562/4055401676_a7f93f6282_m.jpg" alt="Silhouette: Minutemen" width="166" height="240" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://djorgensen.mine.nu/2009/10/29/some-time-now/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More family additions!</title>
		<link>http://djorgensen.mine.nu/2009/07/30/more-family-additions</link>
		<comments>http://djorgensen.mine.nu/2009/07/30/more-family-additions#comments</comments>
		<pubDate>Thu, 30 Jul 2009 08:40:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[adoption]]></category>
		<category><![CDATA[fire bellied toad]]></category>
		<category><![CDATA[pets]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[summer]]></category>

		<guid isPermaLink="false">http://d-jorgensen.com/?p=44</guid>
		<description><![CDATA[Yay! I rescued these lil fire bellied toads from a friend who wasn&#8217;t able to take care of them anymore today: After some tank cleaning, and water changing and feeding they seem to have calmed back down. The kitty has sure taken an interest in them &#8211; though it seems that she is more keen [...]]]></description>
			<content:encoded><![CDATA[<p>Yay!</p>
<p>I rescued these lil fire bellied toads from a friend who wasn&#8217;t able to take care of them anymore today:</p>
<p style="text-align: center;"><a href="http://d-jorgensen.com/v/Landscape_Nature/fire_tummy.jpg.html"><img title="Fire Tummy" src="http://d-jorgensen.com/gallery/d/1670-2/fire_tummy.jpg?g2_GALLERYSID=18c012b01c4f015ffc2d1b52444c9a9a" alt="Fire Tummy" width="101" height="150" /></a><a href="http://d-jorgensen.com/v/Landscape_Nature/Cuddle_Toad.jpg.html"><img title="Cuddle Toads" src="http://d-jorgensen.com/gallery/d/1667-2/Cuddle_Toad.jpg?g2_GALLERYSID=18c012b01c4f015ffc2d1b52444c9a9a" alt="Cuddle Toads" width="101" height="150" /></a></p>
<p style="text-align: left;">After some tank cleaning, and water changing and feeding they seem to have calmed back down. The kitty has sure taken an interest in them &#8211; though it seems that she is more keen on the surviving minnows in the tank ^^;</p>
<p style="text-align: left;">Hopefully in the next few days I&#8217;ll manage to get some rearranging done to keep them all happy~ I&#8217;m super excited though. They are really cute <img src='http://djorgensen.mine.nu/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p style="text-align: left;">
<p style="text-align: left;">Other than that, I&#8217;ve got a bunch of photos that I am slowly working through from the summer here. With any luck I&#8217;ll have something to show in a week or so. It&#8217;s been a very busy, crazy summer for me this year.</p>
]]></content:encoded>
			<wfw:commentRss>http://djorgensen.mine.nu/2009/07/30/more-family-additions/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Canada Day 2009 Fireworks and Spring Walks</title>
		<link>http://djorgensen.mine.nu/2009/07/03/canada-day-2009-fireworks-and-spring-walks</link>
		<comments>http://djorgensen.mine.nu/2009/07/03/canada-day-2009-fireworks-and-spring-walks#comments</comments>
		<pubDate>Sat, 04 Jul 2009 00:51:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[canada day]]></category>
		<category><![CDATA[catching up]]></category>
		<category><![CDATA[edmonton]]></category>
		<category><![CDATA[fireworks]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[spring]]></category>
		<category><![CDATA[updates]]></category>
		<category><![CDATA[walk]]></category>

		<guid isPermaLink="false">http://d-jorgensen.com/?p=38</guid>
		<description><![CDATA[This past week found me out and about taking photos at the Canada Day parade and the fireworks celebration in the evening. I&#8217;ve yet to get through all of the parade photos &#8211; yet the firework photos can be found on my flickr here: Canada Day 2009 &#8211; Edmonton Also earlier this spring I took [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">This past week found me out and about taking photos at the Canada Day parade and the fireworks celebration in the evening. I&#8217;ve yet to get through all of the parade photos &#8211; yet the firework photos can be found on my flickr here:</p>
<p style="text-align: center;">
<h2 style="text-align: center;"><a href="http://www.flickr.com/photos/d-jorgensen/sets/72157620852697806/">Canada Day 2009 &#8211; Edmonton</a></h2>
<p style="text-align: center;"><a title="Canada Day 2009 - Edmonton Fireworks by DJorgensen, on Flickr" href="http://www.flickr.com/photos/d-jorgensen/3681526872/"><img src="http://farm3.static.flickr.com/2604/3681526872_fc2e73d3fd_m.jpg" alt="Canada Day 2009 - Edmonton Fireworks" width="161" height="240" /></a> <a title="Canada Day 2009 - Edmonton Fireworks by DJorgensen, on Flickr" href="http://www.flickr.com/photos/d-jorgensen/3681527252/"><img src="http://farm3.static.flickr.com/2640/3681527252_7522f0bbea_m.jpg" alt="Canada Day 2009 - Edmonton Fireworks" width="240" height="161" /></a> <a title="Canada Day 2009 - Edmonton Fireworks by DJorgensen, on Flickr" href="http://www.flickr.com/photos/d-jorgensen/3681527892/"><img src="http://farm3.static.flickr.com/2473/3681527892_017fffc176_m.jpg" alt="Canada Day 2009 - Edmonton Fireworks" width="161" height="240" /></a></p>
<p>Also earlier this spring I took a few afternoons with my camera to walk about the river valley and other parts of the city.  I&#8217;ve got one of those sets posted on myflickr as well at:</p>
<h2 style="text-align: center;"><a href="http://www.flickr.com/photos/d-jorgensen/sets/72157620761126426/">Spring Walks 2009</a></h2>
<p style="text-align: center;"><a title="Spring walks Edmonton 2009 - Walk 2 by DJorgensen, on Flickr" href="http://www.flickr.com/photos/d-jorgensen/3674218957/"><img src="http://farm3.static.flickr.com/2530/3674218957_aa76995fcc_m.jpg" alt="Spring walks Edmonton 2009 - Walk 2" width="240" height="162" /></a></p>
<p style="text-align: center;"><a title="Spring walks Edmonton 2009 - Walk 2 by DJorgensen, on Flickr" href="http://www.flickr.com/photos/d-jorgensen/3675028054/"><img src="http://farm3.static.flickr.com/2457/3675028054_73817443ba_m.jpg" alt="Spring walks Edmonton 2009 - Walk 2" width="161" height="240" /></a></p>
<p style="text-align: center;"><a title="Spring walks Edmonton 2009 - Walk 2 by DJorgensen, on Flickr" href="http://www.flickr.com/photos/d-jorgensen/3675028674/"><img src="http://farm3.static.flickr.com/2523/3675028674_6c135ab7af_m.jpg" alt="Spring walks Edmonton 2009 - Walk 2" width="240" height="161" /></a></p>
<p style="text-align: left;">
<p style="text-align: left;">Other than that, I&#8217;ve been going through a great deal of my older unprocessed photos &#8211; albeit rather slowly. Hopefully one day I shall manage to catch up on it all.</p>
]]></content:encoded>
			<wfw:commentRss>http://djorgensen.mine.nu/2009/07/03/canada-day-2009-fireworks-and-spring-walks/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The 2009 Edmonton Pride Parade!</title>
		<link>http://djorgensen.mine.nu/2009/06/16/the-2009-edmonton-pride-parade</link>
		<comments>http://djorgensen.mine.nu/2009/06/16/the-2009-edmonton-pride-parade#comments</comments>
		<pubDate>Tue, 16 Jun 2009 16:26:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[edmonton]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[pride parade]]></category>

		<guid isPermaLink="false">http://d-jorgensen.com/?p=33</guid>
		<description><![CDATA[Last weekend was the annual Edmonton Pride Parade, and I finally managed to make it out this year. For anyone intersted in seeing the set,  you can find it on my flickr account via: The 2009 Edmonton Pride Parade! There is a good chance that I may go back and edit a few of the [...]]]></description>
			<content:encoded><![CDATA[<p>Last weekend was the annual Edmonton Pride Parade, and I finally managed to make it out this year.</p>
<p>For anyone intersted in seeing the set,  you can find it on my flickr account via:</p>
<p style="text-align: center;"><a href="http://www.flickr.com/photos/d-jorgensen/sets/72157619824902940/" target="_blank">The 2009 Edmonton Pride Parade!</a></p>
<p style="text-align: center;">
<a title="Edmonton Pride Parade by DJorgensen, on Flickr" href="http://www.flickr.com/photos/d-jorgensen/3632700992/"><img src="http://farm3.static.flickr.com/2475/3632700992_e0fdfc9fdd_m.jpg" alt="Edmonton Pride Parade" width="240" height="161" /></a> <a title="Edmonton Pride Parade by DJorgensen, on Flickr" href="http://www.flickr.com/photos/d-jorgensen/3631900503/"><img src="http://farm4.static.flickr.com/3591/3631900503_3fdf50b249_m.jpg" alt="Edmonton Pride Parade" width="240" height="161" /></a> <a title="Edmonton Pride Parade by DJorgensen, on Flickr" href="http://www.flickr.com/photos/d-jorgensen/3632697958/"><img src="http://farm4.static.flickr.com/3367/3632697958_cb13c59b18_m.jpg" alt="Edmonton Pride Parade" width="240" height="161" /></a></p>
<p>There is a good chance that I may go back and edit a few of the photos to put them up on my site here too.  When that happens, I&#8217;ll be sure to bring it up <img src='http://djorgensen.mine.nu/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Somehow during the day of the parade I managed to sprain my toe which is interesting to say the least as I had no idea until I removed my footwear that evening.  I also got hit in the face by a stray beach ball and had to dive from water guns and water ballons a few times. Very treacherous!</p>
]]></content:encoded>
			<wfw:commentRss>http://djorgensen.mine.nu/2009/06/16/the-2009-edmonton-pride-parade/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

