Slashdot Mirror


User: Jan+Derk

Jan+Derk's activity in the archive.

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

Comments · 12

  1. Re:Nice Mockup on The State Of The GTK+ File Selector · · Score: 1
    I would layout the path navigator like this:
    [_ICON_] [artists] [Crazy Fool] [Greatest Hits]

    Clicking on the icon would pop up a list (like the combo box):
    | //////Greatest Hits
    | /////Crazy Fool
    | ////artists
    | ///music
    | //me
    | /home
    | /


    That's a very good idea as it gets rid of those awkward tiny scroll arrows. One small remark: I would reverse the drop down list order to:
    | /
    | /home
    | //me
    | ///music
    | ////artists
    | /////Crazy Fool
    | //////Greatest Hits
    Your list has the items at the top that are already available as buttons. When the user clicks the drop down list she probably wants to select one of the top levels that are invisible. So it makes sense to put those at the top instead.
  2. Re:Welcome to Capitalism on Microsoft Tries a "Switch" Campaign · · Score: 1

    I'm pretty sure that what's going on here is that Microsoft found a freelance writer to write glowingly about XP [..] 10 bucks says she's on the MS payroll.

    10 more bucks says she wrote it on her Mac.

  3. Re:What's next ??? on P4 2.80GHz Overclocked to 3.917GHz · · Score: 1

    My vote goes to superconductivity, bringing the CPU clock speed to infinite.

  4. How many cables do you need? on Physics in the Movies · · Score: 1

    A bit off topic, but last weekend I hired Swordfish. I was quite intrigued by the picture on front of the video box. OK, a hot shot hacker probably needs a cable to connect his computer to the Internet, but why does he need dozens?

  5. Re:Actually.... on Live from Iran, Film88 · · Score: 1

    And if you want to know what slashdot does to a streaming video server in Amsterdam:

    http://redbus.trueserver.nl/

    The first bump is probably the ZDNet effect.

  6. Microsofts next move... on Free Software Law in Peruvian Congress · · Score: 2, Insightful

    Obviously Microsoft is not gonna win the argument with this congressman. He's just making too much sense.

    However, Microsoft isn't stupid either and I bet they will ignore him (or call him a liar) and aim all their FUD on the 51% of the congress they need to block this bill. Chances are they will succeed.

    I hope I'm so wrong.

  7. Playing games with Credit Card details... on More On Policing Shareware · · Score: 1

    Good idea to prevent leaking codes. But a very bad idea to get people to register at all.

    Do you really think anyone will register knowing that the shareware author is playing games with their CC details?

    I won't even register if the shareware author handles my CC data himself, instead of using a thrusted 3rd party like KAGI, Regsoft, Paypal or any big name bank.

  8. Re:Some helpful links with reg code generation inf on More On Policing Shareware · · Score: 1

    There's much more to protecting your apps than just a high tech registration code generator:

    http://www.inner-smile.com/nocrack.phtml
    http://www.senseofsecurity.com/sharenc.asp

    Have fun. Just remember that if you application is worth it, it will be cracked despite any efforts you make. Take it as a compliment.

    Cracking complex protection schemes is to hackers what a game of Doom is to others.

    Jan Derk

  9. Good or Bad? on Xft Hack Improves Antialiased Font Rendering · · Score: 1

    There seem to be a lot of anti-aliasing rules/s*cks opinions. Anti-aliasing comes in many different qualities. The very article that started this thread proves that.

    There's bad anti-aliasing which looks crap and there's the really good stuff which is generally based on sub pixel rendering.

  10. Re:erm... why is hinting enabled then? on Xft Hack Improves Antialiased Font Rendering · · Score: 1

    I actually prefer not using antialiasing below 10pt anyway, the fonts quickly become unreadable.

    Which is exactly what Microsoft does.

    To test it, in Windows create a few similar lines in for example Word and use different font sizes (e.g. 12, 10, 8, 6) for each line. Make a screenshot and zoom in using any image editor.

  11. Re:Mozilla has it now on What Makes a Good Web Design? · · Score: 1

    err... the latest nightly builds of mozilla now have the option to not open pages in new windows.

    And Mozilla has the "Open in New Tab" option for months now. Clicking my mouse wheel opens links in a new tab instead of a new page. You have to try it to love it.

  12. Vectors & matrices on What Makes a Powerful Programming Language? · · Score: 1
    operator overloading is wonderful: define a type for vectors, matrices, etc.

    Native complex number, vector and matrix support would be even better for a couple a reasons:

    No need to create/support/messing up your own math libs.

    All mathematical code would be compatible.

    Native types are faster than overloaded self defined types.