[-] crank@beehaw.org 6 points 6 months ago

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.

[-] crank@beehaw.org 5 points 10 months ago

I wonder if @Kamirose@beehaw.org 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.

[-] crank@beehaw.org 5 points 10 months ago

To be fair there are still oodles of projects there. I end up on source forge regular basis.

[-] crank@beehaw.org 6 points 10 months ago

Codeberg is a free/nonprofit hosted instance of Forgeo. Forgeo is a fork of Gitea created by Codeberg about a year ago when the governance of Gitea changed suddenly.

You can selfhost either Forgeo or Gitea.

There are other hosted instances of forgeo and gitea also available.

Gitlab is a hosted instance if gitlab.

You can also self host gitlab.

I assume there are other hosted instances of gitlab tho i cant think of any off the top of my head.

[-] crank@beehaw.org 6 points 11 months ago

In looking up suggestions made already I found 2 other projects that might be useful. Does anyone have comments about these? I have just looked at them a little bit.

OfflineIMAP

OfflineIMAP is software that downloads your email mailbox(es) as local Maildirs. OfflineIMAP will synchronize both sides via IMAP.

There are a few different overlapping projects by same developer(s). It is a bit messy.

imapsync

Imapsync is an IMAP transfer tool. The purpose of imapsync is to migrate IMAP accounts or to backup IMAP accounts.

Imapsync is a command-line tool that allows incremental and recursive IMAP transfers from one mailbox to another, both anywhere on the internet or in your local network. Imapsync runs on Windows, Linux, Mac OS X. "Incremental" means you can stop the transfer at any time and restart it later efficiently, without generating duplicates.

32
submitted 11 months ago by crank@beehaw.org to c/linux@lemmy.ml

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.

[-] crank@beehaw.org 4 points 11 months ago

i guess satisfies the requirements:

  1. you like to share
  2. we may not know about
[-] crank@beehaw.org 5 points 11 months ago

Well you can always pay someone to read it for you. Blind people do that.

Are any of these books public domain? If so the print version could be eligible for inclusion at Project Guttenberg. PG has very specific docs about eligibility for this. You could probably get a scan from archive.org if you don't have one. You would have to clean up the OCR by hand.

Then it would eligible to be requested from the volunteer (human) readers who have been pumping out Libra audio books for years at LibriVox.

Recently I saw Gutenberg has a collab. They are producing and distributing Libre guidebooks generated by AI. I believe I read on one of the pages they have 4000 done. I haven't tried it out but I guess I should.

Project Gutenberg, Microsoft, and MIT have worked together to create thousands of free and open audiobooks using new neural text-to-speech technology and Project Gutenberg's large open-access collection of e-books. This project aims to make literature more accessible to (audio)book-lovers everywhere and democratize access to high quality audiobooks. Whether you are learning to read, looking for inclusive reading technology, or about to head out on a long drive, we hope you enjoy this audiobook collection.

I assume this is also a great benefit as fertilizer down at the old AI content farm which is otherwise totally run over with reddit shitposts.

If anyone tries it let me know how it goes.

17
submitted 11 months ago by crank@beehaw.org to c/linux@lemmy.ml

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.

[-] crank@beehaw.org 4 points 11 months ago

Commenting from the future. Here in 2039 and i cant believe how prescient you are!

2040 def the year it happens.

[-] crank@beehaw.org 15 points 11 months ago

check out dua. I usually use it in interactive most which lets you navigate through the file system with visual representations of total dir/file size.

Here is a screenshot randomly found from the github issues

screenshot

I also recently found this gui program called k4dirstat buried in the repos. There are a few more modern options but this one blows them all out of the park.

Screenshot from the github repo:

screenshot

Too bad they used such an ugly configuration for the screenshot.. It allows you to modify the visualization to look better and display information differently. Anyway just thought I'd share as the project is old and little known.

[-] crank@beehaw.org 4 points 11 months ago
[-] crank@beehaw.org 4 points 11 months ago

Every time I read about emacs it sounds really cool. I have tried a few times to sit down and get myself into it but I can never get past the initial learning curve.

I think a word like "easy" is the wrong choice when you consider the large amount of perquisite knowledge needed to "write a few lines of code to do any random thing at all". My impression from reading what its users say, is that it is elegantly and endlessly customizable. If you have the foundational knowledge already. But when you consider what is required to obtain that position, "easy" is not how I would describe it.

But then, out of all the people who probably could use it, it seems that very few of them do. I cannot have any insight on why that is.

[-] crank@beehaw.org 6 points 1 year ago

Im about 20 mins in. Seems interesting and knowledgeable but why the game? Is it a quirk of her or do ppl like to watch it? Is this what twitch did?

5
submitted 1 year ago by crank@beehaw.org to c/technology@beehaw.org

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?

2
submitted 1 year ago* (last edited 1 year ago) by crank@beehaw.org to c/technology@beehaw.org

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.

view more: next ›

crank

joined 1 year ago