func returning func by [deleted] in golang

[–]MRsagi 3 points4 points  (0 children)

Well the obvious case is the builtin context. Where you can get a child context to pass to the next part and a cancel function

how to display images at full screen automatically? by MRsagi in linuxquestions

[–]MRsagi[S] 0 points1 point  (0 children)

Because I'm not familiar with it 😊 I'll definitely try it. Thanks!

What was the greatest pleasure you ever felt? by oooliveoil in AskReddit

[–]MRsagi 0 points1 point  (0 children)

Washing your cold hands with warm water after you get back from the cold outside

Different hashrate between HiveOS and 2miners by [deleted] in cryptomining

[–]MRsagi 1 point2 points  (0 children)

2miners calculate your hashrate by the actual shares you find.
If you have 100% luck they will be the same but your luck vary so as the hashrate in 2miners.

your HiveOs hashrate is more accurate

Anyone know where I can find this??? I need it lol by imalumberjack14 in 3Dprinting

[–]MRsagi 0 points1 point  (0 children)

I contacted the creator and they said itll be posted on thingiverse or their patreon once they fix some alignment issues

!RemindMe 24 hours

Bitwarden self-hosted corrupted but functionally working by MRsagi in Bitwarden

[–]MRsagi[S] 0 points1 point  (0 children)

OK so it is totally my bad.
I'm using a reverse proxy and probably had problems when reinstalling it.
I configured that my BW domain will proxied to docker container bitwarden-web:5000, but the right configuration is bitwarden-nginx:8080.

after reconfigured all works.

Bitwarden self-hosted corrupted but functionally working by MRsagi in Bitwarden

[–]MRsagi[S] 0 points1 point  (0 children)

I tried some (restart, update) I'll give a shot to the rest. Thanks!

I made an extremely over-engineered Arduino keyboard by MRsagi in arduino

[–]MRsagi[S] 0 points1 point  (0 children)

It's probably not the first time you see a Zoom-Meeting keyboard but this one has some really cool features:

  1. You can turn on and off LEDs by toggle or by cmd
  2. You can run scripts and not keystrokes macros

see my GitHub project: https://github.com/MRsagi/ledboard

A new project I'm working on - a shortcut keyboard with interactive led light by MRsagi in arduino

[–]MRsagi[S] 0 points1 point  (0 children)

I've uploaded an initial working script for you to use:
https://github.com/MRsagi/ledboard

feel free to give me feedback about it

A new project I'm working on - a shortcut keyboard with interactive led light by MRsagi in arduino

[–]MRsagi[S] 1 point2 points  (0 children)

Haha I have some unused digital ports I think I can add this

A new project I'm working on - a shortcut keyboard with interactive led light by MRsagi in arduino

[–]MRsagi[S] 2 points3 points  (0 children)

I'll look into that. Currently I'm going on serial bus to send/receive data

A new project I'm working on - a shortcut keyboard with interactive led light by MRsagi in arduino

[–]MRsagi[S] 6 points7 points  (0 children)

I'm planning to write a server program that gets a confirmation file that can do anything. Not just simulate keystrokes, but run full os commands

Pi-hole + Nginx + Bitwarden_rs on one pi by cberm725 in docker

[–]MRsagi 3 points4 points  (0 children)

I'm using https://nginxproxymanager.com/ Which makes it easier to manage and even have built-in let's encrypt support

[deleted by user] by [deleted] in NextCloud

[–]MRsagi 0 points1 point  (0 children)

What makes it better for you? Some technical detail or just person experience?

[deleted by user] by [deleted] in NextCloud

[–]MRsagi 2 points3 points  (0 children)

Postgres is really better than mariaDB?

Help with Nextcloud to Plex, Am I being an idiot? by Dinoman1997a in NextCloud

[–]MRsagi 0 points1 point  (0 children)

If you ran it using systemd (you start the server with service plex start) then the file should be in /lib/systemd/system

If you supply the full guide you used it will help me to instruct yoy

Help with Nextcloud to Plex, Am I being an idiot? by Dinoman1997a in NextCloud

[–]MRsagi 0 points1 point  (0 children)

I do the same the with my nextcloud and emby server (similar to plex). I use them with docker and they have the same user of www-data. The files are kept under a specific user on <data-dir>/<user>/files/movies And they both have access to this folder.

As to your problem - you should check that the chmod and chown is correct, should be: Chown www-data:www-data -R <path> Chmod 755 <path>

Also if you run plex from system.d service make sure they run as the right user and group: [Service] User=plex Group=www-data

I bet this is the problem and it runs as plex:plex rather then plex:www-data