<?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>id &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/id/</link>
	<description>Feed of posts on WordPress.com tagged "id"</description>
	<pubDate>Mon, 13 Oct 2008 01:20:42 +0000</pubDate>

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

<item>
<title><![CDATA[Identity: I. The Physical]]></title>
<link>http://sarahbias.wordpress.com/?p=22</link>
<pubDate>Sun, 12 Oct 2008 22:40:16 +0000</pubDate>
<dc:creator>sarahbias</dc:creator>
<guid>http://sarahbias.id.wordpress.com/2008/10/12/identity-i-the-physical/</guid>
<description><![CDATA[I. The Physical
I don&#8217;t care what anybody says, what you look like matters&#8230;a lot.  Afte]]></description>
<content:encoded><![CDATA[<p>I. The Physical</p>
<p>I don't care what anybody says, what you look like matters...a lot.  Afterall, we draw a lot of conclusions from what an individual looks like.  Knowing that these assumptions are not always true (and the even existence of them is rather unfair), is pretty well known, but that doesn't keep our personal bias out of the picture.</p>
<p>This leads me to wonder, when people see me, what do they think?</p>
<p>As much as I'd like to know, I really can't answer this question (well, you could, but you'd need to create a survey model, and I don't have the time, nor the money, to actually carry it out), and that's not the purpose of this anyway...</p>
<p>The purpose of this is just a general reflection on the following traits and my self-perception of them.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Identity: Outline]]></title>
<link>http://sarahbias.wordpress.com/?p=14</link>
<pubDate>Sun, 12 Oct 2008 22:16:29 +0000</pubDate>
<dc:creator>sarahbias</dc:creator>
<guid>http://sarahbias.id.wordpress.com/2008/10/12/identity-outline/</guid>
<description><![CDATA[ 
Lately, and perhaps this is due to my current English project, I have been seriously questioning m]]></description>
<content:encoded><![CDATA[<p><!--[if gte mso 9]&#62; Normal   0               false   false   false      EN-US   ZH-CN   X-NONE                                                         MicrosoftInternetExplorer4 &#60;![endif]--><!--[if gte mso 9]&#62; &#60;![endif]--><!--  --><!--[if gte mso 10]&#62; &#60;!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin-top:0in; 	mso-para-margin-right:0in; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} --> <!--[endif]--></p>
<p>Lately, and perhaps this is due to my current English project, I have been seriously questioning my identity as an individual.  I hope, through this series of posts, to flesh out the individual that I am, not really for your benefit, but rather, for my own.</p>
<p>This will be the outline.</p>
<p>My Identity</p>
<p>I. The Physical</p>
<p style="padding-left:30px;">A. Sex<br />
B. Race<br />
C. Age<br />
D. Height<br />
E. Weight<br />
F. Miscellaneous</p>
<p>II. The Psychological</p>
<p style="padding-left:30px;">A. Interpersonal Relationships</p>
<p style="padding-left:60px;">i. Family</p>
<p style="padding-left:90px;">a. Nuclear<br />
b. Extended</p>
<p style="padding-left:60px;">ii. Friends</p>
<p style="padding-left:60px;">iii. Relationships of Necessity</p>
<p style="padding-left:90px;">a. Work<br />
b. School</p>
<p style="padding-left:60px;">iv. Miscellaneous Relationships</p>
<p style="padding-left:30px;">B. Preferences</p>
<p style="padding-left:60px;">i. Likes<br />
ii. Dislikes<br />
iii. Desires<br />
iv. Fears<br />
v. Politics<br />
vi. Religion</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Quick tip on client side IDs in custom controls for javascript use.]]></title>
<link>http://sanzon.wordpress.com/?p=77</link>
<pubDate>Sun, 12 Oct 2008 19:23:56 +0000</pubDate>
<dc:creator>sanzon</dc:creator>
<guid>http://sanzon.id.wordpress.com/2008/10/12/quick-tip-on-client-side-ids-in-custom-controls-for-javascript-use/</guid>
<description><![CDATA[Well one thing I found annoying when developing custom controls that use javascript is what do you d]]></description>
<content:encoded><![CDATA[<p>Well one thing I found annoying when developing custom controls that use javascript is what do you do when you need to give an ID to a html dom object within a custom control in order to use it with javascript!</p>
<p>I thought at first, ok I could do some complex child/parent relationship coding, which I try not to do a ton of, but it works really well at times. In this case it would be too much of a pain. So I came up with another solution to this little problem and it's not hard when you think about it.</p>
<p>ClientID's often look like ct100_SomeID_SomeChildID_ETC</p>
<p>Well if you think about valid ID names, ID's cannot start with a number! So the answer is pretty simple when you think about it.</p>
<p>Simply take the base ID of ct100_SomeID and attach a string such as, "_100jso_myID"</p>
<p>It produces something like:<br />
ct100_SomeID_100jso_ClientSideID</p>
<p>The great part about using a numeric value first is that it's impossible to use a child control named 100jso, so it passes just fine. In case you're wondering jso stands for javascript object in this case. I guess hdo, or html dom object may make more sense. Long as it starts with a number it's safe!</p>
<p>So when you do work with javascript simple call:</p>
<p>document.getElementById('" &#38; myBase.clientID &#38; "_101jso_ClientID"')</p>
<p>Hope this helps</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[USB Floppy Drive]]></title>
<link>http://passatellicrudiallafermatadel2.wordpress.com/?p=252</link>
<pubDate>Sun, 12 Oct 2008 18:29:53 +0000</pubDate>
<dc:creator>Uomo Busta</dc:creator>
<guid>http://passatellicrudiallafermatadel2.id.wordpress.com/2008/10/12/usb-floppy-drive/</guid>
<description><![CDATA[Ma bene bene bene&#8230; compro l&#8217;ardisch nuovo e, 15 giorni dopo, ecco che mi passa sotto il ]]></description>
<content:encoded><![CDATA[<p>Ma bene bene bene... compro l'<em>ardisch</em> nuovo e, 15 giorni dopo, ecco che mi passa sotto il naso sta sboronata di <a href="http://coroflot.com/public/individual_details.asp?individual_id=203999" target="_blank">Thomas O'Connor</a>!<br />
Tra l'altro mi ricorda di brutto quando passavo le mie giornate a <em>x-copy</em>are i dischetti, dei miei compagni delle elementari, coi videogames dell'Amiga500 (ricordo che avevo la 600 e un bel po' di giochi non partivano... @#£&#38;!§).<br />
Bei tempi quelli... pir***ria pura alla tenera età di 9-10 anni... no... forse esagero... forse ero alle medie... vabbè chissene!</p>
<p><img class="alignnone" src="http://www.core77.com/blog/images/floppyUSB.jpg" alt="" width="496" /></p>
<p>Alzi la mano chi vuole prendersi una gran paga a Sensible Soccer... :-D</p>
<p>(<a href="http://www.core77.com/blog/materials/flotspotting_floppy_disk_turned_usb_drive_by_thomas_oconnor__11396.asp" target="_blank">Via</a>)</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[if you're not on the list you're not coming in]]></title>
<link>http://yorksranter.wordpress.com/?p=3643</link>
<pubDate>Sun, 12 Oct 2008 13:48:16 +0000</pubDate>
<dc:creator>yorksranter</dc:creator>
<guid>http://yorksranter.id.wordpress.com/2008/10/12/if-youre-not-on-the-list-youre-not-coming-in/</guid>
<description><![CDATA[OK, so what about those identity cards for (some kinds of) foreign nationals? You&#8217;ll recall th]]></description>
<content:encoded><![CDATA[<p>OK, so what about those identity cards for (some kinds of) foreign nationals? You'll recall that the Government promised, back in the spring, to have them out and operational in 300 days. As late as July, there were no actual contracts for the job, but they did actually manage to bring in Thales to start work. So how's it going?</p>
<p>Well, despite the vast cutback in scope and scale, the decision to base it on crappy existing records, and just to forget about the National ID Register for now (thus obviating the whole point)...<a href="http://www.kablenet.com/kd.nsf/FrontpageRSS/3C8A52E957CF9C88802574D7003BD41B!OpenDocument">it's already over budget by 29% and it's sliding right</a>, from March 2009 to August 2010. Cracking; the element of the project they specially rushed forward in order to get something, anything working on time has now slid so badly that it's caught up with the rest of the project.</p>
<p>Meanwhile, <a href="http://www.guardian.co.uk/money/2008/oct/08/identityfraud.scamsandfraud">the Home Office is issuing 5,400 fraudulent passports a year</a>, among some 200,000 dodgy docs in circulation. Apparently "automated facial recognition" will solve it; this doesn't make very much sense, as surely the main problem is people submitting genuine photographs of themselves and falsifying the biographical section of the form.</p>
<p>Further, face recognition systems are poor enough (remember the one in Newham that never actually caught anyone?) at positive identification; checking the face provided against the one on file. The failure rate in the Home Office 2004 trials was about 30 per cent. But the IPS and DVLA seem to think they can rely on it to guarantee that the same person isn't already registered, and do this by matching faces to a database containing tens of millions of faces, taken under all kinds of different circumstances. What kind of false-positive rate can you expect from <em>that</em>?</p>
<p>In fact, it's worse; if they're trying to detect multiple applications or applications under false names, the evidence of an honest application will be the absence of a match. So the most common failure mode will result in the document being issued anyway, and there is no way to detect this. And you won't be able to assume that a match is proof of fraud either, because of the inevitable false positives; so the chance of successfully getting a passport or driving licence in someone else's name might actually be better.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Appendi le tue scarpe... alla linea telefonica!]]></title>
<link>http://passatellicrudiallafermatadel2.wordpress.com/?p=241</link>
<pubDate>Sun, 12 Oct 2008 12:55:54 +0000</pubDate>
<dc:creator>Uomo Busta</dc:creator>
<guid>http://passatellicrudiallafermatadel2.id.wordpress.com/2008/10/12/appendi-scarpe-linea-telefonica/</guid>
<description><![CDATA[Non ho idea del perché di questo gesto, nonostante le &#8220;leggende metropolitane&#8221; che vogl]]></description>
<content:encoded><![CDATA[<p>Non ho idea del perché di questo gesto, nonostante le "leggende metropolitane" che voglion dargli significato si sprechino: gang che segnano il territorio di appartenenza, bulli che sottraggono <em>fanghe</em> a sfigati ragazzetti per poi lanciarle al cielo, adolescenti intenti a comunicare il proprio <em>ingresso in società</em>, semplice e sano divertimento!</p>
<p>In fondo perché non lasciar appese a marcire pubblicamente un vecchio paio di scarpe che nessuno può andar a recuperare senza tirar fuori dal garage la propria camionetta dei pompieri?</p>
<p><img class="alignnone" src="http://farm1.static.flickr.com/105/274320621_dec9c8372d.jpg" alt="" width="496" /></p>
<p>Alla fine ognuno ha il suo metodo di smaltire i rifiuti: c'è chi lancia sneakers sui fili della luce/del telefono, appunto, o <em>chi</em> le abbandona sistematicamente ad ogni viaggio che compie, o chi, purtroppo, le trasforma in armi di distruzione di massa dopo appena 10 minuti di camminata infestando ambedue gli emisferi... ma questa è un'altra storia, vero?!?!?</p>
<p>Fortunatamente <a href="http://huntermadeit.blogspot.com/2008/10/hang-in-there.html" target="_blank">qualcuno</a> è più attento all'equilibrio del nostro pianeta ed ha pensato di farci crescer dentro delle piante per attirare uccelli, api, farfalle... una porzione di verde volante, insomma... "diabolico" (citazione colta)!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Diseño Industrial. Diseño Sostenible y Gestión de las Nuevas Tecnologías. Charla del Prof. Joan Masarnau]]></title>
<link>http://baudio.wordpress.com/?p=663</link>
<pubDate>Sun, 12 Oct 2008 12:30:00 +0000</pubDate>
<dc:creator>baudio</dc:creator>
<guid>http://baudio.id.wordpress.com/2008/10/12/diseno-industrial-diseno-sostenible-y-gestion-de-las-nuevas-tecnologias-charla-del-prof-joan-masarnau/</guid>
<description><![CDATA[Durante mis años de universidad una de mis principales prioridades fue el asistir a  cuanto semina]]></description>
<content:encoded><![CDATA[<p style="text-align:justify;"><span style="color:#ccffcc;">Durante mis años de universidad una de mis principales prioridades fue el asistir a  cuanto seminario y charla se realizara dentro del marco académico. Una de estas, a la cual llegue por invitación de uno de mis profesores [Pablo Prieto] fue la charla que realizó el profesor <a title="Joan Masarnau" href="http://www.unizar.es/aeipro/finder/PREVENCION%20Y%20SEGURIDAD/EH01.htm" target="_blank">Joan Masarnau</a> de la Universidad Politécnica de Cataluña y Asesor del Parlamento Europeo en la Unidad Estoa. </span></p>
<p style="text-align:justify;"><span style="color:#ccffcc;">Si bien esta charla fue realizada en el año 99, su visión y planteamientos con respecto al rol del diseño industrial y su implicancia en el desarrollo social y económico son en estos días temas presentes.<br />
</span></p>
<p style="text-align:justify;"><span style="color:#ccffcc;">El profesor Masarneau realizó 2 charlas abiertas a alumnado, una en la Universidad de Valparaíso y la otra en la Universidad Ténica Federico Santa María.</span></p>
<p style="text-align:justify;"><span style="color:#ccffcc;">La charla de la cual extraigo estas ideas se realizó en esta última casa de estudios, y fue la primera que se realizó para los alumnos. En ella se plantearon tópicos como el <strong>diseño sostenible</strong> y la <strong>gestión de las nuevas tecnologías</strong>. A continuación expongo el resumen de la primera parte de la exposición, con  algunas ideas  y conceptos que logre recopilar durante la charla y transcritas ahora, casi 10 años despues de la catedra..... bueno, antes no tenía blog.</span></p>
<p style="text-align:justify;"><span style="color:#99cc00;"><strong>"El diseño sostenible se situa en dos mundos, en el técnico y en el natural"</strong></span></p>
<ul style="text-align:justify;">
<li><span style="color:#99cc00;">Técnico: no se puede crear solo.</span></li>
<li><span style="color:#99cc00;">Natural: posee una evolución propia.</span></li>
</ul>
<p style="text-align:justify;"><span style="color:#99cc00;">En estos contextos surge la dicotomía entre el <strong>crecimiento económico</strong> versus la <strong>calidad de vida</strong>.</span></p>
<p style="text-align:justify;"><span style="color:#99cc00;">El mundo industrial se basa entre otros pilares, en la <strong>tradición</strong> [conocimiento tácito - sentido común], y el <strong>procedimiento</strong>, ambas ligadas a las estructuras humanas, económicas y nivel cultural de los pueblos o civilizaciones.</span></p>
<p style="text-align:justify;"><span style="color:#99cc00;">"Las condiciones en que se deben desarrollar los proyectos implican hoy en día la consideración del <strong>Diseño Verde</strong> [producción no contaminante], <strong>Sostenibilidad de la Región</strong> [condiciones naturales, humanas] , <strong>Innovación y Difusión Tecnológica</strong> [mancomunada con la cultura]".</span></p>
<p style="text-align:justify;"><span style="color:#99cc00;">La <strong>racionalidad debe ser hetereogénea</strong>, posibilita la vinculación con distintas ideas, culturas y profesionales. Se consigue mediante el estudio, la observación y la meditación.</span></p>
<p style="text-align:justify;"><span style="color:#99cc00;">El <strong>desarrollo sostenible</strong> es aquel que permite la <strong>satisfacción de una generación actual sin alterar o comprometer las venideras</strong>.</span></p>
<p style="text-align:justify;"><span style="color:#99cc00;">La introducción de productos y servicios produce cambios sociales, ya que los tiempos sociales y tecnológicos no necesariamente marchan en paralelo.</span></p>
<p style="text-align:justify;"><span style="color:#99cc00;">Toda introducción de productos y servicios en una sociedad produce cambios en esta [un caso puede ser las costumbres o la calidad de vida]. Esta velocidad de adaptación de la sociedad ante estos cambios, productos y servicios se traduce en los llamados tiempos sociales y tecnológicos, los que a juicio del profesor Masarneau se encuentran desfazados ya que la evolución ténica es demasiado rápida y no va aparejada [necesariamente] con la capacidad de adaptación o entendimiento de las personas.</span></p>
<p style="text-align:justify;"><span style="color:#99cc00;">Esta situación se revertiría:</span></p>
<ul style="text-align:justify;">
<li><span style="color:#99cc00;">Estableciendo prioridades: para quién voy a diseñar mis productos y a que necesidades voy a apuntar.</span></li>
<li><span style="color:#99cc00;">Educación: para alcanzar una total comprensión de los productos y mejoramiento de los estandares de vida [no voy a construir lavadoras para enviarlas a lugares lejanos en que no existan fuentes apropiadas de energia o no se sepan accionar mecanismos].</span></li>
</ul>
<p style="text-align:justify;"><span style="color:#99cc00;"><strong>Diseñador Industrial &#62; Modo de hacer u operar &#62; Cultura del Diseño</strong></span></p>
<p style="text-align:justify;"><span style="color:#99cc00;"><strong>Ingeniería:Evaluación y realización de proyectos</strong></span></p>
<p style="text-align:justify;"><span style="color:#99cc00;">Diseño Verde:</span></p>
<ul style="text-align:justify;">
<li><span style="color:#99cc00;">Sostenibilidad &#62; Producto respetuoso.</span></li>
<li><span style="color:#99cc00;">Cultura del Proyecto.</span></li>
<li><span style="color:#99cc00;">Cultura Profesional.</span></li>
</ul>
<p style="text-align:justify;"><span style="color:#99cc00;">Progreso &#62; Momento Actual Turbulento</span></p>
<p style="text-align:justify;"><span style="color:#99cc00;">Años 50: Progreso = Modernidad, Industria, Operaciones, Producción, la calidad de vida se sustentaba en el mejoramiento y poseción de productos.</span></p>
<p align="center"><span style="color:#99cc00;">.^.</span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Cum sa te stergi din lista cuiva de messenger]]></title>
<link>http://drody.wordpress.com/?p=167</link>
<pubDate>Sun, 12 Oct 2008 11:53:17 +0000</pubDate>
<dc:creator>drody</dc:creator>
<guid>http://drody.id.wordpress.com/2008/10/12/cum-sa-te-stergi-din-lista-cuiva-de-messenger/</guid>
<description><![CDATA[Ati bagat pe cineva in lista si acum vreti sa-l stergeti?
Cine tot face spam si da masuri intruna?
I]]></description>
<content:encoded><![CDATA[<p><strong>Ati bagat pe cineva in lista si acum vreti sa-l stergeti?</strong></p>
<p><strong>Cine tot face spam si da masuri intruna?</strong></p>
<p><strong>Il puteti sterge din lista foarte simplu cu programul <a href="http://www.had3ss.ro/wp-content/uploads/2008/09/delete-id.zip">asta</a> ,si cel mai bine e sa o faceti cand este offline pentru ca nu va primi mesajul ca dvs l-ati sters din lista .Ca sa nu confundati offline cu invisible,intrati pe http://yascuns.ro si vedeti daca este offline sau invizibil.</strong></p>
<p><strong>Programul este simplu de folosit si nu are virusi ,trojani sau alte minuni de ganu' asta :) .</strong></p>
<p><strong>MULT SUCCES! DACA INTAMPINATI PROBLEME,LASATI UN COMENTARIU SI VOI RASPUNDE !!! </strong></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Wordpress Mu Google XML Sitemap Solution]]></title>
<link>http://famulus.wordpress.com/?p=39</link>
<pubDate>Sun, 12 Oct 2008 04:25:05 +0000</pubDate>
<dc:creator>Warren.rior</dc:creator>
<guid>http://famulus.id.wordpress.com/2008/10/12/wordpress-mu-google-xml-sitemap/</guid>
<description><![CDATA[After download the Google Sitemaps Generator, I thought it might easy to install on WordPress mu sys]]></description>
<content:encoded><![CDATA[<p>After download the <a href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/" target="_blank">Google Sitemaps Generator</a>, I thought it might easy to install on <a href="http://postedpost.com/tag/wordpress/">Wordpress</a> <a href="http://postedpost.com/tag/mu-system/"><strong>mu system</strong></a>. But I am wrong, not that simple, I have to change lots of place to make it useful. Here is what I do and why:</p>
<h2>First thing first, install:</h2>
<p>Install the <a href="http://postedpost.com/tag/sitemap-generator/"><strong>sitemap generator</strong></a> is same as install any other <a href="http://postedpost.com/tag/plugin/">plugin</a>, unzip and put it into <a href="http://postedpost.com/tag/plugin/">plugin</a> <a href="http://postedpost.com/tag/folder/">folder</a>, like:</p>
<p><strong>\wp-content\<a href="http://postedpost.com/tag/plugin/">plugins</a>\<a href="http://postedpost.com/tag/google-sitemap-generator/"><big>google-sitemap-generator</big></a></strong></p>
<p>I am not put it into <strong><a href="http://postedpost.com/tag/mu/">mu</a>-<a href="http://postedpost.com/tag/plugin/">plugins</a></strong> <a href="http://postedpost.com/tag/folder/">folder</a>, because I do not want <a href="http://postedpost.com/tag/sitemap/">sitemap</a>.<a href="http://postedpost.com/tag/xml/">xml</a> for all <a href="http://postedpost.com/tag/blog/">blogs</a>, I need give blogger choice, they can active it when they need <a href="http://postedpost.com/tag/sitemap/">sitemap</a>. (Not everyone like <a href="http://postedpost.com/tag/sitemap/">sitemap</a> IMO)<!--more--></p>
<h2>Now, Lets Make Some Change</h2>
<h3><a href="http://postedpost.com/tag/function/">function</a> GetHomePath()</h3>
<p>Find <a href="http://postedpost.com/tag/function/">function</a> <strong>GetHomePath</strong> at <strong><a href="http://postedpost.com/tag/sitemap/">sitemap</a>-core.<a href="http://postedpost.com/tag/php/">php</a></strong> <a href="http://postedpost.com/tag/file/">file</a>, this <a href="http://postedpost.com/tag/function/">function</a> return the <a href="http://postedpost.com/tag/value/">value</a> of <a href="http://postedpost.com/tag/blog/">blog</a> root, it works fine for single <a href="http://postedpost.com/tag/wordpress/">wordpress</a> <a href="http://postedpost.com/tag/system/">system</a>, but for <a href="http://postedpost.com/tag/mu-system/"><strong>mu system</strong></a>, it will cause mess, as author recommend, we change this <a href="http://postedpost.com/tag/function/">function</a>, before return $res;</p>
<blockquote><p>Global $blog_id;<br />
if ($blog_id != 1) $res .= 'wp-content/<a href="http://postedpost.com/tag/blog/">blogs</a>.dir/' . $blog_id . '/<a href="http://postedpost.com/tag/file/">files</a>/';<br />
return $res;</p></blockquote>
<p>After change this <a href="http://postedpost.com/tag/function/">function</a>, the <strong><a href="http://postedpost.com/tag/sitemap/">sitemap</a>.<a href="http://postedpost.com/tag/xml/">xml</a></strong> and <strong><a href="http://postedpost.com/tag/sitemap/">sitemap</a>.<a href="http://postedpost.com/tag/xml/">xml</a>.gz</strong> <a href="http://postedpost.com/tag/file/">file</a> will be placed at <a href="http://postedpost.com/tag/blog/">blog</a> <a href="http://postedpost.com/tag/file/">file</a> <a href="http://postedpost.com/tag/folder/">folder</a>.</p>
<h3><a href="http://postedpost.com/tag/remove/">Remove</a> <a href="http://postedpost.com/tag/user/">user</a> ability to make <a href="http://postedpost.com/tag/key/">key</a> setting changes</h3>
<p><a href="http://postedpost.com/tag/wordpress/">WordPress</a> <a href="http://postedpost.com/tag/mu/">mu</a> is a multiuser <a href="http://postedpost.com/tag/system/">system</a>, you should not allow <a href="http://postedpost.com/tag/user/">user</a> to change some <a href="http://postedpost.com/tag/key/">key</a> <a href="http://postedpost.com/tag/sitemap/">sitemap</a> setting, open <strong><a href="http://postedpost.com/tag/sitemap/">sitemap</a>-ui.<a href="http://postedpost.com/tag/php/">php</a></strong> <a href="http://postedpost.com/tag/file/">file</a>,</p>
<p><strong><a href="http://postedpost.com/tag/remove/">Remove</a></strong></p>
<blockquote><p>} <a href="http://postedpost.com/tag/else/">else</a> if($k=="sm_b_location_mode") {<br />
$<a href="http://postedpost.com/tag/tmp/">tmp</a>=(string) $_POST[$k];<br />
$<a href="http://postedpost.com/tag/tmp/">tmp</a>=strtolower($<a href="http://postedpost.com/tag/tmp/">tmp</a>);<br />
if($<a href="http://postedpost.com/tag/tmp/">tmp</a>=="<a href="http://postedpost.com/tag/auto/">auto</a>" &#124;&#124; $<a href="http://postedpost.com/tag/tmp/">tmp</a>="manual") $this-&#62;<a href="http://postedpost.com/tag/sg/">sg</a>-&#62;_options[$k]=$<a href="http://postedpost.com/tag/tmp/">tmp</a>;<br />
<a href="http://postedpost.com/tag/else/">else</a> $this-&#62;<a href="http://postedpost.com/tag/sg/">sg</a>-&#62;_options[$k]="<a href="http://postedpost.com/tag/auto/">auto</a>";</p></blockquote>
<p>This is for decide where the <a href="http://postedpost.com/tag/sitemap/">sitemap</a>.<a href="http://postedpost.com/tag/xml/">xml</a> placed, do not need for <a href="http://postedpost.com/tag/mu-system/"><strong>mu system</strong></a></p>
<p><strong><a href="http://postedpost.com/tag/remove/">Remove</a></strong></p>
<blockquote><p>If($this-&#62;<a href="http://postedpost.com/tag/sg/">sg</a>-&#62;<a href="http://postedpost.com/tag/getoption/">GetOption</a>('sm_b_robots')===<a href="http://postedpost.com/tag/true/">true</a>) {<br />
if($this-&#62;<a href="http://postedpost.com/tag/sg/">sg</a>-&#62;WriteRobotsFile()) {<br />
$message.=str_replace("%s",$this-&#62;<a href="http://postedpost.com/tag/sg/">sg</a>-&#62;GetRobotsFileUrl(),__("&#60;a href=\"%s\"&#62;<a href="http://postedpost.com/tag/robots/">Robots</a>.<a href="http://postedpost.com/tag/txt/">txt</a>&#60;/a&#62; <a href="http://postedpost.com/tag/file/">file</a> saved",'<a href="http://postedpost.com/tag/sitemap/">sitemap</a>')) . "&#60;<a href="http://postedpost.com/tag/br/">br</a> /&#62;";<br />
} <a href="http://postedpost.com/tag/else/">else</a> {<br />
$message.=__("Error while saving <a href="http://postedpost.com/tag/robots/">Robots</a>.<a href="http://postedpost.com/tag/txt-file/"><strong>txt file</strong></a>",'<a href="http://postedpost.com/tag/sitemap/">sitemap</a>') . "&#60;<a href="http://postedpost.com/tag/br/">br</a> /&#62;";<br />
}<br />
}</p></blockquote>
<p>This is for how to change <a href="http://postedpost.com/tag/robots/">robots</a>.<a href="http://postedpost.com/tag/txt-file/"><strong>txt file</strong></a>, as we know, for <a href="http://postedpost.com/tag/mu-system/"><strong>mu system</strong></a>, <a href="http://postedpost.com/tag/robots/">robots</a>.<a href="http://postedpost.com/tag/txt-file/"><strong>txt file</strong></a> is generated on the fly, so cannot allow <a href="http://postedpost.com/tag/user/">user</a> to change it.</p>
<p><strong><a href="http://postedpost.com/tag/remove/">Remove</a></strong></p>
<blockquote><p><strong>&#60;<a href="http://postedpost.com/tag/li/">li</a>&#62;</strong></p></blockquote>
<blockquote><p>&#60;<a href="http://postedpost.com/tag/input-type/"><strong>input type</strong></a>="checkbox" <a href="http://postedpost.com/tag/id/">id</a>="sm_b_robots" <a href="http://postedpost.com/tag/name/">name</a>="sm_b_robots" &#60;?<a href="http://postedpost.com/tag/php-echo/"><strong>php echo</strong></a> ($this-&#62;<a href="http://postedpost.com/tag/sg/">sg</a>-&#62;<a href="http://postedpost.com/tag/getoption/">GetOption</a>("sm_b_robots")==<a href="http://postedpost.com/tag/true/">true</a>?"<a href="http://postedpost.com/tag/checked/">checked</a>=\"<a href="http://postedpost.com/tag/checked/">checked</a>\"":"") ?&#62; /&#62;<br />
&#60;?<a href="http://postedpost.com/tag/php-echo/"><strong>php echo</strong></a> str_replace('%s',(file_exists($this-&#62;<a href="http://postedpost.com/tag/sg/">sg</a>-&#62;GetRobotsFilePath())?'&#60;a href="' . $this-&#62;<a href="http://postedpost.com/tag/sg/">sg</a>-&#62;GetRobotsFileUrl() . '"&#62;<a href="http://postedpost.com/tag/robots/">robots</a>.<a href="http://postedpost.com/tag/txt/">txt</a>&#60;/a&#62;':'<a href="http://postedpost.com/tag/robots/">robots</a>.<a href="http://postedpost.com/tag/txt/">txt</a>'),__("Modify or create %s <a href="http://postedpost.com/tag/file/">file</a> in <a href="http://postedpost.com/tag/blog/">blog</a> root which contains the <a href="http://postedpost.com/tag/sitemap/">sitemap</a> <a href="http://postedpost.com/tag/location/">location</a>.",'<a href="http://postedpost.com/tag/sitemap/">sitemap</a>')); ?&#62;</p>
<p>&#60;<a href="http://postedpost.com/tag/br/">br</a> /&#62;<br />
&#60;?<a href="http://postedpost.com/tag/php/">php</a> _e("<a href="http://postedpost.com/tag/file/">File</a> permissions: ",'<a href="http://postedpost.com/tag/sitemap/">sitemap</a>');<br />
$f = $this-&#62;<a href="http://postedpost.com/tag/sg/">sg</a>-&#62;GetRobotsFilePath();<br />
$link = ' &#60;a href="' . $this-&#62;<a href="http://postedpost.com/tag/sg/">sg</a>-&#62;GetRedirectLink("<a href="http://postedpost.com/tag/sitemap/">sitemap</a>-help-<a href="http://postedpost.com/tag/options/">options</a>-<a href="http://postedpost.com/tag/robots/">robots</a>",'<a href="http://postedpost.com/tag/sitemap/">sitemap</a>') . '"&#62;' . __("Learn more",'<a href="http://postedpost.com/tag/sitemap/">sitemap</a>') . '&#60;/a&#62;';<br />
if(file_exists($f)) {<br />
if(is_writable($f)) {<br />
_e("OK, <a href="http://postedpost.com/tag/robots/">robots</a>.<a href="http://postedpost.com/tag/txt/">txt</a> is <a href="http://postedpost.com/tag/writable/">writable</a>.",'<a href="http://postedpost.com/tag/sitemap/">sitemap</a>');<br />
} <a href="http://postedpost.com/tag/else/">else</a> {<br />
<a href="http://postedpost.com/tag/echo/">echo</a> __("Error, <a href="http://postedpost.com/tag/robots/">robots</a>.<a href="http://postedpost.com/tag/txt/">txt</a> is not <a href="http://postedpost.com/tag/writable/">writable</a>.",'<a href="http://postedpost.com/tag/sitemap/">sitemap</a>') . $link;<br />
}<br />
} <a href="http://postedpost.com/tag/else/">else</a> {<br />
if(is_writable(dirname($f))) {<br />
_e("OK, <a href="http://postedpost.com/tag/robots/">robots</a>.<a href="http://postedpost.com/tag/txt/">txt</a> doesn't exist but the directory is <a href="http://postedpost.com/tag/writable/">writable</a>.",'<a href="http://postedpost.com/tag/sitemap/">sitemap</a>');<br />
} <a href="http://postedpost.com/tag/else/">else</a> {<br />
<a href="http://postedpost.com/tag/echo/">echo</a> __("Error, <a href="http://postedpost.com/tag/robots/">robots</a>.<a href="http://postedpost.com/tag/txt/">txt</a> doesn't exist and the directory is not <a href="http://postedpost.com/tag/writable/">writable</a>",'<a href="http://postedpost.com/tag/sitemap/">sitemap</a>') . $link;<br />
}<br />
}<br />
?&#62;<br />
&#60;/<a href="http://postedpost.com/tag/li/">li</a>&#62;</p></blockquote>
<p>This is the UI (<a href="http://postedpost.com/tag/user/">User</a> Interface) part of <a href="http://postedpost.com/tag/robots/">robots</a>.<a href="http://postedpost.com/tag/txt-file/"><strong>txt file</strong></a> change, if you do not <a href="http://postedpost.com/tag/user/">user</a> change it, so don't let them see it.</p>
<p><strong><a href="http://postedpost.com/tag/remove/">Remove</a></strong></p>
<blockquote><p>&#60;!-- <a href="http://postedpost.com/tag/location/">Location</a> <a href="http://postedpost.com/tag/options/">Options</a> --&#62;<br />
&#60;<a href="http://postedpost.com/tag/div-class/"><strong>div class</strong></a>="dbx-<a href="http://postedpost.com/tag/b/">b</a>-ox-wrapper"&#62;<br />
&#60;fieldset <a href="http://postedpost.com/tag/id/">id</a>="sm_location" <a href="http://postedpost.com/tag/class/">class</a>="dbx-box"&#62;<br />
&#60;<a href="http://postedpost.com/tag/div-class/"><strong>div class</strong></a>="dbx-h-andle-wrapper"&#62;<br />
&#60;h3 <a href="http://postedpost.com/tag/class/">class</a>="dbx-handle"&#62;&#60;?<a href="http://postedpost.com/tag/php/">php</a> _e('<a href="http://postedpost.com/tag/location/">Location</a> of your <a href="http://postedpost.com/tag/sitemap-file/"><strong>sitemap file</strong></a>', '<a href="http://postedpost.com/tag/sitemap/">sitemap</a>') ?&#62;&#60;/h3&#62;<br />
&#60;/<a href="http://postedpost.com/tag/div/">div</a>&#62;<br />
&#60;<a href="http://postedpost.com/tag/div-class/"><strong>div class</strong></a>="dbx-c-ontent-wrapper"&#62;<br />
&#60;<a href="http://postedpost.com/tag/div-class/"><strong>div class</strong></a>="dbx-content"&#62;<br />
&#60;<a href="http://postedpost.com/tag/div/">div</a>&#62;<br />
&#60;<a href="http://postedpost.com/tag/b/">b</a>&#62;&#60;<a href="http://postedpost.com/tag/label/">label</a> for="sm_location_useauto"&#62;&#60;<a href="http://postedpost.com/tag/input-type/"><strong>input type</strong></a>="radio" <a href="http://postedpost.com/tag/id/">id</a>="sm_location_useauto" <a href="http://postedpost.com/tag/name/">name</a>="sm_b_location_mode" <a href="http://postedpost.com/tag/value/">value</a>="<a href="http://postedpost.com/tag/auto/">auto</a>" &#60;?<a href="http://postedpost.com/tag/php-echo/"><strong>php echo</strong></a> ($this-&#62;<a href="http://postedpost.com/tag/sg/">sg</a>-&#62;<a href="http://postedpost.com/tag/getoption/">GetOption</a>("b_location_mode")=="<a href="http://postedpost.com/tag/auto/">auto</a>"?"<a href="http://postedpost.com/tag/checked/">checked</a>=\"<a href="http://postedpost.com/tag/checked/">checked</a>\"":"") ?&#62; /&#62; &#60;?<a href="http://postedpost.com/tag/php/">php</a> _e('Automatic detection','<a href="http://postedpost.com/tag/sitemap/">sitemap</a>') ?&#62;&#60;/<a href="http://postedpost.com/tag/label/">label</a>&#62;&#60;/<a href="http://postedpost.com/tag/b/">b</a>&#62;<br />
&#60;ul&#62;<br />
&#60;<a href="http://postedpost.com/tag/li/">li</a>&#62;<br />
&#60;<a href="http://postedpost.com/tag/label/">label</a> for="sm_b_filename"&#62;<br />
&#60;?<a href="http://postedpost.com/tag/php/">php</a> _e('<a href="http://postedpost.com/tag/filename/">Filename</a> of the <a href="http://postedpost.com/tag/sitemap-file/"><strong>sitemap file</strong></a>', '<a href="http://postedpost.com/tag/sitemap/">sitemap</a>') ?&#62;<br />
&#60;<a href="http://postedpost.com/tag/input-type/"><strong>input type</strong></a>="text" <a href="http://postedpost.com/tag/id/">id</a>="sm_b_filename" <a href="http://postedpost.com/tag/name/">name</a>="sm_b_filename" <a href="http://postedpost.com/tag/value/">value</a>="&#60;?<a href="http://postedpost.com/tag/php-echo/"><strong>php echo</strong></a> $this-&#62;<a href="http://postedpost.com/tag/sg/">sg</a>-&#62;<a href="http://postedpost.com/tag/getoption/">GetOption</a>("b_filename"); ?&#62;" /&#62;<br />
&#60;/<a href="http://postedpost.com/tag/label/">label</a>&#62;&#60;<a href="http://postedpost.com/tag/br/">br</a> /&#62;<br />
&#60;?<a href="http://postedpost.com/tag/php/">php</a> _e('Detected Path', '<a href="http://postedpost.com/tag/sitemap/">sitemap</a>') ?&#62;: &#60;?<a href="http://postedpost.com/tag/php-echo/"><strong>php echo</strong></a> $this-&#62;<a href="http://postedpost.com/tag/sg/">sg</a>-&#62;getXmlPath(<a href="http://postedpost.com/tag/true/">true</a>); ?&#62;&#60;<a href="http://postedpost.com/tag/br/">br</a> /&#62;&#60;?<a href="http://postedpost.com/tag/php/">php</a> _e('Detected <a href="http://postedpost.com/tag/url/">URL</a>', '<a href="http://postedpost.com/tag/sitemap/">sitemap</a>') ?&#62;: &#60;a href="&#60;?<a href="http://postedpost.com/tag/php-echo/"><strong>php echo</strong></a> $this-&#62;<a href="http://postedpost.com/tag/sg/">sg</a>-&#62;getXmlUrl(<a href="http://postedpost.com/tag/true/">true</a>); ?&#62;"&#62;&#60;?<a href="http://postedpost.com/tag/php-echo/"><strong>php echo</strong></a> $this-&#62;<a href="http://postedpost.com/tag/sg/">sg</a>-&#62;getXmlUrl(<a href="http://postedpost.com/tag/true/">true</a>); ?&#62;&#60;/a&#62;<br />
&#60;/<a href="http://postedpost.com/tag/li/">li</a>&#62;<br />
&#60;/ul&#62;<br />
&#60;/<a href="http://postedpost.com/tag/div/">div</a>&#62;<br />
&#60;<a href="http://postedpost.com/tag/div/">div</a>&#62;<br />
&#60;<a href="http://postedpost.com/tag/b/">b</a>&#62;&#60;<a href="http://postedpost.com/tag/label/">label</a> for="sm_location_usemanual"&#62;&#60;<a href="http://postedpost.com/tag/input-type/"><strong>input type</strong></a>="radio" <a href="http://postedpost.com/tag/id/">id</a>="sm_location_usemanual" <a href="http://postedpost.com/tag/name/">name</a>="sm_b_location_mode" <a href="http://postedpost.com/tag/value/">value</a>="manual" &#60;?<a href="http://postedpost.com/tag/php-echo/"><strong>php echo</strong></a> ($this-&#62;<a href="http://postedpost.com/tag/sg/">sg</a>-&#62;<a href="http://postedpost.com/tag/getoption/">GetOption</a>("b_location_mode")=="manual"?"<a href="http://postedpost.com/tag/checked/">checked</a>=\"<a href="http://postedpost.com/tag/checked/">checked</a>\"":"") ?&#62; /&#62; &#60;?<a href="http://postedpost.com/tag/php/">php</a> _e('Custom <a href="http://postedpost.com/tag/location/">location</a>','<a href="http://postedpost.com/tag/sitemap/">sitemap</a>') ?&#62;&#60;/<a href="http://postedpost.com/tag/label/">label</a>&#62;&#60;/<a href="http://postedpost.com/tag/b/">b</a>&#62;<br />
&#60;ul&#62;<br />
&#60;<a href="http://postedpost.com/tag/li/">li</a>&#62;<br />
&#60;<a href="http://postedpost.com/tag/label/">label</a> for="sm_b_filename_manual"&#62;<br />
&#60;?<a href="http://postedpost.com/tag/php/">php</a> _e('Absolute or relative path to the <a href="http://postedpost.com/tag/sitemap-file/"><strong>sitemap file</strong></a>, including <a href="http://postedpost.com/tag/name/">name</a>.','<a href="http://postedpost.com/tag/sitemap/">sitemap</a>');<br />
<a href="http://postedpost.com/tag/echo/">echo</a> "&#60;<a href="http://postedpost.com/tag/br/">br</a> /&#62;";<br />
_e('Example','<a href="http://postedpost.com/tag/sitemap/">sitemap</a>');<br />
<a href="http://postedpost.com/tag/echo/">echo</a> ": /var/www/htdocs/<a href="http://postedpost.com/tag/wordpress/">wordpress</a>/<a href="http://postedpost.com/tag/sitemap/">sitemap</a>.<a href="http://postedpost.com/tag/xml/">xml</a>"; ?&#62;&#60;<a href="http://postedpost.com/tag/br/">br</a> /&#62;<br />
&#60;<a href="http://postedpost.com/tag/input/">input</a> style="width:70%" <a href="http://postedpost.com/tag/type/">type</a>="text" <a href="http://postedpost.com/tag/id/">id</a>="sm_b_filename_manual" <a href="http://postedpost.com/tag/name/">name</a>="sm_b_filename_manual" <a href="http://postedpost.com/tag/value/">value</a>="&#60;?<a href="http://postedpost.com/tag/php-echo/"><strong>php echo</strong></a> (!$this-&#62;<a href="http://postedpost.com/tag/sg/">sg</a>-&#62;<a href="http://postedpost.com/tag/getoption/">GetOption</a>("b_filename_manual")?$this-&#62;<a href="http://postedpost.com/tag/sg/">sg</a>-&#62;getXmlPath():$this-&#62;<a href="http://postedpost.com/tag/sg/">sg</a>-&#62;<a href="http://postedpost.com/tag/getoption/">GetOption</a>("b_filename_manual")); ?&#62;" /&#62;<br />
&#60;/<a href="http://postedpost.com/tag/label/">label</a>&#62;<br />
&#60;/<a href="http://postedpost.com/tag/li/">li</a>&#62;<br />
&#60;<a href="http://postedpost.com/tag/li/">li</a>&#62;<br />
&#60;<a href="http://postedpost.com/tag/label/">label</a> for="sm_b_fileurl_manual"&#62;<br />
&#60;?<a href="http://postedpost.com/tag/php/">php</a> _e('Complete <a href="http://postedpost.com/tag/url/">URL</a> to the <a href="http://postedpost.com/tag/sitemap-file/"><strong>sitemap file</strong></a>, including <a href="http://postedpost.com/tag/name/">name</a>.','<a href="http://postedpost.com/tag/sitemap/">sitemap</a>');<br />
<a href="http://postedpost.com/tag/echo/">echo</a> "&#60;<a href="http://postedpost.com/tag/br/">br</a> /&#62;";<br />
_e('Example','<a href="http://postedpost.com/tag/sitemap/">sitemap</a>');<br />
<a href="http://postedpost.com/tag/echo/">echo</a> ": http://www.yourdomain.com/<a href="http://postedpost.com/tag/sitemap/">sitemap</a>.<a href="http://postedpost.com/tag/xml/">xml</a>"; ?&#62;&#60;<a href="http://postedpost.com/tag/br/">br</a> /&#62;<br />
&#60;<a href="http://postedpost.com/tag/input/">input</a> style="width:70%" <a href="http://postedpost.com/tag/type/">type</a>="text" <a href="http://postedpost.com/tag/id/">id</a>="sm_b_fileurl_manual" <a href="http://postedpost.com/tag/name/">name</a>="sm_b_fileurl_manual" <a href="http://postedpost.com/tag/value/">value</a>="&#60;?<a href="http://postedpost.com/tag/php-echo/"><strong>php echo</strong></a> (!$this-&#62;<a href="http://postedpost.com/tag/sg/">sg</a>-&#62;<a href="http://postedpost.com/tag/getoption/">GetOption</a>("b_fileurl_manual")?$this-&#62;<a href="http://postedpost.com/tag/sg/">sg</a>-&#62;getXmlUrl():$this-&#62;<a href="http://postedpost.com/tag/sg/">sg</a>-&#62;<a href="http://postedpost.com/tag/getoption/">GetOption</a>("b_fileurl_manual")); ?&#62;" /&#62;<br />
&#60;/<a href="http://postedpost.com/tag/label/">label</a>&#62;<br />
&#60;/<a href="http://postedpost.com/tag/li/">li</a>&#62;<br />
&#60;/ul&#62;<br />
&#60;/<a href="http://postedpost.com/tag/div/">div</a>&#62;<br />
&#60;/<a href="http://postedpost.com/tag/div/">div</a>&#62;<br />
&#60;/<a href="http://postedpost.com/tag/div/">div</a>&#62;<br />
&#60;/fieldset&#62;<br />
&#60;/<a href="http://postedpost.com/tag/div/">div</a>&#62;</p></blockquote>
<p>This part is for choose <a href="http://postedpost.com/tag/sitemap/">sitemap</a>.<a href="http://postedpost.com/tag/xml/">xml</a> <a href="http://postedpost.com/tag/location/">location</a>, same same, if you do not want <a href="http://postedpost.com/tag/user/">user</a> change it, better not allow them see it.</p>
<h3>Change <a href="http://postedpost.com/tag/default/">Default</a> <a href="http://postedpost.com/tag/settings/">Settings</a></h3>
<p>This is not must, but I recommend you change it, to make your <a href="http://postedpost.com/tag/user/">user</a> life easier</p>
<p>On <strong><a href="http://postedpost.com/tag/sitemap/">sitemap</a>-core.<a href="http://postedpost.com/tag/php/">php</a></strong> <a href="http://postedpost.com/tag/file/">file</a>, you can find <a href="http://postedpost.com/tag/default/">default</a> <a href="http://postedpost.com/tag/value/">value</a> at <a href="http://postedpost.com/tag/function/">function</a> <strong>InitOptions</strong></p>
<p><strong>The change I made are:</strong></p>
<blockquote><p>$this-&#62;_options["sm_b_prio_provider"]="GoogleSitemapGeneratorPrioByAverageProvider";</p></blockquote>
<p>The provider for automatic priority calculation, after I test, <strong><a href="http://postedpost.com/tag/google-sitemap-generator/"><big>Google Sitemap Generator</big></a> Prio By Average Provider</strong> is working better than <strong><a href="http://postedpost.com/tag/google-sitemap-generator/"><big>Google Sitemap Generator</big></a> Prio By Count Provider</strong></p>
<blockquote><p>$this-&#62;_options["sm_b_pingyahoo"]=<a href="http://postedpost.com/tag/true/">true</a>; //<a href="http://postedpost.com/tag/auto/">Auto</a> ping <a href="http://postedpost.com/tag/yahoo/">YAHOO</a><br />
$this-&#62;_options["sm_b_yahookey"]='Q89D23fV34GSeqHjRl8o5i55ojmxrmwJPyMa_195mBnBaK6Vp_NB8y5WjnIoamjikw--'; //<a href="http://postedpost.com/tag/yahoo/">YAHOO</a> Application <a href="http://postedpost.com/tag/key/">Key</a>, <a href="http://postedpost.com/tag/default/">default</a> for all</p></blockquote>
<p><a href="http://postedpost.com/tag/default/">Default</a> the <a href="http://postedpost.com/tag/sitemap/">sitemap</a> not ping <a href="http://postedpost.com/tag/yahoo/">Yahoo</a> after generated, because you need a <a href="http://postedpost.com/tag/yahoo/">yahoo</a> <a href="http://postedpost.com/tag/key/">key</a> to ping it, so I put a <a href="http://postedpost.com/tag/key/">key</a> (get free form <a href="http://postedpost.com/tag/yahoo/">yahoo</a>) as <a href="http://postedpost.com/tag/default/">default</a>, I suggest you get one free <a href="http://postedpost.com/tag/key/">key</a> from <a href="http://postedpost.com/tag/yahoo/">yahoo</a> too and put there, of course if you like you may keep my <a href="http://postedpost.com/tag/key/">key</a>, not a big deal.</p>
<h2>Done</h2>
<p>Ok, it's half done, all the change on the <a href="http://postedpost.com/tag/plugin/">plugin</a> is finished, if <a href="http://postedpost.com/tag/user/">user</a> active the <a href="http://postedpost.com/tag/plugin/">plugin</a> at them <a href="http://postedpost.com/tag/plugin/">plugin</a> page, a <a href="http://postedpost.com/tag/sitemap/">sitemap</a>.<a href="http://postedpost.com/tag/xml/">xml</a> and a <a href="http://postedpost.com/tag/sitemap/">sitemap</a>.<a href="http://postedpost.com/tag/xml/">xml</a>.gz (a zip verison) will be create and placed into the <a href="http://postedpost.com/tag/blog/">blog</a> <a href="http://postedpost.com/tag/folder/">folder</a> and ping the <a href="http://postedpost.com/tag/search-engine/"><strong>search engines</strong></a>.</p>
<p>Everything is perfect except: the <a href="http://postedpost.com/tag/sitemap/">sitemap</a>.<a href="http://postedpost.com/tag/xml/">xml</a> NOT at root <a href="http://postedpost.com/tag/folder/">folder</a>, so when <a href="http://postedpost.com/tag/search-engine/"><strong>search engine</strong></a> spider come, it can claw nothing except a 404 error. The following is how to fix this:</p>
<h2>Plug You <a href="http://postedpost.com/tag/plugin/">Plugin</a> in to <a href="http://postedpost.com/tag/mu/">mu</a>-<a href="http://postedpost.com/tag/plugin/">plugins</a></h2>
<p>Don't laugh, I know it's a silly title, just some stupid thing have to do.</p>
<p>We know the <a href="http://postedpost.com/tag/php-file/"><strong>php file</strong></a> in <a href="http://postedpost.com/tag/mu/">mu</a>-<a href="http://postedpost.com/tag/plugin/">plugins</a> <a href="http://postedpost.com/tag/folder/">folder</a> will be load automatically by <a href="http://postedpost.com/tag/wordpress/">WordPress</a>. So I created a postedpost.<a href="http://postedpost.com/tag/php-file/"><strong>php file</strong></a> and write all my little change and hacks inside, like my <a title="Permanent link to Ultimate WP Post Name URL Sanitize Solution" rel="bookmark" href="http://postedpost.com/2008/06/23/ultimate-wordpress-post-name-url-sanitize-solution/">Ultimate WP Post Name URL Sanitize Solution</a>, I suggest you do it to, very easy and convenience. Anyway, the following code should inside <a href="http://postedpost.com/tag/mu/">mu</a>-<a href="http://postedpost.com/tag/plugin/">plugins</a> <a href="http://postedpost.com/tag/folder/">folder</a>.</p>
<h3>Put <a href="http://postedpost.com/tag/sitemap/">sitemap</a> into <a href="http://postedpost.com/tag/robots/">Robots</a>.<a href="http://postedpost.com/tag/txt-file/"><strong>txt file</strong></a></h3>
<blockquote><p><a href="http://postedpost.com/tag/function/">Function</a> postedpost_do_robots() {<br />
global $current_blog;<br />
if ( '0' != $current_blog-&#62;public ) {<br />
$<a href="http://postedpost.com/tag/siteurl/">siteurl</a> = get_settings('<a href="http://postedpost.com/tag/siteurl/">siteurl</a>');<br />
if ( class_exists( 'GoogleSitemapGeneratorLoader' ) ) {<br />
<a href="http://postedpost.com/tag/echo/">echo</a> "<a href="http://postedpost.com/tag/sitemap/">Sitemap</a>: " . $<a href="http://postedpost.com/tag/siteurl/">siteurl</a> . "/<a href="http://postedpost.com/tag/sitemap/">sitemap</a>.<a href="http://postedpost.com/tag/xml/">xml</a>\n";<br />
<a href="http://postedpost.com/tag/echo/">echo</a> "<a href="http://postedpost.com/tag/sitemap/">Sitemap</a>: " . $<a href="http://postedpost.com/tag/siteurl/">siteurl</a> . "/<a href="http://postedpost.com/tag/sitemap/">sitemap</a>.<a href="http://postedpost.com/tag/xml/">xml</a>.gz\n";<br />
}<br />
}<br />
}<br />
add_action('do_robots', 'postedpost_do_robots', 20);</p></blockquote>
<p>As the new <a href="http://www.sitemaps.org/" target="_blank">sitemap protocol</a>, you can put <a href="http://postedpost.com/tag/sitemap/">sitemap</a> <a href="http://postedpost.com/tag/location/">location</a> into <a href="http://postedpost.com/tag/robots/">robots</a>.<a href="http://postedpost.com/tag/txt-file/"><strong>txt file</strong></a>, so <a href="http://postedpost.com/tag/search-engine/"><strong>search engine</strong></a> can find your <a href="http://postedpost.com/tag/sitemap/">sitemap</a> without you told them, <a href="http://postedpost.com/tag/e/">e</a>.g. Google Webmaster Tool.</p>
<h3><a href="http://postedpost.com/tag/rewrite-rules/"><strong>Rewrite Rules</strong></a></h3>
<blockquote><p><a href="http://postedpost.com/tag/function/">Function</a> postedpost_rewrite_rules_array($<a href="http://postedpost.com/tag/rules/">rules</a>){<br />
$newrules = array();<br />
$newrules['<a href="http://postedpost.com/tag/sitemap/">sitemap</a>\.(<a href="http://postedpost.com/tag/xml/">xml</a>&#124;<a href="http://postedpost.com/tag/xml/">xml</a>\.gz)$'] = 'index.<a href="http://postedpost.com/tag/php/">php</a>?is_page_redirect=1&#38;redirect_method=<a href="http://postedpost.com/tag/sitemap/">sitemap</a>&#38;redirect_url=$matches[1]';<br />
return $newrules+$<a href="http://postedpost.com/tag/rules/">rules</a>;<br />
}<br />
add_filter('rewrite_rules_array', 'postedpost_rewrite_rules_array');</p>
<p><a href="http://postedpost.com/tag/function/">Function</a> postedpost_parse_query($<a href="http://postedpost.com/tag/query/">query</a>){<br />
global $blog_id;;<br />
$<a href="http://postedpost.com/tag/siteurl/">siteurl</a> = get_settings('<a href="http://postedpost.com/tag/siteurl/">siteurl</a>');<br />
$uri = parse_url($<a href="http://postedpost.com/tag/siteurl/">siteurl</a>);<br />
if(!empty($<a href="http://postedpost.com/tag/query/">query</a>-&#62;query_vars['is_page_redirect'])){<br />
$redirect_method = $<a href="http://postedpost.com/tag/query/">query</a>-&#62;query_vars['redirect_method'];<br />
if ( $redirect_method == '<a href="http://postedpost.com/tag/sitemap/">sitemap</a>' ) {<br />
$redirect_url = $<a href="http://postedpost.com/tag/siteurl/">siteurl</a> . '/wp-content/<a href="http://postedpost.com/tag/blog/">blogs</a>.dir/' . $blog_id . '/<a href="http://postedpost.com/tag/file/">files</a>/<a href="http://postedpost.com/tag/sitemap/">sitemap</a>.' . $redirect_url;<br />
} <a href="http://postedpost.com/tag/else/">else</a> {<br />
$redirect_url = get_settings('<a href="http://postedpost.com/tag/siteurl/">siteurl</a>');<br />
Header('HTTP/1.1 301 Moved Permanently');<br />
Header('<a href="http://postedpost.com/tag/location/">Location</a>: ' . get_settings('<a href="http://postedpost.com/tag/siteurl/">siteurl</a>'));<br />
exit();<br />
}<br />
Header('HTTP/1.1 302 Moved Temporarily');<br />
Header('<a href="http://postedpost.com/tag/location/">Location</a>: ' . $redirect_url);<br />
exit();<br />
}<br />
}<br />
add_action('parse_query', 'postedpost_parse_query');</p>
<p><a href="http://postedpost.com/tag/function/">Function</a> postedpost_init() {<br />
global $wp_rewrite;<br />
// postedpost_flush_rewrite_rules<br />
$wp_rewrite-&#62;flush_rules();<br />
add_rewrite_tag('%comment_id%', '(([0-9]{1,})');</p>
<p>}<br />
add_action('init', 'postedpost_init');</p></blockquote>
<p>These code all about <a href="http://postedpost.com/tag/rewrite-rules/"><strong>rewrite rules</strong></a>, when <a href="http://postedpost.com/tag/search-engine/"><strong>search engine</strong></a> or visitor visit /<a href="http://postedpost.com/tag/sitemap/">sitemap</a>.<a href="http://postedpost.com/tag/xml/">xml</a>, it will be 302 <a href="http://postedpost.com/tag/redirect/">redirect</a> to /wp-content/<a href="http://postedpost.com/tag/blog/">blogs</a>.dir/[blog_id]/<a href="http://postedpost.com/tag/file/">files</a>/<a href="http://postedpost.com/tag/sitemap/">sitemap</a>.<a href="http://postedpost.com/tag/xml/">xml</a>. Btw, in my own code, I have many other <a href="http://postedpost.com/tag/rewrite-rules/"><strong>rewrite rules</strong></a> and process code in these <a href="http://postedpost.com/tag/function/">functions</a>, that also why I say put all hacks in one <a href="http://postedpost.com/tag/php-file/"><strong>php file</strong></a>, for make easier on process common task and improve <a href="http://dodomarketing.blogtells.com/2008/09/23/from-profit-to-performance-marketing-logistics-continue/" target="_blank">performance</a>.</p>
<h3>OK, Done</h3>
<p><strong>This time all done.</strong></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[[Freeware] Yahoo! Messenger 9.0.0.1912]]></title>
<link>http://wikanpribadi.wordpress.com/?p=901</link>
<pubDate>Sat, 11 Oct 2008 15:15:39 +0000</pubDate>
<dc:creator>wikanpribadi</dc:creator>
<guid>http://wikanpribadi.id.wordpress.com/2008/10/11/freeware-yahoo-messenger-9001912/</guid>
<description><![CDATA[
Yahoo! Messenger is a free service that allows you to see when your friends are online and ready to]]></description>
<content:encoded><![CDATA[<p><a href="http://wikanpribadi.files.wordpress.com/2008/10/yahoo-messenger-9001912-276x3001.jpg"><img src="http://wikanpribadi.wordpress.com/files/2008/10/yahoo-messenger-9001912-276x3001.jpg" alt="" title="yahoo-messenger-9001912-276x3001" width="276" height="300" class="aligncenter size-full wp-image-903" /></a></p>
<p>Yahoo! Messenger is a free service that allows you to see when your friends are online and ready to talk, send private, instant messages so no one else can hear, get instant alerts for new messages in your Yahoo! Mail account, and keep track of your stocks portfolios and use stock price limit alerts.</p>
<p>Features:</p>
<p>    * Free PC-to-PC calls* — regular phones for dirt cheap<br />
    * Personalize Messenger with fun plug-ins<br />
    * Listen to free Yahoo! Music LAUNCHcast radio<br />
    * Instant messaging<br />
    * Drag and drop photo and file sharing<br />
    * Share IMs from your mobile phone<br />
    * Share live video with your webcam<br />
    * Use fun Emoticons, Audibles, and Avatars<br />
    * Catch up on friend’s lives with Yahoo! 360° built right in</p>
<p>Homepage: <a href="http://messenger.yahoo.com/">http://messenger.yahoo.com/</a><br />
Download: <a href="http://download.yimg.com/ycs/msg/dl/msgr9/us/ymsgr900_1912_us.exe">ymsgr900_1912_us.exe</a><br />
File Size: 14.1 MB</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[My Alternate ID Is Me]]></title>
<link>http://commandera9swarjournal.wordpress.com/?p=13</link>
<pubDate>Fri, 10 Oct 2008 21:17:53 +0000</pubDate>
<dc:creator>commandera9</dc:creator>
<guid>http://commandera9swarjournal.id.wordpress.com/2008/10/10/my-alternate-id-is-me/</guid>
<description><![CDATA[Anyone can be anyone online: a person can become a drawf weilding a minigun, a knight corrupted by d]]></description>
<content:encoded><![CDATA[<p>Anyone can be anyone online: a person can become a drawf weilding a minigun, a knight corrupted by divine power, a soldier with a magic-blasting fighter plane, of any persona, in any realm, in any time. Massive multiplayer online role-playing games such as World of Warcraft are famous for this. These games allow their users to construct for themselves an alternate identity, much like any users of the internet does so in the blogs the user writes and the pages the user creates.</p>
<p>However, this isn't the case for me.</p>
<p>My alternate I.D. is me.</p>
<p>Quite frankly, I couldn't imagine being anyone else other than myself. This is the reason I construct my internet pages to reflect my true interests and my true self. This is also the reason I construct my online "avatars," similar to the Nintendo Mii's, to look exactly or close to myself. I can't imagine being anyone else other than who I am in real life.</p>
<p>More importantly, my sense of self-realization leads me to create my story characters, specifically Commander A9, as being modeled exactly after myself. He looks like me, talks like me, acts like me, fights like me, leads like me. He is me, and I am him. Anything that my character, Commander A9, has ever done in my stories, I have usually accomplished. Being that these are military stories based on the Command &#38; Conquer series, my character's participation in combat and his combat performance were taken from my actual performance during paintball, videogames, and actual military training. Additional content is also taken from videos I've seen or information I've read, especially with regards to the military. Therefore, my stories reflect an extreme degree of realism when it comes to my characters, especially my own character.</p>
<p>In effect, you could call my stories my own autobiography in story format. I'm not sure if this has ever been done before, but I'd like to think of this method of story-telling as being a unique format.</p>
<p>I can't imagine being anyone else other than myself. I am who I am, in my writing and in my own life.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Make Your Own Porno I.D]]></title>
<link>http://justbookmarkme.wordpress.com/?p=331</link>
<pubDate>Fri, 10 Oct 2008 13:45:31 +0000</pubDate>
<dc:creator>superman815</dc:creator>
<guid>http://justbookmarkme.id.wordpress.com/2008/10/10/make-your-own-porno-id/</guid>
<description><![CDATA[
This site is for the new kevin Smith movie &#8220;Zack and Miri Make a Porno&#8221;. The TRailer ac]]></description>
<content:encoded><![CDATA[<p><a href="http://justbookmarkme.files.wordpress.com/2008/10/id.jpg"><img class="alignnone size-full wp-image-333" title="id" src="http://justbookmarkme.wordpress.com/files/2008/10/id.jpg" alt="" /></a></p>
<p>This site is for the new kevin Smith movie "Zack and Miri Make a Porno". The TRailer actually looks pretty funny. And IT has Seth Rogen in it, so you know your getting some good laughs there. This site lets you make your own Porno I.D, check it out its Pretty Funny.</p>
<p><a href="http://www.zackandmiristarid.com/">http://www.zackandmiristarid.com/</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[sfFeed2Plugin et les ID]]></title>
<link>http://intraviva.wordpress.com/?p=131</link>
<pubDate>Fri, 10 Oct 2008 13:14:54 +0000</pubDate>
<dc:creator>sebastien</dc:creator>
<guid>http://intraviva.id.wordpress.com/2008/10/10/sffeed2plugin-et-les-id/</guid>
<description><![CDATA[Un petit probleme sur lequel je viens de tomber, le RSS genere par le plugin sfFeed2Plugin ne sembla]]></description>
<content:encoded><![CDATA[<p>Un petit probleme sur lequel je viens de tomber, le RSS genere par le plugin sfFeed2Plugin ne semblait pas etre valide. Mon code generant les items du flux ressemblaient a cela :</p>
<blockquote><p>foreach ($messages as $message)<br />
{<br />
$item = new sfFeedItem();</p>
<p>$item-&#62;setLink('@message_view?id='.$message-&#62;getId().'&#38;project_id='.$this-&#62;project_id);<br />
$item-&#62;setAuthorName($message-&#62;getAuthor());<br />
$item-&#62;setContent($message-&#62;getContent());<br />
$item-&#62;setTitle($message-&#62;getTitle());</p>
<p>$feed-&#62;addItem($item);<br />
}</p></blockquote>
<p>Le probleme ici, est que le plugin va generer automatiquement l'id de l'item en se basant se la valeur de setLink. Dans certains cas (lorsque le link envoye ne possede pas de characteres speciaux) cela ne pose aucun soucis. Mais ici, la presence du &#38; dans le link va rendre l'id invalide, ce qui entrainera la generation d'un flux invalide. </p>
<p>Une bonne idee consiste donc a setter la valeur de l'id manuellement, en prenant une valeur dont on est sur qu'elle ne presente pas de characteres speciaux :</p>
<blockquote><p>foreach ($messages as $message)<br />
{<br />
$item = new sfFeedItem();</p>
<p>$item-&#62;setLink('@message_view?id='.$message-&#62;getId().'&#38;project_id='.$this-&#62;project_id);<br />
$item-&#62;setAuthorName($message-&#62;getAuthor());<br />
$item-&#62;setContent($message-&#62;getContent());<br />
$item-&#62;setTitle($message-&#62;getTitle());<br />
$item-&#62;setUniqueId($message-&#62;getId());</p>
<p>$feed-&#62;addItem($item);<br />
}</p></blockquote>
<p>Et tout d'un coup, tout va mieux !</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[EXPELLED]]></title>
<link>http://postgnostic.wordpress.com/?p=12</link>
<pubDate>Fri, 10 Oct 2008 11:08:35 +0000</pubDate>
<dc:creator>liquidlight</dc:creator>
<guid>http://postgnostic.id.wordpress.com/2008/10/10/expelled/</guid>
<description><![CDATA[i can&#8217;t wait to see this:
http://www.expelledthemovie.com/playground.php
]]></description>
<content:encoded><![CDATA[<p>i can't wait to see this:</p>
<p><a href="http://www.expelledthemovie.com/playground.php">http://www.expelledthemovie.com/playground.php</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Cum sa spargi o parola de "mess"]]></title>
<link>http://drody.wordpress.com/?p=99</link>
<pubDate>Thu, 09 Oct 2008 21:28:29 +0000</pubDate>
<dc:creator>drody</dc:creator>
<guid>http://drody.id.wordpress.com/2008/10/09/cum-sa-spargi-o-parola-de-mess/</guid>
<description><![CDATA[Adevarul este ca  poti sparge o parola de messenger DACA puteti folosi una din urmatoarele variante]]></description>
<content:encoded><![CDATA[<p><strong>Adevarul este ca  poti sparge o parola de messenger DACA puteti folosi una din urmatoarele variante:</strong></p>
<p><strong>-daca nu aveti acces la calculatorul unde s-a logat</strong></p>
<p><strong>-daca pacaliti persoana sa va dea parola</strong></p>
<p><strong>-daca pacaliti victima sa intre pe o pagina de yahoo falsa :)</strong></p>
<p><strong> Am incercat cu un prieten toate variantele de mai sus si am luat ceva parole de la cocalari si pitzypoance ca doar ei/ele sunt asa prosti/proaste incat sa se logheze pe o pagina de yahoo falsa cand le spuneam sa intre ca's filme porno gratis,si cu pacalitu' sa-mi dea parola de bunavoie am "spart" vreo 4 ID-uri tot de la cocalari si pitzypoance :).</strong></p>
<p><strong> Varianta cu pagina falsa.</strong></p>
<p><strong>Eu am luat de pe net o pagina de yahoo falsa si pe butonul Login am pus un script php care sa salveze datele introduse in casuta de la ID si de la parola,prietenul meu le spunea ca sunt filme porno si ei se logau ca prostii :).</strong></p>
<p><strong>Varianta cu datu' parolei de bunavoie.</strong></p>
<p><strong>Mi-am facut un ID yteam93@rocketmail.com si le spuneam ca serverul a fost spart de un hacker si imi trebuie ID si parola lor ca sa le salvez pe server,altfel pacaleam victima ca i se va inchide ID-ul :),si ei ca disperatii sa-si salvezi pitzipoancele si cocalarii care i-a agatat pe net de pe tot felu' de sit-uri cu ID de fete si baieti ,imi dadeau ID si parola si i le schimbam mai tarziu parola :).</strong></p>
<p><strong>Varianta cu acces la calculator</strong></p>
<p><strong>Dupa ce te loghezi pe yahoo messenger pe un calculator ,parola si ID-ul se salveaza intr-un cookie :) ca pe internet si cu un keylogger poti sa afli ID si parola victimei :).ATENTIE,ASTA MERGE DOAR DACA FOLOSITI KEYLOGGERUL LA UN CALCULATOR UNDE VICTIMA S-A LOGAT . </strong></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Stupidity Reigns]]></title>
<link>http://literatilove.wordpress.com/?p=29</link>
<pubDate>Thu, 09 Oct 2008 21:09:45 +0000</pubDate>
<dc:creator>Emuhlee</dc:creator>
<guid>http://literatilove.id.wordpress.com/2008/10/09/29/</guid>
<description><![CDATA[This day is so stupid, it makes Jaime Lynn Spears look intelligent.
The Hour of Music Madness (aka,]]></description>
<content:encoded><![CDATA[<p><span style="color:#008000;">This day is so stupid, it makes Jaime Lynn Spears look intelligent.</span></p>
<p><span style="color:#008000;">The Hour of Music Madness (aka, music class) was incredibly frusterating. The other kids doodle NON-STOP on their pianos while the professor is trying to speak. It's enough to drive anyone batty. Then I asked a simple question about how to write a scale correctly. The professor looked at my paper, and said "you don't have it right on your paper." I'm like "......?" Duh! I'm asking how to do it- not for someone to tell me it's wrong. Needless to say, she couldn't seem to figure out what I was asking her, no matter how many times I rephrased it. Eventually, the nice boy next to me pulled me out of the darkness by explaining how he writes it correctly. For heaven's sake, this prof. has an Ivy League education. She can't answer my question, but Ned Nice at the piano next to me can?  :/</span></p>
<p><span style="color:#008000;">Before Music Madness, I lost my ID. I think I threw it away at lunch. And I could really just kick myself, because I had to pay $15 to replace it. That leaves the grand total of money in my wallet at $1.50. Mi padre would be quite angry, I think, if he found out. So let's keep this on the down low, people. :)</span></p>
<p><span style="color:#008000;">To get away from the crap-pile that is this day, I will enlighten you with a few updates. </span></p>
<p><span style="color:#008000;">I am...</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:small;color:#008000;font-family:Calibri;">reading : Blood and Chocolate by Annette Curtis Klause</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:small;color:#008000;font-family:Calibri;">listening to: She is the Sunlight by Trading Yesterday </span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:small;color:#008000;font-family:Calibri;">watching: Pushing Daisies </span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:small;color:#008000;font-family:Calibri;">eating: Goldfish crackers</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:small;color:#008000;font-family:Calibri;">drinking: some citrus &#38; peach stuff</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:small;color:#008000;font-family:Calibri;">loving: my “Where the Wild Things Are” t-shirt</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:small;color:#008000;font-family:Calibri;">hating: the bugs on my window</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:small;color:#008000;font-family:Calibri;">wishing: my homework was done</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="color:#008000;"> </span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:small;color:#008000;font-family:Calibri;">I hope everyone's day was a little less stupid than mine was. </span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Lindsay Lohan and Samantha Ronson: Denied]]></title>
<link>http://celebutard.wordpress.com/?p=571</link>
<pubDate>Thu, 09 Oct 2008 20:27:20 +0000</pubDate>
<dc:creator>celebutard</dc:creator>
<guid>http://celebutardonline.com/2008/10/09/lindsay-lohan-and-samantha-ronson-denied/</guid>
<description><![CDATA[So what you&#39;re trying to say here is &quot;F-off peace&quot;?
Keys, wallet, phone, ID. Four word]]></description>
<content:encoded><![CDATA[[caption id="attachment_572" align="aligncenter" width="413" caption="So what you&#39;re trying to say here is &#34;F-off peace&#34;?"]<a href="http://celebutard.files.wordpress.com/2008/10/lindsay_lohan_samantha_ronson_denied.jpg"><img class="size-full wp-image-572" title="lindsay_lohan_samantha_ronson_denied" src="http://celebutard.wordpress.com/files/2008/10/lindsay_lohan_samantha_ronson_denied.jpg" alt="So what you're trying to say here is &#34;F-off peace?&#34;" width="413" height="310" /></a>[/caption]
<p>Keys, wallet, phone, ID. Four words (is ID a word?) every girl should mutter to themselves before they leave the house for a night on the town.</p>
<p>Well it would seem Lindsay Lohan and Samantha Ronson were too busy making out or neck snuggling (also known as nuggling) to mutter that last word because the two were denied entry to The Snake Pit in Los Angeles because they didn't have ID, according to <a href="http://www.people.com">People.com</a>.</p>
<p>Isnit Samantha Ronson like 48 or something, why on earth would she need ID?</p>
<p><span></span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[WWSJVF?]]></title>
<link>http://thesuperjesus.wordpress.com/?p=445</link>
<pubDate>Thu, 09 Oct 2008 13:22:39 +0000</pubDate>
<dc:creator>SuperJesus</dc:creator>
<guid>http://thesuperjesus.id.wordpress.com/2008/10/09/wwsjvf/</guid>
<description><![CDATA[Who Would Super Jesus Vote For?
Bigots need not apply
]]></description>
<content:encoded><![CDATA[<p>Who Would Super Jesus Vote For?</p>
[caption id="" align="aligncenter" width="300" caption="Bigots need not apply"]<img title="Right, as if there was any chance Id vote for 4 more years of Bush" src="http://www.crooksandliars.com/files/uploads/2008/10/thatonesk9_3db97_0.jpg" alt="Bigots need not apply" width="300" height="300" />[/caption]
]]></content:encoded>
</item>
<item>
<title><![CDATA[I will do one thing today]]></title>
<link>http://passatellicrudiallafermatadel2.wordpress.com/?p=216</link>
<pubDate>Wed, 08 Oct 2008 22:24:21 +0000</pubDate>
<dc:creator>Uomo Busta</dc:creator>
<guid>http://passatellicrudiallafermatadel2.id.wordpress.com/2008/10/08/i-will-do-one-thing-today/</guid>
<description><![CDATA[Non so perchè ma quel vuoto bianco dopo la parola &#8220;thing&#8221; mi fa ridere da matti!! La fr]]></description>
<content:encoded><![CDATA[<p>Non so perchè ma quel vuoto bianco dopo la parola "thing" mi fa ridere da matti!! La frase mi vien da leggerla tutto carico per poi bloccarmi alla vista di quello spazio dopo i due punti: "Bene, oggi faccio qualcosa ...cosa: ... ... boh!" Va a finire che non farò un cazzo anche oggi!!</p>
<p><img class="alignleft" src="http://www.swiss-miss.com/photos/uncategorized/2008/10/06/sp0112x2.jpg" alt="" width="496" height="364" /></p>
<p>(<a href="http://swissmiss.typepad.com/weblog/2008/10/i-will-do-one-t.html" target="_blank">Via</a>)</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Tiny Tiny Bedside Table]]></title>
<link>http://passatellicrudiallafermatadel2.wordpress.com/?p=211</link>
<pubDate>Wed, 08 Oct 2008 22:17:06 +0000</pubDate>
<dc:creator>Uomo Busta</dc:creator>
<guid>http://passatellicrudiallafermatadel2.id.wordpress.com/2008/10/08/tiny-tiny-bedside-table/</guid>
<description><![CDATA[&#8230;una cosa che è sempre mancata in camera mia è il comodino di fianco al letto. Negli anni, i]]></description>
<content:encoded><![CDATA[<p>...una cosa che è sempre mancata in camera mia è il comodino di fianco al letto. Negli anni, in quell'area dove le persone normali mettono appunto un <a href="http://www.demauroparavia.it/24834" target="_blank">"comodino"</a>, si sono susseguite nell'ordine: una pila di libri, una scatola di cartone e per chiudere la tabella degli abbinamenti una scatola di cartone con una pila di libri sopra! Non è bastato neanche il sabato mattina all'Ikea per riempire quel vuoto colmato da una scatola di cartone con ormai una pila di libri dentro ed una pila di libri fuori! Ma sembro aver trovato la soluzione! Su <a href="http://swissmiss.typepad.com/weblog/" target="_blank">SWISS MISS</a>, scoperto proprio oggi dall'Uomo Busta, ho trovato questa versione di comodino d'agganciare al letto per avere un piano inclinato su cui appoggiare la lettura del momento ed una porzione orizzontale dove mettere il bicchiere per la bevuta notturna!</p>
<p><img class="alignleft" src="http://www.swiss-miss.com/photos/uncategorized/2008/10/08/nachtischen_603x241.jpg" alt="" width="490" height="196" /></p>
<p>(<a href="http://swissmiss.typepad.com/weblog/2008/10/tiny-tiny-bedsi.html" target="_blank">Via</a>)</p>
<p>(<a href="http://www.contor-design.com/catalog/nachttischchen-p-336.html" target="_blank">Buy</a>)</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[B 27 AAA......Intermezzo di Tengah Ancaman Krisis Finansial; Permainan Angka]]></title>
<link>http://belajardarikecil.wordpress.com/?p=105</link>
<pubDate>Wed, 08 Oct 2008 20:29:30 +0000</pubDate>
<dc:creator>belajardarikecil</dc:creator>
<guid>http://belajardarikecil.id.wordpress.com/2008/10/09/b-27-aaaintermezzo-di-tengah-ancaman-krisis-finansial-permainan-angka/</guid>
<description><![CDATA[Kemarin&#8230;di tengah perjalanan, antara Pondok Indah dan Permata Hijau&#8230;saya menemukan Mobil]]></description>
<content:encoded><![CDATA[<h3><span style="color:#ff00ff;">Kemarin...di tengah perjalanan, antara Pondok Indah dan Permata Hijau...saya menemukan Mobil Kijang...Silver Metallic...dengan nomor plat yang asyik untuk dicermati...Terutama bagi para Otakatikoholic, yang mendalami ilmu otakatikologi...(mudah-mudahan bisa jadi puzzle penentram atau peredam gejolak RUSH karena situasi ekonomi yang kian tidak menentu)</span></h3>
<p> </p>
<h3><span style="color:#000080;">B 27 AAA...Nah apabila B217AN mudah dibaca...Berdua Satu Tujuan...Slogan SBYJK untuk memimpin ulang pas 2009...hiks......bagaimana dengan "cara membaca Si Kijang...</span></h3>
<p> </p>
<h3><span style="color:#ff00ff;">Nah...sekarang kita ibaratkan Pemilik Kijang dan Plat Nomor Tersebut...Insan yang gemar tarik suara...maka boleh jadi cara membacanya seperti ini ...</span></h3>
<h3><span style="color:#800080;">c   = do = 1,  </span></h3>
<h3><span style="color:#800080;">d = re = 2, </span></h3>
<h3><span style="color:#800080;">e = mi = 3, </span></h3>
<h3><span style="color:#800080;">f = fa = 4, </span></h3>
<h3><span style="color:#800080;">g = sol = 5, </span></h3>
<h3><span style="color:#800080;">a= la = 6, </span></h3>
<h3><span style="color:#800080;">b = si = 7, </span></h3>
<h3><span style="color:#800080;"><span style="text-decoration:underline;">c = do = 8</span></span></h3>
<h3><span style="color:#ff00ff;">Maka...bacaan dari B 27 AAA = Si Resi Lalala... tapi apabila moda-nya biasa..bunyinya boleh jadi B 27 AAA = Bitu seventriple e...tapi seperti tidak bermakna...atawa boleh juga menjadi B27AAA =BRA JA  atau Bra Raja karena ukuran sekalipun 27 tapi triple A...plusplusplus...atau sekalipun bra itu kecil...tapi memiliki ukuran attractiveness yang PLUS3X atau...B27AAA = Beloro pitu etigo.. gak jelas apa artinya atau B27AAA - bi er ci aaa  (ce miang? ni hao???) atau ini B27AAA = biji (it ..ji ...sa...dst)  Tu (juh) aaa... atau BIJI TUA....mulai jelas apa artinya...amen</span></h3>
<h3> <span style="color:#993366;">Kalau yang agak sopan B27AAA bisa jadi menunjukkan pemiliknya BR(A)7(A) A...Ia ingin menyapa pemilik lain...Brata A..(A...ini Brata...atau..A.Brata boleh jadi A bagian dari Alexander Brata maka...mungkinkah mobil ini milik Alexandra Atmasubrata...wallahu A'lam) Atau...ah... gak tau deh..............</span></h3>
<h3>Pastinya...ini PR buat 8dk...nah...teman-teman punya usulan lain untuk membaca-nya.. Atau pemilik Kijang Silver Metallic B 27 AAA ingin memberikan pencerahan????????? ditunggu....</h3>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Valla para Club de padel Nueva Alcántara]]></title>
<link>http://natxodiegoblog.wordpress.com/?p=42</link>
<pubDate>Wed, 08 Oct 2008 16:34:25 +0000</pubDate>
<dc:creator>natxxxo</dc:creator>
<guid>http://natxodiegoblog.id.wordpress.com/2008/10/08/42/</guid>
<description><![CDATA[vallapadel
Captura de la finalización de una valla de 6,40 x 3 mts.
Chapas nuevas, un fichero de al]]></description>
<content:encoded><![CDATA[[caption id="attachment_47" align="alignnone" width="400" caption="vallapadel"]<a href="http://natxodiegoblog.files.wordpress.com/2008/10/vallapadel3.jpg"><img class="size-full wp-image-47" title="vallapadel" src="http://natxodiegoblog.wordpress.com/files/2008/10/vallapadel3.jpg" alt="vallapadel" width="400" height="299" /></a>[/caption]
<p>Captura de la finalización de una valla de 6,40 x 3 mts.<br />
Chapas nuevas, un fichero de alta resolución, vinilo oracal 3651 laminado para impresión digital alta calidad y algo menos de una mañana para terminar de manera impecable este trabajito del que nos sentimos tan orgullosos.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Creatie Brand ID - de la cuvant la Imagine.]]></title>
<link>http://dotpsdesign.wordpress.com/?p=89</link>
<pubDate>Wed, 08 Oct 2008 09:10:39 +0000</pubDate>
<dc:creator>dotpsdesign</dc:creator>
<guid>http://dotpsdesign.id.wordpress.com/2008/10/08/creatie-brand-id-de-la-cuvant-la-imagine/</guid>
<description><![CDATA[
From just another name to a succesful story.

Am adaugat logo-uri &#8220;demostrative&#8221; pe pag]]></description>
<content:encoded><![CDATA[<ul>
<li><strong>From just another name to a succesful story.</strong></li>
</ul>
<p>Am adaugat logo-uri "demostrative" pe pagina <strong><a href="http://dotpsdesign.wordpress.com/portfolio/"><span style="text-decoration:underline;">.Portfolio</span></a>.</strong></p>
<p>Denumirile sunt fictive/creatie proprie.</p>
<p><em>Orice asemanare cu o firma deja existenta este intamplatoare si neintentionata.</em></p>
<p><strong>Denumirile</strong> sunt considerate produse, deci <strong>pot fi cumparate. </strong></p>
<p>Pentru e-mail contact vezi pagina <a href="http://dotpsdesign.wordpress.com/comenzi/"><strong>comenzi</strong></a>.</p>
<p>(Denumirea unei firme/companii si fonetica acesteia se numesc "identitate verbala" iar crearea lor este supusa legilor copyright-ului.)</p>
<p>(c) dotPSdesign.wordpress.com</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Addiction Therapist]]></title>
<link>http://idohealthcare8oct.wordpress.com/?p=3</link>
<pubDate>Wed, 08 Oct 2008 07:48:25 +0000</pubDate>
<dc:creator>brahminsmatrimony8oct</dc:creator>
<guid>http://idohealthcare8oct.id.wordpress.com/2008/10/08/addiction-therapist/</guid>
<description><![CDATA[Addiction Therapist Provides substance abuse rehabilitation services
]]></description>
<content:encoded><![CDATA[<p><a href="http://www.idohealthcare.com/job/11271/addiction-therapist-boise-city-allied-health:social-work.html">Addiction Therapist</a> Provides substance abuse rehabilitation services</p>
]]></content:encoded>
</item>

</channel>
</rss>
