Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)E
Posts
2
Comments
324
Joined
6 yr. ago

  • We would be better off if Firefox didn't exist and the EU broke up Google for Anti-trust. At least then Manifest v3.0 DRM might not have come to be.

  • Is it me or is source forge just the mark of dead things.

    I always avoid that place. It feels like where you go to get broken stuff.

    They're gonna take me out back and shoot me for saying it but Launchpad too. Like I'm glad it works for you but it feels like when Debian had a website in 2015 that looked like 1997. How are we going to attract new talent when the rift between the average developers and the old guard widens over time. All the git VCS modernization supercharged development. Like bugzilla was "fine", but " fine" was the problem in a world of better when you couldn't even upload a > 250kb jpeg and other legacy hold us back stuff.

  • The average person doesn't even have a IQ of 100 and we are in a decline. Let it sink in.

  • If you swap it out for Lineage problem solved. I agree & strongly recommend against using a stock Sony ROM. It kind of defeats the point of buying one.

  • There you have it folks. Its expensive and you pay upfront. Most people don't have $1500 laying around to wing at a phone yet alone a $500 emergency budget sadly. Especially these days.

  • Right, like people want to develop wrist pain over a damn phone. 5&6" is hard to come by.

  • Probably because you buy them upfront and online mostly and not from the service providers.

  • 1 II had somebody repack the official camera app on lineage, I'm curious maybe the newers 1 lineups ones got repacked too

  • Flashing Lineage on the 1 II is trivial now compared to a few years ago.

    The stock ROM is loaded with shitware in II III and V.

    The shape is great not too big for the hand.

    The camera is decent, surely better in VI. No stupid AI color boost and faking pictures.

    The price is steep as you know.

    The screens feel like they could have been brighter.

    3.5mm AUX, MicroSD as you know.

    Sony ASOP is about the only thing keeping me interested in their lineups.

    Better than Sam or Apple. But to be honest all cellphones are trash, satellite StarLink phone and others can't happen soon enough or a decent Linux phone.

    Its a solid plan.

  • Fdroid literally says fennec tracks you under "anti-features", did I miss something?

  • When you first saw C++ were you blinded by its majesty?

  • Right, but I'm assuming where the disk drive used to be is just decorative and not a optical disc slot

  • I'm just surprised Pidgin hasn't been rewritten from the ground up by now. Some of the available messengers and logos in the app don't even exist anymore.

  • So they're going to ask the TV manufacturers to install the ban on your privately owned device? 😂😂😂

    Yeah nobody could have seen this coming when they made TVs have a operating system 🤣🤣🤣

    Join with the rest of us in refusing to buy Spy Daddy TVs.

    Boycott HDMI as well. It's not just a Video and Audio cable, it had communication & internet sharing as well, and it's Absolutely Proprietary.

    Why does a monitor need a secret internet connection piggybacked over video? It doesn't.

  • I was incorrect about the aspect ratio it's 3:2 not 16:9 and I think 3:2 is fine especially at 2160x1440p.

    Still with the dialogs on the left and right anything except minimal would make the drawing area small taking the left and right.

    I did notice it on sale, maybe if you have humble expectations it would be okay for sketching, but if you are used to better quality things or larger draw surfaces you might not be easily impressed.

  • Excellent, did my test config last month for a friend, I was having trouble on bare metal even though I typically prefer, and in this sense it was nice to have a image I could turn on and off as needed easily.

  • I was kind of turned off by the keeb* being sold separately, also wasnt the aspect ratio meh.

    Rule of thumb larger screen or surface means more fluid strokes, thus smaller screen means more fine motor skills and more tension in the hand and less* fluidity in the work.

  • Assume I'm an amature and bad at this ;P

    In any case you might try a docker-compose.yml

     
        
    version: "3.8"
    # Compose file build variables set in .env
    services:
      supervisor:
        platform: linux/amd64
        build:
          context: ./build
          args:
            PYTHON_VERSION: ${PYTHON_VERSION:-3.10}
            PYTORCH_VERSION: ${PYTORCH_VERSION:-2.2.2}
            WEBUI_TAG: ${WEBUI_TAG:-}
            IMAGE_BASE: ${IMAGE_BASE:-ghcr.io/ai-dock/python:${PYTHON_VERSION:-3.10}-cuda-11.8.0-base-22.04}
          tags:
            - "ghcr.io/ai-dock/stable-diffusion-webui:${IMAGE_TAG:-cuda-11.8.0-base-22.04}"
            
        image: ghcr.io/ai-dock/stable-diffusion-webui:${IMAGE_TAG:-cuda-11.8.0-base-22.04}
        
        devices:
          - "/dev/dri:/dev/dri"
          # For AMD GPU
          #- "/dev/kfd:/dev/kfd"
        
        volumes:
          # Workspace
          - ./workspace:${WORKSPACE:-/workspace/}:rshared
          # You can share /workspace/storage with other non-WEBUI containers. See README
          #- /path/to/common_storage:${WORKSPACE:-/workspace/}storage/:rshared
          # Will echo to root-owned authorized_keys file;
          # Avoids changing local file owner
          - ./config/authorized_keys:/root/.ssh/authorized_keys_mount
          - ./config/provisioning/default.sh:/opt/ai-dock/bin/provisioning.sh
        
        ports:
            # SSH available on host machine port 2222 to avoid conflict. Change to suit
            - ${SSH_PORT_HOST:-2222}:${SSH_PORT_LOCAL:-22}
            # Caddy port for service portal
            - ${SERVICEPORTAL_PORT_HOST:-1111}:${SERVICEPORTAL_PORT_HOST:-1111}
            # WEBUI web interface
            - ${WEBUI_PORT_HOST:-7860}:${WEBUI_PORT_HOST:-7860}
            # Jupyter server
            - ${JUPYTER_PORT_HOST:-8888}:${JUPYTER_PORT_HOST:-8888}
            # Syncthing
            - ${SYNCTHING_UI_PORT_HOST:-8384}:${SYNCTHING_UI_PORT_HOST:-8384}
            - ${SYNCTHING_TRANSPORT_PORT_HOST:-22999}:${SYNCTHING_TRANSPORT_PORT_HOST:-22999}
       
        environment:
            # Don't enclose values in quotes
            - DIRECT_ADDRESS=${DIRECT_ADDRESS:-127.0.0.1}
            - DIRECT_ADDRESS_GET_WAN=${DIRECT_ADDRESS_GET_WAN:-false}
            - WORKSPACE=${WORKSPACE:-/workspace}
            - WORKSPACE_SYNC=${WORKSPACE_SYNC:-false}
            - CF_TUNNEL_TOKEN=${CF_TUNNEL_TOKEN:-}
            - CF_QUICK_TUNNELS=${CF_QUICK_TUNNELS:-true}
            - WEB_ENABLE_AUTH=${WEB_ENABLE_AUTH:-true}
            - WEB_USER=${WEB_USER:-user}
            - WEB_PASSWORD=${WEB_PASSWORD:-password}
            - SSH_PORT_HOST=${SSH_PORT_HOST:-2222}
            - SSH_PORT_LOCAL=${SSH_PORT_LOCAL:-22}
            - SERVICEPORTAL_PORT_HOST=${SERVICEPORTAL_PORT_HOST:-1111}
            - SERVICEPORTAL_METRICS_PORT=${SERVICEPORTAL_METRICS_PORT:-21111}
            - SERVICEPORTAL_URL=${SERVICEPORTAL_URL:-}
            - WEBUI_BRANCH=${WEBUI_BRANCH:-}
            - WEBUI_FLAGS=${WEBUI_FLAGS:-}
            - WEBUI_PORT_HOST=${WEBUI_PORT_HOST:-7860}
            - WEBUI_PORT_LOCAL=${WEBUI_PORT_LOCAL:-17860}
            - WEBUI_METRICS_PORT=${WEBUI_METRICS_PORT:-27860}
            - WEBUI_URL=${WEBUI_URL:-}
            - JUPYTER_PORT_HOST=${JUPYTER_PORT_HOST:-8888}
            - JUPYTER_METRICS_PORT=${JUPYTER_METRICS_PORT:-28888}
            - JUPYTER_URL=${JUPYTER_URL:-}
            - SERVERLESS=${SERVERLESS:-false}
            - SYNCTHING_UI_PORT_HOST=${SYNCTHING_UI_PORT_HOST:-8384}
            - SYNCTHING_TRANSPORT_PORT_HOST=${SYNCTHING_TRANSPORT_PORT_HOST:-22999}
            - SYNCTHING_URL=${SYNCTHING_URL:-}
            #- PROVISIONING_SCRIPT=${PROVISIONING_SCRIPT:-}
    
      

    install.sh

     
        
    sudo pacman -S docker
    sudo pacman -S docker-compose
    
      

    update.sh

     
        
    #!/bin/bash
    # https://stackoverflow.com/questions/49316462/how-to-update-existing-images-with-docker-compose
    
    sudo docker-compose pull
    sudo docker-compose up --force-recreate --build -d
    sudo docker image prune -f
    
      

    start.sh

     
        
    #!/bin/bash
    sudo docker-compose down --remove-orphans && sudo docker-compose up
    
      
  • Docker seemed the easiest