<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.secondlife.com/w/index.php?action=history&amp;feed=atom&amp;title=SLnode</id>
	<title>SLnode - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.secondlife.com/w/index.php?action=history&amp;feed=atom&amp;title=SLnode"/>
	<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=SLnode&amp;action=history"/>
	<updated>2026-05-10T17:43:01Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.42.1</generator>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=SLnode&amp;diff=1162730&amp;oldid=prev</id>
		<title>Ugleh Ulrik: Created page with &quot;==Links== &#039;&#039;&#039;Homepage&#039;&#039;&#039; [http://slnode.com http://slnode.com]  &#039;&#039;&#039;Support Email&#039;&#039;&#039; im&#039;&#039; at &#039;&#039; ugleh&#039;&#039; dot &#039;&#039; com  &#039;&#039;&#039;SL Contact&#039;&#039;&#039; Ugleh Ulrik   ==Site Details== SLNode is a web…&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=SLnode&amp;diff=1162730&amp;oldid=prev"/>
		<updated>2012-02-10T06:40:33Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;==Links== &amp;#039;&amp;#039;&amp;#039;Homepage&amp;#039;&amp;#039;&amp;#039; [http://slnode.com http://slnode.com]  &amp;#039;&amp;#039;&amp;#039;Support Email&amp;#039;&amp;#039;&amp;#039; im&amp;#039;&amp;#039; at &amp;#039;&amp;#039; ugleh&amp;#039;&amp;#039; dot &amp;#039;&amp;#039; com  &amp;#039;&amp;#039;&amp;#039;SL Contact&amp;#039;&amp;#039;&amp;#039; Ugleh Ulrik   ==Site Details== SLNode is a web…&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==Links==&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Homepage&amp;#039;&amp;#039;&amp;#039; [http://slnode.com http://slnode.com]&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Support Email&amp;#039;&amp;#039;&amp;#039; im&amp;#039;&amp;#039; at &amp;#039;&amp;#039; ugleh&amp;#039;&amp;#039; dot &amp;#039;&amp;#039; com&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;SL Contact&amp;#039;&amp;#039;&amp;#039; Ugleh Ulrik &lt;br /&gt;
&lt;br /&gt;
==Site Details==&lt;br /&gt;
SLNode is a web service for parsing information for any complex or unique scripts need. We provide you with the 24/7 reliable domains for all your parsing needs, including other tools like name2key.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;More Parsing Data coming soon, as for now SLNode is a new service and still needs to determine whats more needed. If anyone has an idea contact Ugleh Ulrik or submit a suggestion in the discussion section.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
==strtotime==&lt;br /&gt;
&lt;br /&gt;
[http://slnode.com/strtotime.php?q=friday strtotime]&lt;br /&gt;
&lt;br /&gt;
StrtoTime is a function in PHP that grabs the unixtime based off a string command.&lt;br /&gt;
&lt;br /&gt;
On the URL you will see a q=. Replace the default &amp;quot;friday&amp;quot; with whatever day you want&lt;br /&gt;
&lt;br /&gt;
Examples are as follows:&lt;br /&gt;
&lt;br /&gt;
now&lt;br /&gt;
&lt;br /&gt;
10 September 2000&lt;br /&gt;
&lt;br /&gt;
+1 day&lt;br /&gt;
&lt;br /&gt;
+1 week&lt;br /&gt;
&lt;br /&gt;
+1 week 2 days 4 hours 2 seconds&lt;br /&gt;
&lt;br /&gt;
next Thursday&lt;br /&gt;
&lt;br /&gt;
last Monday&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Warning: The Unix Timestamp timezone is PST and you will need to create your own timezone offset in your lsl script.&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Script Example&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
key strtotime_request_id;&lt;br /&gt;
strtotime(string command){&lt;br /&gt;
strtotime_request_id = llHTTPRequest(&amp;quot;http://slnode.com/strtotime.php?q=&amp;quot;+llEscapeURL(command), [], &amp;quot;&amp;quot;);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
default&lt;br /&gt;
{&lt;br /&gt;
    state_entry()&lt;br /&gt;
    {&lt;br /&gt;
       strtotime(&amp;quot;Thursday&amp;quot;);&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
 http_response(key request_id, integer status, list metadata, string body)&lt;br /&gt;
    {&lt;br /&gt;
        if (request_id == strtotime_request_id)&lt;br /&gt;
        {&lt;br /&gt;
            //This is the Unix Timestamp which returns 12 am Thursday PST&lt;br /&gt;
           llOwnerSay(body);&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/lsl&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ugleh Ulrik</name></author>
	</entry>
</feed>