Zettelkasten

Pyth Notes

on solana aggregate data from individual publishers is this price valid? Resources https://pythnetwork.medium.com/pyth-whitepaper-summary-f91d79bd4192

Near Field Communication (NFC)

What prevents them from being cloned? - Nothing. - Unique ID in ROM segment (ID cannot be changed then)

Assembly Ref

In computer org, data allocation happens on the stack (more limited, faster, more immediate actions) and heap (adaptable, slower, dynamic memory). data segment for variables, code segment also shellcode is asm instructions in hex code (architectures have shellcodes represent certain operations)

Buffer Overflow

Buffer overflow happens when an unsafe buffer that reads in inputs goes outside the bounds of it’s intended memory address It can be deadly because the stack can be overwritten Can return an overwritten memory address by manipulating the eip register, which is the instruction pointer (next instruction) It may be harder to overwrite local variables and less useful, since compiler optimization may not overwrite where you want it to.

Pyro Reference

Built with pytorch backend Usually involves specifying a generative process Usually either use Stochastic Variational Inference (SVI) optimization methods or Monte Carlo Markov Chain (MCMC) sampling methods For SVI Define a model and a guide (variational distribution) guides define where the parameters are to be learnt Example model and guide code

Reverse a Linked List

def reverseList(self, head: ListNode) -> ListNode: current = head while (current and current.next): next = current.next current.next = next.next next.next = head head = next return head This is a real basic problem, but it can be tricky.

Tensorflow Reference

tf.session initiates a tf graph object. Use global variable initializer with it - with tf.Session() as sess: sess.run(tf.global_variables_initializer()) ‘tf.placeholder’ Inputs to be fed in ‘tf.

Coq Reference

Learn x in y style (* This is a comment *) (* Inductive type, enumerated finite *) (* Each item called a constructor *) Inductive day : Type := | monday | tuesday.

Latex Reference

Omega: \omega for $\omega$ and \Omega for $\Omega$ Union: \bigcup for $\bigcup$ Infinity: \infty use \textbf{} for best practices tilde - \sim \sim

Probability axioms

$0 \leq P(E) \leq 1$ $P(\Omega) \leq 1$ $P(\bigcup_{n=1}^{\infty}E_{n}) = \sum_{n=1}^{\infty}P(E_n)$