<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Life, Hacks, and Internet</title>
	<atom:link href="http://pufone.org/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://pufone.org/blog</link>
	<description>AdSense Money with WordPress in Google while Hacking.</description>
	<lastBuildDate>Mon, 28 Jan 2013 06:36:17 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Monty Hall Problem Statistics Algorithm</title>
		<link>http://pufone.org/blog/monty-hall-problem-statistics-algorithm/</link>
		<comments>http://pufone.org/blog/monty-hall-problem-statistics-algorithm/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 09:14:47 +0000</pubDate>
		<dc:creator>Cugone</dc:creator>
				<category><![CDATA[Hack]]></category>

		<guid isPermaLink="false">http://pufone.org/blog/monty-hall-problem-statistics-algorithm/</guid>
		<description><![CDATA[Today the goats made it to the front page of reddit yet again, this time it&#8217;s a forum post with over 9000 replies.

Because I love winning, I decided to settle this once and for all, the Mythbusters way: 10000 games, 20000 cars, 10000 goats, 30 PHP lines.
Run the code below*.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
&#60;?php 
$games=10000;
$win=0; 	//number of wins if [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin-left:15px;" width="180" height="100" align="right" alt="Goat behind door number 3" src="http://upload.wikimedia.org/wikipedia/commons/thumb/3/3f/Monty_open_door.svg/180px-Monty_open_door.svg.png" />Today <a href="http://www.reddit.com/r/science/comments/91trm/game_show_problem_marilyn_vos_savant_vs_the_phds/">the goats</a> made it to the front page of reddit <a href="http://www.reddit.com/search?q=monty+hall">yet again</a>, this time it&#8217;s a forum post with over 9000 replies.</p>
<p><span id="more-95"></span></p>
<p>Because I love winning, I decided to settle this once and for all, the Mythbusters way: 10000 games, 20000 cars, 10000 goats, 30 PHP lines.</p>
<p><a href="http://pufone.org/blog/goat.php">Run the code below*.</a></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> 
<span style="color: #000088;">$games</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">10000</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$win</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span> 	<span style="color: #666666; font-style: italic;">//number of wins if I don't switch</span>
<span style="color: #000088;">$winswitch</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>	<span style="color: #666666; font-style: italic;">//number of wins if I switch</span>
&nbsp;
<span style="color: #b1b100;">for</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$i</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span><span style="color: #000088;">$i</span><span style="color: #339933;">&lt;=</span><span style="color: #000088;">$games</span><span style="color: #339933;">;</span><span style="color: #000088;">$i</span><span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
<span style="color: #000088;">$doors</span><span style="color: #339933;">=</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>			<span style="color: #666666; font-style: italic;">//create the doors</span>
<span style="color: #000088;">$doorstemp</span><span style="color: #339933;">=</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>		<span style="color: #666666; font-style: italic;">//doors in the hosts mind</span>
<span style="color: #000088;">$prize</span><span style="color: #339933;">=</span><span style="color: #990000;">rand</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>			<span style="color: #666666; font-style: italic;">//the prize is behind this door</span>
<span style="color: #000088;">$choice</span><span style="color: #339933;">=</span><span style="color: #990000;">rand</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>			<span style="color: #666666; font-style: italic;">//the door number I choose</span>
<span style="color: #990000;">unset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$doorstemp</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$choice</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>		<span style="color: #666666; font-style: italic;">//the host must not open one door that I chose</span>
<span style="color: #990000;">unset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$doorstemp</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$prize</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>		<span style="color: #666666; font-style: italic;">//the host must not open the door where the prize is...</span>
<span style="color: #000088;">$hostopensfirst</span><span style="color: #339933;">=</span><span style="color: #990000;">array_rand</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$doorstemp</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>	<span style="color: #666666; font-style: italic;">//the host decides what door to open</span>
<span style="color: #990000;">unset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$doors</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$hostopensfirst</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>		<span style="color: #666666; font-style: italic;">//the host opens a door with a cheap prize</span>
	<span style="color: #666666; font-style: italic;">//do not switch</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$choice</span><span style="color: #339933;">==</span><span style="color: #000088;">$prize</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$win</span><span style="color: #339933;">++;</span>
	<span style="color: #009900;">&#125;</span>
	<span style="color: #666666; font-style: italic;">//switch</span>
	<span style="color: #990000;">unset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$doors</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$choice</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>		<span style="color: #666666; font-style: italic;">//discard my first choice</span>
	<span style="color: #000088;">$choice</span><span style="color: #339933;">=</span><span style="color: #990000;">array_pop</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$doors</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>	<span style="color: #666666; font-style: italic;">//select the alternative</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$choice</span><span style="color: #339933;">==</span><span style="color: #000088;">$prize</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>				
		<span style="color: #000088;">$winswitch</span><span style="color: #339933;">++;</span>
	<span style="color: #009900;">&#125;</span>	
<span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">echo</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Playing <span style="color: #006699; font-weight: bold;">$games</span> games. If you:<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;-hold you win  : <span style="color: #006699; font-weight: bold;">$win</span> goats.<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;-switch you win: <span style="color: #006699; font-weight: bold;">$winswitch</span> goats&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>The <a href="http://en.wikipedia.org/wiki/Monty_Hall_problem">Monty Hall problem</a> is a probability puzzle based on the American television game show Let&#8217;s Make a Deal. The name comes from the show&#8217;s host, Monty Hall. The problem is also called the Monty Hall paradox, as it is a veridical paradox in that the result appears absurd but is demonstrably true.</p>
<p>*Modified for lolz</p>
]]></content:encoded>
			<wfw:commentRss>http://pufone.org/blog/monty-hall-problem-statistics-algorithm/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Handjob with the Teacher in the Classroom at an Ukrainian School</title>
		<link>http://pufone.org/blog/handjob-teacher-classroom-ukrainian-school/</link>
		<comments>http://pufone.org/blog/handjob-teacher-classroom-ukrainian-school/#comments</comments>
		<pubDate>Wed, 31 Oct 2007 17:47:34 +0000</pubDate>
		<dc:creator>Cugone</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://pufone.org/blog/handjob-with-the-teacher-in-the-classroom-at-an-ukrainian-school/</guid>
		<description><![CDATA[Warning: The following material is sexually explicit!
Please leave this page if you are under 16 years old.
Today I received this video in my mailbox from a friend of mine. It shows an Ukrainian girl giving a hanjob to her desk &#34;mate&#34; while the teacher is inside the classroom. The boy is pretending to take notes [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><strong>Warning: The following material is sexually explicit!</strong></p>
<p align="center">Please leave this page if you are under 16 years old.</p>
<p>Today I received this video in my mailbox from a friend of mine. It shows an Ukrainian girl giving a hanjob to her desk &quot;mate&quot; while the teacher is inside the classroom. The boy is pretending to take notes while the girl strokes his penis and smiles at the camera. The video is definitely NSFW (his cock is outside the pants) so be careful.</p>
<p><span id="more-94"></span></p>
<div align="center"><embed width="400" height="320" src="http://player.longtailvideo.com/player.swf" allowfullscreen="true" bgcolor='undefined' allowscriptaccess='always' allowfullscreen='true' flashvars='file=http://pufone.org/blog/wp-content/uploads/russian-school-handjob.flv' ></embed></div>
<p>Some of you have been sending me messages to ask if I have more videos like this: I do have some, but this is my blog and I don&#8217;t want to do illegal things, so, please visit a <a href="http://www.pornobo.com">porno youtube</a> site.</p>
]]></content:encoded>
			<wfw:commentRss>http://pufone.org/blog/handjob-teacher-classroom-ukrainian-school/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>The Cloud Factory</title>
		<link>http://pufone.org/blog/the-cloud-factory/</link>
		<comments>http://pufone.org/blog/the-cloud-factory/#comments</comments>
		<pubDate>Sun, 28 Oct 2007 19:27:21 +0000</pubDate>
		<dc:creator>Cugone</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://pufone.org/blog/the-cloud-factory/</guid>
		<description><![CDATA[
Who needs nature anyway. We can make clouds on our own and maybe we can create ice too
]]></description>
			<content:encoded><![CDATA[<p align="center"><img src="http://pufone.org/blog/wp-content/uploads/the_cloud_factory.jpg" alt="The Cloud Factory"></p>
<p>Who needs nature anyway. We can make clouds on our own and maybe we can <a href="http://pufone.org/blog/arctic-sea-ices-2005-vs-2007/">create ice too</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pufone.org/blog/the-cloud-factory/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>George Bush talks about nation-building</title>
		<link>http://pufone.org/blog/george-bush-nation-building-debate-2000-video/</link>
		<comments>http://pufone.org/blog/george-bush-nation-building-debate-2000-video/#comments</comments>
		<pubDate>Mon, 15 Oct 2007 16:24:18 +0000</pubDate>
		<dc:creator>Cugone</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://pufone.org/blog/george-bush-nation-building-debate-2000-video/</guid>
		<description><![CDATA[This is a short clip from the October 3&#8242;rd, 2000 Presidential Debates that took place in the University of Massachusetts from Boston in which candidate Bush is criticizing the Clinton-Gore administration for being too interventionist:
 
The transcript: If we don&#8217;t stop extending our troops all around the world in nation-building missions, then we&#8217;re going to [...]]]></description>
			<content:encoded><![CDATA[<p>This is a short clip from the October 3&#8242;rd, 2000 Presidential Debates that took place in the University of Massachusetts from Boston in which candidate Bush is criticizing the Clinton-Gore administration for being too interventionist:</p>
<p style="text-align: center;"><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/GGDwvAbx_fg"></param> <embed src="http://www.youtube.com/v/GGDwvAbx_fg" type="application/x-shockwave-flash" width="425" height="350"></embed></object></p>
<p>The transcript: <em>If we don&#8217;t stop extending our troops all around the world in nation-building missions, then we&#8217;re going to have a serious problem coming down the road, and I&#8217;m going to prevent that.</em></p>
<p>Why did he change his perspective? Or was he lying all along? What&#8217;s your thought on this issue?</p>
]]></content:encoded>
			<wfw:commentRss>http://pufone.org/blog/george-bush-nation-building-debate-2000-video/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Arctic sea ices: 2005 vs 2007</title>
		<link>http://pufone.org/blog/arctic-sea-ices-2005-vs-2007/</link>
		<comments>http://pufone.org/blog/arctic-sea-ices-2005-vs-2007/#comments</comments>
		<pubDate>Sat, 13 Oct 2007 17:26:29 +0000</pubDate>
		<dc:creator>Cugone</dc:creator>
				<category><![CDATA[Space]]></category>

		<guid isPermaLink="false">http://pufone.org/blog/arctic-sea-ices-2005-vs-2007/</guid>
		<description><![CDATA[The following animation shows the Arctic sea ices from September 21, 2005 and September 14, 2007. On those two dates the minimum sea ice for the respective year has been recorder.

The images I used to make this animation are courtesy of NASA
There&#8217;s no doubt global warming is happening but is it natural or &#34;man-made&#34;. One [...]]]></description>
			<content:encoded><![CDATA[<p>The following animation shows the Arctic sea ices from September 21, 2005 and September 14, 2007. On those two dates the minimum sea ice for the respective year has been recorder.</p>
<p><a href="http://pufone.org/blog/wp-content/uploads/arctic_sea_ice_2005_vs_2007_2560x1920.gif"><img width="600" height="450" title="Click to zoom: 2560 x 1920, 3,41 MB" alt="Arctic sea ice in 2005 and 2007" src="http://pufone.org/blog/wp-content/uploads/arctic_sea_ice_2005_vs_2007_600x450.gif" /></a></p>
<p>The images I used to make this animation are courtesy of NASA</p>
<p>There&#8217;s no doubt global warming is happening but is it natural or &quot;man-made&quot;. One thing&#8217;s for sure: I&#8217;m not going to wait and see what happens. Prevention is the cure.</p>
<p>This data has been recorded by the Aqua satellite with the AMSR-E module. <a type="NASA.gov - SVS Animation 3456 - 2007 Arctic Sea Ice from AMSR-E with Alaska in Foreground" href="http://svs.gsfc.nasa.gov/vis/a000000/a003400/a003456/" rel="nofollow">More information along with a neat January 1, 2007 &#8211; September 14th time lapse movie of the same region can be found on NASA&#8217;s website</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://pufone.org/blog/arctic-sea-ices-2005-vs-2007/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The President parasite</title>
		<link>http://pufone.org/blog/the-president-parasite/</link>
		<comments>http://pufone.org/blog/the-president-parasite/#comments</comments>
		<pubDate>Mon, 08 Oct 2007 08:52:07 +0000</pubDate>
		<dc:creator>Cugone</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://pufone.org/blog/the-president-parasite/</guid>
		<description><![CDATA[









More of Fredo and Pid&#8217;jin
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img src="http://www.pidjin.net/wp-content/uploads/old/0560001.png" title="So you just sit in the intestins of presidents, and control their political decisions? - Basically, yeah..." alt="So you just sit in the intestins of presidents, and control their political decisions? - Basically, yeah..." /></p>
<p><span id="more-90"></span></p>
<p style="text-align: center;"><img src="http://www.pidjin.net/wp-content/uploads/old/0560002.png" title="So can we bribe you to start an international conflict? Like, with many casualties? - Absolutely not. I'm a politician." alt="So can we bribe you to start an international conflict? Like, with many casualties? - Absolutely not. I'm a politician." /></p>
<p style="text-align: center;"><img src="http://www.pidjin.net/wp-content/uploads/old/0560003.png" title="[...]" alt="[...]" /></p>
<p style="text-align: center;"><img src="http://www.pidjin.net/wp-content/uploads/old/0560004.png" title="Ha ha ha ha ha ha" alt="Ha ha ha ha ha ha" /></p>
<p style="text-align: center;"><img src="http://www.pidjin.net/wp-content/uploads/old/0560005.png" title="Mr. president, why are we attacking this country?? We have no evidence of military activities from their - -They are a threat, trust me. I have a gut feeling." alt="Mr. president, why are we attacking this country?? We have no evidence of military activities from their - -They are a threat, trust me. I have a gut feeling." /></p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-6718131324153374";
google_alternate_color = "FFFFFF";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "image";
//2007-10-10: pufone.org
google_ad_channel = "5303466092";
google_color_border = "E8E7D0";
google_color_bg = "FAFAF0";
google_color_link = "E58712";
google_color_text = "000000";
google_color_url = "9BBB38";
//-->
</script><br />
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p style="text-align: center;">More of <a href="http://www.pidjin.net/" rel="nofollow" target="_blank">Fredo and Pid&#8217;jin</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pufone.org/blog/the-president-parasite/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Viagra from Pfizer vs Generic Sildenafil</title>
		<link>http://pufone.org/blog/viagra-from-pfizer-vs-generic-sildenafil/</link>
		<comments>http://pufone.org/blog/viagra-from-pfizer-vs-generic-sildenafil/#comments</comments>
		<pubDate>Wed, 26 Sep 2007 17:28:27 +0000</pubDate>
		<dc:creator>Cugone</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://pufone.org/blog/viagra-from-pfizer-vs-generic-sildenafil/</guid>
		<description><![CDATA[This is a comparison review of Viagra made by Pfizer and generic Sildenafil pills, written after my own experience with both.
Long story short: Generic Viagra offers me the best bang for the buck, and I buy it from these guys.
First I will give you a little bit of background about the medicine and about my [...]]]></description>
			<content:encoded><![CDATA[<p>This is a comparison review of Viagra made by Pfizer and generic Sildenafil pills, written after my own experience with both.</p>
<p>Long story short: Generic Viagra offers me the best <em>bang</em> for the buck, and I buy it from <a title="Canadian Meds World website" href="http://shop.canadianmedsworld.org/" rel="nofollow">these guys</a>.</p>
<p>First I will give you a little bit of background about the medicine and about my affection.</p>
<p>Sildenafil citrate was discovered by two Pfizer chemists in the Kent research facility from Great Britain in the year 1996. Since &#8216;98, Pfizer Inc. has marketed this substance with the name Viagra as treatment for erection problems. Though I am somewhat ashamed of this, that&#8217;s exactly my problem too. The &quot;symptoms&quot; started 4 years ago when I turned 39. <strike>My penis</strike> I am unable to arouse the organ and maintain erections for pleasurable amounts of time. So I was prescribed by the doc. 50mg of Viagra branded Sildenafil citrate before going to bed. (Yes, you need a prescription for Sildenafil in Europe too).</p>
<p>I&#8217;ve been loyal to Pfizer&#8217;s Viagra and to my doctor&#8217;s pharmacy for quite some time now, but the fact that only one 50mg tablet costs me $18 makes sex less pleasurable at 43. As I grow old the value of sex on drugs diminishes so I decided to try the alternative: Generic Viagra.</p>
<p><span id="more-85"></span></p>
<p>Enough with the pillow talk, let&#8217;s get to some serious experience tales.</p>
<p>I did some research online and found <a title="Canadian Meds World website" href="http://shop.canadianmedsworld.org/" rel="nofollow">this website called Canadian Meds World that sells generic Sildenafil citrate tablets starting $1.79 for the ones containing 50mg</a>. Well that&#8217;s exactly 10 times cheaper than the ones my family doctor gave me. Where&#8217;s the catch? I dug more about this online pharmacy that claims to be owned by &quot;Canadian Pharmacy&quot; and found out that they display fake certificates from Verisign, Pharma Checker, ADA and CidaRx on their product pages and also fake security certified logos from Visa, GeoTrust, Verisign and ScanAlert on their order processing page.  <img width="633" height="225" title="Fake Pharmacy Certification!" alt="Fake logos of pharmacy certification" src="http://pufone.org/blog/wp-content/uploads/2007/09/canadian_pharmacy_fake_certificates.png" /></p>
<p>Now I knew the pharmacy is not entirely legal, but I really wanted the 10 Viagra, 10 Cialis &quot;trial pack&quot; on sale for $69. And guess what? With that I am also eligible for another 4 free Viagra pills. It&#8217;s a risk I was willing to take. $70 dollars is not much in comparison to what I used to pay.</p>
<p>Well, I placed the order and after 15 days the package arrived. Huray! Overall, the order process was good, except for the initial fear of fraud. It&#8217;s prety descrete, in a small cartboard box. Here are the generic Sildelafil and Tadalafil, Viagra resp. Cialis lookalikes:</p>
<p align="center"><a href="http://pufone.org/blog/wp-content/uploads/2007/09/sildenafil_tadalafil.jpg"><img width="128" height="62" title="Click to enlarge" alt="Viagra Generic and Cialis Generic" src="http://pufone.org/blog/wp-content/uploads/2007/09/sildenafil_tadalafil.thumbnail.jpg" /></a></p>
<p>As you can see, they are very much similar to the original brand Viagra I have. The tablets resemble the same shape and size, only the plastic is of lower quality. I&#8217;m not paying for plastic after all&#8230;:</p>
<p align="center"><a href="http://pufone.org/blog/wp-content/uploads/2007/09/viagra_original_pfizer.jpg"><img width="128" height="85" title="Click to enlarge..." alt="Original 4 Viagra tablets pack from Pfizer Inc." src="http://pufone.org/blog/wp-content/uploads/2007/09/viagra_original_pfizer.thumbnail.jpg" /></a></p>
<h4>Effects</h4>
<ul>
<li>I experienced no difference from the original when used the generic Sildenafil.</li>
<li>The Generic is harder to snort, thus it takes a few minutes longer to get into my system. Viagra is harder and thus can be granulated to finer powder.</li>
<li>Though I never tried Cialis before, it took a little longer for it to kick in: 40minutes. This may be the standard timing.</li>
</ul>
<h4>Overall:</h4>
<p>Viagra is Sildenafil citrate and so is Generic Viagra. The difference is who makes them and how expensive they are.</p>
]]></content:encoded>
			<wfw:commentRss>http://pufone.org/blog/viagra-from-pfizer-vs-generic-sildenafil/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>Romanian Gypsy on Fire</title>
		<link>http://pufone.org/blog/gypsy-on-fire-in-spain/</link>
		<comments>http://pufone.org/blog/gypsy-on-fire-in-spain/#comments</comments>
		<pubDate>Wed, 05 Sep 2007 18:57:57 +0000</pubDate>
		<dc:creator>Cugone</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://pufone.org/blog/gypsy-on-fire-in-spain/</guid>
		<description><![CDATA[

   

The video translation is roughly the following:
The man came to Spain about three months ago because he was &#34;promised a job&#34;. It seems he didn&#8217;t get any job and was angry. He wanted the local government to give him money to go back to Romania, but they didn&#8217;t. His way of protesting [...]]]></description>
			<content:encoded><![CDATA[<div align="center"><object width="450" height="370" type="application/x-shockwave-flash" wmode="transparent" data="http://www.liveleak.com/player.swf?autostart=false&amp;token=2ee_1188911269"><param name="movie" value="http://www.liveleak.com/player.swf?autostart=false&amp;token=2ee_1188911269" /><param name="wmode" value="transparent" /><param name="quality" value="high" /></object></div>
<div align="center">
<p><a target="_blank" href="http://pufone.org/blog/wp-content/uploads/gypsy__man_shirt_fire_269x450.jpeg"><img width="96" height="160" align="middle" src="http://pufone.org/blog/wp-content/uploads/gypsy__man_shirt_fire_thumbnail.jpg" alt="Gypsy's Shirt on Fire, acting Cool" title="Zoom (new window): Gypsy's Shirt on Fire, acting Cool" /></a> <a href="http://pufone.org/blog/wp-content/uploads/gypsy_cries_for_help_277x450.jpeg" target="_blank"><img width="98" height="160" align="middle" src="http://pufone.org/blog/wp-content/uploads/gypsy_cries_for_help_thumbnail.jpg" alt="Gypsy on fire starts to panic" title="Zoom (new window): Gypsy on fire starts to panic" /></a> <a target="_blank" href="http://pufone.org/blog/wp-content/uploads/gypsy_cries_for_help_277x450.jpeg"><img width="118" height="160" align="middle" title="Zoom (new window): Romanian Gypsy Man in Burning Flames" alt="Romanian Gypsy Man Burning in Flames" src="http://pufone.org/blog/wp-content/uploads/romanian_gypsy_man_on_fire_thumbnail.jpg" /></a> <a href="http://pufone.org/blog/wp-content/uploads/gypsy_spain_fire_wife_450x358.jpg" target="_blank"><img width="160" height="127" align="middle" src="http://pufone.org/blog/wp-content/uploads/gypsy_spain_fire_wife_thumbnail.jpg" alt="Gypsy wife and child try to help" title="Zoom (new window): Gypsy wife and child try to help" /></a></p>
<div align="left">
<p>The video translation is roughly the following:</p>
<p>The man came to Spain about three months ago because he was &quot;promised a job&quot;. It seems he didn&#8217;t get any job and was angry. He wanted the local government to give him money to go back to Romania, but they didn&#8217;t. His way of protesting was to torch himself. The weeping woman is is wife. Spain pays the ticket to immigrants if they want to go back to their countries, but only if they are from Central or South America, are legally working and with the only condition that they can&#8217;t come back again.</p>
<p>Again, some of your <a href="http://pufone.org/blog/in-gold-we-trust/#comments" target="_blank" type="In Gold We Trust - Comments (new window)">death wishes</a> were granted <img src='http://pufone.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://pufone.org/blog/gypsy-on-fire-in-spain/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Gypsy Grave</title>
		<link>http://pufone.org/blog/gypsy-grave/</link>
		<comments>http://pufone.org/blog/gypsy-grave/#comments</comments>
		<pubDate>Thu, 02 Aug 2007 16:35:36 +0000</pubDate>
		<dc:creator>Cugone</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://pufone.org/blog/gypsy-grave/</guid>
		<description><![CDATA[


The Bulibasha (King) of the Romanian Gypsy Community died last week.
Sounds to me like some of your wishes on gypsies were granted.
Romani Death Rituals and Customs : [...There is inevitably a large crowd at a Romani funeral. It is an occasion for friends and family to unite, to wish the departed a good journey as [...]]]></description>
			<content:encoded><![CDATA[<p><img width="620" height="413" src="http://pufone.org/blog/wp-content/uploads/gypsy_funeral_3_790x526.jpg" alt="Gypsy Grave - Mirror, Shoes and Liquor" title="Gypsy Grave" /></p>
<p><img width="620" height="413" src="http://pufone.org/blog/wp-content/uploads/gypsy_funeral_1_790x526.jpg" alt="Gypsy Grave - Plasma TV and Furniture" title="Gypsy Grave" /></p>
<p><img width="620" height="413" src="http://pufone.org/blog/wp-content/uploads/gypsy_funeral_2_790x526.jpg" alt="Gypsy Grave - Bed, Flowers and Caschet" title="Gipsy Grave" /></p>
<p>The Bulibasha (King) of the Romanian Gypsy Community died last week.<br />
Sounds to me like <a type="In Gold We Trust - Comments" href="http://pufone.org/blog/in-gold-we-trust/#comments">some of your wishes on gypsies</a> were granted.</p>
<p><a title="Patrin: Romani Customs and Traditions" rel="nofollow" target="_blank" href="http://www.geocities.com/~Patrin/death.htm">Romani Death Rituals and Customs</a> : [...There is inevitably a large crowd at a Romani funeral. It is an occasion for friends and family to unite, to wish the departed a good journey as he or she enters a new life. Newspaper accounts sometimes describe the elaborate funerals held for an &quot;important&quot; Rom. It must be remembered that a huge funeral is the rule and not the exception in Roma society, and all Roma are entitled to enormous funerals...]</p>
]]></content:encoded>
			<wfw:commentRss>http://pufone.org/blog/gypsy-grave/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>In Gold We Trust</title>
		<link>http://pufone.org/blog/in-gold-we-trust/</link>
		<comments>http://pufone.org/blog/in-gold-we-trust/#comments</comments>
		<pubDate>Thu, 19 Jul 2007 21:22:27 +0000</pubDate>
		<dc:creator>Cugone</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://pufone.org/blog/in-gold-we-trust/</guid>
		<description><![CDATA[





All are Romanian Gypsies.
]]></description>
			<content:encoded><![CDATA[<p><img width="620" height="827" src="http://pufone.org/blog/wp-content/uploads/gipsy_jesus_cross_792x1056.jpg" alt="Gypsy with a huge cross around his neck" title="Gypsy with a huge cross and chain around his neck" /></p>
<p><img width="620" height="465" src="http://pufone.org/blog/wp-content/uploads/gipsy_group_gold_chains_1056x792.jpg" alt="Gypsies wearing large gold chains" title="Gypsies wearing large gold chains" /></p>
<p><img width="620" height="775" src="http://pufone.org/blog/wp-content/uploads/gipsy_huge_chain_icon_gold_1024x1280.JPG" alt="Romanian Gypsy with ridiculously large chain and icon" title="Romanian Gypsy with ridiculously large chain and icon" /></p>
<p><img width="620" height="928" src="http://pufone.org/blog/wp-content/uploads/the_gold_teeth_king_550x823.jpg" alt="The Gold Teeth King, Mr. Zaharia Bureata" title="The Gold Teeth King, Zaharia Bureata - Another Romanian Gypsy" /></p>
<p><img width="460" height="328" src="http://pufone.org/blog/wp-content/uploads/mr_zaharia_gipsy_gold_tie_460x328.jpg" alt="Mr. Zaharia with a gold and diamond tie at Sunday's Church" title="Mr. Zaharia with a gold and diamond tie at Sunday's Church" /></p>
<p><img width="460" height="292" src="http://pufone.org/blog/wp-content/uploads/mr_zaharia_gold_tie_closeup_460x292.jpg" alt="A closeup to Mr. Zaharia's golden, diamond crusted tie" title="A closeup to Mr. Zaharia's golden, diamond crusted tie" /></p>
<p>All are Romanian Gypsies.</p>
]]></content:encoded>
			<wfw:commentRss>http://pufone.org/blog/in-gold-we-trust/feed/</wfw:commentRss>
		<slash:comments>64</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk (enhanced) (user agent is rejected)
Database Caching 2/12 queries in 0.002 seconds using disk
Object Caching 504/559 objects using disk

Served from: pufone.org @ 2013-05-20 02:13:29 -->