No one understands RSS. Any other way for people to subscribe to my blog?

Is there another way besides RSS to allow people to subscribe to an iWeb '08 blog, and be notified of updates/new posts? I've been getting feedback from people that they just don't understand RSS or it's not working for them, so they miss out on getting notifications of my new posts. Is there another program I can drop in as a widget or something? Anyone else been able to work around RSS? I've got an option for people to sign up for my email newsletter, but fewer people are willing to sign up for that, and I would rather not have to email everyone every time I post.
Thanks!
Ellen

Ellen ~ You probably don't want to switch to a different blogging platform, but just in case...
Posterous provides some automatic, non-RSS, email options. This first one doesn't require your followers to create a free Posterous account:
http://blog.posterous.com/posterous-group-blogs-are-now-email-lists-too
This second option requires that your followers create a free Posterous account:
http://blog.posterous.com/new-read-posterous-subscriptio

Similar Messages

  • My Ipad was activated by my cousin so then when i have restarted it, i had to use their apple email to activate my ipad and she lives very far so is their any other way for me to be able to get into my ipad with my apple ID

    My ipad was activated by my cousin so then i cant activate it by my apple ID so can i get into my ipad without using my cousins icloud? i know my apple ID and Apple password/

    You need to erase the device and reconfigure it for yourself. Have your cousin turn off Find My Phone, then erase your iPad. After iOS is reinstalled do your own setup using your Apple ID and password.

  • Any other way for music downlo

    Can a software like limewire be used to downlod songs with Creative?
    I have the Microphoto for months but I don't have anything on it except some songs from my dad's cds I don't even like.
    Doesn't the company allow song downloads not coming just from CD's?
    Please do help. I'm getting really desperate.

    WMP0 has plenty of music stores on it here in the UK. Maybe your local version has some too.
    Limewire is not a legal place to download commercially available copyrighted music and noone here is going to tell you how to do it on a public forum

  • Is any other way for this problem

    <jsp:useBean id="obj" class="DBConnection.DbBean" scope="application"/>
    <%@ page import="java.sql.*" %>
    <%! ResultSet rs;%>
    <%
    rs=obj.getItemRs();
    int cnameindex=0;
    int pnameindex=0;
    String cname=request.getParameter("cname");
    String load="no";
    String C1nameIndex = request.getParameter("cnameIndx");
    if(C1nameIndex == null || C1nameIndex.equals(""))
    else
        cnameindex = Integer.parseInt(C1nameIndex);
    String P1nameIndex = request.getParameter("pnameIndx");
          String pname=request.getParameter("pname");
          if(P1nameIndex == null || P1nameIndex.equals(""))
         else
                    pnameindex = Integer.parseInt(P1nameIndex);
              // out.print(pname);
         out.println(pnameindex);
    %>
    <HTML><head><title>Product Details</title></head>
    <body   bgcolor="#99CCFF">
    <form name="f1" method="POST" action="">
       <p align="center">
       <%String user=(String)session.getAttribute("username");%>
      <marquee> <font size="5" color="green"><b>  Abc Electronics Welcomes <%=user%></b></font> </marquee><br>
       <b><font size="5">Products Details</font></b></p>
       </p>
       <input type="hidden" name="cnameIndx" value="<%=cnameindex%>" size="20">
       <input type="hidden" name="pnameIndx" value="<%=pnameindex%>" size="20">
      <table border="0" cellpadding="5" cellspacing="5" style="border-collapse: collapse" bordercolor="#FFFFFF" width="100%" id="AutoNumber1" bgcolor="#99CCFF">
        <tr>
          <td width="50%">
           </td>
        </tr>
      </table>
       <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#FFFFFF" width="100%" id="AutoNumber2" bgcolor="#99CCFF">
         <tr>
           <td width="50%">
           <p align="center"><b>Company Name :</b>     
           <select size="1" name="cname" onchange="
           document.f1.pnameIndx.value=0;
           document.f1.cnameIndx.value=document.f1.cname.selectedIndex;
           document.f1.action='';
           document.f1.submit();
           ">
           <option >Select The Company </option>
           <%
           int x=1;
           while(rs.next())
           %>
           <option
           <%
           if(cnameindex==x)
           %>
            selected
            <%
            %>
            ><%=rs.getString(1)%></option>
           <%
             x++;
           %>
           </select></td>
           <td width="50%">
           <p align="center">
            <b>Product Name</b> :             
            <select size="1" name="pname" onchange="
              document.f1.pnameIndx.value=document.f1.pname.selectedIndex;
              document.f1.action='';
              document.f1.submit();
           " >
            <option >Select The Product </option>
            <%
            int y=1;
            rs=obj.SetCompanyNameRs(cname);
            while(rs.next())
            %>
            <option
                 <%
           if(pnameindex==y)
           %>
            selected
            <%
            %>
         > <%=rs.getString(1)%></option>
         <%
             y++;
            %>
            </select></td>
         </tr>
       </table>
       <% int z=0;
                 if( cnameindex > 0 && pnameindex > 0 )
             { z++;
             rs=obj.getProductNameRs(cname , pname );
       %>
           <center>
          <table cellspacing="9" cellpadding="9" border="1" bordercolor="#FFFFFF" bgcolor="#99CCFF" style="border-collapse: collapse" bordercolordark="#000000" height="116" width="888">
           <tr>
           <td height="17" width="133"><b><center> Company Name</b></center></td>
           <td height="17" width="186"><b><center> Product Name</b></center></td>
           <td height="17" width="160"><b><center> Item No.</b></center></td>
           <td height="17" width="137"><b><center> Cost</b></center></td>
           <td height="17" width="176"><b><center> Model No.</b></center></td>
            </tr>
           <%
               while(rs.next())
            %><tr>
            <%
            String productid="";
             for(int a=1; a<=5;a++)
               String temp=rs.getString(a);
               if(a==3)
               productid=temp;
                    %>
               <td height="18" width="133"><%=temp%> </td>
             <%
               %>
               <td height="18" width="186"><input type="checkbox" value="<%=productid%>" name="z<%=productid%>"></td>
           <%
             %>
             </tr>
             <%
             %>
      </tr>
      <tr>
      <td height="27" width="133">
      <%
      if(z==1)
      {%>
      <input type=button value="Order " onclick="
      document.f1.action='OrderDetails';
      document.f1.submit();
       <%}
       else
       %>
      </td>
      </center>
       </table>
    </form>

    package DBConnection;
    import java.sql.*;
    public class DbBean
         Statement stmt=null;
         public void DataBaseConnection()
              try
                   Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                   Connection conn=DriverManager.getConnection("jdbc:odbc:Login","scott","tiger");
                   stmt=conn.createStatement();
              catch(Exception e)
                   System.out.println(e);
         public ResultSet getItemRs()
              ResultSet rs=null;
              try
                   DataBaseConnection();
                   rs=stmt.executeQuery("select DISTINCT cname from Items");
                   System.out.println("hai da");
              catch(Exception e)
                   System.out.println(e);
                   return rs;
              public ResultSet SetCompanyNameRs(String cname )
              ResultSet rs=null;
              try
                   DataBaseConnection();
                   rs=stmt.executeQuery("select DISTINCT pname from Items where cname='"+cname+"'");
              catch(Exception e)
                   System.out.println(e);
              return rs;
         public ResultSet getProductNameRs(String cname ,String pname)
              ResultSet rs=null;
              try
                   Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                   Connection conn=DriverManager.getConnection("jdbc:odbc:Login","scott","tiger");
                   Statement stmt=conn.createStatement();
                   rs=stmt.executeQuery("select * from ItemDetails where cname='"+cname+"' and pname='"+pname+"'");
              catch(Exception e)
                   System.out.println(e);
              return rs;
         public ResultSet getOrderedItemRs(String u)
              ResultSet rs=null;
              try
              {   System.out.println(u);
                   DataBaseConnection();
                   if(u.equals("Admin"))
                   rs=stmt.executeQuery("select * from OrderDetail ");
                   else
                   rs=stmt.executeQuery("select * from OrderDetail  where Cust_name='"+u+"'");
              catch(Exception e)
                   System.out.println(e);
              return rs;
      

  • I have a Mac OSX version 10.75 with just one Thunderbolt port. and it has been my Thunderbolt port to connect with Blackmagic wear my intensity. and I no longer can use the port for mini-DVI adapter to connect with me. I do not want to ask any other way f

    i have a Mac OSX version 10.75 with just one Thunderbolt port. and it has been my Thunderbolt port to connect with Blackmagic wear my intensity. and I no longer can use the port for mini-DVI adapter to connect with me. I do not want to ask any other way for me to use to use my monitor. I monitor LG FLATRON E2041 brand .. PLEASE Helpp ME

    i have a Mac OSX version 10.75 with just one Thunderbolt port. and it has been my Thunderbolt port to connect with Blackmagic wear my intensity. and I no longer can use the port for mini-DVI adapter to connect with me. I do not want to ask any other way for me to use to use my monitor. I monitor LG FLATRON E2041 brand .. PLEASE Helpp ME

  • Hi, I have lost my iphone but i have its backup in itunes, how can i restore my contact/sms using itunes or is there any other way, please help

    Hi, I have lost my iphone but i have its backup in itunes, how can i restore using itunes or is there any other way for this
    please suggest

    You can restore that backup to a replacement iPhone, if that's what you're asking. If you want to extract data from the iPhone backup, you'll need third-party software to do so:
    http://www.iphonebackupextractor.com/

  • My iphone 4s' screen is black, but it's still on and charging. I broke my lock screen button so I am unable to turn it off using the home button and lock button. Is there any other way my phone can restart or turn off ? Is my phone broken for sure?

    My iphone 4s' screen is black, but it's still on and charging. I broke my lock screen button so I am unable to turn it off using the home button and lock button. Is there any other way my phone can restart or turn off ? Is my phone broken for sure?

    Kbkohn wrote:
    I am in tears right now because I entered all my 11month old sons milestones into my phone and now I have nothing I'm so upset and am hoping there is a way to get this information back. 
    Most intelligent people would not store such sensitive data on a device that could so easily be lost, stolen, or damaged.  Even if they chose to do so, they would use the device as designed and regularly sync and backup that device as described in the User's Guide.
    Have you done so?  If you have, all of the data is either in iCloud or iTunes on your computer.  Replace the device and restore the new iDevice with the backup of the old one.

  • Best way to copy table from one database to any other database

    I need to write an application to perform database table copy from one kind of database to another kind of database.
    I just wrote a simple JDBC program which essentially does the something like below:
    PreparedStatement statement = null;
    ResultSet rs = null;
    try
    System.out.println("insertSQL:" + insertSQL.toString());      
    statement = target.prepareStatement(insertSQL.toString());
    System.out.println("selectSQL:" + selectSQL.toString());
    rs = source.executeQuery(selectSQL.toString());
    int rows = 0;
    while (rs.next())
    rows++;
    for (int i = 1; i <= columns.size(); i++)
    statement.setString(i, rs.getString(i));
    statement.execute();
    System.out.println("Copied " + rows + " rows.");
    But problem with this one is that it takes lot of time( more than 60 mins) for 100k records transfer. Would there be any faster way to do this?
    TIA...

    Thanks...
    I am using now batch update mechanism and set the fetchsize of resultSet cursor.
    Now I need to copy a table with almost 10 million records to the target database. My program works fine but it takes more than 3 hours.
    I am copying from Postgres table to MS SQL server table.
    Is there any other way or more better appraoch to make this more faster?
    TIA..

  • Western Digital My Book World EditionI have bought a WD My Book World Edition to use for back-up of my iMac, but when I try and log onto the drive with Apple time Machine (back-up software) or connect in any other way i get the message 'There was a proble

    I have bought a WD My Book World Edition to use for back-up of my iMac, but when I try and log onto the drive with Apple time Machine (back-up software) or connect in any other way I get the message 'There was a problem connecting to the server "MybookWorld.local" The version of the server you are trying to connect to is not supported. Please contact your system administrator to resolve the problem'
    It is a brand new iMac and running Lion OSX
    Any ideas on how to solve would be gratefully received?

    Followed the directions on this page and it worked!
    http://forums.macrumors.com/showthread.php?t=1102423
    Part One - Turn on SSH (in the admin panel)
    [1] Go to to http://mybookworld.local
    [2] login: username will be admin, password will be whatever you have setup. If you can't remember it should be in your Mac OS X keychain (Utilities > Keychain Access, search for "mybookworld"). If you have not changed if from the default the password will be admin as well.
    [3] Switch to advanced mode.
    [4] From the System tab, pick Advanced.
    [5] Enable SSH Access, and click submit.
    [6] Click on the network tab and then the LAN button
    [7] Make a note of the IP address
    Small, maybe obvious, but nevertheless important point: For the install to work, your NAS needs to be connected to a router with internet access.
    Part Two - Install netatalk2.2
    [8] Open Terminal.app (Utilities > Terminal)
    [9] Enter the following command (substitute in 127.0.0.1 for the actual IP address you noted down in step 7), then hit return:
    Code: 
    ssh [email protected]
    [10] When prompted, enter the ssh password (will be welc0me).
    [11] You are now going to download the installer. Enter the following command, then hit return:
    Code: 
    wget http://mybookworld.wikidot.com/local--files/netatalk2-2-on-whitelight/install_netatalk.sh -O install_netatalk.sh
    [12] Once completed, you will need to run the installer. Type:
    Code: 
    sh install_netatalk.sh
    [13] You will be asked a number of question during install, answer yes to all. When asked about the "DHX2 login process", I opted to install the modified version, so I can confirm it works.
    [14] Once the box has restarted, you should be able to connect to your afp shares and continue to use Time Machine.

  • Touch screen quit working, and my iPhone is refusing to connect to my computer. Any other way to get things off my iPhone before I get a new one?

    My iPhone's touch screen recently quit working, so I have a new one on the way so I tried to back-up my phone on my laptop and it will not connect. I've tried restarting the Apple Mobile Device services and that didn't work. So I completely unistalled iTunes using Apple's instructions and re-installed it and it still will not connect, and I don't use iCloud because the iPhone is my only Apple device. Is there any other way to get things off of my iPhone or is it all pretty much gone?

    You need to get iTunes to recognize it. If your iPhone is working, which it is not, then a new screen would help. But you iPhone is broken beyond just a new screen. Now you can see why iCloud or even an iTunes Back Up is so important. iCloud back up is ideal for you, a one Apple device person, it automatically backs up your iPhone so there is a current back up ready to use anytime, especially in emergency like this. When you get your new iPhone, iPad anything use iCloudl it is free and simple.

  • Could u plz help me to find simple example for how to save data file in a spread sheet or any other way in the real time controller for Sbrio 9642 using memory or usb flash memory

    Could u plz help me to find simple example for how to save data file in a spread sheet or any other way in the real time controller for Sbrio 9642 using memory or usb flash memory

    Here are a few Links to a helpful Knowledge Base article and a White Paper that should help you out: http://digital.ni.com/public.nsf/allkb/BBCAD1AB08F1B6BB8625741F0082C2AF and http://www.ni.com/white-paper/10435/en/ . The methods for File IO in Real Time are the same for all of the Real Time Targets. The White Paper has best practices for the File IO and goes over how to do it. 
    Alex D
    Applications Engineer
    National Instruments

  • How do i get itunes or any other program for ipod to play one song and then stop instead of contiuing playing. I need it to be in the same playlist and ready to play the next song when I press play?

    how do i get itunes or any other program for ipod to play one song and then stop instead of contiuing playing. I need it to be in the same playlist and ready to play the next song when I press play?

    Good luck.  I tried to do this to cue sound effects for a theater, and never found anything.  iTunes will definitely *not* do this, nor was I able to find any player that would play one song at a time in a single playlist. 
    In my case, I ended up using AutoHotkey to tie individual tracks to the keys on an external keypad. This was an excellent solution for my problem, but I don't think AHK runs on Macs.
    One workaround is to make a folder, and fill it with *shortcuts* to the songs you want (ie, the actual files).  You can change the names to start with numbers to get them in the right order.  Then if you double-click on one it will play just that song.  You'll still have to double-click on each song.
    Might be a good time to learn AppleScript   It would  also be pretty easy to write a Java app to do this.

  • My wifi button is frezon and I tried turning my phone off for a period of time and reset my phone but the button is still frezon it want slide over to turn on my wifi. Is there any other way to fix without going to apple to get it fixed?

    My wifi button is frezon and I tried turning my phone off for a period of time and reset my phone but the button is still frezon it want slide over to turn on my wifi. Is there any other way to fix without going to apple to get it fixed?

    Hey Posada143, You can still try the rice thing, but do not expect much, as roaminggnome has stated. The rice only works if you do it ASAP and leave the iPod off-- do not attempt use, turn on or charge until it is completely dried out. This is probably academic at this point but remember this for the next time: The drying can take 10 days. You put the uncooked rice and iPod in a sealed bag, change the rice every couple of days. This creates a low humidity environment and draws the moisture out of the iPod, but it takes time. Turn your iPod on to earlier, and you run the risk of shorting out, damaging the components inside. Even if done correctly it can spotty. If you do get the iPod to work (and this may require Resetting, Restoring or attempting to place it in DFU recover mode) the first thing you do is make backups, because you never know how long it will continue to work. As for your pictures, if you can't get your iPod to work, you can try data retrieval companies, however; there is no guaranty it will work and it tends to be very expensive. In the future get in the habit of as making backups, because you just don't know. And invest in and use a water tight case. Hope this helps, Good luck. Cheers.

  • My daughter ipod touch has been missing for at least a month, tried the find my iphone but her battery is dead is there any other ways to find it??

    My kids ipod touch 4 has been missing for 2 months I tried the find iphone app but her battery is dead so I get no sound or signal, is there any other ways to find it??

    Only the old fashioned way, like if you lost a wallet or purse.
    - Change the passwords for all accounts used on the iPod and report to police
    - There is no way to prevent someone from restoring the iPod (it erases it) using it.
    - Apple will do nothing
    Reporting a lost or stolen Apple product                              
    - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • I bought this iPhone 5 n its asking for a sim card to activate my phone is there is any other ways to do it?

    i bought this iPhone 5 n its asking for a sim card to activate my phone is there is any other ways to do it?

    No. You can't activate it without a SIM.

Maybe you are looking for