Slashdot Mirror


User: OmniVector

OmniVector's activity in the archive.

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

Comments · 594

  1. time == money? on What Organizations Do You Contribute To? · · Score: 2, Interesting

    i don't really have much cash to give, being a college student.. but i do donate a lot of programmer time to projects. my current favorite is opendarwin. i try and port things whenever i get the time (which isn't often lately).

  2. Re:Apple will never release a Tablet Mac on Tablet Mac Becomes Reality · · Score: 1

    well the thing is.. tablets aren't a success. this is why apple has stayed away from them. a niche computer for a niche platform does not equal profit.

  3. Re:If they are smart, and they are, on Sophistication in Web Applications? · · Score: 1

    parent poster said pretty much what i was about to. i've written a fairly complex hierarchy menu in OOP javascript. there is also a project that's been around for sometime called dynapi that seeks to make a cross browser OOP javascript system for widgets.

  4. Re:SessionSaver on Firefox Reaches 10 Million Downloads · · Score: 1

    er? i've been using session saver 0.2 nightly 23 for over a week on both my mac, linux, and windows machines.

  5. Re:The Woz on Segway Polo · · Score: 1

    it would appear so. and i think he's already doing ads for the company!

  6. Re:People still use IE? on Penn State Tells Students To Ditch IE · · Score: 2, Informative

    sadly that's not true. pretty much every old school mac os 9 user i know that now uses os x uses IE for mac. STILL. even though microsoft publically said they are stopping all updates (including security)

  7. DUH! on Laptops May Be Hazardous to Your Fertility · · Score: 3, Informative

    is this really such a surprise???

  8. Re:This to popularize HD-DVD? on Memory-Tech, Toshiba Develop DVD/HD-DVD Discs · · Score: 2, Interesting

    it will delay the purchase of hd-dvd players, this is true. however it also means people won't have to buy the media separate so content producers don't have to worry about twice the packaging, twice the store shelf space, etc. this means there's a very nice transition period between the two formats without necessity to 'separate' the video store into two sections (it was how long until DVD and VCR tapes just became DVD tapes at blockbuster?). now they can just put a nice "HD-DVD" logo on the DVD package and you're good to go if you have the new player and compatible TV.

  9. Re:TCO on Given Up to Spyware? · · Score: 1

    because we certainly know you're the average user. that's a poor excuse for a rather serious problem. education is the key, but must it be?

  10. Re:Worrying... on 7 Megapixel Camera Phone · · Score: 4, Funny

    this guy worries about people taking pictures of magazines, and what comes to mind for you? taking pictures of girls wearing skirts! ahhh slashdot :)

  11. perl6 book coming soon on Beginning Perl, 2nd Ed. · · Score: 4, Funny

    don't forget to pick up a copy of the new perl 6 book!

  12. Re:Intel & SLI on Dual Video Cards Return · · Score: 1

    i don't feel like posting links to prove every point, but each one is true. amd chips right now are cheaper at a price per performance level. their top end (4000) is faster than the top end pentium (3.8ghz). their top end chip consumes far less power than the 3.8ghz, which is around 100W or more. they're better chips in general with 64bit support and the NX bit.

  13. Re:Just wondering... on Software Tools of the Future · · Score: 1

    so what if you want to copy/paste a block of python code? what's that? you use 3 spaces and i use 4 spaces? oops. you use tabs and i use spaces? oops.

    ruby is the perfect solution really. most blocks can use either { } or do end. it's a simple solution for those who don't like verbosity. block delimeters exist for a reason, and it's a fairly tried and true structure at this point. python is a good language overall, but it still has problems in my opinion.

  14. Re:Intel & SLI on Dual Video Cards Return · · Score: 1

    i'm really not trying to be a troll or anything, but why would you go intel right now when the amd 64 chips have so many advantages (price, performance, power, heat)?

  15. Re:A quick review: on Doom 3 vs. Half Life 2 · · Score: 1

    Last time i checked, transgaming CHARGED for access to cvs. so now my choices are 1) wait a month or so, 2) pony up cash.

    why should i have to pay extra just to play the game i bought?

  16. Re:What about Mono? on Alternative Development Systems for the Mac · · Score: 1

    then you're in the wrong industry. learning a new language is an easy task. the java frameworks are so rediculously well documented (the best i've ever seen honestly) that finding what you want on the javadoc pages is a snap. C# is a complete rip of of java anyways, so finding your way around isn't hard.

  17. Re:What about Mono? on Alternative Development Systems for the Mac · · Score: 5, Interesting

    the performance isn't there. nor is the reason. why bother with C#/Cocoa# when you can use java/Cocoa and it's shipped with every mac already, and it has better performance (hotspot is way better than mono's vm right now). not to mention the dev tools for java in os x are about a million times better than anything for C#. (intellij, eclipse, xcode...)

  18. Re:O'Caml....the future today on Software Tools of the Future · · Score: 1

    syntax in many cases is irrelevant i think. my only deviation from that claim is python, which requires whitespace for syntax (literally the worst syntax idea i've ever heard, which is why i avoid that language like the plague). i'm promising myself to learn o'caml soon. it sounds too good to pass up.

  19. Re:Religious radicals? on The Worst Jobs in Science: The Sequel · · Score: 1

    happiness might be a poor word choice. pacified is more applicable.

  20. Re:Religious radicals? on The Worst Jobs in Science: The Sequel · · Score: 0, Flamebait

    Instead you shove it in their face and tell them that it proves they've wasted their life with their religion.
    and? religion is the opiat of the people my friend. it's a tool for control, and for happiness without thought. religion is the collective gathering of people who can't make up their on theology and believe whatever they want to believe, collectively. they need their beliefs pre-digsted.

  21. Re:You just don't know the right idioms` on Software Tools of the Future · · Score: 1

    if you think c is as dynamic as ruby, you've been living under a rock.
    c cannot do this:
    var = 5
    puts var.to_s
    var = "foo"
    puts var.to_s

    C cannot do this:
    block5 = proc do |x|
    x + 5
    end
    block3 = proc do |x|
    x + 3
    end

    blocks = [ block3, block5 ]
    blocks.each do |block|
    puts block.call( 1 )
    end

    without lots of type hacking and without nearly as much brevity. C is powerful, yes. but it does not have dynamic typing, it is not garbage collected, it does not have OOP capabilities, it does not have lambda blocks, and it does not have dynamic expandable arrays built in. there's a lot to be said about a language that handles all this crap for you without having to resort to non standard libraries, or without having to redo it yourself. crap i haven't even mentioned call with continuation, regex, and built in ftp and http servers and clients, and the huge amount of other things ruby has out of the box that C still doesn't have in the standard libraries. i can't even make a simple expandable array in C without resorting to glib or writing it myself.

  22. Re:O'Caml....the future today on Software Tools of the Future · · Score: 1

    i was refering to ruby not having scary syntax. it's ocaml that does.

  23. Re:O'Caml....the future today on Software Tools of the Future · · Score: 1

    i've been meaning to learn objective caml, just because i hear a lot of good things about it. it really reminds me of ruby (features wise) without the scary syntax.

    i think we need to see languages like objective caml, ruby, lisp, scheme, etc become more mainstream. these languages support extremely dynamic capabilities that languages like java, c, and c++ just can't do without a lot of trouble or huge workarounds.

  24. Re:Or just badger Valve on Transgaming to Support Half Life 2 Under Linux · · Score: 1

    wine can run half life 2. and i DO have a windows box too. i very well could buy it, but refuse to since they won't let me play it on my platform of choice.

  25. Re:Or just badger Valve on Transgaming to Support Half Life 2 Under Linux · · Score: 2, Insightful

    unfortunately valve tied them selves heavily into directx. as such, it's not portable like all those other games (which are written with opengl).

    do what i do. refuse to support companies who do not use open standards for game development. it's the only way we'll get native linux and mac ports in a timely fashion, if ever.