Slashdot Mirror


User: melted

melted's activity in the archive.

Stories
0
Comments
2,790
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2,790

  1. You're missing the point on Adobe Unveils Open Source Library · · Score: 1

    GIMP has color management and 48 bit color in its short term roadmap. Adobe should be worried of competition IMO (just like Microsoft is worried about Linux). This will be competition between a $650 piece of software and another, $0 one that you can download off the Internets.

    BTW, you've seriously overpaid for your copy of Photoshop. If you have PSE, you can get photoshop for $299, which is how I bought it.

  2. Linux's problems are on Adobe Unveils Open Source Library · · Score: 1

    1. No polished apps
    2. Poor hardware support

    That's why no one is switching. It is perfectly possible to successfully compete with a graphics editor that sells for $650 a pop. And yeah, I do own a copy of Photoshop CS for Mac. My wallet still hurts. I wish it had competition at the time I bought it.

  3. PSE doesn't have color management, on Adobe Unveils Open Source Library · · Score: 1

    and it will never have it. As a photographer, I absolutely NEED color management. I can't do without it. Not having color management is a deal breaker for me, and for a lot of other folks. Besides, PSE's support of 48 bit color is castrated in order to not affect Photoshop sales.

    So the key to world dominance is:
    1. 48 bit color everywhere, without limitations
    2. End-to-end color management capabilities
    3. Decent, stable Windows version

  4. $50 and no code completion? on In Which OS Do You Feel More Productive? · · Score: 1

    Are we still in the 80s? I realize this is not an IDE, but I was talking about IDEs.

    As a text editor it looks promising, though. Trouble is, text editor built into Mac OS X is perfectly adequate for my _text_ needs.

  5. Adobe is starting to worry about GIMP on Adobe Unveils Open Source Library · · Score: 2, Interesting

    Once GIMP people implement 48bit color and color management, they'll have a potential to take away a large portion of Adobe clientele - web designers and photographers (i.e. people in no way related to prepress and CMYK). When two products have equal capabilities in relation to your tasks, but one is $650 and one is free, the choice becomes really simple.

    Right now GIMP is not yet there, but this doesn't mean it'll never be.

  6. I hope they don't on In Which OS Do You Feel More Productive? · · Score: 1

    I like tabbed browsing actually, and I like tabs in VS.Net. If tabs were easily detachable, I would like this even more. Mac windowing is a horrible mess. They pay too much attention to transparency and shiny buttons, which in itself isn't a bad thing, IF the basics are nailed down. Whic, unfortunately, they aren't.

  7. I'd say Mac, IF it had MDI on In Which OS Do You Feel More Productive? · · Score: 2, Interesting

    As things stand it's nearly impossible to have two instances of XCode running in parallel. You simply get lost in a dozen windows, because OS X doesn't offer anything to logically group them. No tabs, no MDI, no nothing. You can't even hide one set of project windows all at once. You have to either hide ALL XCode windows, or go through them and hide every god damn window manually.

    This is fucked up, IMO. I'm literally 10 times more productive in VS.NET, and that's what I do - I write code. There's no competition to VS.NET right now as far as coding productivity is concerned.

  8. I think Google should fork Mono on Google & Firefox's Relationship · · Score: 1

    Managed code is the future. XUL is great and shit, but some things you just can't do in XUL. You'll have to download extensions of some kind. These extensions better be sandboxed and have a verifiable security model. .NET has all this, and it's also an ECMA standard.

    Why not Java you might ask? Simply because it's a non-standard language specs to which are controlled by Sun. Plus, compared to C#/.NET Java looks like a bunch of amateur bullshit.

  9. And I'm considering getting Nicole Kidman on Japan Considering Moon Base, Shuttle Projects · · Score: 1

    to be my second wife. Come on, we can "consider" all kinds of shit. Guess what, nobody cares what you "consider" until you actually make it.

    If they put their base on the moon, that will be news. Their "considering" is not news.

  10. 99 cents is already too much on MP3 Download Prices to Rise? · · Score: 2

    You can buy a used CD on half.com for $8-10, delivered to your goddamn door. That's uncompressed, un-DRMd audio, and the booklet is included, too.

    They should sell the stuff they're smoking instead, it's apparently very strong.

  11. Same here on LinuxWorld Response to 'How to Kill Linux' · · Score: 2, Insightful

    >> The days may be long gone, but they haunt
    >> my memories and have me running XP.

    ACPI is not ready for realistic laptop use at this point, and all kinds of forums are littered with posts from users who had some major grief from setting it up. I'd predict that 95% of people who attempt to use Linux on their laptops revert to Windows XP/2000 sooner or later.

    Driver support for wifi is kinda there (with ndiswrapper), but setting it up is _well_ beyond the capabilities of a Linux newbie, especially if this newbie wants proper WAP security.

  12. The answer is, as always, the competition on Bill Gates Proclaims US High Schools Obsolete · · Score: 1

    Divide classes into three categories:

    1. Smart
    2. Average
    3. Below average

    Make it easy to transition back and forth between categories IF academic objectives are in line with the requirements. Make it _not cool_ to be in #3. Call them losers or something, because that's what they really are. If this hurts kids "psychologically", fuck psychology. The world is a harsh place, if you don't want to study (and your parents don't care), get ready to be a loser.

    Finally, make it challenging but cool to remain in bucket #1.

    The reason why kids don't give a crap about studying is because it's "cool" to not study. Change that, and ungrateful cocksuckers will study like you wouldn't believe.

  13. That's what pr0n looked like back then on The First Image Published on the Web · · Score: 1

    That's what pr0n looked like back then. It is widely known that the Internets were invented to transfer pr0n.

  14. Having done YEARS of perf work on Optimizations - Programmer vs. Compiler? · · Score: 1

    Here's what I have to say on the topic:
    1. Do not optimize _code_, optimize _algorithms_ , architectures and SQL schemas, and do so only in the case when you're 100% clear that there will be a sizable benefit.
    2. If you do #1, don't do any optimizations until you've done at least preliminary perf testing and identified the bottlenecks. It's important for perf test to mimic real workload as close as possibly. Half-assed test scenarios are about as good as no testing, and sometimes worse because they give you the false sense of confidence, when in fact you should have none.
    3. If you're making changes in an existing product, measure improvements under _varied_ workloads. Collect and study the trend data.
    4. Don't optimize stuff which does not get called/accessed often or where you know the benefits of optimization will be minuscule. I've seen some programmers optimize error logging to avoid a fucking _function call_ (for some reason they thought it was expensive) and then turn around and do horrible performance decisions in SQL schema.
    5. Don't optimize without first talking to your perf/stress person (if you have one). If you don't have a perf/stress guy, hire one. Some developers think they know a lot about perf and optimization, while in fact all they know are urban legends. So they spend a bunch of time on urban legends, and the real perf issues remain in the product. Your perf guy, if he's good, KNOWS what's broken and how to fix it. Listen to what he has to say a little more.
    6. Pay the most attention to shared resources and threading issues around that. In this day and age, processors are blazingly fast, so the most common source of perf problems is locking on a shared resource. Do code reviews on code that's heavily multithreaded and employs a lot of locking. If you use MS SQL server, run Index Optimizer and see what it has to say. Also, run Microsoft PSS "Blocker" script under a real world workload to see if you're having locking issues.

  15. Of course it's unusually good on Netflix Pioneers Industry To Get Left in the Dust? · · Score: 1

    BillG is paying for it. Or more precisely The Bill and Melinda Gates Foundation. They have free internet access and LCD screens in every library, too.

  16. Here's a good barebone for y'all on Athlon 64 SFF With PCI Express Reviewed · · Score: 2, Interesting

    http://www.newegg.com/app/viewproductdesc.asp?desc ription=56-110-030&DEPA=0

    Asus Terminator C3 - $115. VIA C3 processor, running at 800MHz. Comes with processor, floppy and CD-ROM. Put in your old PC2100 RAM, a couple SATA hard drives, install your favorite Linux/*BSD distro, and you have a perfect home server. It even has a PCI slot, FireWire, USB2 and TV OUT.

  17. Local libraries are a good alternative to Netflix on Netflix Pioneers Industry To Get Left in the Dust? · · Score: 1

    I watch movies for free by using our local library (Washington, King County library system). One less monthly bill, yaw!

  18. It's a mystery to me that Linux hasn't yet taken on Linux In Robots, Windows in Handhelds · · Score: 2, Interesting

    It's a mystery to me that Linux hasn't yet taken over both of these markets completely, end to end. It's free. It comes with full source code which you can tweak to your heart's content, it can be trimmed down to work in a frickin' wristwatch, it runs all the software you could possibly need, and if you need something extra, guess what, development tools are also free.

    Yet PDA makers insist on paying the dough to MSFT instead of hiring a dozen Linux hackers to do "spit & polish" on their distro of choice.

    I guess this is because PDA market is not yet cost driven, and PDAs are still perceived as useless geeky toys.

  19. Speed Step is not an answer here on SpeedStep On Your Desktop - Intel's Prescott-2M · · Score: 1

    How about reducing the frikkin' power dissipation? Not to Pentium-M levels, but to Athlon 64 levels at least. People used to joke about Athlons, and now look at them, AMD fixed the issues without running them at 300MHz (that's the speed of Pentium-M processor in my notebook as I write this).

  20. Well, this is something I haven't observed on Can India Become A Knowledge Superpower? · · Score: 1

    Sure there are crappy American programmers (albeit the percentage is dramatically lower), but there's an important cultural difference. A halfway decent American programmer is more likely to tell his boss to fuck off when he puts forth an unrealistic schedule or requirements. An Indian will not say anything. He will just copy&paste shit all over the place and call the resulting spaghetti code a product.

  21. Yet over here, all Indians I've worked with on Can India Become A Knowledge Superpower? · · Score: 0

    Yet over here, all Indians I've worked with do just barely enough to get by. Copy & paste is their preferred coding method, and architecture and proper design are nowhere to be found.

    There was one exception in my 5 years in the industry - the guy was extremely, unbelievably bright. He wrote a book on ATL. He typed so fast I couldn't see his fingers, and he was the best programmer in 50 people team. But he's just an exception that it seems reinforces the rule.

    Quantity doesn't matter. Quality does.

  22. "Sports-minded geeks" is an oxymoron on Google Building Tech Center Near Portland · · Score: 0, Troll

    Kind of like "unbiased slashdot discussion" or "Microsoft-loving slashdotter".

  23. How's this news? on Huge Star Quake Rocks Milky Way · · Score: 3, Funny

    According to TFA this shit happened 50000 years ago. Is this some kind of slashdot record, posting news that mattered 50K years ago?

  24. This was bound to happen on AMD's New Low-Power CPUs · · Score: 1

    Just three days ago, I bought this VIA C3 based system (processor dissipates 7W at idle), and they roll out sub 1W chips. Oh, well. Hard drive is gonna take 9W of power anyway.

  25. Show it to me when it's done on Next-Gen X Window Rendering For Linux · · Score: 1

    So far it's just the usual bullshit. _IF_ we did that, we _could_, blah blah blah, yadda, yadda, yadda. I'm so sick and tired of empty promises. How's cut&paste doing, folks? Can I cut & paste between _everything_ yet or it's another 5 years away?