This is from before my times, but… Deploying an app by uploading a pre built bundle? If it’s a fully self-contained package, that seems good to me, perhaps better than many websites today…
This is from before my times, but… Deploying an app by uploading a pre built bundle? If it’s a fully self-contained package, that seems good to me, perhaps better than many websites today…
Apple has always been about locking down the system and forcing the user to do things the way Apple wants. Not only within one device, but also in locking down inter-device protocols and removing standard ones, as well as obfuscating information about the hardware, not letting the users make an informed decision. And that’s already after the fact that you aren’t legally allowed to use the system on non-Apple hardware.
They probably already set it up to not happen in Europe
By the way, for editing server files consider nano. It’s also widely available, has simpler shortcuts and displays them on the screen. It’s obviously not powerful like vim, but a good match when you just need to edit a config file.
By that logic, any sorting implementation is O(1), as the indexing variable/address type has limited size
If you use a VPN, it doesn’t matter if you use your home network or public wifi… At that point if they track you down to your VPN account, if either you provided personal information, or you used identifiable payment, you could be tracked down. Only difference is, if your VPN keeps certain information, you could be tracked down to the network you connected from, where the public wifi would offer some protection.
VPNs aren’t a magic solution to guarantee privacy, they’re a tool with multiple uses, but using one could decrease your privacy in certain cases.
If I may shill for a moment, that’s something I like about sublime merge - the buttons mostly map to git commands, and it has a nice log showing the commands it ran and their output.
On the topic of whether or not it’s an emulator, sounds like semantics in the end - fair enough, I disagree but you make a fair point.
That said, in terms of security I think it’s very important to point it out that it isn’t any more secure than running a random Linux executable. In my view, the original comment is advocating for running unknown executables under wine as a security measure, and the further argument is that it’s more secure because most attacks don’t target that.
Sounds like if people rely on that for security, malware will just start targeting that after people get used to assuming it’s safe.
WINE is not safe to run malware in, it’s not a secure sandbox. AFAIK, anything expecting it can do anything a Linux binary can. (Also, not an emulator, it’s in the original name - WINE Is Not an Emulator)
I don’t know about GUI tools, but:
Everything is so fast because it uses the index built into NTFS to find files by filename quickly, and NTFS is the definitive file system on Windows so it works everywhere.
On Linux, there isn’t really an index built into the filesystem - some might have that, but I don’t know about it. That said, plocate is a common tool that uses its own index. You have to update the database when files change (you’ll probably have a job doing that daily), but searching the index is very fast.
I might be wrong, but doesn’t SSE require you to explicitly use it in C/C++? Laying out your data as arrays and specifically calling the SIMD operations on them?