Hacker News new | past | comments | ask | show | jobs | submit | G1N's comments login

The "Features" and "Community" links don't navigate/ scroll anywhere for me. Using Chrome 133 arm64 on macOS.

As an aside, is it just me or do a lot of these new project management apps coopt Linear's style? Not saying that this is completely derivative, the website just gave me those vibes (and I won't sign up to try out the demo so maybe some screenshots on the front page would be nice :P)


Hey, thank for your feedback. This product wasn't meant to be posted since it's under heavy development. I will add some more screenshots and make the demo possible without signing up.


Seems like Python support is up next for this project: https://github.com/anistark/feluda/pull/18


Would you be open to a PR adding support for installing from npm? Not sure if you guys are willing/ comfortable to publish there as well, but did notice you already have Node support for scanning


They're saying PRs and issues but I can't access github.com or github oauth for logging into external services. Need to migrate our org off of using github auth for anything critical I think, this is twice so far this year that we've had these issues.


Was trying to install homebrew on a device and kept wtfing because the clone step kept failing… thought I was crazy


happy new year HN :)


Very different from everyone here I think, but we’re currently running into weird artifact eviction issues in our GitHub actions pipelines ( our fault for using GitHub CI, I’m aware lol). We’ve set up some CLI tools to help with this (basically scanning artifacts and freeing on some LRU basis), but I’d really like some tool that lets me view artifact creation stats across an entire GitHub org to figure out which teams’ actions need to be throttled. Not sure if that’s in scope at all for your project but throwing it out there nonetheless


Had an old roommate who moved here after getting married to be closer to family. Weirdly, the name never at any point came up so I think everyone is just kind of resigned to the fact that they live in a place called Cumming


Former guy who used to reverse engineer Venmo/ other fintech/ bank APIs here. They really don’t care most of the time


Current fintech employee and former fintech employee, not true at all - but glhf!


Maybe this time unfortunately.


Based on the other replies here it seems like it's to differentiate taps vs mouse clicks, keyboard events in js don't have a screenX or screenY property (you can run this in your browser console on this HN post to confirm):

  (() => {
    const logEvent = event => console.log({
      coords: [event.screenX, event.screenY],
      type: event.type
    });
    const input = document.querySelector("textarea");
    // use "keydown" instead of "keypress" to detect all keyboard input instead of just character producing input 
    input.addEventListener("keydown", logEvent);
    input.addEventListener("click", logEvent);
  })();
Type in or click on the reply text input and you'll see that the coords array is undefined for all keyboard events. I haven't tried this equivalent on a touch device however, so not sure how it's handled there.


Join us for AI Startup School this June 16-17 in San Francisco!

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

Search: