Jump to content

trq

Staff Alumni
  • Posts

    30,999
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by trq

  1. How would we know how to apply it to your situation if you dont? Describe the relationship you are looking to create.
  2. In your opinion of course. Frameworks are a very subjective matter. But codeignitor is probably the worst designed framework out there. Why teach yourself bad code?
  3. trq

    New to OOP

    None of your code is OOP. For now, ignore that you have even seen it mentioned, and carry on as you were.
  4. Have you got a specific issue?
  5. You should learn to problem solve instead of trying to build applications from videos / tutorials. Think of something you want to make and start making it.
  6. How can a framework give you a tuff time to install? It's a php library.
  7. Assuming $result is a mysqli result object; if (!$result->num_rows) { header('Location: http://somedomain.com'); }
  8. You want use to explain some third party API better than that third party API's documentation? Not happening. If you don't understand the documentation, pick another API.
  9. You should probably try to.
  10. or call_user_func_array('func', $args);
  11. This resonates with me more than anything else. http://blog.sanctum.geek.nz/series/unix-as-ide/
  12. My main motivation for working in vim is the fact that we do allot of remote stuff via ssh on client machines at work. So, now I can use the same editor under all circumstances. Even when I work from home, it's so much easier to just connect to the vps, ssh in and open vim in a terminal. I don;t have to worry about the overhead of a Desktop.
  13. Have you tried an IDE? I used to think a simple text editor was all I needed too, but then I tried an IDE. The only time I use a regular text editor now is just for real quick edits, or stuff that I don't want to make into a project in my IDE. IDE's tend to get in my way. All I use is vim with a few plugins: https://github.com/tpope/vim-pathogen https://github.com/tpope/vim-fugitive https://github.com/tpope/vim-unimpaired https://github.com/vim-scripts/taglist.vim https://github.com/vim-scripts/sessionman.vim https://github.com/vim-scripts/bufexplorer.zip https://github.com/tpope/vim-surround https://github.com/vim-scripts/FuzzyFinder
  14. I'm a massive vim fan so don't really have much of an opinion when it comes to IDE's.
  15. That's because MS sux balls.
  16. Hmmm, I smell spam.
  17. There is no definitive answer, just opinion. Often the one that is well suited to your style of development and specific project requirements will be the best one to use.
  18. I used to use dynamically loading js, but it ended up being allot more efficient to put all js into one file and the minify it. Its the actual http requests to multiple files that hurts more than size. Of course it would also depend on what sizes where talking about. Loading a 50k-80k file just to use one function etc etc.
  19. Have you checked out some of the editors mentioned in this thread?
  20. This board is here for questions directly relating to already existing Third Party code. It is NOT a code repository or the place to post requests looking for specific scripts. If you can't find the script you are looking for on Google, you either don't know how to use Google or the specific script does not exist. DO NOT request help with searching.
  21. I'm not sure how that would be achieved through php. The rule is that you use a before words that start with a consonant sound and an before words that start with a vowel sound.
  22. You'll need to be more descriptive. Your example makes little sense to me.
  23. Netbeans 6.8 does seem even better than 6.7. Many improvement + it does seem more responsive.
  24. Iv'e not noticed any performance lag with Netbeans excepting maybe when it initially scanning my projects. Even then, I think its only because the drives my projects are hosted on are remote (LAN).
  25. Iv'e been using vim for years though have been loving Netbeans since I programming work full time.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.