[–] 5 points 1 week ago (1 child)

Technically, possible, but realistically, not much of a concern. You probably know better than anyone else as to whether you are that much of a person of interest that it warrants an attacker who is motivated enough to:

  • Figure out that you are interested in a GrapheneOS phone
  • Put up an offer and somehow ensure you buy that
  • Rebuild GrapheneOS and load a malicious one into it and hope you don't reinstall one, or use a really fancy trick that it persists across wipes

If it still bothers you, you can install it yourself. GrapheneOS has a web installer through which you can install GrapheneOS. It's really weird how your browser can access all that, but yeah, you can install it within a website and a phone plugged into that computer. Once you do it yourself, I really doubt there's anything malicious left.

  • source
  • [–] 1 point 1 week ago (2 children)

    I just tried generating an image of a ruler obscured by an object, and it seems to struggle with how much should be obscured (e.g. only 5in should be obscured but the number shows that there's 8 inches behind it).

    I remember how light reflection should converge exactly to a single point. I can't find a blog post, but it was definitely there too.

  • source
  • parent
  • context
  • [–] 2 points 1 week ago*

    It already exists in the wild and has been like that since like early 2000s (or even before that as well, but I don't know). There are plugins that bypasses those. Ultimately, you're trying to control what should be readable to the computer, which has not worked well for anyone determined enough. Besides, blocking the ability to right click/select would not work against AI training at all, even without those bypasses.

  • source
  •  

    Every exam, they give out a mechanical pencil with a unique colour every year. There's minor obsession around them, with news articles discussing this year's pencil design and colour. People like to collect them, though I haven't seen a person with more than 4 IRL.

     

    Hello. I created a community that is intended to replicate a subreddit I always enjoyed going through. This community is intended to be a more specialised version of asklemmy where you ask questions for which the answers are (hopefully) heavily dependent on where you're from. We do allow politics for now, but it cannot solely focus on a single country. ("Who is the most hated president in your country" is allowed, but "what do you think of <a politician>" is not)

    https://sh.itjust.works/c/AskTheWorld

     

    My first language is Korean, and one rule no one gets right is the spacing. It seems pretty obvious in English and many other languages, but in Korean, there are things that look like a single word but is actually two separate words (and vice versa), particles which needs to be written without spacing, and some other rules that makes it confusing. It's bad enough that one of the former director of the National Institute of Korean Language confessed he's not confident about it either.

    submitted 4 months ago* (last edited 4 months ago) by to c/hatsunemiku@lemmy.world
     

    I've just been to Ilsan comic world event, and holy shit there were SO MANY OF THEM! There was at least one Miku stuff at just about every single stall, and choosing which to buy was really hard. A lot of high quality cosplayers too, and I took photo with them too. I did dress a bit too as Kagamine Len, but I really got to work on makeup. A lot.

    One of the stalls was selling her ID card alongside many, many other people 😭 literal identity theft

     

    Requirements: moreutils, which contains vipe command, Wayland for clipboard. vipe is a command that takes in text, creates a temporary file with that text, and prints the content in the editor when it closes.

    Code:

    # Change editor if necessary. Also see the notes below.
    # export EDITOR="kate -b"
    wl-paste | vipe | wl-copy -n 2>/dev/null
    

    How it works:

    wl-paste: Gets your clipboard content, and print that

    vipe: Gets the printed clipboard content, open an editor pre-filled with it

    wl-copy: Gets the edited result, add it back to your clipboard without the newline at the end


    Notes:

    You must save the content in the editor before quitting.

    The editor must not run detached. Otherwise, vipe thinks the editor is done editing, and does nothing. For example, use environment variable EDITOR="kate -b" (flag to make kate to run in blocking mode) to use kate for editing your clipboard.

    Rotate PDF (sh.itjust.works)
     

    Requirements: pdfjam. Looks like some major projects depend on this? I never knew this was installed on my laptop.

    Code:

    pdfjam --outfile "$@" --angle 270 --fitpaper true --rotateoversize true "$@" # Clockwise
    pdfjam --outfile "$@" --angle 90 --fitpaper true --rotateoversize true "$@" # Anti-clockwise
    

    Note: For some reason, rotating the document and reverting it (or doing it 4 times) gets you a different hash.

    Bonus: Add this to Yazi config for this:

    Rotate options in Yazi

    [[open.rules]]
    url = "*.pdf"
    use = ["pdf"]
    
    # ...
    
    [[opener.pdf]]
    desc = "Rotate Clockwise"
    orphan = true
    run = "pdfjam --outfile \"$@\" --angle 270 --fitpaper true --rotateoversize true \"$@\""
    
    [[opener.pdf]]
    desc = "Rotate Anticlockwise"
    orphan = true
    run = "pdfjam --outfile \"$@\" --angle 90 --fitpaper true --rotateoversize true \"$@\""
    
    
    view more: next β€Ί