

Yeah but you are a person presumably, so there is accountability. The reason to use AI is to escape accountability
ed25519 verify key: 6614c7acfe8e7419bbc26709d7f0fdcc55d8258f205a95173ce37e42e1715462
Yeah but you are a person presumably, so there is accountability. The reason to use AI is to escape accountability
Just create a black hole network at your house and connect all ‘smart’ appliances to that. Block all traffic at the router level. This prevents them trying to connect to open mesh networks and also provides the benefit of cataloging all the traffic
I’m not sure myself, there seems to be better software out there for each individual part of what nextcloud does, but not the whole thing. I’ve been reading up on open cloud, which is a fork of a rewrite of owncloud, which is what nextcloud is forked from. https://opencloud.eu/en/opencloud-community
I haven’t tried it out yet though.
I wouldn’t say categorically that it sucks.
It is inefficient and requires far too many server resources for what it does. Won’t really run on less than 2gb/RAM minimum, with 1-2 users.
Add ONS seem to be all over the place with lots of incompatibilities, some default add ons that just plain don’t work.
In my short testing it seems to be a bit unstable.
In my opinion, it suffers from many of the same problems as other projects that started out and we’re developed largely by hobbyists like zoneminder, and even home assistant to some extent. Sprawling growth, no strict architecture, little concern for refactoring.
It can go either way, some people like the method, others hâte it because it’s not gamified. Pro tip, get pimsleur courses from your library if you want to try them for a real trial rather than what they give you
I think a few hours with a torch and they would make fantastic dumpsters. Imagine if you could crab walk a self moving dumpster? Genius
Companies aren’t held to contracts like people are held to contracts. One buyout, restructuring, name change, no more contract. It’s meaningless
If you are looking for a permanent place somewhere in Europe, it’s very difficult to quickly find monthly or weekly rentals with the appropriate monthly or weekly discount you will find on Airbnb. I don’t discount it’s négatives, but with the paperwork burden to find a medium or long term place in many areas in Europe Airbnb does the best job of cutting through all of that and getting you a place now
It’s understanding code like chatgpt helps me understand Hungarian.
We all know it’s going to be nodejs, backed up by mongodb. This is because LOC on the commits can be maximized for minimal effort, and it will need to be rewritten every 2-3 years.
The attractiveness of learning it was that you could avoid boom and bus cycles of retrenchment and clowns like Elon musk. Unfortunately that isn’t true anymore so I think once the dust settles, finding people willing to specialize in tech like this is going to get real hard.
Yet it’s the thing every junior dev wants to do as they gain more experience.
Its not marketing it’s that they extend credit to anyone who comes through the door. 550 credit score? No problem sir, here is your $62500 RAM 1500, loaded with options. If you can’t pay $1000/month for a Kia why not splurge and not pay $2000/month for an optioned out truck?
How does it not mitigate the danger? You are putting a secure web server in front of the tunnel rather than basically all traffic being forwarded to the port?
It’s probably a bit dangerous to expose your internal network in this way. If you really want a server running at home, there are interesting services which provide that for a fee, or you could set up a “reverse ssh proxy”.
It’s easier to do on some flavor of Linux, but you will set up a background service to ssh to a cloud server you rent, which links a local port on the cloud server to a local port on your home computer. You can then run a web service like caddy server on the cloud server to securely serve this port.
I realize this sounds rather complex, but something to look into and learn.
Your Caddyfile on the cloud server will look something like this:
my_subdomain.my_domain.com {
reverse_proxy / {
to 127.0.0.1:8081
}
encode gzip
}
And the service on your local will look something like this:
[Unit]
Description=Keeps a reverse tunnel to '' open on port 8081 on the remote server
After=network-online.target
[Service]
Environment="AUTOSSH_GATETIME=0"
ExecStart=/usr/bin/autossh -N -M 10986 -o "PubKeyAuthentication=yes" -o "PasswordAuthentication=no" -o "ExitOnForwardFailure=yes" -R 8081:127.0.0.1:8080 root@ -i -p 2097
ExecStop=/bin/kill $MAINPID
Restart=always
RestartSec=5
[Install]
WantedBy=multi-user.target
You will have to allow ssh on a non standard port (arbitrarily 2097 here), that way you can still use ssh on the standard port 22. I have some services running like this through a NAT for years.
Guessing you don’t run a couple docker containers to support local development;-)
currently depends on having a working-age population that is large enough to support the non-working population
This is only a problem if production does not increase dramatically, as it has for the last century. The reason it feels like there are insufficient working people is because parasites siphon from the resource distribution between more and more productive workers and their non working counterparts
Confidence is indistinguishable from correctness if you lack competence and experience. Now in addition to the competent and experienced having to interpret the requirements and do the work, they must also sift through half baked AI solutions.
Well clearly you drank the Comcast kool-aid. Bandwidth is nothing like clean water supply, food, or generated electricity. It’s more like traffic on a highway. Sure, there is a finite amount of room on the highway, but until you hit that at any one time, there is room on the highway for more traffic.
It could be a problem if everyone was playing flight simulator at the same time but they are not.
Looks to be a java application with a number of services running alongside- I don’t think it’s going to be lightweight to run on resource constrained devices, but sweet project anyway! (Side note, no clue how you engineers find the time to hack on things like this, I feel like I’ve got so little time to myself I cannot imagine dedicating it to a project like this)