QUESTION: What software do you use to create your RSS feeds?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • who
    So Fucking Banned
    • Aug 2003
    • 19593

    #1

    QUESTION: What software do you use to create your RSS feeds?

    It seems there's many available. Which do you use?
    Thank you for your time.
  • Juicy D. Links
    So Fucking Banned
    • Apr 2001
    • 122992

    #2
    RSS Creator Pro Final

    Comment

    • who
      So Fucking Banned
      • Aug 2003
      • 19593

      #3
      Originally posted by Juicy D. Links
      I mouseover'd you feind.

      Comment

      • Juicy D. Links
        So Fucking Banned
        • Apr 2001
        • 122992

        #4
        Originally posted by who
        Nice software thx

        Comment

        • who
          So Fucking Banned
          • Aug 2003
          • 19593

          #5
          Originally posted by Juicy D. Links

          Comment

          • The Judge
            Confirmed User
            • Jan 2006
            • 1647

            #6
            just post using wordpress and allow syndication

            Comment

            • psili
              Confirmed User
              • Apr 2003
              • 5526

              #7
              Where's the data coming from?
              I mean we're just talking RSS, which is just XML which is pretty much just text with some greater / lessthan tags around shit, right?
              Your post count means nothing.

              Comment

              • psili
                Confirmed User
                • Apr 2003
                • 5526

                #8
                Where's the data coming from?
                I mean we're just talking RSS, which is just XML which is pretty much just text with some greater / lessthan tags around shit, right?
                Your post count means nothing.

                Comment

                • who
                  So Fucking Banned
                  • Aug 2003
                  • 19593

                  #9
                  Well I'm toying with a new idea for a website. But I suppose I'll have to keep digging. Thanks.

                  Comment

                  • psili
                    Confirmed User
                    • Apr 2003
                    • 5526

                    #10
                    Originally posted by who
                    Well I'm toying with a new idea for a website. But I suppose I'll have to keep digging. Thanks.
                    I was just curious what your data format looks like and what platform you were using. If you have a database but not platform, you can pretty much convert anything to an RSS feed. Fuck it, even text files could help. To keep it kind of non-geeky though, take the database schema below and my really shitty explanation

                    table: HookersIFucked
                    columns:
                    id: some primary key shit
                    name: stores text of hooker name
                    title: name of the night, i.e.: "Back of cab. Hooker hit cabby in head with condom"
                    description: how i laid the hooker in the back of a cab... blah blah blah.
                    myalias_thatnight: did she call you "don" or "rob"
                    date_i_laid_hooker: date of incident

                    Now, if you have a random database with a table populated with shit like above, you can take that data and format it to an RSS feed... Apologies again on my shitty explanation below as it's unusable in any situation:

                    <?php
                    $header=<<<EOQ
                    <rss version="0.91">
                    <channel>
                    <title>I'm a hooker fucker</title>
                    <link>http://www.ilikepie.com</link>
                    <description>Pie and hookers meet in an awesome experience.</description>
                    <language>en-us</language>
                    EOQ;

                    // get database results somehow
                    $results = $db->getHookersIFucked();

                    // create string to spit to browser
                    $string = "";
                    while($results = $hookerIFucked)
                    {
                    $string.=<<<EOQ
                    <item>
                    <title>$hookerIFucked->getTitle()</title>
                    <link>http://www.ilikepie.com/$hookerIFucked->getId()/</link>
                    <description>$hookerIFucked->getDescription()</description>
                    </item>
                    }
                    $string.=<<<EOQ
                    </channel>
                    </rss>
                    EOQ;

                    header("Content-Type: text/xml");
                    echo $string;
                    exit;
                    ?>

                    ------------
                    k. probably all bad advice so I'm leaving now. Sorry to bump with the above nonsense.
                    Your post count means nothing.

                    Comment

                    • who
                      So Fucking Banned
                      • Aug 2003
                      • 19593

                      #11
                      Originally posted by psili
                      stuff
                      Thank you that's actually very useful to me. I was approaching this from entirely the wrong angle, it seems.

                      Comment

                      • psili
                        Confirmed User
                        • Apr 2003
                        • 5526

                        #12
                        Originally posted by who
                        Thank you that's actually very useful to me. I was approaching this from entirely the wrong angle, it seems.
                        Look, I just wrote some cockamaymee crap. If anyone tells you "RSS" is something special, kick them in the nuts. It's just text, formatted a certain way and sent out a certain way. That's where my crap stops and someone with a system to spam a RSS feed into many aggregators, get it crawled, get you traffic, yadda yadda and all that other shit -- I've got no help. But others will.

                        Thus another bump, yo.
                        Your post count means nothing.

                        Comment

                        Working...