crank

joined 1 year ago
[–] [email protected] 6 points 4 months ago (1 children)

Back in the day I was a big Usenet fan. What's the modern solution to the spam issue? At the time, folk wisdom was that the demise was being caused by spam, and that due to the nature of the protocol it was somehwhat unsolveable.

I also wonder to what extent activity pub is the barrier to offline use? For reddit, the Slide client had offline reading and iirc posting. I have been disappointed it isn't available for Lemmy. My guess has been it simply isn't a priority for the devs. Maybe eventually we will get it.

I think it would be cool if RSS got put into Lemmy clients. Example you could make a unified inbox for all accounts by automatically getting the private RSS for incoming messages for all logged in accounts. I have manually set this up a couple of times but its tedious. Completely lacks smoothness when it comes to clicking a link, replying etc. But a client could add a little finesse to fix that.

[–] [email protected] 3 points 6 months ago* (last edited 6 months ago) (1 children)

It’s Open Source

If Apple ever built an RSS reader, it’d be like this.

nope

[–] [email protected] 3 points 6 months ago* (last edited 6 months ago)

Anyone interested can find (usually free) externally hosted freshRss and TinyRss hosts on the chatons website. Select one of those in the "based on" drop down menu.

I've tried both and like neither. As far as I can tell, they only have a small number of apps. And none of them work offline. With a regular RSS reader you can refresh it when you have internet access, then everything is available when you do not. Like an email client or any other such software.

But it might be suitable to you. So check out the chatons.

[–] [email protected] 4 points 7 months ago (1 children)

Lol the hastag in the video "#equalrightsforallrefugees". Like i dont think anyone is worried about the discrepency of rights among refugees.

Looks like some people trying to hussle funding for themselves.

[–] [email protected] 1 points 8 months ago

yes it is just about the license. i think gpl is better for humanity.

i don't have a better argument than that. i guess i am just turning into that kind of person lol

[–] [email protected] 3 points 8 months ago (1 children)

If this was a correct idea then there is no need for anyone to transition because their gender isn't real anyway.

This is not a toxic idea if you stay here temporarily on a path to somewhere else but it is actually anti-trans so try to move on to the next brain wave.

[–] [email protected] 1 points 8 months ago (1 children)

I did a websearch for trans twins and found the following 2 links. I did not read them just sharing as it seems you didn't have good luck searching.

[–] [email protected] 5 points 8 months ago

I wonder if @[email protected] might be thinking of https://en.wikipedia.org/wiki/David_Reimer

Reimer was an identical twin AMAB who was raised female due to his penis being mangled during circumcision. The gender was then reassigned as female and the infant had surgical procedures done to align the body with the new female gender. The case was overseen by John Money who made a lot of hay over it, publishing all about how this proved gender was a purely social construction. It was a very famous case study. Ultimately Reimar he felt himself to be male and transitioned to male as an adult. However he was very screwed up by the whole thing and my understanding is his death by suicide is attributed to this whole series of events. There was a lot of weird stuff.

[–] [email protected] 3 points 8 months ago (3 children)

Ive been using zsh for most of my linux time cause it is trendy.

Im actually planning a move to bash. All else being equal, i prefer gpl-style to mit-style. (Tried fish didnt like it.)

Dyk the "monopoly man" illustration was created by the grandparent of the original developer of bash? And was uncredited by the company who owns Monopoly until a relative publicized this recently.

[–] [email protected] 1 points 8 months ago

“This case is not the first instance of the Ninth Circuit restricting medical professionals’ First Amendment rights, and, without the court’s review, I doubt it will be the last,” he wrote. “This court recently reversed the Ninth Circuit’s decision to uphold a law compelling crisis pregnancy centers to disseminate government-drafted notices.”

Uh "crisis pregnancy centres" in the US context are usually sham medicine covertly religious anti-choice situations pretending to be a low rent planned parenthood. Doesn't anyone know what is being referred to here? I am guessing the "government drafted notice" may not be so heinous but idk.

[–] [email protected] 1 points 8 months ago (1 children)

The Supreme Court said on Monday that it would not hear

first half of the first sentence of the first paragraph and already we have dumb bullshit. This is what happens to 99% of everything submitted to the US spreme court. Rejected.

But thing special. Means NOTHING

[–] [email protected] 2 points 8 months ago (2 children)

I'm sure it's fake on principal. First of all, the subheading:

Washington State, like more than 20 other states, bars licensed therapists from trying to change the sexual orientation or gender identity of minors in their care.

NYT shouldn't be publishing such misleading headlines but @[email protected] why are you repeating their misinformation?

I am less than 50 words in. Still time to be proven wrong.

 

I have an account on an SMTP server. The server has a storage quota. I'd like the delete stuff from the server but keep it locally in case I need it. Just in case.

I'd like to be able to access the mail somehow on other computers and hopefully mobile devices on my network so that it can be searched when needed. I'm not sure what the best interface for that would be. A webmail client?

One option would be to use Thunderbird or another client to download the mail once in a while but disable deleting local messages when they are removed from the server. Would Thunderbird store the messages in a format I can use readily with other applications? Or should I use something else to download the mail?

What about situations where messages are moved from one folder to another on the server? Would I get a duplicate locally of the message appearing in both locations? Not sure how the storage and metadata actually are.

Also, is it possible in such a situation to put a message back on the server if I realize it was deleted in error?

Any idea would be welcome. I am a bit stuck.

I can use the command line comfortably but ideally I'd have a solution that doesn't rely on the terminal to find find messages and such. I don't really like terminal mail clients.

 

Since Geany 2.0 has recently been released I decided to switch back to it from Kate. I used to like Geany but it had some problems I couldn't quite remember.

So I quickly remembered the problem. I can't figure out how to configure it to properly comment and comment blocks of code. Say you have the following in a file of type shell script:

	# a comment
	echo $variable

I want to be able to select the above lines and use a keybinding to comment them out, so the result would be:

	## a comment
	#echo $variable

Edit > Format > Comment Lines works as anticipated.

But if I decide I want the lines back, how do that with the same keybinding? Using Comment Lines again adds a second level of comments, which is what I would expect (but not what I want):

	### a comment
	##echo $variable

Edit > Format > Toggle Line Commentation works and the file returns to the original state. But if you reselect the original lines and run it again, you get

	 a comment
	#echo $variable

Which would obviously lead to unpredictable results.

There doesn't seem to be a way for Geany to look at the block of text and decide whether it should be commented or uncommented and act accordingly.

Kate editor has this functionality in Selection > Toggle Comment as do other editors I've encountered. If there is a mix of commented and uncommented text, it will never remove comments. It only removes comments when the entire block has commenting, and then it removes only 1 level of comments. Perfect. Of course if you really want to force the matter, there are the more aggressive Comment and Uncomment.

Using the Geany Toggle Line Commentation leads to strange results, especially if you are starting with multiple levels of comments. Is there a way to duplicate the standard comment toggle in Geany? I tried to train myself to use Comment Line(s) and Uncomment Lines(s) instead of a single command but I just made a lot of mistakes where I didn't realize there were multiple levels of comments or whatever and things became uncommented that shouldn't have and it created a giant mess.

I'm not a professional IT person, just someone who enjoys text files in their spare time. I do a lot of commenting and uncommenting trying to find out how things work. I thought it was a pretty normal thing to do. There must be a way to do it right?

I recall digging around a bunch in the Geany repo/docs and it ended up that some problem I was having was a limitation of the Scintilla lexer and there wasn't much Geany could do about it. But I am not sure if it was this issue or something else.

 

about 50% content is like this, no matter what view you select. I think /r/pics has the right idea; it is so dominating. Other subs should change their post to be like this (with their own messages) I think.

Also, what sub did spez mod in 2008?

78
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]
 

Submitted an hour ago by SarahAGilbert Moderator

A few days ago we shared a post outlining our thoughts around API uncertainty. The tldr: changes negatively impact our ability to moderate. These changes are part of a larger pattern in which Reddit’s leadership has failed to support what we believe is one of its greatest assets. Basically, our primary responsibility is making sure Reddit users are getting the best answers to your questions about history and Reddit is making that harder to do.

We understand Reddit’s need to change and evolve. For all we may harp on Reddit’s flaws, we do want to see it succeed! After all, we wouldn’t exist without it. So, if we’re expecting Reddit leadership to listen to us, we should be willing to work with them. In the days following the publication of the post, we discussed as a team what the specifics of working with Reddit would look like so we could clearly articulate it to you. We decided that compromise means:

  • Updates to the API are not tied to a particular date but are, instead, rolled out once the roadmap shared here is successfully achieved.
  • Accessibility tools such as screen readers are part of the native Reddit infrastructure.
  • Updates are made across Android and iOS.

We think slowing down is the right thing to do. It would minimize further disruption while also generating an income stream for Reddit.

The AskHistorians’ mod team members are, functionally speaking, Reddit super-users. We have collectively invested thousands of hours into building our small corner of Reddit into a subreddit that is viable, trustworthy, and valuable, as well as something bigger. There’s our podcast, academic writing by us and about us, and our reputation as, "good history eggs on the internet." We’ve hosted two conferences, a long series of AMAs and presented about AH at other academic conferences. We even won an award! Major outlets have even covered our approach to moderation. We take all of this very seriously.

Nearly every time Reddit has asked for volunteers, we’ve stepped up. AH members help with the Moderator Reserves project, sit on council meetings and phone calls, host Reddit administrators who want to shadow moderators, and participate in surveys. Due to our commitment to the subreddit, we’ve built positive relationships with many admins who have been open to our feedback. But over the last couple of days—most notably during Spez’s AMA—it’s become clear to us that Reddit’s leadership is not interested in finding common ground; rather, it seems to us like they're hell-bent on pursuing a course that damages us and them alike.

We feel we are left with no choice but to join the protest. On June 12, starting at 7am ET, we will take our sub private. We will remain private on June 13 as well.

We’ll open the sub again on June 14th but will pause participation. This means you will be able to access existing content, such as the Trans History Megathread in Celebration of Pride Month, but will not be able to ask or answer questions. We will be delaying or holding off AMAs, limiting our newsletter, and will not be recording any new podcast episodes. As of today, we do not know how long this pause will last.

We cannot put this letter out into the world without thanking you for the immense support you’ve shown us over the last week. We’ve received support across platforms, in public and in private. We’ve been a community for nearly 12 years and that would not have happened without you and our other 1.8 million subscribers. We know we’re not the easiest community to post in, and deeply appreciate the people who ask dozens of thoughtful, rule-abiding questions every day, the people joining in on April Fools Day, those who anonymously report trolls and low effort answers, support the podcast via Patreon, and those who provide honest, thoughtful feedback on how we’re faring in general. We don’t take lightly the idea of shutting down this place and the community that we all build together, and we understand how frustrating it will be to not be able to find out, for example, why GPS is free.

We are all, at heart, historians. Studying the past requires a fair amount of optimism and confidence in humanity and as such, we are hopeful and confident a resolution can be found.

 

Hello, new lemmy ex-redditor here. Is this a good place for questions?

I decided to try turning on notifications for the lemmy/fediverse sites I am joining the past week or so. I don't usually use notifications on the computer so not sure what is expected.

I am intermittently getting notifications but I can't tell where they are coming from.

They have an avatar and a small amount of text. Clicking on them doesn't have any effect (like bringing you to the originating site). I haven't been able to find matching content in the notifications of any of the sites. They don't seem to have much to do with any conversations I am involved in; I think I am subscribed to some sort of general "new post" or "new comment" thing. I am not getting any notifications that are relevant to me; just these ones.

notifyd tray item is set to log notifications but there is no log... I remember trying to solve that at some point but didn't come up with much and gave up due to low priority.

Is there some way in firefox/linux to track down the events?

They are not like a constant barrage so testing by disabling things and seeing what happens would not be very straightforward.

What is supposed to happen when you enable notifications? Is this typical?

I am using: Xfce 4.18 + firefox

 

I would like to try making a few minor changes to the CSS in either kbin or lemmy both of which I've been trying out. I favor a more dense interface and think styles could help visually separate different kinds of content. Maybe to reorganize some stuff if I got more ambitious.

I have some experience with web stuff, css. I can get around in git. But I am not a sysadmin or a programmer. And I have never worked on such a large comprehensive project.

Here are the repos I found:

codeberg Kbin/kbin-core

  • seems to have no contib guidelines
  • issues: 50 open, 4 closed

github LemmyNet/lemmy

  • contrib - same link for both repos but doesn't really give much useful info

  • Issues: 184 open, 1,594 closed

github LemmyNet/lemmy-ui

  • issues: 197 open, 507 closed

Do I need to run the whole server with back end to fiddle with the CSS? Or can I use the developer tools in my browser to produce an alternative stylesheet?

Maybe it is just way above my skill set to make full PRs in something so complex. Should I post mock ups of how I'd like it to look as an issue?

Or just wait for someone who knows better how to get it done to come along?

 

What would folks think about using this tool to clone the existing subreddit? Losing the historical content would really suck. I make heavy use of subreddit search for solving technical problems.

rileynull/RedditLemmyImporter: 🔥 Anti-Reddit Aktion 🔥

This project translates Reddit API responses into a PL/pgSQL script which loads the data into a Lemmy database.

In other words, it takes Reddit posts/comments and puts them into Lemmy.

PS I am a pretty newb person and last time I tried to do much with a db I didn't get very far so please no one rely on me to get this done. I will see about giving it a shot but given the short timelines might not get it in time.

 

post from @[email protected] :

I am a software developer by craft and a linux system admin by hobby. I cannot commit to moderating and managing my own instance, but I would be glad to help someone with the technical aspects.

The most common complaint I saw in Reddit and here about switching to Lemmy is the difficulty of setting it up, so I thought I would help bridge this gap.

While I have never hosted my own instance before, I already checked the setup guide and it looks pretty simple to me, so I am confident I can do it. Please feel free to comment or DM.

It would be great if you can comment general questions. I can then respond to you here and maybe others will see it and know how to host their own instances too.

view more: next ›