<?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>tecno x tutti</title>
	<atom:link href="http://tecnoxtutti.com/feed" rel="self" type="application/rss+xml" />
	<link>http://tecnoxtutti.com</link>
	<description>game developing, piccoli pezzi di codice</description>
	<lastBuildDate>Mon, 23 Jan 2012 14:57:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Create Favicon With Imagick</title>
		<link>http://tecnoxtutti.com/snippets/create-favicon-with-imagick.html</link>
		<comments>http://tecnoxtutti.com/snippets/create-favicon-with-imagick.html#comments</comments>
		<pubDate>Mon, 23 Jan 2012 14:57:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://tecnoxtutti.com/?p=188</guid>
		<description><![CDATA[&#60;?php try { /*** set the image name ***/ $img = &#039;test.jpg&#039;; /*** read the image into imagick ***/ $Imagick = new Imagick($img); /*** crop and thumbnail the image ***/ $Imagick-&#62;cropThumbnailImage(16,16); /*** set the format to ico ***/ $Imagick-&#62;setFormat(&#039;ico&#039;); /*** write the favicon.ico file ***/ $Imagick-&#62;writeImage(&#34;favicon.ico&#34;); echo &#039;done&#039;; } catch(Exception $e) { echo $e-&#62;getMessage(); } [...]]]></description>
			<content:encoded><![CDATA[<pre>
&lt;?php
    try
    {
        /*** set the image name ***/
        $img = &#039;test.jpg&#039;;

        /*** read the image into imagick ***/
        $Imagick = new Imagick($img);

        /*** crop and thumbnail the image ***/
        $Imagick-&gt;cropThumbnailImage(16,16);

        /*** set the format to ico ***/
        $Imagick-&gt;setFormat(&#039;ico&#039;);

        /*** write the favicon.ico file ***/
        $Imagick-&gt;writeImage(&quot;favicon.ico&quot;);

        echo &#039;done&#039;;
    }
    catch(Exception $e)
    {
        echo $e-&gt;getMessage();
    }
?&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://tecnoxtutti.com/snippets/create-favicon-with-imagick.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Degrees To Radians</title>
		<link>http://tecnoxtutti.com/snippets/degrees-to-radians.html</link>
		<comments>http://tecnoxtutti.com/snippets/degrees-to-radians.html#comments</comments>
		<pubDate>Mon, 23 Jan 2012 14:53:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://tecnoxtutti.com/?p=186</guid>
		<description><![CDATA[/* * @convert degrees to radians * @param float $degrees * @return float */ function DegreeToRadian($degrees) { /*** do the math ***/ return $degrees * pi() / 180; }]]></description>
			<content:encoded><![CDATA[<pre>
/*
 * @convert degrees to radians
 * @param float $degrees
 * @return float
 */
function DegreeToRadian($degrees)
{
    /*** do the math ***/
    return $degrees * pi() / 180;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://tecnoxtutti.com/snippets/degrees-to-radians.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Radians To Degrees</title>
		<link>http://tecnoxtutti.com/snippets/radians-to-degrees.html</link>
		<comments>http://tecnoxtutti.com/snippets/radians-to-degrees.html#comments</comments>
		<pubDate>Mon, 23 Jan 2012 14:52:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://tecnoxtutti.com/?p=184</guid>
		<description><![CDATA[/* * @convert radians to degrees * @param float $radians * @return float */ function radiansToDegrees($radians) { return $radians * 180 / pi(); }]]></description>
			<content:encoded><![CDATA[<pre>
/*
 * @convert radians to degrees
 * @param float $radians
 * @return float
 */
 function radiansToDegrees($radians)
 {
    return $radians * 180 / pi();
 }
</pre>
]]></content:encoded>
			<wfw:commentRss>http://tecnoxtutti.com/snippets/radians-to-degrees.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove all non alpha numeric characters except a space</title>
		<link>http://tecnoxtutti.com/snippets/remove-all-non-alpha-numeric-characters-except-a-space.html</link>
		<comments>http://tecnoxtutti.com/snippets/remove-all-non-alpha-numeric-characters-except-a-space.html#comments</comments>
		<pubDate>Mon, 23 Jan 2012 13:39:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://tecnoxtutti.com/?p=180</guid>
		<description><![CDATA[&#60;?php /** * Remove all non alpha numeric characters except a space * @param string $string The string to cleanse * @return string */ function alphanumericAndSpace( $string ) { return preg_replace(&#039;/[^a-zA-Z0-9\s]/&#039;, &#039;&#039;, $string); } ?&#62;]]></description>
			<content:encoded><![CDATA[<pre>
&lt;?php
    /**
    * Remove all non alpha numeric characters except a space
    * @param    string    $string The string to cleanse
    * @return    string
    */
    function alphanumericAndSpace( $string )
    {
        return preg_replace(&#039;/[^a-zA-Z0-9\s]/&#039;, &#039;&#039;, $string);
    }
?&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://tecnoxtutti.com/snippets/remove-all-non-alpha-numeric-characters-except-a-space.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>objectToArray</title>
		<link>http://tecnoxtutti.com/snippets/172.html</link>
		<comments>http://tecnoxtutti.com/snippets/172.html#comments</comments>
		<pubDate>Mon, 23 Jan 2012 13:34:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://tecnoxtutti.com/?p=172</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><code><br />
<?php<br />
    /*** a complex object ***/<br />
    $obj = new stdClass;<br />
    $obj->foo = new stdClass;<br />
    $obj->foo->baz = 'baz';<br />
    $obj->bar = 'bar';</p>
<p>    /**<br />
    *<br />
    * Convert an object to an array<br />
    *<br />
    * @param    object  $object The object to convert<br />
    * @reeturn      array<br />
    *<br />
    */<br />
    function objectToArray( $object )<br />
    {<br />
        if( !is_object( $object ) &#038;&#038; !is_array( $object ) )<br />
        {<br />
            return $object;<br />
        }<br />
        if( is_object( $object ) )<br />
        {<br />
            $object = get_object_vars( $object );<br />
        }<br />
        return array_map( 'objectToArray', $object );<br />
    }</p>
<p>    /*** convert the array to object ***/<br />
    $array = objectToArray( $obj );</p>
<p>    /*** show the array ***/<br />
    print_r( $array );<br />
?><br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://tecnoxtutti.com/snippets/172.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>auto-pligg</title>
		<link>http://tecnoxtutti.com/software-per-indicizzazione/auto-pligg.html</link>
		<comments>http://tecnoxtutti.com/software-per-indicizzazione/auto-pligg.html#comments</comments>
		<pubDate>Tue, 08 Nov 2011 07:58:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[software per indicizzazione]]></category>
		<category><![CDATA[software-per-indicizzazione-f206/auto-pligg-t70498.html]]></category>

		<guid isPermaLink="false">http://tecnoxtutti.com/?p=166</guid>
		<description><![CDATA[auto-pligg]]></description>
			<content:encoded><![CDATA[<p>auto-pligg</p>
]]></content:encoded>
			<wfw:commentRss>http://tecnoxtutti.com/software-per-indicizzazione/auto-pligg.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List of Free Web Directories</title>
		<link>http://tecnoxtutti.com/marketing/list-of-free-web-directories.html</link>
		<comments>http://tecnoxtutti.com/marketing/list-of-free-web-directories.html#comments</comments>
		<pubDate>Fri, 04 Nov 2011 10:19:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://tecnoxtutti.com/?p=162</guid>
		<description><![CDATA[http://www.onewaytextlink.com/links.php?type=free http://topsitetools.com/auto-submit-website-tools/top-100-google-yahoo-blog-submission-sites.html]]></description>
			<content:encoded><![CDATA[<p>http://www.onewaytextlink.com/links.php?type=free</p>
<p>http://topsitetools.com/auto-submit-website-tools/top-100-google-yahoo-blog-submission-sites.html</p>
]]></content:encoded>
			<wfw:commentRss>http://tecnoxtutti.com/marketing/list-of-free-web-directories.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>translate with bing</title>
		<link>http://tecnoxtutti.com/script/translate-with-bing.html</link>
		<comments>http://tecnoxtutti.com/script/translate-with-bing.html#comments</comments>
		<pubDate>Thu, 03 Nov 2011 13:24:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://tecnoxtutti.com/?p=159</guid>
		<description><![CDATA[echo translateBing($text,$fromLang,$toLang); function translateBing($text, $fromLang, $toLang) { $res = ''; $step = 10000; //10240; for ($i = 0; $i &#60; strlen($text); $i += $step) { $subtext = substr($text, $i, $step); $res .=  do_translateBing($subtext, $fromLang, $toLang); } return $res; } function do_translateBing($text,$fromLang,$toLang){ $AppId = "xxxxx"; $url = 'http://api.microsofttranslator.com/v2/Http.svc/Translate?appId='.$AppId.'&#38;text='.urlencode($text).'&#38;from='.$fromLang.'&#38;to='.$toLang; $ch = curl_init(); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, [...]]]></description>
			<content:encoded><![CDATA[<pre>

echo translateBing($text,$fromLang,$toLang);
function translateBing($text, $fromLang, $toLang) {
$res = '';
$step = 10000; //10240;
for ($i = 0; $i &lt; strlen($text); $i += $step) {
$subtext = substr($text, $i, $step);
$res .=  do_translateBing($subtext, $fromLang, $toLang);
}
return $res;
}

function do_translateBing($text,$fromLang,$toLang){
$AppId = "xxxxx";
$url = 'http://api.microsofttranslator.com/v2/Http.svc/Translate?appId='.$AppId.'&amp;text='.urlencode($text).'&amp;from='.$fromLang.'&amp;to='.$toLang;
$ch = curl_init();
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040608'); //you can use another user agent, please see www.user-agents.org
$result = curl_exec($ch);
curl_close($ch);
$result = str_replace('&amp;lt;', '&lt;', $result);
$result = str_replace('&amp;gt;', '&gt;', $result);
if (strlen($result) == 0 &amp;&amp; strlen($text) &gt; 100) {
//return translateBing(substr($text,0,strlen($text)/2), $fromLang, $toLang).translateBing(substr($text,strlen($text)/2), $fromLang, $toLang);
echo 'troppo grande '.strlen($text);
}
return $result;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://tecnoxtutti.com/script/translate-with-bing.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Non sai cosa scrivere ?</title>
		<link>http://tecnoxtutti.com/marketing/non-sai-cosa-scrivere.html</link>
		<comments>http://tecnoxtutti.com/marketing/non-sai-cosa-scrivere.html#comments</comments>
		<pubDate>Thu, 03 Nov 2011 10:39:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://tecnoxtutti.com/?p=154</guid>
		<description><![CDATA[non sai cosa scrivere ? non riesci a scrivere l&#8217;articolo al giorno ? usiamo i database di articoli .. http://scriptmafia.org/cms/15782-full-wordpress-database-14000-articles-medical-niche.html http://mydatamaster.com/free-downloads/ http://www.hooverwebdesign.com/articles/free-plr-articles.html http://freeaffiliatemarketingtipsandtools.com/free-plr-articles/ http://www.plrarticlesfree.net/download-link-free-plr-articles/ http://forums.digitalpoint.com/showthread.php?t=901403 &#160; (questi son solo link che ho trovato tramite google, non mi prendo alcuna responsabilita&#8217; su cosa trovate) &#160;]]></description>
			<content:encoded><![CDATA[<p>non sai cosa scrivere ? non riesci a scrivere l&#8217;articolo al giorno ?<br />
usiamo i database di articoli ..</p>
<p>http://scriptmafia.org/cms/15782-full-wordpress-database-14000-articles-medical-niche.html</p>
<p>http://mydatamaster.com/free-downloads/</p>
<p>http://www.hooverwebdesign.com/articles/free-plr-articles.html</p>
<p>http://freeaffiliatemarketingtipsandtools.com/free-plr-articles/</p>
<p>http://www.plrarticlesfree.net/download-link-free-plr-articles/</p>
<p>http://forums.digitalpoint.com/showthread.php?t=901403</p>
<p>&nbsp;</p>
<p>(questi son solo link che ho trovato tramite google, non mi prendo alcuna responsabilita&#8217; su cosa trovate)</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://tecnoxtutti.com/marketing/non-sai-cosa-scrivere.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Professioni informatiche</title>
		<link>http://tecnoxtutti.com/fun/professioni-informatiche.html</link>
		<comments>http://tecnoxtutti.com/fun/professioni-informatiche.html#comments</comments>
		<pubDate>Fri, 21 Oct 2011 10:11:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://tecnoxtutti.com/?p=150</guid>
		<description><![CDATA[1) Il Project Manager è una persona che pensa che 9 donne possono fare un bambino in 1 mese. 2) Lo Sviluppatore è la persona che pensa che ci vorranno 18 mesi per fare un bambino 3) Il Coordinatore locale è uno che pensa che 1 donna può fare 9 bambini in un mese. 4) [...]]]></description>
			<content:encoded><![CDATA[<p>1) Il Project Manager è una persona che pensa che 9 donne possono fare un bambino in 1 mese.<br />
2) Lo Sviluppatore è la persona che pensa che ci vorranno 18 mesi per fare un bambino<br />
3) Il Coordinatore locale è uno che pensa che 1 donna può fare 9 bambini in un mese.<br />
4) Il Cliente è uno che non sa perché vuole un bambino.<br />
5) Il Marketing Manager è una persona che pensa di poter fare un bambino anche se non ha un uomo e una donna a disposizione<br />
6) Il Team di Ottimizzazione delle risorse pensa che non ha bisogno di un uomo e di una donna: farà fare il bambino con zero risorse.<br />
7) Il Team di Documentazione pensa che non importa se il bambino nasce, ma che è importante documentare i 9 mesi<br />
 <img src='http://tecnoxtutti.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> L&#8217;Auditor della Qualità è la persona che non è mai contento del processo per fare un bambino.<br />
9) L&#8217;Architetto è la persona che disegna tre diversi modi per fare un bambino senza testarne nessuno.<br />
10) Lo Specialista è la persona che ogni volta che deve fare un bambino cambia processo.<br />
11) Il Consulente è la persona, che dopo una profonda intervista ed analisi con la moglie del cliente, descrive il processo necessario per fare un bambino.</p>
]]></content:encoded>
			<wfw:commentRss>http://tecnoxtutti.com/fun/professioni-informatiche.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

