Live data from Hacker News

Viewing profile — hackworks

hackworks

HN member
Joined
Mon, Mar 15, 2010, 3:40 AM UTC
HN karma
199
Public activity
23 items

About hackworks

Less is more

Recent public activity

  1. comment
    Comment #23539272

    Did you install XP first or Linux? The prescribed order was to install XP and then Linux on a different device/partition. Linux would install Grub or LILO in MBR with dual boot opt…

  2. comment
    Comment #22916067

    Most common use case for concurrency is for IO intensive workloads. When it comes down to IO, programming language hardly matters. If you have CPU intensive workload, an optimizing…

  3. comment
    Comment #22546102

    The intermittent disruption of services is death by 1000 cuts. Read the Zynga story. http://wrongtool.kostadis.com/firewalls-killed-zynga/

  4. comment
    Comment #22298731

    Well, there is a well defined pattern using configure and make. When very complex builds like GNU Emacs and operating systems have done quite well with this pattern, I wonder what …

  5. comment
    Comment #21955654

    NetApp has a very interesting implementation RW spin lock inside the kernel. I tried optimizing to make it more fair for writers by introducing a single variable that would be chec…

  6. comment
    Comment #21955447

    Not an expert here. In a spin lock, the lock state is checked in a tight loop by all waiters. This will be using some sort of memory fence. FWIK, memory fence or barriers flush the…

  7. comment
    Comment #21955335

    Most software companies I have worked for, encourages filing patents just to build their arsenal and increase their market value in times of acquisitions or patent wars. They are n…

  8. comment
    Comment #21955280

    That was my resolution a couple of months back. Signed off from Facebook, Instagram, Twitter and Reddit (never was on any other platform making crazy things with your snaps). Retai…

  9. comment
    Comment #21900326

    Analogous to “putting all eggs in a single basket”, the risks are very high. You end up becoming hyper sensitive at work, start taking everything personal -well, it is your identit…

  10. comment
    Comment #21879060

    Schools and colleges should ideally be a place for creativity, free thinkers and open by default. Using surveillance and improving attendance through fear tactics is not going to h…

  11. comment
    Comment #21865266

    Thank you very much for the wonderful and very insightful article. Developing the humility and truly believing that we are all snowflakes and willingness to learn from the diversit…

  12. comment
    Comment #21692871

    eBPF can be viewed as a mechanism to safely run user code in kernel since it uses a DSL and a compiler before the byte code is executed in kernel. This opens up doors for running p…

  13. comment
  14. comment
    Comment #21678037

    Thank you for the link. I am at a juncture where I need to relearn some of the basics to help my higher school going daughter. The book on math and physics was exactly something I …

  15. comment
    Comment #21400282

    That is my understanding too. Solaris had a flag for dldump ( https://docs.oracle.com/cd/E19455-01/806-0627/6j9vhfmop/inde... ). Emacs moved to a portable dumper (maybe inspired fr…

  16. comment
    Comment #21301672

    Almost every language supporting inheritance suffers from lack of ability to check if an error is part of the derivation chain. I have implemented this using expensive dynamic cast…

  17. comment
    Comment #21172348

    GCC uses intrinsic functions when available during compilation. It does optimize for a specific architecture. Is there something beyond this you are referring to?

  18. comment
    Comment #21075167

    BerkeleyDB: Computer language??

  19. comment
    Comment #21026683

    I went through the process of tearing away from Chrome. I only aspect that was holding me back was my stored passwords in Chrome and shared seamlessly with Android password manager…

  20. comment
    Comment #20993950

    Twitter has become a breeding ground for mobs and unjustified moral policing. I started following people based on the technical work they have done and was hoping to learn or get i…

  21. comment
    Comment #20866815

    I think it again falls into kernel versus whole system. Releasing an update to the whole system is more work than releasing the kernel. Little orthogonal: It sort of rhymes with th…

  22. comment
    Comment #20743139

    During my undergrad (Mechanical) years (mid 90s), we had 1 computer running MS Windows 3.1 (IIRC). We had a demo version of Encarta and it had a huge (by 90s standard) collection o…

  23. comment
    Comment #20692022

    Very nice to see this trend on HN. I have been using croot as a REPL for C/C++ for close to a decade.