hardful9856

joined 8 months ago
[–] hardful9856@programming.dev 0 points 2 weeks ago (2 children)

Thanks for the explanation. Is this app open source?

[–] hardful9856@programming.dev 1 points 2 weeks ago (4 children)

How is it compared to other p2p messaging apps

[–] hardful9856@programming.dev 1 points 2 weeks ago* (last edited 2 weeks ago)
[–] hardful9856@programming.dev 1 points 2 weeks ago

Try this https://github.com/DimensionDev/Flare, it supports nostr, rss and more

[–] hardful9856@programming.dev 1 points 2 weeks ago

I know this is an old post, but there are better options now.

Try this https://github.com/DimensionDev/Flare, it supports nostr, rss and more

[–] hardful9856@programming.dev 1 points 2 weeks ago

I know this is an old post, but there are better options now.

Try this https://github.com/DimensionDev/Flare, it supports nostr, rss and more

[–] hardful9856@programming.dev 1 points 2 weeks ago

Is it open source?

 

cross-posted from: https://programming.dev/post/50677034

Hi everyone,

I’m looking for recommendations for an Android Fediverse client that does not send user-agent information (device or client details) to servers. Ideally, it should support both Mastodon and Lemmy, or other Fediverse platforms as well.

 

cross-posted from: https://programming.dev/post/50677034

Hi everyone,

I’m looking for recommendations for an Android Fediverse client that does not send user-agent information (device or client details) to servers. Ideally, it should support both Mastodon and Lemmy, or other Fediverse platforms as well.

 

Hi everyone,

I’m looking for recommendations for an Android Fediverse client that does not send user-agent information (device or client details) to servers. Ideally, it should support both Mastodon and Lemmy, or other Fediverse platforms as well.

 

cross-posted from: https://programming.dev/post/50510771

USB Copy “No Permission” Error When Mirroring

Has anyone encountered this error before?

File "1-01 music_name.mp3" in task "music" failed [File/Folder Error]
Task "music" failed: [Execution failed]. Files were only partially copied.

I have tried giving permission to the music folder but this error still exists.

I would greatly appreciate any help.

 

https://kb.synology.com/en-global/DSM/tutorial/Docker_container_cant_access_the_folder_or_file#x_anchor_idcd3f1170a3

Why allow "everyone" to have read write permission to shared folders in order to run container manager? Wouldn't this be insecure?

 

https://kb.synology.com/en-global/DSM/tutorial/Docker_container_cant_access_the_folder_or_file#x_anchor_idcd3f1170a3

Why allow "everyone" to have read write permission to shared folders in order to run container manager? Wouldn't this be insecure?

 

cross-posted from: https://programming.dev/post/50318205

This is my compose file for syncthing

services:
  syncthing:
    image: syncthing/syncthing:latest
    container_name: syncthing
    hostname: syncthing-nas
    environment:
      - PUID=1026
      - PGID=100
      - TZ=Etc/UTC
    volumes:
      - ./config:/var/syncthing/config 
      - /path/to/data:/var/syncthing
    network_mode: host
    restart: unless-stopped
    healthcheck:
      test: curl -fkLsS -m 2 127.0.0.1:8384/rest/noauth/health | grep -o --color=never
        OK || exit 1
      interval: 1m
      timeout: 10s
      retries: 3
networks: {}

Running it give me this error

syncthing  | ERR Failed to ensure directory exists (error="mkdir /var/syncthing/config: permission denied" log.pkg=main)
syncthing exited with code 1
syncthing  | ERR Failed to ensure directory exists (error="mkdir /var/syncthing/config: permission denied" log.pkg=main)
syncthing exited with code 1

This is permission issue with ./config:/var/syncthing/config

I have indeed messed up with folder and file permission for path/to/syncthing/config

I tried to fix it with

chown 1026:100 -R /volume1/docker3/syncthing
chmod 777 -R /volume1/docker3/syncthing

But it didn't work

I have also tried to change permission using synology GUI but still fail to run the docker compose

I would greatly appreciate any help.

 

This is my compose file for syncthing

services:
  syncthing:
    image: syncthing/syncthing:latest
    container_name: syncthing
    hostname: syncthing-nas
    environment:
      - PUID=1026
      - PGID=100
      - TZ=Etc/UTC
    volumes:
      - ./config:/var/syncthing/config 
      - /path/to/data:/var/syncthing
    network_mode: host
    restart: unless-stopped
    healthcheck:
      test: curl -fkLsS -m 2 127.0.0.1:8384/rest/noauth/health | grep -o --color=never
        OK || exit 1
      interval: 1m
      timeout: 10s
      retries: 3
networks: {}

Running it give me this error

syncthing  | ERR Failed to ensure directory exists (error="mkdir /var/syncthing/config: permission denied" log.pkg=main)
syncthing exited with code 1
syncthing  | ERR Failed to ensure directory exists (error="mkdir /var/syncthing/config: permission denied" log.pkg=main)
syncthing exited with code 1

This is permission issue with ./config:/var/syncthing/config

I have indeed messed up with folder and file permission for path/to/syncthing/config

I tried to fix it with

chown 1026:100 -R /volume1/docker3/syncthing
chmod 777 -R /volume1/docker3/syncthing

But it didn't work

I have also tried to change permission using synology GUI but still fail to run the docker compose

I would greatly appreciate any help.

view more: next ›