Override4414

joined 2 weeks ago
 

Is there a feature similar to Tab Stash or OneTab in browsers that works in Obsidian? So I can click a button and stash all my currently opened tabs into a side bar

If not then this would be a great feature to implement

[–] Override4414@lemmy.world 1 points 4 days ago

is there a default settings for save session on exit?

[–] Override4414@lemmy.world 1 points 4 days ago

i think the problem is browser.sessionstore

[–] Override4414@lemmy.world 1 points 4 days ago

is there a way to save session on exit without using plugins? (both normal close firefox and exit on crash?)

[–] Override4414@lemmy.world 2 points 4 days ago

browser.sessionstore.interval

thankyou ! i guess browser.sessionstore.interval is the problem here

 

Firefox/LibreWolf doesn't restore the newly saved previous tabs on close and open; it restores an earlier version of the tabs

So when I close and open my firefox/librewolf, the tabs restore is the tabs about 2minutes ago

Any fixes?

 

Self Hosted Youtube Indivious vs viewtube

which is better? Or they do different things and I should host them both?

[–] Override4414@lemmy.world 0 points 5 days ago

I do have learnt a lot but I haven't solved the problem 😱 🤓 🫠

[–] Override4414@lemmy.world 1 points 5 days ago* (last edited 5 days ago) (1 children)
SN_FR_@SN:~$ sudo docker exec -it searxng sh -c "id"
uid=0(root) gid=0(root) groups=0(root)

container is running as root, so there shouldn't be any permission error?

u are right its not writable, the files are read only, that is wierd

I'm opening those files with windows but the user permission inside docker shouldn't cause that problem.

I'm scratching my head nw

[–] Override4414@lemmy.world 1 points 5 days ago

it allows bulk scrap from a lists of websites? Do I need to fetch all the websites from lotr sites and use this plugin to download them one by one?

[–] Override4414@lemmy.world 1 points 5 days ago (3 children)

u are right its not writable, the files are read only, that is wierd

 

I hosted searxng on portainer and receive PermissionError and no python application found error

Log:

PermissionError: [Errno 13] Permission denied: '/etc/searxng/settings.yml'

unable to load app 0 (mountpoint='') (callable not found or import error)

*** no app loaded. going in full dynamic mode ***

***
no python application found, check your startup logs for errors
***

[pid: 19|app: -1|req: -1/1] 127.0.0.1 () {28 vars in 330 bytes} [Sat May 17 05:06:00 2025] HEAD /healthz => generated 21 bytes in 0 msecs (HTTP/1.1 500) 3 headers in 102 bytes (0 switches on core 0)

I tried removing cap_drop (as instructed on https://github.com/searxng/searxng-docker/issues/115) but no luck

version: "3.7"

services:
  # caddy:
  #   container_name: caddy
  #   image: docker.io/library/caddy:2-alpine
  #   network_mode: host
  #   restart: unless-stopped
  #   volumes:
  #     - ./Caddyfile:/etc/caddy/Caddyfile:ro
  #     - caddy-data:/data:rw
  #     - caddy-config:/config:rw
  #   environment:
  #     # - SEARXNG_HOSTNAME=${SEARXNG_HOSTNAME:-http://localhost/}
  #     - SEARXNG_TLS=${LETSENCRYPT_EMAIL:-internal}
  #   cap_drop:
  #     - ALL
  #   cap_add:
  #     - NET_BIND_SERVICE
  #   logging:
  #     driver: "json-file"
  #     options:
  #       max-size: "1m"
  #       max-file: "1"

  redis:
    container_name: redis
    image: docker.io/valkey/valkey:8-alpine
    command: valkey-server --save 30 1 --loglevel warning
    restart: unless-stopped
    networks:
      - searxng
    volumes:
      - valkey-data2:/data
    # cap_drop:
    #   - ALL
    cap_add:
      - SETGID
      - SETUID
      - DAC_OVERRIDE
    logging:
      driver: "json-file"
      options:
        max-size: "1m"
        max-file: "1"

  searxng:
    container_name: searxng
    image: docker.io/searxng/searxng:latest
    restart: unless-stopped
    networks:
      - searxng
    ports:
      # - "127.0.0.1:8080:8080"
      - "20054:8080"
    volumes:
      - ./searxng:/etc/searxng:rw
    environment:
      # - SEARXNG_BASE_URL=https://${SEARXNG_HOSTNAME:-localhost}/
      - SEARXNG_BASE_URL="http://mydomain:20054/"
      - UWSGI_WORKERS=${SEARXNG_UWSGI_WORKERS:-4}
      - UWSGI_THREADS=${SEARXNG_UWSGI_THREADS:-4}
    # cap_drop:
    #   - ALL
    cap_add:
      - CHOWN
      - SETGID
      - SETUID
    logging:
      driver: "json-file"
      options:
        max-size: "1m"
        max-file: "1"

networks:
  searxng:

volumes:
  # caddy-data:
  # caddy-config:
  valkey-data2:

thx a lot!

[–] Override4414@lemmy.world 1 points 5 days ago (1 children)

I think I do have permission to the directory?

~ # ls -la /etc/searxng
total 72
drwx------    1 1026     100             42 May 17 04:49 .
drwxr-xr-x    1 root     root           494 May 17 05:24 ..
----------    1 root     root         68667 May 17 04:49 settings.yml
----------    1 root     root          1223 May 17 04:49 uwsgi.ini

___

[–] Override4414@lemmy.world 1 points 5 days ago (1 children)
~ # ls /etc/searxng
settings.yml  uwsgi.ini
~ # cat settings.yml
cat: can't open 'settings.yml': No such file or directory
~ # cat /etc/searxng/settings.yml
general:
  # Debug mode, only for development. Is overwritten by ${SEARXNG_DEBUG}
  debug: false
  # displayed name
  instance_name: "searxng"
  # For example: https://example.com/privacy

I think I do have the permission?

[–] Override4414@lemmy.world 1 points 5 days ago (7 children)

I tried removing cap_drop (as instructed on https://github.com/searxng/searxng-docker/issues/115) but no luck, the permission error still exists. And also there occurs a new error no python application found

 

I hosted searxng on portainer and receive PermissionError and no python application found error

Log:

PermissionError: [Errno 13] Permission denied: '/etc/searxng/settings.yml'

unable to load app 0 (mountpoint='') (callable not found or import error)

*** no app loaded. going in full dynamic mode ***

***
no python application found, check your startup logs for errors
***

[pid: 19|app: -1|req: -1/1] 127.0.0.1 () {28 vars in 330 bytes} [Sat May 17 05:06:00 2025] HEAD /healthz => generated 21 bytes in 0 msecs (HTTP/1.1 500) 3 headers in 102 bytes (0 switches on core 0)

I tried removing cap_drop (as instructed on https://github.com/searxng/searxng-docker/issues/115) but no luck

version: "3.7"

services:
  # caddy:
  #   container_name: caddy
  #   image: docker.io/library/caddy:2-alpine
  #   network_mode: host
  #   restart: unless-stopped
  #   volumes:
  #     - ./Caddyfile:/etc/caddy/Caddyfile:ro
  #     - caddy-data:/data:rw
  #     - caddy-config:/config:rw
  #   environment:
  #     # - SEARXNG_HOSTNAME=${SEARXNG_HOSTNAME:-http://localhost/}
  #     - SEARXNG_TLS=${LETSENCRYPT_EMAIL:-internal}
  #   cap_drop:
  #     - ALL
  #   cap_add:
  #     - NET_BIND_SERVICE
  #   logging:
  #     driver: "json-file"
  #     options:
  #       max-size: "1m"
  #       max-file: "1"

  redis:
    container_name: redis
    image: docker.io/valkey/valkey:8-alpine
    command: valkey-server --save 30 1 --loglevel warning
    restart: unless-stopped
    networks:
      - searxng
    volumes:
      - valkey-data2:/data
    # cap_drop:
    #   - ALL
    cap_add:
      - SETGID
      - SETUID
      - DAC_OVERRIDE
    logging:
      driver: "json-file"
      options:
        max-size: "1m"
        max-file: "1"

  searxng:
    container_name: searxng
    image: docker.io/searxng/searxng:latest
    restart: unless-stopped
    networks:
      - searxng
    ports:
      # - "127.0.0.1:8080:8080"
      - "20054:8080"
    volumes:
      - ./searxng:/etc/searxng:rw
    environment:
      # - SEARXNG_BASE_URL=https://${SEARXNG_HOSTNAME:-localhost}/
      - SEARXNG_BASE_URL="http://mydomain:20054/"
      - UWSGI_WORKERS=${SEARXNG_UWSGI_WORKERS:-4}
      - UWSGI_THREADS=${SEARXNG_UWSGI_THREADS:-4}
    # cap_drop:
    #   - ALL
    cap_add:
      - CHOWN
      - SETGID
      - SETUID
    logging:
      driver: "json-file"
      options:
        max-size: "1m"
        max-file: "1"

networks:
  searxng:

volumes:
  # caddy-data:
  # caddy-config:
  valkey-data2:

thx a lot!

 

Is it possible to use audiobookshelf to listen to podcasts without downloading them? thx a lot

 

I'm not able to access the files in my encrypted volume after a long period of inactivity (approximately one day) on my laptop. I can open the folder and see the files in that volume, but I'm not able to open them. I will have to dismount all mounted volume and enter my password again. One volume is my system favorite volume, and i cannot dismount it in verracrypt, so i will have to reboot my PC and enter my passport again. Any solutions to this issue? is this a bug? Appreciate any help!


When I try to open any file in that volume by double clicking on it, the default software gives me something like "the file doesn't exist" or "the file is corrupted". It isn't an error specifically

I have never attempted to dismount that volume as it is a system favorite and cannot be discounted manually

I'm pretty sure file or drive corruption is not the case here as the drive is working perfectly fine and all files are accessible if I simply restart my laptop and enter my password again


I think I found what causes it, when my PC enters sleep mode, (or hibernate?) for some time. Files in the encrypted volume become non-accessible, only folders can be opened, and when clicking on the file the default program opens that file gives "... cannot read this file" So what I have to do is the unmount it first and re-mount again.

Turning off auto dismount doesn't work https://vgy.me/delete/ed1b739a-02c4-4e14-a0a6-1bddd7a3c910

When this happens, it takes a very very very long to to restart my PC

 

Anyone thought about creating an ultimate Lord of the Rings Obsidian vault?

  • Includes all books in Markdown format
  • Scrapes data from sites like The One Wiki to Rule Them All | Fandom and put into vault
  • Interactive maps with labels using Leaflet
  • Arts or Mindmaps with Excalidraw
  • All locations and characters documented
  • Organize in chronological order
  • Include Timestamps from the Movies
  • etc ...

I know this would be a massive amount of work and probably not very practical — just a something I think I would enjoy doing.

I guess the question now is how to scrap data from those lotr website and put in our vault so that we could have a solid start organizing those info and stories with Obsidian plugins.

 

I'm looking for a image link format that contains website link that works in Obsidian. Something like this: [image.jpg|size]

Is there a solution or I can only embed an image and simply paste a link under it

 

If I use synology quickconnect service Am I putting my privacy in danger?

 

Many users use Reddit possibly because they are unaware that a more structured and supported platform exists.

I suggest that the subreddit moderators consider adding an AutoModerator reply to new posts that informs users about the official forum and support channels. This would help:

  • Direct users to the best place to get accurate and high-quality answers (often directly from the Obsidian team or experienced community members).
  • Reduce repetitive questions and misinformation on Reddit.
  • Encourage the use of better-moderated and privacy-conscious platforms.

An example of an auto-reply:

Notice: Obsidian has an Official Forum and Support Channels Hi there! 👋 It looks like you're posting about Obsidian here on Reddit. Please note that while this subreddit remains active, we strongly encourage you to use our official forum or one of our community-run chat platforms, which you can find listed on our Community page.

view more: next ›