<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	> 
 
<channel> 
  <language>en</language>
  <sy:updatePeriod>hourly</sy:updatePeriod> 
  <sy:updateFrequency>1</sy:updateFrequency>  
  <description>Lyrics and code making beautiful music</description>  
  <title>Songs in the key of C++</title>
  <atom:link>http://songs.nicreations.com/?format=xml</atom:link> 
  <link>http://songs.nicreations.com/?format=xml</link>
  
    <item>
	<title>Call Me Maybe - Carly Rae Jepsen</title>
	<link>http://songs.nicreations.com/songs/124</link>
	<guid isPermaLink="false">/songs/124</guid>
	<description>Call Me Maybe - Carly Rae Jepsen</description>
	<content:encoded><![CDATA[
		<pre>package carly.rae.jepsen;<span style="color:Green">// Person is in the same package</span><span style="color:Green">// and is left as an exercise for</span><span style="color:Green">// the reader</span>import java.math.Random;<span style="color:Blue">public</span> <span style="color:Blue">class</span> CMM {  boolean crazy = false;  <span style="color:Blue">public</span> setCrazy(boolean b) {    crazy = b;  }  <span style="color:Blue">public</span> <span style="color:Blue">void</span> meet(Person p) {    System.out.println(&quot;Hello &quot; + p.getName() + &quot;, nice to meet you.&quot;;  }  <span style="color:Blue">public</span> <span style="color:Blue">static</span> String hey(Person you) {    this.meet(you);    this.setCrazy(true);    <span style="color:Blue">return</span>(this.getNumber());  }  <span style="color:Blue">public</span> <span style="color:Blue">static</span> <span style="color:Blue">void</span> main(String[] args) {    Person you = <span style="color:Blue">new</span> Person(args[0]);    you.setNumber(hey(you));    Random rnd = <span style="color:Blue">new</span> Random();    <span style="color:Blue">if</span> (rnd.nextBoolean()) {      you.call(this);    }  }}</pre>
		<i><a href="/songs/124" anchor="show_comments">0 comment(s)</a> </i> |
		<i><a href="/songs/124" anchor="add_comment">Add Comment</a> </i>
	]]>
	</content:encoded>
	</item>
  
    <item>
	<title>Sexy And I Know It - LMFAO</title>
	<link>http://songs.nicreations.com/songs/123</link>
	<guid isPermaLink="false">/songs/123</guid>
	<description>Sexy And I Know It - LMFAO</description>
	<content:encoded><![CDATA[
		<pre>Girl.lookLookAtThatBody(); <span style="color:Green">// Ahhhh</span>Girl.lookLookAtThatBody(); <span style="color:Green">// Ahhhh</span>Girl.lookLookAtThatBody(); <span style="color:Green">// Ahhhh</span>this.workOut();</pre>
		<i><a href="/songs/123" anchor="show_comments">0 comment(s)</a> </i> |
		<i><a href="/songs/123" anchor="add_comment">Add Comment</a> </i>
	]]>
	</content:encoded>
	</item>
  
    <item>
	<title>I Would Do Anything For Love - Meatloaf</title>
	<link>http://songs.nicreations.com/songs/122</link>
	<guid isPermaLink="false">/songs/122</guid>
	<description>I Would Do Anything For Love - Meatloaf</description>
	<content:encoded><![CDATA[
		<pre><span style="color:Blue">class</span> Meatloaf{  <span style="color:Blue">public</span> boolean wouldDoForLove(Thing wouldDo)  {    <span style="color:Blue">return</span> wouldDo.equals(Thing.THAT) ? <span style="color:Blue">false</span> : true;  }}</pre>
		<i><a href="/songs/122" anchor="show_comments">0 comment(s)</a> </i> |
		<i><a href="/songs/122" anchor="add_comment">Add Comment</a> </i>
	]]>
	</content:encoded>
	</item>
  
    <item>
	<title>Theme From Shaft - Isaac Hayes</title>
	<link>http://songs.nicreations.com/songs/121</link>
	<guid isPermaLink="false">/songs/121</guid>
	<description>Theme From Shaft - Isaac Hayes</description>
	<content:encoded><![CDATA[
		<pre>bool canDigIt = close(MOUTH); <span style="color:Green">// Just talkin bout Shaft</span></pre>
		<i><a href="/songs/121" anchor="show_comments">0 comment(s)</a> </i> |
		<i><a href="/songs/121" anchor="add_comment">Add Comment</a> </i>
	]]>
	</content:encoded>
	</item>
  
    <item>
	<title>Get Back  - The Beatles</title>
	<link>http://songs.nicreations.com/songs/120</link>
	<guid isPermaLink="false">/songs/120</guid>
	<description>Get Back  - The Beatles</description>
	<content:encoded><![CDATA[
		<pre><span style="color:Blue">class</span> Human {    Gender sex;    String name;    String location;    public:    Human( String _name, Gender _sex):    name(_name), sex(_sex) {}    Human() {}     setName(String _name) { name = _name;}    setGender(Gender _sex) { sex = _sex; }    setLocation(String _loc) { location = _loc; }}<span style="color:Blue">class</span> Loner : <span style="color:Blue">public</span> Human {    private:    loneInstance;    Loner() {}    public:    <span style="color:Green">// singleton </span>    <span style="color:Blue">static</span> Loner* getLonerInstance() {       <span style="color:Blue">if</span>(loneInstance == NULL)          loneInstance = <span style="color:Blue">new</span> Loner();       <span style="color:Blue">return</span> loneInstance;    }}<span style="color:Blue">int</span> main(void) {     Human Jojo = Loner.getInstance();   jojo.setName(&quot;Jojo&quot;);   <span style="color:Blue">if</span>(jojo.class.getName() == &quot;Loner&quot; &amp;&amp; needsGrass(jojo))       jojo.setLocation(&quot;California&quot;);   <span style="color:Green">// get back to where you once belonged</span>   jojo = <span style="color:Blue">new</span> Human( dynamic_cast&lt;Human*&gt; &amp;jojo);   jojo.setLocation(&quot;Tucson, AZ&quot;);       Human sweetLoretta = <span style="color:Blue">new</span> Human(&quot;Loretta Martin&quot;, Gender::male);   sweetLoretta.setGender(Gender::female);   <span style="color:Blue">while</span>(getIt(sweetLoretta)) {      Girls.sayAbout(sweetLoretta, &quot;Shes got it coming&quot;);    }   <span style="color:Green">// get back to where you once belonged</span>   sweetLoretta.setGender(Gender::male);}</pre>
		<i><a href="/songs/120" anchor="show_comments">0 comment(s)</a> </i> |
		<i><a href="/songs/120" anchor="add_comment">Add Comment</a> </i>
	]]>
	</content:encoded>
	</item>
  
    <item>
	<title>The Dog Days Are Over - Florence And The Machine</title>
	<link>http://songs.nicreations.com/songs/119</link>
	<guid isPermaLink="false">/songs/119</guid>
	<description>The Dog Days Are Over - Florence And The Machine</description>
	<content:encoded><![CDATA[
		<pre>this.runFastFor(mother);this.runFastFor(father);this.runForAll(children);this.runForAll(sisters);this.runForAll(brothers);this.getLove().leaveBehind();this.getLoving().leaveBehind(); <span style="color:Green">// Can't cary it with you if you want to survive</span>dogDays.setOver(true);</pre>
		<i><a href="/songs/119" anchor="show_comments">0 comment(s)</a> </i> |
		<i><a href="/songs/119" anchor="add_comment">Add Comment</a> </i>
	]]>
	</content:encoded>
	</item>
  
    <item>
	<title>The Metal - Tenacious D</title>
	<link>http://songs.nicreations.com/songs/118</link>
	<guid isPermaLink="false">/songs/118</guid>
	<description>The Metal - Tenacious D</description>
	<content:encoded><![CDATA[
		<pre>Metal theMetal;kill( YOU, theMetal );	<span style="color:Blue">if</span>( theMetal.livesOn() ){  kill( PUNK_ROCK, theMetal );}	<span style="color:Blue">if</span>( theMetal.livesOn() ){  kill( NEW_WAVE, theMetal );}<span style="color:Blue">if</span>( theMetal.livesOn() ){  kill( GRUNGE, theMetal );}	<span style="color:Blue">if</span>( theMetal.livesOn() ){  defile( TECHNO, theMetal );}	<span style="color:Blue">if</span>( theMetal.livesOn() &amp;&amp;      !theMetal.defiled() &amp;&amp; theMetal.comesFromHell() ){	  <span style="color:Blue">return</span> HAIL_SATAN;}</pre>
		<i><a href="/songs/118" anchor="show_comments">0 comment(s)</a> </i> |
		<i><a href="/songs/118" anchor="add_comment">Add Comment</a> </i>
	]]>
	</content:encoded>
	</item>
  
    <item>
	<title>Devo - Whip It</title>
	<link>http://songs.nicreations.com/songs/115</link>
	<guid isPermaLink="false">/songs/115</guid>
	<description>Devo - Whip It</description>
	<content:encoded><![CDATA[
		<pre><span style="color:Blue">void</span> whipIt(Object &amp;obj) {  obj.whipItIntoShape();  obj.shapeItUp();  getStraight();  goForward();  moveAhead();  detectIt();  }<span style="color:Blue">int</span> main(<span style="color:Blue">int</span> argc, <span style="color:Blue">char</span> **argv) {  Problem problem;  Cream cream;  Something something;  <span style="color:Blue">if</span>( problem.comesA<span style="color:Blue">long</span>() ) {    whipIt(problem);  }  <span style="color:Blue">if</span> ( cream.timeSet() &lt; Cream.TOO_LONG ) {    whipIt(cream);  }  <span style="color:Blue">if</span> ( something.goingWrong() ) {    whipIt(something);  }}</pre>
		<i><a href="/songs/115" anchor="show_comments">0 comment(s)</a> </i> |
		<i><a href="/songs/115" anchor="add_comment">Add Comment</a> </i>
	]]>
	</content:encoded>
	</item>
  
    <item>
	<title>New Moon On Monday - Duran Duran</title>
	<link>http://songs.nicreations.com/songs/117</link>
	<guid isPermaLink="false">/songs/117</guid>
	<description>New Moon On Monday - Duran Duran</description>
	<content:encoded><![CDATA[
		<pre><span style="color:Blue">if</span> (<span style="color:Blue">new</span> Calendar().get(Calendar.DAY_OF_WEEK) == Calendar.MONDAY) {    Moon moon = <span style="color:Blue">new</span> Moon();}</pre>
		<i><a href="/songs/117" anchor="show_comments">0 comment(s)</a> </i> |
		<i><a href="/songs/117" anchor="add_comment">Add Comment</a> </i>
	]]>
	</content:encoded>
	</item>
  
    <item>
	<title>Christmas Medley - Traditional</title>
	<link>http://songs.nicreations.com/songs/116</link>
	<guid isPermaLink="false">/songs/116</guid>
	<description>Christmas Medley - Traditional</description>
	<content:encoded><![CDATA[
		<pre>you.have(<span style="color:Blue">new</span> Christmas(ChristmasType.HOLLY_JOLLY);you.have(<span style="color:Blue">new</span> Christmas(ChristmasType.MERRY | ChristmasType.LITTLE);we.wish(you, <span style="color:Blue">new</span> Christmas(ChristmasType.MERRY);we.wish(you, <span style="color:Blue">new</span> Holiday(HolidayType.HAPPY);send(joy, world);i.dream(<span style="color:Blue">new</span> Christmas(ChristmasType.WHITE);<span style="color:Green">//TODO: add more in comments :-)</span></pre>
		<i><a href="/songs/116" anchor="show_comments">1 comment(s)</a> </i> |
		<i><a href="/songs/116" anchor="add_comment">Add Comment</a> </i>
	]]>
	</content:encoded>
	</item>
  
    <item>
	<title>If I Had A Million Dollars - Barenaked Ladies</title>
	<link>http://songs.nicreations.com/songs/114</link>
	<guid isPermaLink="false">/songs/114</guid>
	<description>If I Had A Million Dollars - Barenaked Ladies</description>
	<content:encoded><![CDATA[
		<pre><span style="color:Blue">double</span> balance = bank.getBalance();<span style="color:Blue">if</span> ( balance &gt; 1000000.0 ) {  buy( you, <span style="color:Blue">new</span> House() );  buy( you,     Math.random() &gt; .5 ? <span style="color:Blue">new</span> Chesterfield() : <span style="color:Blue">new</span> Ottoman());  buy( you, <span style="color:Blue">new</span> KCar() );  TreeFort fort = <span style="color:Blue">new</span> TreeFort();  build( fort ); <span style="color:Green">// You can help, it wouldn't be that hard.</span>  buy( fort, <span style="color:Blue">new</span> Refrigerator() );   buy( you, <span style="color:Blue">new</span> FakeFurCoat() ); <span style="color:Green">// Not a real fur coat; that's cruel.</span>  buy( you,     Math.random() &gt; .5 ? <span style="color:Blue">new</span> Llama() : <span style="color:Blue">new</span> Emu() );  buy( you, <span style="color:Blue">new</span> ElephantManRemains() );  take( <span style="color:Blue">new</span> Limousine(), Store.getLocation() ); <span style="color:Green">// Costs more!</span>  eatMoreKraftDinner();   buy( you, <span style="color:Blue">new</span> FakeGreenDress() ); <span style="color:Green">// Not a real green dress; that's cruel</span>  buy( you,     Math.random() &gt; .5 ? <span style="color:Blue">new</span> Picasso() : <span style="color:Blue">new</span> Garfunkel() );  buy( you, <span style="color:Blue">new</span> Monkey() ); <span style="color:Green">// Haven't you always wanted a monkey?</span>  buy( this, you-&gt;getLove() );} <span style="color:Green">// I'm rich biotch!  </span></pre>
		<i><a href="/songs/114" anchor="show_comments">0 comment(s)</a> </i> |
		<i><a href="/songs/114" anchor="add_comment">Add Comment</a> </i>
	]]>
	</content:encoded>
	</item>
  
    <item>
	<title>4 Minutes To Save The World - Madonna</title>
	<link>http://songs.nicreations.com/songs/113</link>
	<guid isPermaLink="false">/songs/113</guid>
	<description>4 Minutes To Save The World - Madonna</description>
	<content:encoded><![CDATA[
		<pre>#define FOUR_MINUTES 4 * 60 * 1000<span style="color:Green">// Get start time</span><span style="color:Blue">long</span> start = timeMillis();<span style="color:Blue">do</span> {  <span style="color:Blue">if</span> ( you-&gt;want( It::instance() ) ) {    you-&gt;setHave( It::instance() );  }  <span style="color:Blue">if</span> ( you-&gt;thought( It::instance() ) ) {    you-&gt;setWant( It::instance() );  }  <span style="color:Blue">if</span> ( you-&gt;feel( It::instance() ) ) {    It::instance().setReal( <span style="color:Blue">true</span> );  }  <span style="color:Blue">if</span> ( you-&gt;sayTheWord() ) {    this-&gt;giveWhatYouWant( you );  }<span style="color:Green">// We only have four minutes to save the world</span>} <span style="color:Blue">while</span> ( ( timeMillis() - cur ) &lt; FOUR_MINUTES );</pre>
		<i><a href="/songs/113" anchor="show_comments">0 comment(s)</a> </i> |
		<i><a href="/songs/113" anchor="add_comment">Add Comment</a> </i>
	]]>
	</content:encoded>
	</item>
  
    <item>
	<title>Let It Be - The Beatles</title>
	<link>http://songs.nicreations.com/songs/112</link>
	<guid isPermaLink="false">/songs/112</guid>
	<description>Let It Be - The Beatles</description>
	<content:encoded><![CDATA[
		<pre>let It = B;</pre>
		<i><a href="/songs/112" anchor="show_comments">0 comment(s)</a> </i> |
		<i><a href="/songs/112" anchor="add_comment">Add Comment</a> </i>
	]]>
	</content:encoded>
	</item>
  
    <item>
	<title>Enter Sandman - Metallica</title>
	<link>http://songs.nicreations.com/songs/111</link>
	<guid isPermaLink="false">/songs/111</guid>
	<description>Enter Sandman - Metallica</description>
	<content:encoded><![CDATA[
		<pre>[a@xyz~]$light[light]$ exitexit[a@xyz~]$cd night[a@xyz night]$ #take my hand[a@xyz night]$ cp /etc/fonts .[a@xyz night]$ #we are off to never never land[a@xyz night]$/usr/bin/who &gt;&gt; /dev/null</pre>
		<i><a href="/songs/111" anchor="show_comments">0 comment(s)</a> </i> |
		<i><a href="/songs/111" anchor="add_comment">Add Comment</a> </i>
	]]>
	</content:encoded>
	</item>
  
    <item>
	<title>Istanbul - The Might Be Giants</title>
	<link>http://songs.nicreations.com/songs/110</link>
	<guid isPermaLink="false">/songs/110</guid>
	<description>Istanbul - The Might Be Giants</description>
	<content:encoded><![CDATA[
		<pre>Istanbul = Constantinople.clone();Constantinople.getTheWorks(); <span style="color:Green">//Nobody's business but the turks</span>ASSERT(!Istanbul.equals(Constantinople)); </pre>
		<i><a href="/songs/110" anchor="show_comments">0 comment(s)</a> </i> |
		<i><a href="/songs/110" anchor="add_comment">Add Comment</a> </i>
	]]>
	</content:encoded>
	</item>
  
    <item>
	<title>Rebel Yell - Billy Idol</title>
	<link>http://songs.nicreations.com/songs/109</link>
	<guid isPermaLink="false">/songs/109</guid>
	<description>Rebel Yell - Billy Idol</description>
	<content:encoded><![CDATA[
		<pre>#!/usr/bin/bashHOUR=`date  +&quot;%H&quot;`;CRY=&quot;cry&quot;;#in the midnight hour cry more more moreif['$HOUR' == &quot;00&quot;] then    echo $CRY | more | more | more;    echo &quot;Rebel Yell&quot; + $CRY | more | more |more;fi</pre>
		<i><a href="/songs/109" anchor="show_comments">0 comment(s)</a> </i> |
		<i><a href="/songs/109" anchor="add_comment">Add Comment</a> </i>
	]]>
	</content:encoded>
	</item>
  
    <item>
	<title>Zero Day - MC Frontalot</title>
	<link>http://songs.nicreations.com/songs/108</link>
	<guid isPermaLink="false">/songs/108</guid>
	<description>Zero Day - MC Frontalot</description>
	<content:encoded><![CDATA[
		<pre><span style="color:Blue">if</span>( day &gt; 0 ) {  abort(); <span style="color:Green">// Already too late</span>}</pre>
		<i><a href="/songs/108" anchor="show_comments">0 comment(s)</a> </i> |
		<i><a href="/songs/108" anchor="add_comment">Add Comment</a> </i>
	]]>
	</content:encoded>
	</item>
  
    <item>
	<title>Fat Bottomed Girls - Queen</title>
	<link>http://songs.nicreations.com/songs/107</link>
	<guid isPermaLink="false">/songs/107</guid>
	<description>Fat Bottomed Girls - Queen</description>
	<content:encoded><![CDATA[
		<pre>fat_bottomed_girl ~/&gt; make rockin_world_go_round </pre>
		<i><a href="/songs/107" anchor="show_comments">0 comment(s)</a> </i> |
		<i><a href="/songs/107" anchor="add_comment">Add Comment</a> </i>
	]]>
	</content:encoded>
	</item>
  
    <item>
	<title>Good Vibrations - Marky Mark And The Funky Bunch</title>
	<link>http://songs.nicreations.com/songs/106</link>
	<guid isPermaLink="false">/songs/106</guid>
	<description>Good Vibrations - Marky Mark And The Funky Bunch</description>
	<content:encoded><![CDATA[
		<pre><span style="color:Blue">class</span> It{  <span style="color:Blue">public</span> It() {    setGoodVibration(true);    setSweetSensation(true); <span style="color:Green">//Donny D, break it down!</span>  }}</pre>
		<i><a href="/songs/106" anchor="show_comments">0 comment(s)</a> </i> |
		<i><a href="/songs/106" anchor="add_comment">Add Comment</a> </i>
	]]>
	</content:encoded>
	</item>
  
    <item>
	<title>Break On Through - The Doors</title>
	<link>http://songs.nicreations.com/songs/105</link>
	<guid isPermaLink="false">/songs/105</guid>
	<description>Break On Through - The Doors</description>
	<content:encoded><![CDATA[
		<pre>#include &lt;ctime&gt;#define THROUGH 2;<span style="color:Blue">int</span> main(<span style="color:Blue">int</span> argc, char** argv) {     time_t now = time(NULL);     <span style="color:Blue">if</span>(day(night(now)) != NULL) {         night(day(now));      }     <span style="color:Blue">try</span> {         run(argv[1]);         hide(argv[0]);     } <span style="color:Blue">catch</span>(_UnknownException e){         exit(1);     }      <span style="color:Green">// Break on THROUGH</span>     switch(argc) {        case THROUGH: break;         exit(0);     }    <span style="color:Green">// Other side</span>     }<span style="color:Green">// Day destroys arg</span>time_t day(time_t now) {    <span style="color:Blue">delete</span> now;    <span style="color:Blue">return</span> now;}<span style="color:Green">//night divides value of tm_day in arg</span>time_t night(time_t now ) {    struct *tm = localtime(&amp;now);    tm-&gt;day = tm-&gt;day/2;    <span style="color:Blue">return</span> mktime (tm);}</pre>
		<i><a href="/songs/105" anchor="show_comments">4 comment(s)</a> </i> |
		<i><a href="/songs/105" anchor="add_comment">Add Comment</a> </i>
	]]>
	</content:encoded>
	</item>
  
</channel>
</rss>
