Should I read papers

tags: Papers source: “Mrb: Should I Read Papers?” Accessed February 20, 2023. https://michaelrbernste.in/2014/10/21/should-i-read-papers.html. Yes, but reading a paper isn’t the same as reading a blogpost or a novel. A paper could be an idea captured by someone, or the result of a life’s work, or anything in between. You might need to read it bit by bit, again and again.

July 19, 2023 · 1 min · Gray King

Software Engineers Should Read Academic Papers

tags: Papers source: Al-Ansari, Khaled. “Software Engineers Should Read Academic Papers.” Medium (blog), July 15, 2023. https://medium.com/@KhaledElAnsari/software-engineers-should-read-academic-papers-9a6ee6ebc40d. There are some benefits of reading academic papers: Structured content can enhance your technical writing, you can learn structured writing. (Reading - Writing - Reviewing) cycle making you a better reader and reviewer. Reading to gain information. Structured writing make review easier. Better deading and writing make you a better reviewer. Bridge the industry and the academic field. ...

July 17, 2023 · 1 min · Gray King

Solana Off-Chain Message Signing

tags: Solana source: https://github.com/solana-labs/solana/blob/eabe1070667e87f447b9cb892e2d916ca5b68e34/sdk/src/offchain_message.rs#L237-L240 /// Serialize the off-chain message to bytes including full header pub fn serialize(&self) -> Result<Vec<u8>, SanitizeError> { // serialize signing domain let mut data = Self::SIGNING_DOMAIN.to_vec(); // serialize version and call version specific serializer match self { Self::V0(msg) => { data.push(0); msg.serialize(&mut data)?; } } Ok(data) }

June 15, 2023 · 1 min · Gray King

Ethereum Execution Layer

tags: Ethereum Networking Layer

June 14, 2023 · 1 min · Gray King

Ethereum Sub-protocols

tags: Ethereum Networking, Ethereum Execution Layer

June 14, 2023 · 1 min · Gray King