Search results

  1. S

    What is Java Good For?

    Article on it: http://perl.oreilly.com/pub/a/oreilly/perl/news/amazon_0100.html Something else: http://www.masonhq.com/?AmazonDotCom and imdb(a part of amazon) uses it too of course http://imdb.com/help/search?domain=helpdesk_faq&index=1&file=techinfo
  2. S

    What is Java Good For?

    amazon runs on perl
  3. S

    Looking for Constructive Criticism on work in progress!

    Defininatly get rid of that tiled background, maybe add a border to the car picture to. I'd say get rid of the flash menu, but I doubt you'd go for that.
  4. S

    Logic question, += operator

    nay. not perl perl doesn't have an echo, and perl doesnt use // for comments
  5. S

    Location Databases

    If you do this, share please. Also.. Don't do it to fast, they probably wouldn't like that.. there is alot of zip codes after all.
  6. S

    Apache Server vs. IIS

    Not if he had a old computer laying around and used free software + has a capable line.
  7. S

    Apache Server vs. IIS

    Yeah, Apache's logs IMO arn't hard to setup/work with at all anyway.
  8. S

    Apache Server vs. IIS

    You don't NEED one, I don't find it hard to read Apache log files anyway. I wrote my own utilities to do things though. I've heard mono works great with apache.
  9. S

    Apache Server vs. IIS

    Nah, but I'll think about it. BTW, it's not PERL, please don't capitalize it like that.
  10. S

    Vbulletin prob

    Try http://members.vbulletin.com/. The download should have everything needed.
  11. S

    Apache Server vs. IIS

    I use perl for CGI alot, and also for other things offline too. I'm reading about mod_perl now, it's a great thing. I'm actually gonna re-write some of my stuff to use mod_perl too. Perl is faster and more powerful then PHP. I'm pretty sure PHP doesn't fork a new process.. but perl is still...
  12. S

    Apache Server vs. IIS

    I suggest perl over PHP, it might be slightly harder, but its more powerful, there is ALOT more code and modules out there for perl too. perl is also platform independent, it'll run it pretty much any system out there. Virtual Hosts.
  13. S

    Apache Server vs. IIS

    perl IS NOT php. Please never make this mistake again, :] perl is faster, and more powerful, and better... :] In response to other things.. I have no problem with apache's log files, i manage them fine. I perfer apache's config files too.... Apache can handle large sites fine, its easy...
  14. S

    Advanced Menu - CSS? DHTML? Java? c#?

    As the guy above me said, Java & Flash should NOT be used... even if it is a company's intranet site and all viewers have them. ASP.NET and C# don't do client side things, they can't do the menus.
  15. S

    Advanced Menu - CSS? DHTML? Java? c#?

    I agree with this... NOTHING should EVER rely on javascript to work.
  16. S

    Advanced Menu - CSS? DHTML? Java? c#?

    Your using JavaScript, not Java, they are different. And that other site is using JavaScript also, PHP can't do client-side things like that.
  17. S

    Easiest Programming Language to Learn?

    I know alot of people who would disagree with you. Most programmers I know say it's important to learn more then one language. It's also important to understand the basics of programming, which will help you learn more languages. Almost everyone I know suggests c > c++. Learning another...
  18. S

    Easiest Programming Language to Learn?

    perl was the first thing i learned no one i know has had a problem learning it it's a great language i suggest it.
  19. S

    how to take thousands of visits?

    IMO, Users/yr isn't what we need to know to help, how many users do you expect to use it at once?
  20. S

    Perl: use headaches

    Try changing use to require in your eval.
  21. S

    Perl Regular Expressions

    If I were doing this, I'd just go ahead and replace that with two regex's... /cat=(\d+)/ /doc=(\d+)/ and then do what you want with them... I'd think this would be faster then a long complicated regex too. And im pretty sure itd work on any situation.
  22. S

    what to do with this hosting company...

    if they charge you, chargeback or w/e its called makes their credit look bad.
  23. S

    search engines?

    http://www.google.com/technology/ for google anyway. not sure on other search engines.
  24. S

    Perl help

    try print $entry->Name(); or print $entry->Data(); or w/e the subroutines are since $entry is a object.
  25. S

    web address question...

    the www. is really just a subdomain, and the difference is none, unless the webserver doesnt accept it with, or without.
  26. S

    Perl & multi-dimensional hashes

    another solution would be to change $configuration = { }; foreach $adapter (@adapters) { %temphash = getconfig("$adapter"); $configuration->{"$adapter"} = \%temphash; } to $configuration = { }; foreach $adapter (@adapters) { my %temphash = getconfig("$adapter")...
  27. S

    Perl help

    $self is a reference, you need -> $self->{Entries} = \@entries; or isntead of a refrence to @entries $self->{Entries} = []; @{$self->{Entries}} = @entries; for returning... return $self->{Entries}; for a refrence..^ or return @{$self->{Entries}}; access it.. $entry->Name(); i...
  28. S

    How is my www site? :-)

    I also could tell it was a frontpage site without even viewing source. And i think its a bad thing. you should really think about ditching frontpage and learning something... its not hard stuff.
  29. S

    Question about database creation..

    Using MySQL and perl itd be pretty easy to create a application(GUI or web) to do all this....really easy.
  30. S

    which forum to use?

    From my experiences, vbulletin can handle larger loads better, but phpbb is free, and i always like phpbb's template system more. Didn't modify vB much, so i cant comment on that. phpbb3 should be out within a month or two.. i imagine thatll be better then vB, but i truly don't know. youll have...
  31. S

    Perl/CGI Hacking

    Yes, use code tags, please! And yes, you *should* use warnings and strict. you have some useless things in there that i seen. and i dont remember seeing the CGI module used anywhere, even though you have it being used. maybe i missed something. but you definatly need to put that into code...
  32. S

    & programming...

    Have you ever programmed in any other languages?
  33. S

    & programming...

    Well, what i meant was i'd use it for anything i'd actually do.. i dont do hardware programming. i do cgi, parsing, i wrote a webserver in it before. whatever.
  34. S

    & programming...

    Sorry for bringing up an old topic.. but eh i had to respond. I have tried python, i'd rather kill myself slowly then use it. I'd choose perl pretty much over anything. and.. ill use it for anything writing a forum in it now when that gets to a decent working version, i might be working on...
  35. S

    & programming...

    That's azactly why I don't browse here much anymore, not enough questions I can help with. I never see perl questions anymore. CSS isn't programming either. and php.. i just hate php.. (and yes i have used it.)
  36. S

    Php Error, help!

    Instead of posting just that character for us, try posting the lines around it, could be more helpful.
  37. S

    The Only Gmail Thread and It All Goes Here!!

    http://gmail.google.com/gmail/a-4559e1d2be-6515cbd656-0ad1028ef0 http://gmail.google.com/gmail/a-4559e1d2be-f9a1721bb5-7f973dd19c http://gmail.google.com/gmail/a-4559e1d2be-81f5d12767-cdb9af6c19 http://gmail.google.com/gmail/a-4559e1d2be-bd4e42f345-eda9514141...
  38. S

    Message Board Ideas?

    i also suggest phpbb, shoulda said that in my last post.. im actually about to dive into coding my own forum... i actually started earlier today. been planning on it, lets hope i have time to finish it
Back
Top