Suggestions for Good AJAX forum/newsgroup/mailing list?

I'm in need of a rather specific UI implementation and I've
found plenty of
AJAX libraries that ALMOST give me what I want out of the
box, but nothing
that exactly matches. I need to find out which of the
libraries is best
suited to modifications to do what I need and have no idea
where to start.
Can anyone suggest a relatively active AJAX discussion group?
I've found a
handful of forums, but none that are actually active.
-Darrel

"Darrel" <[email protected]> wrote in message
news:etjl7b$3qt$[email protected]..
> I'm in need of a rather specific UI implementation and
I've found plenty
> of AJAX libraries that ALMOST give me what I want out of
the box, but
> nothing that exactly matches. I need to find out which
of the libraries is
> best suited to modifications to do what I need and have
no idea where to
> start. Can anyone suggest a relatively active AJAX
discussion group? I've
> found a handful of forums, but none that are actually
active.
Good, generic, Ajax forums, are hard to find (I am still
looking for one
myself). Library specific forums are usually very good
instead, I know the
ones from YUI and jQuery are worth following. Of course, they
become more useful *after* you pick your library...
Massimo Foti, web-programmer for hire
Tools for ColdFusion and Dreamweaver developers:
http://www.massimocorner.com

Similar Messages

  • Need suggestions for good online Adobe classes in photoshop, ill. indesign etc.

    Hi I am a graphic designer and would like some suggestions for good online Adobe classes ... I found
    Adobe Master Series Online Training Library at the Adobe store and was wondering has anyone had good, bad ugly experience with this before I make the purchase. The suite offers training in Photoshop, Illustrator, InDesign, Dreamweaver, Flash, and various Macromedia titles so it covers it all for me in one go.

    A less expensive, non-subscription option would be http://www.vtc.com they offer many video cds for applications that have given many I know a leg up on learning an application.

  • Any suggestions for good free web hosting service for my IWeb page, other than MObileMe

    Any suggestions for good free web hosting service for my IWeb page, other than MobileMe?

    MobileMe is not free.
    Search : free webhosting
    You can narrow the results by being more specific by adding town, province or country.
    You can also start by checking out your own ISP.
    Or be free as in here : www.000webhost.com
    Here's mine : http://dailynews.webege.com/

  • Suggestions for good framework

    Hi all,
    We are looking for framework for a dot com ecoomerce site (using EJBs, JSP,
    Servlet, HTML, XML..). We are using Weblogic 6.
    Does anybody have any suggestions for good frameworks. Framework should be
    simple to handle & learning curve should be minimum.
    Have a great day.
    thanks in advance.
    -ramu

    Ramu,
    You could look at WebGain tools - http://www.webgain.com. They are the only who
    vendors who currently support development on WLS 6.0.
    Nirav.
    Ramu wrote:
    Hi all,
    We are looking for framework for a dot com ecoomerce site (using EJBs, JSP,
    Servlet, HTML, XML..). We are using Weblogic 6.
    Does anybody have any suggestions for good frameworks. Framework should be
    simple to handle & learning curve should be minimum.
    Have a great day.
    thanks in advance.
    -ramu--
    Nirav Chanchani
    BEA Systems, Inc.

  • Is the NASUG newsgroup/mailing-list still around? Please send me the link to it.

     

    The NASUG mailing-list died a while ago. Most of the traffic there seemed to move to the iPlanet newsgroups. (Which has now moved here to softwareforum.)

  • Suggestions for good expression tutorial/guide/reference?

    I just spent 3 hours writing a simple XPath expression (at least I think it's an XPath expression). I kept making simple mistakes due to my lack of understanding of some of the internal workings of expressions in Oracle's BPEL tools. Little things, like the difference between bpws:getVariableData('corePerson','/ns6:Person/ns6:globalId') and $corePerson/ns6:globalId, kept tripping me up. While these are both valid expressions that compile and deploy perfectly fine, they do very different things... and I needed to use one in one place in my BPEL process and the other in another place in the same process.
    Does anyone have any recommendations for good tutorial and reference material for working with XPath expressions? I'd love something that describes, in depth, all of the standard (and Oracle-specific) XPath functions... what they do and when/how to use them. Also, it would be great to get a better understanding of different types of expressions and where I might want to use each one (such as the example given above).
    Thanks!
    -Nathan

    Hi, I read a lot books, blogs, post at Adobe Dev website.
    But I found one fun way to begin: Lynda.com http://tinyurl.com/3yl6xqt
    Try it are some free videos.
    Good luck

  • Suggestions for good presentation design?

    I am currently using the default font size for title and subtext that comes with the dark blue gradient template.
    1.) Are there any general guideline for good presentation design with regards to having titles take two lines of text?
    2.) Are there any general guidelines for what the title font size should be? I am wondering if I should make the title font size smaller to fit more characters.
    Thanks!!!

    I have been an prenter/instructor for many years, and +*Presentation Zen*+ by Garr Reynolds is absolutely the best reference on this topic.
    Beware of using too much text on your slides. Less is, most certainly, more when it comes to engaging your audience and keeping their attention. Be liberal with the use of large graphics and keep it fun for everyone involved.

  • Looking for good algorithm to calculate a list of figures

    Hello,
    Given a list of figures:
    1899.09
    345.55
    300.00
    130.05
    90023.00
    45.90
    120.50
    8831781.56
    505.00
    45.55
    Then the program need to find all the possible addition of figures that will able to produce a answer, for example, 550.55
    Then the possible additions are:
    300.00 + 120.50 + 130.05 = 550.55
    505.00 + 45.55 = 550.55
    any good algorithm or sample code?
    Thanks for any help.

    A general knapsack problem solver is overkill here if one just wants to find a combination that fits 'perfectly'. If the list of numbers is small (< 100), a simple exhaustive search will do fine (read: it's fast). Have a look at the following sample class that solves this particular problem. Note that the set of numbers is a set of integer numbers, because floating point numbers don't add up well; in particular large and small numbers added will result in very inaccurate sums.
    kind regards,
    public class Comb {
         private int   u; // index of used numbers sofar
         private int   s; // the sum to be found
         private int[] c; // the candidate numbers
            // given a set of numbers and a sum, instantiate a solver
         public Comb(int[] c, int s) {
              this.c= c;
              this.s= s;
              this.u= c.length;
            // yes, swap two elements in array c
         private void swap(int i, int j) {
              int t= c;
              c[i] = c[j];
              c[j] = t;
    // use the number at index i as a try
         private void use(int i) {
              swap(i, --u);
    // unuse the number at index i
         private void unuse(int i) {
              swap(i, u++);
    // proccess (e.g. print) a current solution
    // note that this method could throw an exception if
    // just one solution is needed.
         private void solution() {
              for (int i= u; i < c.length; ++i) {
                   System.out.print(c[i]);
                   if (i < c.length-1)
                        System.out.print("+");
              System.out.println("="+s);
    // find all solutions to this problem
         public void find(int t) {
              if (t == 0) // ready?
                   solution();
              else if (t > 0) // still more to do?
                   for (int i= 0; i < u; ++i) {
                        use(i);
                        find(t-c);
                        unuse(i);
    // solve the example problem ... == 11
         public static void main(String[] args) {
              int c[]= { 5, 3, 6, 8 };
              int s = 11;
              new Comb(c, s).find(s);

  • Need your suggestions for developing a Forum Site using Adobe Flex

    Hi ,
    I want to develop a small Forum Site where people can post questions and reply to questions .
    I want to develop the whole thing using Adobe Flex , Is there any plugin avialable for this .
    Means i mean to ask , if i go for normal J2EE there is a JForum avialable as far as i know .
    Please share your ideas .

    I meant "Don't use flex" unless you have some superb new design for a forum. I suspect that if you already had such a design, you wouldn't need to ask the question. Flex for Flex sake isn't good.
    There are already great html forum solutions out there.
    Basically, there's no point in duplicating in Flex what is already done in HTML, unless the Flex version offers a significant improvement to the user experience in some way.
    I am not aware of any Flex forum implementations and there is probably a good reason for that.
    Maybe someone else will know of one.

  • Suggestion for improvements to forum search

    Hi,
    It would be useful if I could save search criteria under my profile as "Saved searches" - e.g. a search for "Universal Worklist or UWL in the last 7 days".
    It would also be great if I could save a set of search terms and get an RSS feed of the results.
    That would enable me to monitor forums for posts in my specific area of expertise.
    Cheers,
    Darren

    Just for the record, I second this suggestion. I'd rather have a 'search results' than the current 'Forum watch' notifications.  A new problem that has arisen with the plethora of new forums is that people get confused and tend to post stuff all over the place. I simply do not have the time to monitor more than one forum.
    e.g. there's a forum for WebAS Preview but half the people having problems with it are posting in "Trials, Previews and Code Samples". Are they wrong? No, but I still have two forums to look at if I want to participate. 
    My own area of expertise (workflow) tends to be scattered around ABAP, BPX, EP (and others) as well as "BPM and Workflow".
    Cheers,
    Mike

  • Need Suggestions For GOOD Free Ringtone App

    Before the software update, I used Mabilo without any problems. Now, it doesn't work. So I'm searching for an app that is just as good, if not better than Mabilo. Any suggestions??

    As previous post mentioned ZEDGE is a good free app for tones in addition to wallpapers. However the best solution might just be to put your own music on the phone through Windows Media Player (or whatever you use) and use RINGDROID to make your own
    Good Luck

  • Suggestion for Alt Discussion Forums?

    Since Apple's Discussion area is solely provided for support purposes ("help, this isn't working", "how do you do xyz", etc) I was hoping some of the folks here could suggest other general discussion boards that they like. For example, I really want to talk with other users about many of the cool iPhone Apps (which ones they prefer, tips on how to use them better, ... that sort of thing). But I'd also like a place to talk about all things Apple/Mac ("I heard this", "do you think that's going to be a feature of the next version", "wouldn't it be cool if ...?"). Thanks in advance.

    We agree: there is great potential synergy between the forums and wiki experiences.
    This is a direction in which we would like to go, but the destination is not on the horizon yet.

  • Suggestions for good sketch/illustrator app

    I'm currently looking for a lightweight app (don't mind paying for it) that is good at creating simple illustrations. The illustrations are simple shapes with dimensions, line diagrams, and basic flow charts. Before I switched to my MBP, I used AutoCAD to create these items and export them to a JPG. That's a little overkill for some of the things I want to do at home. I've tried using AutoCAD with Parallels, but the images end up being too faded out due to the size reduction to fit onto a page. Any suggestions or leads will be appreciated. Thanks.

    I would recommend OmniGraffle in the strongest possible terms. Five stars and then some.
    http://www.omnigroup.com/applications/omnigraffle/
    It's utility is limited to exactly the kind of stuff you mentioned in your post, though, so it's by no means a general Adobe Illustrator replacement -- more of a Microsoft Visio replacement. If you instead want fewer diagramming features and more general illustration features (with a much more basic interface), you might try EazyDraw:
    http://www.eazydraw.com/

  • Need Suggestions for Good Virtual Back Drops

    Hello--
    We are looking for a good, hi-res backdrop/set for chroma key replacement.
    We are looking for a business/office look.
    Anyone know of a good company?
    Thanks,
    sd

    Gee, I wish you had said that this is for PC
    only--considering this is a Final Cut forum on an
    Apple website.
    Man, I'm sorry!
    I came across them a while back and always had it bookmarked. I never really took the time to get into what they actually did. I thought they were static shots.
    I guess the PC software lets you pan around etc including shadows etc.
    Hmmm
    Sorry.
    CaptM
    ps - I do hope you were kidding with the snide (ironic) comments... I'll send some F-16s your way if you aren't careful... I've got a finger on that button. Oh -- I'll be in Orange County in a few weeks... mind keeping those fires down?? Yikes.

  • Need Suggestion For Good Case

    I have posted before looking for some good suggestions on a good silicone-type skin and belt clip. Eventually I'm going to buy a JBL On-Stage III so I'l want something that can dock with the skin. I would also like a beltclip or holster but I don't think I'll get both in one. I'm probably going to have to find a good silicone skin and put velcro tape on it and a generic clip. I have had my eye on the iSkin Duo case but I cannot find a retailer in the Kansas City area that has them for the Touch. I hate to order it and not like it or it won"t dock with the JBL OS III. If anyone is familiar with this case or any other that will cover what I'm looking for I'd appreciate it. Thanks.
    Jon

    The company Power Support makes very good cases for iPods. Their products are durable and nicely designed. The material that they use is top quality because you can tell by comparing some of the cheap ones. One trade off is that its very expensive. Most of those cases are around $30-35. Plus taxes and S&H it will go to about $40-45. Of course you can buy them at a brick-and-mortar store but the online store carries all of the products. Take a look...
    http://www.powersupportusa.com/

Maybe you are looking for