Slashdot Mirror


User: swimmar132

swimmar132's activity in the archive.

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

Comments · 377

  1. Re:Best distro for file server? on Why Slackware Still Matters · · Score: 1

    And not linux software raid?

    Has anyone heard anything bad or good about Solaris's ZFS?

  2. Re:Best distro for file server? on Why Slackware Still Matters · · Score: 1

    I don't know why I would need a 64-bit CPU, let alone two of them for a simple file and/or X server.

    I'm thinking that stability and quality are much more important than speed here.

    But thanks for the information.

  3. Best distro for file server? on Why Slackware Still Matters · · Score: 1

    I'm thinking of building a file server that will be storing a bunch of media files. So, probably will use RAID 5 or something. Probably in the 1-3 terabyte range to start.

    What OS should I use for that? If Linux, would Slackware be a good choice? I'm hearing good things about Solaris and ZFS, so I'm also considering using that.

    Also, I might decide to put a couple thin terminals around the house. I'm wondering if the file server should also be running the X sessions, or if I should get another heftier box for that.

  4. Re:Project Automation on What Workplace Coding Practices Do You Use? · · Score: 1

    Along those lines, get Ship It, another book in the same Pragmatic Programmer series.

    Honest. Get it.

  5. Re:Gnome is an error. on Novell to Standardize on GNOME · · Score: 1

    In later versions of Gnome, nautilus doesn't have spatial browsing on by default.

    Also, if you start the gconf-editor, there should be an option in one of the nautilus configs to disable spatial browsing.

  6. Re:From someone who uses both on Novell to Standardize on GNOME · · Score: 1

    Um, Gnome has font management. Not sure what you mean by 'clipboard usage'.

  7. Re:Why they don't care on OpenOffice Bloated? · · Score: 1

    I would think that large corporations and government agencies generally care about the legality of their software. So, you might see most of the initial movement towards OO there.

  8. Re:Death to Code Generation on Does Visual Studio Rot the Brain? · · Score: 1

    Ruby on Rails is not "all about generated code". Not in the least.

    If you have only followed a tutorial where they had you generate some starter code, then yeah, I can maybe see how you would think that.

    You don't have to use scaffolds though -- they're only there if you want them. Sometimes I use them and sometimes I don't.

  9. Re:vaseline-free please? on A Closer Look at SUSE 10 · · Score: 1

    AFAIK, there's an option to turn off the AA for fonts in the gnome control center window for fonts.

  10. Re:Should all government software be open source? on Florida DUI Law and Open Source · · Score: 1

    What I said has nothing to do with the DUI case. Why do you think that keeping military technology closed has any relevance to whether or not a company can keep "trade secrets" out of court?

  11. Re:Should all government software be open source? on Florida DUI Law and Open Source · · Score: 1

    Over who? Everyone else. China, Russia, Iran, North Korea, etc.

    I don't see a reason why China should have access to all the internal military projects going on at Lockheed, Boeing, etc. Let them build their own technology - they're quite capable.

    There's zero reason to have military software and technology publically available.

  12. Re:Should all government software be open source? on Florida DUI Law and Open Source · · Score: 1

    You're kidding right?

    Come on, think. Why wouldn't the DoD want to release the software that controlled our nukes, subs, satellites, NORAD, jets, simulations, etc.? ..

    MAYBE SO THAT THE UNITED STATES RETAINS ITS MILITARY TECHNOLOGICAL SUPERORITY

    God, honestly.

  13. Re:freedom? on Senator Wants to Keep U.N. Away From the Internet · · Score: 2, Insightful

    GTA:SA wasn't censored in the least.

    They included AO material in a game that wasn't AO. And got busted.

  14. Re:Rails != Ajax on What is Ruby on Rails? · · Score: 1

    It only generates enough javascript to work with the prototype javascript library. Most of the javascript that you can easily use with Rails is in that library (i.e. it's not automatically generated). And if you don't want to use Rails helpers, you don't have to.

  15. Re:real world use? on What is Ruby on Rails? · · Score: 1

    Just answering the question in your subject: http://wiki.rubyonrails.com/rails/pages/RealWorldU sage

    The tutorials obviously don't go much beyond the basics, because they are *tutorials*.

  16. Re:huh? on Microsoft Helping Nigeria Fight Scammers · · Score: 2, Funny

    I see you work for the Microsoft. How's work at the Microsoft? Are you enjoying being part of the Microsoft?

  17. Re:Rails != Ajax on What is Ruby on Rails? · · Score: 1

    I wrote an ajax search box in about four lines of code. I'm sure Rails did not help me at all.

  18. Re:Not so sure about this - I stil "don't get it" on What is Ruby on Rails? · · Score: 1

    It doesn't take long to be able to write a loop in a language, and btw, the Ruby way to write a loop would be something like

    container.each { |element| # something }
    or
    10.times { |i| puts i }

    But it does take a while to learn how to use all the assorted libraries and frameworks that a new language gives you.

  19. Re:Zero turnaround time on What is Ruby on Rails? · · Score: 1

    What the hell?

    Rails has three modes:

    • test (for running unit and functional tests)
    • development (where you spend your time coding... you see all your changes instantly)
    • production (where your sites should run when they are released

    Honestly, that was a really misinformed and inflamatory comment.

  20. Re:Confusing on TurboGears: Python on Rails? · · Score: 1

    do || .. end is basically equivalent to { || ... }, so I'm not sure where you're going with that.

    Personally, I find the block approach to be more clear. The other method is what C / C++ / Perl / Python probably do, but blocks are a big reason of why I like Ruby.

    Using blocks makes it really clear when the HTTP connection is open and when it is closed. Same with doing a database transaction or a File operation.

  21. Re:Where's Boeing? on 20,000 Show up for X-Prize Expo · · Score: 1

    The rockets that NASA use are really expensive. These alternative forms are not.

  22. Re:Not relevant? on TurboGears: Python on Rails? · · Score: 1

    You can easily do custom SQL with Rails.

  23. Re:There are too many ways to answer that on TurboGears: Python on Rails? · · Score: 1

    Rails supports many-to-many relationships as well. And provides support for many other relationships (see acts_as_list, acts_as_tree, acts_as_nested_set, etc).

  24. Re:Object/relational mapping on TurboGears: Python on Rails? · · Score: 1

    (ActiveRecord *already* splits business logic between the DB and the application.. hint.. where are the column names and types declared?)

    In the Ruby Migration script, in my projects at least.

    See http://api.rubyonrails.com/classes/ActiveRecord/Mi gration.html

  25. Re:Confusing on TurboGears: Python on Rails? · · Score: 1

    Because your last example doesn't close the HTTP connection. And it's not exception safe.


    File.open("my_file") do |f|
        f.read # do stuff with it
        # if exceptions are thrown, the file will be closed
    end