Viewing profile — jpegqs
jpegqs
HN member- Joined
- Wed, Dec 02, 2020, 4:58 AM UTC
- HN karma
- 947
- Public activity
- 65 items
- HN profile
- View on Hacker News ↗
About jpegqs
No profile information was provided.
Recent public activity
-
comment
Comment #48462869
3x memory access then, because read+read+write. And extra 0 to 3 reads in this work.
-
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…
-
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…
-
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.
-
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.
-
comment
Comment #38705413
Does it count as a screenshot? Game select screen: HI-SCORE 0 /--------------------\ | | | | NEXT | | | [][][] | | [] [] | | [] [] | | [] [] | | [] [] | SPEED 0 | [] [] | | [][][] …
- story
- story
- story
- story
-
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…
-
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…
-
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…
-
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 …
- story
- story
-
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', -~-…
-
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…
-
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…
-
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.
-
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 …
-
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 …
- story
-
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.
-
comment
Comment #29659090
Great description, but there is a typo in the second row: 00000000 abcdefgh ijklmnop qrstuvwx -------- -------- -------- -------- 00abcdef 00ijklgh 00qrmnop 00stuvwx 0000ijkl 0000q…