Slashdot Mirror


User: istvandragosani

istvandragosani's activity in the archive.

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

Comments · 31

  1. Real Programmers... on VIM 6.0 is Out · · Score: 5, Funny

    ...use cat and od

  2. Man... on Sun Announces Passport Competitor · · Score: 1

    ...the Internet is sucking more and more everyday. I really wish these big corporations would go and create their big corporate private network (as was proposed in earlier articles, because the Internet doesn't 'conform to economic models properly'). Then the Internet can go back to what it was intended to be used for -- sharing of information and open communication, with a nice simple text interface... :-)

  3. Re:Most people agreed when... on Poll Says Most Americans Favor Crypto Backdoors · · Score: 1

    Where does it say MSNBC did the poll? It was a Princeton Group that did it.

  4. Re:Non J2EE App Servers legal? on Lutris Closes Enhydra Source · · Score: 1

    I don't think Tomcat counts, because it is just a servlet engine, and does not rely on any bundled Sun products to run, other than the runtime environment.

  5. Re:MySQL != DB on MYSQL & Row Level Locking · · Score: 1

    Careful with your terminology. PostgreSQL is no more public domain than Linux or Apache. Public domain means the product in question does not bear a copyright, like a piece of music written 200 years ago. PostgreSQL most definitely is copyrighted, and is distributed under the Berkeley Open Source License. Very different than 'public domain'.

  6. Why not? on Why Not MySQL? · · Score: 1

    MySQL is good as a read-only database for static archives, but I would choose PostgreSQL anyday over MySQL for more dynamic data, just for the fact I can use views and sub-selects. Yes, PostgreSQL doesn't have foreign keys yet, but because PostgreSQL supports triggers, you can implement foreign keys (in fact, there is an add-on module that accomplishes it in just this manner). PostgreSQL also has a usable full-text search module that is also accomplished through the use of triggers.