HackerTrans
TopNewTrendsCommentsPastAskShowJobs

yuumei

no profile record

comments

yuumei
·3 miesiące temu·discuss
Wow that list of commits is brutal. Libre Office is dead. Just another corporate take over of an open source project.
yuumei
·3 miesiące temu·discuss
Euro office looking very suspicious here
yuumei
·5 miesięcy temu·discuss
As are Bedfordshire police: https://libertyinvestigates.org.uk/articles/uk-police-workin...
yuumei
·5 miesięcy temu·discuss
Note that one of the co-authors of the source is "Claude"
yuumei
·7 miesięcy temu·discuss
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 miesięcy temu·discuss
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 miesięcy temu·discuss
Same but I can’t access archive.is either because of the VPN
yuumei
·10 miesięcy temu·discuss
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 miesięcy temu·discuss
> 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 lata temu·discuss
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;
  });