no no, that’s not my job actually
Give me Xianxia or give me death. I feed off incoherence.
no no, that’s not my job actually
It is an appeal for reddit to commit self-die
We deserve human rights, democracy, freedom of speech, privacy. Since software is a huge part of our lives, Free Software should also be on that list.
never seen any proof of anyone deserving anything, including that
it wouldn’t cost the developer anything.
i can charge $1k or i can charge $0, if i can choose, why would i go with $0. i like money, it makes life easier.
Developers should have the responsibility of ensuring their users get the freedoms they deserve.
No one deserves anything
right to study and modify the program and distribute the original copy and the modifications
there is no such right in any code, legal or moral, that i’ve read in the past, i wonder what philosophical branch it is that sources this perspective
what’s stopping the developer from adding spyware into the app
nothing, but when they do that, that’s when they’re “being unethical”. That’s like saing it’s unethical to have a kitchen knife in your kitchen because you COULD stab someone with it.
Why would anyone trust that the program does what’s in their best interest?
cuz they’re dumb & uninformed. doesn’t make it unethical tho, afaik.
I saw a bug
I see this user who deployed using this script, I click the username link below his name which should lead to server.tld/u/username, but it leads to server.tld/users/username, maybe some kind of dbUser -> outside world configuration is broken?
I already have 10 lemmy accounts and like 2k compounded points in 12 days!! I have ruined my sleep schedule because I stay on Lemmy till like 8 am! I have procrastinated my well paying job to get more hours into this and even developed plug-ins for lemmy when I could’ve been developing shit for my job! Yes, I’ve been using Lemmy more than Reddit. 😭😔
unethical? takes away control?? you choose what to put on your device, proprietary software doesn’t enslave your hand into pressing the install button.
i don’t know the difference
i wanted to go see a shttton of rock & metal bands including metallica in a festival but 1. that shit’s so expensive (like €200 per day?) and 2. the tickets for the festival i was looking into were out the next day that they were published? maybe resellers or something idk but that’s crazy.
for the lazy clickers:
/c/formuladank@feddit.nl> formuladan
other communities you might be interested in
/c/formuladank@lemmy.world - 233 subs
/c/formuladank@lemmy.ml - 25 subs
Sounds very cool. Does running with that file also handle the SSL certificate and validation automatically? Or are there extra steps?
Someone said this about Caddy “it injects advertising headers into your responses”. Is this true? I don’t know anything about caddy but that doesn’t sound too good lol.
You probably understood me the first time but I’m editing because I made a mistake in how I phrased it.
to another
community→ instance
the number identifier is different on each
community→ instance
i made a new userscript for submitting forms with Ctrl + Enter. Is that something you’d find useful?
// ==UserScript==
// @name Lemmy Form Submit with Ctrl+Enter
// @version 1.0
// @description Submit forms with Ctrl+Enter in Lemmy instances so you don't have to click the button every time you want to post something.
// @author God (https://sh.itjust.works/u/god)
// @match https://*/post/*
// @match https://*/comment/*
// @icon https://join-lemmy.org/static/assets/icons/favicon.svg
// ==/UserScript==
var isLemmy =
document.head.querySelector("[name~=Description][content]").content ===
"Lemmy";
if (isLemmy) {
// Define a global variable to keep track of the currently focused textarea.
var currentFocusedTextarea = null;
// Function to attach focus and blur event handlers to all textareas.
function attachEventHandlers() {
document.querySelectorAll("textarea").forEach((textarea) => {
if (!textarea.dataset.ctrlEnterHandled) {
textarea.dataset.ctrlEnterHandled = true;
// Check if this textarea is currently focused
const wasFocused = document.activeElement === textarea;
textarea.addEventListener("focus", function () {
currentFocusedTextarea = this;
});
textarea.addEventListener("blur", function () {
currentFocusedTextarea = null;
});
// If this textarea was focused, blur and re-focus it to ensure event handlers get triggered
if (wasFocused) {
textarea.blur();
textarea.focus();
}
}
});
}
// Attach a keydown event handler to the entire document.
document.addEventListener("keydown", function (event) {
// If Ctrl + Enter is pressed
if (event.ctrlKey && event.key === "Enter") {
// If a textarea is focused and contains text
if (
currentFocusedTextarea &&
currentFocusedTextarea.value.trim() !== ""
) {
// Your submit logic here
handleSubmit(currentFocusedTextarea);
}
}
});
function handleSubmit(textarea) {
// find the closest type="submit" button and press it.
textarea.closest("form").querySelector('[type="submit"]').click();
}
// Call the function initially to cover textareas that exist when the page is first loaded.
attachEventHandlers();
// Observe the document for changes and reattach event handlers when new textareas are added.
const observer = new MutationObserver(function (mutations) {
mutations.forEach((mutation) => {
if (mutation.type === "childList") {
attachEventHandlers();
}
});
});
observer.observe(document.body, { childList: true, subtree: true });
}
do you know of any way to switch not a community but a post to another instance? afaik they’re numeric so the number identifier is different on each instance which makes it hard.
404 page not found