<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>Cindex's Feed - Programmer's Heaven</title>
    <link>http://www.programmersheaven.com/feed/User/301001/RSS.aspx</link>
    <description>Events at Programmer's Heaven related to the user Cindex.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Tue, 21 May 2013 04:56:40 -0700</pubDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <item>
      <title>How does one preloade Flash to a website to allow viewing to whoever!</title>
      <link />
      <description>&lt;p&gt;Posted the message 'How does one preloade Flash to a website to allow viewing to whoever!' on the Flash development forum.&lt;/p&gt;You can use &amp;lt;noembed&amp;gt; if they don't have Flash so you can offer it to them, but otherwise there's nothing you can do.  It's integrated in the browser.&lt;br /&gt;
function Me() {&lt;br /&gt;
 str1 = "ActionScript"; str2 = "PHP";&lt;br /&gt;
 trace(str1.concat(str2)); }&lt;br /&gt;
Output:  Skills.</description>
      <pubDate>Wed, 27 Aug 2008 10:40:01 -0700</pubDate>
    </item>
    <item>
      <title>Re: help with a simple game</title>
      <link />
      <description>&lt;p&gt;Posted the message 'Re: help with a simple game' on the Flash development forum.&lt;/p&gt;Sorry to burst your bubble, but it's very difficult.  I'm not far enough to help you, but try to look for some sort of application like yours that's already made.  Look at the code and try to understand and re-create it.&lt;br /&gt;
&lt;br /&gt;
function Me() {&lt;br /&gt;
 str1 = "ActionScript"; str2 = "PHP";&lt;br /&gt;
 trace(str1.concat(str2)); }&lt;br /&gt;
Output:  Skills.</description>
      <pubDate>Wed, 27 Aug 2008 10:38:26 -0700</pubDate>
    </item>
    <item>
      <title>Re: Install WoW in my computer lab lol.</title>
      <link />
      <description>&lt;p&gt;Posted the message 'Re: Install WoW in my computer lab lol.' on the Hacking forum.&lt;/p&gt;Google "Bootable Windows Password Grabber" or something of the sort.  Just don't get caught in the act of using it.&lt;br /&gt;
&lt;br /&gt;
They do work, but not always at schools, since you're booting off of the network.&lt;br /&gt;
function Me() {&lt;br /&gt;
 str1 = "ActionScript"; str2 = "PHP";&lt;br /&gt;
 trace(str1.concat(str2)); }&lt;br /&gt;
Output:  Skills.</description>
      <pubDate>Wed, 27 Aug 2008 10:35:52 -0700</pubDate>
    </item>
    <item>
      <title>Re: Do you have trouble with writting good quality XHTML/CSS/JS</title>
      <link />
      <description>&lt;p&gt;Posted the message 'Re: Do you have trouble with writting good quality XHTML/CSS/JS ' on the HTML &amp; WEB-Design forum.&lt;/p&gt;No offense, but I can do that and I'm only 15.  If someone wants a webpage they should learn how to make one.&lt;br /&gt;
&lt;br /&gt;
But I guess for those who can't figure it out, this would be helpful..&lt;br /&gt;
&lt;br /&gt;
Isn't there something against advertising here?&lt;br /&gt;
function Me() {&lt;br /&gt;
 str1 = "ActionScript"; str2 = "PHP";&lt;br /&gt;
 trace(str1.concat(str2)); }&lt;br /&gt;
Output:  Skills.</description>
      <pubDate>Wed, 27 Aug 2008 10:27:51 -0700</pubDate>
    </item>
    <item>
      <title>Re: Emma Email Blast, send acutal live webpage</title>
      <link />
      <description>&lt;p&gt;Posted the message 'Re: Emma Email Blast, send acutal live webpage' on the HTML &amp; WEB-Design forum.&lt;/p&gt;: I am looking for some code or something that I can put into an Emma &lt;br /&gt;
: stationary template that will be able to send out acutal URL's and &lt;br /&gt;
: when the email blast is sent out it will show the webpage of the url &lt;br /&gt;
: in the email.  Any help would be great.  I do not know what language &lt;br /&gt;
: this email blaster is written in though.&lt;br /&gt;
: &lt;br /&gt;
: Thanks.&lt;br /&gt;
: &lt;br /&gt;
In PHP you could use file_get_contents("path/to/webpage.html") and then use the mail(to, subject, content) to send them a web page.  (Only works if the recipient can take HTML code, which many can)&lt;br /&gt;
&lt;br /&gt;
Example,&lt;br /&gt;
&lt;pre class="sourcecode"&gt;&amp;lt;?php

$to = "recipient@example.com";

$subject = "Check out my Webpage!";

$content = file_get_contents("mypage.html");

if (mail($to, $subject, $content)) {
  echo("&amp;lt;p&amp;gt;Message successfully sent!&amp;lt;/p&amp;gt;");
 } 

else {
  echo("&amp;lt;p&amp;gt;Message delivery failed...&amp;lt;/p&amp;gt;");
 }

?&amp;gt;&lt;/pre&gt;&lt;br /&gt;
function Me() {&lt;br /&gt;
 str1 = "ActionScript"; str2 = "PHP";&lt;br /&gt;
 trace(str1.concat(str2)); }&lt;br /&gt;
Output:  Skills.</description>
      <pubDate>Wed, 27 Aug 2008 10:24:55 -0700</pubDate>
    </item>
    <item>
      <title>Re: Code an Open Source Program.</title>
      <link />
      <description>&lt;p&gt;Posted the message 'Re: Code an Open Source Program.' on the Wanted forum.&lt;/p&gt;: can you help me on how to associate flash animation with &lt;br /&gt;
: actionscript..im developing a GIS using flash and actionscript..can &lt;br /&gt;
: you please send me some example???&lt;br /&gt;
: &lt;br /&gt;
I wouldn't recommend that for beginning programming..  Start out with at least basic ActionScript and Flash Animation.  You can't skip steps in there.  It takes a lot of time and practice.&lt;br /&gt;
&lt;br /&gt;
What are you making a GIS of?&lt;br /&gt;
function Me() {&lt;br /&gt;
 str1 = "ActionScript"; str2 = "PHP";&lt;br /&gt;
 trace(str1.concat(str2)); }&lt;br /&gt;
Output:  Skills.</description>
      <pubDate>Wed, 27 Aug 2008 10:19:43 -0700</pubDate>
    </item>
    <item>
      <title>Re: Are there any online games available?</title>
      <link />
      <description>&lt;p&gt;Posted the message 'Re: Are there any online games available?' on the Game programming forum.&lt;/p&gt;: Hi Friends, I want to ask you that are there any online games &lt;br /&gt;
: available. I am fond of playing video effects games. I already have &lt;br /&gt;
: video games, play station but still feel that I should now hang up &lt;br /&gt;
: with some more new games. If you people know about some internet &lt;br /&gt;
: games then please tell me. Thanks in advance.&lt;br /&gt;
: &lt;br /&gt;
This isn't the place to be asking.  This is game PROGRAMMING, not game playing.&lt;br /&gt;
&lt;br /&gt;
www.freeonlinegames.com&lt;br /&gt;
www.crazymonkeygames.com&lt;br /&gt;
www.armorgames.com&lt;br /&gt;
www.minddistortion.net&lt;br /&gt;
&lt;br /&gt;
Lots of them.  Or find a whole list &lt;a href="http://www.google.com/search?hl=en&amp;q=free+online+games&amp;btnG=Google+Search&amp;aq=f&amp;oq="&gt;here&lt;/a&gt;.&lt;br /&gt;
function Me() {&lt;br /&gt;
 str1 = "ActionScript"; str2 = "PHP";&lt;br /&gt;
 trace(str1.concat(str2)); }&lt;br /&gt;
Output:  Skills.</description>
      <pubDate>Wed, 27 Aug 2008 10:15:51 -0700</pubDate>
    </item>
    <item>
      <title>Re: Servers</title>
      <link />
      <description>&lt;p&gt;Posted the message 'Re: Servers' on the Computer Hardware forum.&lt;/p&gt;: Okay am currently building a new computer that i want to run as a &lt;br /&gt;
: server... it will have the latest mother board,graphics card,ram and &lt;br /&gt;
: 1TB of storage just wondered how i'd set it up as a server?&lt;br /&gt;
: &lt;br /&gt;
First, use Linux for your operating system.  Server apps are almost ALL made for Linux and Windows alike.  Linux is much more stable, so it won't crash all the time like a Windows computer would.  Unix would also work very well.  Maybe try www.FreeBSD.com &lt;br /&gt;
&lt;br /&gt;
Use Apache for your server application.  It's extremely powerful, with lots of customizable tweaks.  You can add PHP, MySQL, etc. to it easily.  www.apache.org&lt;br /&gt;
&lt;br /&gt;
Also, you don't need the graphics card.  Lots of RAM is good for lots of hits, and 1TB should be plenty storage space.&lt;br /&gt;
&lt;br /&gt;
You'll need a DNS service to start.  Try www.DynDNS.com for a good one.  Then you can add a domain name from that.&lt;br /&gt;
&lt;br /&gt;
Good luck, let me know how it goes.&lt;br /&gt;
function Me() {&lt;br /&gt;
 str1 = "ActionScript"; str2 = "PHP";&lt;br /&gt;
 trace(str1.concat(str2)); }&lt;br /&gt;
Output:  Skills.</description>
      <pubDate>Wed, 27 Aug 2008 10:13:11 -0700</pubDate>
    </item>
    <item>
      <title>Re: Compress File usng Windows Utility</title>
      <link />
      <description>&lt;p&gt;Posted the message 'Re: Compress File usng Windows Utility ' on the MS-DOS forum.&lt;/p&gt;I'm pretty sure wherever you read had it a little bit wrong.  The COMPACT command does make it smaller, but slower to read.  it works the same way as a ZIP and is still effective.&lt;br /&gt;
&lt;br /&gt;
PHP has a unzipping command, but I don't think Windows does.&lt;br /&gt;
function Me() {&lt;br /&gt;
 str1 = "ActionScript"; str2 = "PHP";&lt;br /&gt;
 trace(str1.concat(str2)); }&lt;br /&gt;
Output:  Skills.</description>
      <pubDate>Sun, 24 Aug 2008 09:59:45 -0700</pubDate>
    </item>
    <item>
      <title>Re: algorithms</title>
      <link />
      <description>&lt;p&gt;Posted the message 'Re: algorithms' on the Computer Graphics forum.&lt;/p&gt;: What are the algorithms used to draw rectangle&lt;br /&gt;
&lt;br /&gt;
Depends on the language.&lt;br /&gt;
&lt;br /&gt;
I know the ActionScript one?&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;_root.createEmptyMovieClip ("rectangle", 1);
	with (_root.rectangle){
		beginFill (0x0000FF, 50);
		lineStyle (5, 0xFF00FF, 100);
		moveTo (200, 200);
		lineTo (300, 200);
		lineTo (300, 300);
		lineTo (200, 300);
		lineTo (200, 200);
		endFill();
}&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
Each language is different.&lt;br /&gt;
function Me() {&lt;br /&gt;
 str1 = "ActionScript"; str2 = "PHP";&lt;br /&gt;
 trace(str1.concat(str2)); }&lt;br /&gt;
Output:  Skills.</description>
      <pubDate>Sun, 24 Aug 2008 09:56:59 -0700</pubDate>
    </item>
    <item>
      <title>Re: help mee ...</title>
      <link />
      <description>&lt;p&gt;Posted the message 'Re: help mee ...' on the C and C++ forum.&lt;/p&gt;: how  we can use graphics header file (#include&amp;lt;graphics.h&amp;gt;)in C &lt;br /&gt;
: -language  inorder to make an animation of linked &lt;br /&gt;
: list,stack,queue..??&lt;br /&gt;
: &lt;br /&gt;
As in convert a list/stack/queue into an animation?&lt;br /&gt;
&lt;br /&gt;
You would have to make a looping function to convert them all into a format you could feed into another function to display your animation.  I did something similar in ActionScript, and I know you CAN do it in C++.&lt;br /&gt;
&lt;br /&gt;
Make sure you have graphics.h added to your compiler if it doesn't come with it.&lt;br /&gt;
function Me() {&lt;br /&gt;
 str1 = "ActionScript"; str2 = "PHP";&lt;br /&gt;
 trace(str1.concat(str2)); }&lt;br /&gt;
Output:  Skills.</description>
      <pubDate>Sun, 24 Aug 2008 09:52:05 -0700</pubDate>
    </item>
    <item>
      <title>Re: Code an Open Source Program.</title>
      <link />
      <description>&lt;p&gt;Posted the message 'Re: Code an Open Source Program.' on the Wanted forum.&lt;/p&gt;: I think most programmers are busy enough. I suggest you give out &lt;br /&gt;
: more details here of the project itself so programmers here may find &lt;br /&gt;
: it more interesting and would then be willing to do it for fun and &lt;br /&gt;
: for free. :)&lt;br /&gt;
&lt;br /&gt;
Good point :)  I'd like to know what it's about, then I could probably help you at least a little.&lt;br /&gt;
&lt;br /&gt;
If it's a language I know, I'd be happy to help!&lt;br /&gt;
&lt;br /&gt;
Before I even try to help, I am going to tell you I'm only 15.  I'm not a pro programmer.  I understand many programming languages and can write quite a few.&lt;br /&gt;
&lt;br /&gt;
I also have a 'personal' webserver at the moment.  It'll be good for starting, as long as we don't have too much bandwidth pulling.  It's off a Windows 2K (Yes, it's old but it runs great) computer with Apache and PHP (can add more) and runs pretty smoothly.&lt;br /&gt;
&lt;br /&gt;
My favorite languages would be Flash Actionscript and PHP, if they could help at all.  I'm a beginner in many other languages and learn quickly, so I hope I can help.&lt;br /&gt;
&lt;br /&gt;
E-mail or IM Slickeroo_9183@hotmail.com&lt;br /&gt;
&lt;br /&gt;
Sounds fun.  :)</description>
      <pubDate>Sun, 24 Aug 2008 09:37:53 -0700</pubDate>
    </item>
    <item>
      <title>Re: Seeking Info for Learning Game Programming</title>
      <link />
      <description>&lt;p&gt;Posted the message 'Re: Seeking Info for Learning Game Programming' on the Game programming forum.&lt;/p&gt;&lt;a href="http://www.alice.org"&gt;http://www.alice.org&lt;/a&gt; is a simple 3D Java programming environment.  It is good for beginners because it prevents syntax errors totally.  Everything is drag and drop, but still involves programming.  It's highly recommended for children in middle school.&lt;br /&gt;
&lt;br /&gt;
Personally, I would recommend Adobe Flash.  Try to get him started with the new stuff if you can.  It's very expensive, but you might be able to get the EXTREMELY reduced student price since he's 11 and (I assume) in school.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://game-editor.com/"&gt;http://game-editor.com/&lt;/a&gt; also has a nice game builder.  It has it's own "language" which is fairly simple to use, but teaches syntax and everything that you need with programming.  There's a trial for 30-days and the full program is only $15.  Not much to lose if he only likes it a little.&lt;br /&gt;
=======================================&lt;br /&gt;
Noob programmer at Actionscript and C++.&lt;br /&gt;
&lt;br /&gt;
.        ~Always needing help~         .</description>
      <pubDate>Sun, 24 Aug 2008 09:30:07 -0700</pubDate>
    </item>
    <item>
      <title>What did I do wrong here?</title>
      <link />
      <description>&lt;p&gt;Posted the message 'What did I do wrong here?' on the PHP forum.&lt;/p&gt;&lt;pre class="sourcecode"&gt;&amp;lt;?php

$contentt = file_get_contents("blog.html");

$regex_pattern = "/&amp;lt;div class=\'post hentry uncustomized-post-template\'&amp;gt;(.*)&amp;lt;span class=\'reaction-buttons\'&amp;gt;/";

preg_match($regex_pattern,$content,$matches);

print_r($matches);

?&amp;gt;&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
So it's supposed to take the text between &lt;strong&gt;&amp;lt;div class='post hentry uncustomized-post-template'&amp;gt;&lt;/strong&gt; and &lt;strong&gt;&amp;lt;span class='reaction-buttons'&amp;gt;&lt;/strong&gt; and print it out.&lt;br /&gt;
&lt;br /&gt;
My output is just &lt;strong&gt;Array ()&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
Can anyone help me?&lt;br /&gt;
=======================================&lt;br /&gt;
Noob programmer at Actionscript and C++.&lt;br /&gt;
&lt;br /&gt;
.        ~Always needing help~         .</description>
      <pubDate>Sun, 24 Aug 2008 09:23:52 -0700</pubDate>
    </item>
    <item>
      <title>Is there a way?  &lt;Frame related&gt;</title>
      <link />
      <description>&lt;p&gt;Posted the message 'Is there a way?  &lt;Frame related&gt;' on the HTML &amp; WEB-Design forum.&lt;/p&gt;First, here's some source I am manipulating.&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;
&lt;span style="font-size: xx-small;"&gt;
&amp;lt;html&amp;gt;
  &amp;lt;head&amp;gt;
    &amp;lt;title&amp;gt;cindex.tk&amp;lt;/title&amp;gt;
    &amp;lt;meta name="description" content="cindex"&amp;gt;
    &amp;lt;meta name="tags" content="cindex"&amp;gt;
  &amp;lt;/head&amp;gt;
  &amp;lt;frameset rows="64,*" id="DotTKFrame" framespacing="0" border="0" frameborder="0"&amp;gt;
    &amp;lt;frame src="http://google.com" name="close" noresize scrolling="no"&amp;gt;
    &amp;lt;frame src="http://cindex.webhop.net" id="leave" name="LeaveMeOpen" scrolling="auto" noresize&amp;gt;
  &amp;lt;/frameset&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/span&gt;
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
Alright, I want to make a button in the second frame that will close the first frame and have the second frame take over.  The first frame is gone and the second frame is left alone, taking over the page.&lt;br /&gt;
&lt;br /&gt;
Is there a function for this?&lt;br /&gt;
=======================================&lt;br /&gt;
Noob programmer at Actionscript and C++.&lt;br /&gt;
&lt;br /&gt;
.        ~Always needing help~         .</description>
      <pubDate>Tue, 15 Apr 2008 18:10:53 -0700</pubDate>
    </item>
  </channel>
</rss>