Live data from Hacker News

Viewing profile — peterderivaz

peterderivaz

HN member
Joined
Tue, Jan 10, 2012, 10:50 PM UTC
HN karma
151
Public activity
33 items

About peterderivaz

No profile information was provided.

Recent public activity

  1. comment
    Comment #48647286

    I've been trying out this model on a 4090 to transcribe a Japanese grammar pdf (written in English with lots of Japanese examples) and it seems to be working very well from the sma…

  2. comment
    Comment #48383392

    Reverse engineering the graphics from the 1998 3D Populous game.

  3. story
  4. comment
    Comment #46565213

    The Raspberry Pi contains a Videocore processor (I wrote the original instruction set coding and assembler and simulator for this processor). This is a general purpose processor wh…

  5. comment
    Comment #35967557

    Project Euler challenge involving Fractran: https://projecteuler.net/problem=308

  6. story
  7. comment
    Comment #13283797

    In practice I would expect Knuth's DLX algorithm to be much faster, both for generating the first solution, and for counting all solutions (for any reasonable sized N). There are s…

  8. comment
    Comment #12768218

    We paid a company called Metaware to make a compiler. I believe this compiler is still in use. As it happens, while we were waiting for this compiler to be made for us, I ported GC…

  9. comment
    Comment #12747344

    It was my first job out of University to design this instruction set which may explain some of the quirkiness... Initially the instructions did all set the status flags but it caus…

  10. comment
    Comment #10764599

    Not the original poster, but one thing that confused me was that I can clearly draw a graph that cannot be two coloured with a single pen stroke if I am allowed to reverse directio…

  11. comment
    Comment #10061420

    I've found using nolearn and lasagne on top of Theano made Theano much easier to use while still being in Python with access to familiar graphics routines. lasagne gives you ways o…

  12. comment
    Comment #9613312

    I think in this formula the altitude should be in feet, while the result is in miles, so 30,000 feet actually gives 213 miles.

  13. comment
    Comment #9330554

    I ran some experiments to investigate the discrepancy. The largest differences were caused by: 1. A variable quantiser being used for HEVC, but not for VP9 (as you described) 2. Ke…

  14. comment
    Comment #9070519

    I don't know Colin's logic, but my personal reasoning would be: 1. If this were true then it gives a simple, efficient, deterministic method to test for primes. (You can compute P_…

  15. comment
    Comment #9070467

    The list is here: http://oeis.org/A013998 The first is P_(271441) with 33,150 digits

  16. comment
    Comment #9050569

    I ran into this when computing PSNR comparisons using a Numpy function that returned a numpy integer type: >>> import numpy >>> x=0 >>> y=numpy.int32(2*10**9) >>> x+=y >>> x+=y >>>…

  17. comment
    Comment #8718309

    Another similar idea is the Kempner series. If you add 1/n for all natural numbers n, then the series tends towards infinity. However, if you leave out any integers that contain a …

  18. story
  19. comment
    Comment #7790507

    I enjoyed this blog post and Javascript implementation of an interactive Quantum circuit inspector. http://strilanc.com/quantum/2014/03/07/Building-your-own-Qua... It is a lower le…

  20. comment
    Comment #7322071

    The vector register file is a block of registers 64 bytes across by 64 down which can be accessed horizontally (H) or vertically (V), and in units of 16 bytes (H8), 16 shorts (H16 …

  21. comment
    Comment #7265987

    I wonder if you misunderstood his comment as a suggested method to solve the mathematical problem? The way I read it, he was suggesting a possible way of reducing the size of the D…

  22. story
  23. comment
    Comment #6462533

    I've been using Anki for learning Japanese. I've particularly appreciated the decks that include audio of complete sentences and have found that it has greatly improved my ability …

  24. comment
    Comment #6401176

    Have you seen crazybump? There is a good tutorial on it at http://www.blenderguru.com/videos/the-secrets-of-realistic-t... It is a program that takes a single image and generates d…

  25. comment
    Comment #6114445

    Interestingly, Wikipedia disagrees. For a radix of 10, there is thought to be no number with a multiplicative persistence > 11: this is known to be true for numbers up to 10 to the…