

Yep. It seems they haven’t changed a thing about the format. Probably a script much older than mine on their end is generating it too.
I’m the administrator of kbin.life, a general purpose/tech orientated kbin instance.
Yep. It seems they haven’t changed a thing about the format. Probably a script much older than mine on their end is generating it too.
I have a tool that I wrote, probably 5+ years ago. Runs once a week, collects data from a public API, translates it into files usable by the asterisk phone server.
I totally forgot about it. Checked. Yep, up to date files created, all seem in the right format.
Sometimes things just keep working.
With IPv6 for most use cases there’s actually more security. With privacy extensions (pretty sure it’s enabled on windows by default), when you make connections from your device, it uses a “private” IP. That is a randomly chosen address inside your network’s prefix, that changes regularly.
These addresses don’t accept incoming connections. You have a main address that doesn’t really change that you accept connections on. Firewall that for ports you want to allow and then hackers need to port scan 2^64 or 2^80 address space to find your real IPs in your prefix. If they capture your IP from a connection to a web server etc, they won’t have luck scanning you.
Again as per my post above, the biggest risk right now is bad default configurations on many home routers.
The “firewall” features are called connection tracking and, a firewall. With IPv6 I have my firewall setup very similar to NAT. Established and outgoing new connections are allowed (this is done using connection tracking). Incoming new connections are not allowed unless I open up a specific port.
Home firewalls SHOULD be setup the same for IPv6, a lot are not and IMO is the main problem right now.
Just lay down, and pretend you’re compiling.
Does /dev/null support sharding?
Yeah, but is it web scale?
That should all be covered in the unit tests.
No. That’s just because the thread simulating your consciousness has leaked too much memory. So when you sleep the thread saves important parts of the memory map and terminates and a new one is started with an empty memory map ready for a new “day” .
Yes. I host a vpn at my house. Then vpn in on fire stick/laptop etc. No problems to date.
We’d also be entirely unaware of reboots. Our reality would just resume from the last save point and we’d just move on like nothing happened.
How do you know? Just because the repository is hosted outside of our space-time. Doesn’t mean it’s not an open source repository.
I do use postgres but only as an rdb provider. I thought while it supports json data as a type, does it provide for all of the other advantages of nosql databases for their use case?
Ultimately I feel like the best solution is to have a single database provider that could do both fully. I’m not sure it’s really there yet. But halpt to be told I’m wrong. I’ve not really needed that myself for my projects.
I never understood why people compare nosql to rdbms. They are entirely different systems with different use cases.
Where you neee data consistency and need to always get the same results to a query go with a structured rdbms. Where you need speed over all of that (and there are real use cases for this) then nosql is for you. Using both is of course a likely result too.
There’s of course a lot of other considerations. But they’re different tools for different situations.
Just do it really quickly!
Wait, that’s my key. Ohhh QIDBA not QADBX.
Here you go
#include <iostream>
#include <csignal>
#include <unistd.h>
void sigusr1_handler(int signal)
{
std::cout << "Signal USR1" << std::endl;
}
int main()
{
std::cout << "Installed handler for USR1" << std::endl;
std::signal(SIGUSR1, sigusr1_handler);
while (1 == 1)
{
usleep(5000000); // 5 seconds
std::cout << "Waiting for signal" << std::endl;
}
}
That will help you read at least one of them.
As someone from the UK, I’m glad they did that. So I can see the image without going through passport control.
I’ve seen this in production code before. I might argue if you caught a very specific exception type that didn’t matter it might be acceptable. Maybe. But just the overall Exception type… Recipe for disaster.
Yes, had the same happen. Something that should be simple failing for stupid reasons.