Hacker Newsnew | past | comments | ask | show | jobs | submit | hag's commentslogin

I recently bought an RTL-SDR. I've had so much fun with it so far and learned so much, which was my goal. I designed my own antenna in Fusion 360 and built it. I'm currently developing my own SDR application with a custom spectrum display etc. So far I can demodulate AM/FM/SSB and I'm trying to get into decoding digital modes as well.

There is so much to learn and enjoy even without transmitting. I like to listen in on air traffic control and download weather satellite images.


Thank you! I was going to mention StumbleUpon as well, but couldn't remember the name, haha. Used to use it way back.


Nice! I would probably have used bitmasks in this situation, but as usual there is a reason behind the choice and I get the reasoning.


Totally agree. I was expecting to get this feature as part of my Pro subscription.


I was expecting the same.


I just listened to an episode of The Darknet Diaries with an ex-CIA (I think) agent and he was talking about MICE. I'm pretty sure he said the C was for Coercion, but that does include blackmail as you said.


I could see blackmail falling under ego also


The inclusion of "ego" seems like kind of a cop-out, like, "it could be one of these three things, or... uh... literally anything else".


I've always thought it was pretty accurate and not cop-out at all. At least they didn't try to squeeze in "id"


Seriously. If ego includes sex, it ought to include money as well.


Darknet Diaries is such a good podcast. Especially the Student and Saudi Aramco episodes


In Windows 11 there's also a setting to make the "Print Screen"-key work in the same way as Win + Shift + S. The setting is called "Use the Print screen button to open screen snipping".


A lot of great personal sites here. Mine is just a simple GitHub Pages site which I recently set up. It contains some of my hobby projects and CTF writeups.

https://heinandre.no/


I started programming at a pretty early age and I've always (probably from the first time I saw an emulator) had a goal to code an emulator myself. I start and abandon hobby projects all the time, so it took me quite a few tries to actually get some traction. But when I finally did, and I got to the point where I could see the BASIC prompt on my C64 emulator it was an amazing feeling of accomplishment. It was a great learning experience, not just making the emulator, but the whole journey to learn enough to finally make it happen. I highly recommend it if that kind of thing interests you, if not, then don't do it, do something that interests you instead.


I've always been intrigued by virtual machines and emulation as well. I've always wanted to try and make an emulator of some kind. I don't know much about the internals of VirtualBox, but my suggestion would be to start "easy" with one CPU/Computer System/Game Console and go from there. That's what I finally did with the 6502 and Commodore 64.


Conventionally, one starts from the CHIP-8, which is indeed a virtual machine rather than a system in a strict sense.

What I've found difficult is the step beyond that. NES and GameBoy are typical steps, however, I've been very frustrated by the confusing documentation of the GameBoy. There are 3/4 references, but one of them has significant mistakes, while another is incomplete. On the other hand, the Pan Docs should be complete and accurate.

I'm not sure if there is an easy middle ground, that, at the same time, is also well documented.

The Atary 2600 is architecturally simpler but less documented, and also requires very accurate timings. I've read somebody suggesting systems like Channel F, Astrocade and Odyssey2, but I'm not sure they're well documented.

I've personally lost my interest once I've found that building an emulator was essentially fighting specifications rather than actually building something.


I built about a third of a NES emulator. The nesdev wiki is mostly decent, although there's a fair number of things where it seems like the first people to figure things out got stuff kind of backwards, and if you flip it, it's a lot easier, that's the sort of fighting the specifications I think you're talking about.

All that said, emulating the CPU was pretty fun. There's a CPU test rom out there you can run with tracing and compare to the published results. I also got the background tiling from the PPU done, but the foreground processing has a lot of steps, so I indefinitely paused for now. Also, I had amazingly poor performance, so I wasn't super motivated to continue.

The 2600 has a very similar cpu, but the very limited Stella output chip means most games are very timing dependent, which means you have to be super accurate, which adds difficulty. I think you should try to be cycle accurate anyway, but it's easy to mess that up, and having some freedom would be nice.


I did a GameBoy and similarly found the CPU enjoyable and the PPU a huge pain. Perhaps if I understood graphics better, I would have enjoyed it more, but like you say it just felt like a lot of steps.


I don't know if the GameBoy PPU has the background vs foreground split. The background processing was pretty reasonable, and once you got it kind of working, it was fun to debug and get it actually working. My favorite thing was when I was processing everything in the wrong order so the menu of the rom I was using to test had all the words backwards.

But the foreground / object sprites have this huge pipeline. IIRC, the PPU determines which sprites to draw in line X + 1 during line X. After that, it has to load the data for each object, etc etc. It was just discouraging. Plus since my frame rate is so low, I have to sit at a blank screen for quite some time waiting for the game to show anything, and longer for the demo to start (I don't have controls)...

Anyhow, glad I'm not alone ;)


A subset of CP/M calls is a pretty simple "rest of the system" to implement on top of an 8080/Z80 CPU emulation. (It's a bit of a cheat - like qemu's "Linux user mode emulation" or early version of DOSBox, because you restrict software to interacting with a high-level software interface, there are no lower-level details to aim for fidelity with)


I'm wondering if `binwalk`'ing the initial dd-image would have worked. That's the first thing I would try.


It absolutely doesn't, in this case.

    $ binwalk hanselman.img

    DECIMAL       HEXADECIMAL     DESCRIPTION
    --------------------------------------------------------------------------------
    13026788      0xC6C5E4        MySQL ISAM index file Version 6
    13064186      0xC757FA        MySQL ISAM index file Version 2
    15513282      0xECB6C2        YAFFS filesystem, little endian
    18368322      0x1184742       YAFFS filesystem, little endian
    42678040      0x28B3718       MySQL ISAM compressed data file Version 6
    59068786      0x3855172       YAFFS filesystem, little endian
    60315328      0x39856C0       YAFFS filesystem, little endian


Patch dosfsck to just dump every file it sees.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: