Live data from Hacker News

Viewing profile — tenfingers

tenfingers

HN member
Joined
Wed, May 15, 2013, 1:44 PM UTC
HN karma
559
Public activity
217 items

About tenfingers

No profile information was provided.

Recent public activity

  1. comment
    Comment #11008647

    It's also a completely useless feature in the chip without the ability to setup arbitrary keys at boot time. This is the worst DRM incantation ever. I expect AMD to clean up Intel'…

  2. comment
    Comment #11006659

    I live close to switzerland's borders, and it's incredible the disparity in terms of salary/cost of living between switzerland and all it's neighbors. I do not consider myself poor…

  3. comment
    Comment #11002582

    Approaches similar to unexec() are quite common in lisp-like environments, so emacs doesn't come as a "surprise" here. There's no reason emacs needs to use the glibc's malloc imple…

  4. comment
    Comment #10972941

    By Widget I mean any object which is a QWidget and is bound by some other widget (so I do not count plain QObjects) that you need for your UI. ListViews are optimized for display o…

  5. comment
    Comment #10966742

    If you have a classical desktop interface where you reach 100+ widgets (which sounds like a lot but is easily reachable with just a toolbar, some buttons and a form), the differenc…

  6. comment
    Comment #10966690

    Read their own introduction page. CopperSpice is a fork of Qt4.

  7. comment
    Comment #10966516

    Yes sorry, typo (fixed).

  8. comment
    Comment #10966493

    Note that C++ has "extern C" for the same purpose, and many people do not seem to be aware of it. You can perfectly write a C++ library and expose a C-safe subset. I've done so man…

  9. comment
    Comment #10966467

    I wished Qt just split into a different widget set for mobile. The interaction behavior is significantly different that attempting to reuse the same UI for both mobile and desktop …

  10. comment
    Comment #10958241

    Easy: just provide a certificate that cannot be changed within FF (must be modified by changing a file in the installation directory). No preference needed. This would allow develo…

  11. comment
    Comment #10958184

    Add-On Signing which can be automated does provide very little added security for the user, and just serves as a big pain the butt for everyone else involved. I'm routinely questio…

  12. comment
    Comment #10916902

    ... or, you could ask everybody to walk, thereby "quadrupling" the effective capacity. I've been in UK many times, and being able to effectively walk up all escalators due to the d…

  13. comment
    Comment #10851914

    Have you have ever used the "flex" nib? I wonder if anyone found some "use" out of it that couldn't be done by just pressure feel adjustment.

  14. comment
    Comment #10851838

    I do, yes. But the translator needs to be aware of the extra indirection to produce the text he needs, and between a custom layer and a standard formatting syntax, the second is de…

  15. comment
    Comment #10846516

    Do you have direct experience with it? Any improvements in the tracking quality of slow lines?

  16. comment
    Comment #10846512

    There's not much difference. In fact, you cannot expect translators to know how the underlying object is handled or write data extractor out of the file object. If translators are …

  17. comment
    Comment #10846420

    There's also twisting (yes, it's a true 5 axis). But you have to buy the more expensive "art pen". See: https://www.wacom.com/en-us/store/pens/art-pen Notably, some pens support ad…

  18. comment
    Comment #10843199

    you have both roll and pitch.

  19. comment
    Comment #10843181

    It's awesome, but if it weren't for patents, we would have pens on every device with a touch screen now. I use wacom styluses for work, and mind, they're egregiously fine, but waco…

  20. comment
    Comment #10835415

    Can you clarify the last point? I do not get it. Can you make an example of where an extra indirect mechanism (besides interpolation) is _required_ for translation? I generally loc…

  21. comment
    Comment #10793976

    It's not much about language, it's mostly about code/ecosystem re-use (that is: if you have a library available in system X and you're writing for Y you can still take advantage of…

  22. comment
    Comment #10788086

    The data that goes into the plot is unrelated to it's visual complexity. The "problem" is that ggplot also takes care of the transformation/reduction step for you. For example, a K…

  23. comment
    Comment #10788042

    "python-bond" also came out in 2015: https://pypi.python.org/pypi/python-bond allows a simple interface between python runtimes and php/perl/nodejs.

  24. comment
    Comment #10787918

    Anyone that have been using schema after using 'rx' ( https://pypi.python.org/pypi/Rx/ )? I generally like the simplicity of Rx and the fact that's language agnostic (I've used it …

  25. comment
    Comment #10776989

    My biggest problem with ggplot is that it's slow, unbearably slow. It also enforces all data to be realized into a single dataframe, which is true only for small (as is: fits in me…