<?xml version="1.0"?>
<rss version="2.0">
	<channel>
		<title>Table Built from PHP</title>
		<link>http://www.allegro.cc/forums/view/590571</link>
		<description>Allegro.cc Forum Thread</description>
		<webMaster>matthew@allegro.cc (Matthew Leverton)</webMaster>
		<lastBuildDate>Tue, 20 Mar 2007 03:27:34 +0000</lastBuildDate>
	</channel>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>html, php and a little javascript.  There, now you know the extent of my web building knowledge.  <img src="http://www.allegro.cc/forums/smileys/smiley.gif" alt=":)" /></p><p><b><i>Don&#39;t want to read my ramblings?  Then go to the bottom of the post!</i></b></p><p>Anyway, I&#39;m working on making my website (seems I almost never have time to).  I&#39;ve got all my games listed, ranging from ideas to completed to dead on my harddrive.  Each game has a small, one paragraph description and a screenshot, plus a few button-slash-links for a spot on forums, a download, etc.  Know, you put all of these sections on one page and you have a lot of scrolling to do.  So, my idea was to put a table (literally) of contents at the top, with a hop link to the given game.  </p><p>The table is built from php code that looks up a database storing information about the games.  The table includes several things like what version, if it has a download, what I used to make it and so on.  You can click the column title at the top of the table to rebuild the table sorted on that column.</p><p>I realized this was bloated so I&#39;m creating a condensed version which only has the most important information.  I also want to work on coloring the rows.  Like, every other row when it is sorted by title and maybe color it by blocks when sorted by anything else.  </p><p>Ultimately, this might be really slow, since when you click on a column header to rearrange the table, the entire page has to be regenerated (including the lengthy set of sections below).  I suppose I could use a frame (or maybe an iframe?), but I&#39;m not sure if that is a good route to take.</p><p><b>My question is, is building a table using PHP a good idea?</b>  Moreover, is it an acceptable coding practice or am I just abusing the concept of PHP here.  Remember what I said at the beginning and my lack of web-building knowledge; I come up with ideas that I think are good but might have problems that my limited knowledge doesn&#39;t foresee. <img src="http://www.allegro.cc/forums/smileys/smiley.gif" alt=":)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Onewing)</author>
		<pubDate>Thu, 15 Mar 2007 23:20:15 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>
It&#39;s a good idea, it&#39;s appropriate use of PHP, and it&#39;s recommended.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (X-G)</author>
		<pubDate>Thu, 15 Mar 2007 23:21:27 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I don&#39;t see how it is different than generating the rest of the page with PHP. In short, yes, it&#39;s a good idea.</p><p>[edit]</p><p>Blasted, I need to stop reading other forums while posting.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc ( mEmO)</author>
		<pubDate>Thu, 15 Mar 2007 23:23:40 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Thanks!</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
I don&#39;t see how it is different than generating the rest of the page with PHP.
</p></div></div><p>
This might be my biggest concern.  The page itself is rather lengthy, and since the table is going to be sorted by whatever column header they click and the whole page is rebuilt, instead of just the table.  I might be able to use iframe though, which was an idea I had writing the above post.  I&#39;ll have to experiment with it.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Onewing)</author>
		<pubDate>Thu, 15 Mar 2007 23:27:02 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Ultimately, this might be really slow, since when you click on a column header to rearrange the table, the entire page has to be regenerated (including the lengthy set of sections below). I suppose I could use a frame (or maybe an iframe?), but I&#39;m not sure if that is a good route to take.
</p></div></div><p>

Or you could use JavaScript to provide real-time sorting, falling back to regeneration where applicable.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Inphernic)</author>
		<pubDate>Thu, 15 Mar 2007 23:28:02 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Unless you have tons (and I mean tons) of data, it should&#39;t cause that much of a performance hit to reorder and regenerate the whole page.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (BAF)</author>
		<pubDate>Fri, 16 Mar 2007 00:15:32 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>And don&#39;t forget to not use tables for the layout, just for data. <a href="http://html.cita.uiuc.edu/reqs.php">This</a> website illustrates what I mean, and also has a lot of useful guidelines to build the web page.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Crazy Photon)</author>
		<pubDate>Fri, 16 Mar 2007 00:35:11 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I wonder how JavaScript would perform sorting the data itself. It would be nice, but I bet you&#39;d be left writing your own sorting functions (or finding some prewritten ones on the Web).</p><p>Instead of using an iframe you could put the heading-table on it&#39;s own page, like a table of contents, and link to a genaric script, passing the record&#39;s primary key in the querystring, that displays a single item&#39;s information at a time or; if the average item has relatively little information, link to an anchor target on a paged list of content. Using the count of records in the database, determine which page each item would appear on (using the number of items displayed on a page and the total count) and embed a variable in the querystring like page=x in the linked address so when you load the generic script (php), it would load the x<i>th</i> page of data. For example:</p><p>SELECT * FROM MyTable LIMIT 0, 20;</p><p>I&#39;m not entirely sure on the SQL or the DBMS you are using so you&#39;ll have to look put the syntax appropriate to your tools. I believe that says return all columns from MyTable beginning at record 0 (the first one) and only return 20 rows. The next page might (guessing) look like this:</p><p>SELECT * FROM MyTable LIMIT 20, 20;</p><p>Then, the address for the item whose primary key was 23 and was displayed on page 2 might look like this (assuming localhost was instead your domain name/IP address):</p><p><a href="http://localhost.com/item.php?id=23&amp;page=2">http://localhost.com/item.php?id=23&amp;page=2</a></p><p>These are my ideas. It might complicate things paging via unique sorting mechanisms because you would likely want the item.php page sorted the same way as your table of contents, which would alter the page a particular item was displayed on and the order the items were displayed on that page. Since the table of contents is separated from the main data it wouldn&#39;t be a problem regenerating the data, and therefore, recalculating this information whenever the sorting techique is changed. Then pass that as well via the querystring, for example:</p><p><a href="http://localhost.com/item.php?id=23&amp;page=2&amp;sort=2">http://localhost.com/item.php?id=23&amp;page=2&amp;sort=2</a><br />OR<br /><a href="http://localhost.com/item.php?id=23&amp;page=2&amp;sort=name">http://localhost.com/item.php?id=23&amp;page=2&amp;sort=name</a></p><p>I would generally stay away from frames because they don&#39;t flow nicely with Web browsers, being that each frame can refresh separately, etc. It&#39;s inconsistent and a frustrating experience for the user trying to navigate, IMHO.</p><p>I wouldn&#39;t shy away from using tables to layout your Web pages though. Browser wars are bad enough on PCs, let alone trying to make your site compatible with portable devices, etc. If your page is professional and has the intent of marketing your skills or is used for commercial purposes, target your sites compatability for the most exposure possible. Otherwise, target your intended audience or provide general browser support (IE/Firefox). Web development tools are poorly designed and inconsistently supported.</p><p>Personally, I hate today&#39;s Web languages and as a single example want to replace everything SGML based with something more programmer-friendly. I&#39;m no fan of &lt;anything that=&quot;looks&quot; like=&quot;this&quot; /&gt;. I am devising a replacement for Web development that I can only describe as an extensible, byte-coded, C-like language with explicitly defined static-typing, manual memory management (and out of scope backup garbage collection), and graphical concepts derived from full fledged 2D/3D graphic libraries, as well as Flash... It would be rendered in a single official &#39;browser&#39; , or by a virtual machine or run-time. It would need a standard framework for defining common Web/GUI controls, graphical elements, and animation concepts; as well as for data management and access. From there you could extend it as required, and possibly implement binary libary concepts, etc. There would hopefully be an official IDE designed for it&#39;s development with graphical support and debugging, as well as optimizers, and automatically tracked application versioning for update management and ultimately, when you &#39;installed&#39; an application the client&#39;s browser, virtual machine, or run-time would compile it natively for better performance...</p><p><i>Don&#39;t hold your breath.</i> <img src="http://www.allegro.cc/forums/smileys/wink.gif" alt=";)" /></p><p>(Sorry for expressing that off-topic idea)</p><p><i>(I don&#39;t have time to revise this so hopefully it&#39;s not too confusingly written)</i>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Fri, 16 Mar 2007 08:40:48 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Personally, I hate today&#39;s Web languages and as a single example want to replace everything SGML based with something more programmer-friendly. I&#39;m no fan of &lt;anything that=&quot;looks&quot; like=&quot;this&quot; /&gt;. I am devising a replacement for Web development that I can only describe as an extensible, byte-coded, C-like language with explicitly defined static-typing, manual memory management (and out of scope backup garbage collection), and graphical concepts derived from full fledged 2D/3D graphic libraries, as well as Flash... It would be rendered in a single official &#39;browser&#39; , or by a virtual machine or run-time. It would need a standard framework for defining common Web/GUI controls, graphical elements, and animation concepts; as well as for data management and access. From there you could extend it as required, and possibly implement binary libary concepts, etc. There would hopefully be an official IDE designed for it&#39;s development with graphical support and debugging, as well as optimizers, and automatically tracked application versioning for update management and ultimately, when you &#39;installed&#39; an application the client&#39;s browser, virtual machine, or run-time would compile it natively for better performance...
</p></div></div><p>
You mean, the worst of all common programming languages and web technologies, combined into one massive package? Good idea.</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
I wonder how JavaScript would perform sorting the data itself. It would be nice, but I bet you&#39;d be left writing your own sorting functions (or finding some prewritten ones on the Web).
</p></div></div><p>
<a href="http://docs.sun.com/source/816-6408-10/array.htm#1196882">Took me 10 seconds to google this.</a><br />Javascript performance, of course, hugely depends on the client machine; since Array.sort() is a core language feature, I&#39;d expect most implementations to use fairly efficient code. Unless the resulting list is very long, say &gt;1000 rows, I guess sorting on the client is worth a shot. OTOH, sorting on the client requires downloading the entire list before displaying it for the first time, which may be an obstacle for large SQL results.<br />In other words: If your list is short, sort on the client (Javascript), if it&#39;s not, or the client doesn&#39;t have Javascript enabled, sort on the server. And of course profile.</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
I wouldn&#39;t shy away from using tables to layout your Web pages though. Browser wars are bad enough on PCs, let alone trying to make your site compatible with portable devices, etc. If your page is professional and has the intent of marketing your skills or is used for commercial purposes, target your sites compatability for the most exposure possible. Otherwise, target your intended audience or provide general browser support (IE/Firefox). Web development tools are poorly designed and inconsistently supported.
</p></div></div><p>
IE != general browser support.<br />For browsers that support CSS, you have powerful tools to format your site in a reliable way, without resorting to tables. Browsers that don&#39;t support CSS are unlikely to provide any useful formatting at all, so those should just display the raw document structure. If something is in a table that isn&#39;t supposed to be, especially aural and tactile devices can produce confusing output.<br />Read the official specs for all the tools &amp; technologies you use (PHP, HTML, Javascript, CSS), and adhere to them. Avoid features that are broken or missing in popular browsers. Test on as many browsers as you can. Design your page so that it still works with the smallest possible subset of HTML; you may want to test it on Lynx, Links, ELinks, or your mobile phone. <br />If it&#39;s a commercial site, and your audience consists mainly of digitally challenged people, then you might want to work around the flaws IE has, just so they don&#39;t complain - but when you do, please don&#39;t violate the existing web standards.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Tobias Dammers)</author>
		<pubDate>Fri, 16 Mar 2007 17:56:53 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>php good.</p><p>dynamically generated webpages good.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Mark Oates)</author>
		<pubDate>Fri, 16 Mar 2007 18:15:23 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Personally, I hate today&#39;s Web languages and as a single example want to replace everything SGML based with something more programmer-friendly. I&#39;m no fan of &lt;anything that=&quot;looks&quot; like=&quot;this&quot; /&gt;. I am devising a replacement for Web development that I can only describe as an extensible, byte-coded, C-like language with explicitly defined static-typing, manual memory management (and out of scope backup garbage collection), and graphical concepts derived from full fledged 2D/3D graphic libraries, as well as Flash... It would be rendered in a single official &#39;browser&#39; , or by a virtual machine or run-time. It would need a standard framework for defining common Web/GUI controls, graphical elements, and animation concepts; as well as for data management and access. From there you could extend it as required, and possibly implement binary libary concepts, etc. There would hopefully be an official IDE designed for it&#39;s development with graphical support and debugging, as well as optimizers, and automatically tracked application versioning for update management and ultimately, when you &#39;installed&#39; an application the client&#39;s browser, virtual machine, or run-time would compile it natively for better performance...
</p></div></div><p>Haha! <img src="http://www.allegro.cc/forums/smileys/grin.gif" alt=";D" border="0" /> Buddy, it&#39;s Active X!</p><p>[edit]<br />Ooh, I like the RO&#8204;FL -&gt; <img src="http://www.allegro.cc/forums/smileys/grin.gif" alt=";D" border="0" /> transliteration <img src="http://www.allegro.cc/forums/smileys/smiley.gif" alt=":)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Fri, 16 Mar 2007 18:21:06 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Tobias Dammers said:</div><div class="quote"><p>
You mean, the worst of all common programming languages and web technologies, combined into one massive package? Good idea.
</p></div></div><p>

What did I mention that you consider <i>bad</i> to have in a development package? I don&#39;t claim to know enough to develop it. I just dream of something powerful and done right. The definition is constantly evolving.</p><div class="quote_container"><div class="title">Tobias Dammers said:</div><div class="quote"><p>
Javascript performance, of course, hugely depends on the client machine; since Array.sort() is a core language feature, I&#39;d expect most implementations to use fairly efficient code.
</p></div></div><p>

I guess I wasn&#39;t trying very hard. Developing in JavaScript on a regular basis I&#39;ve learned not to get my hopes up.</p><p>Besides, Array.sort() appears to sort a single Array (which is like a single column). I don&#39;t have time to look very hard (I&#39;m at work), but <a href="http://w3schools.com">http://w3schools.com</a> doesn&#39;t seem to say anything about sorting an entire table of data. In other words, storing a table worth of information in JavaScript (however you go about it) and trying to sort it all based on a single column doesn&#39;t seem easy. Again, I&#39;m not able to spend much time looking though.</p><p><a href="http://w3schools.com">http://w3schools.com</a> also say that sorting is done alphabetically by default so you have to create a function to sort by numbers (let alone dates, etc.). Again, I don&#39;t have time right now to figure it out (and it&#39;s JavaScript so I&#39;m not all that excited about it anyway).</p><div class="quote_container"><div class="title">Tobias Dammers said:</div><div class="quote"><p>
IE != general browser support.
</p></div></div><p>

I didn&#39;t mean that IE followed the standards. I meant that IE is one of the most popular browsers.</p><p>Currently, on Allegro.cc 42% of users are running Firefox and 40% of users are running IE. The next runner up is Opera with 6%. These figures are according to A.cc. I don&#39;t know how that detection is implemented and can&#39;t guarantee it&#39;s accuracy. Still, I would expect similar results in the average user base. And the farther away from technical people and the closer your audience gets to Windows the use of IE should increase.</p><p>I usually use IE in Windows and Firefox in Linux. I like them both and hate Web browsers in general.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Fri, 16 Mar 2007 18:21:32 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
What did I mention that you consider bad to have in a development package?
</p></div></div><p>
Let me elaborate:<br /><b>extensible</b> - that&#39;s a good thing.<br /><b>byte-coded</b> - as in &quot;not human readable&quot;? Remember, obfuscation is not encryption. Current web languages (PHP, HTML, JS) are already fairly efficient to parse.<br /><b>C-like language</b> - Nooooooo! C is great for kernel and driver programming, but it is not The Tool For The Job for web applications. You being used to it doesn&#39;t mean it&#39;s the best language for everything.<br /><b>explicitly defined static-typing</b> - You don&#39;t really need that for web stuff. 90% of your data is strings, and everything will eventually be displayed as a string; dynamic typing is nothing more than convenient. The only reason C and C++ have it is that it allows for some performance optimization at compile-time. This doesn&#39;t make any sense for an interpreted language, though.<br /><b>manual memory management</b> - You really want to inherit the number 1 source of errors, exploits, and crashes from C?<br /><b>and out of scope backup garbage collection</b> - Automatic GC has issues of its own, but most web languages have quite fine implementations already. Using auto-GC together with manual memory management is bound to make things slower and buggier.<br /><b>graphical concepts derived from full fledged 2D/3D graphic libraries, as well as Flash...</b> - We already have that, and it&#39;s being over-used all the time.<br /><b>It would be rendered in a single official &#39;browser&#39;</b> - Who is going to write this whole new browser for all the platforms (not just windows and linux and macos, but also palmtops, cellphones, aural and tactile devices, some of the more obscure OSes...) out there? You?<br /><b>or by a virtual machine</b> - One of the things that bug me with Java. Yet another thing that sits there and eats system resources.<br /><b>It would need a standard framework for defining common Web/GUI controls,</b> - What, HTML &lt;FORM&gt; not good enough for you? <br /><b>graphical elements</b> - &lt;IMG&gt;?<br /><b>animation concepts;</b> - &lt;OBJECT&gt;? Flash? Animated GIF if you have to?<br /><b>for data management and access.</b> - SQL? PHP filesystem functions?<br /><b>From there you could extend it as required, and possibly implement binary libary concepts, etc.</b> - PHP can call pretty much everything the shell can...<br /><b>There would hopefully be an official IDE</b> - Just one? And that would be a 10 GB download, and require a Core 7 CPU and 15 TB of RAM? <br /><b>graphical support and debugging,</b> - Firefox has all that built-in, duh<br /><b>automatically tracked application versioning for update management</b> - CVS?<br /><b>and ultimately, when you &#39;installed&#39; an application</b> I take great offense at web sites trying to &quot;install&quot; anything on my machine. Did you know that a script runs on the browser without installing anything at all? <img src="http://www.allegro.cc/forums/smileys/rolleyes.gif" alt="::)" /><br /><b>would compile it natively for better performance...</b> - That&#39;s called JIT compiling, and Java already does that. Also, scripting languages generally come with a lot of features built-in, and those are very likely to be optimized for the given platform (e.g. PHP&#39;s array sorting functions). BTW, the main performance bottleneck for most web sites is still the network bandwidth.</p><p>All those things create this image in my mind of a huge, bloated, slow, unresponsive, useless blob occupying half my HDD just so I can view your site. No thank you.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Tobias Dammers)</author>
		<pubDate>Fri, 16 Mar 2007 18:51:48 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>tables are good. php is a good RAD tool</p><p>It comes down to if you can write good code to generate clean tables.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (le_y_mistar)</author>
		<pubDate>Fri, 16 Mar 2007 18:53:29 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
I usually use IE in Windows and Firefox in Linux. I like them both and hate Web browsers in general.
</p></div></div><p>
What&#39;s to like about IE? OK, it starts up a little faster than FF or Opera, but that&#39;s about it.</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Besides, Array.sort() appears to sort a single Array (which is like a single column). I don&#39;t have time to look very hard (I&#39;m at work), but <a href="http://w3schools.com">http://w3schools.com</a> doesn&#39;t seem to say anything about sorting an entire table of data. In other words, storing a table worth of information in JavaScript (however you go about it) and trying to sort it all based on a single column doesn&#39;t seem easy. Again, I&#39;m not able to spend much time looking though.</p><p><a href="http://w3schools.com">http://w3schools.com</a> also say that sorting is done alphabetically by default so you have to create a function to sort by numbers (let alone dates, etc.). Again, I don&#39;t have time right now to figure it out (and it&#39;s JavaScript so I&#39;m not all that excited about it anyway).
</p></div></div><p>
Well, Javascript is &quot;the&quot; web scripting language, and if you don&#39;t like it, there&#39;s little you can do. You can&#39;t really feasibly write web pages in anything but HTML / XHTML, and you can&#39;t feasibly provide client-side scripts in anything but Javascript (unless you like to support ActiveX, in which case this conversation is over).<br />Anyway; I&#39;d use an array of arrays, and provide a custom compare function to pass to sort(). There could be a global telling the custom comparer by which column to sort.<br />But in fact, I&#39;d really just sort server-side and see if that works feasibly (for my own site, it does).
</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
tables are good. php is a good RAD tool
</p></div></div><p>
Yes. No matter what Billy Boy is trying to teach us.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Tobias Dammers)</author>
		<pubDate>Fri, 16 Mar 2007 19:08:49 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Table sorting works well/fast enough to be considered for small datasets (20-50 records or so should be reasonable when considering &#39;any&#39; client machine). For big datasets, page regeneration is a better option. Considering you are listing games, I&#39;d say you&#39;re going with the small dataset scenario.. unless you plan on making 50+ versions of Toggles.</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
php is a good RAD tool
</p></div></div><p>

what
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Inphernic)</author>
		<pubDate>Fri, 16 Mar 2007 19:12:09 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Since you have to code the page regeneration scenario anyway to support clients without javascript, I&#39;d say try that first and see if the result is acceptable (in terms of execution speed and server load).
</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
what
</p></div></div><p>
Either <a href="http://en.wikipedia.org/wiki/Rapid_application_development">this</a> or <a href="http://www.rad.org.uk/">that</a>.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Tobias Dammers)</author>
		<pubDate>Fri, 16 Mar 2007 19:24:27 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Either this [en.wikipedia.org] or that [rad.org.uk].
</p></div></div><p>

I&#39;d say the latter, considering PHP itself isn&#39;t a RAD tool.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Inphernic)</author>
		<pubDate>Fri, 16 Mar 2007 19:34:56 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Not explicitly, no.<br />It does allow for rather rapid application development though... <img src="http://www.allegro.cc/forums/smileys/rolleyes.gif" alt="::)" /><br />And it&#39;s not really a dance development tool either...
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Tobias Dammers)</author>
		<pubDate>Fri, 16 Mar 2007 20:47:10 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Considering you are listing games, I&#39;d say you&#39;re going with the small dataset scenario.. unless you plan on making 50+ versions of Toggles.
</p></div></div><p>
Good glory, don&#39;t <i>let</i> me get away with doing something like that.  Although, I am revamping it to 2.0 with some major changes to the game mechanics (as an attempt to see if I&#39;ve increased the &quot;fun factor&quot; of the game, something that&#39;s more difficult than optimizing and/or producing efficient algorithms).</p><p>Anyway, I&#39;m using the table-built-by-php method for several different things on the site.  One, the listing of games I&#39;ve worked on (which is about 20, only about 3 of which have made it through the beta stages).  Two, a more detailed leader board of the top 100 highscores from Toggles (an early version of that is <a href="http://www.solo-games.org/temp/index.php">here</a> and was only about ten minutes of work, obviously you can see I stole a template from OSWD).  Third, a site for Invictis that I mentioned a while back and for the &quot;cards&quot; of the game, which is going to be a very large number, plus it will have the images for the card (FuriousOrange has made some very impressive work for this and I&#39;ve been promising him a site showcasing it for forever).  </p><p>Thanks to all for your knowledge.  Hopefully I will use it wisely.  <img src="http://www.allegro.cc/forums/smileys/wink.gif" alt=";)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Onewing)</author>
		<pubDate>Fri, 16 Mar 2007 21:00:43 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
obviously you can see I stole a template from OSWD
</p></div></div><p>
You can&#39;t steal templates from OSWD, that&#39;s what it&#39;s for! Though you could have spent one more minute to erase all irrelevant stuff.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Ron Ofir)</author>
		<pubDate>Fri, 16 Mar 2007 21:20:33 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
You can&#39;t steal templates from OSWD, that&#39;s what it&#39;s for!
</p></div></div><p>
<img src="http://www.allegro.cc/forums/smileys/lipsrsealed.gif" alt=":-X" /><img src="http://www.allegro.cc/forums/smileys/grin.gif" alt=";D" /></p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Though you could have spent one more minute to erase all irrelevant stuff.
</p></div></div><p>
Actually, it would have only taken a second.  But I only had five minutes, not five minutes and one second!  <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Onewing)</author>
		<pubDate>Fri, 16 Mar 2007 21:27:36 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
It does allow for rather rapid application development though...
</p></div></div><p>

Nah, not really. Sure, one simple site and/or garbage is fast and easy to write, but it&#39;s not that &#39;rapid&#39; when you are doing something big/serious. There&#39;s something interesting on the way though when it comes to PHP..!</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
You can&#39;t steal templates from OSWD, that&#39;s what it&#39;s for!
</p></div></div><p>

There is a difference between 1) taking a template + attributing the actual author properly and 2) taking a template + not attributing the actual author but throwing a &quot;CIOYRUGHT BY RON OFFIR BEST WEBS DESINGERS EVAR!?? BTW NEOPETS ROCXXXX&quot; on it instead.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Inphernic)</author>
		<pubDate>Fri, 16 Mar 2007 21:42:21 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Yup, but he did attribute the actual author properly. Anyway, Ofir is with one F!!!! AND MYSPACE PWNS NEOPETS!!!! LOLOL OMGFGFGFGFG111:P
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Ron Ofir)</author>
		<pubDate>Fri, 16 Mar 2007 21:45:44 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Yup, but he did attribute the actual author properly.
</p></div></div><p>

Yes - <i>after</i> he got caught. <img src="http://www.allegro.cc/forums/smileys/tongue.gif" alt=":P" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Inphernic)</author>
		<pubDate>Fri, 16 Mar 2007 22:00:31 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Nah, not really. Sure, one simple site and/or garbage is fast and easy to write, but it&#39;s not that &#39;rapid&#39; when you are doing something big/serious.
</p></div></div><p>
Re-reading the wikipedia article, I guess PHP has absolutely nothing to do with that and you, Inphernic, are of course right.</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
But I only had five minutes, not five minutes and one second!
</p></div></div><p>
What is this, &quot;Ready, Steady, Code&quot;?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Tobias Dammers)</author>
		<pubDate>Fri, 16 Mar 2007 22:08:28 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Re-reading the wikipedia article, I guess PHP has absolutely nothing to do with that and you, Inphernic, are of course right.
</p></div></div><p>

I use PHP on near-daily basis. You read Wikipedia articles about PHP. Damn, you obviously win! <img src="http://www.allegro.cc/forums/smileys/rolleyes.gif" alt="::)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Inphernic)</author>
		<pubDate>Fri, 16 Mar 2007 22:22:51 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Yes - after he got caught. <img src="http://www.allegro.cc/forums/smileys/tongue.gif" alt=":P" />
</p></div></div><p>

Is that so?<br />BTW, you make cool music! I wonder if you mind sharing the sheet so I could have a shot at playing some of the tunes? I will properly attribute you and not RON OFIR DA GRET3ST COMPOSERZ!!! pretty pretty please?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Ron Ofir)</author>
		<pubDate>Fri, 16 Mar 2007 22:40:14 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Is that so?
</p></div></div><p>

Yes. Use thy search, ye unbeliever.</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
BTW, you make cool music! I wonder if you mind sharing the sheet so I could have a shot at playing some of the tunes? I will properly attribute you and not RON OFIR DA GRET3ST COMPOSERZ!!! pretty pretty please?
</p></div></div><p>

What would you play them with; your mouth?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Inphernic)</author>
		<pubDate>Fri, 16 Mar 2007 22:46:29 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
What is this, &quot;Ready, Steady, Code&quot;?
</p></div></div><p>
It&#39;s more like, &quot;Ready, Code!&quot;  No time for steady.  <img src="http://www.allegro.cc/forums/smileys/grin.gif" alt=";D" /></p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Yes - after he got caught.
</p></div></div><p>
Did I do something wrong?  My memory escapes me...
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Onewing)</author>
		<pubDate>Fri, 16 Mar 2007 22:58:22 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Tobias Dammers said:</div><div class="quote"><p>
<b>byte-coded</b> - as in &quot;not human readable&quot;? Remember, obfuscation is not encryption. Current web languages (PHP, HTML, JS) are already fairly efficient to parse
</p></div></div><p>

It wasn&#39;t intended to really hide the code. It was mostly designed for speed, which you can&#39;t deny would be improved with byte-codes. It was essentially a way to speed things up and still allow for platform compatability. I don&#39;t like scripts and wanted something closer to compiled code. Also, by &#39;compiling&#39; first it would ensure that the application doesn&#39;t have syntax errors before the client gets it. With scripted langauges that is more of an option than a requirement.</p><p>Encryption would be an extra feature. There is a lot more to my ideas which are really hard to document, especially in a thread that&#39;s not even really about this.</p><div class="quote_container"><div class="title">Tobias Dammers said:</div><div class="quote"><p>
<b>C-like language</b> - Nooooooo! C is great for kernel and driver programming, but it is not The Tool For The Job for web applications. You being used to it doesn&#39;t mean it&#39;s the best language for everything.
</p></div></div><p>

C has very clean, logical syntax and property formatted code can be very <b>programmer</b>-readable. It&#39;s the nicest language I have ever used. It&#39;s not a language for dummies and computer programming (information management) is not for dummies.</p><p>VB .NET is nice as well, but I prefer C (or C++) syntax, which has more unique operators for things (i.e. VB .NET uses = in place of = and ==), as well as other minor preferences. There may be other langauges that I haven&#39;t used that could influence it, but I can&#39;t factor those in yet because I haven&#39;t used them. For now, I am sticking with C-like (considering it is more a dream or plan-in-progress than a proposal).</p><p>I want to take <s>the Web</s> <b><i>Web programming</i></b>* away from non-programmers so that we can attempt to eliminate (or at least limit) the problems with it. It&#39;s one thing to allow general users to embrace the Web. It&#39;s another thing when those general users are damaging the reputation of computing and information management.</p><div class="quote_container"><div class="title">Tobias Dammers said:</div><div class="quote"><p>
<b>explicitly defined static-typing</b> - You don&#39;t really need that for web stuff. 90% of your data is strings, and everything will eventually be displayed as a string; dynamic typing is nothing more than convenient. The only reason C and C++ have it is that it allows for some performance optimization at compile-time. This doesn&#39;t make any sense for an interpreted language, though.
</p></div></div><p>

There is no harm in defining data types. There is harm in not defining data types. That&#39;s why langauges that allow both encourage definitions. If you don&#39;t know what data type a particular variable is at run-time than you often need to check to make sure you&#39;re handling it correctly. I find this more frustrating than just defining variable data types. Perhaps a mid-ground of explicitly defined dynamic typing could be used instead. In other words, you change the type of a variable rather than converting and assigning it to another variable. For now, I prefer static-typing.</p><div class="quote_container"><div class="title">Tobias Dammers said:</div><div class="quote"><p>
<b>manual memory management</b> - You really want to inherit the number 1 source of errors, exploits, and crashes from C?
</p></div></div><p>

Well it all depends. It seems the best solution is to have the compiler figure out where memory allocated to the program is no longer used and release it. Somehow, it doesn&#39;t seem to be done well in other garbage collected languages. I also prefer the ability to say clean it up, even if the compiler will do it for me, just to be sure. What I envision is there being no difference: the compiler will code absolute clean up in the correct place and declaring &#39;delete x&#39; is more of a good practice. Again, it&#39;s evolving as I learn more.</p><div class="quote_container"><div class="title">Tobias Dammers said:</div><div class="quote"><p>
<b>and out of scope backup garbage collection</b> - Automatic GC has issues of its own, but most web languages have quite fine implementations already. Using auto-GC together with manual memory management is bound to make things slower and buggier.
</p></div></div><p>

The resulted byte-code (and maybe eventually, binary executable) will release memory after the last reference is made, regardless of whether the programmer said to or not. Or if releasing memory is time consuming it could be an object only thing until memory actually goes out of scope. Nothing I&#39;m saying is law, only ideas that I&#39;m sure could be improved upon.</p><p> <i>Since it&#39;s all a theoretical &#39;package&#39;, as you referred to it, I can say things like &quot;it will&quot; without hesitation. Understandably, successfully producing all of this stuff would be a buggy, slow process and version 1.0 would, unfortunately, not be perfect.</i></p><div class="quote_container"><div class="title">Tobias Dammers said:</div><div class="quote"><p>
<b>graphical concepts derived from full fledged 2D/3D graphic libraries, as well as Flash...</b> - We already have that, and it&#39;s being over-used all the time.
</p></div></div><p>

What exactly are you referring to here? I&#39;m talking about routines to render graphics, both 2-dimensionally and 3-dimensionally, as well as create timelines for things. One top of that, a graphic studio for developing the graphics and remember the math involved in the drawing to save space. It could be configurable for the best result. If you need it to use little memory or network traffic, send the math. If you need it to happen fast then send the resulting data. Combinations could be used in a single application.</p><div class="quote_container"><div class="title">Tobias Dammers said:</div><div class="quote"><p>
<b>It would be rendered in a single official &#39;browser&#39;</b> - Who is going to write this whole new browser for all the platforms (not just windows and linux and macos, but also palmtops, cellphones, aural and tactile devices, some of the more obscure OSes...) out there? You?
</p></div></div><p>

I&#39;m not trying to say that I have the knowledge or experience to produce this. I wasn&#39;t proposing it as a now project. It&#39;s something I&#39;m dreaming/thinking about. I was planning it as an open-source project, but again, having a single official browser/virtual-machine/run-time so the client doesn&#39;t have to deal with compatability issues; aside from having an up-to-date stable version installed.</p><p>Why let a million people interpret it how they think it should be and end up with a &#39;package&#39; with no set rules and everybody adding unsupported extensions? That would result in code that was no longer portable and no longer easily supported.</p><div class="quote_container"><div class="title">Tobias Dammers said:</div><div class="quote"><p>
<b>or by a virtual machine</b> - One of the things that bug me with Java. Yet another thing that sits there and eats system resources.
</p></div></div><p>

I haven&#39;t defined what it will use yet because I don&#39;t have the technical background to make the best decision. It could be one or all of the above, depending on your application. In [my interpretation of] a perfect world, it would go through a final compilation process on the client and compile into a native binary (one time). The compiler that carries out the process would prevent code violating the laws of this &#39;language&#39;, but would produce a binary that executes on the client. Maybe something like Microsoft&#39;s .NET CLR could interpret it. I don&#39;t know how the CLR actually works so again I&#39;m just speculating.</p><p>Besides, that, you seem to support scripted languages. They are interpretted at run time, which can&#39;t be much different from a virtual-machine or run-time. If anything, I would think that parsing code would be worse.</p><div class="quote_container"><div class="title">Tobias Dammers said:</div><div class="quote"><p>
<b>It would need a standard framework for defining common Web/GUI controls,</b> - What, HTML &lt;FORM&gt; not good enough for you?
</p></div></div><p>

Actually, no, HTML&#39;s &lt;form&gt; isn&#39;t good enough for me. HTML is a horrible way to do things and probably is only used today because the Web blew up quicker than a good solution could be made. HTML just kept being patched and extended, as well as Web browsers just extending what the Web was. If you&#39;ve done any level of Web development you know that it&#39;s a mess and should be refactored.</p><div class="quote_container"><div class="title">Tobias Dammers said:</div><div class="quote"><p>
<b>graphical elements</b> - &lt;IMG&gt;?
</p></div></div><p>

Web elements don&#39;t have as much power as a programming language should give you.</p><div class="quote_container"><div class="title">Tobias Dammers said:</div><div class="quote"><p>
<b>animation concepts;</b> - &lt;OBJECT&gt;? Flash? Animated GIF if you have to?
</p></div></div><p>

Flash is a great tool, but having it built into this new concept would eliminate any conflicts and would also make integrating animations into applications a lot easier. It wouldn&#39;t have to be a floating object in the middle of your application. It would be part of your application sharing access to the same data, etc.</p><div class="quote_container"><div class="title">Tobias Dammers said:</div><div class="quote"><p>
<b>for data management and access.</b> - SQL? PHP filesystem functions?
</p></div></div><p>

Exactly, interfaces to database management systems. It would either have it&#39;s own filesystem routines (rather than relying on PHP for that functionality......) or if the native system could provide the functionality better than it would provide an interface for it.</p><div class="quote_container"><div class="title">Tobias Dammers said:</div><div class="quote"><p>
<b>From there you could extend it as required, and possibly implement binary libary concepts, etc.</b> - PHP can call pretty much everything the shell can...
</p></div></div><p>

I don&#39;t have as much of a problem with server-side Web programming as I do with client-side Web programming (which the server-side kind of relies on).</p><div class="quote_container"><div class="title">Tobias Dammers said:</div><div class="quote"><p>
<b>There would hopefully be an official IDE</b> - Just one? And that would be a 10 GB download, and require a Core 7 CPU and 15 TB of RAM?
</p></div></div><p>

One official one. Who better to provide a development environment than the design/development team? Again, it&#39;ll be open-source so anybody is free to do what they want - hopefully they don&#39;t branch off and create problems. If somebody didn&#39;t like how it was going and thought they could do better I wouldn&#39;t stop them. I would request that they changed the name to make it easier for users to keep track of which tools are compatible.</p><p>And why would it be a 10 GB download? Granted, all together <b>it</b> would probably be a few gigs in size (IDEs tend to grow rather large, for example), but in terms of executing it should be rather small - definitely NOT 10 GB. And you wouldn&#39;t need to have ALL of <b>it</b> to use it. Only what you need. Users wouldn&#39;t need development tools, etc.</p><div class="quote_container"><div class="title">Tobias Dammers said:</div><div class="quote"><p>
<b>graphical support and debugging,</b> - Firefox has all that built-in, duh
</p></div></div><p>

Firefox allows you to drag Web page controls and develop an application in a GUI environment? You need to tell me how cause I&#39;ve been using stupid Dreamweaver! There are numerous debugging tools available for Web development, but because Web langauges are so dynamic across browsers and platforms it&#39;s difficult to provide a good development environment.</p><div class="quote_container"><div class="title">Tobias Dammers said:</div><div class="quote"><p>
<b>automatically tracked application versioning for update management</b> - CVS?
</p></div></div><p>

Sort of... I envision you downloading an application that handles a particular &quot;site&#39;s&quot; Web needs. The data changes, but unless a major update is developed the core application remains the same. As a result, the compiled version on the client doesn&#39;t change everytime you visit the site. As a result, you would &#39;install&#39; applications by compiling them and having them registered and integrated with the &#39;run-time&#39; or whatever. When a newer version was released, client-server communications would automatically send updates which would then be recompiled. The version control would be more for the client/user than for development, although the development tools should also keep versioning records for rolling-back, etc... Everything would have to be configurable for everybody&#39;s needs.</p><div class="quote_container"><div class="title">Tobias Dammers said:</div><div class="quote"><p>
<b>and ultimately, when you &#39;installed&#39; an application</b> I take great offense at web sites trying to &quot;install&quot; anything on my machine. Did you know that a script runs on the browser without installing anything at all?
</p></div></div><p>

<i>Install</i> is used loosely. They would be integrated with the run-time and tracked. Removing them would be as simple as deleting an application&#39;s directory, which would be located in a subdirectory of whatever this animal ultimately is (and it&#39;s own directory is the only place an application has permission to access by default); however, an interface would be provided for doing this. All changes made would be logged and checkpointed.</p><div class="quote_container"><div class="title">Tobias Dammers said:</div><div class="quote"><p>
<b>would compile it natively for better performance...</b> - That&#39;s called JIT compiling, and Java already does that. Also, scripting languages generally come with a lot of features built-in, and those are very likely to be optimized for the given platform (e.g. PHP&#39;s array sorting functions). BTW, the main performance bottleneck for most web sites is still the network bandwidth.
</p></div></div><p>

And it would be up to the developers to decide how to keep the application reasonably-sized. If things are designed right, a full update wouldn&#39;t have to happen for weeks or months (or years) and only data would even need to be sent between client and server.</p><p>If changes were logged correctly updates could only contain changes and apply those to local copies to cut down on network traffic. The possibilities are endless.</p><p>You&#39;re welcome to come up with your perfect programming language/tools. I&#39;d be interested in hearing what you think the solution is.</p><p>* Edited/Clarified on March 17, 2007 05:06 PM EST
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Fri, 16 Mar 2007 23:40:37 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
What would you play them with; your mouth?
</p></div></div><p>
That&#39;s called singing. Oh, and I am a somewhat competent guitar player.</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Did I do something wrong? My memory escapes me...
</p></div></div><p>
I&#39;m trying to find out too...
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Ron Ofir)</author>
		<pubDate>Sat, 17 Mar 2007 01:11:09 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Tobias Dammers said:</div><div class="quote"><p>
What&#39;s to like about IE? OK, it starts up a little faster than FF or Opera, but that&#39;s about it.
</p></div></div><p>What&#39;s not to like about IE? I find it&#39;s very user-friendly and serves my needs as well as Firefox does. I&#39;m using IE 7, which is definitely better than IE 6. The truth is that Web development is so messed up that it doesn&#39;t matter as much which browsers follow the W3C&#39;s specifications the closest because the SGML-based languages suck and the Web is poorly designed anyway.</p><p> <i>*Edit* I haven&#39;t been spending much time in Firefox, but using it in Windows along side of IE you can definitely argue that is is better (although add ons, which I think COULD be written for IE, unbalance the competition)</i></p><p>The project I am working on right now is IE only so I don&#39;t have to worry about other browser compatability issues. It&#39;s still a nightmare, which is inherent from HTML, XHTML, and JavaScript (and SGML, for that matter).</p><p>I don&#39;t think that Firefox follows the specs completely either. And why don&#39;t common Web browsers ignore whitespace like they&#39;re supposed to?</p><p>Anybody that believes in formatted code is full of themselves for supporting SGML. View the source of a few random Web pages and tell me how maintainable you think the code is. I know that any language can be poorly formatted, but it doesn&#39;t help with so many redundant characters (&lt;, &gt;, &quot;, &#39;, /) and no rules for where things go or version usage.</p><p> <i>(I&#39;m impressed by the source behind A.cc - good work, Matthew :D)</i></p><div class="quote_container"><div class="title">Tobias Dammers said:</div><div class="quote"><p>
Well, Javascript is &quot;the&quot; web scripting language, and if you don&#39;t like it, there&#39;s little you can do. You can&#39;t really feasibly write web pages in anything but HTML / XHTML, and you can&#39;t feasibly provide client-side scripts in anything but Javascript (unless you like to support ActiveX, in which case this conversation is over).
</p></div></div><p>Exactly why I hate Web programming, as it is today, and dream of a better <i>Web</i>.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Sat, 17 Mar 2007 06:58:09 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
(I&#39;m impressed by the source behind A.cc - good work, Matthew <img src="http://www.allegro.cc/forums/smileys/cheesy.gif" alt=":D" />)
</p></div></div><p>Technically, I think about none of the HTML on Allegro.cc is hand written. It&#39;s all the output from an XML parser. <a href="http://www.allegro.cc/source/forums/thread">See this</a>.</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
And why don&#39;t common Web browsers ignore whitespace like they&#39;re supposed to?
</p></div></div><p>Err, they do.</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
I don&#39;t think that Firefox follows the specs completely either.
</p></div></div><p>This is a known &quot;issue&quot;, which is unresolved because completely following the specs breaks many websites. <b>This is not a reflection on the standards.</b> This is the result of browsers not supporting standards for long enough that many developers created applications which deviated from them.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Sat, 17 Mar 2007 07:24:38 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
<b>My question is, is building a table using PHP a good idea?</b>
</p></div></div><p>

I&#39;m not sure how structurally sound a table made from code would be.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Kibiz0r)</author>
		<pubDate>Sat, 17 Mar 2007 08:07:01 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">CGamesPlay said:</div><div class="quote"><p>
Err, they do.
</p></div></div><p>Not in my experience. I&#39;ve had to remove whitespace to get things to format correctly, which shouldn&#39;t have to be done. Originally it was discovered in IE, but myself and a coworker tested it in Firefox and found the same result.</p><div class="quote_container"><div class="title">Kibiz0r said:</div><div class="quote"><p>
I&#39;m not sure how structurally sound a table made from code would be.
</p></div></div><p>Why wouldn&#39;t an <i>HTML</i> table generated with server-side code be structurally sound? You start the table off with a &lt;table ...&gt; tag and end it with a &lt;/table&gt; tag. For every row of data you start off with a &lt;tr ...&gt; tag and end with a &lt;/tr&gt; tag. For every column in that row, you start off with a &lt;td ...&gt; tag and end with a &lt;/td&gt; tag. What you put in the cells should be mostly data, possibly enclosed in an anchor element or other element.</p><p>A great look is creating the look and feel of custom buttons with CSS. A coworker designed CSS to make &lt;li&gt;s enclosed in a particular class of &lt;div&gt;s look and act like buttons (which may or may not be a good application, but it works really well, looks good, and is easy to use).</p><p>You can hard code a structured header row for the table, and use a loop to generate the remaining rows. It not only works great, it&#39;s preferred to hard coding redundant code, such as the rows/data of a table.</p><div class="quote_container"><div class="title">Kibiz0r&#39;s sig said:</div><div class="quote"><p>
[17:08] Kibiz0r: &lt;my street address&gt;<br />[17:08] Kibiz0r: Do you need a pointer to the address?<br />[17:09] ajinx3: yeah<br />[17:09] Kibiz0r: 0x22ff09<br />[17:09] ajinx3: this better not crash my car
</p></div></div><p><img src="http://www.allegro.cc/forums/smileys/grin.gif" alt=";D" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Sat, 17 Mar 2007 09:15:10 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
I&#39;m not sure how structurally sound a table made from code would be.
</p></div></div><p>

<img src="http://www.allegro.cc/forums/smileys/cheesy.gif" alt=":D" />  Haha!  You said what was on my mind.  You could always throw emergency comments at it for extra support...</p><div class="quote_container"><div class="title">Bamccaig said:</div><div class="quote"><p>

...
</p></div></div><p>

Pretty much your entire pipedream browser idea is gonna continue to get shot down here.  Most people are fine with the solutions that are already in place, and redesigning and building a monolithic monster browser is like redesigning and building the wheel. It&#39;s easier to hack and piece what is already there together than it is to start all over and do it right (or wrong as the cases may be).
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Samuel Henderson)</author>
		<pubDate>Sat, 17 Mar 2007 09:24:10 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
I&#39;ve had to remove whitespace to get things to format correctly, which shouldn&#39;t have to be done.
</p></div></div><p>Yes. All consecutive strings of whitespace in an HTML document are collapsed down to a single space. It&#39;s well-defined. Yes, you do have to ensure that there are no whitespace characters between tags in some cases.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Sat, 17 Mar 2007 09:33:57 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p><img src="http://www.allegro.cc/forums/smileys/embarassed.gif" alt=":-[" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Sat, 17 Mar 2007 09:52:06 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Did I do something wrong? My memory escapes me...
</p></div></div><p>

Nah, you didn&#39;t. We are referring to BAF, although Ophir now seems to be pretending he doesn&#39;t know. Considering he&#39;s a BAF lackey, it makes sense though. <img src="http://www.allegro.cc/forums/smileys/cool.gif" alt="8-)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Inphernic)</author>
		<pubDate>Sat, 17 Mar 2007 14:36:53 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>We were referring to BAF? What&#39;s a lackey anyway?</p><p>Oh, and:
</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
What would you play them with; your mouth?
</p></div></div><p>
That&#39;s called singing. Oh, and I am a somewhat competent guitar player.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Ron Ofir)</author>
		<pubDate>Sat, 17 Mar 2007 17:39:28 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>And I rectified the problem once I was made aware of it. Thanks. <img src="http://www.allegro.cc/forums/smileys/cool.gif" alt="8-)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (BAF)</author>
		<pubDate>Sat, 17 Mar 2007 22:33:34 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
We were referring to BAF?
</p></div></div><p>

</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
You can&#39;t steal templates from OSWD, that&#39;s what it&#39;s for! Though you could have spent one more minute to erase all irrelevant stuff.
</p></div></div><p>
</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Yup, but he did attribute the actual author properly.
</p></div></div><p>
</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Is that so?
</p></div></div><p>
</p></div></div><p>

Then pray tell; who are you referring to?</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
What&#39;s a lackey anyway?
</p></div></div><p>

gb2dictionary</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
I rectified the problem once I was made aware of it.
</p></div></div><p>
</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
I stole blatantly and then quickly attributed the author when I got caught.
</p></div></div><p>
</p></div></div><p>

Fix&#39;d.</p><p>And because the old threads are funny, let us go into the future; all the way to the year 2000:
</p><ul><li><p><a href="http://www.allegro.cc/forums/thread/394181">Whee</a></p></li><li><p><a href="http://www.allegro.cc/forums/thread/427445">Whee</a></p></li></ul><p>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Inphernic)</author>
		<pubDate>Sat, 17 Mar 2007 22:54:15 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Then pray tell; who are you referring to?
</p></div></div><p>
Well, I thought we were talking about Onewing. At least, I was.</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
gb2dictionary
</p></div></div><p>
I&#39;m afraid I&#39;m not familiar of this term. And google came up with nothing useful.</p><p>Oh, and you still haven&#39;t answered me.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Ron Ofir)</author>
		<pubDate>Sat, 17 Mar 2007 23:02:28 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Wheee I just got back from my spaceship ride, thanks Inphernic.</p><div class="quote_container"><div class="title">Inphernic said:</div><div class="quote"><p>

[quote BAF]<br />I rectified the problem once I was made aware of it.
</p></div></div><p>
</p><div class="quote_container"><div class="title">Inphernic said:</div><div class="quote"><p>

I stole blatantly and then quickly attributed the author when I got caught.
</p></div></div><p>
Fix&#39;d.<br />&lt;/quote&gt;</p><p>Thanks for clarifying that for me too.</p><p>[edit]<br />Added attribution to the above quotes.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (BAF)</author>
		<pubDate>Sat, 17 Mar 2007 23:03:50 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Well, I thought we were talking about Onewing. At least, I was.
</p></div></div><p>

&quot;OK&quot;</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
I&#39;m afraid I&#39;m not familiar of this term. And google came up with nothing useful.
</p></div></div><p>

Lurk more.</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Oh, and you still haven&#39;t answered me.
</p></div></div><p>

Is that so?</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Wheee I just got back from my spaceship ride, thanks Inphernic.
</p></div></div><p>

Any time!</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Added attribution to the above quotes.
</p></div></div><p>

Too bad you can&#39;t edit the old posts in those threads, eh?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Inphernic)</author>
		<pubDate>Sat, 17 Mar 2007 23:08:50 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Is that so?
</p></div></div><p>
Yes it is. As a reminder:
</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
[quote2]<br />What would you play them with; your mouth?<br />[/quote2]<br />That&#39;s called singing. Oh, and I am a somewhat competent guitar player.
</p></div></div><p>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Ron Ofir)</author>
		<pubDate>Sat, 17 Mar 2007 23:35:24 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Ron Ophir said:</div><div class="quote"><p>
Oh, and you still haven&#39;t answered me.
</p></div></div><p>He doesn&#39;t tend to do anything that isn&#39;t flaming or insulting.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Thomas Fjellstrom)</author>
		<pubDate>Sun, 18 Mar 2007 00:51:37 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">bamccaig said:</div><div class="quote"><p>
I want to take the Web away from non-programmers
</p></div></div><p>For this, I hate you. <img src="http://www.allegro.cc/forums/smileys/cry.gif" alt=":&#39;(" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Sporus)</author>
		<pubDate>Sun, 18 Mar 2007 01:03:11 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I want to take the Web away from bamccaig. And his car. <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (BAF)</author>
		<pubDate>Sun, 18 Mar 2007 01:32:21 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I want to take his Web made of diamond at 400 cars per away into a wall.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (X-G)</author>
		<pubDate>Sun, 18 Mar 2007 01:44:56 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
I want to take the Web away from bamccaig. And his car
</p></div></div><p>

Nahh... Bammcaig is a good guy.  You definitely do not want his car... <img src="http://www.allegro.cc/forums/smileys/wink.gif" alt=";)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Samuel Henderson)</author>
		<pubDate>Sun, 18 Mar 2007 01:54:34 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Err, what?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (BAF)</author>
		<pubDate>Sun, 18 Mar 2007 01:54:43 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Maybe it&#39;ll help to clarify (maybe not): I meant I want to take Web <b>programming</b> away from non-programmers...</p><p><img src="http://www.allegro.cc/forums/smileys/embarassed.gif" alt=":-[" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Sun, 18 Mar 2007 01:58:59 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I know Bammcaig in real life.  He goes to my college. He gives me rides to work on mondays.  His car is nothing special (more of a beater TBH).</p><p>Sorry Bam!
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Samuel Henderson)</author>
		<pubDate>Sun, 18 Mar 2007 02:06:10 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>The err, what was aimed at X-G, you just got in my way of posting. <img src="http://www.allegro.cc/forums/smileys/wink.gif" alt=";)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (BAF)</author>
		<pubDate>Sun, 18 Mar 2007 02:11:06 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Ahh. Sorry Baf.  I was wondering what X-G meant as well.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Samuel Henderson)</author>
		<pubDate>Sun, 18 Mar 2007 02:15:06 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
He doesn&#39;t tend to do anything that isn&#39;t flaming or insulting.
</p></div></div><p>

You get what you order, sweetiepie. <img src="http://www.allegro.cc/forums/smileys/smiley.gif" alt=":)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Inphernic)</author>
		<pubDate>Sun, 18 Mar 2007 02:21:37 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
You get what you order, sweetiepie. <img src="http://www.allegro.cc/forums/smileys/smiley.gif" alt=":)" />
</p></div></div><p>
More like you can only deliver what you have in stock.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Matthew Leverton)</author>
		<pubDate>Sun, 18 Mar 2007 02:43:00 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Inphernic reminds me of Gollum. He does good in Depot threads; those are like his &quot;precious&quot;. But anything else and he is evil and mean and needs to be pulled around by a rope around the neck by some short people.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Sun, 18 Mar 2007 03:12:40 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>
Bloody hell, Inphy. Are you trying to horn in on my gig?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (X-G)</author>
		<pubDate>Sun, 18 Mar 2007 03:14:46 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
More like you can only deliver what you have in stock.
</p></div></div><p>
</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Inphernic reminds me of Gollum. He does good in Depot threads; those are like his &quot;precious&quot;. But anything else and he is evil and mean and needs to be pulled around by a rope around the neck by some short people.
</p></div></div><p>

Nice ones. <img src="http://www.allegro.cc/forums/smileys/grin.gif" alt=";D" /> </p><p>Ok, so out of the recent threads, this one got extra jalapeño (on the house, mind you). The car thread has just one comment. Then there was the recent religion thread(s are go-go) which I think stayed fairly civilized in the end (well, as civilized as you can get with <i>those</i> people <img src="http://www.allegro.cc/forums/smileys/wink.gif" alt=";)" />). The order history has more but relatively speaking I&#39;m not that trigger-happy, am I?</p><p>At any rate, kittens aren&#39;t out of stock:</p><p>http://www.duckiehorde.net/kitten.jpg</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Bloody hell, Inphy. Are you trying to horn in on my gig?
</p></div></div><p>

You know what they say about challengers.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Inphernic)</author>
		<pubDate>Sun, 18 Mar 2007 13:44:12 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>awww!!!! <img src="http://www.allegro.cc/forums/smileys/grin.gif" alt=";D" /><img src="http://www.allegro.cc/forums/smileys/grin.gif" alt=";D" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Mark Oates)</author>
		<pubDate>Sun, 18 Mar 2007 13:45:26 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
You know what they say about challengers.
</p></div></div><p>

They always appear. I guess there&#39;s only one thing to do in a situation like this; party hard.</p><p><img src="http://www.allegro.cc//djungxnpq2nug.cloudfront.net/image/cache/d/7/d775322b606626d3593aede842299f35.gif" alt="591626" width="151" height="200" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (X-G)</author>
		<pubDate>Sun, 18 Mar 2007 15:33:42 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I concede.</p><p>http://www.duckiehorde.net/ph.gif
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Inphernic)</author>
		<pubDate>Sun, 18 Mar 2007 15:51:51 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Talking about a derailed thread...
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Tobias Dammers)</author>
		<pubDate>Tue, 20 Mar 2007 03:27:34 +0000</pubDate>
	</item>
</rss>
