<?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 on: How to Install WordPress on your PC</title>
	<atom:link href="http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/how-to-install-wordpress-on-your-pc/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/how-to-install-wordpress-on-your-pc/</link>
	<description>Web development , php , ajax , symfony, framework, zend</description>
	<lastBuildDate>Thu, 23 Jun 2011 05:55:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Tiffany R</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/how-to-install-wordpress-on-your-pc/comment-page-1/#comment-85550</link>
		<dc:creator>Tiffany R</dc:creator>
		<pubDate>Sat, 24 Apr 2010 00:16:13 +0000</pubDate>
		<guid isPermaLink="false">#comment-85550</guid>
		<description>see both r operating systems but both r different things with different features and working style 
the windows operating system is the easiest operating system designed ever and it is very easy and convenient to use for any one 
while on the other side the unix is a new operating system it has it different ways to work and it is not commonly used world wide like the windows os is used 
and any one can not simply work on the unix 
next is that most of the softwares r made according to windows os and to perform with it 
so i will say that the windows is the bestdude
good luck</description>
		<content:encoded><![CDATA[<p>see both r operating systems but both r different things with different features and working style<br />
the windows operating system is the easiest operating system designed ever and it is very easy and convenient to use for any one<br />
while on the other side the unix is a new operating system it has it different ways to work and it is not commonly used world wide like the windows os is used<br />
and any one can not simply work on the unix<br />
next is that most of the softwares r made according to windows os and to perform with it<br />
so i will say that the windows is the bestdude<br />
good luck</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: viewcharts</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/how-to-install-wordpress-on-your-pc/comment-page-1/#comment-78499</link>
		<dc:creator>viewcharts</dc:creator>
		<pubDate>Sun, 28 Mar 2010 18:53:04 +0000</pubDate>
		<guid isPermaLink="false">#comment-78499</guid>
		<description>Hold down Alt and press Enter</description>
		<content:encoded><![CDATA[<p>Hold down Alt and press Enter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lisa A</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/how-to-install-wordpress-on-your-pc/comment-page-1/#comment-77954</link>
		<dc:creator>Lisa A</dc:creator>
		<pubDate>Sun, 28 Mar 2010 12:11:48 +0000</pubDate>
		<guid isPermaLink="false">#comment-77954</guid>
		<description>Yeah, if you don&#039;t mind using the win32 API you can store them using resource files and then use LoadBitmap with the MAKEINTRESOURCE macro to load the bitmaps from your resource file.</description>
		<content:encoded><![CDATA[<p>Yeah, if you don&#039;t mind using the win32 API you can store them using resource files and then use LoadBitmap with the MAKEINTRESOURCE macro to load the bitmaps from your resource file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alea</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/how-to-install-wordpress-on-your-pc/comment-page-1/#comment-76569</link>
		<dc:creator>alea</dc:creator>
		<pubDate>Sat, 27 Mar 2010 18:03:28 +0000</pubDate>
		<guid isPermaLink="false">#comment-76569</guid>
		<description>everything i&#039;ve tried to go to has worked for me. i&#039;ve never seen this.</description>
		<content:encoded><![CDATA[<p>everything i&#039;ve tried to go to has worked for me. i&#039;ve never seen this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hal 9000</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/how-to-install-wordpress-on-your-pc/comment-page-1/#comment-70504</link>
		<dc:creator>Hal 9000</dc:creator>
		<pubDate>Wed, 24 Mar 2010 17:52:20 +0000</pubDate>
		<guid isPermaLink="false">#comment-70504</guid>
		<description>You could embed the file to your project. To add the file to your project you right click the project name in the solution explorer --&gt; Add --&gt; Existing Item. Then choose the file you want to add. Once it&#039;s in the project click on the file and in the properties change the &quot;Build Action&quot; property to &quot;Embedded Resource&quot; 

You can then access it with the following code:

        Dim m As Stream = (System.Reflection.Assembly.GetExecutingAssembly. GetManifestResourceStream( &quot;myProject.MyFile.exe&quot;))
        Dim b As New BinaryReader(m)
        Dim bytes() As Byte = b.ReadBytes(m.Length)

        Dim oFileStream As System.IO.FileStream
        oFileStream = New System.IO.FileStream(&quot;C:myFile.exe&quot;, System.IO.FileMode.Create)
        oFileStream.Write(bytes, 0, bytes.Length)
        oFileStream.Close()

This will take your embedded file and save it to the C drive. You obviously need to change &quot;myProject&quot; to your project name and &quot;myFile.exe&quot; to the name of your file (case sensitive)


Have fun</description>
		<content:encoded><![CDATA[<p>You could embed the file to your project. To add the file to your project you right click the project name in the solution explorer &#8211;&gt; Add &#8211;&gt; Existing Item. Then choose the file you want to add. Once it&#039;s in the project click on the file and in the properties change the &quot;Build Action&quot; property to &quot;Embedded Resource&quot; </p>
<p>You can then access it with the following code:</p>
<p>        Dim m As Stream = (System.Reflection.Assembly.GetExecutingAssembly. GetManifestResourceStream( &quot;myProject.MyFile.exe&quot;))<br />
        Dim b As New BinaryReader(m)<br />
        Dim bytes() As Byte = b.ReadBytes(m.Length)</p>
<p>        Dim oFileStream As System.IO.FileStream<br />
        oFileStream = New System.IO.FileStream(&quot;C:myFile.exe&quot;, System.IO.FileMode.Create)<br />
        oFileStream.Write(bytes, 0, bytes.Length)<br />
        oFileStream.Close()</p>
<p>This will take your embedded file and save it to the C drive. You obviously need to change &quot;myProject&quot; to your project name and &quot;myFile.exe&quot; to the name of your file (case sensitive)</p>
<p>Have fun</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: qbdeal1</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/how-to-install-wordpress-on-your-pc/comment-page-1/#comment-56420</link>
		<dc:creator>qbdeal1</dc:creator>
		<pubDate>Wed, 17 Mar 2010 03:09:38 +0000</pubDate>
		<guid isPermaLink="false">#comment-56420</guid>
		<description>MCafee sucks, why are you using it? use nod32</description>
		<content:encoded><![CDATA[<p>MCafee sucks, why are you using it? use nod32</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: maniacmartinuk</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/how-to-install-wordpress-on-your-pc/comment-page-1/#comment-51937</link>
		<dc:creator>maniacmartinuk</dc:creator>
		<pubDate>Mon, 15 Mar 2010 00:46:39 +0000</pubDate>
		<guid isPermaLink="false">#comment-51937</guid>
		<description>Woah! Here goes.

1.ACPI is a power management protocol

2. Remove
B) Telnet client as its insecure (sends in plaintext) and superseded by SSH (explain why though)
and D) Apache server

3. B) iptables

4. B) Startup commands

5.  C) ASPI

6. Dunno

7. C) Its the only verbose (v) one that doesnt extract (x)

8. C) Full duplex

9. A, C , D (not RAM)

10. B) uptime &gt; uptimestats.txt

11. B)Translates between names and IP addresses

12. C)traceroute

13. No idea, I don&#039;t use vi

14. No idea

15. B &amp; C

16. C) top

17. D) tail

18. D)hdparm

19. Not sure, try C &amp; D

20. B)rpm -i

21. B)Both allow free distribution of software

22. A)A hard disk has been added to the computer

23. B)fsck

24. Dunno, maby A

25. Question is ambiguous. There needs to be a / partition, so say B)</description>
		<content:encoded><![CDATA[<p>Woah! Here goes.</p>
<p>1.ACPI is a power management protocol</p>
<p>2. Remove<br />
B) Telnet client as its insecure (sends in plaintext) and superseded by SSH (explain why though)<br />
and D) Apache server</p>
<p>3. B) iptables</p>
<p>4. B) Startup commands</p>
<p>5.  C) ASPI</p>
<p>6. Dunno</p>
<p>7. C) Its the only verbose (v) one that doesnt extract (x)</p>
<p>8. C) Full duplex</p>
<p>9. A, C , D (not RAM)</p>
<p>10. B) uptime &gt; uptimestats.txt</p>
<p>11. B)Translates between names and IP addresses</p>
<p>12. C)traceroute</p>
<p>13. No idea, I don&#039;t use vi</p>
<p>14. No idea</p>
<p>15. B &amp; C</p>
<p>16. C) top</p>
<p>17. D) tail</p>
<p>18. D)hdparm</p>
<p>19. Not sure, try C &amp; D</p>
<p>20. B)rpm -i</p>
<p>21. B)Both allow free distribution of software</p>
<p>22. A)A hard disk has been added to the computer</p>
<p>23. B)fsck</p>
<p>24. Dunno, maby A</p>
<p>25. Question is ambiguous. There needs to be a / partition, so say B)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: maniacmartinuk</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/how-to-install-wordpress-on-your-pc/comment-page-1/#comment-34903</link>
		<dc:creator>maniacmartinuk</dc:creator>
		<pubDate>Tue, 09 Feb 2010 10:38:14 +0000</pubDate>
		<guid isPermaLink="false">#comment-34903</guid>
		<description>Woah! Here goes.

1.ACPI is a power management protocol

2. Remove
B) Telnet client as its insecure (sends in plaintext) and superseded by SSH (explain why though)
and D) Apache server

3. B) iptables

4. B) Startup commands

5.  C) ASPI

6. Dunno

7. C) Its the only verbose (v) one that doesnt extract (x)

8. C) Full duplex

9. A, C , D (not RAM)

10. B) uptime &gt; uptimestats.txt

11. B)Translates between names and IP addresses

12. C)traceroute

13. No idea, I don&#039;t use vi

14. No idea

15. B &amp; C

16. C) top

17. D) tail

18. D)hdparm

19. Not sure, try C &amp; D

20. B)rpm -i

21. B)Both allow free distribution of software

22. A)A hard disk has been added to the computer

23. B)fsck

24. Dunno, maby A

25. Question is ambiguous. There needs to be a / partition, so say B)</description>
		<content:encoded><![CDATA[<p>Woah! Here goes.</p>
<p>1.ACPI is a power management protocol</p>
<p>2. Remove<br />
B) Telnet client as its insecure (sends in plaintext) and superseded by SSH (explain why though)<br />
and D) Apache server</p>
<p>3. B) iptables</p>
<p>4. B) Startup commands</p>
<p>5.  C) ASPI</p>
<p>6. Dunno</p>
<p>7. C) Its the only verbose (v) one that doesnt extract (x)</p>
<p>8. C) Full duplex</p>
<p>9. A, C , D (not RAM)</p>
<p>10. B) uptime &gt; uptimestats.txt</p>
<p>11. B)Translates between names and IP addresses</p>
<p>12. C)traceroute</p>
<p>13. No idea, I don&#039;t use vi</p>
<p>14. No idea</p>
<p>15. B &amp; C</p>
<p>16. C) top</p>
<p>17. D) tail</p>
<p>18. D)hdparm</p>
<p>19. Not sure, try C &amp; D</p>
<p>20. B)rpm -i</p>
<p>21. B)Both allow free distribution of software</p>
<p>22. A)A hard disk has been added to the computer</p>
<p>23. B)fsck</p>
<p>24. Dunno, maby A</p>
<p>25. Question is ambiguous. There needs to be a / partition, so say B)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

