<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Andrew Bolster</title>
	<atom:link href="http://www.andrewbolster.info/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.andrewbolster.info</link>
	<description>Jack of all trades; Master of none</description>
	<lastBuildDate>Thu, 25 Apr 2013 14:13:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on Bus Services, a simple change for @Translink_NI, a big help for @NISP_Connect and @ECIT_QUB by Chris Murphy (@ChrisMurphy201)</title>
		<link>http://www.andrewbolster.info/2013/02/bus-services-a-simple-change-for-translink_ni-a-big-help-for-nisp_connect-and-ecit_qub/comment-page-1/#comment-31455</link>
		<dc:creator>Chris Murphy (@ChrisMurphy201)</dc:creator>
		<pubDate>Thu, 25 Apr 2013 14:13:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewbolster.info/blog/?p=867#comment-31455</guid>
		<description><![CDATA[This doesn&#039;t solve your bus intransigence problem, but might side-step it; might I invite you to join the two-wheeled revolution, even for a short-term try-out?

[WORDPRESS HASHCASH] The poster sent us &#039;0 which is not a hashcash value.]]></description>
		<content:encoded><![CDATA[<p>This doesn&#8217;t solve your bus intransigence problem, but might side-step it; might I invite you to join the two-wheeled revolution, even for a short-term try-out?</p>
<p>[WORDPRESS HASHCASH] The poster sent us &#8217;0 which is not a hashcash value.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing and Configuring NS-3 on a Ubuntu System by Bolster</title>
		<link>http://www.andrewbolster.info/2010/03/installing-and-configuring-ns-3-on-a-ubuntu-system/comment-page-1/#comment-31250</link>
		<dc:creator>Bolster</dc:creator>
		<pubDate>Mon, 21 May 2012 22:28:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewbolster.info/blog/?p=266#comment-31250</guid>
		<description><![CDATA[Pardon, mon francais est une peu merde! 
Quel est le problem avec mon instructions? J&#039;avais installe ns-3 sous 12.04 sans  les problemes.]]></description>
		<content:encoded><![CDATA[<p>Pardon, mon francais est une peu merde!<br />
Quel est le problem avec mon instructions? J&#8217;avais installe ns-3 sous 12.04 sans  les problemes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing and Configuring NS-3 on a Ubuntu System by djamel</title>
		<link>http://www.andrewbolster.info/2010/03/installing-and-configuring-ns-3-on-a-ubuntu-system/comment-page-1/#comment-31248</link>
		<dc:creator>djamel</dc:creator>
		<pubDate>Mon, 21 May 2012 20:41:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewbolster.info/blog/?p=266#comment-31248</guid>
		<description><![CDATA[Bonjour
je veux installer ns3 en sous Ubuntu version 11.04
quelle sont les commandes de l&#039;insstallez
merci]]></description>
		<content:encoded><![CDATA[<p>Bonjour<br />
je veux installer ns3 en sous Ubuntu version 11.04<br />
quelle sont les commandes de l&#8217;insstallez<br />
merci</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LU Decomposition in C (and under CUDA) by gamar</title>
		<link>http://www.andrewbolster.info/2011/04/lu-decomposition-in-c-and-under-cuda/comment-page-1/#comment-31231</link>
		<dc:creator>gamar</dc:creator>
		<pubDate>Sun, 22 Apr 2012 02:59:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewbolster.info/blog/?p=597#comment-31231</guid>
		<description><![CDATA[Hi I really like what you did but have a question isn&#039;t this code 
doing A*B = X
I run your code after I set my virabile and got something not understand it.

float a[]={4,-2,1,-3,-1,4,1,-1,3};
const float b[]={0,1,2};

Here is the result :
0:x:A&#124;B
-1.000:4.0,-2.0,1.0,&#124;0.000
-1.000:-3.0,-1.0,4.0,&#124;1.000
-1.000:1.0,-1.0,3.0,&#124;2.000

TPB:1,BPG:1
Ran solve
time: 0.00015488 s

0:x:A//from where this number coming??!
0.500:4.0,1.0,-2.0,
1.500:-0.8,4.8,-2.5,
1.000:0.2,0.6,0.9,
....
I guess I do understand this part but the rest !!no
A =

     4    -2     1
    -3    -1     4
     1    -1     3

B= [0 1 2]

B =

     0     1     2

 X=A\B&#039;


X =

    0.5000
    1.5000
    1.0000


Thanks for sharing]]></description>
		<content:encoded><![CDATA[<p>Hi I really like what you did but have a question isn&#8217;t this code<br />
doing A*B = X<br />
I run your code after I set my virabile and got something not understand it.</p>
<p>float a[]={4,-2,1,-3,-1,4,1,-1,3};<br />
const float b[]={0,1,2};</p>
<p>Here is the result :<br />
0:x:A|B<br />
-1.000:4.0,-2.0,1.0,|0.000<br />
-1.000:-3.0,-1.0,4.0,|1.000<br />
-1.000:1.0,-1.0,3.0,|2.000</p>
<p>TPB:1,BPG:1<br />
Ran solve<br />
time: 0.00015488 s</p>
<p>0:x:A//from where this number coming??!<br />
0.500:4.0,1.0,-2.0,<br />
1.500:-0.8,4.8,-2.5,<br />
1.000:0.2,0.6,0.9,<br />
&#8230;.<br />
I guess I do understand this part but the rest !!no<br />
A =</p>
<p>     4    -2     1<br />
    -3    -1     4<br />
     1    -1     3</p>
<p>B= [0 1 2]</p>
<p>B =</p>
<p>     0     1     2</p>
<p> X=A\B&#8217;</p>
<p>X =</p>
<p>    0.5000<br />
    1.5000<br />
    1.0000</p>
<p>Thanks for sharing</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Python + Oauth2 for Twitter Status Updates by Python + irclib for IRC Status Updates &#124; Of Penguins &#38; Coffee</title>
		<link>http://www.andrewbolster.info/2012/04/python-oauth2-for-twitter-status-updates/comment-page-1/#comment-31200</link>
		<dc:creator>Python + irclib for IRC Status Updates &#124; Of Penguins &#38; Coffee</dc:creator>
		<pubDate>Tue, 10 Apr 2012 17:34:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewbolster.info/blog/?p=754#comment-31200</guid>
		<description><![CDATA[[...] as by Twitter post, but for [...]]]></description>
		<content:encoded><![CDATA[<p>[...] as by Twitter post, but for [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Replace Unity with AWN and Gnome-Do by PG</title>
		<link>http://www.andrewbolster.info/2011/06/replace-unity-with-awn-and-gnome-do/comment-page-1/#comment-31066</link>
		<dc:creator>PG</dc:creator>
		<pubDate>Sun, 22 Jan 2012 18:27:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewbolster.info/blog/?p=630#comment-31066</guid>
		<description><![CDATA[I&#039;ve been experimenting. I installed Unity in Linux Mint 12. Then:

sudo apt-get remove unity unity-asset-pool unity-place-applications

(You have an extra &quot;unity-place-applications&quot; in your command line.)

I installed synapse instead of gnome-do.

However, as I suspected, doing so also removed the &quot;Ubuntu&quot; session. This obviously means I couldn&#039;t log back into that session to enjoy AWN. Is there a dconf file that needs to be edited? Your suggestion?]]></description>
		<content:encoded><![CDATA[<p>I&#8217;ve been experimenting. I installed Unity in Linux Mint 12. Then:</p>
<p>sudo apt-get remove unity unity-asset-pool unity-place-applications</p>
<p>(You have an extra &#8220;unity-place-applications&#8221; in your command line.)</p>
<p>I installed synapse instead of gnome-do.</p>
<p>However, as I suspected, doing so also removed the &#8220;Ubuntu&#8221; session. This obviously means I couldn&#8217;t log back into that session to enjoy AWN. Is there a dconf file that needs to be edited? Your suggestion?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LU Decomposition in C (and under CUDA) by Bolster</title>
		<link>http://www.andrewbolster.info/2011/04/lu-decomposition-in-c-and-under-cuda/comment-page-1/#comment-30650</link>
		<dc:creator>Bolster</dc:creator>
		<pubDate>Fri, 25 Nov 2011 12:27:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewbolster.info/blog/?p=597#comment-30650</guid>
		<description><![CDATA[AFAI Can remember, the point of this section is just a simple vector transposition; Q containing the mapping of x-&gt;x (in this case), so for the final matrix x, initial matrix xi,  and transposition matrix Q, x[i] should contain the value of xi[where  Q[i] points to ]. 

May be wrong, but its been a long day already! And it gave correct results the last time I tested it.]]></description>
		<content:encoded><![CDATA[<p>AFAI Can remember, the point of this section is just a simple vector transposition; Q containing the mapping of x->x (in this case), so for the final matrix x, initial matrix xi,  and transposition matrix Q, x[i] should contain the value of xi[where  Q[i] points to ]. </p>
<p>May be wrong, but its been a long day already! And it gave correct results the last time I tested it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LU Decomposition in C (and under CUDA) by frank</title>
		<link>http://www.andrewbolster.info/2011/04/lu-decomposition-in-c-and-under-cuda/comment-page-1/#comment-30646</link>
		<dc:creator>frank</dc:creator>
		<pubDate>Thu, 24 Nov 2011 01:58:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewbolster.info/blog/?p=597#comment-30646</guid>
		<description><![CDATA[hi, I think the last step to solve x=Qz should be x[q[i]]=xtmp[i];]]></description>
		<content:encoded><![CDATA[<p>hi, I think the last step to solve x=Qz should be x[q[i]]=xtmp[i];</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why Belfast Needs a Hackerspace by The Plan: Confessions &#171; QUESTS</title>
		<link>http://www.andrewbolster.info/2011/04/why-belfast-needs-a-hackerspace/comment-page-1/#comment-30559</link>
		<dc:creator>The Plan: Confessions &#171; QUESTS</dc:creator>
		<pubDate>Mon, 24 Oct 2011 12:58:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewbolster.info/blog/?p=589#comment-30559</guid>
		<description><![CDATA[[...] As for long-term plans for development, I would like to see QUESTS become a stable society with interesting events with active membership, and eventually build the community both inside and outside of QUB, with an aim to acquiring a space in Belfast where like-minded people can fiddle, work, and learn together, and hopefully spin out some really innovative start-ups. (For more rants on this idea, see my blog). [...]]]></description>
		<content:encoded><![CDATA[<p>[...] As for long-term plans for development, I would like to see QUESTS become a stable society with interesting events with active membership, and eventually build the community both inside and outside of QUB, with an aim to acquiring a space in Belfast where like-minded people can fiddle, work, and learn together, and hopefully spin out some really innovative start-ups. (For more rants on this idea, see my blog). [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Accidentally Proper Kindle PDF Document Conversion by Bolster</title>
		<link>http://www.andrewbolster.info/2011/05/accidentally-proper-kindle-pdf-document-conversion/comment-page-1/#comment-30396</link>
		<dc:creator>Bolster</dc:creator>
		<pubDate>Mon, 17 Oct 2011 10:35:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewbolster.info/blog/?p=610#comment-30396</guid>
		<description><![CDATA[*Like*

Thanks Tanya]]></description>
		<content:encoded><![CDATA[<p>*Like*</p>
<p>Thanks Tanya</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Accidentally Proper Kindle PDF Document Conversion by Tanya</title>
		<link>http://www.andrewbolster.info/2011/05/accidentally-proper-kindle-pdf-document-conversion/comment-page-1/#comment-29522</link>
		<dc:creator>Tanya</dc:creator>
		<pubDate>Tue, 27 Sep 2011 13:51:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewbolster.info/blog/?p=610#comment-29522</guid>
		<description><![CDATA[Hi, 

thanks for the idea. I have installed the sendemail software and after the tweaks mentioned by ubuntudroid, it reallyworked. So thanks to you both.

Anyway I decided to check WHY it is working. It turns out that this feature is actually already documented by Amazon: 

Option to Convert PDF Files to Kindle Format
If you prefer to have your personal PDF documents converted to the Kindle format so you can take advantage of Kindle functionality such as variable font size, annotation, Text-to-Speech, etc., type &quot;Convert&quot; in the subject of the e-mail when you submit your personal document to your @kindle.com address.
cited from here: http://www.amazon.com/gp/help/customer/display.html?nodeId=200375630. 


So to wrap it up: you do not need the complicated setup - neither additionally installed software, nor your password in clear text on the file system. It is enough to just send a mail with attached PDF and subject &quot;Convert&quot;. I already tested it and it works like a charm :) Hope this helps someone else. 

Best regards, 
Tanya]]></description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>thanks for the idea. I have installed the sendemail software and after the tweaks mentioned by ubuntudroid, it reallyworked. So thanks to you both.</p>
<p>Anyway I decided to check WHY it is working. It turns out that this feature is actually already documented by Amazon: </p>
<p>Option to Convert PDF Files to Kindle Format<br />
If you prefer to have your personal PDF documents converted to the Kindle format so you can take advantage of Kindle functionality such as variable font size, annotation, Text-to-Speech, etc., type &#8220;Convert&#8221; in the subject of the e-mail when you submit your personal document to your @kindle.com address.<br />
cited from here: <a href="http://www.amazon.com/gp/help/customer/display.html?nodeId=200375630" rel="nofollow">http://www.amazon.com/gp/help/customer/display.html?nodeId=200375630</a>. </p>
<p>So to wrap it up: you do not need the complicated setup &#8211; neither additionally installed software, nor your password in clear text on the file system. It is enough to just send a mail with attached PDF and subject &#8220;Convert&#8221;. I already tested it and it works like a charm <img src='http://www.andrewbolster.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Hope this helps someone else. </p>
<p>Best regards,<br />
Tanya</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Replace Unity with AWN and Gnome-Do by OttifantSir</title>
		<link>http://www.andrewbolster.info/2011/06/replace-unity-with-awn-and-gnome-do/comment-page-1/#comment-29366</link>
		<dc:creator>OttifantSir</dc:creator>
		<pubDate>Fri, 23 Sep 2011 21:05:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewbolster.info/blog/?p=630#comment-29366</guid>
		<description><![CDATA[Thanks for pointing out Tilda to me. It seems like a great program, and one I hadn&#039;t tried before.

It&#039;s also good to see someone else who seems to understand the concept of minimalism, which I feel Unity is not. It&#039;s neither unobtrusive or user-friendly in my opinion. AWN is great, and I&#039;ve used it myself for a very long time. That is, until I finally understood the power of DO a few weeks ago. Who knew the Tab-key could be so useful? (That&#039;s really what&#039;s missing from EVERY guide on DO I&#039;ve seen: Write something, use Tab if you don&#039;t like the action presented).

After trying to get it for a very long time, I finally have my perfect setup: After login you see a stunning picture, nothing else. With DO I have removed AWN from startup, replaced a very few of the functionalities of a panel or Unity with Screenlets (InfoPanel is a great one!), otherwise I have assigned everything to keybindings. Still have AWN for when I have visitors over. Can hardly expect them to memorize 100+ keybindings to use a computer for a little while;-P

I don&#039;t know if my ONLY problem with removing Unity is the packages I removed (EVERYTHING saying unity) or my nVidia graphics, but I had a problem of showing videos in fullscreen with VLC where the titlebar wouldn&#039;t render, instead showing the window behind VLC. This has been solved by turning off Window Decorations in CompizConfig Settings Manager. I now love my Ubuntu so much! Earlier I had a problem with cramps in my back and neck, pain in my mouse-arm and other common problems to computer users. Now I have gotten rid of all of them, and I&#039;ve got a BEAUTIFUL and QUICK system! Only way I now know of that can make my system quicker (apart from an expensive upgrade of EVERY hardware component) is telepathic control.]]></description>
		<content:encoded><![CDATA[<p>Thanks for pointing out Tilda to me. It seems like a great program, and one I hadn&#8217;t tried before.</p>
<p>It&#8217;s also good to see someone else who seems to understand the concept of minimalism, which I feel Unity is not. It&#8217;s neither unobtrusive or user-friendly in my opinion. AWN is great, and I&#8217;ve used it myself for a very long time. That is, until I finally understood the power of DO a few weeks ago. Who knew the Tab-key could be so useful? (That&#8217;s really what&#8217;s missing from EVERY guide on DO I&#8217;ve seen: Write something, use Tab if you don&#8217;t like the action presented).</p>
<p>After trying to get it for a very long time, I finally have my perfect setup: After login you see a stunning picture, nothing else. With DO I have removed AWN from startup, replaced a very few of the functionalities of a panel or Unity with Screenlets (InfoPanel is a great one!), otherwise I have assigned everything to keybindings. Still have AWN for when I have visitors over. Can hardly expect them to memorize 100+ keybindings to use a computer for a little while;-P</p>
<p>I don&#8217;t know if my ONLY problem with removing Unity is the packages I removed (EVERYTHING saying unity) or my nVidia graphics, but I had a problem of showing videos in fullscreen with VLC where the titlebar wouldn&#8217;t render, instead showing the window behind VLC. This has been solved by turning off Window Decorations in CompizConfig Settings Manager. I now love my Ubuntu so much! Earlier I had a problem with cramps in my back and neck, pain in my mouse-arm and other common problems to computer users. Now I have gotten rid of all of them, and I&#8217;ve got a BEAUTIFUL and QUICK system! Only way I now know of that can make my system quicker (apart from an expensive upgrade of EVERY hardware component) is telepathic control.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Customised User Directories in Ubuntu by Anthony</title>
		<link>http://www.andrewbolster.info/2010/06/customised-user-directories-in-ubuntu/comment-page-1/#comment-29222</link>
		<dc:creator>Anthony</dc:creator>
		<pubDate>Sun, 18 Sep 2011 22:59:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewbolster.info/blog/?p=431#comment-29222</guid>
		<description><![CDATA[This is a pretty cool idea, at first I used it to sync my desktop(!), documents, and pictures between my laptop and desktop.  One thing that I didn&#039;t like was that it left the Home folder empty of all those folders (along with the Nautilus sidebar).  What I instead ended up doing is using the original user-dirs.dirs file settings and deleting the folders in /home/ and creating soft symbolic links to take you to the Dropbox folders (ex. &#039;ln -s ~/Dropbox/Desktop/ ~/Desktop&#039;).  This way I still have my /home/ folder icons but am able to sync my folders with Dropbox!]]></description>
		<content:encoded><![CDATA[<p>This is a pretty cool idea, at first I used it to sync my desktop(!), documents, and pictures between my laptop and desktop.  One thing that I didn&#8217;t like was that it left the Home folder empty of all those folders (along with the Nautilus sidebar).  What I instead ended up doing is using the original user-dirs.dirs file settings and deleting the folders in /home/ and creating soft symbolic links to take you to the Dropbox folders (ex. &#8216;ln -s ~/Dropbox/Desktop/ ~/Desktop&#8217;).  This way I still have my /home/ folder icons but am able to sync my folders with Dropbox!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Citrix Web Client with Ubuntu by Diana Lili Meszaros</title>
		<link>http://www.andrewbolster.info/2010/07/citrix-web-client-with-ubuntu/comment-page-1/#comment-28637</link>
		<dc:creator>Diana Lili Meszaros</dc:creator>
		<pubDate>Wed, 31 Aug 2011 07:17:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewbolster.info/blog/?p=480#comment-28637</guid>
		<description><![CDATA[Thank you very much for posting this!]]></description>
		<content:encoded><![CDATA[<p>Thank you very much for posting this!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Intel 4965: Poor wireless performance under Ubuntu by GD Post</title>
		<link>http://www.andrewbolster.info/2010/07/intel-4965-poor-wireless-performance-under-ubuntu/comment-page-1/#comment-27987</link>
		<dc:creator>GD Post</dc:creator>
		<pubDate>Tue, 16 Aug 2011 03:06:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewbolster.info/blog/?p=465#comment-27987</guid>
		<description><![CDATA[I have been to nearly every site out there for this issue.  Just so everyone knows my issue, here it is:

Desktop connecting via wireless card using ubuntu 10.10.  Uninstalled and purged network manager completely.  Restarted wicd.  Still got the BAD PASSWORD message.  Tried updating the 10.10 kernel.  No good.  Issued following command:

sudo apt-get install linux-backports-module-wireless-maverick-generic

Restarted.  A little slow, but it finally works.

THANKS A METRIC TON!

Hannibal]]></description>
		<content:encoded><![CDATA[<p>I have been to nearly every site out there for this issue.  Just so everyone knows my issue, here it is:</p>
<p>Desktop connecting via wireless card using ubuntu 10.10.  Uninstalled and purged network manager completely.  Restarted wicd.  Still got the BAD PASSWORD message.  Tried updating the 10.10 kernel.  No good.  Issued following command:</p>
<p>sudo apt-get install linux-backports-module-wireless-maverick-generic</p>
<p>Restarted.  A little slow, but it finally works.</p>
<p>THANKS A METRIC TON!</p>
<p>Hannibal</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Road to Coreboot, Part the First: Introduction by Marc</title>
		<link>http://www.andrewbolster.info/2011/07/the-road-to-coreboot-part-the-first-introduction/comment-page-1/#comment-27262</link>
		<dc:creator>Marc</dc:creator>
		<pubDate>Fri, 29 Jul 2011 17:44:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewbolster.info/blog/?p=647#comment-27262</guid>
		<description><![CDATA[Thanks for the coreboot post.  It is great to see new developers getting involved with coreboot. This board would be a great addition. Keep us posted!]]></description>
		<content:encoded><![CDATA[<p>Thanks for the coreboot post.  It is great to see new developers getting involved with coreboot. This board would be a great addition. Keep us posted!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LU Decomposition in C (and under CUDA) by Bolster</title>
		<link>http://www.andrewbolster.info/2011/04/lu-decomposition-in-c-and-under-cuda/comment-page-1/#comment-27187</link>
		<dc:creator>Bolster</dc:creator>
		<pubDate>Wed, 27 Jul 2011 13:54:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewbolster.info/blog/?p=597#comment-27187</guid>
		<description><![CDATA[Nope, fabs (and fabsf) have been in the device API since at least CUDA 2.0

As in all things CUDA related, consult the &lt;a href=&quot;http://developer.download.nvidia.com/compute/cuda/4_0_rc2/toolkit/docs/CUDA_C_Programming_Guide.pdf&quot; rel=&quot;nofollow&quot;&gt;guide&lt;/a&gt;]]></description>
		<content:encoded><![CDATA[<p>Nope, fabs (and fabsf) have been in the device API since at least CUDA 2.0</p>
<p>As in all things CUDA related, consult the <a href="http://developer.download.nvidia.com/compute/cuda/4_0_rc2/toolkit/docs/CUDA_C_Programming_Guide.pdf" rel="nofollow">guide</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Accidentally Proper Kindle PDF Document Conversion by Bolster</title>
		<link>http://www.andrewbolster.info/2011/05/accidentally-proper-kindle-pdf-document-conversion/comment-page-1/#comment-27186</link>
		<dc:creator>Bolster</dc:creator>
		<pubDate>Wed, 27 Jul 2011 13:47:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewbolster.info/blog/?p=610#comment-27186</guid>
		<description><![CDATA[This is a Linux/Mac solution, I am not clear on the Windows side of whether this would work, as it was discovered by accident, and we don&#039;t know what exactly is &#039;triggering&#039; the conversion behaviour. Its been suggested that simply having &#039;Convert&#039; as the subject would work. Experiment and report back!

Of course, if all else fails you could look at Cygwin or Ubuntu. (Google is your friend)]]></description>
		<content:encoded><![CDATA[<p>This is a Linux/Mac solution, I am not clear on the Windows side of whether this would work, as it was discovered by accident, and we don&#8217;t know what exactly is &#8216;triggering&#8217; the conversion behaviour. Its been suggested that simply having &#8216;Convert&#8217; as the subject would work. Experiment and report back!</p>
<p>Of course, if all else fails you could look at Cygwin or Ubuntu. (Google is your friend)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LU Decomposition in C (and under CUDA) by Daniel</title>
		<link>http://www.andrewbolster.info/2011/04/lu-decomposition-in-c-and-under-cuda/comment-page-1/#comment-27185</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Wed, 27 Jul 2011 12:51:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewbolster.info/blog/?p=597#comment-27185</guid>
		<description><![CDATA[Hi,
how is that in your gpu code you use fabs function, 
isn&#039;t that a host call ?]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
how is that in your gpu code you use fabs function,<br />
isn&#8217;t that a host call ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Citrix Web Client with Ubuntu by Bolster</title>
		<link>http://www.andrewbolster.info/2010/07/citrix-web-client-with-ubuntu/comment-page-1/#comment-27184</link>
		<dc:creator>Bolster</dc:creator>
		<pubDate>Wed, 27 Jul 2011 12:32:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewbolster.info/blog/?p=480#comment-27184</guid>
		<description><![CDATA[You&#039;re welcome! If everyone just posts the solutions to the problems they come across, it makes it easier for everyone :D]]></description>
		<content:encoded><![CDATA[<p>You&#8217;re welcome! If everyone just posts the solutions to the problems they come across, it makes it easier for everyone <img src='http://www.andrewbolster.info/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using apc
Object Caching 907/1094 objects using apc

 Served from: www.andrewbolster.info @ 2013-06-19 11:36:25 by W3 Total Cache -->