THE MONKEY - Official Redband Teaser - In Theaters February 21
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearHU
    HulkSmashBurgers
    5d ago 100%

    SPOILERS The only thing I remember from the 1988 movie was the love scene where the love interest for the main character sits on his face (because he's paralyzed). That made quite an impression on thirteen year old me lol.

    3
  • Release v0.4.1 · florisboard/florisboard
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearHU
    HulkSmashBurgers
    6d ago 100%

    Yeah there there's been some unique Android keyboards over the years. 8pen, fleksy, to name a couple.

    It's a shame that the creators of minuum didn't open source the code when they went out of business.

    3
  • Release v0.4.1 · florisboard/florisboard
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearHU
    HulkSmashBurgers
    7d ago 100%

    I'm currently using florisboard and like it.

    My all time favorite android keyboard was the now defunct minuum. It had really good autocorrect and I got to the point where I could touch type fairly quickly with it. Also because of the way it was designed didn't take up half the screen. Even though I really liked it I eventually stopped using it because I started to care more about my privacy and FLOSS.

    https://m.youtube.com/watch?v=dZh8r-xErGE

    The video doesn't show it but you could expand the keyboard to regular size if you needed to type something specific.

    7
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearUS
    Jump
    Plastic Recycling is a LIE

    Is there a way to export data from the app (saved posts, etc.)? Thanks.

    17
    2
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearGU
    Guix HulkSmashBurgers 1mo ago 100%
    PantherX - A modern operating system based on GNU Guix
    www.pantherx.org
    16
    4
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearGU
    Guix HulkSmashBurgers 7mo ago 77%
    How to connect to protonvpn via openvpn

    Protonvpn has some instructions to connect via openvpn: https://protonvpn.com/support/linux-openvpn/ Where I'm stuck is step 3, where the guide has you download a dns update script into /etc/openvpn. Openvpn doesn't reside in /etc so I'm not sure how to handle that. Any advice? Thanks.

    5
    2
    privacy
    Privacy HulkSmashBurgers 8mo ago 12%
    Nymvpn
    https://nymvpn.com/

    If this ever gets to the point where I can use this by paying cash for access (and not having to deal with cryptocurrency) I would totally give it a try.

    -25
    10
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearGU
    Guix HulkSmashBurgers 10mo ago 88%
    How to luks encrypt raid drive?

    Edit: Turns out for what I'm trying to do (mount luks encrypted raid after start up) only needs the device mapping for the raid drive and not a file-system object. So I luks encrypted the raid and call a script to open the vault and mount it when I need to. ****** In my system config file I added a raid drive like so: ``` (mapped-devices (list (mapped-device (source (uuid "205e5caa-694f-4457-a2a1-8affa3536e75")) (target "guix") (type luks-device-mapping)) (mapped-device (source (list "/dev/sdb1" "/dev/sdc1")) (target "/dev/md0") (type raid-device-mapping)))) (file-systems (cons* (file-system (mount-point "/") (device "/dev/mapper/guix") (type "ext4") (dependencies (list (list-ref mapped-devices 0)))) (file-system (mount-point "/mnt/nas") (device "/dev/md0") (type "ext4") (mount? #f) (dependencies (list (list-ref mapped-devices 1)))) %base-file-systems))) ``` I'd now like to luks encrypt the raid drive but I'm not sure how to go about doing it. Do I simply make a another mapped-device object, specifying the raid drive uuid and "/dev/md0" as the target: ``` (mapped-device (source (uuid {raid uuid})) (target "/dev/md0") (type luks-device-mapping)) ``` and then pass that as a dependency to the raid file system object? Thanks

    7
    6