Live data from Hacker News

Viewing profile — faresahmed

faresahmed

HN member
Joined
Thu, Sep 07, 2023, 10:45 PM UTC
HN karma
192
Public activity
26 items

About faresahmed

bakhit.net

You know how to send me an e-mail.

Recent public activity

  1. comment
    Comment #49216899

    Sorry for nitpicking but the logical inverse of this statement is the stronger and more appropriate version: If some app does not respond in 10ms or less, it is not interactive.

  2. comment
    Comment #49058748

    Another comment already explains that this is regular method overriding in Python. Surely, some languages call user-defined operators 'Operator overloading' (e.g. C#) but the mecha…

  3. comment
    Comment #47496962

    Take a look at https://contextgeneric.dev , it's as close as one can get to solving this issue without modifying rustc.

  4. comment
  5. story
  6. comment
    Comment #46222735

    I think that it's a generic programming problem: pointers are easier because the type of the pointee is easy to get (a deref) and also its location (memory) but with index-based ha…

  7. comment
    Comment #44780916

    Off topic, but Notion is a perfect example of how badly you can abuse web standards. This webpage, which is a document with some markup and links (the very thing the web was made f…

  8. story
  9. comment
    Comment #44222637

    Not to disagree with you, but even C++ is going through great efforts to improve compile-times through C++20 modules and C++23 standard library modules (import std;). Although no c…

  10. comment
    Comment #44109527

    Makes you wonder, how many webpages are dependant on such services. The Web has always been brittle, but it's a little sad seeing a website not able to survive ~50k users on its fi…

  11. comment
    Comment #44078110

    Not so much, >>> s="1"+"0"*4300 >>> json.loads(s) ... ValueError: Exceeds the limit (4300 digits) for integer string conversion: value has 4301 digits; use sys.set_int_max_str_digi…

  12. comment
    Comment #44020449

    It has been kind of made into a movie! The Heptapods [0] in Arrival (2016) written script is a circular shape with each subsection of the shape conveying a different meaning ultima…

  13. comment
    Comment #43962715

    I'm not quiet sure why a non-technical person would be engaging in a technical matter such as compiling LLVM, they say they are involved with some Arch Linux derivative but again t…

  14. comment
    Comment #43928720

    Same here, the title even says "TypeScript" not "Typescript" but whatever. I think what's somehow interesting about this is in the footer of the page: Autonomously crafted in 15m 4…

  15. story
    Show HN: Vole Machine ISA Simulator

    Just sharing this project [0] I've worked on a while ago, it's not that interesting but I was proud of making it. It has a CLI and a GUI that is done with Dear ImGui and includes a…

  16. comment
    Comment #42630674

    I disagree, many businesses that put their software in maintenance mode (fix/upgrade on breakage) will be losing money in the long run. Consider a hospital, many statistics can be …

  17. story
  18. story
  19. comment
    Comment #41545025

    Excel can also send mail through VBA scripts, thus satisfying Zawinski's Law[1]. [1] http://www.catb.org/jargon/html/Z/Zawinskis-Law.html

  20. comment
    Comment #41509847

    Reminds me of Linus' comments[1][2] on pull requests in the kernel's GitHub mirror. The fact that you can't disable pull requests give the impression that it's mandatory to allow a…

  21. comment
    Comment #41410571

    Funnily enough, even the "dark mode toggle" icon in the blog is not aligned correctly with the navbar text. https://imgur.com/a/1xSCMWb

  22. comment
    Comment #40400741

    IMO separation of interface and implementation is one of the "good" things about C/C++ (I used to be confused about it when starting out), it gives you a good overview of a piece o…

  23. comment
    Comment #40110345

    Sorry, I know the post has fell off the Show HN page but for historical purposes I thought junior meant a first-year studnet (How isn't it?!!). I'm actually a freshman, this is my …

  24. story
    Show HN: Ayin – An open-source photo editing software

    Hello HN, I'm Fares A. Bakhit a junior CS student at Cairo University and I'm happy to announce my latest project, "Ayin" is an open-source photo editing software available on Wind…

  25. comment
    Comment #38550375

    Amazing to see RustPython being used in the wild. I wonder why they are using it. Is it easier to sandbox? smaller memory footprint than CPytohn and PyPy? just because it's cool?