Redjard
@Redjard@lemmy.dbzer0.com
- Comment on Friends are a bloatware. 4 days ago:
That’s untrue. Someone made a modified client that sent message info towards other servers completely independently of signal. That part was compromised.
It’s like calling aignal compromised because someones phone was hacked.Signal can’t protect you from users being an idiot and essentially showing their chat histories to other people over the internet.
- Comment on Friends are a bloatware. 4 days ago:
That weird blue ai circle I saw them put in the app sure looks like one fat unremovable nag-ad.
Same with the status stuff. They tried turning it into a social media by shoving crap in your face you didn’t want and making it impossible to remove. How is that not an ad? - Comment on Entrance covered by dreams and RNA 6 days ago:
Eir, this is a wendys.
- Comment on Nintendogs 1 week ago:
Bleach Episode 21 around 8:00
- Comment on Step 1: Delete 1 week ago:
Search engines don’t find any of the snippets I checked, are you sure it is? Looks unique to me.
- Comment on Can you share 2 weeks ago:
google mtf
- Comment on HDMI 2 weeks ago:
- Comment on HDMI 2 weeks ago:
Op reposted it from somewhere, they may not have noticed. Here the image is from over a day ago xcancel.com/…/1961868529654767704#m declared as ai via the username. Depending on the intermediate that declaration may have been lost.
@Track_Shovel@slrpnk.net where did you get it from?
- Comment on No title and I can't stop laughing 2 weeks ago:
Requires a login. !bertstrips@moist.catsweat.com is the only one that works for me. (Not the one at the top though since that one is that same url link underneath)
- Comment on Birds of peace 3 weeks ago:
!til@lemmy.world
- Comment on Anon is a gamer 3 weeks ago:
Center it under the desk and prepare for takeoff
- Comment on 100% vegetarian 4 weeks ago:
!obviousplant@lemmy.world
- Comment on Anyone else from Europe feels the same while browsing the "All" feed? 5 weeks ago:
The perks of federation.
- Comment on Anyone else from Europe feels the same while browsing the "All" feed? 5 weeks ago:
Mein Beileid
- Comment on MD = oMega Dumbass 5 weeks ago:
While this may sound reasonable at first glance, it is only true most of the time. Sometimes a minute contains 59 or 61 seconds, even in Africa.
- Comment on I just went onto reddit to a intrest subreddit which happens to be NSFW and i got this, fuck reddit im glad i quit it. 1 month ago:
What about ye olde “googles on ddg”?
- Comment on 🐎 = 🪲 1 month ago:
Angels in most renditions have bird wings (i.e. arms) growing from their backs in addition to normal arms and legs.
- Comment on Converting numbers is easy 2 months ago:
Name the prime a “none”, the octave a sept.
Now, 2 “septaves”, c1 to c3, are a 14th. 2*7 = 14.You can make off-by-one intervals work, but you have to constantly juggle some +1s or -1s compared to what we usually use.
If you counted distance in steps, then moving from your front door to your front door would be 0 steps, not one, and moving by 6 steps is twice the distance of 3 steps.
A piano with 5 septaves has 5*7 = 60 keys, wait.
So anyway mathematically one dodecave, one 12th, c1 to c2, has 12 segments, the frequency diffefence is 2. So a second, 2 notes, has 2/12 of that interval, the ratio is 2^2/12^.
A first, a halftone, has 2^1/12^ as its frequency ratio, and a none has 2^0/12^ = 1, the same frequency.No matter if you count physical keys, distance on a keyboard to change a note by, or mathematical frequency in the air, starting at 1 goes against our intuition, and when you try to add or multiply it is easy to get completely wrong results.
PS: You might want to go C to C on your 5 dodecave keyboard, in which case the concept of “started hour” etc. is familiar, you know to add one arriving at 61 keys, and you know that means an assymetry where one C doesn’t have 11 other keys to itself.
The other way around you’d have to subtract 4, so probably subtract 5 and add 1 since you were dealing with 5 tredecaves in your head not 1 base tredecave followed by 4 extension tredecaves. - Comment on Microsoft pushes staff to use internal AI tools more, and may consider this in reviews. 'Using AI is no longer optional.' 2 months ago:
Insert payed-paid bot here telling you payed is for boats and paid for transactions.
- Comment on devinetly organic... 2 months ago:
Yes, that’s an organ, but you’re thinking of a portable binder of preprinted tables designed for personal management.
- Comment on devinetly organic... 2 months ago:
Na, that’s olfactory, oregon is a large pipe instrument commonly constructed in christian temples.
- Comment on Bait or r*ta*d*ti*n. Call it. 3 months ago:
It breaks apps that properly format tho
- Comment on Anon considers LASIK 3 months ago:
That has limits. Not sure 2hat it comes down to exactly, but under the most ideal conditions I have pulled off yet I’d estimate it improves sight by 3-4.
-8 with the fov of a pinhole is still blind. - Comment on Devices (fanmade, obviously) 3 months ago:
Android has swap, in my case 4GiB. It might also be compressed but parameters are probably incompressible anyway.
Given the runtime on ios, it seems unlikely swapping would be involved. Might be a failed hardware check of some sort, or the OS refusing to alot more ram to the authors specific specific app. Similar to running in the background, there seems to be a lot of chaos about ram allocation permissions on android.
Right now, I am working on an App and the Samsung Ultra S21 that I am using (even having 16GB of ram available…) does not allow me to use more than 500MB for this App even with android:largeHeap=“true” in the Manifest.
- Comment on My password is not accepted because it is too long 3 months ago:
It isn’t usually. If it was, the server-side function wouldn’t need a constant runtime at different-length inputs since the inputs would not have differing lengths.
The problem with client-side hashing is that it is very slow (client-side code is javascript (for the forseeable future unless compatibility is sacrificed)), unpredictable (many different browsers with differing feature-sets and bugs), and timing-based attacks could also be performed in the client by say a compromised browser-addon.
For transit a lot of packaging steps will round off transfer-sizes anyhow, you typically generate constant physical activity up to around 1kB. Ethernet MTU sits at ~1500 bytes for example, so a packet of 200 bytes with a 64 char password or a packet of 1400 bytes with a 1024 char password containing some emoji will time exactly identically in your local network.
- Comment on My password is not accepted because it is too long 3 months ago:
You can easily get the hash of whole files, there is no input size constraint with most hashing functions.
Special password hashing implementations do have a limit to guarantee constant runtime, as there the algorithm always takes as long as the worst-case longest input. The standard modern password hashing function (bcrypt) only considers the first 72 characters for that reason, though that cutoff is arbitrary and could easily be increased, and in some implementations is. Having differences past the 72nd character makes passwords receive the same hash there, so you could arbitrarily change the password on eveey login until the page updates their hashes to a longer password hashing function, at which point the password used at next login after the change will be locked in. - Comment on My password is not accepted because it is too long 3 months ago:
Cryptographic hash functions actually have fixed runtime too, to avoid timing-based attacks.
So correct password implementations use the same storage and cpu-time regardless of the password. - Comment on My password is not accepted because it is too long 3 months ago:
That is a huge red flag if ever given as a reason, you never store the password.
You store a hash which is the same length regardless of the password. - Comment on Einstein-Landauer culinary units 3 months ago:
it wouldn’t though, it would be like 7.5 parts milk to 3 parts flour to almost a part oil to half a part sugar.
And that still being quite imprecise, using 22g or 26g sugar makes a change in taste I wouldn’t want to happen uncontrolled at random. I’m also closer to 41g oil these days, wouldn’t want to use 50 to make it fit some very coarse division.
Scoops of stuff also seems very imprecise. Are they at least levelled?I also use “a pinch of salt”, which doesn’t have to be very precise, but if someone were to ask I could tell them “roughly 0.2g”, from having just measured it. I still remembr how much I hated descriptions like “a pinch” as a cooking novice, and now I can simply measure my pinch on a scale and others can confirm their pinch on their scale until it about matches 0.2g too. How would that work in imperial?
- Comment on Einstein-Landauer culinary units 3 months ago:
l is lowercase, an kl is not used. A kl is a m³, which water utilities charge by, and pools and interior volume are measured in.