< luke-jr>
it looks like Xcode is no longer gratis to download.. :/
< luke-jr>
do we actually need the latest version, or can we revert back to the last gratis one?
< achow101>
luke-jr: I'm still able to download it for free
< achow101>
the link in the docs don't work because apple broke them with redirects
< achow101>
but you can still get it manaully
< achow101>
you have to sign in to developer.apple.com, go to the downloads page, click "More", and then scroll through the gigantic list to find the right xcode version
< luke-jr>
I can get to the downloads page, but they all say unauthorised :/
< achow101>
do you have an apple account?
< luke-jr>
yes
< luke-jr>
even gave them my phone number :/
< achow101>
where does it say unauthorised?
< luke-jr>
when I click on the actual download link for anything
< achow101>
weird, I don't have any problems
< achow101>
and I don't pay them
< achow101>
do you have something that deletes cookies and maybe the auth cookie is lost when you try to download?
< luke-jr>
ooh, could be - I have cookies on a whitelist basis
< gazza>
ive just downloaded the whole network (putting in my 2cents to feel apart of it) just wanted to know if theres anything else that needs doing?
< michaelfolkson>
gazza: As the topic of the channel says this channel is for development discussion. #bitcoin for general usage
< brcolow>
I am confused by something. If you look at this line of code: https://github.com/bitcoin/bitcoin/blob/master/src/crypto/sha256_avx2.cpp#L63 it is writing a 32-bit (4byte) integer. In the case of -1996298034 that is, in big endian, 8902 e8ce - then it's converted to little endian which is CEE8 0289 - however what's strange is that WriteLE32 function writes CEE8289 - it skips the
< brcolow>
starting zero of the second chunk. How is that not a bug? It changes the length of bytes written, and changes the resulting hash by skipping a zero.
< sipa>
that makes no sense :)
< sipa>
it writes 4 bytes, always
< sipa>
CEE8289 doesn't even exist; it's 3.5 bytes
< brcolow>
Yeah, that was my bad. I was printing it incorrectly. I'm sorry.