Jump to content

Daniel0

Staff Alumni
  • Posts

    11,885
  • Joined

  • Last visited

Everything posted by Daniel0

  1. You must be every salesman's dream. Easy to oversell. I bet you would do just fine with 256 MB. The benefit of a VPS is that you can change how much memory you're allowed to allocate while it's running, so it's just a matter of contacting the sales department asking for an upgrade. Why would you pay for something you don't need? Especially seeing as you've got a £20/mo max. Reaching that will be much easier if you scale down your requirements to something realistic. There is no way you'll need 1 GB (or even 2 GB) memory if you don't even have any traffic yet. Also, "unmetered bandwidth"? That's not going to happen. At least not within your price range.
  2. Are you sure you need 1 GB memory? This server uses about 1 GB of memory right now. It has a semi-large database, an active forum, an IRC server and corresponding IRC services as well as a daemon for a live chat client. What kind of traffic do you have?
  3. The Java Runtime VM doesn't compile the code when you execute .class files. At that point it has already been compiled.
  4. Maybe your computer is just slow?
  5. Have a look at this: http://vim.wikia.com/
  6. There is a GUI version for it. It's called GVim.
  7. There is also a vim plugin for Eclipse.
  8. Mine would be Zend Studio, NetBeans and vim (in no particular order).
  9. This is a continuation of this topic: http://www.phpfreaks.com/forums/index.php/topic,54859.0.html
  10. If you want advanced stuff, you have to move away from PHP book and buy books that deal with general programming stuff. Programming is not just "programming" though. There are many different things you might want to focus on. You could read about algorithms and make your stuff run fast. You could read about things like semantics and lambda calculus to get a better idea of what exactly a programming language is. Maybe things like computability would be interesting, i.e. what is it possible to compute, and can it be done within reasonable time (has a lot to do with algorithms as well). Maybe you would find concurrency and making things run in parallel interesting. Or you might be interested in how to make well designed applications, or how to manage programming projects. There are so many things to programming that it's difficult suggesting an "advanced" book. I might suggest Introduction to Algorithms, but if algorithms aren't really your thing, you might find The Pragmatic Programmer more interesting. Both books can be said to be related to programming, but they are very different books.
  11. We would encourage everybody to introduce themselves here so we might get to know you and "old" members are very welcome to introduce themselves as well.
  12. I've got a VPS. A dedicated server would be overkill for my needs.
  13. That's quite a surprise to me. As I said, it is something I would expect from any web host. Then again, I've never purchased shared hosting.
  14. I would expect all webhosts to have that.
  15. That doesn't necessarily mean you cannot write a TDD primer.
  16. What do you mean with "doing .htaccess on a folder"? .htaccess files just contain Apache configuration directives. Not only does it have nothing to do with PHP whatsoever, but it can all be looked up in the Apache documentation.
  17. Here is yet another alternative: http://devzone.zend.com/article/4571-Fetching-multiple-random-rows-from-a-database
  18. A sub query returns a result, like all queries do, and you can use that result as a variable in your query. That's it, essentially.
  19. http://web.archive.org/web/20080209154336/http://www.phpit.net/article/simple-mvc-php5/
  20. A login script is essentially so simple that it's not even worth dedicating a tutorial for that. Stuff involved is essentially form processing, database access and sessions/cookies. We have a tutorial for sessions and cookies and we have one for database access and another one focusing on joins and unions. Then you have form processing, but that's fairly straightforward. You simply read from the $_GET or $_POST superglobal. You might also be interested in this blog post that talks about breaking a script/application down into logical elements the same way I just did.
  21. You mean like this? http://www.phpfreaks.com/tutorial/debugging-a-beginners-guide
  22. Please do not post links to download copyrighted material that you do not have the right to redistribute yourself.
  23. I'll sticky this for further reference and in case other people might know books that people might find useful.
  24. I can't remember when I've last used FTP. I always use SSH, SCP and SVN.
×
×
  • 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.