HackerTrans
TopNewTrendsCommentsPastAskShowJobs

h43z

no profile record

Submissions

ImageMagick: From Arbitrary File Read to File Write in Every Policy

pwn.ai
1 points·by h43z·vor 3 Monaten·0 comments

Show HN: Localhorst – Websites Hosted in the Browser

localhorst.43z.one
3 points·by h43z·vor 7 Monaten·2 comments

A Replacement for the Mouse in Linux

github.com
5 points·by h43z·vor 11 Monaten·0 comments

A small change to improve browsers for keyboard navigation

b.43z.one
207 points·by h43z·vor 11 Monaten·68 comments

Ask HN: Are SSH keys with passphrases considered 2FA?

3 points·by h43z·vor 11 Monaten·1 comments

comments

h43z
·letzten Monat·discuss
Today frontier models became Groypers.
h43z
·vor 7 Monaten·discuss
Right click, view source?
h43z
·vor 7 Monaten·discuss
Firefox is really in a sad state. The politics, ideology is getting worse and the tech is still bad. Kind of crazy that they waste everyones battery and cpu https://b.43z.one/2025-02-12/

Am I the one who is crazy and nitpicking here?
h43z
·vor 7 Monaten·discuss
Did I understand that correctly that I will be able to get a certificate for an IP?
h43z
·vor 11 Monaten·discuss
I recently wanted to find out which company crawls the deepest. The openAI bot was the most thorough one, it followed 405 links [1].

[1] https://deep.43z.one
h43z
·vor 11 Monaten·discuss
Doesn't feel like much of an explanation to me.

  # UMASK is the default umask value for pam_umask and is used by
  # useradd and newusers to set the mode of the new home directories.
  # 022 is the "historical" value in Debian for UMASK
  # 027, or even 077, could be considered better for privacy
  # There is no One True Answer here : each sysadmin must make up his/her
  # mind.
h43z
·vor 11 Monaten·discuss
Can someone explain why we are still using a umask of 022 in ubuntu and debian?

Would it really be so hard to make that switch to a more privacy focused umask?
h43z
·vor 11 Monaten·discuss
The span one is the important one though as most of the modern web does not use <button> anymore.
h43z
·vor 11 Monaten·discuss
I don't see it working on firefox for buttons but on chrome. Both don't work on other html elements (div,span,..).
h43z
·vor 11 Monaten·discuss
I used to use vimium (and tried similar extensions) but it always scared me how big the codebase was for most of the popular extensions. In the end I came up with a tiny extension for just the things I need https://github.com/h43z/jkscroll
h43z
·vor 11 Monaten·discuss
This works on links and buttons in chrome. In firefox just on links. In both it doesn't work for other html elements.
h43z
·vor 11 Monaten·discuss
The links yes, but what about buttons or other html elements?
h43z
·vor 12 Monaten·discuss
If you want to navigate websites more with your keyboard I created a dead simple extension. All it injects is this tiny snippet into each site.

    addEventListener('keydown', event => {
      if(event.key !== 'Enter')
        return
    
      elementWithSelection = getSelection().anchorNode?.parentElement
    
      if(!elementWithSelection)
        return
    
      elementWithSelection.click()
      getSelection().empty()
    })
This allows you to use the native CTRL+f and / search basically like the ' search.

The ' search let's you "click" on links by pressing enter.

The snippet let's you do the same for the other searches too so you can navigate the modern web where often navigations and actions are behind buttons and sometimes even divs (not just links). Unfortunately you can't activate those without this little hack.

The extension will be available at https://addons.mozilla.org/en-US/firefox/addon/click-on-sele... soon (after mozilla approves).

I use this trick in a slightly bigger extension too https://github.com/h43z/jkscroll/blob/main/content-script.js...