HackerTrans
TopNewTrendsCommentsPastAskShowJobs

h43z

no profile record

Submissions

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

pwn.ai
1 points·by h43z·قبل 3 أشهر·0 comments

Show HN: Localhorst – Websites Hosted in the Browser

localhorst.43z.one
3 points·by h43z·قبل 7 أشهر·2 comments

comments

h43z
·الشهر الماضي·discuss
Today frontier models became Groypers.
h43z
·قبل 7 أشهر·discuss
Right click, view source?
h43z
·قبل 7 أشهر·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
·قبل 7 أشهر·discuss
Did I understand that correctly that I will be able to get a certificate for an IP?
h43z
·قبل 12 شهرًا·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...