

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.
ed25519 verify key: 6614c7acfe8e7419bbc26709d7f0fdcc55d8258f205a95173ce37e42e1715462
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.
Maximum overdrive. 1986, coked up actors, campy as hell but taking itself very seriously, 14% rotten tomatoes score.
I think I would prefer mice or roaches jeez
For continuously saying “eyyyyy”. TBF it was really annoying, every time I was scolded I’d respond with eyy whoaaa eyyy and it escalated from there. It was pretty funny to see the explanation on the write up without context though.
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?
$50 for a week worth of groceries? Either you are posting from 2003 or the developing world.
People who didn’t lease will lose their shirts but the price of new cars is the primary driver for the price of used cars. New, cheap, and more useable EVs will make used ones cheap.
As to the reliability, it remains to be seen. Considering the size of a vehicle I think an aftermarket will pop up for refurbishing and replacing batteries like it has for the earliest modern EVs in the us, the leaf.
Battery prices are collapsing and we are at an inflection point where electric vehicles will soon be more economical to purchase, drive and maintain for a much greater number of people. This is as inevitable as the phaseout of coal.
Just go and pay $50/month they can’t do shit anymore
If we all just stop paying the insurance, and instead just put $50/month towards the exorbitant medical bills, boom, universal healthcare
Had something similar, failed to get pre-approval for a CT scan to diagnose a pleural effusion. Yes, I was supposed to wait 24-36h for someone unfamiliar with my case and likely not even a doctor to determine if a diagnostic test was nessasary.
Edit DDD
Absolute, fanatical concentration.
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 '<your cloud server ip>' 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@<your cloud server ip> -i <path to your ssh key> -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.
I understand the language in question well enough to proof read it, so it amounts to a teaching tool for me. It’s benefit is that it copies a wealth of (mostly) correct text so I get the right idioms, vocabulary, and grammar, or the appropriate slang version.
It is extremely useful for suggesting translations and translating unclear foreign language sentences
It’s understanding code like chatgpt helps me understand Hungarian.