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/)LO
Posts
2
Comments
8
Joined
4 wk. ago
  • I've been trying exclusively a wired connection to dodgr Bluetooth issues, the controller is detected by the system (it's creating a /dev/input/js0) and the controller vibrates on connecting but the LED is off and no input is received on the laptop's side

  • Nope, xone ain't doing it, it's an Xbox series controller, but it could be related to my laptop hardware being extremely outdated idk, I should've tried it on a different distros, it works ootb on different machines running Arch and Pop

  • Linux @lemmy.ml

    Base installation voidlinux doesn't allow sudo in Xorg

    I installed LXDM and LightDM, I couldn't login from the DM in either cases, so I decided to run LXQt using startx which worked, except I couldn't sudo from the terminal emulator inside LXQt, while I was able to sudo normally in tty, I've tried enabling elogind, nothing changed, my user is in the wheel group and my system is up to date

  • Not even close, Proton is a translation layer from Win32 API to whatever works similar for Linux, SDL just gives a higher level API of lower level stuff, like instead of using Xorg/Wayland directly, you get a nicer cross platform API that does the job well

  • Programming @programming.dev

    How do I post and store binary data correctly in Laravel?

    I have the following migration:

    (Schema::create('user_images',function(Blueprint $table){ $table->id(); $table->binary('image'); $table->unsignedBigInteger('user_id'); $table->foreign('user_id')->references('id')->on('users'); });)

    And the following corresponding model:

    `class UserImage extends Model { protected $fillable=[ 'image' ];

     undefined
            public function user():BelongsTo{
            return $this->belongsTo(User::class);
        }
    
      

    }`

    I am trying to create new UserImage records with UserImage::create but it is always failing, I am sending the image data using curl:

    curl -v -F image=@$1 $URL/api/users -H "Accept: application/json"

    I have tried so many things but I got different SQL-related errors, I am not sure how am I supposed to encode the image data to get them stored, I know that accessing $request->image returns only a temporary path of the image on the HDD.