<?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>boost &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/boost/</link>
	<description>Feed of posts on WordPress.com tagged "boost"</description>
	<pubDate>Fri, 25 Jul 2008 15:43:55 +0000</pubDate>

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

<item>
<title><![CDATA[Be careful who you send your MMS to]]></title>
<link>http://bizanywhere.wordpress.com/?p=64</link>
<pubDate>Tue, 22 Jul 2008 17:59:36 +0000</pubDate>
<dc:creator>dvdand</dc:creator>
<guid>http://bizanywhere.wordpress.com/?p=64</guid>
<description><![CDATA[It is the weekend and you are out on a date and you want to capture and share the fun you are ]]></description>
<content:encoded><![CDATA[<p>It is the weekend and you are out on a date and you want to capture and share the fun you are having with your friends around the world. So, you whip out your iPhone 3G, take that memorable shot and zap it across AT&#38;T and other networks to your friends. Right? Wrong! Read below and think again.</p>
<p>MailChannels, an anti-spam company, did some research and found out that O2, a UK-based mobile operator, <a href="http://blog.mailchannels.com/2008/07/o2-leaking-customer-photos.html" target="_blank">allowed unprotected access</a> to private MMS messages sent on its network via a simple web search. MailChannels made O2 aware of this flaw and O2 has since fixed it.</p>
<p>However, things get uglier. <a href="http://mobile.slashdot.org/article.pl?sid=08/07/21/081229" target="_blank">Slashdot</a> did similar research further and found that Sprint and Boost, an MVNO, also has similar flaws. In fact most of the other operators also had such flaw in their systems but a lot of them have been patched recently.</p>
<p>So, next time you send a picture to your friends, will it truly reach the eyes it is meant for or will the whole world get to see it?</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Your Tarot Reading Has Left Me Optimistic]]></title>
<link>http://betheajennersblog.wordpress.com/?p=23</link>
<pubDate>Fri, 18 Jul 2008 18:20:08 +0000</pubDate>
<dc:creator>Bethea Jenner</dc:creator>
<guid>http://betheajennersblog.wordpress.com/?p=23</guid>
<description><![CDATA[&#8220;Dear Bethea, With the need to tell you how much I have appreciated your new Tarot Reading. Yo]]></description>
<content:encoded><![CDATA[<p>"Dear Bethea, With the need to tell you how much I have appreciated your new Tarot Reading. Your insight is such fantastic and right. This reading is giving me a huge booster, I know it will not be easy, but I will do it right. Since yesterday I am feeling very released, I am proud of me, I had a very good meeting with my boss."</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Metaprogramming, is it a solution?]]></title>
<link>http://chikaradirghsa.wordpress.com/?p=105</link>
<pubDate>Fri, 18 Jul 2008 03:43:03 +0000</pubDate>
<dc:creator>chikaradirghsa</dc:creator>
<guid>http://chikaradirghsa.wordpress.com/?p=105</guid>
<description><![CDATA[Why Metaprogramming?
Benefits:

 We could do the computation at runtime instead of compile time. By ]]></description>
<content:encoded><![CDATA[<p>Why Metaprogramming?</p>
<p>Benefits:</p>
<ul class="unIndentedList">
<li> We could do the computation at runtime instead of compile time. By doing as much work as possible before the resulting program starts, we get faster programs. The result of the computation can interact more deeply with the target language. This is possible because the actions are processed during grammar compilation and passed to the target C/C++ compiler.</li>
<li> Once the metaprogram is written, its benefits of convenience can be spread across a community of other programmers. (For a metaprogram that will only be used once, different alternatives might be more efficient)</li>
<li> Regardless of how many times it's used, a metaprogram enables its user to write more expressive code, because the result can be specified in a form that corresponds to programmer's mental model.</li>
<li> The resulting program is more likely to be correct and maintanable.</li>
</ul>
<p>Why C++ Metaprogramming?</p>
<ul class="unIndentedList">
<li> User can enter the domain language directly, without learning a foreign syntax or interrupting the flow of the code</li>
<li> Interfacing metaprograms with other code, especially other metaprograms, becomes much smoother</li>
<li> No additional build step is required</li>
<li> Metaprogramming moves the computation required for expressivity and correctness from runtime to compile time</li>
</ul>
<p>When Metaprogramming?</p>
<ul class="unIndentedList">
<li> The code needs to be expressed in terms of the abstractions of the problem domain</li>
<li> When it is needed to write a great deal of boilerplate implementation code</li>
<li> When it is needed to take the advantage of valuable properties of generic programming in C++ such as static type checking and behaviour customization, without loss of effiency</li>
<li> The code needs to be written in C++ language, without an external tool or custom source code generator</li>
</ul>
<p>[summarized from <a href="http://www.amazon.com/Template-Metaprogramming-Concepts-Techniques-Depth/dp/0321227255/ref=pd_bxgy_b_img_b">this book</a>]</p>
<p>Conclusion:</p>
<ul class="unIndentedList">
<li> For my case, I don't have to understand about metaprogramming to utilize the templates (which is good ;) )</li>
<li><a href="http://imanlhakim.blogspot.com/2008/07/metaprogramming-and-boost.html">This writing about metaprogramming</a> really helps me to move on without worrying about less prior tasks. Thx buddy ;)</li>
</ul>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Boosting my coding with Boost Library]]></title>
<link>http://chikaradirghsa.wordpress.com/?p=98</link>
<pubDate>Thu, 17 Jul 2008 06:05:19 +0000</pubDate>
<dc:creator>chikaradirghsa</dc:creator>
<guid>http://chikaradirghsa.wordpress.com/?p=98</guid>
<description><![CDATA[Reading books about how to use Boost Library. Will take some time but certainly will save more time ]]></description>
<content:encoded><![CDATA[<p>Reading books about how to use Boost Library. Will take some time but certainly will save more time than developing all the modules from the scratch.</p>
<p>Got the feeling that once I advance metaprogramming then it will come in handy when I need it.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Graph Library - A First Trial]]></title>
<link>http://chikaradirghsa.wordpress.com/?p=89</link>
<pubDate>Tue, 15 Jul 2008 11:13:05 +0000</pubDate>
<dc:creator>chikaradirghsa</dc:creator>
<guid>http://chikaradirghsa.wordpress.com/?p=89</guid>
<description><![CDATA[Have explored a bit through the graph library. Have read some documentation here, and here. The exam]]></description>
<content:encoded><![CDATA[<p>Have explored a bit through the graph library. Have read some documentation <a href="http://www.boost.org/doc/libs/1_35_0/libs/graph/doc/quick_tour.html">here</a>, and <a href="http://www.boost.org/doc/libs/1_35_0/libs/graph/doc/graph_theory_review.html">here</a>. The <a href="http://www.boost.org/doc/libs/1_35_0/libs/graph/example/quick_tour.cpp">example</a> worked fine.</p>
<p>The library is using template. Need to learn more about it. Maybe from <a href="http://www.research.att.com/~bs/3rd.html">this book</a>. Now reading <a href="http://www.cplusplus.com/doc/tutorial/templates.html">this</a> and <a href="http://www.iis.sinica.edu.tw/~kathy/vcstl/templates.htm">this</a>.</p>
<p>Next task: developing a representation of simple grid-map in graph.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[C++ library we're going to use]]></title>
<link>http://chikaradirghsa.wordpress.com/?p=87</link>
<pubDate>Mon, 14 Jul 2008 22:16:31 +0000</pubDate>
<dc:creator>chikaradirghsa</dc:creator>
<guid>http://chikaradirghsa.wordpress.com/?p=87</guid>
<description><![CDATA[After some discussion on the previous posting, we decided to use Boost C++ Libraries. We have downlo]]></description>
<content:encoded><![CDATA[<p>After some discussion on <a href="http://chikaradirghsa.wordpress.com/2008/07/11/some-updates-on/">the previous posting</a>, we decided to use <a href="http://en.wikipedia.org/wiki/Boost_C%2B%2B_Libraries">Boost C++ Libraries</a>. We have downloaded the source <a href="http://www.boost.org/users/download/#repository">here</a>, and were very pleased that the library is having all the important stuff we need!</p>
<p>What we're going to do is building the framework and start to implement the algorithm we've discussed and agreed.</p>
<p>Every minor progress will be reported here ;)</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[ Cable-Laying Boom Will Boost Internet Capacity]]></title>
<link>http://soray2000.wordpress.com/?p=474</link>
<pubDate>Sun, 13 Jul 2008 06:49:53 +0000</pubDate>
<dc:creator>soray2000</dc:creator>
<guid>http://soray2000.wordpress.com/?p=474</guid>
<description><![CDATA[Barence writes &#8220;Dozens of new undersea internet cables are set to be laid over the next couple]]></description>
<content:encoded><![CDATA[<p>Barence writes "Dozens of new undersea internet cables are set to be laid over the next couple of years, providing a huge boost to worldwide capacity. The huge boom in internet video has led to doomsday scenarios of the internet running out of capacity. Although experts believe that there is abundant amounts of 'dark fibre' lying unused in oceans across the world, major telcos are pushing ahead with projects that will see at least 25 new cables laid by 2010, at a cost of $6.4bn."</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Int’l exhibition helps boost trade in machinery]]></title>
<link>http://baovietnam.wordpress.com/2008/07/09/int%e2%80%99l-exhibition-helps-boost-trade-in-machinery/</link>
<pubDate>Wed, 09 Jul 2008 16:39:04 +0000</pubDate>
<dc:creator>Bao Viet Nam</dc:creator>
<guid>http://baovietnam.wordpress.com/2008/07/09/int%e2%80%99l-exhibition-helps-boost-trade-in-machinery/</guid>
<description><![CDATA[ Local and foreign businesses attending an exhibition on engineering, machinery and metalworking in ]]></description>
<content:encoded><![CDATA[<p> Local and foreign businesses attending an exhibition on engineering, machinery and metalworking in Hanoi, have described the event as a good chance to expand cooperative ties and increase business efficiency.<BR><BR>The fourth Vietnam International Precision Engineering, Machine Tools and Metalworking Exhibition and Conference (MTA Vietnam) is important to Japanese businesses, serving as a forum for them to meet and seek partners, the Japan External Trade Organisation (JETRO) Overseas Trade Fair Division Director Masami Ando said.<BR><BR>He told the press at the opening ceremony of exhibition on July 9 that Vietnamese and Japanese businesses signed six contracts worth more than 136,000 USD and registered their transactions valued at over 1.8 million USD during last year’s event in Ho Chi Minh City .<BR><BR>Along with assisting Japanese businesses in joining MTA Vietnam, JETRO held separate exhibitions to help small and medium Vietnamese businesses exhibit spare parts and industrial machinery to Japanese businesses.<BR><BR>Director of the Industrial Service and Development Centre of Thailand Vinai Thipaischajonsak said this is the second time his business has joined MTA Vietnam and he hoped that it would find more new partners after this event.<BR><BR>CEO Hang Lien Bang of the OLAS Co Ltd, a Vietnamese provider of laser cutting and welding machines, said he considers the event an opportunity to learn about new science and technology to improve production and business efficiency.<BR><BR>MTA Vietnam plays an important role in industrial operations in the context that the industrial sector is seeking to reform its technology during the industrialisation process, the event organiser and Vietnam Chamber of Commerce and Industry Chairman Vu Tien Loc said. <BR><BR>MTA Vietnam has been held in Ho Chi Minh City for the past three years and this is the first time it has been held in Hanoi . The event, which runs through July 12, attracted more than 380 businesses, including 300 foreign companies, from 25 countries and territories.-</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[ADB to help Philippines boost economy]]></title>
<link>http://baovietnam.wordpress.com/2008/07/07/adb-to-help-philippines-boost-economy/</link>
<pubDate>Mon, 07 Jul 2008 16:54:37 +0000</pubDate>
<dc:creator>Bao Viet Nam</dc:creator>
<guid>http://baovietnam.wordpress.com/2008/07/07/adb-to-help-philippines-boost-economy/</guid>
<description><![CDATA[Hanoi (VNA) - The Asian Development Bank is considering to lend the Philippines 924 million USD in t]]></description>
<content:encoded><![CDATA[<p><I><B>Hanoi (VNA) </B></I>- The Asian Development Bank is considering to lend the Philippines 924 million USD in the 2009-2010 period to combat the effects of rising food prices and boost the overall economy. <BR><BR>The ADB said its country assistance programme for the Philippines in the next two years should focus on addressing pressing issues, including threats of worsening poverty, triggered by the sharp rise in prices of food and other commodities, reported Philippine Daily Inquirer. <BR><BR>“We are currently working with indicative planning figures of 624 million USD and 300 million USD for 2009 and 2010, respectively, and are prepared to make appropriate use of ADB's modalities ranging from technical assistance and sector loans, to programme loans and multi-tranche financing facilities," ADB said in a letter to the Philippines’ National Economic and Development Authority. <BR><BR>Earlier, the ADB approved a 250-million USD loan for the Development Policy Support Programme II, wherein the borrowed money provided budgetary support to the national government. Another 300-million USD loan was approved by the ADB for this year to fund the Governance and Justice Reform Programme, which will include skills training for employees of government agencies in the judiciary and programmes enhancing the agencies' technological capacity.-</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Brain training games boost IQ, study shows]]></title>
<link>http://themanicramblingsofaswede.wordpress.com/?p=294</link>
<pubDate>Sun, 06 Jul 2008 16:32:32 +0000</pubDate>
<dc:creator>Epex</dc:creator>
<guid>http://themanicramblingsofaswede.wordpress.com/?p=294</guid>
<description><![CDATA[From the article:
The exercises are an increasingly popular way for people of all ages to keep their]]></description>
<content:encoded><![CDATA[<p><strong>From the article:</strong></p>
<blockquote><p><em>The exercises are an increasingly popular way for people of all ages to keep their minds alert.</em></p>
<p><em>It has been suggested before that Sudoku number puzzles improve memory, while crosswords expand the vocabulary. The elderly are also said to benefit from a new generation of computer exercises played on video consoles to improve recall.</em></p>
<p><em>However, for the first time, scientists have proven that mental exercise really does limber up the brain and make it more quick-witted.</em></p></blockquote>
<p>Your brain is the most important thing you have so take good care of it.</p>
<p><a href="http://www.telegraph.co.uk/news/1906452/Brain-training-games-boost-IQ,-study-shows.html" target="_blank">Original link.</a><br />
WOG out.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Notebook Sales: Netbooks To Boost Sales Worldwide]]></title>
<link>http://notebookfan.wordpress.com/?p=100</link>
<pubDate>Fri, 04 Jul 2008 19:29:11 +0000</pubDate>
<dc:creator>notebookfan</dc:creator>
<guid>http://notebookfan.wordpress.com/?p=100</guid>
<description><![CDATA[With more and more brands like Acer, Dell and HP entering the market for low-cost small notebooks li]]></description>
<content:encoded><![CDATA[<p>With more and more brands like Acer, Dell and HP entering the market for low-cost small notebooks like the Asus' Eee PC, the market specialists from Topology Research raised forecasts for the worldwide laptop market from 120 to 128 million units. That is around 7 percent more than expected. So Topology Research sees a plus of 37 percent in comparison to 2007 with 93 million sold notebooks. Also the notebook manufacturer from Taiwan, who are controlling far more than 90 percent of the worldwide laptop production, have raised their expectations.</p>
<p>Quanta Computer gains in the first quarter of 2008 a world market share of 31 percent, followed by Compal with 24 percent and Wistron with 16 percent. Together with Inventec and the Asus spin-off Pegatron they made in Q1 2008 about 91 percent of the global laptop production. Asustek (Asus) has sold for the first half of 2008 about 2 million Eee PC. Asustek (Asus) expects for the year 2008 altogether 5 million Eee PCs out of about 10 million low-cost netbooks.</p>
<p>The industry-wide notebook battery shortage will delay UMPCs getting into the hands of buyers, but should be over in Q3 2008.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[VNPost gives Prudential network huge boost]]></title>
<link>http://baovietnam1.wordpress.com/2008/07/04/vnpost-gives-prudential-network-huge-boost/</link>
<pubDate>Fri, 04 Jul 2008 16:58:30 +0000</pubDate>
<dc:creator>Bao Viet Nam</dc:creator>
<guid>http://baovietnam1.wordpress.com/2008/07/04/vnpost-gives-prudential-network-huge-boost/</guid>
<description><![CDATA[ Vietnam Post (VNPost) signed a contract with Prudential Vietnam Assurance (PVN) on July 3 that will]]></description>
<content:encoded><![CDATA[<p> Vietnam Post (VNPost) signed a contract with Prudential Vietnam Assurance (PVN) on July 3 that will enable the insurance company to use more than 3,000 post offices nationwide. <BR><BR>VNPost is a part of Vietnam Post and Telecommunications Group (VNPT). While the initial focus of the cooperation is on collecting premiums, the contract also deals with a range of customer services for insurers, including claims being paid at post offices. <BR><BR>PVN and VNPT will also cooperate in cross-distribution of products. In the first quarter of this year, VNPT launched a successful pilot post-service package for Prudential Vietnam customers. <BR><BR>From July 4, insurance premiums can be paid at post offices in Hanoi, Ha Tay, Ho Chi Minh City and Binh Duong – and then in other Vietnamese cities. PVN’s chief executive officer, Binayak Dutta, said there were also plans to co-operate in customer information updates product crossdistribution. <BR><BR>The cooperative move has already proved a success in the West.-</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Meditation 'good for brain']]></title>
<link>http://awwwww.wordpress.com/?p=114</link>
<pubDate>Wed, 02 Jul 2008 22:49:38 +0000</pubDate>
<dc:creator>rtaustin</dc:creator>
<guid>http://awwwww.wordpress.com/?p=114</guid>
<description><![CDATA[
Scientists say they have found evidence that meditation has a biological effect on the body.
A smal]]></description>
<content:encoded><![CDATA[<div style="float:right;margin:7px;"><img style="vertical-align:top;" src="http://www3.uta.edu/faculty/reyes/teaching/meditation/TIME%20meditation%20cover.jpg" alt="" width="166" height="216" /></div>
<p>Scientists say they have found evidence that meditation has a biological effect on the body.</p>
<p>A small-scale study suggests it could boost parts of the brain and the immune system.</p>
<p>Meditation has been practiced since ancient times, mainly in the East.</p>
<p>"There is increasing evidence that meditation is a useful and, for some people, a powerful therapy."said Dr Adrian White of the department of Complementary Medicine at the University of Exeter.</p>
<p>It is now catching on worldwide as a means to reduce stress or to help with pain caused by various illnesses.<!--more--></p>
<p>Researchers at the University of Wisconsin-Madison in the United States enrolled 41 people in a trial of so-called "mindfulness" meditation.</p>
<p>It is a technique developed by an American stress reduction specialist - Jon Kabat-Zinn - for helping hospital patients deal with pain and discomfort.<br />
<strong><br />
Encouraging</strong></p>
<p>Twenty five of the subjects attended a weekly class and one seven-hour retreat during the study; they were also given exercises to carry out at home. The others did not receive meditation training and acted as a control group.</p>
<p>After eight weeks, the researchers measured electrical activity in the frontal part of the brain. They say this region was more active on the left side in the individuals who meditated and was associated with lower anxiety and a more positive emotional state.</p>
<p>Participants were also given a flu jab at the start of the study and those who meditated had higher levels of antibody, say the researchers, led by Dr Richard Davidson.</p>
<p>"Although our study is preliminary and more research clearly is warranted we are very encouraged by these results," he said.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[SurfCash - Traffic Exchange Website]]></title>
<link>http://webvisitinguide.wordpress.com/?p=6</link>
<pubDate>Mon, 30 Jun 2008 23:19:58 +0000</pubDate>
<dc:creator>misantrophic</dc:creator>
<guid>http://webvisitinguide.wordpress.com/?p=6</guid>
<description><![CDATA[Many of you probably tried a lot of traffic exchange websites, both manual and/or automatic surfing,]]></description>
<content:encoded><![CDATA[<p>Many of you probably tried a lot of traffic exchange websites, both manual and/or automatic surfing, but if you are looking for a serious and fast service, you may want to try this website i'll talk about.</p>
<p>SurfCash - That's the website's name. I will be honest, first time i visited it, i felt disapointed. A very simple layout and a quick description about traffic exchange system - just like any other website of this kind. And like any other website, i decided to try.</p>
<p>Unlike many traffic exchange websites, SurfCash has a serious website approval. Even if you try pop up, redirect or script websites, they will reject. This is awesome because many sites like this have huge amount of websites with excessive pop ups, active x scripts and redirections.</p>
<p>Earning credits is pretty easy. A 12 second timer rotates websites, giving you 0.75 credits per website visited. Everytime someone visits your website from the rotation you lose 1 credit. If you pay attention to your surfing you can earn additional credits!</p>
<p>If you simply don't have time to visit websites, you can buy packages of credits really cheap ( 1$ per 1000 visits!). </p>
<p>You can also use the manual surfing to receive manual credits. I'll recommend you the manual surfing to receive manual credits if you want to promote a product of want visitors to pay some attention to your website. If you just want to boost you website traffic, stick to the automatic surfing.</p>
<p>Getting your website approved takes 1-2 days, unlike other websites who take about 1 week. From my experience, i can say they can deliver you <strong>3000 visits in 5 hours.</strong> So if you are thinking about boosting your website/blog traffic and optimizing it into search engines, i strongly reccomend you surfcash.</p>
<p><a href="http://surfcash.us" target="_blank">Surfcash Website - Register Now</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Vietnam, Bulgaria boost judicial tiesVietnam, Bulgaria boost judicial ties]]></title>
<link>http://baovietnam.wordpress.com/?p=95</link>
<pubDate>Sat, 28 Jun 2008 16:23:40 +0000</pubDate>
<dc:creator>Bao Viet Nam</dc:creator>
<guid>http://baovietnam.wordpress.com/?p=95</guid>
<description><![CDATA[ Vietnam and Bulgaria are likely to reach an agreement on legal and judicial cooperation soon after ]]></description>
<content:encoded><![CDATA[<p> Vietnam and Bulgaria are likely to reach an agreement on legal and judicial cooperation soon after the two ministers of justice met in Bulgaria recently.</p>
<p>During his visit to Bulgaria from June 21-26, Minister of Justice Ha Hung Cuong held working sessions with his host Miglena Tacheva, where the duo reached a consensus on principles of negotiation on the accord.</p>
<p>Host and guest shared a view that the two countries have much in common in legal and judicial reforms while shifting the national economy from centrally planned to market oriented.</p>
<p>“The two countries may share experiences in this field,” they emphasised.</p>
<p>During his stay in Bulgaria , Cuong also met with leaders of a number of key executive agencies such as the National Assembly’s Legal Committee, the Supreme Judicial Council, the Supreme Court, the General Procuracy, the National Institute of Judiciary, and the National Lawyers’ Association.</p>
<p>During these meetings, the Vietnamese justice chief informed the Bulgarian side of the nation’s recent socio-economic achievements and progress made in legal and judicial reforms.</p>
<p>The Bulgarian side appreciated Vietnam ’s increasing prestige in the regional and international arena.</p>
<p>The two sides were of the view that with Vietnam being an active member of the Association of Southeast Asian Nations and Bulgaria a member of the European Union, opportunities for multi-faceted cooperation are ahead for the two countries in both bilateral and multilateral spheres.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Boost 1.35 kompilieren]]></title>
<link>http://vividos.wordpress.com/?p=25</link>
<pubDate>Sat, 28 Jun 2008 09:11:00 +0000</pubDate>
<dc:creator>vividos</dc:creator>
<guid>http://vividos.wordpress.com/?p=25</guid>
<description><![CDATA[Boost 1.35 ist seit einiger Zeit erschienen, und mit der neuen Version gab es Änderungen, wie man d]]></description>
<content:encoded><![CDATA[<p>Boost 1.35 ist seit einiger Zeit erschienen, und mit der neuen Version gab es Änderungen, wie man die Bibliotheken kompiliert. Die <a href="http://www.boost.org/doc/libs/1_35_0/more/getting_started/windows.html">Getting Started</a>-Anleitung <a href="http://www.boost.org/doc/libs/1_35_0/more/getting_started/windows.html#or-build-binaries-from-source">beschreibt</a> dies schon im Ansatz, verlinkt aber leider nicht auf eine etwas tiefergehende Dokumentation (sieht man mal von der für Laien unverständlichen Dokumentation zu Boost.Build ab). Im Nachfolgenden beschreibe ich, was es für neue Schalter für bjam gibt, und wie man die verschiedenen Bibliotheken erstellen läßt.</p>
<p><!--more-->Zuerst benötigt man bjam, das Build-Tool. Man kann es herunterladen, oder man erzeugt es sich eben mal aus dem Sourcecode. Im Verzeichnis tools\jam\src (vom Boost-Hauptverzeichnis aus) ruft man die Datei build.bat auf. Voraussetzung ist, man hat die Compiler-Umgebungsvariablen setzen lassen (z.B. über "vcvarsall.bat x86" o.ä.). Es wird die Datei bjam.exe im Unterverzeichnis "bin.ntx86" erstellt, die man getrost ins Boost-Hauptverzeichnis schieben kann.</p>
<h2>bjam-Kommandozeile</h2>
<p>Zurück in diesem Verzeichnis kann man bjam nun aufrufen. Folgendes Format sollte der Aufruf haben:</p>
<blockquote><p>bjam toolset=msvc --with-<em>{library-name} {weitere-optionen}</em> stage</p></blockquote>
<p>das Toolset kann für alle Visual C++-Versionen auf msvc belassen werden, das Build-System findet selbst die passende Version heraus. Die --with-<em>{library-name}</em> -Option kann öfters vorkommen. Folgende library-names sind gültig (die Liste kann sich auch jederzeit mit dem Aufruf "bjam --show-libraries" angezeigt werden):</p>
<ul>
<li>date_time</li>
<li>filesystem</li>
<li>function_types</li>
<li>graph</li>
<li>iostreams</li>
<li>mpi</li>
<li>program_options</li>
<li>python</li>
<li>regex</li>
<li>serialization</li>
<li>signals</li>
<li>system</li>
<li>test</li>
<li>thread</li>
<li>wave</li>
</ul>
<p>Die Angabe <em>stage</em> gibt an, daß die Dateien ins Verzeichnis "lib/stage" kopiert werden. Nach dem Kompilieren kann man das Verzeichnis "bin.v2" entfernen, es enthält die intermediate-Dateien für die einzelnen Libraries.</p>
<h2>Build-Optionen</h2>
<p>Für die <em>{weitere-optionen}</em> -Option können folgende Optionen angegeben werden:</p>
<ul>
<li>--build-type=(single&#124;complete)<br />
Gibt an, wie viele der verschiedenen Targets kompiliert werden. single kompiliert nur die release-Versionen mit shared linking (also DLLs)</li>
<li>debug, release bzw variant=(debug&#124;release)<br />
Bestimmt, welche Variante kompiliert wird. Wie im Visual Studio.</li>
<li>stdlib={standard-library}<br />
Gibt die Art der Standard-C++-Library an. Möglicher Wert, z.B.: stlport (siehe weiter unten)</li>
<li>link=(shared&#124;static)<br />
Gibt an, ob eine DLL oder eine statische Library erzeugt wird. Standardmäßig will boost durch den autolink-Mechanismus die statischen .lib-Dateien dazulinken.</li>
<li>define=THIS_DEFINE=1<br />
Praktisch, um Defines an der Kommandozeile festzulegen, z.B. _SECURE_SCL=1</li>
<li>threading=(multi&#124;single)<br />
Gibt an, ob die Bibliotheken multithreaded kompiliert werden. Bei single fallen u.U. mutexe und locking weg und entspricht dem Compiler-Schalter /ML</li>
<li>runtime-link=(shared&#124;static)<br />
Gibt an, welche C und C++-Runtime-Bibliothek zu den erzeugten Bibliotheken dazugelinkt wird. shared linkt die msvcrXY.dll und msvcpXY.dll, static linkt je nach threading-Option die libc.lib/libcp.lib oder die libcmt.lib/libcpmt.lib dazu. XY steht für die interne Visual Studio-Version, fürs 2005er für 80, fürs 2008er für 90.</li>
<li>optimization=(on&#124;off)<br />
Schaltet Optimierungen an bzw. aus.</li>
<li>architecture=(x86&#124;ia64&#124;sparc&#124;power&#124;mips(1&#124;2&#124;3&#124;4&#124;32&#124;32r2&#124;64)&#124;...?)<br />
Prozessorarchitektur</li>
<li>address-model=(32&#124;64)<br />
Gibt das Address-Modell an; die 64 wird benötigt, wenn man unter Visual Studio &#62;= 2005 für AMD64-Plattformen kompiliert.</li>
</ul>
<p>Es gibt natürlich noch mehr Optionen. Bei Bedarf werde ich das Blog-Post entsprechend erweitern.</p>
<h2>STLport</h2>
<p>Um Bibliotheken erstellt zu bekommen, die mit STLport zusammenarbeiten, reicht es nicht, stdlib=stlport zu übergeben; man muß einen Schritt weitergehen. Die Datei user-config.jam ist anzupassen und ist in tools/build/v2 zu finden. Folgende Zeile sollte man hinzufügen (bzw. man braucht sie nur einzukommentieren, sie ist schon da):</p>
<blockquote><p>using stlport : : {Pfad-zu-stlport-include-Folder} {Pfad-zu-stlport-lib-files} ;</p></blockquote>
<p>Die Zeile könnte in etwa so aussehen:</p>
<blockquote><p>using stlport : : D:\devel\STLport-5.1.4\stlport D:\devel\STLport-5.1.4\lib ;</p></blockquote>
<p>Verwendet man mehrere STLport-Versionen, so gehört die Versionsnummer zwischen die ersten beiden Doppelpunkte (z.B. "stlport : 5.1.4 : <em>pfad pfad</em>"). In der bjam-Kommandozeile ist dann stdlib=stlport-<em>{Version} </em>anzugeben (z.B. "stdlib=stlport-5.1.4").</p>
<p>Die erstellten Bibliotheken enthalten im Dateinamens-Suffix zusätzlich den Buchstaben p, der die Abhängigkeit zu STLport signalisiert. Endungen sind dann z.B. "vc80-mt-gdp-1_35" oder "vc80-mt-p-1_35".</p>
<p>Noch ein Hinweis für den Debug-Modus: Boost wird mit definiertem _STLP_DEBUG kompiliert, seine Debug-Targets sollte man also besser auch mit dem gesetzen define kompilieren.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[If the CEO could change the world]]></title>
<link>http://devintaliaferro.wordpress.com/?p=20</link>
<pubDate>Sat, 28 Jun 2008 07:04:41 +0000</pubDate>
<dc:creator>devintaliaferro</dc:creator>
<guid>http://devintaliaferro.wordpress.com/?p=20</guid>
<description><![CDATA[These are challenging times indeed.  The U.S. economy is facing very real challenges to its pre-emin]]></description>
<content:encoded><![CDATA[<p>These are challenging times indeed.  The U.S. economy is facing very real challenges to its pre-eminence in the wake of failed economic and foreign policy.  Our housing market is in shambles, and inflation is threatening to eat away at the gains of the last 30 years.</p>
<p>Is this the end as we know it, or will we rise to the challenges of our U.S. economy? I prefer to be an optimist and suggest that we will indeed rise to the occasion.</p>
<p>How did we get into this economic mess?  Frankly what is transpiring today should be of little surprise as the laissez-faire approach of those in power did little to inspire change or leadership to move us forward. When I say "those in power," I refer directly to Washington and all houses of government.  No one is beyond reproach as there is plenty of blame to throw around.</p>
<p>Not far behind in the blame game is our own Federal Reserve.  Not wanting to face the consequences of a recession, the central bank’s attempt to smooth out the business cycle has contributed to the <a href="http://www.investorplace.com/experts/james_dlugosch/articles/recession_stock_market_advice031408.html">current mess</a>.</p>
<p>Unfortunately blaming anyone for what ails us does little to help solve the current problems.  Instead we need to look to the future, learn from the past and move on.  We need leadership.</p>
<h2>The U.S. Economy: CEOs Need to Lead the Charge</h2>
<p>Where will we find that leadership? A good place to start our search is in the executive chambers of many of our most dominant corporate entities.  Specifically, Chief Executive Officers have the skill sets and platforms to lead us out of the morass.</p>
<p>I know, CEOs have been out of favor due to wage controversies and other shenanigans, but for the most part this group of leaders is more good than bad.</p>
<p>There is a very real reason why they get paid what they do, and it is more about talent than it is about manipulation and abuse.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Firefox 3: A One Week Review]]></title>
<link>http://collegelife101.wordpress.com/?p=43</link>
<pubDate>Thu, 26 Jun 2008 08:23:28 +0000</pubDate>
<dc:creator>twilightspath</dc:creator>
<guid>http://collegelife101.wordpress.com/?p=43</guid>
<description><![CDATA[Ok, so I&#8217;ve been waiting to express my Firefox fanboy-ness for a while. However, I have now be]]></description>
<content:encoded><![CDATA[<p><span style="color:#faf8cc;">Ok, so I've been waiting to express my Firefox fanboy-ness for a while. However, I have now been using the newest edition of this free, open source, web browser for a little over a week now and feel that it's time to say what I like most about foxkeh's product.</span><img src="///Users/Jon/Library/Caches/TemporaryItems/moz-screenshot.jpg" alt="" /><span style="color:#faf8cc;"> </span><img src="///Users/Jon/Library/Caches/TemporaryItems/moz-screenshot-1.jpg" alt="" /><a href="http://collegelife101.files.wordpress.com/2008/06/200709.png"><img class="alignnone size-medium wp-image-45" src="http://collegelife101.wordpress.com/files/2008/06/200709.png?w=300" alt="The coolest mascot around...." width="300" height="242" /></a></p>
<p><span style="color:#faf8cc;">While I could go on and on about how it's faster and more secure and just plain better than anything else :P , but since anyone can go to <a href="http://www.mozilla.com/en-US/firefox/" target="http://www.mozilla.com/en-US/firefox/">firefox's website</a> and figure this out for themselves I will focus on the little details that make my life more enjoyable.</span><br />
<span style="color:#faf8cc;"><br />
1. My biggest irk when using a password saver while logging in is that I am unsure whether or not I typed in the correct password. I mean if I save the wrong password then every time I come back I have to erase the auto-filled one and replace it with the correct one. With Firefox 3.0 you can now wait until AFTER you have logged in to save your password. This may seem like something small and insignificant but it really is a timesaver to not have to cycle through my ten+ passwords I use for various things.<br />
<span style="color:#faf8cc;"><br />
2. The new favorites (Bookmark) system. While slightly bored and unimpressed with it when reading about this new feature it is now eaily one of my favorites (No cheesy joke intended). Now instead of having to type out entire addresses or open up my favorites I simple type in a letter or two or a tag word. Think of it like Google but for every page I've been to lately. If I want to find that digg article about aardvarks I looked at earlier all I have to do is type "aardvark" and it brings up a list of everywhere related to that word that I've surfed recently. Is this a sign of laziness? Yep. I don't want to waste time trying to figure out where in the world I saw that really <a href="http://www.thinkgeek.com/tshirts/illuminated/991e/" target="_blank">cool t-shirt online</a>.<br />
<span style="color:#faf8cc;"><br />
3. What would Firefox be without add-ons? Pretty much like IE, Safari, and Opera.... boring (At least to me)! I know this isn't exactly new but what is new is the fact that I can now search for new add-ons right in the add-ons manager instead of having to go to a webpage. Again seems small but really is very convienent<br />
<span style="color:#faf8cc;"><br />
4. It shows me where a page is from. This saves me the time of pulling out my tin-foil hat to be sure that I'm safe. Is there really any point to it for the day to day user? Not really except that it's interesting to see where some content is from. Also with this is a new phishing security. The little guy has a name but I forgot it and don't feel like looking it up....It might have been Bob.....or Sam.....one of those mundane three letter names.....Tom?<br />
<span style="color:#faf8cc;"><br />
I would keep listing things I like about Firefox but that could take awhile and then I'd have to rename the post "1001 reasons Firefox is better!". So I think I'll publish this post, remove my tin-foil hat (Have to be careful these days :P ), and go to sleep! Anyway this post is just for those paranoid people who are waiting to switch to Firefox 3 because they aren't sure if it's safe. Trust me, the only complaint I have so far is that my facebook add-on (Boost) from Firefox 2.0 no longer works, but that should be fixed by the Boost developer soon and is no fault of Firefox. So don't worry about switching to the best web browser there is, in my opinion, and getting to your internet pages faster and more enjoyably.<br />
*Update!!!!*<br />
My Facebook Boost add-on finally got with the program and updated itself. So now I am content in blissful webby-ness<br />
</span></span></span></span></span></p>
<p><span style="color:#c3fd88;"><br />
-JD<br />
</span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Forgotten May Beauty]]></title>
<link>http://jenrinaldiphotography.wordpress.com/?p=443</link>
<pubDate>Thu, 26 Jun 2008 04:40:24 +0000</pubDate>
<dc:creator>JRP</dc:creator>
<guid>http://jenrinaldiphotography.wordpress.com/?p=443</guid>
<description><![CDATA[Loving that the 50mm is so versatile&#8230;

I forgot all about these flower photos until tonight.  ]]></description>
<content:encoded><![CDATA[<p><strong>Loving that the 50mm is so versatile...</strong></p>
<p style="text-align:left;">
<p style="text-align:left;">I forgot all about these flower photos until tonight.  I was sitting here trying to decide what I wanted to work on for tonight and I knew it <strong>wasn't</strong> wedding photos or portraits (for tonight) so I looked around in the mass of <strong>unedited</strong> work and realized I forgot all about these beauties from May 5th.</p>
<p style="text-align:left;">They were all taken with the Nikon 50mm 1.4.<em><strong> It's not just for portraits!</strong></em> LOL!</p>
<p style="text-align:left;"><img class="aligncenter" src="http://jenrinaldiphotography.smugmug.com/photos/320143423_mUwSJ-M-1.jpg" alt="" /></p>
<p style="text-align:left;">
<p style="text-align:center;"><img class="aligncenter" src="http://jenrinaldiphotography.smugmug.com/photos/320144556_wRdgx-M-1.jpg" alt="" /></p>
<p style="text-align:center;">I adore the sunlight illuminating the background here...</p>
<p style="text-align:center;">Looking at them makes me remember how beautiful this May day felt to me when I laid under the tree in my front yard to take this photo.</p>
<p style="text-align:center;"><img class="alignnone" src="http://jenrinaldiphotography.smugmug.com/photos/320148049_yAXok-M-1.jpg" alt="" /></p>
<p style="text-align:center;">A little antique action...<em>who said flowers can't be antiqued</em>?  Not me!</p>
<p style="text-align:center;"><img class="alignnone" src="http://jenrinaldiphotography.smugmug.com/photos/320150212_W7ygT-M-1.jpg" alt="" /></p>
<p style="text-align:center;">
<p style="text-align:center;">And a favorite edit for this session.... (yes, yes, yes it's <a href="http://blog.jenrinaldiphotography.com/" target="_blank">texture</a>!) LOL!</p>
<p style="text-align:center;">
<p style="text-align:center;"><img class="alignnone" src="http://jenrinaldiphotography.smugmug.com/photos/320152023_jWrDc-XL-1.jpg" alt="" /></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Rhubarb Crumble]]></title>
<link>http://lovelucy.wordpress.com/?p=41</link>
<pubDate>Wed, 25 Jun 2008 14:48:57 +0000</pubDate>
<dc:creator>lovelucy</dc:creator>
<guid>http://lovelucy.wordpress.com/?p=41</guid>
<description><![CDATA[We had lunch and spent the afternoon with friends on Sunday, and in the course of conversation talke]]></description>
<content:encoded><![CDATA[<p>We had lunch and spent the afternoon with friends on Sunday, and in the course of conversation talked about cooking being a fantastic tool for boosting boys self-esteem and achievements (girls too of course, but that is more often considered). This was not of course an original thought, but one that came from things my friend had heard and read this week.</p>
<p>Spurred on by the thought that such a simple tool was available to me, and at no extra cost which is rare, I asked son 1 (aged 11) to make the Rhubarb Crumble for dinner. He not only made it, (without me poking my beak in!) but was absolutely pleased as punch with the outcome, and of course boosted by the praise.</p>
<p>The recipe I have is for 900g (2lb) Rhubarb but the recipe also says that you need 10g sugar for every 100g Rhubarb, so he was able to adapt because we only had 600g of the famous rhubarb mountain left!</p>
<p>900g (2lb) rhubarb - chopped into bite sized chunks<br />
3 tbs demerara sugar<br />
2 tsp ground ginger</p>
<p>Mix these together in a dish (do not cook the rhubarb first or it will turn to mush!)</p>
<p>For the crumble topping you will need:</p>
<p>150g (6oz) plain flour<br />
75g (3oz) butter<br />
75g (3oz) sugar - preferably demerara</p>
<p>Rub together the fat and  the flour until it resembles crumbs<br />
Add the sugar and mix together<br />
Spread over the rhubarb mix and cook in a moderate oven (gas 4 / 180 c) for about 30 mins until golden brown</p>
<p>Serve with ice cream, custard, cream or all of the above!</p>
<p>My friend later told me that her son had made cookies the same day, and with the same, entirely predictable, results! Let's cook and let's let them cook!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Tweaking Vista's Services... Correctly!]]></title>
<link>http://lpfsystems.wordpress.com/?p=51</link>
<pubDate>Wed, 25 Jun 2008 09:20:13 +0000</pubDate>
<dc:creator>Kenny Blewett</dc:creator>
<guid>http://lpfsystems.wordpress.com/?p=51</guid>
<description><![CDATA[There are countless articles on the Web that tell you that you can improve Microsoft Windows Vista]]></description>
<content:encoded><![CDATA[<p>There are countless articles on the Web that tell you that you can improve Microsoft Windows Vista’s performance by disabling unnecessary services. While some of these articles simply provide explanations of the services and leave it up to you to decide which ones to disable, others point out specific services that are generally unnecessary.<!--more--></p>
<p>However, almost all these types of articles contain a disclaimer of sorts that mentions that not all systems are alike and so certain services that are unnecessary for one user’s Vista configuration might be required for another user’s Vista configuration. In addition, there are differences between the Vista versions. As such, you are essentially on your own when experimenting with disabling services on your particular Vista system</p>
<p>In most cases, disabling a required service won’t harm your system — it will usually yield some type of error message. However, in some situations disabling a required service may prevent Vista from starting up. While this sort of problem may cause your heart to miss a few beats, it’s usually not a fatal condition. You’ll just need to start the computer in Safe Mode. When you do, any core services that are required by the operating system are started, regardless of any changes that you have made to the service settings. Once in Safe Mode, you can then re-enable the required service(s).</p>
<p>Even with this built-in safety net, you can save yourself some pain by creating a snapshot of the current state of the Vista services on your system.</p>
<p>In this edition of the Windows Vista ReportI’ll show you how to create a snapshot and explain how you can take advantage of this technique when tweaking Vista services. Along the way, I’ll pass on some other valuable information.</p>
<h2>Creating a snapshot</h2>
<p>Before you even touch one setting in the Services tool, you should create a snapshot of your system’s existing service settings in a spreadsheet. Fortunately, doing so is easy.</p>
<p>To begin, launch the Services tool by pressing [Windows]+[R] to access the Run dialog box. Then, type <em>Services.msc</em> in the Open text box and click OK. When the Services tool launches, right-click the Services node in the console tree and select the Export List command, as shown in <strong>Figure A</strong>.</p>
<h4>Figure A</h4>
<h5><img src="http://i.techrepublic.com.com/gallery/206989-500-366.png" alt="" /></h5>
<h6>Select the Export List command from the menu.</h6>
<p>When you see the Export List dialog box, leave the Save As Type option set at Text (Tab Delimited) (*.txt), as shown in <strong>Figure B</strong>. Even though there is a Text (Comma Delimited) (*.csv) setting, which is easier to import into your spreadsheet application, the CSV option doesn’t produce a clean listing of the services –the descriptions bleed over into adjacent cells.</p>
<h4>Figure B</h4>
<h5><img src="http://i.techrepublic.com.com/gallery/206990-500-393.png" alt="" /></h5>
<h6>Make sure that the Save As Type option is set to Text (Tab Delimited) (*.txt) in order to get a clean listing.</h6>
<p>Once you export the file, open your spreadsheet application and import the text file using the tab-delimited setting, as shown in <strong>Figure C</strong>. Once you save the file, you’ll have a record of the current state of all the services on your Vista system. This allows you to be able to return your services to their current state if you run into a glitch or are unsatisfied with the outcome of your changes.</p>
<h4>Figure C</h4>
<h5><img src="http://i.techrepublic.com.com/gallery/206991-500-357.png" alt="" /></h5>
<h6>Use the tab-delimited setting when importing the text file into your spreadsheet application.</h6>
<p>If you save a second copy of the file, you’ll have a version that you can work with as you investigate which services you want to experiment with disabling. For example, you can sort the list, use color coding to highlight specific services, and take notes, as shown in <strong>Figure D</strong>. I call this the Vista Services Log Book.</p>
<h4>Figure D</h4>
<h5><img src="http://i.techrepublic.com.com/gallery/206992-500-373.png" alt="" /></h5>
<h6>You can use color coding and notes to help you keep track of changes that you make to services.</h6>
<h2>No hardware profiles</h2>
<p>In Windows Vista, Microsoft decided to do away with hardware profiles, which came in handy when experimenting with disabling services in Windows XPSo, if you used this technique in Windows XP, don’t bother looking for similar hardware profiles in Vista — they aren’t available.</p>
<p>Hardware profiles were designed to provide you with a way to work around non-Plug and Play systems (standard HAL), which were unable to query the system for information about hardware. The current crop of ACPI systems on Vista-capable systems can interact with the hardware dynamically. As such, hardware profiles are no longer needed.</p>
<h2>A few no brainers</h2>
<p>Even though I began this article by telling you that there are countless articles on the Web that tell you that you can improve Windows Vista’s performance by disabling unnecessary services, I thought I would share with you some of Vista’s automatically running services that you can easily determine whether or not to disable.</p>
<p>If you decide to disable these services, be sure that you document the changes in your Vista Services Log Book spreadsheet.</p>
<h3>1. Windows Error Reporting Service</h3>
<p>This service allows errors to be reported when programs stop working or responding and allows existing solutions to be delivered. It also allows logs to be generated for diagnostic and repair services. If this service is stopped, error reporting might not work correctly and results of diagnostic services and repairs might not be displayed.</p>
<p><em>If you never again want to be prompted to send an error report to Microsoft</em><em>, then you can disable this service.</em></p>
<h3><strong>2. </strong><strong>Tablet PC Input Service</strong></h3>
<p>This service enables Tablet PC pen and ink functionality.</p>
<p><em>If you’re running Vista on a desktop or a standard laptop, then you can disable this service.</em></p>
<h3>3. Offline Files</h3>
<p>The Offline Files service performs maintenance activities on the Offline Files cache, responds to user logon and logoff events, implements the internals of the public API, and dispatches interesting events to those interested in Offline Files activities and changes in cache state.</p>
<p><em>If you’re not saving your data on a file server, then you can disable this service.</em></p>
<h3>4. IP Helper</h3>
<p>This service provides automatic IPv6 connectivity over an IPv4 network. If this service is stopped, the machine will have only IPv6 connectivity if it is connected to a native IPv6 network.</p>
<p><em>Unless you’re connected to an advanced network, chances are that you only need IPv4 connectivity and you can disable this service.</em></p>
<h3>5. ReadyBoost</h3>
<p>This service provides support for improving system performance using ReadyBoost.</p>
<p><em>If you’re not using a USB device to enhance performance, then you can disable this service.</em></p>
<h3><strong>6. </strong><strong>Remote Access Connection</strong></h3>
<p>Manages dial-up and virtual private network (VPN) connections from this computer to the Internet or other remote networks. If this service is disabled, any services that explicitly depend on it will fail to start.</p>
<p><em>If you’re not using a dial-up or a VPN connection, then you can disable this service.</em></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[OPEC GAS TAX]]></title>
<link>http://devintaliaferro.wordpress.com/?p=3</link>
<pubDate>Wed, 25 Jun 2008 00:55:09 +0000</pubDate>
<dc:creator>devintaliaferro</dc:creator>
<guid>http://devintaliaferro.wordpress.com/?p=3</guid>
<description><![CDATA[




The &#8220;OPEC gas tax&#8221; — it dwarfs the rest


















U.S. gas tax
45.8
¢/ga]]></description>
<content:encoded><![CDATA[<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td class="nrml">
<div class="s5 sb" style="margin:0;padding:0;">
<div class="pg" style="margin-top:8px;">The "OPEC gas tax" — it dwarfs the rest</div>
</div>
</td>
<td width="10"></td>
</tr>
</tbody>
</table>
<p><a name="7484"></a></p>
<p><!-- center ROW 2, Type=TextDoc ================= --></p>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr><!-- C-Row TN --></p>
<td width="12"></td>
<td class="nrml">
<div style="float:right;margin-left:1em;">
<div>
<table class="zF21" border="0">
<tbody>
<tr>
<td><a class="zF21" href="http://zfacts.com/p/990.html">U.S. gas tax</a></td>
<td align="right"><span class="zF21" style="display:inline;">45.8</span></td>
<td colspan="2">¢/gal</td>
</tr>
<tr>
<td colspan="2" align="right">$<span class="zF21" style="display:inline;">2,001,239.35</span></td>
</tr>
<tr>
<td><a class="zF21" href="http://zfacts.com/p/990.html">OPEC gas tax</a></td>
<td align="right"><span class="zF21" style="display:inline;">188.0</span></td>
<td colspan="2">¢/gal</td>
</tr>
<tr>
<td colspan="2" align="right">$<span class="zF21" style="display:inline;">8,214,694.27</span></td>
</tr>
</tbody>
</table>
</div>
</div>
<p>The Organization of Petroleum Exporting Countries (OPEC) cartel — and the world's failure to curb demand in the face of it — produce a "tax" on gasoline that is far greater than U.S. gas taxes.</p>
<div style="text-align:right;"><a class="PLf" title="Gas tax clock" href="http://zfacts.com/p/997.html">Free clock for your site</a></div>
</td>
<td width="10"></td>
</tr>
</tbody>
</table>
<p><a name="7439"></a></p>
<p><!-- center ROW 3, Type=Text ================= --> <!-- C-Row TN --></p>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="12"></td>
<td class="nrml"><span style="font-weight:bold;color:#990000;margin:0 8px 0 0;">zFact:</span> The "OPEC gas tax" in 2008 is $1.88 per gallon, compared to combined Federal and State gas taxes that averaged about 46 cents per gallon in 2007. <a class="PLf" title="Size of OPEC tax" href="http://zfacts.com/p/992.html">More</a></p>
<p><span style="font-weight:bold;color:#990000;margin:0 8px 0 0;">zFact:</span> We don't have to pay a tax to OPEC. But we have to get organized</td>
</tr>
</tbody>
</table>
]]></content:encoded>
</item>

</channel>
</rss>
