
Daniel0
Staff Alumni-
Posts
11,885 -
Joined
-
Last visited
Everything posted by Daniel0
-
http://w3fools.com/
-
Right, so I installed Atheme instead of Anope. The database seemed to be corrupted and there was issues with Anope anyways. Unfortunately, people will have to reregister their nicks.
-
"Best" by what metrics?
-
Virtually any kind of hosting should be able to do that. There are 86,400 seconds on a day and you expect 15,000 page views each day. That's only 5.76 seconds per view.
-
I'm a TA on a first year CS course at my university. I grade programming assignments each week. Let's just say that not all of the code beautiful
-
What is your students' background?
-
The problem with doing that, is that it is statistically inaccurate for small data sets. Which is more likely to be the most popular item? Item A, which has a score of 4.8 with 100 votes, or item B with a score of 5.0, but only 2 votes? So the question you want to ask is, if item B had as many votes as item A, how would their ratings compare? Simply using the arithmetic mean is not sufficient for determining relative popularity amongst multiple items. When using a rating scale like this, you can use the Bayesian average instead.
-
Seems like it's been a while since that page was updated. LinuxForum did once have that many members and Eric recently started the site again. It's a long time ago since MySQLFreaks and ApacheFreaks was shut down. PHPFreaks now also has over 100k members instead of 38k.
-
What is a social website? You interact with other people on this website and that is a social activity, but you don't interact with those people the same way you do on websites like Facebook, which are typically referred to as "social networking" websites. You use both the term "social website" and "social networking website". Which do you mean?
-
Sorry, yes. The callback must be an array. See: http://php.net/callback
-
You can do it like this: class ClassName { function display ($a, $b) { return call_user_func($a, $b); } } or class ClassName { function display ($a, $b) { return $a::$b(); } }
-
Sticky topics in PHP Help are obviously not supposed to be asking for help. That would be pointless. Seeing as no staff member has got around to stickying this yet, I'll just do it.
-
Deprecating the working volenteered staff structure further. Guru and PFR have never been considered staff. Read the stickies... For the record, I still have the same permissions on the forums that I had before. You can consider that a warning. Stop trolling the forums.
-
Has anyone ever read those? Just because you have a habit of not reading rules, stickies and other important information doesn't mean nobody else do...
-
You can integrate that with PHP Unix man pages as well to get the full documentation. pear channel-discover doc.php.net pear install doc.php.net/pman Now you should be able to access PHP documentation like pman strpos. Then it's just a matter of setting keywordprg to pman for PHP files in vim.
-
I don't think you got my point. Take phpfreaks.com for instance. With all the custom installations and configurations, there is no way shared hosting would work for us even if they provided us with enough resources (disk space, bandwidth, memory, CPU time, etc.). There is just not enough flexibility for our needs. This is completely regardless of resource usage and others might very well have the need for this kind of flexibility without having high resource needs. Setting up an SVN repo was just an example.
-
Man... I've always wanted to know what the last digit of pi is. Can you post it here? Besides, I wouldn't call calculating a lot of pi's digits or generating reverse lookup and rainbow tables for "normal usage". What makes you say that? What if you want to run custom services like your own SVN repository? What if you just don't want other people on your system for security/stability reasons? What if you just want to manage your own software or don't want to have to go through the hoops of various control panels to do something you can do efficiently from the shell? The minimal required RAM for a desktopless Debian install is 64 MB RAM. The recommended minimum is 256 MB. If you don't install some bloated cPanel or whatever (or even worse, a desktop environment), you'll do just fine starting out with 256 MB. To be honest, I don't see the point in paying for more when you can upgrade at any time you want.
-
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.
-
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?
-
The Java Runtime VM doesn't compile the code when you execute .class files. At that point it has already been compiled.
-
Maybe your computer is just slow?
-
Added.
-
Have a look at this: http://vim.wikia.com/
-
There is a GUI version for it. It's called GVim.
-
There is also a vim plugin for Eclipse.