Live data from Hacker News

Viewing profile — vbitz

vbitz

HN member
Joined
Mon, Mar 11, 2013, 10:58 AM UTC
HN karma
143
Public activity
32 items

About vbitz

No profile information was provided.

Recent public activity

  1. comment
    Comment #46012332

    I think the source code is here? https://github.com/pinheirothiagoj/NMR_Molecular_Eigenmodes_...

  2. comment
    Comment #43662865

    Fault-Tolerant mainframe type systems. https://en.m.wikipedia.org/wiki/NonStop_(server_computers)

  3. comment
    Comment #42607202

    It doesn't seam open source? > The LTE/NR eNodeB/gNodeB software is commercialized by Amarisoft. > A UE simulator is now available. It simulates hundreds of terminals sharing the s…

  4. comment
    Comment #39114896

    What would be great is a language that does to C what TypeScript did to JavaScript. C but with better safety and additional developer ergonomics would be amazing. Part of the probl…

  5. comment
    Comment #38777107

    9p involves a lot of round trips to create/write files. I benchmarked sshfs using fuse vs. 9p in the kernel and sshfs was significantly faster.

  6. comment
    Comment #38455494

    Awesome. Nice and easy to get working as well.

  7. comment
    Comment #37493113

    Because JScript was introduced back in Windows 98 and the modern APIs were introduced 10 years later (in the case of Node.js).

  8. comment
    Comment #36688453

    I’ve done Coremark scores across a range of different systems including NUCs and Pi’s. A Pi 4 gets a single thread score of about 10k and a new entry level NUC gets about 20k. If y…

  9. comment
    Comment #35886333

    It works on desktop Chrome if you emulate a iPhone display and user agent. They're just detecting "add to Home Screen" by looking for window.navigator.standalone which you can manu…

  10. comment
    Comment #35884051

    I completely agree. I've played with VB6 a few times recently and it feels so fast and natural to make a UI compared to modern frameworks. A bit part of it feels like a dedication …

  11. comment
    Comment #35856615

    It's pretty common. Apple Silicon devices (at least) have a BootROM feature to pull a signed boot image over USB which can be used to provision the device from a blank flash.

  12. comment
    Comment #35759453

    Our IT Admins used to post the reports to a Twitter account (with usernames removed). https://twitter.com/moss_sudo

  13. comment
    Comment #35522986

    I experimented with this a while ago but didn’t get very far. The rendering was done into a pixel buffer with inputs being passed though a few relatively simple C++ classes. I thin…

  14. comment
    Comment #34966869

    Depends how your starting the VM. I’ve run Docker on Firecracker with a Raspberry PI 4 before but it needed some fixes. One possibly is if your running directly from a Initramfs wi…

  15. comment
    Comment #34394668

    The question is if the routing table implementation in Windows (I assume inside the kernel) can handle it.

  16. comment
    Comment #34228837

    I’m working on cyber security education this year. As for right now I’m learning more about RISC-V to see how it can be applied in a cyber security oriented teaching environment.

  17. comment
    Comment #34061708

    Not if your only checking 1 possibility rather than a few million. It could take on the order of a few seconds per password in the worst case. Normally a few Milliseconds. So 1,000…

  18. comment
    Comment #32480006

    Very cool looking project. I love their approach to networking which patches the Linux kernel to intercept operations on sockets and defers that to the host. I’ve been working in a…

  19. comment
    Comment #32078745

    You can get something like JTAG from Intel with a NDA. https://designintools.intel.com/Silicon_View_Technology_Clos... Most of the time you can do kernel dev with a serial port and…

  20. comment
    Comment #31845820

    The Nintendo Switch is not Android-based. It runs on a modified version of the 3DS software (Source: https://en.wikipedia.org/wiki/Nintendo_Switch_system_softwar... ).

  21. comment
    Comment #30283268

    Well gVisor uses mostly the same method of system call emulation (PTRACE_SYSEMU). It's also one of the three major projects that use it besides User-mode Linux and rr.

  22. comment
    Comment #30270782

    It looks like Ionic https://ionicframework.com/docs/

  23. comment
    Comment #30132061

    Without additional configuration cgo breaks cross-compilation.

  24. comment
    Comment #29170437

    One of the researchers (@_markel___) put out a tweet with more information > After a year of the coordinated disclosure process, we (+ @h0t_max and @_Dmit ) can finally share: we f…

  25. comment
    Comment #28690778

    It sounds pretty safe. Your only copying rows from one database into another database. Unless you accept arbitrary SQL strings from the user it's not a significant security risk. I…