HackerTrans
トップ新着トレンドコメント過去質問紹介求人

yuumei

no profile record

コメント

yuumei
·3 か月前·議論
Wow that list of commits is brutal. Libre Office is dead. Just another corporate take over of an open source project.
yuumei
·3 か月前·議論
Euro office looking very suspicious here
yuumei
·5 か月前·議論
As are Bedfordshire police: https://libertyinvestigates.org.uk/articles/uk-police-workin...
yuumei
·6 か月前·議論
Note that one of the co-authors of the source is "Claude"
yuumei
·8 か月前·議論
This is a semi joke answer but I have worked at some of the big corps and see how they use OSS software. One way I have continuously thought about to prevent usage is to make all of the variables/function names/APIs contain profanity and PR incorrect jokes. I do know that every single corp has a profanity filter to prevent any bad word being added to code. It’s not bullet-proof but certainly makes it a lot more difficult to get that code on corpo servers and past legal.
yuumei
·8 か月前·議論
That’s my issue with it: iot devices shouldn’t have access to the internet by default. With Matter it’s possible. No one is going to create outbound firewall rules for these things.
yuumei
·9 か月前·議論
Same but I can’t access archive.is either because of the VPN
yuumei
·10 か月前·議論
Worth noting that with RIPA (2000, activated in 2007) UK has enforced key disclosure. It is illegal to fail to disclose a password for any data for any reason (including random data).

I would say the UK has worse privacy than any other country on earth. I'm really hoping for plausible deniability to become more common to help protect against the government.

https://en.wikipedia.org/wiki/Key_disclosure_law#United_King...
yuumei
·11 か月前·議論
> The CAPTCHA forces vistors to solve a problem designed to be very difficult for computers but trivial for humans. > Anubis – confusingly – inverts this idea.

Not really, AI easily automates traditional captchas now. At least this one does not need extensions to bypass.
yuumei
·3 年前·議論
In-case anyone needs it, the following uBlock blocks some of the changes Microsoft made to github, like the cursor and symbol viewer.

  github.com##.code-navigation-cursor
  github.com###symbols-pane:upward(1)
Unfortunately searching is still broken. This greasemonkey script blocks the capture of keyboard shortcuts like / ctrl space:

  keycodes = [191, 17, 32] 
  document.addEventListener('keydown', function(e) {
      if (keycodes.indexOf(e.keyCode) != -1)
      {
          e.cancelBubble = true;
          e.stopImmediatePropagation();
      }
      return false;
  });