<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>gdb &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/gdb/</link>
	<description>Feed of posts on WordPress.com tagged "gdb"</description>
	<pubDate>Sat, 28 Nov 2009 17:47:32 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Properly Mounted]]></title>
<link>http://cornerbalance.wordpress.com/2009/11/25/properly-mounted/</link>
<pubDate>Thu, 26 Nov 2009 00:36:32 +0000</pubDate>
<dc:creator>Adam</dc:creator>
<guid>http://cornerbalance.wordpress.com/2009/11/25/properly-mounted/</guid>
<description><![CDATA[Just click the pics to order yours! If you&#8217;ve been looking for an alternative to the Cusco mou]]></description>
<content:encoded><![CDATA[Just click the pics to order yours! If you&#8217;ve been looking for an alternative to the Cusco mou]]></content:encoded>
</item>
<item>
<title><![CDATA[building a private version of gdb on a machine that has an older version.]]></title>
<link>http://peeterjoot.wordpress.com/2009/11/23/building-a-private-version-of-gdb-on-a-machine-that-has-an-older-version/</link>
<pubDate>Mon, 23 Nov 2009 17:59:49 +0000</pubDate>
<dc:creator>peeterjoot</dc:creator>
<guid>http://peeterjoot.wordpress.com/2009/11/23/building-a-private-version-of-gdb-on-a-machine-that-has-an-older-version/</guid>
<description><![CDATA[We have SLES10 linux machines, and the gdb version available on them is a bit old. Here&#8217;s a qu]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>We have SLES10 linux machines, and the gdb version available on them is a bit old.  Here&#8217;s a quick cheatsheet on how to download and install a newer version of gdb for private use, without having to have root privileges or replace the default version on the machine:</p>
<pre>
mkdir -p ~/tmp/gdb
cd ~/tmp/gdb
wget http://ftp.gnu.org/gnu/gdb/gdb-7.0.tar.bz2
bzip2 -dc gdb-7.0.tar.bz2 &#124; tar -xf -
cd gdb-7.0
./configure --prefix=$HOME/gdb
make
make install
</pre>
<p>You should now have a private version of gdb in ~/gdb/bin/gdb</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[...o gdb na wstecznym]]></title>
<link>http://lukaszmowi.wordpress.com/2009/11/23/o-gdb-na-wstecznym/</link>
<pubDate>Mon, 23 Nov 2009 00:40:00 +0000</pubDate>
<dc:creator>Łukasz Klich</dc:creator>
<guid>http://lukaszmowi.wordpress.com/2009/11/23/o-gdb-na-wstecznym/</guid>
<description><![CDATA[Kolejną rzeczą, którą opiszę po pretty printers, która również pojawiła się wraz z wydaniem gdb 7 je]]></description>
<content:encoded><![CDATA[Kolejną rzeczą, którą opiszę po pretty printers, która również pojawiła się wraz z wydaniem gdb 7 je]]></content:encoded>
</item>
<item>
<title><![CDATA[Debugging OpenCL Program with gdb]]></title>
<link>http://samritmaity.wordpress.com/2009/11/20/debugging-opencl-program-with-gdb/</link>
<pubDate>Fri, 20 Nov 2009 13:28:55 +0000</pubDate>
<dc:creator>samritmaity</dc:creator>
<guid>http://samritmaity.wordpress.com/2009/11/20/debugging-opencl-program-with-gdb/</guid>
<description><![CDATA[Debugging one complex application manually without any help of debugger is realy tiresome job. On th]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><!-- 		@page { size: 8.5in 11in; margin: 0.79in } 		P { margin-bottom: 0.08in } --> <!-- 		@page { size: 8.5in 11in; margin: 0.79in } 		P { margin-bottom: 0.08in } -->Debugging one complex application manually without any help of debugger is realy tiresome job. On the other hand debuggers make it a simple and enjoyable experiences. The GNU Project Debugger( gdb ) is one of the best debugger available for developers. Programmers like it because of its simplicity and easy-to-use features.</p>
<p>gdb helps us in following things.</p>
<ol>
<li>breakpoints : gdb allow you to pause at any point of execution and see the state of any variable currently in the scope.</li>
<li>next  :  using next command we can do line by line execution. Also can do dry-run of our application. Which makes debugging a very easy job. The complete flow of execution come alive while we do dry-run. It is very reliable way to identify logical errors of an application.</li>
<li>display : using display command developers can constantly monitor, state of one variable and can find the bug.</li>
<li>backtrace :  if any code gives core dump, with help of backtrace features , developer can exactly pinpoint , from which location of code , problem started.</li>
</ol>
<p>There are many other useful features provided by gdb. One can certainly explore by referring to official gdb documentation here <a title="gdb downlaod " href="http://www.gnu.org/software/gdb/documentation/" target="_blank">http://www.gnu.org/software/gdb/documentation/</a></p>
<p>OpenCL(Open Computing Language) is open standard for General Purpose Parallel Programming Across GPU, CPU , DSP and Cell/BE Processor. OpenCL Program mainly having two part. The main program part, which is also called  host code, is simple C or CPP Code with some API provided by OpenCL Library. The second part of the program is called OpenCL Kernel Code, which needs to be written in a different file. OpenCL Kernel code is having different syntax, though it is quite similar to C syntax.</p>
<p>While compiling any normal C or CPP Program , we can pass  many flag to compiler which give instruction to compiler to do certain task ,like generating binary executable with optimized instruction set. Similarly one very important compiler flag is &#8220;-g&#8221;. This flag tells compiler like gcc or icc, to generate binary executable of an application with debugging information.</p>
<p style="padding-left:60px;"><strong>Ex.                  gcc   -g    HelloWorld.c</strong></p>
<p><!-- 		@page { size: 8.5in 11in; margin: 0.79in } 		P { margin-bottom: 0.08in } -->But developer face difficulties while compiling OpenCL Program . After compilation of OpenCL host code, binary executable will be generated for host code only because OpenCL kernel code gets loaded, linked, compiled and get executed on the fly at runtime.  So the compiler does not create any separate binary file for Kernel code.  After execution of host code binary , there will be no executable of the kernel code as well, available on system.</p>
<p>While using GDB, to debug OpenCL Program main problem comes with the OpenCL kernel code section. Because no executable is generated for OpenCL kernel source,  so we can not pass kernel executable&#8217;s directory path to gdb. That is why, we need to take different approach to debug OpenCL Program using gdb.</p>
<p><!-- 		@page { size: 8.5in 11in; margin: 0.79in } 		P { margin-bottom: 0.08in } -->In the following section I will describe how to debug OpenCL Kernel and OpenCL host code using GDB.</p>
<p>Following picture shows generic structure of OpenCL host  code.</p>
<div id="attachment_30" class="wp-caption alignleft" style="width: 580px"><a href="http://samritmaity.wordpress.com/files/2009/11/opencl-program-structure2.jpg"><img class="size-full wp-image-30" title="OpenCL-Program-Structure" src="http://samritmaity.wordpress.com/files/2009/11/opencl-program-structure2.jpg" alt="OpenCL Program Structure" width="570" height="555" /></a><p class="wp-caption-text">OpenCL Program Structure</p></div>
<p><!-- 		@page { size: 8.5in 11in; margin: 0.79in } 		P { margin-bottom: 0.08in } -->If host program file name is HelloWorldOpenCL.c , then at the time of compilation , we can pass &#8220;-g&#8221; compiler flag to gcc compiler.</p>
<p style="padding-left:60px;"><strong>gcc  -g   -o run   HelloWorldOpenCL.c</strong></p>
<p>This will create one binary with debugging information. But how to pass -g flag while compiling OpenCL kernel code? If we look at above picture, we can notice that, at step 1.8. we are firing one API &#8220;ClBuildProgram()&#8221;. This is the API we use to build OpenCL Kernel code. The fourth parameter of this API allows us to pass compiler flag or options to OpenCL compiler on runtime.</p>
<p>So to enable gdb to debug your OpenCL program , This code section should be written something like bellow code snippet&#8230;.</p>
<p style="padding-left:30px;">91<strong> char *options = new char[10];</strong></p>
<p style="padding-left:30px;">92<strong> strcpy( options, &#8220;-g&#8221;);</strong></p>
<p style="padding-left:30px;">93<strong> status = clBuildProgram( *hProgram,1, *devices, options,NULL,NULL);</strong></p>
<p style="padding-left:30px;">94<strong> STATUSCHKMSG(&#8220;build&#8221;);</strong></p>
<p>Compile your host code with -g flag. Now we can start debugging our program with following command</p>
<p style="padding-left:60px;"><strong>gdb          ./&#60;host-code-executable-name&#62;</strong></p>
<p>gdb will start and will wait for further user command. Find out the line number of the statement &#8220;status = clBuildProgram( *hProgram,1, *devices, options,NULL,NULL);&#8221; in host code. According to the above code snippet , in my program line number of this statement is 93. Then put one breakpoint at the  very next statement , say  &#8220;STATUSCHKMSG(&#8220;build&#8221;);&#8221;. gdb will halt its execution on this statement. Now we are all set to put break point in our OpenCL Kernel Code.</p>
<p style="padding-left:60px;"><strong>break   94</strong></p>
<p>Because the kernel code is loaded , compiled and build with -g compiler flag so  Kernel executable code will contain debugging information. But to put break point and debug Kernel code , we need any of the two thing. One : either  kernel subroutine name , Two :  The line number on which the statement is written. As the the code is compiled on runtime, there is no way that we can come to know, on which line which particular kernel code statement is placed. So there is one way to find the starting point of the code or subroutine. Use bellow command on gdb interactive shell  to find out that , the kernel source code is successfully loaded.</p>
<p style="padding-left:60px;"><strong>find         func         __OpenCL_&#60;your-kernel-subroutine-name&#62;_kernel</strong></p>
<p>say suppose my kernel name is &#8220;hello_world_OpenCL_kernel&#8221; then OpenCL compiler will mangle this soubroutine name as</p>
<p style="padding-left:60px;"><strong>__OpenCL_hello_world_OpenCL_kernel_kernel</strong></p>
<p>now we can put break point at starting of kernel subroutine as follows</p>
<p style="padding-left:60px;"><strong>break           __OpenCL_hello_world_OpenCL_kernel_kernel</strong></p>
<p>Now as the break point is set at starting of OpenCL kernel subroutine , we can reach to that point with  following gdb command.</p>
<p style="padding-left:60px;"><strong>continue</strong></p>
<p>With this command control  will reach  to line  __OpenCL_hello_world_OpenCL_kernel_kernel (). Which is the starting line of OpenCL kernel subroutine. To check , if everything is going well, type following command to gdb</p>
<p style="padding-left:60px;"><strong>list</strong></p>
<p>This command will display next ten line of your source code. As your current source code file will be kernel source code file , you should be able to see OpenCL kernel source code. So that it. You are ready to rock with gdb &#8230;  to debug OpenCL program. Put as many break points , as you want on that kernel source. use display command to constantly monitor any variable value &#8230;debug line by line of the source code by next command. Good luck..</p>
<p>&#160;</p>
<p>NOTE :  with thanks to &#8220;brg&#8221; from AMD Developer forum.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[...o pretty printers w gdb]]></title>
<link>http://lukaszmowi.wordpress.com/2009/11/18/o-pretty-printers-w-gdb/</link>
<pubDate>Wed, 18 Nov 2009 22:43:33 +0000</pubDate>
<dc:creator>Łukasz Klich</dc:creator>
<guid>http://lukaszmowi.wordpress.com/2009/11/18/o-pretty-printers-w-gdb/</guid>
<description><![CDATA[Wraz z ubuntu 9.10 pojawiła się w rękach programistów 7 wersja gdb, czyli debugera GNU. Przynosi ona]]></description>
<content:encoded><![CDATA[Wraz z ubuntu 9.10 pojawiła się w rękach programistów 7 wersja gdb, czyli debugera GNU. Przynosi ona]]></content:encoded>
</item>
<item>
<title><![CDATA[ARM simulation using GDB]]></title>
<link>http://geekwentfreak.wordpress.com/2009/11/17/arm-simulation-using-gdb/</link>
<pubDate>Tue, 17 Nov 2009 15:40:10 +0000</pubDate>
<dc:creator>Ravi Teja G</dc:creator>
<guid>http://geekwentfreak.wordpress.com/2009/11/17/arm-simulation-using-gdb/</guid>
<description><![CDATA[arm-elf-GDB is the debugger that helps to simulate ARM processor. Prerequisites: -install arm-elf-gc]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>arm-elf-GDB is the debugger that helps to simulate ARM processor.</p>
<p>Prerequisites:<br />
-install arm-elf-gcc toolchain<br />
-compile your source code with -g option turned on.</p>
<p>Lets us assume your output elf file is main.elf. Type the following command in the terminal to open GDB.</p>
<blockquote><p>arm-elf-gdb main.elf</p></blockquote>
<p>It brings up the gdb prompt. These commands initialises the gdb environment.</p>
<blockquote><p>target sim<br />
load</p></blockquote>
<p>The first statement tells gdb that we are going to simulate ARM processor. Second line tells it to load the current ELF(main.elf) file into memory. Next step is to create some breakpoints and run the code.</p>
<p>From Wikipedia:-<br />
(Note:- A breakpoint, in software development, is an intentional stopping or pausing place in a program, put in place for debugging purposes. More generally, a breakpoint is a means of acquiring knowledge about a program during its execution. During the interruption, the programmer inspects the test environment (logs, memory, files, etc.) to find out whether the program functions as expected. In practice, a breakpoint consists of one or more conditions that determine when a program&#8217;s execution should be interrupted.)</p>
<p>You can set breakpoint at a particular function, line number, address or offset.<br />
Syntax:</p>
<blockquote><p>break *address</p>
<ul>
<li> sets breakpoint at particular address</li>
</ul>
<p>break function</p>
<ul>
<li> sets breakpoint at function</li>
</ul>
<p>break filename:line_number</p>
<ul>
<li> sets breakpoint at line number of a specified file</li>
</ul>
<p>break +offset<br />
break -offset</p>
<ul>
<li> Set breakpoint some number of lines forward or back from the position at which execution stopped in the currently selected stack frame.</li>
</ul>
</blockquote>
<p>After you have set the breakpoints. Run the debugger using</p>
<blockquote><p>run</p></blockquote>
<p>Notice that debugger stops at the places you have set breakpoints. Now you can inspect the registers and memory using these commands.</p>
<blockquote><p>info reg</p>
<ul>
<li> displays register information</li>
</ul>
<p>x /5xw 0&#215;00000800</p>
<ul>
<li> this displays memory starting at address(0&#215;00000800). The /5xw instructs gdb to show 5 memory locations, each of length words and represented in hexadecimal. Use d instead of x to display in decimal. h or b instead of w to display in half-word or byte length.</li>
</ul>
</blockquote>
<p>After you have finished inspecting, you can either continue execution or step through each instruction or statement.</p>
<blockquote><p>next</p>
<ul>
<li> steps through each statement.</li>
</ul>
<p>continue</p>
<ul>
<li> continues debugging until next breakpoint is reached.</li>
</ul>
</blockquote>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Progress]]></title>
<link>http://thebusker.wordpress.com/2009/11/12/progress/</link>
<pubDate>Thu, 12 Nov 2009 18:31:21 +0000</pubDate>
<dc:creator>thebusker</dc:creator>
<guid>http://thebusker.wordpress.com/2009/11/12/progress/</guid>
<description><![CDATA[&#8220;At this point we have covered what might be called the conventional core of C.&#8221; K&amp;R]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>&#8220;At this point we have covered what might be called the conventional core of C.&#8221; K&#38;R pp 34.</p>
<p>Yes, I&#8217;ve just finished chapter 1. Well, I&#8217;ve finished the easy stuff. There are harder programs suggested which I will do, but Kernigan &#38; Ritchie assure me I have covered the conventional core. It&#8217;s taken me a while, I know.</p>
<p>I must say that in this first chapter I have really grown fond of emacs. I have found a few links which will be posted regarding emacs. In specific, the emacs-fu page which shows many tips &#38; tricks on how to tweak your emacs to suit you best, as well as Peter Salzman&#8217;s GDP tutorial.</p>
<p>I need to finish the hallway before Thanksgiving, but I will be working on the afore mentioned &#8216;harder programs&#8217; to truely complete chapter 1. And then from what I understand I will be going over the points covered in chapter 1 in greater depth.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Convert shp to gdb Using Global Mapper]]></title>
<link>http://atthurtrank.wordpress.com/2009/11/06/convert-shp-to-gdb-using-global-mapper/</link>
<pubDate>Fri, 06 Nov 2009 15:31:00 +0000</pubDate>
<dc:creator>atthurtrank</dc:creator>
<guid>http://atthurtrank.wordpress.com/2009/11/06/convert-shp-to-gdb-using-global-mapper/</guid>
<description><![CDATA[Convert shp to gdb Using Global Mapper 1. Open Global Mapper program. Click Open Your Own Data Files]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div style="text-align:center;"><span style="font-weight:bold;">Convert shp to gdb Using Global Mapper</span></div>
<p>1. Open Global Mapper program. Click Open Your Own<br />
Data Files button or from menu command:File &#62; Open Data File</p>
<p><a href="http://atthurtrank.wordpress.com/files/2009/11/11.jpg"><img src="http://atthurtrank.wordpress.com/files/2009/11/11.jpg?w=300" border="0" alt="" /></a></p>
<p>2. Choose your line or polyline shp data file<br />
3. Select projection, Zone, Datum and Planar Units you<br />
want to use, then press OK</p>
<p><a href="http://atthurtrank.wordpress.com/files/2009/11/21.jpg"><img src="http://atthurtrank.wordpress.com/files/2009/11/21.jpg?w=240" border="0" alt="" /></a></p>
<p>4. The polyline is open. Next step, click menu command<br />
File &#62; Export Vector Data &#62; Export GPX file…</p>
<p><a href="http://atthurtrank.wordpress.com/files/2009/11/31.jpg"><img src="http://atthurtrank.wordpress.com/files/2009/11/31.jpg?w=300" border="0" alt="" /></a></p>
<p>5. Select radio button All Loaded Data then press OK</p>
<p><a href="http://atthurtrank.wordpress.com/files/2009/11/41.jpg"><img src="http://atthurtrank.wordpress.com/files/2009/11/41.jpg?w=197" border="0" alt="" /></a></p>
<p>6. Write the file name. Save as type: GPX format. The<br />
file name with *.gpx extension was created. Then press Save button</p>
<p><a href="http://atthurtrank.wordpress.com/files/2009/11/51.jpg"><img src="http://atthurtrank.wordpress.com/files/2009/11/51.jpg?w=300" border="0" alt="" /></a></p>
<p>7. Open Map Source program. Click menu command File &#62; Open.<br />
Select file name (*.gpx) you want to open</p>
<p><a href="http://atthurtrank.wordpress.com/files/2009/11/6.jpg"><img src="http://atthurtrank.wordpress.com/files/2009/11/6.jpg?w=300" border="0" alt="" /></a></p>
<p>8. Next step. Click File  &#62; Save as…<br />
Write file name. Save as type: Garmin GPS Database (*.gdb)<br />
The file name with *.gdb ekstension was created</p>
<p><a href="http://atthurtrank.wordpress.com/files/2009/11/7.jpg"><img src="http://atthurtrank.wordpress.com/files/2009/11/7.jpg?w=300" border="0" alt="" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Double Shot #575]]></title>
<link>http://afreshcup.com/2009/11/03/double-shot-575/</link>
<pubDate>Tue, 03 Nov 2009 10:20:07 +0000</pubDate>
<dc:creator>Mike Gunderloy</dc:creator>
<guid>http://afreshcup.com/2009/11/03/double-shot-575/</guid>
<description><![CDATA[Thanks to everyone who commiserated about my pinched nerve issues. I think I&#8217;m still a fair wa]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Thanks to everyone who commiserated about my pinched nerve issues. I think I&#8217;m still a fair way from death&#8217;s door.</p>
<ul>
<li><strong><a href="http://github.com/ahe/2dc_jqgrid">jQuery Grid Rails Plugin</a></strong> &#8211; I keep meaning to look at the jQuery datagrid. Maybe this will encourage me.</li>
<li><strong><a href="http://github.com/tmm1/gdb.rb">gdb.rb</a></strong> &#8211; gdb7 hooks for MRI. A fresh way to be nosy about running ruby code.</li>
</ul>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Buffer Overflow Exploitation for Owning (Beginner)]]></title>
<link>http://logsmylife.wordpress.com/2009/10/20/buffer-overflow-exploitation-for-owning-beginner/</link>
<pubDate>Tue, 20 Oct 2009 05:17:25 +0000</pubDate>
<dc:creator>unamedplayer</dc:creator>
<guid>http://logsmylife.wordpress.com/2009/10/20/buffer-overflow-exploitation-for-owning-beginner/</guid>
<description><![CDATA[Mempelajari dan mengerti tentang Buffer Overflow memang bikin kepala bisa pitakan karena kita harus ]]></description>
<content:encoded><![CDATA[Mempelajari dan mengerti tentang Buffer Overflow memang bikin kepala bisa pitakan karena kita harus ]]></content:encoded>
</item>
<item>
<title><![CDATA[Grad der Behinderung, Diabetes mellitus, Sport als Therapie]]></title>
<link>http://heftklammer.wordpress.com/2009/10/10/grad-der-behinderung-diabetes-mellitus-sport-als-therapie/</link>
<pubDate>Sat, 10 Oct 2009 21:34:40 +0000</pubDate>
<dc:creator>heftklammer</dc:creator>
<guid>http://heftklammer.wordpress.com/2009/10/10/grad-der-behinderung-diabetes-mellitus-sport-als-therapie/</guid>
<description><![CDATA[Tenor Auf die Berufung der Klägerin wird das Urteil des Sozialgerichts Berlin vom 25. September 2007]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><blockquote><p>Tenor</p>
<p>Auf die Berufung der Klägerin wird das Urteil des Sozialgerichts Berlin vom 25. September 2007 aufgehoben und der Beklagte unter Änderung des Bescheides vom 21. Juli 2006 in der Gestalt des Widerspruchsbescheides vom 23. November 2006 verurteilt, bei der Klägerin ab April 2006 einen GdB von 50 festzustellen.</p>
<p>Der Beklagte hat der Klägerin die ihr entstandenen außergerichtlichen Kosten des Rechtsstreits zu erstatten.</p>
<p>Die Revision wird zugelassen.</p>
<p>Tatbestand</p>
<p>1Die Beteiligten streiten über die Höhe des bei der Klägerin festzustellenden Grades der Behinderung (GdB).</p>
<p>2Die 1953 geborene Klägerin leidet u.a. an einem insulinpflichtigen Diabetes mellitus Typ 2. Sie muss morgens, mittags und abends zu genau festgelegten Zeiten Insulin spritzen. Morgens hat sie auch ihren Blutzuckerwert zu messen. Sie muss ein starres Diätschema einhalten und dreimal täglich zu festgesetzten Zeiten jeweils vier Broteinheiten zu sich nehmen. Der HbA 1c -Wert betrug zuletzt 6,0. Die Einstellung der Blutzuckerwerte gelingt ihr nur durch ein hohes Maß an Disziplin bei der Gestaltung des gesamten Tagesablaufs, und zwar bezogen auf das Messen, das Spritzen, die Diät und den hohen täglichen sportlichen Aufwand. Regelmäßig betreibt sie über anderthalb Stunden am Tag Nordic Walking.</p>
<p>3Auf den Antrag der Klägerin von April 2006 stellte der Beklagte nach versorgungsärztlicher Auswertung der ihm vorliegenden ärztlichen Unterlagen mit Bescheid vom 21. Juli 2006 in der Gestalt des Widerspruchsbescheides vom 23. November 2006 bei ihr folgende Funktionsbeeinträchtigungen (die verwaltungsintern mit den sich aus den Klammerzusätzen ergebenden Einzel-GdB bewertet wurden) mit einem Gesamt-GdB von 40 fest:</p>
<p>4a) Diabetes mellitus (GdB von 30),</p>
<p>b) Sehminderung (GdB von 20).</p>
<p>5Die auf Zuerkennung eines GdB von 50 gerichtete Klage hat das Sozialgericht Berlin mit Urteil vom 25. September 2007 abgewiesen: Die Bescheide des Beklagten seien rechtmäßig, denn die Klägerin habe auf die Feststellung eines GdB in dieser Höhe keinen Anspruch.<!--more--></p>
<p>6Der Diabetes mellitus sei mit einem Einzel-GdB von 30 zutreffend eingeschätzt worden. Maßstab seien die Anhaltspunkte für die ärztliche Gutachtertätigkeit (AHP), nicht der GdB-Katalog der Deutschen Diabetes Gesellschaft (DDG) vom 16. November 1994 (abgedruckt in Diabetes und Stoffwechsel, Nr. 7, 1998, S. 60). Dass es bei der Klägerin zu häufigen und ausgeprägten Hypoglykämien oder Organkomplikationen gekommen sei, welche die Anhebung des GdB auf mehr als 30 rechtfertigen könnten, sei aufgrund der versorgungsärztlichen Auswertung des Diabetes-Tagebuchs durch Dr. D nicht anzunehmen. Auch habe die Klägerin in der mündlichen Verhandlung angegeben, dass es bei ihr noch nicht zu einem Zuckerschock gekommen sei. Die Sehbehinderung rechtfertige nach den AHP einen Einzel-GdB von 20, denn aus dem Befundbericht der die Klägerin behandelnden Augenärztin A vom 22. Mai 2006 ergebe sich eine korrigierte Sehschärfe des rechten Auges von 0,9 und des linken Auges von 0,1. Weitere, über die Beeinträchtigung der Sehschärfe hinausgehende Funktionsstörungen lägen nicht vor.</p>
<p>7Gegen diese Entscheidung hat die Klägerin unter Vorlage diverser ärztlicher Unterlagen Berufung eingelegt. Der Senat hat Befundberichte der sie behandelnden Augenärztin A vom 11. Dezember 2008 und der Internistin Dr. T &#8211; S vom 4. Februar 2009 eingeholt.</p>
<p>8Die Klägerin ist der Auffassung, dass der Diabetes mellitus mit einem Einzel-GdB von mindestens 50 bewertet werden müsse. Es sei rechtlich unerheblich, dass es bei ihr in der Vergangenheit noch nicht zu einem Zuckerschock gekommen sei.</p>
<p>9Die Klägerin beantragt,</p>
<p>10das Urteil des Sozialgerichts Berlin vom 25. September 2007 aufzuheben und den Beklagten unter Änderung des Bescheides vom 21. Juli 2006 in der Gestalt des Widerspruchsbescheides vom 23. November 2006 zu verurteilen, bei ihr ab April 2006 einen GdB von 50 festzustellen.</p>
<p>11Der Beklagte beantragt,</p>
<p>12die Berufung zurückzuweisen,</p>
<p>13hilfsweise,</p>
<p>14die Revision zuzulassen.</p>
<p>15Er tritt dem Vorbringen der Klägerin unter Bezugnahme auf die versorgungsärztlichen Stellungnahmen der Internistin R vom 5. März 2009 und der Augenärztin L vom 12. März 2009 entgegen. Er ist weiterhin der Auffassung, dass der Diabetes mellitus mit einem Einzel-GdB von 30 zu bewerten sei. Sollte hierfür allerdings ein Einzel-GdB von 40 in Ansatz zu bringen sein, würde die Sehbehinderung der Klägerin zu einer Erhöhung des Gesamt-GdB von 50 führen.</p>
<p>16Wegen der weiteren Ausführungen der Beteiligten wird auf deren Schriftsätze Bezug genommen. Ferner wird auf die Schriftsätze der Beteiligten und den Verwaltungsvorgang des Beklagten verwiesen, die vorgelegen haben und Gegenstand der mündlichen Verhandlung gewesen sind.</p>
<p>Entscheidungsgründe</p>
<p>17Die zulässige Berufung ist begründet.</p>
<p>18Das Sozialgericht hat mit dem angegriffenen Urteil die Klage zu Unrecht abgewiesen. Denn der Bescheid des Beklagten vom 21. Juli 2006 in der Gestalt des Widerspruchsbescheides vom 23. November 2006 ist rechtswidrig, da die Klägerin einen Anspruch auf Feststellung eines Gesamt-GdB von 50 hat.</p>
<p>19Nach §§ 2 Abs. 1, 69 Abs. 1 Sozialgesetzbuch, Neuntes Buch (SGB IX) sind die Auswirkungen der länger als sechs Monate anhaltenden Funktionsstörungen nach Zehnergraden abgestuft entsprechend den Maßstäben des § 30 Bundesversorgungsgesetz zu bewerten. Zur Einschätzung des GdB sind zunächst die vom Bundesministerium für Arbeit und Soziales herausgegebenen Anhaltspunkte für die ärztliche Gutachtertätigkeit (AHP) heranzuziehen, und zwar entsprechend dem streitgegenständlichen Zeitraum die Fassungen der AHP von 2005 und 2008. Seit dem 1. Januar 2009 sind die in der Anlage zu § 2 Versorgungsmedizin-Verordnung (VersMedV) vom 10. Dezember 2008 (BGBl. I S. 2412) festgelegten „Versorgungsmedizinischen Grundsätze“ in Form einer Rechtsverordnung in Kraft, welche die AHP abgelöst haben.</p>
<p>20Hinsichtlich des Diabetes mellitus ist bei der Klägerin ein Einzel-GdB von 40 anzusetzen.</p>
<p>21Es ist allerdings nicht zu beanstanden, dass der Beklagte nicht den GdB-Katalog der DDG herangezogen hat. Denn nach der Rechtsprechung des Bundessozialgerichts (Urteil vom 24. April 2008, B 9/9a SB 10/06 R, SGb 2009, 168) war die sich aus dem Diabetes mellitus ergebende Teilhabebeeinträchtigung (bis zum Inkrafttreten der VersMedV) grundsätzlich nach den Bewertungsvorschlägen der AHP einzuschätzen: Bei den AHP handelte es sich um antizipierte Sachverständigengutachten, deren Beachtlichkeit im konkreten Verwaltungs- und Gerichtsverfahren sich zum einen daraus ergab, dass eine dem allgemeinen Gleichheitssatz entsprechende Rechtsanwendung nur dann gewährleistet ist, wenn die verschiedenen Behinderungen nach gleichen Maßstäben beurteilt werden (vgl. Bundesverfassungsgericht, Kammerbeschluss vom 6. März 1995, 1 BvR 60/95, SozR 3-3870 § 3 Nr. 6, S. 11f.). Zum anderen stellten die AHP ein geeignetes, auf Erfahrungswerten der Versorgungsverwaltung und Erkenntnissen der medizinischen Wissenschaft beruhendes Beurteilungsgefüge zur Einschätzung des GdB dar. Insofern wirkten die AHP nach Auffassung des Bundessozialgerichts normähnlich.</p>
<p>22Nach der genannten Entscheidung des Bundessozialgerichts vom 24. April 2008 bedürfen jedoch die Ausführungen der AHP 2008, soweit sie die Bewertung des mit Insulin behandelten Diabetes mellitus betreffen, einer Modifikation: Die (im Gegensatz zu den AHP 1996 und den AHP 2004ff. getroffene) Unterscheidung zwischen den Typen I und II des Diabetes mellitus ist für die GdB-Bewertung nicht zielführend, da sie klinischer Natur ist und – unter Berücksichtigung der Entstehung der Stoffwechselstörung – in erster Linie der Bestimmung der Behandlungsmethode dient. Bei Vorliegen einer Insulinbehandlung erlaubt sie jedoch keine trennscharfe Differenzierung nach den jeweils bestehenden Teilhabebeeinträchtigungen, da es eine größere Anzahl von Fällen des Diabetes Typ II gibt, bei denen unter Insulinbehandlung ähnliche Hypoglykämieprobleme auftreten wie bei einem Diabetes Typ I. Dementsprechend sind für die GdB-Bewertung andere Kriterien maßgebend. Der Begriff &#8220;einstellbar&#8221; in Nr. 26.15 der AHP 2008 ist deshalb dahin auszulegen, dass er darauf abstellt, ob bei dem behinderten Menschen (nicht nur vorübergehend) tatsächlich eine stabile oder instabile Stoffwechsellage besteht und welcher Therapieaufwand dabei erfolgt. Maßgebend ist, wie leicht oder wie schwer die allgemeinen Therapieziele beim Diabetes mellitus, nämlich das Vermeiden von Hyperglykämien (erhöhten Blutzuckerwerten) und Hypoglykämien (Unterzuckerung), erreicht werden können.</p>
<p>23Angesichts dieser Entscheidung des Bundessozialgerichts hat der Verordnunggeber unter Aufgabe der Differenzierung nach dem Typ I und dem Typ II des Diabetes mellitus – der Empfehlung des Ärztlichen Sachverständigenbeirats „Versorgungsmedizin“ beim Bundesministerium für Arbeit und Soziales (Rundschreiben vom 22. September 2008, IV C 3-48046-3) folgend – in Teil B Nr. 15.1 (S. 73f.) der Anlage zu § 2 VersMedV folgende Bewertung vorgesehen:</p>
<p>24</p>
<p>Zuckerkrankheit (Diabetes mellitus)</p>
<p>mit Diät allein (ohne blutzuckerregulierende Medikamente) 0</p>
<p>mit Medikamenten eingestellt, die die Hypoglykämieneigung nicht erhöhen 10</p>
<p>mit Medikamenten eingestellt, die die Hypoglykämieneigung erhöhen 20</p>
<p>unter Insulintherapie, auch in Kombination mit anderen blutzuckersenkenden</p>
<p>Medikamenten, je nach Stabilität der Stoffwechsellage</p>
<p>(stabil oder mäßig schwankend) 30-40</p>
<p>unter Insulintherapie instabile Stoffwechsellage einschließlich gelegentlicher</p>
<p>schwerer Hypoglykämien 50</p>
<p>Häufige, ausgeprägte oder schwere Hypoglykämien sind zusätzlich zu bewerten.</p>
<p>Schwere Hypoglykämien sind Unterzuckerungen, die eine ärztliche Hilfe erfordern.</p>
<p>25Diese Bestimmungen sind grundsätzlich auch für noch nicht bestandskräftig beschiedene Zeiträume vor Inkrafttreten der VersMedV am 1. Januar 2009 heranzuziehen (vgl. BSG, Urteil vom 11. Dezember 2008, B 9/9a SB 4/07 R, bei Juris, zu der Rückwirkung der vorläufigen Neufassung der AHP vom 22. September 2008 [a.a.O.]), vorliegend also ab Antragstellung im April 2006.</p>
<p>26Auf der Grundlage dieser Vorgaben wäre der den Diabetes mellitus der Klägerin betreffende Einzel-GdB mit 30 anzusetzen. Die Zuckerkrankheit ist nach den vorliegenden ärztlichen Unterlagen hinreichend eingestellt. Der Internist Dr. D hat in seiner versorgungsärztlichen Stellungnahme vom 30. März 2007 dargelegt, dass sich aus dem von der Klägerin eingereichten Diabetes-Tagebuchs zwar durchaus, jedenfalls im Jahr 2002, niedrige Blutzuckerwerte ergeben, jedoch deutlich eine entsprechende Ausgleichbarkeit abgelesen werden können. Häufige und ausgeprägte Hypoglykämien sind nicht belegt.</p>
<p>27Indes ist nach der aktuellen Rechtsprechung des Bundessozialgerichts (Urteil vom 23. April 2009, B 9 SB 3/08 R, bei Juris) eine Ergänzung der in Teil B Nr. 15.1 der Anlage zu § 2 VersMedV enthaltenen Regelungen zur Feststellung des GdB bei Diabetes mellitus angezeigt: Sie binden die Rechtsanwender nicht, da sie gegen § 69 Abs. 1 Satz 4 SGB IX verstoßen. Der medizinisch notwendige Aufwand für die Therapie einer Dauererkrankung wie des Diabetes mellitus kann je nach Art und notwendigen Zeitaufwand &#8220;Auswirkungen auf die Teilhabe am Leben in der Gesellschaft&#8221; im Sinne der genannten gesetzlichen Vorschrift haben. Demgegenüber wird in der Rechtsverordnung nach wie vor allein die Einstellungsqualität des Diabetes und nicht ein die Teilhabe beeinträchtigender Therapieaufwand berücksichtigt. Deshalb ist der Therapieaufwand von Gesetzes wegen bei der Entscheidung über die Höhe des GdB zwingend mit einzustellen. Die Notwendigkeit seiner Berücksichtigung kann ja nach Umfang dazu führen, dass der allein anhand der Einstellungsqualität des Diabetes mellitus beurteilte GdB auf den nächst höheren Zehnergrad festzustellen ist (so BSG, Urteil vom 11. Dezember 2008, B 9/9a SB 4/07 R, bei Juris).</p>
<p>28Dementsprechend ist im vorliegenden Fall bei der GdB-Bewertung des Diabetes mellitus neben der Einstellungsqualität auch der konkrete Therapieaufwand zu beurteilen, soweit er sich auf die Teilhabe des behinderten Menschen am Leben in der Gesellschaft nachteilig auswirkt.</p>
<p>29Der Umstand, dass die Klägerin morgens ihren Blutzuckerspiegel kontrollieren und sich regelmäßig dreimal täglich Insulin verabreichen muss, ist allerdings – für sich allein genommen – nicht geeignet, einen höheren Einzel-GdB als 30 zu begründen. Denn das Bundessozialgericht hat in seiner Entscheidung vom 24. April 2008 betont, dass sich allein aus der Zahl der täglichen Insulininjektionen (wie von der DDG vorgeschlagen wurde) nicht mit hinreichender Sicherheit und Genauigkeit auf das Ausmaß der durch einen Diabetes mellitus bedingten Teilhabebeeinträchtigung schließen lässt. Vielmehr ist jeweils auch das Ergebnis der therapeutischen Maßnahmen, insbesondere die erreichte Stoffwechsellage zu betrachten. So wird der GdB relativ niedrig anzusetzen sein, wenn mit geringem Therapieaufwand eine ausgeglichene Stoffwechsellage erreicht wird. Mit (in beeinträchtigender Weise) wachsendem Therapieaufwand und/oder abnehmendem Therapieerfolg (instabilerer Stoffwechsellage) wird der GdB höher einzuschätzen sein.</p>
<p>30Vorliegend ist zu berücksichtigen, dass bei der Klägerin nach dem letzten Befundbericht der sie behandelnden Internistin Dr. T &#8211; S vom 4. Februar 2009 ein häufiger Wechsel von Hypo- und Hyperglykämien besteht. Zwar zeitigt die Insulintherapie insoweit Erfolg, als ausgeprägte oder schwere Hypoklykämien vermieden werden. Mit dem vorgetragenen HbA 1c -Wert von 6,0 nähert der Langzeit-Blutzuckerwert der Klägerin sich dem oberen Normbereich, so dass – der subjektiven Einschätzung der Klägerin in der mündlichen Verhandlung entsprechend – von einer zufriedenstellenden Stoffwechsellage auszugehen ist. Jedoch erreicht die Klägerin diesen Therapieerfolg nur mit einem sie in nicht unerheblichem Ausmaß treffenden Therapieaufwand.</p>
<p>31Die Notwendigkeit, ihre Blutzuckerwerte zu kontrollieren, sich mehrmals am Tag Insulin zu spritzen und eine bestimmte Diät einzuhalten, trifft regelmäßig Diabetiker unter Insulintherapie. Der Umstand, dass die Klägerin täglich streng die Essenszeiten einzuhalten hat, ist im vorliegenden Fall der von ihrer behandelnden Ärztin vorgeschriebenen Therapieform geschuldet. Entscheidend ist, dass die Klägerin gehalten ist, täglich Sport zu betreiben. Der hierfür betriebene Aufwand von anderthalb Stunden am Tag kann nicht als gering im Sinne der Rechtsprechung des Bundessozialgerichts qualifiziert werden. Dies ist auch unter dem Aspekt, dass sportliche Betätigung allgemein wünschenswert ist, beachtlich, denn der Umstand, dass die Klägerin Sport in diesem Umfang betreibt, trägt unmittelbar zu dem Therapieerfolg mit bei und muss konsequenterweise im Rahmen des Therapieaufwandes, der Auswirkungen auf die Teilhabe am Leben in der Gesellschaft zeitigt, Berücksichtigung finden.</p>
<p>32Deshalb ist es gerechtfertigt, mit der Rechtsprechung des Bundessozialgerichts bei der Klägerin den Einzel-GdB wegen des Diabetes mellitus um einen Zehnergrad auf 40 anzuheben.</p>
<p>33Organkomplikationen, d.h. dauerhafte durch den Diabetes mellitus verursachte Gesundheitsstörungen an anderen Organen führen nicht zu einer Erhöhung des Einzel-GdB wegen Diabetes, sondern sind wie davon unabhängig entstandene Gesundheitsstörungen zu behandeln, also einzeln zu bewerten und nach Maßgabe des § 69 Abs. 3 Satz 1 SGB IX bei der Bildung des Gesamt-GdB zu berücksichtigen (vgl. BSG, Urteil vom 11. Dezember 2008 a.a.O.).</p>
<p>34Unter Verwertung der ihm vorliegenden ärztlichen Unterlagen hat das Sozialgericht Berlin überzeugend dargelegt, dass der Klägerin wegen der bei ihr vorliegenden Sehbehinderungen ein GdB von 20 zuzuerkennen ist. Hinsichtlich der Sehschärfe ist nach Nr. 26.4 (S. 50) der AHP bzw. Teil B Nr. 4 (S. 29f.) der Anlage zu § 2 VersMedV auf die MdE-Tabelle der Deutschen Ophthalmologischen Gesellschaft abzustellen, die bei einem korrigierten Sehvermögen von 0,9 auf dem rechten und 0,1 auf dem linken Auge, das ausweislich des Befundberichts der Augenärztin A vom 11. Dezember 2008 bei der Klägerin unverändert vorliegt, einen Einzel-GdB in dieser Höhe vorsieht. Die Einschränkung des Gesichtsfeldes des linken Auges wirkt sich – wie die Augenärztin L in der versorgungsärztlichen Stellungnahme vom 12. März 2009 überzeugend dargelegt hat, wegen der an diesem Auge bestehenden Amblyopie (Schwachsichtigkeit) nicht GdB-erhöhend aus. Das Gesichtsfeld des rechten Auges bewegt sich nach der Mitteilung der Augenärztin A im genannten Befundbericht innerhalb normaler Grenzen. Rechtlich unerheblich ist, dass, worauf die Klägerin hinweist, die Glaukom-Erkrankung fortgeschritten ist, da nicht auf die Erkrankung als solche, sondern auf das Ausmaß der Sehbehinderung ankommt, das sich vorliegend gerade nicht erhöht hat.</p>
<p>35Der Gesamt-GdB als Ausdruck der Gesamtbeeinträchtigung ist mit 50 zu bilden. Liegen mehrere Beeinträchtigungen am Leben in der Gesellschaft vor, ist der GdB gemäß § 69 Abs. 3 SGB IX nach den Auswirkungen der Beeinträchtigungen in ihrer Gesamtheit unter Berücksichtigung ihrer wechselseitigen Beziehungen festzustellen. Nach Nr. 19 Abs. 3 der AHP bzw. Teil A Nr. 3c der Anlage zu § 2 VersMedV ist bei der Beurteilung des Gesamt-GdB von der Funktionsstörung auszugehen, die den höchsten Einzel-GdB bedingt, und dann im Hinblick auf alle weiteren Funktionsbeeinträchtigungen zu prüfen, ob und inwieweit hierdurch das Ausmaß der Behinderung größer wird. Danach ist der für den Diabetes mellitus anzusetzende Einzel-GdB von 40 wegen der mit einem Einzel-GdB von 20 zu bewertenden Sehminderung um einen Zehnergrad anzuheben.</p>
<p>36Die Kostenentscheidung beruht auf § 193 SGG.</p>
<p>37Die Revision ist wegen grundsätzlicher Bedeutung der Rechtssache nach § 160 Abs. 2 Nr. 1 SGG zuzulassen.</p></blockquote>
<p><a href="http://www.gerichtsentscheidungen.berlin-brandenburg.de/jportal/?quelle=jlink&#38;docid=JURE090046509&#38;psml=sammlung.psml&#38;max=true&#38;bs=10" target="_blank">Landessozialgericht Berlin-Brandenburg : L 13 SB 294/07 </a></p>
<blockquote></blockquote>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Convert gdb to shp]]></title>
<link>http://atthurtrank.wordpress.com/2009/10/06/convert-gdb-to-shp/</link>
<pubDate>Tue, 06 Oct 2009 06:58:00 +0000</pubDate>
<dc:creator>atthurtrank</dc:creator>
<guid>http://atthurtrank.wordpress.com/2009/10/06/convert-gdb-to-shp/</guid>
<description><![CDATA[Convert gdb to shp Untuk konversi data dari gps (*.gdb atau *.gpx) dalam bentuk line atau polyline k]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style="font-weight:bold;">Convert  gdb  to  shp</span><br />
<span style="font-size:78%;"><br />
</span></p>
<div style="text-align:left;">
<span style="font-size:78%;"><span style="font-family:arial;"></span></span><br />
 <!--  /* Font Definitions */  @font-face 	{font-family:Calibri; 	mso-font-alt:"Century Gothic"; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:""; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:0cm; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraph, li.ListParagraph, div.ListParagraph 	{mso-style-name:"List Paragraph"; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:36.0pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpFirst, li.ListParagraphCxSpFirst, div.ListParagraphCxSpFirst 	{mso-style-name:"List ParagraphCxSpFirst"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:0cm; 	margin-left:36.0pt; 	margin-bottom:.0001pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpMiddle, li.ListParagraphCxSpMiddle, div.ListParagraphCxSpMiddle 	{mso-style-name:"List ParagraphCxSpMiddle"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:0cm; 	margin-left:36.0pt; 	margin-bottom:.0001pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpLast, li.ListParagraphCxSpLast, div.ListParagraphCxSpLast 	{mso-style-name:"List ParagraphCxSpLast"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:36.0pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} @page Section1 	{size:612.0pt 792.0pt; 	margin:72.0pt 90.0pt 72.0pt 90.0pt; 	mso-header-margin:36.0pt; 	mso-footer-margin:36.0pt; 	mso-paper-source:0;} div.Section1 	{page:Section1;}  /* List Definitions */  @list l0 	{mso-list-id:1212886982; 	mso-list-type:hybrid; 	mso-list-template-ids:1778686470 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} @list l0:level1 	{mso-level-tab-stop:none; 	mso-level-number-position:left; 	text-indent:-18.0pt;} ol 	{margin-bottom:0cm;} ul 	{margin-bottom:0cm;} --> </p>
<div class="MsoNormal">
Untuk konversi  data dari gps (*.gdb atau *.gpx) dalam bentuk line atau polyline ke shapefile (shp), berikut langkah-langkahnya :
</div>
<div class="ListParagraphCxSpFirst" style="text-indent:-18pt;">
1.<span style="font-family:&#34;font-size:7px;">      </span>Buka program Mapsource lalu cari data anda yang ingin di convert (ektensi *.gdb atau *.gpx)
</div>
<div class="ListParagraphCxSpLast" style="text-indent:-18pt;">
2.<span style="font-family:&#34;font-size:7px;">      </span><span style="height:341px;left:0;margin-left:116px;margin-top:45px;position:absolute;width:345px;z-index:-1;"><img height="341" src="/DOCUME%7E1/Guest/LOCALS%7E1/Temp/msohtml1/02/clip_image002.jpg" width="345" /></span>Setelah terbuka, klik File &#62; Save as….
</div>
</div>
<p><a href="http://atthurtrank.wordpress.com/files/2009/10/15.jpg"><img alt="" border="0" src="http://atthurtrank.wordpress.com/files/2009/10/13.jpg?w=300" /></a></p>
<div style="text-align:left;">
<p> <!--  /* Font Definitions */  @font-face 	{font-family:Calibri; 	mso-font-alt:"Century Gothic"; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:""; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:0cm; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraph, li.ListParagraph, div.ListParagraph 	{mso-style-name:"List Paragraph"; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:36.0pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpFirst, li.ListParagraphCxSpFirst, div.ListParagraphCxSpFirst 	{mso-style-name:"List ParagraphCxSpFirst"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:0cm; 	margin-left:36.0pt; 	margin-bottom:.0001pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpMiddle, li.ListParagraphCxSpMiddle, div.ListParagraphCxSpMiddle 	{mso-style-name:"List ParagraphCxSpMiddle"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:0cm; 	margin-left:36.0pt; 	margin-bottom:.0001pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpLast, li.ListParagraphCxSpLast, div.ListParagraphCxSpLast 	{mso-style-name:"List ParagraphCxSpLast"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:36.0pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} @page Section1 	{size:612.0pt 792.0pt; 	margin:72.0pt 90.0pt 72.0pt 90.0pt; 	mso-header-margin:36.0pt; 	mso-footer-margin:36.0pt; 	mso-paper-source:0;} div.Section1 	{page:Section1;}  /* List Definitions */  @list l0 	{mso-list-id:1212886982; 	mso-list-type:hybrid; 	mso-list-template-ids:1778686470 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} @list l0:level1 	{mso-level-tab-stop:none; 	mso-level-number-position:left; 	text-indent:-18.0pt;} ol 	{margin-bottom:0cm;} ul 	{margin-bottom:0cm;} --> </p>
<div class="ListParagraph" style="text-indent:-18pt;">
3.<span style="font-family:&#34;font-size:7px;">      </span>File name isi dengan nama yang anda inginkan. Pada save as type, pilih  dxf (*.dxf). Setelah selesai klik save
</div>
</div>
<p><a href="http://atthurtrank.wordpress.com/files/2009/10/2.jpg"><img alt="" border="0" src="http://atthurtrank.wordpress.com/files/2009/10/2.jpg?w=300" /></a><br />
 <!--  /* Font Definitions */  @font-face 	{font-family:Calibri; 	mso-font-alt:"Century Gothic"; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:""; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:0cm; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraph, li.ListParagraph, div.ListParagraph 	{mso-style-name:"List Paragraph"; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:36.0pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpFirst, li.ListParagraphCxSpFirst, div.ListParagraphCxSpFirst 	{mso-style-name:"List ParagraphCxSpFirst"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:0cm; 	margin-left:36.0pt; 	margin-bottom:.0001pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpMiddle, li.ListParagraphCxSpMiddle, div.ListParagraphCxSpMiddle 	{mso-style-name:"List ParagraphCxSpMiddle"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:0cm; 	margin-left:36.0pt; 	margin-bottom:.0001pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpLast, li.ListParagraphCxSpLast, div.ListParagraphCxSpLast 	{mso-style-name:"List ParagraphCxSpLast"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:36.0pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} @page Section1 	{size:612.0pt 792.0pt; 	margin:72.0pt 90.0pt 72.0pt 90.0pt; 	mso-header-margin:36.0pt; 	mso-footer-margin:36.0pt; 	mso-paper-source:0;} div.Section1 	{page:Section1;}  /* List Definitions */  @list l0 	{mso-list-id:1212886982; 	mso-list-type:hybrid; 	mso-list-template-ids:1778686470 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} @list l0:level1 	{mso-level-tab-stop:none; 	mso-level-number-position:left; 	text-indent:-18.0pt;} ol 	{margin-bottom:0cm;} ul 	{margin-bottom:0cm;} --> </p>
<div class="ListParagraph" style="text-indent:-18pt;">
4.<span style="font-family:&#34;font-size:7px;">      </span>Lalu akan muncul dialog :
</div>
<p><a href="http://atthurtrank.wordpress.com/files/2009/10/3.jpg"><img alt="" border="0" src="http://atthurtrank.wordpress.com/files/2009/10/3.jpg?w=237" /></a><br />
 <!--  /* Font Definitions */  @font-face 	{font-family:Calibri; 	mso-font-alt:"Century Gothic"; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:""; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:0cm; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraph, li.ListParagraph, div.ListParagraph 	{mso-style-name:"List Paragraph"; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:36.0pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpFirst, li.ListParagraphCxSpFirst, div.ListParagraphCxSpFirst 	{mso-style-name:"List ParagraphCxSpFirst"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:0cm; 	margin-left:36.0pt; 	margin-bottom:.0001pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpMiddle, li.ListParagraphCxSpMiddle, div.ListParagraphCxSpMiddle 	{mso-style-name:"List ParagraphCxSpMiddle"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:0cm; 	margin-left:36.0pt; 	margin-bottom:.0001pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpLast, li.ListParagraphCxSpLast, div.ListParagraphCxSpLast 	{mso-style-name:"List ParagraphCxSpLast"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:36.0pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} @page Section1 	{size:612.0pt 792.0pt; 	margin:72.0pt 90.0pt 72.0pt 90.0pt; 	mso-header-margin:36.0pt; 	mso-footer-margin:36.0pt; 	mso-paper-source:0;} div.Section1 	{page:Section1;}  /* List Definitions */  @list l0 	{mso-list-id:1212886982; 	mso-list-type:hybrid; 	mso-list-template-ids:1778686470 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} @list l0:level1 	{mso-level-tab-stop:none; 	mso-level-number-position:left; 	text-indent:-18.0pt;} ol 	{margin-bottom:0cm;} ul 	{margin-bottom:0cm;} --> </p>
<div class="ListParagraphCxSpFirst" style="text-indent:-18pt;">
5.<span style="font-family:&#34;font-size:7px;">      </span>Pilihan terserah anda. Apakah akan menggunakan koordinat geografis atau UTM.<br />
&#160;&#160;&#160; Disini saya menggunakan UTM. Setelah memilih koordinat  yang ingin digunakan, klik OK.
</div>
<div class="ListParagraphCxSpLast" style="text-indent:-18pt;">
6.<span style="font-family:&#34;font-size:7px;">      </span>Buka program ArcView GIS. Klik View &#62; Add theme. Cari file yang telah anda simpan  tadi, OK.
</div>
<p><a href="http://atthurtrank.wordpress.com/files/2009/10/4.jpg"><img alt="" border="0" src="http://atthurtrank.wordpress.com/files/2009/10/4.jpg?w=300" /></a><br />
 <!--  /* Font Definitions */  @font-face 	{font-family:Calibri; 	mso-font-alt:"Century Gothic"; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:""; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:0cm; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraph, li.ListParagraph, div.ListParagraph 	{mso-style-name:"List Paragraph"; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:36.0pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpFirst, li.ListParagraphCxSpFirst, div.ListParagraphCxSpFirst 	{mso-style-name:"List ParagraphCxSpFirst"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:0cm; 	margin-left:36.0pt; 	margin-bottom:.0001pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpMiddle, li.ListParagraphCxSpMiddle, div.ListParagraphCxSpMiddle 	{mso-style-name:"List ParagraphCxSpMiddle"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:0cm; 	margin-left:36.0pt; 	margin-bottom:.0001pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpLast, li.ListParagraphCxSpLast, div.ListParagraphCxSpLast 	{mso-style-name:"List ParagraphCxSpLast"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:36.0pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} @page Section1 	{size:612.0pt 792.0pt; 	margin:72.0pt 90.0pt 72.0pt 90.0pt; 	mso-header-margin:36.0pt; 	mso-footer-margin:36.0pt; 	mso-paper-source:0;} div.Section1 	{page:Section1;}  /* List Definitions */  @list l0 	{mso-list-id:1212886982; 	mso-list-type:hybrid; 	mso-list-template-ids:1778686470 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} @list l0:level1 	{mso-level-tab-stop:none; 	mso-level-number-position:left; 	text-indent:-18.0pt;} ol 	{margin-bottom:0cm;} ul 	{margin-bottom:0cm;} --> </p>
<div class="ListParagraph" style="text-indent:-18pt;">
7.<span style="font-family:&#34;font-size:7px;">      </span>Maka pada kolom sebelah kiri akan muncul theme dengan ekstensi *.dxf
</div>
<p><a href="http://atthurtrank.wordpress.com/files/2009/10/5.jpg"><img alt="" border="0" src="http://atthurtrank.wordpress.com/files/2009/10/5.jpg?w=300" /></a><br />
 <!--  /* Font Definitions */  @font-face 	{font-family:Calibri; 	mso-font-alt:"Century Gothic"; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:""; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:0cm; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraph, li.ListParagraph, div.ListParagraph 	{mso-style-name:"List Paragraph"; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:36.0pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpFirst, li.ListParagraphCxSpFirst, div.ListParagraphCxSpFirst 	{mso-style-name:"List ParagraphCxSpFirst"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:0cm; 	margin-left:36.0pt; 	margin-bottom:.0001pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpMiddle, li.ListParagraphCxSpMiddle, div.ListParagraphCxSpMiddle 	{mso-style-name:"List ParagraphCxSpMiddle"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:0cm; 	margin-left:36.0pt; 	margin-bottom:.0001pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpLast, li.ListParagraphCxSpLast, div.ListParagraphCxSpLast 	{mso-style-name:"List ParagraphCxSpLast"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:36.0pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} @page Section1 	{size:612.0pt 792.0pt; 	margin:72.0pt 90.0pt 72.0pt 90.0pt; 	mso-header-margin:36.0pt; 	mso-footer-margin:36.0pt; 	mso-paper-source:0;} div.Section1 	{page:Section1;}  /* List Definitions */  @list l0 	{mso-list-id:1212886982; 	mso-list-type:hybrid; 	mso-list-template-ids:1778686470 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} @list l0:level1 	{mso-level-tab-stop:none; 	mso-level-number-position:left; 	text-indent:-18.0pt;} ol 	{margin-bottom:0cm;} ul 	{margin-bottom:0cm;} --> </p>
<div class="ListParagraph" style="text-indent:-18pt;">
8.<span style="font-family:&#34;font-size:7px;">      </span>Untuk mengubah *.dxf ke shp, klik menu Theme &#62; Convert to shapefile …
</div>
<p><a href="http://atthurtrank.wordpress.com/files/2009/10/6.jpg"><img alt="" border="0" src="http://atthurtrank.wordpress.com/files/2009/10/6.jpg?w=272" /></a></p>
<div style="text-align:left;">
<p> <!--  /* Font Definitions */  @font-face 	{font-family:Calibri; 	mso-font-alt:"Century Gothic"; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:""; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:0cm; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraph, li.ListParagraph, div.ListParagraph 	{mso-style-name:"List Paragraph"; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:36.0pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpFirst, li.ListParagraphCxSpFirst, div.ListParagraphCxSpFirst 	{mso-style-name:"List ParagraphCxSpFirst"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:0cm; 	margin-left:36.0pt; 	margin-bottom:.0001pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpMiddle, li.ListParagraphCxSpMiddle, div.ListParagraphCxSpMiddle 	{mso-style-name:"List ParagraphCxSpMiddle"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:0cm; 	margin-left:36.0pt; 	margin-bottom:.0001pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpLast, li.ListParagraphCxSpLast, div.ListParagraphCxSpLast 	{mso-style-name:"List ParagraphCxSpLast"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:36.0pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} @page Section1 	{size:612.0pt 792.0pt; 	margin:72.0pt 90.0pt 72.0pt 90.0pt; 	mso-header-margin:36.0pt; 	mso-footer-margin:36.0pt; 	mso-paper-source:0;} div.Section1 	{page:Section1;}  /* List Definitions */  @list l0 	{mso-list-id:1212886982; 	mso-list-type:hybrid; 	mso-list-template-ids:1778686470 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} @list l0:level1 	{mso-level-tab-stop:none; 	mso-level-number-position:left; 	text-indent:-18.0pt;} ol 	{margin-bottom:0cm;} ul 	{margin-bottom:0cm;} --> </p>
<div class="ListParagraph" style="text-indent:-18pt;">
9.<span style="font-family:&#34;font-size:7px;">      </span>Isi  nama file pada File name dan tentukan dimana file akan disimpan. Lalu OK..
</div>
</div>
<p><a href="http://atthurtrank.wordpress.com/files/2009/10/71.jpg"><img alt="" border="0" src="http://atthurtrank.wordpress.com/files/2009/10/71.jpg?w=300" /></a></p>
<div style="text-align:left;">
<p> <!--  /* Font Definitions */  @font-face 	{font-family:Calibri; 	mso-font-alt:"Century Gothic"; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:""; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:0cm; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraph, li.ListParagraph, div.ListParagraph 	{mso-style-name:"List Paragraph"; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:36.0pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpFirst, li.ListParagraphCxSpFirst, div.ListParagraphCxSpFirst 	{mso-style-name:"List ParagraphCxSpFirst"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:0cm; 	margin-left:36.0pt; 	margin-bottom:.0001pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpMiddle, li.ListParagraphCxSpMiddle, div.ListParagraphCxSpMiddle 	{mso-style-name:"List ParagraphCxSpMiddle"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:0cm; 	margin-left:36.0pt; 	margin-bottom:.0001pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpLast, li.ListParagraphCxSpLast, div.ListParagraphCxSpLast 	{mso-style-name:"List ParagraphCxSpLast"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:36.0pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} @page Section1 	{size:612.0pt 792.0pt; 	margin:72.0pt 90.0pt 72.0pt 90.0pt; 	mso-header-margin:36.0pt; 	mso-footer-margin:36.0pt; 	mso-paper-source:0;} div.Section1 	{page:Section1;}  /* List Definitions */  @list l0 	{mso-list-id:1212886982; 	mso-list-type:hybrid; 	mso-list-template-ids:1778686470 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} @list l0:level1 	{mso-level-tab-stop:none; 	mso-level-number-position:left; 	text-indent:-18.0pt;} ol 	{margin-bottom:0cm;} ul 	{margin-bottom:0cm;} --> </p>
<div class="ListParagraphCxSpFirst" style="text-indent:-18pt;">
10.  Lalu muncul konfirmasi apakah file shp ingin ditambahkan sebagai theme pada view…?<br />
 <!--  /* Font Definitions */  @font-face 	{font-family:Calibri; 	mso-font-alt:"Century Gothic"; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:""; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:0cm; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraph, li.ListParagraph, div.ListParagraph 	{mso-style-name:"List Paragraph"; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:36.0pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpFirst, li.ListParagraphCxSpFirst, div.ListParagraphCxSpFirst 	{mso-style-name:"List ParagraphCxSpFirst"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:0cm; 	margin-left:36.0pt; 	margin-bottom:.0001pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpMiddle, li.ListParagraphCxSpMiddle, div.ListParagraphCxSpMiddle 	{mso-style-name:"List ParagraphCxSpMiddle"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:0cm; 	margin-left:36.0pt; 	margin-bottom:.0001pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpLast, li.ListParagraphCxSpLast, div.ListParagraphCxSpLast 	{mso-style-name:"List ParagraphCxSpLast"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:36.0pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} @page Section1 	{size:612.0pt 792.0pt; 	margin:72.0pt 90.0pt 72.0pt 90.0pt; 	mso-header-margin:36.0pt; 	mso-footer-margin:36.0pt; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --> </p>
</div>
<div class="ListParagraph">
<span style="height:112px;left:0;margin-left:159px;margin-top:19px;position:absolute;width:300px;z-index:-1;"><img height="112" src="/DOCUME%7E1/Guest/LOCALS%7E1/Temp/msohtml1/10/clip_image002.jpg" width="300" /></span>Klik YES.
</div>
<p><a href="http://atthurtrank.wordpress.com/files/2009/10/81.jpg"><img alt="" border="0" src="http://atthurtrank.wordpress.com/files/2009/10/81.jpg?w=300" /></a>
</div>
<p> <!--  /* Font Definitions */  @font-face 	{font-family:Calibri; 	mso-font-alt:"Century Gothic"; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:""; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:0cm; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraph, li.ListParagraph, div.ListParagraph 	{mso-style-name:"List Paragraph"; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:36.0pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpFirst, li.ListParagraphCxSpFirst, div.ListParagraphCxSpFirst 	{mso-style-name:"List ParagraphCxSpFirst"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:0cm; 	margin-left:36.0pt; 	margin-bottom:.0001pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpMiddle, li.ListParagraphCxSpMiddle, div.ListParagraphCxSpMiddle 	{mso-style-name:"List ParagraphCxSpMiddle"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:0cm; 	margin-left:36.0pt; 	margin-bottom:.0001pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpLast, li.ListParagraphCxSpLast, div.ListParagraphCxSpLast 	{mso-style-name:"List ParagraphCxSpLast"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:36.0pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} @page Section1 	{size:612.0pt 792.0pt; 	margin:72.0pt 90.0pt 72.0pt 90.0pt; 	mso-header-margin:36.0pt; 	mso-footer-margin:36.0pt; 	mso-paper-source:0;} div.Section1 	{page:Section1;}  /* List Definitions */  @list l0 	{mso-list-id:1212886982; 	mso-list-type:hybrid; 	mso-list-template-ids:1778686470 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;} @list l0:level1 	{mso-level-tab-stop:none; 	mso-level-number-position:left; 	text-indent:-18.0pt;} ol 	{margin-bottom:0cm;} ul 	{margin-bottom:0cm;} --> </p>
<div class="ListParagraph" style="text-indent:-18pt;">
11.<span style="font-family:&#34;font-size:7px;">      </span>Di atas theme *.dxf akan muncul theme shp
</div>
<p><a href="http://atthurtrank.wordpress.com/files/2009/10/91.jpg"><img alt="" border="0" src="http://atthurtrank.wordpress.com/files/2009/10/91.jpg?w=300" /></a> </p>
<div style="text-align:left;">
<p> <!--  /* Font Definitions */  @font-face 	{font-family:Calibri; 	mso-font-alt:"Century Gothic"; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:""; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:0cm; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraph, li.ListParagraph, div.ListParagraph 	{mso-style-name:"List Paragraph"; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:36.0pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpFirst, li.ListParagraphCxSpFirst, div.ListParagraphCxSpFirst 	{mso-style-name:"List ParagraphCxSpFirst"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:0cm; 	margin-left:36.0pt; 	margin-bottom:.0001pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpMiddle, li.ListParagraphCxSpMiddle, div.ListParagraphCxSpMiddle 	{mso-style-name:"List ParagraphCxSpMiddle"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:0cm; 	margin-left:36.0pt; 	margin-bottom:.0001pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} p.ListParagraphCxSpLast, li.ListParagraphCxSpLast, div.ListParagraphCxSpLast 	{mso-style-name:"List ParagraphCxSpLast"; 	mso-style-type:export-only; 	margin-top:0cm; 	margin-right:0cm; 	margin-bottom:10.0pt; 	margin-left:36.0pt; 	mso-add-space:auto; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:Calibri; 	mso-fareast-font-family:Calibri; 	mso-bidi-font-family:"Times New Roman";} @page Section1 	{size:612.0pt 792.0pt; 	margin:72.0pt 72.0pt 72.0pt 72.0pt; 	mso-header-margin:36.0pt; 	mso-footer-margin:36.0pt; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --> </p>
<div class="ListParagraphCxSpFirst">
File *.dxf tidak dapat anda edit. Sedangkan file shp ini bisa anda edit dengan cara klik menu Theme &#62; Start editing
</div>
<div class="ListParagraphCxSpMiddle" style="font-weight:bold;">
<span style="font-size:100%;">Demikian salah satu cara konversi data (line atau polyline) gdb ke shp.</span>
</div>
<div class="ListParagraphCxSpLast" style="font-weight:bold;">
<span style="font-size:100%;">Cara lainnya yaitu menggunakan program DNR Garmin.</span>
</div>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[dMaggot meets Alignment]]></title>
<link>http://dmaggot.wordpress.com/2009/10/02/dmaggot-meet-alignment/</link>
<pubDate>Fri, 02 Oct 2009 20:24:39 +0000</pubDate>
<dc:creator>dmaggot</dc:creator>
<guid>http://dmaggot.wordpress.com/2009/10/02/dmaggot-meet-alignment/</guid>
<description><![CDATA[I&#8217;ve been giving lots of support on OpenGL programming lately because of a project my classmat]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I&#8217;ve been giving lots of support on OpenGL programming lately because of a project my classmates had to turn in. One of them wanted to load a texture file into the code, and even though I&#8217;ve done that before on another project of my own, I have to admit I didn&#8217;t use a very high level approach to the task, so I recommended her a function I saw once while reading the OpenGL Super Bible.</p>
<p>The task of implementing the function into her code seemed simple: the whole code of the book is available at <a href="http://www.opengl.org/superbible" target="_blank">it&#8217;s web site</a>, so after downloading it, I checked if the function required any special library, and it didn&#8217;t, so all she needed to do was copying and pasting the function implementation. But of course, it didn&#8217;t work as expected (if it had, then I wouldn&#8217;t be writing this). The code threw some errors, even when trying to load the same TGA file from the book&#8217;s code. After adding some debugging <code>printf</code>s, I noticed the function wasn&#8217;t actually failing at any point, yet after reading the bytes from the file, the read data was corrupted. Specifically, the code uses the following structure to store a TGA Header information:</p>
<p><code>typedef struct<br />
{<br />
GLbyte      identsize;<br />
GLbyte      colorMapType;<br />
GLbyte      imageType;<br />
unsigned short      colorMapStart;<br />
unsigned short      colorMapLength;<br />
unsigned char       colorMapBits;<br />
unsigned short      xstart;<br />
unsigned short      ystart;<br />
unsigned short      width;<br />
unsigned short      height;<br />
GLbyte      bits;<br />
GLbyte      descriptor;<br />
} TGAHEADER;</code></p>
<p>Taking into account the datatype sizes, (GLbyte: 1 byte, unsigned short: 2 bytes, unsigned char: 1 byte), that&#8217;s an 18 bytes structure to store the header, as specified by the <a href="http://en.wikipedia.org/wiki/Truevision_TGA#Header" target="_blank">TGA file format</a>. The statement that loaded the info into the header was</p>
<p><code>fread(&#38;tgaHeader, 18/* sizeof(TGAHEADER)*/, 1, pFile);</code></p>
<p>which seemed OK to me at the beginning. Yet the result of the operation was always giving weird numbers. I first thought of corrupt data files, but it wasn&#8217;t the case as I could successfully load those files in my image editor. I also thought that something could have failed while opening the file pointer, but there was no error on the <code>fopen</code> instruction, plus there were some data fields that were loaded fine. I then took a look at the program under the <code>gdb</code> debugger and after printing some of the file contents, I did an interesting finding: the size of the structure was not 18, but 20. By checking the memory locations of all the fields of the <code>tgaHeader</code> structure, <code>colorMapStart</code> was placed 2 bytes after <code>imageType</code> and <code>xstart</code> was placed 2 bytes after <code>colorMapBits</code>, even though both <code>imageType</code> and <code>colorMapBits</code> were just 1 byte long. The reason is obvious: the compiler did that for alignment purposes; yet I must confess I had never seen something like that before anywhere outside the books (:$ shame on me).</p>
<p>I then did the obvious fix: reading each member of the header structure one by one, and we finally had a working version of the TGA file loader. Yet, besides learning a lot more about TGA headers than what I ever wanted to know, I also learned two important things that day: never reading all contents from a file into a structure, and the importance of <code>gdb</code> for real life debugging.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Family Resource Day at Junior Blind of America]]></title>
<link>http://guidedogpuppyraiser.wordpress.com/2009/09/27/family-resource-day-at-junior-blind-of-america/</link>
<pubDate>Sun, 27 Sep 2009 19:24:46 +0000</pubDate>
<dc:creator>Pilot - Guide Dog Puppy in Training</dc:creator>
<guid>http://guidedogpuppyraiser.wordpress.com/2009/09/27/family-resource-day-at-junior-blind-of-america/</guid>
<description><![CDATA[We had a good time. Got to spend time with Elbert (Dan and Carol), Anya (Melissa), Alisa (Pat), Satu]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div>
<p><span style="font-size:10pt;font-family:Arial;">We had a good time. Got to spend time with Elbert (Dan and Carol), Anya (Melissa), Alisa (Pat), Saturna (David), Pilot (Mary Ann), Polo (Joan)</span></p>
<p><span style="font-size:10pt;font-family:Arial;">and a Retired Ambassador Guide Dog.</span></p>
<p><span style="font-size:10pt;font-family:Arial;"></span></p>
<p><span style="font-size:10pt;font-family:Arial;">The families had the opportunity to collect information and pet the dogs. It is a good introduction to future Guide Dog users.</span></p>
<p><span style="font-size:10pt;font-family:Arial;"></span></p>
<p><span style="font-size:10pt;font-family:Arial;"></span></p>
</p></div>
<p><a href='http://posterous.com/getfile/files.posterous.com/maryannepstein/DuUVYMG2YTfhkgnjsbtXEFYoKFkleEoA4bh47eemYaQEligeSiCBHaffdijm/david_saturna_2339.jpg.scaled.1000.jpg'><img src="http://posterous.com/getfile/files.posterous.com/maryannepstein/lpCp8UwOenMH52YL2HRlDAPvkbw206pLTitSj38hQeb0CPYv6VSuXgpsjYpq/david_saturna_2339.jpg.scaled.500.jpg" width="500"></a> <a href='http://posterous.com/getfile/files.posterous.com/maryannepstein/PHFvyAFWCQ79mCs5j4roPqPjCVMyOzqaJoluUA8PTHi74CxxXT2e2WnFujMz/anya_2338.jpg.scaled.1000.jpg'><img src="http://posterous.com/getfile/files.posterous.com/maryannepstein/TBntHGTbvYfFIXIhm5avzlJjP0LYHcqrzYThIa1CvCIM7XjIGaaORCmlU07K/anya_2338.jpg.scaled.500.jpg" width="500"></a> <a href='http://posterous.com/getfile/files.posterous.com/maryannepstein/JpmHOpYBL77Kyle69NFdzrWC7d2bhOZUVd93M6PyMhPXWZCgMGzqDFnlooCT/anya_elbert_2335.jpg.scaled.1000.jpg'><img src="http://posterous.com/getfile/files.posterous.com/maryannepstein/UyQsZMMiIX0WyFzjfrwu8xjBo7oKjao85hWYMrEyDiK4iwHy5pvcBfYYAAw6/anya_elbert_2335.jpg.scaled.500.jpg" width="500"></a> <a href='http://posterous.com/getfile/files.posterous.com/maryannepstein/5jyOiUc2Dn8GlaB9eII9rEi2p90iWJh9cxSF6kuX2eqcuxZI1j8Mls3C6Fzq/pilot_2337.jpg.scaled.1000.jpg'><img src="http://posterous.com/getfile/files.posterous.com/maryannepstein/GFuBVXKczHMdFY4w7rhfKvwF3o2khiJxrHIpWJkKCEdODpOMPvjJ9kyBPLkO/pilot_2337.jpg.scaled.500.jpg" width="500"></a> <a href='http://posterous.com/getfile/files.posterous.com/maryannepstein/b9jSg5v7WZWWS21pTiz7JLBXkCiUfbkiRSzBIHo4ZOjEAItCHf9qSkWbwXRo/melissa_elbert_2333.jpg.scaled.1000.jpg'><img src="http://posterous.com/getfile/files.posterous.com/maryannepstein/kerwtYrf1gP7CCOepjC6dq6T0HESwm6ZL5uintBAJSpqGT3F7OuxCZPHrUXS/melissa_elbert_2333.jpg.scaled.500.jpg" width="500"></a> <a href='http://posterous.com/getfile/files.posterous.com/maryannepstein/CsdgrXXvKKOOmictefqHx9SOpUOcChDN73nd4ex4XzFselaBCTpwHL8sWnkj/elbert_dan_carol_2336.jpg.scaled.1000.jpg'><img src="http://posterous.com/getfile/files.posterous.com/maryannepstein/3kfYSIr5i5smTa5e0I1i5eM5IkjedmYDZ2BFhlDIwHSsq25ciA3unlfiNcJO/elbert_dan_carol_2336.jpg.scaled.500.jpg" width="500"></a> <a href='http://posterous.com/getfile/files.posterous.com/maryannepstein/iFBqHekTVLyHg2P6jJfbjGsYO96KJrtzwruZbmYan9F0VoN6Zo5CsgFiFlmO/anya_melissa_david_display_234.jpg.scaled.1000.jpg'><img src="http://posterous.com/getfile/files.posterous.com/maryannepstein/6r0F4m1QHP9wmxfyZ4dWCdaNbgg4uPPvhRARmrSWVYYoN6NmYk2Lm2nDZQGh/anya_melissa_david_display_234.jpg.scaled.500.jpg" width="500"></a>
<div><a href='http://maryannepstein.posterous.com/family-resource-day-at-junior-blind-of-americ'>See and download the full gallery on posterous</a></div>
</p>


<!-- No posting client link spam, please. -->


</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Awdsome]]></title>
<link>http://philscarblog.wordpress.com/2009/09/24/awdsome/</link>
<pubDate>Thu, 24 Sep 2009 10:23:08 +0000</pubDate>
<dc:creator>Phil</dc:creator>
<guid>http://philscarblog.wordpress.com/2009/09/24/awdsome/</guid>
<description><![CDATA[Shit is epic.]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://philscarblog.wordpress.com/files/2009/09/raw00061.jpg"><img class="alignnone size-full wp-image-783" title="raw00061" src="http://philscarblog.wordpress.com/files/2009/09/raw00061.jpg" alt="raw00061" width="500" height="334" /></a><br />
Shit is epic.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Senior-level Automation Software Development Position]]></title>
<link>http://mindsourceinc.wordpress.com/2009/09/22/senior-level-automation-software-development-position/</link>
<pubDate>Tue, 22 Sep 2009 22:56:20 +0000</pubDate>
<dc:creator>Michelle</dc:creator>
<guid>http://mindsourceinc.wordpress.com/2009/09/22/senior-level-automation-software-development-position/</guid>
<description><![CDATA[Our client is seeking an experienced software engineer with a proven track record for delivering hig]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Our client is seeking an experienced software engineer with a proven track record for delivering high quality software libraries for automation. This individual will be responsible for a wide range of automation tasks such as architecting, designing, and development of test framework libraries in C and Perl.  The test automation framework libraries will be used by functional test teams to develop automated test suites for functional testing our client’s product platform</p>
<p><strong>Responsibilities:</strong></p>
<ul>
<li>Architect, design and develop automation framework libraries and tools required for automation.</li>
<li>Lead the development team to follow good software development processes (Agile/SCRUM) and seek opportunity to bring in continuous improvements in software design.</li>
<li>Provide common automation infrastructure libraries for enabling automation developers to use the APIs for developing automated test suites for functional testing of our client’s products.</li>
<li>Analyze the API requirements from automation engineers in functional QA teams and write detailed design specifications.</li>
<li>Provide well documented code in C and Perl/Python along with library API documentation to ensure that automation engineers develop automated tests with high quality.</li>
<li>Develop build scripts, unit and regression tests for the framework libraries in C and Perl/Python.</li>
<li>Provide technical leadership and mentoring to other software engineers in automation development team and automation test developers.</li>
</ul>
<p><strong>Requirements:</strong></p>
<ul>
<li>Strong programming experience working with C or C++ in a cross platform environment (Linux and Windows) is required.</li>
<li>6+ years of software design and development experience in the industry developing software products.</li>
<li>Good programming experience in one of the scripting languages (Perl or Python) is required.</li>
<li>Experience developing software (multi-threaded applications, shared libraries) in Linux, Windows is required. Experience with MAC/Solaris is a plus.</li>
<li>Experience with using SWIG compiler to generate Perl and Python APIs based on C source code and open source test framework STAF is a plus.</li>
<li>Experience developing software (applications, shared libraries) in Linux/MAC/Solaris and Windows is required.</li>
<li>Excellent interaction and communication skills along with the ability to collaborate effectively.</li>
<li>Experience with multi-platform development and various IDE and debugging tools (Eclipse, GDB, Visual Studio, Perl Debugger) is required.</li>
<li>BS or MS degree in Electrical Engineering or Computer Science and minimum of 7 years of software development experience.</li>
</ul>
<p>If you are interested in this position, please send your resume to <a href="mailto:raj@mindsource.com?subject=I am interested in the Senior Automation Development position">raj@mindsource.com</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[2000 subaru impreza WRX stil GDB 4WD turbo sale]]></title>
<link>http://nagoyajapan1.wordpress.com/2009/09/21/2000-subaru-impreza-wrx-stil-gdb-4wd-turbo-sale/</link>
<pubDate>Mon, 21 Sep 2009 00:41:19 +0000</pubDate>
<dc:creator>kuroyanagi1000</dc:creator>
<guid>http://nagoyajapan1.wordpress.com/2009/09/21/2000-subaru-impreza-wrx-stil-gdb-4wd-turbo-sale/</guid>
<description><![CDATA[2000 subaru impreza WRX stil GDB 4WD turbo sale 6F 90,000km model GDB 2.0G 4 turbo. Mint condition. ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>2000 subaru impreza WRX stil GDB 4WD turbo sale 6F 90,000km model GDB 2.0G 4 turbo.</p>
<p>Mint condition.</p>
<p><img class="alignnone size-medium wp-image-1497" title="2000 WRX sti 90k" src="http://nagoyajapan1.wordpress.com/files/2009/09/2000-wrx-sti-90k.jpg?w=300" alt="2000 WRX sti 90k" width="300" height="225" /><img class="alignnone size-medium wp-image-1498" title="2000 WRX sti 90k-1" src="http://nagoyajapan1.wordpress.com/files/2009/09/2000-wrx-sti-90k-1.jpg?w=300" alt="2000 WRX sti 90k-1" width="300" height="225" /><img class="alignnone size-medium wp-image-1499" title="2000 WRX sti 90k-2" src="http://nagoyajapan1.wordpress.com/files/2009/09/2000-wrx-sti-90k-2.jpg?w=300" alt="2000 WRX sti 90k-2" width="300" height="225" /></p>
<p>USE INQUIRY FORM BELOW AT FIRST, COMUNICATION WITH EACH OTHER<br />
IS SOMETIES MESSED UP.<br />
Payment&#8211;bank wire transfer beforeshipment in Japan. Before TT.<br />
we provide you 2 IDs. Passport and Japan drivers licese.</p>
<p>________________________________________________________________</p>
<p>Kuroyanagi Shouten Ltd Japan.<br />
#510 Castle May, 3-1422 Ueda-Higashi<br />
Tenpaku, Nagoya  Japan 468-0006<br />
<a href="mailto:ks.nra30133@gmail.com">ks.nra30133@gmail.com</a><br />
fax +81 52 803 1870<br />
tel +81 90-1417-1403<br />
<a href="http://111kuroyanagi1.wordpress.com/">http://111kuroyanagi1.wordpress.com/</a><br />
<a href="http://nagoyajapan1.wordpress.com/">http://nagoyajapan1.wordpress.com/</a><br />
<a href="http://japancarexport.at.infoseek.co.jp/index.html">http://japancarexport.at.infoseek.co.jp/index.html</a><br />
<a href="http://ukcanada.hp.infoseek.co.jp/GTR.html">http://ukcanada.hp.infoseek.co.jp/GTR.html</a><br />
<a href="http://kuroyanagikazuo.hp.infoseek.co.jp/index.html">http://kuroyanagikazuo.hp.infoseek.co.jp/index.html</a><br />
))))))))))))))))))))))))))))))))))))))))))<br />
Google search tips for you<br />
$$All the time google sarch+JP+sale is easier search in Japan limits only<br />
)))))))))))))))))))))))))))))))))))))))))<br />
E-mail only please, ecause night and days get upside downs with each other</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[looking under the hood of your programs, literally!]]></title>
<link>http://gatog.wordpress.com/2009/09/19/looking-under-the-hood-of-your-programs-literally/</link>
<pubDate>Sat, 19 Sep 2009 19:34:50 +0000</pubDate>
<dc:creator>sigtermer</dc:creator>
<guid>http://gatog.wordpress.com/2009/09/19/looking-under-the-hood-of-your-programs-literally/</guid>
<description><![CDATA[it&#8217;s common knowledge that high programming languages are different from one another. some are]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>it&#8217;s common knowledge that high programming languages are different from one another. some are object-oriented while others require VMs. one way these languages differ is how &#8220;low&#8221; a particular language is to assembly. for those of you who don&#8217;t know what assembly is, i&#8217;ll put it this way: if you want fast software, you won&#8217;t find anything better then assembly. the general rule is that the closer a language is to assembly, the faster it&#8217;ll run.</p>
<p>Now, after this nice intro, i&#8217;ll get down to business. take a look at the overly simple-code bellow:</p>
<pre>
int main(){
        int i = 0;
        i+=1;
        return i;
}
</pre>
<p>you won&#8217;t find anything special other than the fact that the a preschooler could have written it. the real fun starts next: assuming you have gcc and gdb, go ahead and compile the source. then start the gdb:</p>
<pre>
        gcc code.c -o code.bin
        gdb code.bin
</pre>
<p><span style="font-size:80%;">for the other 90% (windows users) : as far as i know, gcc is included with bloodshed dev-C++, the question is whether gdb is included or not. if anyone knows anything, leave a comment.</span></p>
<p>once running gdb, simply type <code>disas main</code>, and the compiled code will be shown in assembly:</p>
<pre>
(gdb) disas main
Dump of assembler code for function main:
0x0000000000400448 :	push   %rbp
0x0000000000400449 :	mov    %rsp,%rbp
0x000000000040044c :	movl   $0x0,-0x4(%rbp)
0x0000000000400453 :	addl   $0x1,-0x4(%rbp)
0x0000000000400457 :	mov    -0x4(%rbp),%eax
0x000000000040045a :	leaveq
0x000000000040045b :	retq
End of assembler dump.
</pre>
<p>If anything, this proves that c is fast. but more importantly, it shows how the program is compiled, and therefore, can be compared with other compilable languages to reliably determine execution speed instead of relying on unreliable benchmarking tools.</p>
<p>by the way, i stumbled on this little gem by accident, and I&#8217;m glad that i did. now i have proof that C rules <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div style="text-align:right;">
<b>SIGTERMer</b>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Canine Connections]]></title>
<link>http://theguidedogblog.wordpress.com/2009/09/17/canine-connections/</link>
<pubDate>Thu, 17 Sep 2009 23:10:01 +0000</pubDate>
<dc:creator>Anna and Janda</dc:creator>
<guid>http://theguidedogblog.wordpress.com/2009/09/17/canine-connections/</guid>
<description><![CDATA[ah my post text never showed up! But I&#8217;ll have to give you all the update about Canine Connect]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>ah my post text never showed up! But I&#8217;ll have to give you all the update about Canine Connections soon!</p>
<p>And Janda is coming with me to graduation tomorrow, so if anyone else is going, we&#8217;ll both see you there!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[My Birthday Gifts]]></title>
<link>http://guidedogpuppyraiser.wordpress.com/2009/09/13/my-birthday-gifts/</link>
<pubDate>Sun, 13 Sep 2009 14:20:58 +0000</pubDate>
<dc:creator>Pilot - Guide Dog Puppy in Training</dc:creator>
<guid>http://guidedogpuppyraiser.wordpress.com/2009/09/13/my-birthday-gifts/</guid>
<description><![CDATA[My Birthday Gifts!!]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href='http://posterous.com/getfile/files.posterous.com/maryannepstein/a1sbhEXDRNZVXLcFDZArVqSVKeTYfqFth9Koa0GtAKjnsIjbuzxclJPpM6Js/elbert_pilot_2316.jpg.scaled.1000.jpg'><img src="http://posterous.com/getfile/files.posterous.com/maryannepstein/arT7AyHXh9DB5FzmDkEiEE6m2oHlzU9IPvUF8Mb2mQ2DCihD8eZUSFlTDiRE/elbert_pilot_2316.jpg.scaled.500.jpg" width="500"></a>
</p>
<div>
<p><span style="font-size:10pt;font-family:Arial;">My Birthday Gifts!!</span></p>
</p></div>


<!-- No posting client link spam, please. -->


</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Pilot and Elbert at Wells Fargo Center Stage event today]]></title>
<link>http://guidedogpuppyraiser.wordpress.com/2009/09/10/pilot-and-elbert-at-wells-fargo-center-stage-event-today/</link>
<pubDate>Thu, 10 Sep 2009 23:33:22 +0000</pubDate>
<dc:creator>Pilot - Guide Dog Puppy in Training</dc:creator>
<guid>http://guidedogpuppyraiser.wordpress.com/2009/09/10/pilot-and-elbert-at-wells-fargo-center-stage-event-today/</guid>
<description><![CDATA[Just came back from a powerful Wells Fargo Center Stage event in Long Beach. The guest speaker ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href='http://posterous.com/getfile/files.posterous.com/maryannepstein/9Hdt9w0w6YIuc8o4MuCtrDBmqBhs8VyT12uBTEFjzACGDMc8Dgg7YSnGq6b4/elbert_pilot_2315.jpg.scaled.1000.jpg'><img src="http://posterous.com/getfile/files.posterous.com/maryannepstein/Gz90ZZLJtGb1aw2599rpZkEtmUL17KGGPaNGXtv1lDAUiYjXNDUoZZEuoWkA/elbert_pilot_2315.jpg.scaled.500.jpg" width="500"></a>
</p>
<div>
<p><span style="font-size:10pt;font-family:Arial;">Just came back from a powerful Wells Fargo Center Stage event in Long Beach. The guest speaker &#8211; Tino Diaz, NAHREP Chairman.</span></p>
</p></div>


<!-- No posting client link spam, please. -->


</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Elbert, Fantine and Pilot and a trip to the beach]]></title>
<link>http://guidedogpuppyraiser.wordpress.com/2009/09/10/elbert-fantine-and-pilot-and-a-trip-to-the-beach/</link>
<pubDate>Thu, 10 Sep 2009 14:27:30 +0000</pubDate>
<dc:creator>Pilot - Guide Dog Puppy in Training</dc:creator>
<guid>http://guidedogpuppyraiser.wordpress.com/2009/09/10/elbert-fantine-and-pilot-and-a-trip-to-the-beach/</guid>
<description><![CDATA[Fantine and Elbert were friends during their puppy years. Fantine career changed and is living with ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Fantine and Elbert were friends during their puppy years. Fantine career changed and is living with her raiser family. It was great to see them all running and playing together. The tug rope has always been a favorite with more than one dog as they can all get in on the action.</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/i6rdBuBuwgg&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/i6rdBuBuwgg&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>

		<style type='text/css'>
			#gallery-4 {
				margin: auto;
			}
			#gallery-4 .gallery-item {
				float: left;
				margin-top: 10px;
				text-align: center;
				width: 33%;			}
			#gallery-4 img {
				border: 2px solid #cfcfcf;
			}
			#gallery-4 .gallery-caption {
				margin-left: 0;
			}
		</style>
		<!-- see gallery_shortcode() in wp-includes/media.php -->
		<div id='gallery-4' class='gallery galleryid-397 snap_nopreview'><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<a href='http://wordpress.com/features/autosave/auto-save-1png/' title='auto-save-1.PNG'><img width="150" height="15" src="http://wordpress.com/files/2006/10/auto-save-1.PNG?w=150" class="attachment-thumbnail" alt="" title="auto-save-1.PNG" /></a>
			</dt></dl><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<a href='http://wordpress.com/features/autosave/auto-save-2png/' title='auto-save-2.PNG'><img width="150" height="11" src="http://wordpress.com/files/2006/10/auto-save-2.PNG?w=150" class="attachment-thumbnail" alt="" title="auto-save-2.PNG" /></a>
			</dt></dl>
			<br style='clear: both;' />
		</div>

</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Guide Dog Elbert is on vacation!]]></title>
<link>http://guidedogpuppyraiser.wordpress.com/2009/09/09/guide-dog-elbert-is-on-vacation/</link>
<pubDate>Wed, 09 Sep 2009 02:59:47 +0000</pubDate>
<dc:creator>Pilot - Guide Dog Puppy in Training</dc:creator>
<guid>http://guidedogpuppyraiser.wordpress.com/2009/09/09/guide-dog-elbert-is-on-vacation/</guid>
<description><![CDATA[I am taking care of Elbert while his family is on vacation. This is Elbert&#8217;s vacation from wor]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I am taking care of Elbert while his family is on vacation. This is Elbert&#8217;s vacation from work too. Elbert is a working Guide Dog living in Los Angeles. I raised Elbert from 2 months to when he went off to &#8220;college&#8221;. He applied to become a Guide Dog and got the job. Now he lives happily with Dan and Carol in Los Angeles (they went off to Dubai and let him have his own vacation too).</p>
<p>Pilot is loving having Elbert here. Elbert on the other hand sometimes needs a break from Pilot. I remind him that he was once a puppy too. </p>

		<style type='text/css'>
			#gallery-6 {
				margin: auto;
			}
			#gallery-6 .gallery-item {
				float: left;
				margin-top: 10px;
				text-align: center;
				width: 33%;			}
			#gallery-6 img {
				border: 2px solid #cfcfcf;
			}
			#gallery-6 .gallery-caption {
				margin-left: 0;
			}
		</style>
		<!-- see gallery_shortcode() in wp-includes/media.php -->
		<div id='gallery-6' class='gallery galleryid-378 snap_nopreview'><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<a href='http://wordpress.com/features/feature14png/' title='feature14.png'><img width="150" height="81" src="http://wordpress.com/files/2006/12/feature14.png?w=150" class="attachment-thumbnail" alt="" title="feature14.png" /></a>
			</dt></dl><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<a href='http://wordpress.com/features/feature9png/' title='feature9.png'><img width="150" height="81" src="http://wordpress.com/files/2006/12/feature9.png?w=150" class="attachment-thumbnail" alt="" title="feature9.png" /></a>
			</dt></dl><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<a href='http://wordpress.com/features/a-great-blogging-community/' title='A Great Blogging Community'><img width="150" height="26" src="http://wordpress.com/files/2006/10/feature_09.jpg?w=150" class="attachment-thumbnail" alt="" title="A Great Blogging Community" /></a>
			</dt></dl><br style="clear: both" /><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<a href='http://wordpress.com/features/feature5png/' title='feature5.png'><img width="150" height="81" src="http://wordpress.com/files/2006/12/feature5.png?w=150" class="attachment-thumbnail" alt="" title="feature5.png" /></a>
			</dt></dl><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<a href='http://wordpress.com/features/it-takes-seconds-and-is-free/' title='It Takes Seconds and is Free!'><img width="150" height="26" src="http://wordpress.com/files/2006/10/feature_01.jpg?w=150" class="attachment-thumbnail" alt="" title="It Takes Seconds and is Free!" /></a>
			</dt></dl><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<a href='http://wordpress.com/features/feature11png/' title='feature11.png'><img width="150" height="81" src="http://wordpress.com/files/2006/12/feature11.png?w=150" class="attachment-thumbnail" alt="" title="feature11.png" /></a>
			</dt></dl><br style="clear: both" /><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<a href='http://wordpress.com/features/feature12png/' title='feature12.png'><img width="150" height="81" src="http://wordpress.com/files/2006/12/feature12.png?w=150" class="attachment-thumbnail" alt="" title="feature12.png" /></a>
			</dt></dl><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<a href='http://wordpress.com/features/feature13png/' title='feature13.png'><img width="150" height="81" src="http://wordpress.com/files/2006/12/feature13.png?w=150" class="attachment-thumbnail" alt="" title="feature13.png" /></a>
			</dt></dl><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<a href='http://wordpress.com/features/feature16png/' title='feature16.png'><img width="150" height="81" src="http://wordpress.com/files/2006/12/feature16.png?w=150" class="attachment-thumbnail" alt="" title="feature16.png" /></a>
			</dt></dl><br style="clear: both" /><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<a href='http://wordpress.com/features/feature1png/' title='feature1.png'><img width="150" height="81" src="http://wordpress.com/files/2006/12/feature1.png?w=150" class="attachment-thumbnail" alt="" title="feature1.png" /></a>
			</dt></dl><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<a href='http://wordpress.com/features/feature3png/' title='feature3.png'><img width="150" height="81" src="http://wordpress.com/files/2006/12/feature3.png?w=150" class="attachment-thumbnail" alt="" title="feature3.png" /></a>
			</dt></dl><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<a href='http://wordpress.com/features/feature4png/' title='feature4.png'><img width="150" height="81" src="http://wordpress.com/files/2006/12/feature4.png?w=150" class="attachment-thumbnail" alt="" title="feature4.png" /></a>
			</dt></dl><br style="clear: both" /><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<a href='http://wordpress.com/features/great-help-if-you-need-it/' title='Great Help If You Need It'><img width="150" height="26" src="http://wordpress.com/files/2006/10/feature_07.jpg?w=150" class="attachment-thumbnail" alt="" title="Great Help If You Need It" /></a>
			</dt></dl><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<a href='http://wordpress.com/features/lots-of-privacy-options-including-members-only-blogs/' title='Lots of Privacy Options, including Members-Only Blogs'><img width="150" height="26" src="http://wordpress.com/files/2006/10/feature_05.jpg?w=150" class="attachment-thumbnail" alt="" title="Lots of Privacy Options, including Members-Only Blogs" /></a>
			</dt></dl><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<a href='http://wordpress.com/features/dozens-of-gorgeous-themes/' title='Dozens of Gorgeous Themes'><img width="150" height="26" src="http://wordpress.com/files/2006/10/feature_02.jpg?w=150" class="attachment-thumbnail" alt="" title="Dozens of Gorgeous Themes" /></a>
			</dt></dl><br style="clear: both" /><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<a href='http://wordpress.com/features/feature8png/' title='feature8.png'><img width="150" height="81" src="http://wordpress.com/files/2006/12/feature8.png?w=150" class="attachment-thumbnail" alt="" title="feature8.png" /></a>
			</dt></dl><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<a href='http://wordpress.com/features/integrated-stats-system/' title='Integrated Stats System'><img width="150" height="26" src="http://wordpress.com/files/2006/10/feature_08.jpg?w=150" class="attachment-thumbnail" alt="" title="Integrated Stats System" /></a>
			</dt></dl><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<a href='http://wordpress.com/features/feature6png/' title='feature6.png'><img width="150" height="81" src="http://wordpress.com/files/2006/12/feature6.png?w=150" class="attachment-thumbnail" alt="" title="feature6.png" /></a>
			</dt></dl><br style="clear: both" /><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<a href='http://wordpress.com/features/very-fast-and-reliable-service/' title='Very Fast and Reliable Service'><img width="150" height="26" src="http://wordpress.com/files/2006/10/feature_18.jpg?w=150" class="attachment-thumbnail" alt="" title="Very Fast and Reliable Service" /></a>
			</dt></dl><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<a href='http://wordpress.com/features/feature7png/' title='feature7.png'><img width="150" height="81" src="http://wordpress.com/files/2006/12/feature7.png?w=150" class="attachment-thumbnail" alt="" title="feature7.png" /></a>
			</dt></dl><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<a href='http://wordpress.com/features/feature15png/' title='feature15.png'><img width="150" height="81" src="http://wordpress.com/files/2006/12/feature15.png?w=150" class="attachment-thumbnail" alt="" title="feature15.png" /></a>
			</dt></dl><br style="clear: both" /><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<a href='http://wordpress.com/features/import-from-blogger-typepad-livejournal-and-more/' title='Import from Blogger, TypePad, LiveJournal, and More'><img width="150" height="26" src="http://wordpress.com/files/2006/10/feature_06.jpg?w=150" class="attachment-thumbnail" alt="" title="Import from Blogger, TypePad, LiveJournal, and More" /></a>
			</dt></dl><dl class='gallery-item'>
			<dt class='gallery-icon'>
				<a href='http://wordpress.com/features/feature2png/' title='feature2.png'><img width="150" height="81" src="http://wordpress.com/files/2006/12/feature2.png?w=150" class="attachment-thumbnail" alt="" title="feature2.png" /></a>
			</dt></dl>
			<br style='clear: both;' />
		</div>

</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Abbott loved the water]]></title>
<link>http://guidedogpuppyraiser.wordpress.com/2009/09/07/abbott-loved-the-water/</link>
<pubDate>Mon, 07 Sep 2009 00:06:52 +0000</pubDate>
<dc:creator>Pilot - Guide Dog Puppy in Training</dc:creator>
<guid>http://guidedogpuppyraiser.wordpress.com/2009/09/07/abbott-loved-the-water/</guid>
<description><![CDATA[]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/5BwkXIVJ-I0&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/5BwkXIVJ-I0&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
