Explore >> Select a destination


You are here

hypernephelist.com
| | jfhr.me
3.3 parsecs away

Travel
| | This post is a short introduction to smart contracts: How they work, what you can do with them, and how to develop and interact with one.
| | www.ardanlabs.com
2.8 parsecs away

Travel
| | Introduction I made it my mission in 2022 to learn everything I could about blockchain and as the year ends, I feel like I accomplished my goal. Love it, hate it, or don't want to know nothing about it, I think it's important to push your opinions aside and understand how this technology works. Even with the current collapse of several large crypto companies in 2022, blockchain isn't going to disappear.
| | codecapsule.com
2.6 parsecs away

Travel
| | How to connect and authenticate a crypto wallet and how to generate a JWT to grant access rights to a user
| | gpfault.net
21.1 parsecs away

Travel
| [AI summary] The provided text is a detailed explanation of how to write a simple 64-bit Windows application in assembly language that calls the ExitProcess function from the KERNEL32.DLL library. It covers the following key topics: 1. **Memory and Register Basics**: Explains how memory and registers work in 64-bit Windows, including the use of the stack pointer (RSP), registers like RCX, RDX, R8, and R9 for passing arguments, and the importance of stack alignment for performance. 2. **Calling Conventions**: Details the 64-bit Windows calling convention, including how the first four integer or pointer arguments are passed in registers (RCX, RDX, R8, R9), how additional arguments are passed on the stack, and the requirement for the stack to be aligned to ...