everyone of the top 1% has to be a megalomaniac. openly supporting nazis and displaying their symbols is an entirely different thing.
everyone of the top 1% has to be a megalomaniac. openly supporting nazis and displaying their symbols is an entirely different thing.
right now we don’t have any real customers that use it - as the plugin did not sell yet.
but from testing at customer sites with real people that would use it - we got only positive feedback. which is not hard to imagine: the RAG + LLM enables less experienced users to navigate a huge and complex network of information.
but it for sure is also a buzzword execs like to see: they talked to us because we have AI. saw that the main product is good. bought the main product and decided the AI is too expensive.
in the end it doesn’t matter to me. the 2w of AI was a fun sidequest and it left us with a passive boost for sales.
i know it is an unpopular opinion around here. but currently AI features open doors for sales. that is important.
for the software i help develop, we introduced an optional AI integration. just its presence allowed us to sell the main SW multiple times. the AI plugin was never sold so far.
investment AI: 2 weeks of gluecode. i am not concerned with finances, but that plugin is for sure net positive.
that’s the great thing: you don’t have to use it
as the screenshot shows, it is opt-in
It really seems like we are looking at two sides of the same coin.
The coin has already ben tossed. Let’s see on which side it will land - I certainly hope it is the one you described.
I hear you. During the reddit exodus i left without having an alternative and stumbled upon lemmy much later. So i am fine going back to not having social media. However, a social network only survives if there is enough content. And if we are honest, lemmy barely has enough content.
Ill give you an example: I like climbing and there is !climbing@lemmy.ml with roughly 2 posts a month and !climbing@sh.itjust.works with less. I am happy to see something about my hobby twice a month. But all my friends still are on reddit, because two posts a month are not enough to them.
If you click on my profile, you will find 4 posts. I am a natural lurker, like most people on the internet, i read, vote and maybe comment. These posts, i made them because i wanted to add some content to this platform. While facebook is federated, there will be much more content. We can see theirs, they can see ours. Sounds like a win-win, right? But it may also make lemmings dependent on facebook content. If there is always more than enough content to endlessly scroll, I don’t need to upload my stuff to the network. However, if facebook pulls the plug after a long time, that leaves barely any content here and lemmy is basically dead.
I would probably still be around: Angrily clicking on some link about random big corpo, once a month smiling because someone shared a picture doing the same hobby as i. But for sure there are still people on old XMPP instances, while motivated dev’s reinvented XMPP: Matrix
from https://ploum.net/2023-06-23-how-to-kill-decentralised-networks.html :
In 2013, Google realised that most XMPP interactions were between Google Talk users anyway. They didn’t care about respecting a protocol they were not 100% in control. So they pulled the plug and announced they would not be federated anymore.
Basically keep people from using all the other platforms. Then stop supporting them. Similar like .docx never quite works in the open document editors. At least i refuse to believe that OSS devs are less skilled and motivated.
I guess federation workers played a prank on me. Removed duplicate replies.
deleted by creator
deleted by creator
Totally agree with you! If we are talking laws, it needs to be covered by general laws. Hopefully it already is wherever ppl are. It makes no sense to create specific laws for online games and VR games. Otherwise the next new tech needs its special law again, and the making of law is always late.
If we are talking etiquette, Netiquette exists.
deleted by creator
deleted by creator
deleted by creator
deleted by creator
deleted by creator
The code is not obfuscated. The person i linked to even formatted it nicely. I do not have the time or energy to go through all of youtube’s JS. But the 5s everyone is talking about does target every browser the same. Serverside the code isn’t altered based on browser detection.
I know that you are memeing - but some ppl probably don’t have the background to see the difference.
A ping does not contain a http header containing a user agent. The response to a ping is not a webpage - and even if it was, your console won’t execute the JS.
as @damnthefilibuster@lemmy.world already mentioned: GitLab CI
Jenkins is a CI application from before CI was cool. GitLab CI is integrated and can trigger on certain events. Additionally you mentioned, that you want to publish on a public repo anyway.
You are probably are comfortable with containers. So GitLab CI should be easy for you to learn - as it pretty much starts up a container to do certain tasks. I’ve seen suggestions for Kubernetes, which for sure is the more mature solution. But i would question, whether you need the added functionality and complexity of K8s for a home setup.
To gain access to your local network, you can use the runner for a secure connection (as described by damnthefilibuster). or you could SSH into the machine, as long as you have it in a DMZ. Drawback is that you have to be more sure about your network infrastructure. Benefit is that it is a more general approach. Obviously you need to store all certs, keys and preferably even addresses in secrets, not the
.gitlab-ci.yml
.As you can see from this thread, there are many ways which lead to rome. My advice is to start with something simple and lightweight, which you understand. adding complexity down the road is easier, than removing it.