You're looking at Less Wrong's discussion board. This includes all posts, including those that haven't been promoted to the front page yet. For more information, see About Less Wrong.

jkaufman comments on Amanda Knox Redux: is Satoshi Nakamoto the real Satoshi Nakamoto? - Less Wrong Discussion

12 Post author: Cosmos 06 March 2014 11:33PM

You are viewing a comment permalink. View the original post to see all comments and the full post content.

Comments (54)

You are viewing a single comment's thread. Show more comments above.

Comment author: jkaufman 14 March 2014 08:33:58PM *  4 points [-]

Hungarian notation in a random bitcoin file I opened: coins.cpp

if (!fZero) {
nLastUsedByte = b + 1;
nNonzeroBytes++;
}

See the letters preceding each variable? Those tell you what type of variable they are. Here I suspect "f" is for float and "n" is for "integer". This is not a common style for programming, and especially this kind of it ("systems hungarian") is associated with Microsoft.

Comment author: Jayson_Virissimo 14 March 2014 08:38:35PM 1 point [-]

I see, thanks.