<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-13107154</id><updated>2011-12-01T08:43:38.605-08:00</updated><title type='text'>Willi Firulais</title><subtitle type='html'>Willi's Blog</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://willifirulais.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://willifirulais.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Willi Firulais</name><uri>http://www.blogger.com/profile/14567762030435657998</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>14</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-13107154.post-6155578195715191858</id><published>2011-02-27T03:07:00.000-08:00</published><updated>2011-02-27T03:07:37.902-08:00</updated><title type='text'>Create a graphviz dot file from a gedcom 6 xml file.</title><content type='html'>Create a graphviz dot file from a gedcom 6 xml file.&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="brush: jscript"&gt;&lt;?xml version='1.0' ?&gt;
&lt;xsl:stylesheet xmlns:xsl='http://www.w3.org/1999/XSL/Transform' version='2.0'&gt;
 &lt;xsl:output method='text'/&gt;
 &lt;!-- 
 Create a graphviz dot file from a gedcom 6 xml file. 
 (c) 2011 by willi firulais.
    Usage:
 Gedcom5to6.exe gedcom.ged gedcom6.xml -s Gedcom.xslt
    java -jar saxon9he.jar gedcom6.xml gedcom2dot.xsl &gt;gedcom6.dot 
 dot.exe -Tpdf gedcom.dot -o gedcom.pdf -Kdot 
 --&gt;
 &lt;xsl:template match="GEDCOM"&gt;
digraph G {
 label="My Heritage Tree"; 
 bgcolor="white";
 margin="0,0"; /* default margin is 0.5 inches */
 /* splines=false; */
 ranksep="0.15 equally"; /* vertical distance between each generation, default separation between ranks is 0.75 inches */
 node[fontsize=8, fontname="Helvetica", shape=plaintext];
 edge[arrowsize=0.5, color=black, dir=none];  
  &lt;xsl:for-each select="IndividualRec[@Id='I136']"&gt;
   &lt;xsl:variable name="startId"&gt;
    &lt;xsl:value-of select="@Id"/&gt;
   &lt;/xsl:variable&gt;
   &lt;xsl:call-template name="individual"&gt;
    &lt;xsl:with-param name="indId" select="$startId"/&gt;
   &lt;/xsl:call-template&gt;
   &lt;xsl:call-template name="childs"&gt;
    &lt;xsl:with-param name="parentId" select="$startId"/&gt;
   &lt;/xsl:call-template&gt;
  &lt;/xsl:for-each&gt; 
}
 &lt;/xsl:template&gt;

 &lt;!-- template to render recoursive through childs --&gt;
 &lt;xsl:template name="childs"&gt;
  &lt;xsl:param name="parentId" select="I1"/&gt;
  &lt;xsl:if test="$parentId != ''"&gt;
   &lt;xsl:for-each select="//FamilyRec[HusbFath/Link[@Ref=$parentId]]/Child|//FamilyRec[WifeMoth/Link[@Ref=$parentId]]/Child"&gt;
       &lt;xsl:sort select="ChildNbr" order="descending"/&gt;
    &lt;xsl:variable name="childId"&gt;
     &lt;xsl:value-of select="Link/@Ref"/&gt;
    &lt;/xsl:variable&gt;
    &lt;xsl:value-of select="$childId"/&gt; -&amp;gt;&lt;xsl:value-of select="$parentId"/&gt;
    &lt;xsl:text&gt;
    &lt;/xsl:text&gt;
    &lt;xsl:call-template name="individual"&gt;
     &lt;xsl:with-param name="indId" select="$childId"/&gt;
    &lt;/xsl:call-template&gt;   
    &lt;xsl:call-template name="childs"&gt;
     &lt;xsl:with-param name="parentId" select="$childId"/&gt;
    &lt;/xsl:call-template&gt;
   &lt;/xsl:for-each&gt; 
  &lt;/xsl:if&gt;     
 &lt;/xsl:template&gt;
    &lt;!-- template to render individual incl. birth, death and name of partner --&gt;
 &lt;xsl:template name="individual"&gt;
  &lt;xsl:param name="indId" select="I1"/&gt;
  &lt;xsl:value-of select="$indId"/&gt;
  &lt;xsl:text&gt;[ label=&amp;quot;&lt;/xsl:text&gt; 
  &lt;xsl:for-each select="//IndividualRec[@Id=$indId]"&gt;
   &lt;xsl:value-of select="replace(replace(IndivName, '/', ''),' ','\\n')"/&gt;
   &lt;xsl:variable name="birth"&gt;
    &lt;xsl:value-of select="//EventRec[@Type='birth'][Participant/Link/@Ref=$indId]/Date"/&gt;
   &lt;/xsl:variable&gt;
   &lt;xsl:variable name="death"&gt;
    &lt;xsl:value-of select="//EventRec[@Type='death'][Participant/Link/@Ref=$indId]/Date"/&gt;
   &lt;/xsl:variable&gt;  
   &lt;xsl:if test="$birth != ''"&gt;
    &lt;xsl:text&gt;\n&lt;/xsl:text&gt;
    &lt;xsl:text&gt;&amp;#42;&lt;/xsl:text&gt;
    &lt;xsl:value-of select="$birth"/&gt;
   &lt;/xsl:if&gt;
   &lt;xsl:if test="$death != ''"&gt;
    &lt;xsl:text&gt;\n&lt;/xsl:text&gt;
    &lt;xsl:text&gt;&amp;#8224;&lt;/xsl:text&gt;
    &lt;xsl:value-of select="$death"/&gt;
   &lt;/xsl:if&gt;   
   &lt;xsl:for-each select="//FamilyRec[HusbFath/Link/@Ref=$indId]/WifeMoth/Link|//FamilyRec[WifeMoth/Link/@Ref=$indId]/HusbFath/Link"&gt;
    &lt;xsl:variable name="partnerId"&gt;
     &lt;xsl:value-of select="@Ref"/&gt;
    &lt;/xsl:variable&gt;
    &lt;xsl:text&gt;\n&lt;/xsl:text&gt;
    &lt;xsl:text&gt;(&lt;/xsl:text&gt;&lt;xsl:text&gt;&amp;#8734;&lt;/xsl:text&gt;
    &lt;xsl:for-each select="//IndividualRec[@Id=$partnerId]"&gt;
     &lt;xsl:value-of select="replace(replace(IndivName, '/', ''),' ','\\n')"/&gt;
     &lt;xsl:variable name="birth"&gt;
      &lt;xsl:value-of select="//EventRec[@Type='birth'][Participant/Link/@Ref=$partnerId]/Date"/&gt;
     &lt;/xsl:variable&gt;
     &lt;xsl:variable name="death"&gt;
      &lt;xsl:value-of select="//EventRec[@Type='death'][Participant/Link/@Ref=$partnerId]/Date"/&gt;
     &lt;/xsl:variable&gt;  
     &lt;xsl:if test="$birth != ''"&gt;
      &lt;xsl:text&gt;\n&lt;/xsl:text&gt;
      &lt;xsl:text&gt;&amp;#42;&lt;/xsl:text&gt;
      &lt;xsl:value-of select="$birth"/&gt;
     &lt;/xsl:if&gt;
     &lt;xsl:if test="$death != ''"&gt;
      &lt;xsl:text&gt;\n&lt;/xsl:text&gt;
      &lt;xsl:text&gt;&amp;#8224;&lt;/xsl:text&gt;
      &lt;xsl:value-of select="$death"/&gt;
     &lt;/xsl:if&gt;
    &lt;/xsl:for-each&gt; 
    &lt;xsl:text&gt;)&lt;/xsl:text&gt;
   &lt;/xsl:for-each&gt; 
  &lt;/xsl:for-each&gt; 
  &lt;xsl:text&gt;&amp;quot;];&lt;/xsl:text&gt;
  &lt;xsl:text&gt;
  &lt;/xsl:text&gt;
 &lt;/xsl:template&gt;
&lt;/xsl:stylesheet&gt;
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13107154-6155578195715191858?l=willifirulais.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://willifirulais.blogspot.com/feeds/6155578195715191858/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13107154&amp;postID=6155578195715191858' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/6155578195715191858'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/6155578195715191858'/><link rel='alternate' type='text/html' href='http://willifirulais.blogspot.com/2011/02/create-graphviz-dot-file-from-gedcom-6.html' title='Create a graphviz dot file from a gedcom 6 xml file.'/><author><name>Willi Firulais</name><uri>http://www.blogger.com/profile/14567762030435657998</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13107154.post-2340947369252265466</id><published>2010-01-15T11:20:00.000-08:00</published><updated>2010-01-15T11:20:01.302-08:00</updated><title type='text'>extjs &amp; jquery &amp; Oracle Apex</title><content type='html'>To get the grid "dynamic" try somthing like (assuming that you use the jQuery adapter) this:&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="brush: jscript"&gt;
Ext.onReady(function() {
 jQuery("table.standardalternatingrowcolors",this).each(function(){
 var table = this;
 // create the data array
 var myData = new Array();
 jQuery('tr[td]',table).each(function(){
   var tr = new Array();
   jQuery('td', this).each(function(){  
     tr[tr.length] = jQuery(this).html();
   });
   myData[myData.length] = tr;
 });
 // create the metadata array
 var myHeaders = new Array;
 jQuery('tr[th]',table).each(function(){
   jQuery('th', this).each(function(){  
     var header = {};
     header["name"] = jQuery(this).attr('id');
     header["dataIndex"] = jQuery(this).attr('id');
     header["header"] = jQuery(this).html();
     header["sortable"] = true;
     header["width"] = 90;
     myHeaders[myHeaders.length] = header;
   });
 });
 
  var ds = new Ext.data.Store({
   proxy: new Ext.data.MemoryProxy(myData),
   reader: new Ext.data.ArrayReader({id: 0}, myHeaders)
  });
  ds.load();
 
  var colModel = new Ext.grid.ColumnModel(myHeaders);
  jQuery(table).attr(id,'x');
  var grid = new Ext.grid.GridPanel({el: 'grid-example', ds: ds, cm: colModel});
  grid.render();
  grid.getSelectionModel().selectFirstRow();
  jQuery(table).show();
 
 }); // replace each table on the page
 
});

&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13107154-2340947369252265466?l=willifirulais.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://willifirulais.blogspot.com/feeds/2340947369252265466/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13107154&amp;postID=2340947369252265466' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/2340947369252265466'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/2340947369252265466'/><link rel='alternate' type='text/html' href='http://willifirulais.blogspot.com/2010/01/extjs-jquery-oracle-apex.html' title='extjs &amp; jquery &amp; Oracle Apex'/><author><name>Willi Firulais</name><uri>http://www.blogger.com/profile/14567762030435657998</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13107154.post-8884262387246523730</id><published>2010-01-15T11:11:00.001-08:00</published><updated>2010-01-15T11:14:29.115-08:00</updated><title type='text'>FOP &amp; JBoss &amp; Oracle Apex</title><content type='html'>Add the missing Oracle XML Parser v2 (you may find them e.g. in JDeveloper/lib) libraries (lib/xmlparserv2.jar, lib/xml.jar) by opening the fop.war with your favorite zip program (e.g. rename fop.war to fop.zip) and saving the libraries WEB-INF/lib. Then copy the fop.war to the e.g. jboss\server\default\deploy directory. Maybe you have to restart your application server (dependent on your settings). Then try http://your-hostname:your-port/fop/apex_fop.jsp (e.g. http://127.0.0.1:8080/fop/apex_fop.jsp) to see if your work was successful.&lt;br /&gt;
&lt;br /&gt;
Manage Service / Instance Settings / Report Printing&lt;br /&gt;
Print Server: Standard Support&lt;br /&gt;
Print Server Host Address: 127.0.0.1&lt;br /&gt;
Print Server Port:8080&lt;br /&gt;
Print Server Script: /fop/apex_fop.jsp&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="brush: jscript"&gt;&lt;%@ page import='java.io.*'%&gt;
&lt;%@ page import='org.xml.sax.InputSource'%&gt;
&lt;%@ page import='org.apache.fop.apps.Driver'%&gt;
&lt;%@ page import='org.apache.fop.apps.Options'%&gt;
&lt;%@ page import='oracle.xml.parser.v2.XMLDocument'%&gt;
&lt;%@ page import='oracle.xml.parser.v2.XSLProcessor'%&gt;
&lt;%@ page import='oracle.xml.parser.v2.XSLStylesheet'%&gt;
&lt;%@ page import='oracle.xml.parser.v2.DOMParser'%&gt;
&lt;%
// see http://xml.apache.org/fop/output.html for all output types
XMLDocument   v_doc;
XSLStylesheet v_xsl = null;
String        v_fop;
DOMParser     parser = new DOMParser();
XSLProcessor processor = new XSLProcessor();
String        v_encode = "UTF-8";
 
String p_xsl = request.getParameter("template");
String p_xml = request.getParameter("xml");
 
/* transform an XML source to XSLFO using an XSL transformation */
v_xsl = new XSLStylesheet(new java.io.StringReader(p_xsl),null);
parser.parse(new java.io.StringReader(p_xml));
v_doc = parser.getDocument();
ByteArrayOutputStream v_out = new ByteArrayOutputStream();
processor.processXSL(v_xsl, v_doc, v_out);
v_fop = new String(v_out.toByteArray(),v_encode);
 
/* The FOP process */
Driver driver = new Driver();
driver.setRenderer(Driver.RENDER_PDF);
 
driver.setInputSource(new InputSource(new StringReader(v_fop)));
 
ByteArrayOutputStream outBuffer = new ByteArrayOutputStream();
driver.setOutputStream(outBuffer);
 
driver.run();
 
OutputStream outStream = response.getOutputStream();
response.setContentType("application/pdf");
response.setContentLength(outBuffer.size());
outStream.write(outBuffer.toByteArray());
outStream.flush();
%&gt;
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13107154-8884262387246523730?l=willifirulais.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://willifirulais.blogspot.com/feeds/8884262387246523730/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13107154&amp;postID=8884262387246523730' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/8884262387246523730'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/8884262387246523730'/><link rel='alternate' type='text/html' href='http://willifirulais.blogspot.com/2010/01/fop-jboss-oracle-apex.html' title='FOP &amp; JBoss &amp; Oracle Apex'/><author><name>Willi Firulais</name><uri>http://www.blogger.com/profile/14567762030435657998</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13107154.post-3727424248439989200</id><published>2010-01-15T10:22:00.000-08:00</published><updated>2010-01-15T11:00:23.285-08:00</updated><title type='text'>jQuery autocomplete and Oracle Apex</title><content type='html'>Here you can find some code if you want to use the jquery.autocomplete.js without modification.&lt;br /&gt;
Download the autocomplete jQuery plugin and upload then to your "Shared Components"/"Cascading Style Sheets".&lt;br /&gt;
Also upload the basic jquery library there.&lt;br /&gt;
&lt;br /&gt;
Download Links:&lt;br /&gt;
&lt;a href="http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/"&gt;http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://jquery.com/"&gt;http://jquery.com/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Add the following to your Page HTML Header where you want to use the autocomplete list:&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="brush: html"&gt;&lt;script type="text/javascript" src="#WORKSPACE_IMAGES#jquery.ajaxQueue.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="#WORKSPACE_IMAGES#jquery.autocomplete.js"&gt;&lt;/script&gt;
&lt;link rel="stylesheet" type="text/css" href="#WORKSPACE_IMAGES#jquery.autocomplete.css" /&gt;
&lt;script type="text/javascript"&gt;
$(document).ready(function(){
 
$.ajaxSetup({
  type: "POST",
  dataType: "text",
  beforeSend: function (xhr) {
    var apexParams = { 
     p_flow_id: $("#pFlowId").val(), 
     p_flow_step_id: $("#pFlowStepId").val(), 
     p_instance: $("#pInstance").val(),
     p_request: 'APPLICATION_PROCESS=AJAX_LIST_OF_VALUES'
    };
    this.data = this.data.replace('q=','x01=');
    this.data = this.data.replace('limit=','x02=');
    this.data = this.data.replace('timestamp=','x03=');    
    this.data = this.data+"&amp;"+jQuery.param(apexParams);
  }  
});
 
$("#P7_CUST_FIRST_NAME").autocomplete('wwv_flow.show', {
    extraParams: { x04: 'some extra information', x05: 'for your on demand process'},
    multiple: false,
    matchContains: false
});
 
$("#P7_CUST_LAST_NAME").autocomplete('wwv_flow.show', {
    extraParams: { x04: 'some extra information', x05: 'for your on demand process'},
    multiple: false,
    matchContains: false
});
 
}); // end of jQuery
&lt;/script&gt;
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
This looks complex, but the only thing your have to change is to change the name of the item where you want to have a autocomplete list&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13107154-3727424248439989200?l=willifirulais.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://willifirulais.blogspot.com/feeds/3727424248439989200/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13107154&amp;postID=3727424248439989200' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/3727424248439989200'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/3727424248439989200'/><link rel='alternate' type='text/html' href='http://willifirulais.blogspot.com/2010/01/jquery-autocomplete-and-oracle-apex.html' title='jQuery autocomplete and Oracle Apex'/><author><name>Willi Firulais</name><uri>http://www.blogger.com/profile/14567762030435657998</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13107154.post-5862214777167754438</id><published>2010-01-12T01:26:00.000-08:00</published><updated>2010-01-12T01:28:27.056-08:00</updated><title type='text'></title><content type='html'>Paging with SQL

mysql: startrow and maxrows
&lt;pre name="code" class="sql"&gt;
SELECT * FROM person ORDER BY LAST_NAME DESC LIMIT 11, 10
&lt;/pre&gt;

oracle: startrow and endrow
&lt;pre name="code" class="sql"&gt;
SELECT s.*
FROM (
 SELECT ROWNUM as COUNTER, x.*
 FROM (
  SELECT p.NAME, p.FIRST_NAME, p.LAST_NAME
  FROM person p
  ORDER BY p.LAST_NAME DESC
 ) x
) s
WHERE s.COUNTER BETWEEN 5 AND 8;
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13107154-5862214777167754438?l=willifirulais.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://willifirulais.blogspot.com/feeds/5862214777167754438/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13107154&amp;postID=5862214777167754438' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/5862214777167754438'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/5862214777167754438'/><link rel='alternate' type='text/html' href='http://willifirulais.blogspot.com/2010/01/paging-with-sql-mysql-startrow-and.html' title=''/><author><name>Willi Firulais</name><uri>http://www.blogger.com/profile/14567762030435657998</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13107154.post-6792941073143493269</id><published>2009-12-13T12:20:00.001-08:00</published><updated>2010-01-12T01:26:01.158-08:00</updated><title type='text'>Users created per day in drupal</title><content type='html'>&lt;pre name="code" class="sql"&gt;
SELECT 
DATE(FROM_UNIXTIME(created)) INTER, 
count(*) USERS
FROM users 
GROUP BY DATE(FROM_UNIXTIME(created))
ORDER BY DATE(FROM_UNIXTIME(created)) DESC
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13107154-6792941073143493269?l=willifirulais.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://willifirulais.blogspot.com/feeds/6792941073143493269/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13107154&amp;postID=6792941073143493269' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/6792941073143493269'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/6792941073143493269'/><link rel='alternate' type='text/html' href='http://willifirulais.blogspot.com/2009/12/users-created-per-day-in-drupal.html' title='Users created per day in drupal'/><author><name>Willi Firulais</name><uri>http://www.blogger.com/profile/14567762030435657998</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13107154.post-7977645686002262463</id><published>2009-10-24T11:25:00.001-07:00</published><updated>2009-10-24T11:29:21.169-07:00</updated><title type='text'>Information Management beyond Business and Analysts</title><content type='html'>Informationsverarbeitung abseits der Trampelpfade.
&lt;br /&gt;

Die Funktionen, die nur Programmiereren zur Verfügung sethen den erweiterten Endbenutzern zur Verfügung stellen. Ohne dabei jedoch eine Programmierstprache mit der verwendeten Programmiersprache zu entwickeln. Keine neues Metamodell im Metamodell.
&lt;br /&gt;
Die Erweiterbarkeit der Lösung muss der Lösung immanent sein.
&lt;br /&gt;
z.B. Ist JSF (Java Server Faces) eine nette Art Web-Formulare zu entwickeln. Einmal entwickelt wird jedesmal ein Programmierer benötigt um ein Feld im Formular zu ergänzen. Solche Werkzeuge gehen von der Metapher der Bau-Architektur aus. Dabei wird die Domäne Information in ein Korsett gezwängt das Ihrer nicht gebührt. Informationen sind Informationen und keine Materie. Es ist eine adequate Umgebung notwendig um die Information als solche zu behandeln. Flexibilität und nicht Starrheit ist gefragt.
&lt;br /&gt;
Unter dem Schlagwort "Business Intelligence" wurde in den leztten Jahren ein Weg beschritten der Endbenutzern mehr Freiheitsgrade einräumt. 
&lt;br /&gt;
Mit OLAP (Online Analytical Processing) wurde neue Konzepte eröffnet und der Bereich der Wissensrepräsentation um zwei wichtige Bereiche erweitert – Domänen und Hierarchien. Mit den Bestrebungen ROLAP wurden diese neuen Erkenntnisse versucht in die relationale Welt zu integrieren.
&lt;br /&gt;
Das relationale Modell ist der heutige de-fakto Standard für Wissensrepräsentation. Sind jedoch die heutigen Umsetzungen des relationalen Paradigmas zeitgemäß oder durch den "Markt" geprägt.
&lt;br /&gt;
Feierte die "objektorientierung" in den letzten Jahren mit Java und C# ihren Siegeszug in der Entwicklung, so ist aktuell der Trend zu Flexibilität innerhalb dieser Domäne zu beobachten. Objektorientierung ist sehr effizient wenn es sich um die Umsetzung von paradigmatisierten Wissen handelt. Objekte haben Attribute und Methoden. Solange diese im Umfeld von Bau-Architktur (Software-Architektur) Verwendung finden sind diese auch entsprechend effizient. Objekttypen (Klassen – siehe Sokrates) sind Vorlagen zur industriellen Fertigung von Bauelementen. Damit erhält die Industrialisierung in der Software-Entwicklung die notwendige Innovation. Für Wissenrepräsentation sind diese Modelle jedoch zu unflexibel. Wer legt fest wie die Klasse zur Beschreibung eines Ziegels aussieht? Welche Attribute hat die Klasse Ziegel zu haben? Ist die Farbe für den späteren Bewohner des Baus wichtig, so ist der Dämmwert für den Förderungsantragsteller ein weseltliches Beschreibungskriterium. Jedoch ist für den Architekten die Dimension des Bauelements vorrangig. 
&lt;br /&gt;
Die Welt der objektorientierten Sichtweise serialisiert bzw. persistiert die Informationen des Objekts.
&lt;br /&gt;
Durch Serialisierung können Objekte sterben und wieder zum Leben erweckt werden. Persistierung ist die Umschreibung  das Wissen eines Objekts abzulegen.
&lt;br /&gt;
Dies erlaubt weder Dekduktion noch Induktion. Aus dem Standpunkt der Wissenrepräsentation ist Objektorientierung die Haftanstallt der Information.
&lt;br /&gt;
Das relationale Modell per se erlaubt eine deduktive Informationsgewinnung. Durch Einführung des Entity-Relationship Modells wurde die Univeralität des relationalen Modells auf seine Rolle als Persistenz-Topf vorbereitet. BI (Business Intelligence) hat sie aus dieser Rolle zum Teil wieder befreit.
&lt;br /&gt;
Wie können "UPDATE" und "CREATE", "ALTER" Statements dem Benutzer präsentiert werden. 
&lt;br /&gt;
Informationssysteme sollten nicht nach Function Points bemessen werden, sonder nach "Information Points".
&lt;br /&gt;
Wie rasch kann eine Änderung bzw. Erweiterung durch den Endbenuzer herbeigeführt werden?
&lt;br /&gt;
Drupal gilt zwar als CMS (Content Management System), ist im Konzept jedoch viel mehr als das. Unter Verwendung des Moduls CCK (Content Construction Kit) verbirgt sich eine Oberfläche mit der dem erweiterten Endbenutzer die Möglichkeit eingerämt wird die Datenstruktur zu ändern. Mittels CCK werden an die relationale Datenbank "ALTER" und sogar "CREATE" Anweisungen gegeben. Eine semantische Zwischenschicht übernimmt die Aufbereitung für die weitere Informationsbearbeitung.
&lt;br /&gt;
Ähnlich dem "Naked Objects" Ansatz werden "graphische" Benutzerschnittstellen zur Laufzeit erstellt und fordern den Benutzer auf seine Informationen in strukturierter Form bekanntzugeben.
&lt;br /&gt;
Mit welchen Aufwand können flexible Ansätze mit vertretbarem Aufwand in kommerziellen Projekten umgesetzt werden?
&lt;br /&gt;
Und wie kombiniert sich das alles mit heutigen defacto Standards wie XML und Service Orientierter Architektur? Schnittstellen sind definiert und ermöglichen Verbindungen. Verbindungen ermöglichen Bauwerke. Gewölbe sind stabil. Setzen wir Schlusssteine oder suchen wir nach Erkenntnisfortschitt?
&lt;br /&gt;
Warum dann nicht einfach "Wiki". Etwas verstehen bedeutet etwas zu strukturieren. Strukturieren bedeutet Relationen aufzubauen. Beziehungen setzten Schnittstellen. Durch schneiden entsteht Redundanz.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13107154-7977645686002262463?l=willifirulais.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://willifirulais.blogspot.com/feeds/7977645686002262463/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13107154&amp;postID=7977645686002262463' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/7977645686002262463'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/7977645686002262463'/><link rel='alternate' type='text/html' href='http://willifirulais.blogspot.com/2009/10/informationsverarbeitung-abseits-der.html' title='Information Management beyond Business and Analysts'/><author><name>Willi Firulais</name><uri>http://www.blogger.com/profile/14567762030435657998</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13107154.post-8648719963068105655</id><published>2007-11-11T14:03:00.000-08:00</published><updated>2007-11-11T14:06:30.873-08:00</updated><title type='text'>Contrast</title><content type='html'>It's the contrast. It's the contrast that makes photos interesting. It's the contrast that give us a feeling of time. It's the contrast that makes us live.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13107154-8648719963068105655?l=willifirulais.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://willifirulais.blogspot.com/feeds/8648719963068105655/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13107154&amp;postID=8648719963068105655' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/8648719963068105655'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/8648719963068105655'/><link rel='alternate' type='text/html' href='http://willifirulais.blogspot.com/2007/11/contrast.html' title='Contrast'/><author><name>Willi Firulais</name><uri>http://www.blogger.com/profile/14567762030435657998</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13107154.post-8759172775189843515</id><published>2007-07-30T06:36:00.000-07:00</published><updated>2007-07-31T02:20:21.820-07:00</updated><title type='text'>jQuery colspan and rowspan table using cell break</title><content type='html'>&lt;table border="1" id="table"&gt;
&lt;tr&gt;&lt;th&gt;x&lt;/th&gt;&lt;th&gt;x&lt;/th&gt;&lt;th&gt;x&lt;/th&gt;&lt;th&gt;hx1&lt;/th&gt;&lt;th&gt;hx1&lt;/th&gt;&lt;th&gt;hx1&lt;/th&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;th&gt;x&lt;/th&gt;&lt;th&gt;x&lt;/th&gt;&lt;th&gt;x&lt;/th&gt;&lt;th&gt;hxx1&lt;/th&gt;&lt;th&gt;hxx2&lt;/th&gt;&lt;th&gt;hxx3&lt;/th&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;th&gt;hy1&lt;/th&gt;&lt;th&gt;hyy1&lt;/th&gt;&lt;th&gt;hy1&lt;/th&gt;&lt;td&gt;a1&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;3&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;th rowspan="1"&gt;hy1&lt;/th&gt;&lt;th&gt;hyy2&lt;/th&gt;&lt;th&gt;hy1&lt;/th&gt;&lt;td&gt;1.1&lt;/td&gt;&lt;td&gt;2.1&lt;/td&gt;&lt;td&gt;3.1&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;&lt;th&gt;hy1&lt;/th&gt;&lt;th&gt;hyy3&lt;/th&gt;&lt;th&gt;hy1&lt;/th&gt;&lt;td&gt;4&lt;/td&gt;&lt;td&gt;5&lt;/td&gt;&lt;td&gt;6&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;th&gt;hy2&lt;/th&gt;&lt;th&gt;hyy3&lt;/th&gt;&lt;th&gt;hy1&lt;/th&gt;&lt;td&gt;7&lt;/td&gt;&lt;td&gt;8&lt;/td&gt;&lt;td&gt;9&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;th&gt;hy2&lt;/th&gt;&lt;th&gt;hyy3&lt;/th&gt;&lt;th&gt;hy1&lt;/th&gt;&lt;td&gt;10&lt;/td&gt;&lt;td&gt;11&lt;/td&gt;&lt;td&gt;12&lt;/td&gt;&lt;/tr&gt; 
&lt;tr&gt;&lt;th&gt;hy2&lt;/th&gt;&lt;th&gt;hyy3&lt;/th&gt;&lt;th&gt;hy1&lt;/th&gt;&lt;td&gt;13&lt;/td&gt;&lt;td&gt;14&lt;/td&gt;&lt;td&gt;15&lt;/td&gt;&lt;/tr&gt; 
&lt;tr&gt;&lt;th&gt;hy3&lt;/th&gt;&lt;th&gt;hyy3&lt;/th&gt;&lt;th&gt;hy2&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;3&lt;/td&gt;&lt;/tr&gt; 
&lt;tr&gt;&lt;th&gt;hy3&lt;/th&gt;&lt;th&gt;hyy3&lt;/th&gt;&lt;th&gt;hy2&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;3&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;th&gt;hy2&lt;/th&gt;&lt;th&gt;hyy3&lt;/th&gt;&lt;th&gt;hy1&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;3&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;th&gt;hy2&lt;/th&gt;&lt;th&gt;hyy3&lt;/th&gt;&lt;th&gt;hy1&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;3&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;th&gt;hy3&lt;/th&gt;&lt;th&gt;hyy3&lt;/th&gt;&lt;th&gt;hy2&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;3&lt;/td&gt;&lt;/tr&gt; 
&lt;tr&gt;&lt;th&gt;hy3&lt;/th&gt;&lt;th&gt;hyy3&lt;/th&gt;&lt;th&gt;hy2&lt;/th&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;2&lt;/td&gt;&lt;td&gt;3&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;

Example:
&lt;pre style="border: 1px solid #ffffff; overflow: auto; background-color: #cccccc; "&gt;
 $("#table").rowspan(0);
 $("#table").rowspan(1);
 $("#table").rowspan(2);
 $('table tbody tr:visible').each(function(row) {
   $('#table1').colspan(row);
 })
&lt;/pre&gt;

&lt;pre style="border: 1px solid #ffffff; overflow: auto; background-color: #cccccc; "&gt;
jQuery.fn.rowspan = function(colIdx) {
 return this.each(function(){

  var that;
  $('tr', this).each(function(row) {
  $('th:eq('+colIdx+')', this).filter(':visible').each(function(col) {
      if ($(this).html() == $(that).html()) {
        rowspan = $(that).attr("rowSpan");
        if (rowspan == undefined) {
  
          $(that).attr("rowSpan",1);
          rowspan = $(that).attr("rowSpan");
        }
        rowspan = Number(rowspan)+1;
        $(that).attr("rowSpan",rowspan); // do your action for the colspan cell here
        $(this).hide(); // .remove(); // do your action for the old cell here
      } else {
        that = this;
      }
      that = (that == null) ? this : that; // set the that if not already set
  });
 });

 });
}
&lt;/pre&gt;

&lt;pre style="border: 1px solid #ffffff; overflow: auto; background-color: #cccccc; "&gt;
jQuery.fn.colspan = function(rowIdx) {
 return this.each(function(){

  var that;
  $('tr', this).filter(":eq("+rowIdx+")").each(function(row) {
  $(this).find('th').filter(':visible').each(function(col) {
      if ($(this).html() == $(that).html()) {
        colspan = $(that).attr("colSpan");
        if (colspan == undefined) {
          $(that).attr("colSpan",1);
          colspan = $(that).attr("colSpan");
        }
        colspan = Number(colspan)+1;
        $(that).attr("colSpan",colspan);
        $(this).hide(); // .remove();
      } else {
        that = this;
      }
      that = (that == null) ? this : that; // set the that if not already set
  });
 });

 });
}
&lt;/pre&gt;

&lt;script src="http://jquery.com/src/jquery-latest.pack.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript"&gt;/* &lt;![CDATA[ */$('#table').css("background-color","#fcfcfc");/* ]]&gt; */&lt;/script&gt;
&lt;script type="text/javascript"&gt;/* &lt;![CDATA[ */

jQuery.fn.rowspan = function(colIdx) {
 return this.each(function(){

  var that;
  $('tr', this).each(function(row) {
  $('th:eq('+colIdx+')', this).filter(':visible').each(function(col) {
      if ($(this).html() == $(that).html()) {
        rowspan = $(that).attr("rowSpan");
        if (rowspan == undefined) {
  
          $(that).attr("rowSpan",1);
          rowspan = $(that).attr("rowSpan");
        }
        rowspan = Number(rowspan)+1;
        $(that).attr("rowSpan",rowspan); // do your action for the colspan cell here
        $(this).hide(); // .remove(); // do your action for the old cell here
      } else {
        that = this;
      }
      that = (that == null) ? this : that; // set the that if not already set
  });
 });

 });
}

jQuery.fn.colspan = function(rowIdx) {
 return this.each(function(){

  var that;
  $('tr', this).filter(":eq("+rowIdx+")").each(function(row) {
  $(this).find('th').filter(':visible').each(function(col) {
      if ($(this).html() == $(that).html()) {
        colspan = $(that).attr("colSpan");
        if (colspan == undefined) {
          $(that).attr("colSpan",1);
          colspan = $(that).attr("colSpan");
        }
        colspan = Number(colspan)+1;
        $(that).attr("colSpan",colspan);
        $(this).hide(); // .remove();
      } else {
        that = this;
      }
      that = (that == null) ? this : that; // set the that if not already set
  });
 });

 });
}

 $("#table").colspan(0);
 $("#table").colspan(1);
 $("#table").rowspan(0);
 $("#table").rowspan(1);
 $("#table").rowspan(2);

/* ]]&gt; */&lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13107154-8759172775189843515?l=willifirulais.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://willifirulais.blogspot.com/feeds/8759172775189843515/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13107154&amp;postID=8759172775189843515' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/8759172775189843515'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/8759172775189843515'/><link rel='alternate' type='text/html' href='http://willifirulais.blogspot.com/2007/07/jquery-table-column-break.html' title='jQuery colspan and rowspan table using cell break'/><author><name>Willi Firulais</name><uri>http://www.blogger.com/profile/14567762030435657998</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13107154.post-115513740645109056</id><published>2006-08-09T08:29:00.000-07:00</published><updated>2010-01-15T11:02:06.732-08:00</updated><title type='text'>EL Expression / Scriptlet "switching"</title><content type='html'>&lt;pre class="brush: html"&gt;&lt;% pageContext.setAttribute("x", "33"); %&gt; x'=&lt;c:out value="${x}"&gt; x''=&lt;c:set var="x" value="${x+1}"&gt; &lt;%= pageContext.getAttribute("x") %&gt;
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13107154-115513740645109056?l=willifirulais.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://willifirulais.blogspot.com/feeds/115513740645109056/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13107154&amp;postID=115513740645109056' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/115513740645109056'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/115513740645109056'/><link rel='alternate' type='text/html' href='http://willifirulais.blogspot.com/2006/08/el-expression-scriptlet-switching.html' title='EL Expression / Scriptlet &quot;switching&quot;'/><author><name>Willi Firulais</name><uri>http://www.blogger.com/profile/14567762030435657998</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13107154.post-115403139231176806</id><published>2006-07-27T13:04:00.000-07:00</published><updated>2006-07-27T13:45:53.106-07:00</updated><title type='text'>Fractal Recursion</title><content type='html'>... may this be a recursion following fractal rules?

"... fractal ... denotes a shape that is recursively constructed or self similar ..."
"... fractal ... a shape that appears similar at all scales of magnification ..."
[Wikipedia, the free encyclopedia]

" ... &lt;i&gt;recursion&lt;/i&gt; specifies ... and then defining rules to break down complex cases into simpler cases ... " [Wikipedia, the free encyclopedia]

"For example, the following is a recursive definition of person's ancestors: &lt;ul&gt;&lt;li&gt;One's parents are one's ancestors (&lt;b&gt;base case&lt;/b&gt;);&lt;/li&gt;&lt;li&gt;The parents of any ancestor are also ancestors of the person under consideration (&lt;b&gt;recursion step&lt;/b&gt;)." &lt;/li&gt;&lt;/ul&gt;[Wikipedia, the free encyclopedia, http://en.wikipedia.org/wiki/Recursion]

If the breakdown rules follows the laws of fractal shapes you will come up to a second level recursion or a fractal recursion.

"... It’s an infinite    spiraling curvature of double helix around their coherent line of symmetry in    its center (gravity of space/time), which is in its turn coiled in its own    frame of reference; hence one of two equal and opposite spirals of    double/helix within/without a double helix. It has no beginning and end,    because the only beginning and end of all its fractal recursions is right    here and now. All infinity of exponentially larger and smaller curvatures    (light speed difference) begins and ends here and now. ..."
[http://www.prophetsmanual.com/content/index.cfm?navID=20&amp;itemID=20]

"A Fractal Theory of the Origin and Meaning of the Universe ... The fractal recursion ... is obvious. "
[http://www.schoolofwisdom.com/cosmo.html]

I listed here some statements on different kinds of the phenomena of fractal recursion. None of this are my personal opinions on this topic. The interesing is that in some views recursion and fractal laws seem to have an evident influence or are influenced to see the world.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13107154-115403139231176806?l=willifirulais.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://willifirulais.blogspot.com/feeds/115403139231176806/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13107154&amp;postID=115403139231176806' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/115403139231176806'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/115403139231176806'/><link rel='alternate' type='text/html' href='http://willifirulais.blogspot.com/2006/07/fractal-recursion.html' title='Fractal Recursion'/><author><name>Willi Firulais</name><uri>http://www.blogger.com/profile/14567762030435657998</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13107154.post-111945246081397572</id><published>2005-06-22T07:36:00.000-07:00</published><updated>2006-01-21T10:21:54.376-08:00</updated><title type='text'>Willi’s “TWiki” Style</title><content type='html'>Willi’s “TWiki” style

When analyzing character text (e.g. readme.txt, license.txt, register.txt) this will guide you to the following “TWiki” style for writing structured text that is readable as text and as transformed XHTML page.

&lt;span style="font-family:courier new;"&gt;
&lt;strong&gt;
*** Header
&lt;/strong&gt;
&amp;lt;h1&amp;gt;Header&amp;lt;/h1&amp;gt;
valid only if at the beginning of a line

&lt;strong&gt;
** Header
&lt;/strong&gt;
&amp;lt;h2&amp;gt;Header&amp;lt;/h2&amp;gt;
valid only if at the beginning of a line

&lt;strong&gt;
* Header
&lt;/strong&gt;
&amp;lt;h3&amp;gt;Header&amp;lt;/h3&amp;gt;
valid
only if at the beginning of a line

&lt;strong&gt;
Header:
&lt;/strong&gt;
&amp;lt;h4&amp;gt;Header&amp;lt;/h4&amp;gt;
Valid only if the ‘:’
is the last character in this line and the Text starts at the beginning of the line.

&lt;strong&gt;
*** Header:
&lt;/strong&gt;
alternative representation of an Header 1

&lt;strong&gt;
** Header:
&lt;/strong&gt;
alternative representation of an Header 2

&lt;strong&gt;
* Header:
&lt;/strong&gt;
alternative representation of an Header 3

&lt;strong&gt;&lt;pre&gt;
Header
******
&lt;/pre&gt;&lt;/strong&gt;
alternative representation of an Header 1
Valid, only if the line follows directly at
the beginning of the next line

&lt;strong&gt;&lt;pre&gt;
Header
======
&lt;/pre&gt;&lt;/strong&gt;
alternative representation of an Header 2
Valid, only if the line follows directly at the beginning of the next line

&lt;strong&gt;&lt;pre&gt;
Header
------
&lt;/pre&gt;&lt;/strong&gt;
alternative representation of an Header 3
Valid, only if the line follows directly at the beginning of the next line

&lt;strong&gt;
- a
- b
- c
&lt;/strong&gt;
&amp;lt;ul&amp;gt;
&amp;lt;li&amp;gt;a&amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt;b&amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt;c&amp;lt;/li&amp;gt;
&amp;lt;/ul&amp;gt;
bullet item

&lt;strong&gt;
+ a
+ b
+ c
&lt;/strong&gt;
&amp;lt;ol&amp;gt;
&amp;lt;li&amp;gt;a&amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt;b&amp;lt;/li&amp;gt;
&amp;lt;li&amp;gt;c&amp;lt;/li&amp;gt;
&amp;lt;/ol&amp;gt;
list
items summing up

&lt;strong&gt;
1) a
2) b
3) c
&lt;/strong&gt;
Alternative representation of an ordered list
Only valid if the line starts with the ‘1)’ signiture

&lt;strong&gt;
1. a
2. b
3. c
&lt;/strong&gt;
Alternative representation of an ordered list
Only valid if the line starts with the ‘1.’
Signiture. Also possible ‘1.1.2’, etc.

&lt;strong&gt;
A. a
B. b
C. c
&lt;/strong&gt;
Alternative representation of an ordered list
Only valid if the line starts with the ‘A.’ signiture

&lt;strong&gt;
chr(10), chr(13)
&lt;/strong&gt;
&amp;lt;br/&amp;gt;

&lt;strong&gt;
* * *
&lt;/strong&gt;
&amp;lt;hr/&amp;gt;
Only
valid if it starts at the beginning of the line.
Use three or more lines

&lt;strong&gt;
*****
&lt;/strong&gt;
Alternative representation of a horizontal line

&lt;strong&gt;
= = =
&lt;/strong&gt;
&amp;lt;hr/&amp;gt;
Only
valid if it starts at the beginning of the line.
Use three or more lines

&lt;strong&gt;
=====
&lt;/strong&gt;
Alternative representation of a horizontal line

&lt;strong&gt;
- - -
&lt;/strong&gt;
&amp;lt;hr/&amp;gt;
Only
valid if it starts at the beginning of the line.
Use three or more lines

&lt;strong&gt;
-----
&lt;/strong&gt;
Alternative representation of a horizontal line

&lt;strong&gt;&lt;pre&gt;
 *L*  *C*    *R* 
  A2   2      2  
&lt;/pre&gt;&lt;/strong&gt;
&amp;lt;table&amp;gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;L&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;C&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;R&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;A2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;
&amp;lt;/table&amp;gt;

&lt;strong&gt;&lt;pre&gt;
---------------------
 *L*  *C*    *R* 
---------------------
  A2   2      2  
---------------------
&lt;/pre&gt;&lt;/strong&gt;
alternative representation of a table 

&lt;strong&gt;&lt;pre&gt;
---------------------
| *L* | *C*  |  *R* |
---------------------
|  A2 |  2   |   2  |
---------------------
&lt;/pre&gt;&lt;/strong&gt;
alternative representation of a table 
&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13107154-111945246081397572?l=willifirulais.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://willifirulais.blogspot.com/feeds/111945246081397572/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13107154&amp;postID=111945246081397572' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/111945246081397572'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/111945246081397572'/><link rel='alternate' type='text/html' href='http://willifirulais.blogspot.com/2005/06/willis-twiki-style_22.html' title='Willi’s “TWiki” Style'/><author><name>Willi Firulais</name><uri>http://www.blogger.com/profile/14567762030435657998</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13107154.post-111683689263434992</id><published>2005-05-23T01:27:00.000-07:00</published><updated>2005-05-23T01:28:12.636-07:00</updated><title type='text'>Our virtual world is flexible</title><content type='html'>People who have to deal with numbers like to use E*cel. People who have to deal with lists like MS-Execl and people who have to deal with tables like E*cel.

They can start with one cell entering their data.


When the need more information they can enter more information around the first entered data. They can enter data to the right and below. For those who are more skilled they can also enter data above and to the left (i.e. inserting new column and rows or moving the data they have entered to a different area).
They do not need some developer to create a table and enter or import/copy their data to play around with it.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13107154-111683689263434992?l=willifirulais.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://willifirulais.blogspot.com/feeds/111683689263434992/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13107154&amp;postID=111683689263434992' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/111683689263434992'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/111683689263434992'/><link rel='alternate' type='text/html' href='http://willifirulais.blogspot.com/2005/05/our-virtual-world-is-flexible.html' title='Our virtual world is flexible'/><author><name>Willi Firulais</name><uri>http://www.blogger.com/profile/14567762030435657998</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13107154.post-111683598233649371</id><published>2005-05-23T01:12:00.000-07:00</published><updated>2005-05-23T01:13:02.340-07:00</updated><title type='text'>Startup</title><content type='html'>Willi is up with his blog.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13107154-111683598233649371?l=willifirulais.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://willifirulais.blogspot.com/feeds/111683598233649371/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13107154&amp;postID=111683598233649371' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/111683598233649371'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13107154/posts/default/111683598233649371'/><link rel='alternate' type='text/html' href='http://willifirulais.blogspot.com/2005/05/startup.html' title='Startup'/><author><name>Willi Firulais</name><uri>http://www.blogger.com/profile/14567762030435657998</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
