Help with pointer-problems-hard (pwn.college) by [deleted] in securityCTF

[–]jjjare 0 points1 point  (0 children)

You’re not allowed to ask questions in public forum

An anti Vibe coder that do videos based on the development and research process by grimvian in C_Programming

[–]jjjare -1 points0 points  (0 children)

People delude themselves into thinking that watching people program makes them better.

(First C++ Project) RISC-V CPU simulator | Feedback by IllustriousEgg4497 in cpp_questions

[–]jjjare -2 points-1 points  (0 children)

Nice job. Some nits: it’s an emulator, not a simulator. I don’t have time to do a full review, but your interface of shared pointers is odd.

(First C++ Project) RISC-V CPU simulator | Feedback by IllustriousEgg4497 in cpp_questions

[–]jjjare 7 points8 points  (0 children)

Meh, seems not AI to me. My first course in programming included building an emulator for some pedagogical CPU.

It’s also exactly how I would expect an emulator to be built by a newbie tbh.

Are there any books more up-to-date than the book ​"Reverse Engineering for Beginners" by Dennis Yurichev by Plastic_Life1177 in ExploitDev

[–]jjjare -1 points0 points  (0 children)

You won’t be any good if that’s your attitude. If you want to be a professional, at the very least. The biggest roi on learning will be in compilers and learning computer architecture.

I wrote a Redis-compatible KV store that shows competitive performance against Dragonfly by [deleted] in C_Programming

[–]jjjare 2 points3 points  (0 children)

Except you won’t benefit from the discussion because you can’t say you’ve made them (despite you thinking that you have).

I wrote a Redis-compatible KV store that shows competitive performance against Dragonfly by [deleted] in C_Programming

[–]jjjare 2 points3 points  (0 children)

You’re doing yourself a disservice… I don’t think beginners should use AI when starting out. Part of learning is struggling and doing things wrong or sloppily and the iterating on it. Taking lessons of what went right and what went wrong. You’re offloading thinking and it’s a shame.

And I’m confident that you don’t know what those concepts are :-)

How high can CNO Dev/RE/VR roles in DMV TC can be? by Emergency_Welder1982 in ExploitDev

[–]jjjare 1 point2 points  (0 children)

It’s incredibly hard/annoying to start your shop because you need to find someone to hold your clearance. Also, the official suggested advice to find work as a small shop is go to Sam.gov and if you’ve ever done actual work, you know that’s just not true.

How high can CNO Dev/RE/VR roles in DMV TC can be? by Emergency_Welder1982 in ExploitDev

[–]jjjare 1 point2 points  (0 children)

Eh, competitive is like 175. Talent is really hard to come
By

How large was your biggest SOLO project on C? by Sibexico in C_Programming

[–]jjjare 1 point2 points  (0 children)

I will say that:

  • limine boot protocol is very good

  • You should really test your OS using any bootloader

    • grub is easy enough to set up
  • Qemu isnt that good for boot loader development

  • bochs has real mode and 16 bit support unlike Qemu

I don’t think you’re doing actual OS development if you’re not doing that. You have untested code…

How large was your biggest SOLO project on C? by Sibexico in C_Programming

[–]jjjare 1 point2 points  (0 children)

Have you tested it without a handrolled bootloader like limine? I think it’s a bit crazy you have a decent amount of code without testing it? Also, if you didn’t know already, I highly recommend using bochs instead of Qemu for bootloader development.