Slashdot Mirror


User: consumer

consumer's activity in the archive.

Stories
0
Comments
278
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 278

  1. Re:Only in America on Paying for Better Math and Science Teachers · · Score: 1

    How do you think you're going to get talented people to become teachers, if the pay is so much worse than their other options? All of the smartest teachers I know have either left or are thinking about leaving because the pay is so bad.

  2. public radio is not produced with taxpayer money on DRM Critique Airs On National Public Radio · · Score: 4, Informative
  3. Re:Not similar to my experience on PostgreSQL vs. MySQL comparison · · Score: 1

    The MySQL scaling problems you're describing are due to using MyISAM tables for an OLTP application. Don't do that. They're fine for read-mostly applications, but the locking is not efficient enough for more. Use InnoDB tables for OLTP apps. The InnoDB tables use an multi-version concurrency control approach just like Postgres does.

  4. Re:Why is asking for code samples a bad sign? on Where Should I Get My Job Interview Code Samples? · · Score: 1

    If you ask them to submit code samples, you'll get people who are either incredibly anal or look for shortcuts.

    Where are you getting this from? I always ask for code samples because then I have something technical to discuss with the person. It works very well. If they send in lousy code, that tells me they don't understand what good coding style is. I don't care much what the code does, and it doesn't need to be more than a couple pages out of a larger project. I just want to get them to talk about the decisions they made when writing this code. It's not even a problem when people bring in code that they just worked on after it was originally written by someone else, as long as they can talk intelligently about why the code is done the way it is and demonstrate some depth of knowledge about the language.

  5. hand off is hard on Who Owns Deployments - Dev or IT? · · Score: 1

    I've often seen people try to split it up this way: dev creates the software, sysadmins (or IT or operations or whatever your company calls it) owns it after deployment. It seems logical to have people who are responsible for overseeing the network and machines, and having them install and run all the software on those machines sounds reasonable too.

    In practice though, this has always led to a very adversarial relationship. The sysadmins probably don't know much about how the software works, so they end up having trouble with it and cursing the developers for making such impossible software. Very few dev shops have the resources to make software so polished that a person can run it without bothering to learn how it works. It costs tons of money to make software that easy to run.

    And maybe that's the crux of the problem: handing off a technology to a different group is hard. It's easier for a group to own a piece of software through its whole lifecycle than to try to throw it over a wall at some point.

    Lately, all of the interviews I read that talk about how things are run at the big Internet companies -- Google, Yahoo, Amazon -- talk about how they make the developers responsible for maintaining their software in production. The developers have a lot of personal investment in seeing their software work, so having them maintain it makes sense. The sysadmins take care of the network, the OS-level maintenance, and the hardware.

    The only company where I saw this tried was also the most successful at keeping a solid and well-maintained production setup. It still had some friction between groups (DBAs vs. programmers, etc.) but a lot less than in other places.

    If anyone has pointers to more reading about the production/maintenance practices of successful software companies, I'd certainly like to see them.

  6. that's not a CMS on Open Source CMS Solutions Based on Java? · · Score: 1

    The Java CMSes you named are fine. The problem is that you aren't looking for a CMS. A CMS is just a platform for publishing static articles. What you want is an interactive community site. Things like Roller are more along the lines of what you're asking for.

  7. Re:ACID on PostgreSQL Slammed by PHP Creator · · Score: 1

    Nope. InnoDB tables are faster than PostgreSQL for simple queries.

  8. ACID on PostgreSQL Slammed by PHP Creator · · Score: 1

    Sorry to break it to that PostgreSQL fan, but MySQL has had ACID transactions for years now, and it's still faster than PostgreSQL for average web app queries. Time to stop making excuses based on half-truths about ancient versions of MySQL and just acknowledge that MySQL is fast.

  9. I guess I must be one of the "few" on Mistrust of Today's Technology · · Score: 1

    I remember times when Amazon.com and Google.com were not fully available. And I certainly remember times when they weren't fully available *to me*, like last night when my terrible ISP had problems. Access to these services is not reliable.

  10. best quote from this fluff article on The Amazon Technology Platform · · Score: 1

    "Are self-describing XML documents flowing around inside your service-oriented architecture?"

  11. Re:Or this? on Top 5 Reasons People Dismiss PostgreSQL · · Score: 1

    With MySQL 5 you don't have to worry about that either.

  12. Re:Other things... on Top 5 Reasons People Dismiss PostgreSQL · · Score: 1

    InnoDB tables are very fast. It is accurate to describe MySQL as fast and ACID-compliant.

  13. Re:Reason number 6 on Top 5 Reasons People Dismiss PostgreSQL · · Score: 1

    I can't imagine why you would change the type of a table in a running application.

    There are some uses for multiple table types. One convenient use is for data warehousing. You can make the read-only data warehouse use MyISAM tables, which have low overhead, and keep your main database in ACID-compliant InnoDB tables.

  14. Re:Other things... on Top 5 Reasons People Dismiss PostgreSQL · · Score: 1

    So your complaint is that MySQL is too configurable? And you don't like the default configuration? Most Slashdot readers could name a few dozen pieces of software they feel that way about. The fact remains, MySQL can be very similar to PostgreSQL for those who want it to be.

  15. Re:Or this? on Top 5 Reasons People Dismiss PostgreSQL · · Score: 1

    It's not "musch slower." Try it.

  16. Re:Or this? on Top 5 Reasons People Dismiss PostgreSQL · · Score: 2, Informative

    The older table type in MySQL, MyISAM, doesn't handle concurrency well. The InnoDB table type uses the same locking approach as PostgreSQL and Oracle, and should stand up to multiple users much better.

  17. Re:Other things... on Top 5 Reasons People Dismiss PostgreSQL · · Score: 3, Informative

    Strict type checking and triggers are both in MySQL 5, which has been out for a while now. You need to update your complaints.

  18. Re:Web developers... on Top 5 Reasons People Dismiss PostgreSQL · · Score: 1

    And this is somehow Perl's fault? You could call it bash-syndrome or Ruby-syndrome just as easily.

  19. Re:Other things... on Top 5 Reasons People Dismiss PostgreSQL · · Score: 1

    In addition, MySQL has just about everything that a normal user could ask for from a database. The feature disparity is just not very large anymore.

  20. Re:Web developers... on Top 5 Reasons People Dismiss PostgreSQL · · Score: 1

    Since MySQL has a very complete set of features at this point, it almost certainly DOES do everything they need. If they aren't using advanced SQL features, you can't blame it on MySQL anymore.

  21. Rails?! on British Rail's Flying Saucer · · Score: 3, Funny

    Since I switched to Ruby on Rails, I can develop fusion powered spacecraft in half the time! With no code at all! And it all tests itself!

  22. Re:Rails rocks (but isn't a silver bullet) on Exploring Active Record · · Score: 1

    Java compiles to bytecode, but people still call it a compiled language. The only difference is that Perl doesn't keep the intermediary format around on disk afterward. I would agree though that the distinction between compiled and interpreted is less clear and less important than it was in the past. The main point is that these other languages compile to an intermediary format and Ruby doesn't, which contributes to it being slower than the rest.

  23. Re:Rails rocks (but isn't a silver bullet) on Exploring Active Record · · Score: 1

    Sure, I realize that it gets compiled to an intermediary format, not to machine code, but it still makes a huge difference. The way Ruby lags behind the others in performance is frequently discussed on blogs and mailing lists. Ruby does not currently compile to bytecode, although according to Wikipedia this is planned for an upcoming release. Wikipedia also says that Python is compiled to bytecode.

  24. Re:Rails rocks (but isn't a silver bullet) on Exploring Active Record · · Score: 3, Informative

    I don't know about Python, but Perl and more recent versions of PHP are not interpreted. They are compiled to opcodes and then the opcodes are executed. With a persistent environment like mod_perl, you are always running the compiled code after the inital load. Both of them have much better base language performance than Ruby does at this point. I expect that Ruby will eventually work this way too.

  25. Re:You think it's bad *now* on College Student Receives Email of the Lost · · Score: 1

    Verizon DOES charge for incoming text messages unless you pay the monthly fee for unlimited messages.