Search:

Type: Posts; User: skeeterbug; Keyword(s):

Page 1 of 10 1 2 3 4

Search: Search took 0.07 seconds.

  1. Replies
    4
    Views
    656

    Poll: Re: jQuery, MooTools or YahooUI?

    I like jQuery as well.
  2. Replies
    2
    Views
    279

    Re: SQL injection security

    Yes, the attacker could modify the value of the form and inject his own SQL into it. Use stored procs or parametrize your SQL statements.
  3. Replies
    6
    Views
    351

    Re: Stuck with Java, please help! [-o

    -
  4. Replies
    21
    Views
    1,035

    Re: Python on ide on ubuntu

    Eclipse + PyDev plugin is a nice setup.

    http://pydev.sourceforge.net/features.html
  5. Replies
    10
    Views
    1,098

    Re: C# guys, show us your sugar!

    Someone already brought up delegates. But here is another example.



    private delegate void Test(string output);

    private void UseDelegate()
    {
    Test t = new Test(TheTest);
    t("Testing...
  6. Replies
    13
    Views
    694

    Re: Web server performance

    That quote was talking about a limitation in apache's proxy engine and has nothing to do with mongrel. If they are saying you can increase it to 1000 and run two mongrels, that means the mongrel...
  7. Replies
    13
    Views
    694

    Re: Web server performance

    Thanks.

    Also to the OP. The basic way to setup rails is to run the app via mongrel.

    http://mongrel.rubyforge.org/

    Their site will walk you through setting up a reverse proxy in apache....
  8. Replies
    13
    Views
    694

    Re: Web server performance

    OP stated he was going to run apache and RoR. Though he could run anything in front of mongrel.

    I wrote my employers site in RoR - www.mission3
    We are a .NET shop but we are open to other...
  9. Replies
    13
    Views
    694

    Re: Web server performance

    I wouldn't rule out FreeBSD either.
  10. Replies
    10
    Views
    8,628

    Re: perl, mod_perl problems

    Here is my mason configuration in my vhost.


    PerlModule HTML::Mason::ApacheHandler

    <LocationMatch "(\.html|\.txt|\.pl)$">
    SetHandler perl-script
    PerlHandler...
  11. Replies
    10
    Views
    8,628

    Re: perl, mod_perl problems

    I know apache on windows has a command line program that checks the configuration and reports back any problems.

    Have you tried Alias instead of ScriptAlias?

    Alias /perl /var/www/perl/
    ...
  12. Replies
    137
    Views
    14,473

    Re: J2EE vs .Net

    Yes, but rails didn't invent MVC. :P
  13. Replies
    10
    Views
    8,628

    Re: perl, mod_perl problems

    I usually deploy using a vhost.

    Shouldn't

    ScriptAlias /perl var/www/perl/

    be

    ScriptAlias /perl /var/www/perl/
  14. Replies
    10
    Views
    8,628

    Re: perl, mod_perl problems

    Your configuration looks fine. I do the same thing except I use vhost. Is the perl location accessible? Try commenting out the files node and drop a html file in there and try to access it.
  15. Replies
    3
    Views
    279

    Re: Coding submission/managment tools

    Check out Trac. http://trac.edgewall.org/
  16. Replies
    137
    Views
    14,473

    Re: J2EE vs .Net

    Web Frameworks
    http://csharp-source.net/open-source/web-frameworks

    ORM libraries
    http://csharp-source.net/open-source/persistence

    Microsoft released their own MVC pattern framework on top of...
  17. Replies
    137
    Views
    14,473

    Re: J2EE vs .Net

    A lot of you are forgetting there are *other* frameworks out there for .NET. However, we aren't forced to make the choice from the beginning if we don't want to.
  18. Replies
    137
    Views
    14,473

    Re: J2EE vs .Net

    Clearly it's because their customers have been forced to using their products and there are no other competing frameworks out there for anyone to consider.
  19. Replies
    137
    Views
    14,473

    Re: J2EE vs .Net

    What?
  20. Replies
    137
    Views
    14,473

    Re: J2EE vs .Net

    For example, with a feature rich IDE you can right click a function call, and jump to the definition or find all usages of it. This alone is a huge time saver in large projects. Also the IDE is...
  21. Replies
    137
    Views
    14,473

    Re: J2EE vs .Net

    This is 100 percent false. I have used Eclipse(For C, Python, Perl, and Ruby) and VS (version 6, 2003, 2005, and 2008). You obviously haven't used an IDE outside of VS, so don't make ignorant remarks...
  22. Replies
    137
    Views
    14,473

    Re: J2EE vs .Net

    cake > pie

    If you like pie more, you are WRONG.
  23. Replies
    4
    Views
    1,869

    Re: Python - Current Directory

    sys.path[0] will give you the current directory.

    Example:
    log = os.path.join(sys.path[0], "dev.log")
  24. Replies
    137
    Views
    14,473

    Re: J2EE vs .Net

    I believe you ;)

    You don't think EJB's are hard, and I don't think remoting is hard! EJB has come a long way since I last looked at it, that is for sure.
  25. Replies
    137
    Views
    14,473

    Re: J2EE vs .Net

    How exactly is remoting a pain?



    public class UserManager : MarshalByRefObject

    // UserManager code


    Serve it up in IIS with only a web.config addition:
Results 1 to 25 of 250
Page 1 of 10 1 2 3 4