Live data from Hacker News

Viewing profile — jpegqs

jpegqs

HN member
Joined
Wed, Dec 02, 2020, 4:58 AM UTC
HN karma
947
Public activity
65 items

About jpegqs

No profile information was provided.

Recent public activity

  1. comment
    Comment #48462869

    3x memory access then, because read+read+write. And extra 0 to 3 reads in this work.

  2. comment
    Comment #48449483

    > 3 If the low bit on any operand is set, remove it, and replace that operand with m[operand] i.e., a dereference of that address This dereference option makes a second instruction…

  3. comment
    Comment #44782063

    Open the link: https://www.ioccc.org/2024/kurdyukov3/ogvm.html Replace the text to the right of the Start button with: doomp.bin Click the Start button. Doom will launch in your br…

  4. comment
    Comment #38743839

    I think not. There is not only Tetris, but also Snake, and two types of "shooters" - one removes blocks, the other creates. And many variations of these four basic games.

  5. comment
    Comment #38731164

    Sadly, the Brick Game model from which the ROM dump was taken doesn't contain a racing game, which was in the Brick Game that I had as a child.

  6. comment
    Comment #38705413

    Does it count as a screenshot? Game select screen: HI-SCORE 0 /--------------------\ | | | | NEXT | | | [][][] | | [] [] | | [] [] | | [] [] | | [] [] | SPEED 0 | [] [] | | [][][] …

  7. story
  8. story
  9. story
  10. story
  11. comment
    Comment #33574316

    I wanted to run Doom on one of them. So far I have LCD control for SC6531E (with 9306 LCD panel), USB control for SC6531E/SC6531DA and USB control for MT6260/MT6261 (using API from…

  12. comment
    Comment #33572707

    From the ones I got, I found MAUI in the name of the firmware, and on Wikipedia I found these notes: > MAUI, a feature-phone operating system used with MediaTek-based shanzhai devi…

  13. comment
    Comment #33572619

    I don't know if the Mediatek chips have overridable pins, but the Spreadtrum does. There are also different LCD panels that have slightly different interfaces for which you will ne…

  14. comment
    Comment #33571948

    I recently ordered and researched the cheapest feature phones (and some smartwatches), looks like half of that market is occupied by Unisoc with the SC6531(E/DA) chipset (from the …

  15. story
  16. story
  17. story
    Show HN: A simple Italian to English translator written in C (Hello World joke)

    #include int main() { puts((char[]){ ~-~-~-~-~-~-~-~-~-~-~- 'S', -~-~-~-~ 'a', 'l', ~-~-~-~-~-~-~-~-~-~- 'v', -~-~-~-~-~-~-~-~-~-~ 'e', ',', ' ', -~-~-~-~-~-~-~-~-~-~ 'M', 'o', -~-…

  18. comment
    Comment #31725906

    Explanation: 1. There are no data members inside X, in this case the size of the structure is 1 byte. 2. main() does nothing. 3. *x = new X[100]() - this requests a new array of 10…

  19. story
    A way to torture an interviewer (C++, FizzBuzz)

    #include static struct X { void* operator new[](size_t) { return (char*)&1[""]; } void operator delete[](void*) { } X() : X((char*)this - "") { } X(char i) { printf(i%3?i%5?"%s%i\n…

  20. comment
    Comment #31655552

    I have suggested them to look at my version, but I think UPX not much hardcore for that. Because I'm guessing decompression speed is more important to UPX than the extra 2kb.

  21. comment
    Comment #31654960

    I looked at the latest version of UPX, they began to use LZMA, if this is considered an LZMA decoder: https://github.com/upx/upx/blob/devel/src/stub/src/arch/amd6... Then it takes …

  22. comment
    Comment #31654633

    The compression method in UPX is much simpler (therefore smaller and faster), but the last time I saw it was over 10 years ago, something may have changed. But LZMA should provide …

  23. story
  24. comment
    Comment #29663150

    Still can't improve this stage of encoding, it requires a lot of operations. Maybe there is something trivial, but I don't see it.

  25. comment
    Comment #29659090

    Great description, but there is a typo in the second row: 00000000 abcdefgh ijklmnop qrstuvwx -------- -------- -------- -------- 00abcdef 00ijklgh 00qrmnop 00stuvwx 0000ijkl 0000q…