<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Code The World — General Discussion]]></title>
	<link rel="self" href="https://codetheworld.com/extern.php?action=feed&amp;fid=1&amp;type=atom" />
	<updated>2012-08-15T22:13:52Z</updated>
	<generator>PunBB</generator>
	<id>https://codetheworld.com/index.php</id>
		<entry>
			<title type="html"><![CDATA[website with ticket system?]]></title>
			<link rel="alternate" href="https://codetheworld.com/viewtopic.php?id=466&amp;action=new" />
			<summary type="html"><![CDATA[<p>ok im making a website and im not real good at all this quite yet. i can pretty much tailor others free code to suit my needs however im lost right now.I own a repair shop and we been doing quite well. what im going for is this.</p><br /><p>I want a website that has a simple login panel that allows users to look up a ticket number and get the status on a repair. notes ect.</p><p>Im building it from scratch i already started the sites layout. Im considering scraping what i have inorder to use a template system like joomla or wordpress or something but i have no experience with these setups. i was just wondering if it would be easier to start with a system that has mysql database calls and setups and a login system vs making my own? any ideas would be a blessing.</p><p>should i attempt to create my own database system or does anyone know of a simple login system i can tailor to my needs?</p>]]></summary>
			<author>
				<name><![CDATA[DCLoser11]]></name>
				<uri>https://codetheworld.com/profile.php?id=421</uri>
			</author>
			<updated>2012-08-15T22:13:52Z</updated>
			<id>https://codetheworld.com/viewtopic.php?id=466&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[The advantages of getting a GED Online]]></title>
			<link rel="alternate" href="https://codetheworld.com/viewtopic.php?id=142&amp;action=new" />
			<summary type="html"><![CDATA[<p>While the Internet is full of websites and useless information, one of the most useful things you can find online is information and assistance on register for the GED or obtain a GED alternative, such as high school equivalency Diploma. When it&#039;s down vital how having a high school diploma or GED is in recession the current hit the economy, it is clear that using what is out there not only is useful but vital.<br />&nbsp; &nbsp; &nbsp; &nbsp; <br />Lucky for you, if you have found this article by browsing your website somehow, perhaps you are sharp enough to navigate the Web to get a <a href="http://www.edwardhighschool.com/">GED ONLINE</a>.Take this skill can be useful in how openly mix flexibility the Internet has made everything, even people working two or three jobs and get their GED Online.</p>]]></summary>
			<author>
				<name><![CDATA[cainstevensehs]]></name>
				<uri>https://codetheworld.com/profile.php?id=1020</uri>
			</author>
			<updated>2011-12-30T11:12:40Z</updated>
			<id>https://codetheworld.com/viewtopic.php?id=142&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Streaming Flash AS2  MP3 player]]></title>
			<link rel="alternate" href="https://codetheworld.com/viewtopic.php?id=118&amp;action=new" />
			<summary type="html"><![CDATA[<p><a href="https://dcloser11.info/audioplayer.html">Working Example</a><br /><a href="https://dcloser11.info/mp3.rar">Adobe CS4 project files </a></p><p>All you have to do is edit the Playlist.xml to your desires and you are able to have your own streaming media player <img src="https://codetheworld.com/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" /></p><p>Iv included the .fla incase anyone would like to load it into flash and see what code was used and its functions</p><p>A working example is also included</p><p>Action script 2 code that was used<br /></p><div class="codebox"><pre><code>stop();
playlist= new XML();
playlist.ignoreWhite=true;
playlist.onload = function (success) {
if(success) {
_global.songname = [];
_global.songfile = [];
for (var i=0; i&lt;playlist.firstChild.childNodes.length; i++) {
_global.songname = playlist.firstChild.childNodes[i].attributes.name;
_global.songfile[i] = playlist.firstChild.childNodes[i].attributes.file;
trace(songname[i]+\&quot; \&quot;+songfile[i]); }
_root.createEmptyMovieClip(\&quot;sound_mc\&quot;,1);
_root.sound_mc.sound_obj = new Sound();
_global.song_nr = random(songfile.length); _root.sound_mc.songStarter(songfile[song_nr],songname[song_nr]); 
} else {display_txt.text=\&quot;Error Loading XML\&quot;}
}

MovieClip.prototype.songStarter = function (file, name) {
this.sound_obj.loadSound(file,true)
this.onEnterFrame = function () {
if(this.sound_obj.position&gt;0) {
delete this.onEnterFrame;
this._parent.display_txt.text=name; 
} else {
this._parent.display_txt.text=\&quot;loading...\&quot; 
}
}
this.sound_obj.onSoundComplete = function () {
(song_nr==songfile.length-1)? _global.song_nr=0 : _global.song_nr++;
_root.sound_mc.songStarter(songfile[song_nr],songname[song_nr]);
}
}

btn_play.onRelease = function () {
this._parent.sound_mc.songStarter(songfile[song_nr],songname[song_nr]);
}
btn_stop.onRelease = function() {
this._parent.sound_mc.sound_obj.stop(); 
}
btn_next.onRelease = function () {
(song_nr==songfile.length-1)? _global.song_nr=0 : _global.song_nr++;
_root.sound_mc.songStarter(songfile[song_nr],songname[song_nr]);
}
btn_prev.onRelease = function () {
(song_nr==0)? _global.song_nr=songfile.length-1 : _global.song_nr--;
_root.sound_mc.songStarter(songfile[song_nr],songname[song_nr]);
}

playlist.load(\&quot;playlist.xml\&quot;);</code></pre></div>]]></summary>
			<author>
				<name><![CDATA[DCLoser11]]></name>
				<uri>https://codetheworld.com/profile.php?id=421</uri>
			</author>
			<updated>2010-05-14T05:25:53Z</updated>
			<id>https://codetheworld.com/viewtopic.php?id=118&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Gödel's ontological proof]]></title>
			<link rel="alternate" href="https://codetheworld.com/viewtopic.php?id=111&amp;action=new" />
			<summary type="html"><![CDATA[<p><span class="postimg"><img src="http://i39.tinypic.com/mj0orq.jpg" alt="http://i39.tinypic.com/mj0orq.jpg" /></span></p><p>Do you agree?&nbsp; Not regarding of you agree with whether the proof is correct or you agree with its conclusion, but do you agree with the underlying logic behind his agrument?<br />So this is more of a logic behind the proof question.</p><p>If you want more info: <a href="http://en.wikipedia.org/wiki/Gödel&#039;s_ontological_proof">http://en.wikipedia.org/wiki/Gödel&#039 … ical_proof</a></p>]]></summary>
			<author>
				<name><![CDATA[DuckofDoom]]></name>
				<uri>https://codetheworld.com/profile.php?id=398</uri>
			</author>
			<updated>2009-07-12T20:10:57Z</updated>
			<id>https://codetheworld.com/viewtopic.php?id=111&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[PS2 under .wine]]></title>
			<link rel="alternate" href="https://codetheworld.com/viewtopic.php?id=94&amp;action=new" />
			<summary type="html"><![CDATA[<p>is not working at all.&nbsp; the thing lags, more than my cat when you call it.</p><p>anyone have any experience with crossover?</p>]]></summary>
			<author>
				<name><![CDATA[MobileCats]]></name>
				<uri>https://codetheworld.com/profile.php?id=7</uri>
			</author>
			<updated>2008-09-11T23:59:46Z</updated>
			<id>https://codetheworld.com/viewtopic.php?id=94&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[what do you think is the best free mmorpg?]]></title>
			<link rel="alternate" href="https://codetheworld.com/viewtopic.php?id=89&amp;action=new" />
			<summary type="html"><![CDATA[<p>I use to play WoW but it became an addiction. So I quit it after my wallet is empty. Since then I&#039;ve been trying free MMORPGs, and I would like to share a few good oens with you guys. Rappelz is decent, but kinda reminds me of Lineage 2. Granado Espada just became free not too long ago, so I&#039;ve been playing that. Bought Guild wars,so it technically wasn&#039;t free, and got tired of that lol. Tried Runescape, can&#039;t stand it. Any other good ones you guys care to share?</p>]]></summary>
			<author>
				<name><![CDATA[monkeydluffy]]></name>
				<uri>https://codetheworld.com/profile.php?id=370</uri>
			</author>
			<updated>2008-06-20T06:26:20Z</updated>
			<id>https://codetheworld.com/viewtopic.php?id=89&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Nested data links in an orthagonal array database]]></title>
			<link rel="alternate" href="https://codetheworld.com/viewtopic.php?id=88&amp;action=new" />
			<summary type="html"><![CDATA[<p>I had an idea recently.&nbsp; I was thinking about how to access nested data links in an orthagonal array database, when it occurred to me that an efficient method method of retrieving these links would be to pre-organize the data queries into a nonlinear series, organized by the priority of the query in relation to the anticipated system resources at the expected time of fulfillment.&nbsp; Do you guys think that would result in an increase in perceived performance?</p>]]></summary>
			<author>
				<name><![CDATA[Tired8281]]></name>
				<uri>https://codetheworld.com/profile.php?id=358</uri>
			</author>
			<updated>2008-06-18T07:40:20Z</updated>
			<id>https://codetheworld.com/viewtopic.php?id=88&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[My signature]]></title>
			<link rel="alternate" href="https://codetheworld.com/viewtopic.php?id=86&amp;action=new" />
			<summary type="html"><![CDATA[<p>What do you guys think? (Not that i really care if you like it or not) Im curious. </p><p>The first part is what i can remember from Jackass The Movie intro. And the second part is mostly that my spelling is bad or im to lazy to hit *Shift* for a capital letter or I say ppl instead of people.</p>]]></summary>
			<author>
				<name><![CDATA[crashtestdummy]]></name>
				<uri>https://codetheworld.com/profile.php?id=318</uri>
			</author>
			<updated>2008-06-16T19:19:20Z</updated>
			<id>https://codetheworld.com/viewtopic.php?id=86&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Linux]]></title>
			<link rel="alternate" href="https://codetheworld.com/viewtopic.php?id=70&amp;action=new" />
			<summary type="html"><![CDATA[<p>I&#039;ve been using Linux for a year now and I feel like I&#039;m ready for something else. What distro flavors do you recommend?</p>]]></summary>
			<author>
				<name><![CDATA[phpnoob]]></name>
				<uri>https://codetheworld.com/profile.php?id=210</uri>
			</author>
			<updated>2008-06-15T23:56:17Z</updated>
			<id>https://codetheworld.com/viewtopic.php?id=70&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Yahoo Messenger for Mac]]></title>
			<link rel="alternate" href="https://codetheworld.com/viewtopic.php?id=53&amp;action=new" />
			<summary type="html"><![CDATA[<p>When i use yahoo messenger on my macbook pro, the cpu usage goes up to 100% and the temp skyrockets from 28C to 60C...<br />has anyone else had this problem or can help me with this?</p>]]></summary>
			<author>
				<name><![CDATA[cabron2323]]></name>
				<uri>https://codetheworld.com/profile.php?id=104</uri>
			</author>
			<updated>2008-06-15T08:47:02Z</updated>
			<id>https://codetheworld.com/viewtopic.php?id=53&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Wii > PS3]]></title>
			<link rel="alternate" href="https://codetheworld.com/viewtopic.php?id=52&amp;action=new" />
			<summary type="html"><![CDATA[<p>From my experience, coding on the Wii platform is far easier then the PS3 platform. As an experienced coder, I can say that it is far easier to create large amounts of programs for quick, efficient retail on the Wii, as opposed to the PS3.</p>]]></summary>
			<author>
				<name><![CDATA[__]]></name>
				<uri>https://codetheworld.com/profile.php?id=102</uri>
			</author>
			<updated>2008-06-15T08:24:50Z</updated>
			<id>https://codetheworld.com/viewtopic.php?id=52&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Why no [/img] tags in personal signatures?]]></title>
			<link rel="alternate" href="https://codetheworld.com/viewtopic.php?id=49&amp;action=new" />
			<summary type="html"><![CDATA[<p>Dammit! Why are personal signatures the only section that are not allowed to have /img tags?</p><p>People seriously cant be having that many loading problems?</p><p>Could someone please get back to me with why this is so?</p><p>For now I&#039;ll have to rely on a good old ASCII art style!</p>]]></summary>
			<author>
				<name><![CDATA[PurpleMonkey]]></name>
				<uri>https://codetheworld.com/profile.php?id=62</uri>
			</author>
			<updated>2008-06-15T07:47:22Z</updated>
			<id>https://codetheworld.com/viewtopic.php?id=49&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Welcome Thread]]></title>
			<link rel="alternate" href="https://codetheworld.com/viewtopic.php?id=45&amp;action=new" />
			<summary type="html"><![CDATA[<p>Since we lost our old post I&#039;d thought i would make a new one so we can reintroduce ourselves</p><p>Hey I&#039;m Hornet a 25 year old student from Dubai, I&#039;m a bit of a coding n00b however I&#039;m eager to learn.</p>]]></summary>
			<author>
				<name><![CDATA[Hornet]]></name>
			</author>
			<updated>2008-06-15T07:04:38Z</updated>
			<id>https://codetheworld.com/viewtopic.php?id=45&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Cake]]></title>
			<link rel="alternate" href="https://codetheworld.com/viewtopic.php?id=41&amp;action=new" />
			<summary type="html"><![CDATA[<p>Who here likes cake? and what kinds of cake does everyone like?</p>]]></summary>
			<author>
				<name><![CDATA[ir3l33t]]></name>
				<uri>https://codetheworld.com/profile.php?id=6</uri>
			</author>
			<updated>2008-06-15T05:55:08Z</updated>
			<id>https://codetheworld.com/viewtopic.php?id=41&amp;action=new</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[The best defragger [freeware]]]></title>
			<link rel="alternate" href="https://codetheworld.com/viewtopic.php?id=37&amp;action=new" />
			<summary type="html"><![CDATA[<p>Hands down, <a href="http://www.emro.nl/freeware/"><span style="color: #66FFFF">JK Defrag</span></a> is the best out there.</p>]]></summary>
			<author>
				<name><![CDATA[borisbadenov]]></name>
				<uri>https://codetheworld.com/profile.php?id=31</uri>
			</author>
			<updated>2008-06-15T04:30:09Z</updated>
			<id>https://codetheworld.com/viewtopic.php?id=37&amp;action=new</id>
		</entry>
</feed>
