<?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>Phyrax &#187; Jay</title>
	<atom:link href="http://www.phyrax.com/author/admin/feed" rel="self" type="application/rss+xml" />
	<link>http://www.phyrax.com</link>
	<description>Under the webs hood!</description>
	<lastBuildDate>Wed, 21 Jul 2010 00:33:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Turning a script off or on</title>
		<link>http://www.phyrax.com/second-life/turning-a-script-off-or-on</link>
		<comments>http://www.phyrax.com/second-life/turning-a-script-off-or-on#comments</comments>
		<pubDate>Tue, 20 Jul 2010 04:22:23 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Second Life]]></category>
		<category><![CDATA[LSL]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.phyrax.com/?p=269</guid>
		<description><![CDATA[While turning on or off a script is as simple as opening it and un-checking the &#8220;running&#8221; box.  Sometimes you may want to automate this process.  While I do not think this small tutorial belongs on its own page as of yet, I do still think that these two methods are worth it.  For these]]></description>
			<content:encoded><![CDATA[<p>While turning on or off a script is as simple as opening it and un-checking the &#8220;running&#8221; box.  Sometimes you may want to automate this process.  While I do not think this small tutorial belongs on its own page as of yet, I do still think that these two methods are worth it.  For these methods I will be using the <a href="http://lslwiki.net/lslwiki/wakka.php?wakka=touch_start" target="_blank">touch_start()</a> event.  While you can do other events such as a <a href="http://lslwiki.net/lslwiki/wakka.php?wakka=listen" target="_blank">listen</a> or <a href="http://lslwiki.net/lslwiki/wakka.php?wakka=link_message" target="_blank">link_message</a>, this is the fastest for me.<br />
<span id="more-269"></span></p>
<pre>Method two will be added tomorrow.  Check Back!</pre>
<h3>Method I</h3>
<p>The first method, and possibly the most simple, is followed by creating an off/on script and adding the script to the object inventory.  As always I begin by showing you the whole script.</p>
<pre class="brush: lsl; collapse: true; light: false; toolbar: true;">
string script2kill = &quot;ScriptName&quot;;

default
{
	state_entry()
	{
		llOwnerSay(&quot;Off/On Script Initialized&quot;);
	}
	touch_start(integer total_number)
	{
		integer curState = llGetScriptState(script2kill);
		if(curState==TRUE){
			llSetScriptState(script2kill, FALSE);
		}else if(curState == FALSE){
			llSetScriptState(script2kill,TRUE);
		}
	}
}
</pre>
<p>Now as you know I like to use global variables, this allows me to change data without having to sort through the script in hopes of finding my variable.  While this isn&#8217;t such a bad thing in a small script such as this, it helps out an amazing amount later down the road.  Line 01 is the global variable <span style="color: #000000;">script2kill</span>, now you can change <span style="color: #99cc00;">ScriptName</span> to whatever you want, but it must be the name of the script you want to kill when you touch the object.</p>
<pre class="brush: lsl;">
string script2kill = &quot;ScriptName&quot;;
</pre>
<p>Being that we&#8217;re using <a href="http://lslwiki.net/lslwiki/wakka.php?wakka=llSetScriptState" target="_blank">llSetScriptState</a>, the variable type of <span style="color: #000000;">script2kill </span>must be a string, and therefore must be encompassed in double quotes.  HOWEVER, and this is a big one, well not really, but anyhow, according to the LSL wiki, &#8220;While this function can be used to stop any script, it can only be used to <em>start</em> scripts which were stopped by an <tt>llSetScriptState</tt> function call.&#8221;  Therefore assuming you&#8217;re script has already been started, you can kill and restart it at any time.</p>
<p>The <a href="http://lslwiki.net/lslwiki/wakka.php?wakka=state_entry" target="_blank">state_entry </a>event isn&#8217;t anything special, by now you should know that <a href="http://lslwiki.net/lslwiki/wakka.php?wakka=State_Entry" target="_blank">state_entry </a>is required, therefore I just used <a href="http://lslwiki.net/lslwiki/wakka.php?wakka=llOwnerSay" target="_blank">llOwnerSay </a>to let you know that the script is actually ready.  You can simply remove line 09 altogether and leave it blank.  For me I like to know my scripts are ready.</p>
<p>The magic for this method really starts in the touch_start event.</p>
<pre class="brush: lsl; first-line: 9;">
	touch_start(integer total_number)
	{
		integer curState = llGetScriptState(script2kill);
		if(curState==TRUE){
			llSetScriptState(script2kill, FALSE);
		}else if(curState == FALSE){
			llSetScriptState(script2kill,TRUE);
		}
	}
</pre>
<p>Line 11 sets a local variable that I can refer too.  <a href="http://lslwiki.net/lslwiki/wakka.php?wakka=llGetScriptState" target="_blank">llGetScriptState()</a> receives a string variable and returns an integer.  Therefore we can use the <span style="color: #000000;">script2kill </span>global we set for the functions string, and we can store the functions result as our own variable, for use in <a href="http://lslwiki.net/lslwiki/wakka.php?wakka=llSetScriptState" target="_blank">llSetScriptState()</a>.  Since curState is set every time you touch the object, this script checks your script2kill to see if its off, and if it is, then it does the exact opposite.    You have to use an if&#8230;else statement because if not, then you&#8217;ll keep turning off a script that&#8217;s already off.  If you&#8217;re confused let me clarify this a little for you.</p>
<p>Line 12 uses the <a href="http://lslwiki.net/lslwiki/wakka.php?wakka=binary" target="_blank">logical binary operato</a>r to compare two values.  In more simplistic terms, it simply sees if one variable is the exact same as the other.  Therefore, since llGetScriptState returns an integer (TRUE or FALSE), we compare it to yet another integer.  If it is on, since a user has touched it then <a href="http://lslwiki.net/lslwiki/wakka.php?wakka=llSetScriptState" target="_blank">llSetScriptState </a>will kill it.  If the curState is not true, if the logic says no, then we jump down to line 14 and completely skip turning off the script.</p>
<pre><strong>INFO:</strong><span class="error"> If you haven't figured it out yet, FALSE means off, and TRUE means on!</span></pre>
<p>Line 14 checks if curState (assigned a value by line 11) is false.  If the logical binary operator says everything is okay then the script turns on the other script via <a href="http://lslwiki.net/lslwiki/wakka.php?wakka=llSetScriptState" target="_blank">llSetScriptState</a>.</p>
<pre>Additionally you can setup the on/off script to only respond to your touch or receive commands from an external script via <a href="http://lslwiki.net/lslwiki/wakka.php?wakka=llListen" target="_blank">llListen</a>.  The possibilities are endless, yet its usage is somewhat limited also.  For instance, by turning off a script that has already used <a href="http://lslwiki.net/lslwiki/wakka.php?wakka=llSetText" target="_blank">llSetText</a>, you do not remove the text.  You would need to reset the text back to empty by passing an empty string variable to <a href="http://lslwiki.net/lslwiki/wakka.php?wakka=llSetText" target="_blank">llSetText </a>within your on/off script.</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.phyrax.com/second-life/turning-a-script-off-or-on/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Are you a graphic designer?</title>
		<link>http://www.phyrax.com/second-life/are-you-a-graphic-designer</link>
		<comments>http://www.phyrax.com/second-life/are-you-a-graphic-designer#comments</comments>
		<pubDate>Sat, 17 Jul 2010 01:46:21 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Second Life]]></category>
		<category><![CDATA[Hiring]]></category>

		<guid isPermaLink="false">http://www.phyrax.com/?p=267</guid>
		<description><![CDATA[I suppose it would be simple enough to just say &#8220;now hiring&#8221;, if that was the case, the thing is, I&#8217;m not looking to HIRE someone, nor do I want to buy their services.  I&#8217;m in the business of making money, not giving it.  By now you&#8217;re probably thinking, well what&#8217;s the point if I&#8217;m]]></description>
			<content:encoded><![CDATA[<p>I suppose it would be simple enough to just say &#8220;now hiring&#8221;, if that was the case, the thing is, I&#8217;m not looking to HIRE someone, nor do I want to buy their services.  I&#8217;m in the business of making money, not giving it.  By now you&#8217;re probably thinking, well what&#8217;s the point if I&#8217;m not getting paid.  Well you&#8217;re exactly the kind of person I DO NOT want working with me.  Notice I said &#8220;with&#8221; not &#8220;for&#8221;&#8230;<br />
<span id="more-267"></span><br />
The fact is, I own a website called Virtual Land, now this website is meant to be a more user friendly version of the XStreets land listing engine.  I&#8217;m not trying to re-invent the wheel per-se, I&#8217;m only trying to help it roll in a smoother motion.  Virtual Land has a more in-depth search engine and will be incorporated into Second Life via my HUD, which is almost done.  Furthermore, VL will not charge users any more than they&#8217;re already paying to XStreet for their listings.  There are tons of things I&#8217;m going to do with VL, but I need you&#8217;re help.</p>
<p>I&#8217;m a content programmer, not a graphic designer.  I need someone to work with me on Virtual Land, mainly the graphical portion of the website itself.  I would like to develop a long standing relationship with this person and have him/her work with me and be a partner on Virtual Land.  I need someone willing to work, able to meet deadlines, organized, and most of all, I want someone with an imagination.  I lack creativity in the web design department due to the fact that I think linear style seeing as in web development there are rules that need to be followed and standards that need to be adhered to, unlike the design department, there isn&#8217;t much room for creativity.  Which is why I excel at the programming portion of web design.</p>
<p>By now I figured I&#8217;ve weeded out most of the people looking for a quick buck (or linden in this case).  So I figure you&#8217;re actually here because you want to be a part of this project, or at least that&#8217;s why I hope you&#8217;re still reading.  By comparison, XStreet currently (at post time) has 2,739 listings on their site which assuming they&#8217;re charging L$25 per listing, they have made L$68,475 just off of those listings.  Not much in USD, but still a substantial gain for the average Second Life avatar.  However, most people do not list on XStreet due to the many &#8220;Rental&#8221; properties that pose as real &#8220;for sale&#8221; properties.  Virtual Land intends to change this aspect.  VL will separate rental and sell-able properties  from each other as to avoid the confusion.  Furthermore, VL has (currently) 11 search/listing fields that can be used rather than just one to three that SL and XStreet have.  Also, every (beta) user will have a credit of L$ 150 for their listings, number of users is to be determined.  The intent behind the credit is to bring in skeptics or current XStreet users and show them that the VL is better.</p>
<p>So by now I&#8217;m sure you&#8217;re wondering, how will this benefit me; well the thing is, that&#8217;s up to you.  First off, I&#8217;m not going to have you work for free, that&#8217;s just plain idiotic; I&#8217;ll give you a share of every listing that&#8217;s paid to VL, that&#8217;s a definite.  However, the site needs to be completed first and you need to be willing to help with that.  A real contract will be involved between you and I to make sure proper compensation is given to the team members.  If you&#8217;re still here reading and thinking you&#8217;re going to get paid for the work you do and then skip out on me, then please go ahead and leave.  No one gets paid until people pay for listings, not even me.  If you want to work with me on this project then please contact me.  Before you do please have a look below at the requirements for applying.</p>
<h4>Requirements</h4>
<ul>
<li>1 year experience in graphical design.</li>
<li>Speak English (fluently)</li>
<li>Available 2 hours, twice a week for communications (in game or by some other means)</li>
<li>United States resident</li>
<li>Portfolio required during interview</li>
<li>1 year Experience in banners, advertisements, and template design</li>
<li>Have Photoshop &amp; Dreamweaver CS or higher (for future collaboration)</li>
<li>Video editing a plus</li>
</ul>
<p>If you think you meet these requirements and can show me some of your work then please use the contact page and send me your resume, in plain text form please.  I&#8217;ll get back to you within 24 hours of the initial email to setup an interview.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phyrax.com/second-life/are-you-a-graphic-designer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yet another update!</title>
		<link>http://www.phyrax.com/second-life/yet-another-update</link>
		<comments>http://www.phyrax.com/second-life/yet-another-update#comments</comments>
		<pubDate>Thu, 15 Jul 2010 07:23:04 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Second Life]]></category>
		<category><![CDATA[LSL]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.phyrax.com/?p=262</guid>
		<description><![CDATA[Due to the fact that an object does not retain its key when taken into inventory and &#8220;re-rezzed&#8221;.  I now have to update the downloads system (Second Life side anyhow) to now communicate with my database to see if a new key is available.  Since the system uses llEmail, and object to object email requires]]></description>
			<content:encoded><![CDATA[<p>Due to the fact that an object does not retain its key when taken into inventory and &#8220;re-rezzed&#8221;.  I now have to update the downloads system (Second Life side anyhow) to now communicate with my database to see if a new key is available.  Since the system uses llEmail, and object to object email requires keys, when I move my server systems (which will be tomorrow) I&#8217;ll have to update the system yet again.  Again, this is only one step closer to making my off-world system sellable.</p>
<p><span style="color: #ff0000;">If you experience any issues with downloads please be patient and try again in a few hours.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.phyrax.com/second-life/yet-another-update/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Script update tonight!</title>
		<link>http://www.phyrax.com/second-life/script-update</link>
		<comments>http://www.phyrax.com/second-life/script-update#comments</comments>
		<pubDate>Tue, 29 Jun 2010 06:33:14 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Second Life]]></category>
		<category><![CDATA[LSL]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.phyrax.com/?p=259</guid>
		<description><![CDATA[I&#8217;ve been going on and off about doing this but it&#8217;s going to make my RL item download system for Second Life, a whole lot better. For those of you who don&#8217;t know what I&#8217;m talking about, or haven&#8217;t bought my skin kits, this system was previously a single script, however, each script would need]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been going on and off about doing this but it&#8217;s going to make my RL item download system for Second Life, a whole lot better.  For those of you who don&#8217;t know what I&#8217;m talking about, or haven&#8217;t bought my skin kits, this system was previously a single script, however, each script would need to be altered should my website change or should the server change, each product would have to have promotional items such as LM&#8217;s and NC&#8217;s added, and sometimes the script would just glitch out.  This is a pain considering I had over 33 skin kits at one time.  </p>
<p>On the end-user side of things, the box required the buyer to touch it, and being that there was large yellow letters telling them to do so, I didn&#8217;t think this would have been an issue.  Obviously I didn&#8217;t consider the language barrier, nor the younger ages that apparently couldn&#8217;t read yet.  This is fixed, and will only require the user to rez the box.  As a safety measure, if the user was to rez the box and something glitched out, then the user can still touch it to contact the server.</p>
<p>The product script now contains a fool-proof self-contained algorithm&#8230; not that big of a deal though.  I&#8217;ve just secluded the HTTP portion of the script to a central server object that I OWN.  The product box only sends data, via llEmail to the server object, that I can translate or use how I see fit.  In doing that, it will allow me to optimize the data insertion process on the actual HTTP server.</p>
<p>I may be optimizing my RL download system for end-users and sell it later on, but as for now, that&#8217;s a lot of work <img src='http://www.phyrax.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.phyrax.com/second-life/script-update/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coding a HUD &#8211; Part I</title>
		<link>http://www.phyrax.com/info/coding-a-hud-part-i</link>
		<comments>http://www.phyrax.com/info/coding-a-hud-part-i#comments</comments>
		<pubDate>Fri, 09 Apr 2010 03:11:59 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.phyrax.com/?p=251</guid>
		<description><![CDATA[I&#8217;ve just now finished a tutorial on the beginnings of coding a HUD for my website.  I intend to write tutorials from start to finish and cover a multitude of functions and topics, along with the coding practices I follow.  This is the first part and I cover some advanced topics like making buttons from]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just now finished a tutorial on the beginnings of coding a HUD for my website.  I intend to write tutorials from start to finish and cover a multitude of functions and topics, along with the coding practices I follow.  This is the first part and I cover some advanced topics like making buttons from inventory names.  And using for loops to assign buttons from inventory names.  Now that&#8217;s not advanced for some people, but these tutorials are geared at the new scripter, not the advanced one.</p>
<p><a href="http://www.phyrax.com/tutorials/scripting/hud-scripting/part-i-the-beginning" target="_self">View the tutorial here.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.phyrax.com/info/coding-a-hud-part-i/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MSN Marketing?</title>
		<link>http://www.phyrax.com/wtf/msn-marketing</link>
		<comments>http://www.phyrax.com/wtf/msn-marketing#comments</comments>
		<pubDate>Sat, 27 Mar 2010 09:34:36 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[WTF!]]></category>
		<category><![CDATA[Funny]]></category>

		<guid isPermaLink="false">http://www.phyrax.com/?p=231</guid>
		<description><![CDATA[So, as most of us have, I&#8217;ve played WoW a time or two, and had a few extra dollars to blow, so I paid a company to power-level me, yea boo me as you wish!  But the thing is, I haven&#8217;t played WoW in a long time, probably 6-8 months.  Since that time, I&#8217;ve received two different]]></description>
			<content:encoded><![CDATA[<p>So, as most of us have, I&#8217;ve played WoW a time or two, and had a few extra dollars to blow, so I paid a company to power-level me, yea boo me as you wish!  But the thing is, I haven&#8217;t played WoW in a long time, probably 6-8 months.  Since that time, I&#8217;ve received two different MSN invites.  I didn&#8217;t think much of the first and had a similar conversation with that individual, but when I got this invite, like 35 minutes ago, I couldn&#8217;t resist showing how to get back at one of these companies.  It&#8217;s really simple, just do a domain lookup on the persons website, in this case it&#8217;s hawow.com, and start quoting what you find <img src='http://www.phyrax.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   Anyhow, here&#8217;s the chat from the beginning!</p>
<p><span id="more-231"></span></p>
<blockquote><p><strong>Jay says:</strong><br />
Hello, can I help you?<br />
<strong> <strong>bella says:</strong></strong><br />
hello<br />
<strong>Jay says:</strong><br />
How&#8217;d you get my IM ?<br />
<strong>bella says:</strong><br />
haha,you bought powerleveling before.Did you remember that?<br />
<strong>Jay says:</strong><br />
oh my not again lol<br />
been so long since i&#8217;ve played wow<br />
<strong>bella says:</strong><br />
haha,that&#8217;s fine^^<br />
do you play wow now?<br />
<strong>Jay says:</strong><br />
Nope, I play EVE Online<br />
<strong>bella says:</strong><br />
oh,ok^^<br />
<strong>Jay says:</strong><br />
So what company are you with, oofay or the other?<br />
<strong>bella says:</strong><br />
hawow<br />
<strong>Jay says:</strong><br />
I&#8217;ve only bought powerleveling from Oofay</p>
<p>Unless you used to work there, like the other individual who IM&#8217;d me<br />
<strong>bella says:</strong><br />
oh,are there many people contact you?<br />
<strong>Jay says:</strong><br />
You are only the second to instant message me<br />
What&#8217;s your website btw?<br />
<strong>bella says:</strong><br />
our site www.hawow.com<br />
with virtual gold seling service<br />
<strong>Jay says:</strong><br />
Well at least it&#8217;s well constructed<br />
<strong>bella says:</strong><br />
btw,where are you from?<br />
haha,ty^^<br />
<strong>Jay says:</strong><br />
I&#8217;m in the U.S.<br />
East coast, so it&#8217;s 4:57 AM right now<br />
<strong>bella says:</strong><br />
oh,it is 16:58pm in China<br />
<strong>Jay says:</strong><br />
So you work for Lin Chunjie<br />
<strong>bella says:</strong><br />
no,i work for hawow.com now<br />
<strong>Jay says:</strong><br />
Right, but hawow is owned by Lin<br />
Lin&#8217;s based in Shanghai, and got his MSC in Finance and economics in the UK<br />
According to the domain info, he registered it in Fujian<br />
<strong>bella says:</strong><br />
wow,how do you know that? you know,the hawow is just been  constructed for few months. and I am new here<br />
<strong>Jay says:</strong><br />
Yep, hawow was created in feb. 09, 2010<br />
Domain was registerd to the XIN NET TECH CORP. registrar<br />
<strong>bella says:</strong><br />
who are you?<br />
<strong>Jay says:</strong><br />
haha, you IM me and ask who i am lol<br />
I&#8217;m just a geek<br />
There are also two other domains on the server, Game4world.com and Wowne.com<br />
Game4world.com is owned by Shi chen in Fzhou<br />
<strong>bella says:</strong><br />
i am curious that you know so much about our company<br />
<strong>Jay says:</strong><br />
Haha<br />
Wowne.com is also owned by Shi Chen<br />
seems your domain is the only one owned by another individual<br />
I belive your companies address is xiamen xiangxieyuan Fujian CN 360001 and the contact number is 86-139-06008909<br />
I can also contact the domain&#8217;s owner by emailing him at chunjielin@163.com<br />
Is this your boss? http://www.facebook.com/people/Lin-Chunjie/601696928<br />
<strong>bella says:</strong><br />
i don&#8217;t know<br />
<strong>Jay says:</strong><br />
haha just curious<br />
So, you never really explained to me how exactly you obtained my MSN!<br />
<strong>bella says:</strong><br />
It is a secret<br />
<strong>Jay says:</strong><br />
Hardly   Oofay intl. sells their customers information for profit, furthermore, individuals who worked for oofay intl. have had access to customers information and have since defected from the company and made their own using illegally obtained customer information from the previously stated company.  However, since these companies are based outside the united states&#8230;<br />
there is nothing I or anyone else can do about it<br />
The marketing strategy your company is using is quite innovative, you utlilze popular american names as usernames, mostly female, and approach customers via instant message, quite okay I might add, but your company and many other start companies must understand that the internet is a place for users to &#8220;GO&#8221; and find what they want, not be beggoned to do so by instant message.<br />
A friendly email would be more appropriate, yet soliciting profit over an instant message, which i&#8217;m assuming you&#8217;ve got a few windows open, is not only slow but entirely profitless<br />
I suppose you could leave the usual &#8220;WHen you decided to buy gold again just IM me okay!&#8221; like the last guy did but I&#8217;m sure by this point you&#8217;d understand that I don&#8217;t play WOW, and I can find about any information on you, or your company that I wish<br />
You, yourself as a human being, i&#8217;m sure have good intentions on getting paid and making money to make a life, but I have to tell you that this is a bad way of doing it, and I&#8217;d hope that someday you get out of telemarketing altogether, while most of telemarketing is profitable, I&#8217;d suggest staying away from selling wow gold or wow services.<br />
<strong>bella says:</strong><br />
Thank you for your suggestions<br />
<strong>Jay says:</strong><br />
Goodbye bella, and I&#8217;m sorry to say that I have to block this email from my messenger, but please take heed, leave this WoW selling alone, all these companies are selling the same services, at pretty much the same price, it&#8217;s not worth it, it&#8217;s like trying to sell coffee beside starbucks, it&#8217;s not gonna happen!</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.phyrax.com/wtf/msn-marketing/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Playin&#8217; with Android 2.1</title>
		<link>http://www.phyrax.com/android/playin-with-android-2-1</link>
		<comments>http://www.phyrax.com/android/playin-with-android-2-1#comments</comments>
		<pubDate>Sat, 27 Mar 2010 06:01:00 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Idea]]></category>

		<guid isPermaLink="false">http://www.phyrax.com/?p=229</guid>
		<description><![CDATA[I&#8217;ve always played with these back-burner programming API&#8217;s that hardly anyone uses anymore, at least on the corporate level.  So I figured why not start something new.  I&#8217;ve recently taken some sustenance in Android and it seems on a daily basis that I&#8217;m thinking of ways to incorporate it within Second Life.  Maybe an inventory management system,]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve always played with these back-burner programming API&#8217;s that hardly anyone uses anymore, at least on the corporate level.  So I figured why not start something new.  I&#8217;ve recently taken some sustenance in Android and it seems on a daily basis that I&#8217;m thinking of ways to incorporate it within Second Life.  Maybe an inventory management system, a sales system to incorporate with Hippo, hell I have plenty of ideas, but don&#8217;t know where to go at the moment.  For now I&#8217;ll be looking into Android 2.1 and being that I&#8217;m used to standard OOP syntax structures, I don&#8217;t think it&#8217;s going to be hard, but I&#8217;d love to hear some ideas from some of you Android users about this.  If any <img src='http://www.phyrax.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.phyrax.com/android/playin-with-android-2-1/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Technorati</title>
		<link>http://www.phyrax.com/info/technorati</link>
		<comments>http://www.phyrax.com/info/technorati#comments</comments>
		<pubDate>Sat, 27 Mar 2010 01:47:34 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Information]]></category>

		<guid isPermaLink="false">http://www.phyrax.com/?p=226</guid>
		<description><![CDATA[Added the blog to technorati for those of you who use that site.  Here&#8217;s the code ﻿UN2PKWU4G42J]]></description>
			<content:encoded><![CDATA[<p>Added the blog to technorati for those of you who use that site.  Here&#8217;s the code ﻿UN2PKWU4G42J</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phyrax.com/info/technorati/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bots?</title>
		<link>http://www.phyrax.com/info/bots</link>
		<comments>http://www.phyrax.com/info/bots#comments</comments>
		<pubDate>Fri, 26 Mar 2010 23:58:14 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Information]]></category>

		<guid isPermaLink="false">http://www.phyrax.com/?p=223</guid>
		<description><![CDATA[Lately I&#8217;ve been posting links to my blog to the Scrtipt Academy group and as expected I&#8217;ve had new user registrations.  However, never had this many within 24 hours.  Some of the usernames are very profane and very odd.  Therefore, to deter automated systems, I have setup an email verification registration system with captcha being]]></description>
			<content:encoded><![CDATA[<p>Lately I&#8217;ve been posting links to my blog to the Scrtipt Academy group and as expected I&#8217;ve had new user registrations.  However, never had this many within 24 hours.  Some of the usernames are very profane and very odd.  Therefore, to deter automated systems, I have setup an email verification registration system with captcha being required.  Hopefully this will deter any automated registrtaion systems.  On the bright side of things, you can now supply your password that you want rather than having one generated for you.  Now this isn&#8217;t to deter REAL users, everyone can STILL REGISTER.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phyrax.com/info/bots/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Second Life and PHP</title>
		<link>http://www.phyrax.com/second-life/second-life-and-php</link>
		<comments>http://www.phyrax.com/second-life/second-life-and-php#comments</comments>
		<pubDate>Wed, 24 Mar 2010 22:13:13 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Second Life]]></category>
		<category><![CDATA[Internet Communication]]></category>
		<category><![CDATA[LSL]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.phyrax.com/?p=221</guid>
		<description><![CDATA[I&#8217;ve created a beginner&#8217;s tutorial to show how to use Second Life&#8217;s llHTTPRequest function to communicate with PHP scripts on a website.  This offers absolutely limitless possabilities when attempting to communicate with websites, databases and many other web-based application platforms and APIs. View the tutorial here.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve created a beginner&#8217;s tutorial to show how to use Second Life&#8217;s <a href="http://lslwiki.net/lslwiki/wakka.php?wakka=llHTTPRequest" target="_blank">llHTTPRequest </a>function to communicate with PHP scripts on a website.  This offers absolutely limitless possabilities when attempting to communicate with websites, databases and many other web-based application platforms and APIs.</p>
<p><a href="http://www.phyrax.com/tutorials/scripting/lsl-to-php">View the tutorial here.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.phyrax.com/second-life/second-life-and-php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
