u/ThrowAway237s

How harmful is indoor light to BD-R discs?

I have heard optical discs (CD, DVD, BD) like being stored "protected from light". But how bad is it if they are on a shelf where they are exposed to some scattered light from the window and room lamp?

This obviously means no direct sunlight.

reddit.com
u/ThrowAway237s — 5 days ago

How to skip overlong file names when saving emails as ".eml" files?

When downloading many emails to ".eml" files using Thunderbird, the downloading is interrupted if one email has an excessively long subject name.

Every time this happens, the email that causes it has to be located manually. This makes exporting a high number of emails impractical.

Is there any way to save all emails as ".eml" without being interrupted by excessively long file names?

reddit.com
u/ThrowAway237s — 7 days ago

Use case: putting video player in corner with "always on top" enabled so I can see through it and watch and browse at the same time without sacrificing screen space for the video player.

From what I remember, Xfce has it (I haven't used it for some time), but which others do?

reddit.com
u/ThrowAway237s — 18 days ago

Effective May 2nd, 2026:

By posting or commenting here, you agree to release your text-based contributions (excluding quotes) under the Creative Commons Attribution-ShareAlike 4.0 International license, or more permissive terms of your choice, which you can add as a note in your contribution.

This means anyone can reuse your text contributions if they attribute you by linking to your text post or comment. You may choose to release your post into the public domain (CC0 1.0).

reddit.com
u/ThrowAway237s — 21 days ago

Email providers sadly are killing the option to compose plain text mail. Recently, the German email provider "web.de" removed that option, even though plain text emails have benefits like saving space and being less likely to be marked as spam.

HTML is overkill for simple text communication, like using a lorry truck to carry a load that a small car could carry. See also https://useplaintext.email .

In any case, having both options is better than having only one option. So why are they killing plain text email? Do they want people to consume the space faster so they are compelled to pay for a subscription?

I know, plain text is still possible through a third-party tool like Thunderbird, but why remove the option from the web interface?

Their removal of plain text mail co-incided with their unfortunate removal of "lightmailer" (lightmailer-bs.web.de), a lightweight non-javascript web interface that worked on old browsers and loaded ten times faster than their bloated JavaScript web app that they are now forcing down the users' throats. It feels like some kind of perverted trend on online services.

reddit.com
u/ThrowAway237s — 21 days ago
▲ 6 r/webdev

Is there any way to make the bottom cell of the table in this demo extend until the bottom of the screen, regardless of how much it contains?

One possible way would be to "cheat" using JavaScript by detecting the screen height and setting the table to that height whenever the screen height changes. But is there any way to accomplish this using bare HTML and CSS?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" style="height:100%;">
<head>
	<title>Variable height demo</title>
	<style type="text/css">
		body { background-color: #222; color:#ccc; font-family: sans-serif; }
	</style>
</head>
<body style="height:100%; margin:0;">

<table style="width: 100%; height:100%; table-layout: fixed;" border="1">
	<tr style="height:50px;">
		<th>Fixed-height row</th>
	</tr>
<tr style="height:100%;">
	<td style="overflow-y: scroll; vertical-align:top;">
		<ul>
			<li>Scrollable list</li>
			<li>Scrollable list</li>
			<li>Scrollable list</li>
			<li>Scrollable list</li>
			<li>Scrollable list</li>
			<li>Scrollable list</li>
			<li>Scrollable list</li>
			<li>Scrollable list</li>
			<li>Scrollable list</li>
			<li>Scrollable list</li>
			<li>Scrollable list</li>
			<li>Scrollable list</li>
			<li>Scrollable list</li>
			<li>Scrollable list</li>
			<li>Scrollable list</li>
			<li>Scrollable list</li>
			<li>Scrollable list</li>
			<li>Scrollable list</li>
		</ul>
	</td>
</tr>
</table>
</body>
</html>
reddit.com
u/ThrowAway237s — 25 days ago

I would like to move only read messages to a different folder, but there seems to only be a search filter to only see unread messages.

The closest thing would be to turn on the "Status" column (right click on header above message list, check the "[] Status" box), and then clicking on the "Status" column, but this would still not allow selecting all messages using Ctrl+A, and also no sorting by any other column.

I tried searching "status:read" but it looks like there is no such feature.

reddit.com
u/ThrowAway237s — 25 days ago