There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

lemmy.ml

spaghettiwestern , to reddit in Reddit claiming they weren’t recovering deleted posts

A blatant lie. They’ve restored some of my posts and comments 4 times.

Hudell ,

I hate a lot of the things that reddit has been doing but I still think not all of them are on purpose. I ran into this issue myself before it was widely discussed and my first thought was that it had simply failed to delete some comments or deleted only from some cache.

So far every exampe I’ve seen of this can still be explained by bad engineering and I see no reason to think it is “undeleting” stuff by design, since it seems to happen to very random content that has no general value (like restoring 20 random comments out of 900 that were deleted).

SheeEttin , to selfhosted in [SOLVED] Permission problem with Radarr and smb

So what do the permissions look like on that file? Does it work if you enter the container as that user and try it yourself? If you have selinux enforcing, have you checked its audit log?

Tiritibambix OP ,
@Tiritibambix@lemmy.ml avatar

It has same user:group as files that could be copied before I started having bugs, And that’s the user: group I need. I have this problem with multiple files, downloaded at different times, trying to copy them on different locations on my mount. So my guess as a beginner is that the problem is at the destination. I don’t have selinux.

linuxduck , to programmerhumor in Early disappointment

I loved learning lambda calculus (though for me it was super hard)

Gork ,

I never really understood the point of Lambda calculus. Why have an anonymous function? I thought it was good practice to meticulously segment code into functions and subroutines and call them as needed, rather than have some psuedo-function embedded somewhere.

linuxduck ,

I suppose it has to do with being stateless.

I just loved learning about lambda calculus.

I think the idea is to remove complexity by never dealing with state, so you just have one long reduction till you get to the final state…

But someone who’s more into lambdas etc should speak about this and not me (a weirdo)

rabirabirara ,

I think you’re confusing lambdas with lambda calculus. Lambda calculus is more than just anonymous functions.

To put it extremely simply, let’s just say functional programming (the implementation of lambda calculus) is code with functions as data and without shared mutable state (or side effects).

The first one increases expressiveness tremendously, the second one increases safety and optimization. Of course, you don’t need to write anonymous functions in a functional language if you don’t want to.

As for why those “pseudo-functions” are useful, you’re probably thinking of closures, which capture state from the context they are defined in. That is pretty useful. But it’s not the whole reason lambda calculus exists.

Zangoose ,

See the other comments about lambdas vs. lambda calculus, but lambdas are supposed to be for incredibly simple tasks that don’t need a full function definition, things that could be done in a line or two, like simple comparisons or calling another function. This is most useful for abstractions like list filtering, mapping, folding/reducing, etc. where you usually don’t need a very advanced function call.

I was always taught in classes that if your lambda needs more than just the return statement, it should probably be its own function.

cc8 , to selfhosted in [SOLVED] Permission problem with Radarr and smb

Does the ending / intervene maybe?

<pre style="background-color:#ffffff;">
<span style="color:#323232;">  - /mnt/OrbiterVideo/movies/:/movies
</span>

Is the share mounted?

Can you browse the mount from source machine?

Can you browse the share inside the docker container? (–interactive)

Tiritibambix OP ,
@Tiritibambix@lemmy.ml avatar

The ending / wasn’t a problem a few weeks back, but I tried to remove it anyway with no luck. The share is mounted and I can browse it from source machine and container.

cc8 ,

Have you set the correct chown permissions? ls -al /mnt/OrbiterVideo/movies

I have a similiar issue on a plex transcode folder that randomly resets permissions.

Tiritibambix OP ,
@Tiritibambix@lemmy.ml avatar

Sorry if the question is silly, I’m really not good at this: Permissions are drwxr-xr-x (755).

Shouldn’t they be drw-rw-rw- (666) or 777 ?

Other than that, the user:group looks good.

I can’t seem to manage to change permissions anyway

cc8 ,

Can you create files and directories in /movies inside the docker container?

Tiritibambix OP ,
@Tiritibambix@lemmy.ml avatar

No. Permission denied.

cc8 ,

Ok, that means that the issue is slimmed down to the permissions on the mounted smb share. Not docker or radarr which makes it easier to troubleshoot.

I am not a cifs share black belt though but continue from there :)

Tiritibambix OP ,
@Tiritibambix@lemmy.ml avatar

Thanks for trying to help :)

Im_old , to selfhosted in [SOLVED] Permission problem with Radarr and smb

I know it’s linux and you never reboot it and yadda yadda, but have you tried rebooting both machines?

For what it’s worth, that’s my fstab entry (it’s mounted with a normal user, which is the same which the containers use). I seem to remember I had to change ownership of the /mnt/nasdownload folder (before the mount) to the user used to mount it.

//192.168.1.10/Download /mnt/nasdownload cifs auto,user,uid=1000,gid=1000,rw,iocharset=utf8,suid,credentials=/root/.smbgringo,file_mode=0770,dir_mode=0770,_netdev,vers=3.0 0 0

Tiritibambix OP ,
@Tiritibambix@lemmy.ml avatar

I tried rebooting with no luck. Changing my fstag entry following your suggestion didn’t work either.

Lmaydev , to programmerhumor in Early disappointment

I did games technology at university. We had a module that was just playing board games and eventually making one. Also did an unreal engine module that ended with making a game and a cinematic.

It was awesome.

MrCalvin , to selfhosted in [SOLVED] Permission problem with Radarr and smb

What do the permissions look like on newly created files and directories from the qBittorrent container? Run ls -al and check to see, this sounds like a simple fix.

You can try adding file_mode and dir_mode to your fstab mount as well.

superuser.com/…/whats-the-difference-between-file…

Tiritibambix OP ,
@Tiritibambix@lemmy.ml avatar

Folders are drwxr-sr-x and files are rw-r–r–

I added file_mode and dir_mode in my fstab mount. But should I erase uid and gid as this post mentions that it overrides file_mode and dir_mode ?

MrCalvin ,

I know you marked this as SOLVED, however I just noticed (dunno how I missed it before) that your umask is 022 for qBittorrent but it is 002 for Radar. Even though you have the same UID/GID on both systems I’d still recommend setting 002 umask in the qBittorrent compose file

Tiritibambix OP ,
@Tiritibambix@lemmy.ml avatar

Will do. Thanks :)

bowreality , to reddit in Reddit claiming they weren’t recovering deleted posts

Mine are staying delete now after initially a few popping back up. What’s more concerning is that I requested my data a few weeks after I deleted my content. I was fully expecting to get empty files but nope ALL of my content. Dating back 10 years is still there! It’s not on my Reddit profile but they clearly kept it somewhere and can recall it whenever they want to. They do not delete the data.

CaptainBlagbird ,
@CaptainBlagbird@lemmy.world avatar

Mine are staying delete now after initially a few popping back up.

Something like this happened for me too, but I believe these were comments that I didn’t yet delete, they just weren’t visible anymore. The older ones started to pop up once there was new space for them after deleting the newer ones. (On your profile not all comments you ever made are visible, only the newest/top/most-controversial ones, depending on what you sort for).

For example in my profile my very first post was visible, but none of the comments I made there. Before deleting the posts I went through each one and deleted my comments that way. There probably still are many comments from me laying around undeleted…

bowreality ,

Mine were fairly recent and needed to be deleted several times to stay deleted. Seemed really random.

AusatKeyboardPremi , to memes in Introvert tip #42

Where are the rest of the tips? Asking for a friend.

unagi ,

My phone’s about to die, but I’ll start typing the rest of the tips for your friend:

  • Never, in ANY circumstance
AlligatorBlizzard ,

Here’s one, set an alarm to go off in the middle of a date, pretend it’s a phone call and if the date is going badly “take the call” and say you’ve got to leave. I could say my roommate has forgot their keys and accidentally locked themselves out for example.

GenderNeutralBro , to memes in Introvert tip #42

Don’t hang up. Instead, enable airplane mode for increased verisimilitude.

ledditor ,

Thanks for showing me a new word! “Verisimilitude” seems useful.

khannie ,
@khannie@lemmy.world avatar

For those like me…

noun: The quality of appearing to be true or real. synonym: truth.

Context implied it but still…Nice word!

GenderNeutralBro ,

I’m glad you like it! I like how it’s made up of three common and easily-identifiable components: it uses the same root as verify meaning true, the same root as similar meaning “like”, with tude being a common suffix like -ness. Basically “true-likeness”.

www.etymonline.com/word/*were-o-
www.etymonline.com/word/*sem-#etymonline_v_52581
www.etymonline.com/word/-tude#etymonline_v_18793

outadoc ,

Just keep your phone permanently in airplane mode; problem fixed.

crowsby , to reddit in Reddit claiming they weren’t recovering deleted posts

The founder of Tildes, Deimos, is a former Reddit backend engineer who believes this is a technical issue rather than a case of Reddit purposefully subverting user intentions:

Yes, this is almost certainly a technical issue. The way reddit caches things probably isn’t the standard way you’re thinking of, like a short-term cache that expires and refreshes itself. There are multiple layers of “cached” listings and items for almost everything, and a lot of these caches are actually data that’s stored permanently and kept up to date individually.

There are also multiple other places and ways that comments are cached—comment trees are cached (order and nesting of comments on a comments page, for all the different sorting methods), rendered HTML versions of comments are cached, API data is probably cached, and so on.

All of these issues are probably just some combination of all of your posts being difficult to find and access due to the listing limits or certain cached representations of posts not being cleared or updated properly.

socsa ,

This isn’t really a good excuse though. Right to be forgotten doesn’t me the right to be forgotten except in a cache loop. Sometimes this stuff is time sensitive.

Jacobp100 OP ,

If you added a 5s delay between deletes, they don’t come back. Not a caching issue

Uprise42 , to memes in Introvert tip #42

Tried this at work the other day. Apparently this doesn’t work in call centers… anyone hiring?

HubertManne , to reddit in Reddit claiming they weren’t recovering deleted posts

heck I can't even get my data to begin with. When it did not show they sent me bakc an email saying it would take up to 30 days. today I emailed back that it has been well over 30 days.

ImTiagoSousa , to reddit in Reddit claiming they weren’t recovering deleted posts
@ImTiagoSousa@lemmy.world avatar

Oh, so we all got the same bs copy pasted response at the same time? Mine took over a month, so I’m referring it to ICO.

Jacobp100 OP ,

Oh so it was literally a co-incidence I got it a few minutes after the ICO email?

ImTiagoSousa ,
@ImTiagoSousa@lemmy.world avatar

Apparently so. It’s impressive how it took them 1 month+ to come up with this from their “Legal Team”.

DucktorZee , to memes in Introvert tip #42

I would try this and say “I’m about to die” by accident and then spend five minutes explaining the mistake and five days thinking about it. No thanks,.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • lifeLocal
  • goranko
  • All magazines