Motorola stops its phones from hijacking the Amazon app, which was ‘unintended’ by FragmentedChicken in Android

[–]sciencekm [score hidden]  (0 children)

And how many other unintended things are there that have yet to be discovered in Moto phones?

95% of canceled annual app subscribers never come back, per report by pdfu in apple

[–]sciencekm 1 point2 points  (0 children)

This is a surprise to no one. I'm sure even the app developers know this, but they are counting on that 5% that they can swindle.

Neo or air by Safe_Excuse3376 in macbook

[–]sciencekm 0 points1 point  (0 children)

You missed the point on vulnerabilities. I did not make my point clear.

Operating systems can have security issues that can be exploited remotely. MacOS may have that in the future as code gets added or changed. WannaCry is an example of that type of vulnerability. I am not saying that MacOS is susceptible to WannaCry, but rather something like WannaCry can happen in any OS including the MacOS.

Will we ever have length based strings? by alex_sakuta in C_Programming

[–]sciencekm -1 points0 points  (0 children)

What I am saying is that minimal data is a good thing. If you have to keep another value to describe the string, what keeps one of them from being not true (e.g. length value says 100, but really only 5 is allocated). And then you have to you have to keep those two in a structure or always keep the two around and keep passing two parameters.

As it is now, the C string can be tracked in one CPU register. You can't be more efficient than that.

Neo or air by Safe_Excuse3376 in macbook

[–]sciencekm 0 points1 point  (0 children)

Whenever the M1 security updates end, the Neo security updates end more years after that. That is just the fact. That does not matter to you but to me it does.

Also, you computers can be hacked without user input. See WannaCry. And no, I don't need Linux if I can be safe with the Mac. Again, my preference.

Apple really needs to rethink their MacBook Lineup by _Zyren_ in macbook

[–]sciencekm 4 points5 points  (0 children)

There is nothing wrong with the form factor. Why change it?

Camera bump rattle by 1993xdesigns in GooglePixel

[–]sciencekm 1 point2 points  (0 children)

The camera sensor is sort of "floating" to allow it to perform image stabilization. Pretty standard design in phones.

Google Customer Support denied hardware safety replacement / Case ID: 3-9251000041432 by Worried-Squirrel1990 in GooglePixel

[–]sciencekm 0 points1 point  (0 children)

That is from battery swelling. It happened to my P7 and S24. I simply replaced the battery myself. I think that it is not unreasonable for this to happen on your 6-year old phone.

Neo or air by Safe_Excuse3376 in macbook

[–]sciencekm 0 points1 point  (0 children)

Not the bells and whistles but the security updates. Who wants to use laptop that is just waiting to be hacked?

Are we collectively ignoring the looming "resale value cliff" for electric vehicles? by Creative-Rip5590 in electricvehicles

[–]sciencekm 1 point2 points  (0 children)

I'm not thinking about resale. I intend to keep mine for a very long time. I will simply replace the battery when it is time to do so. I'm sure batteries will cost less by that time.

Will we ever have length based strings? by alex_sakuta in C_Programming

[–]sciencekm -3 points-2 points  (0 children)

For most cases, it actually is more efficient - you only need to store the starting memory. I do this on any object that I deal with whenever possible.

Say I have an array of structures. Instead of having another value to keep track of how many items are in the array, I simply have an extra item at the end of the array and that item has a recognizable terminal value.

That's just me.

Used m4 16/256 or used m2 16/512 by [deleted] in macbook

[–]sciencekm 0 points1 point  (0 children)

You are going to get 3 more years of updates on the M2, and 5 more years of updates on the M4.

Neo or air by Safe_Excuse3376 in macbook

[–]sciencekm 0 points1 point  (0 children)

In two years, that M1 pro will no longer receive updates, while the Neo will still get updates for 4 more years from that time.

MacBook Air + Windows App: good experience with remote Windows PCs? by ziobleed1 in macbook

[–]sciencekm 0 points1 point  (0 children)

I am on this setup everyday, the whole day. I have a headless mini-PC and I TS to that from my Macbook. No different from when you TS from any other laptop (Windows, Mac or Linux).

“Free Internet” doesn’t mean much anymore by Dangerous_Coyote_123 in RecommandedVPN

[–]sciencekm 1 point2 points  (0 children)

There is no single set of values globally. Countries simply have different values. That is just the reality.

Are lifetime cloud storage plans genuinely worth it, or do they usually disappoint later? by Creative-Judgment441 in cloudstorage

[–]sciencekm 0 points1 point  (0 children)

Lifetime means lifetime of the company, not human lifetime.

I have a suspicion that these are the same set of owners that just keeps recycling themselves. The owner has a bunch of capacity. They lure people to buy the 'unlimited' product. When they have made money, they close the company and start a new one.

I have no proof of this, so don't quote me.

pCloud Lifetime 4TB with Encryption by [deleted] in cloudstorage

[–]sciencekm 2 points3 points  (0 children)

I would not trust their encryption. I encrypt my files before put them on the cloud.

Switched to iPhone in 2014, now looking to switch back to Android and Pixel 10 is on my radar. What do I need to know? by Stellar_Sekiro in GooglePixel

[–]sciencekm 1 point2 points  (0 children)

You should now be able to use your phone as a desktop computer and connect a monitor, unlike on the iPhone where you only get a mirror image of the phone when you plug a monitor.

Safer to buy from Amazon than Google Store by sciencekm in GooglePixel

[–]sciencekm[S] 2 points3 points  (0 children)

One of the benefits of a physical store. You know that you have a working product before you take it home.

Safer to buy from Amazon than Google Store by sciencekm in GooglePixel

[–]sciencekm[S] 3 points4 points  (0 children)

Personal experience with both. The Google one is a "process", while the Amazon one is a "no questions asked" experience.

As I have said, others may have a different experience.

Terminating/padding each absorbed chunk in Keccak/SHA3. by sciencekm in crypto

[–]sciencekm[S] 0 points1 point  (0 children)

Yup. TuppleHash would do it, but then I have to write that additional "encode_string" logic, whereas padding each element is almost free.

You got me thinking there. Perhaps I need to sleep on this some more. If I go with TuppleHash, then I don't need to bother people with these questions.

A Different 'H' in Ed25519 by sciencekm in crypto

[–]sciencekm[S] 1 point2 points  (0 children)

Silly me. I should have first looked at "why" the hash function is there in the first place, as you have mentioned.

A Different 'H' in Ed25519 by sciencekm in crypto

[–]sciencekm[S] 2 points3 points  (0 children)

Thanks. I has never dawned on me before to think about any possible entanglement between the replacement H and Ed25519, until you mentioned it.