• Monday

    • Marinade’s postmortem for the bug last week, unstaking lots of sol for a few epochs and reducing the total APY by a small bit: https://docs.marinade.finance/changelog#02-03-2022.
    • Andre Cronje (yearn/fantom) quit: https://blockworks.co/defi-star-developer-andre-cronje-calls-it-quits/.
    • Finished an example nextjs app (blog), deployed with vercel.
      • Very easy; firstclass support for static and serverside content (deployed as serverless functions), all on their edge network.
      • Posts links to preview apps on a branch in gitlab.
    • robots.txt to tell search engine crawlers how to navigate your site: https://developers.google.com/search/docs/advanced/robots/intro.
    • Remember the core web vitals (fundamentally important for site UX, which is analyzed to affect actual things like SEO).
      • Largest Contentful Paint (LCP). Load. <2.5s.
      • First Input Delay (FID). First user click/type/etc -> event handlers. <100ms.
      • Cumulative Layout Shift (CLS). <0.1. This is measured by size*distance.
    • Tailwind clean css https://tailwindcss.com/.
    • Configured vscode with tabsize=2 for js/css/html: https://gitlab.com/bmahlstedt/config/-/commit/f6690edfa6d6be602b6761a110bf589693bbf62a.
    • Played with getStaticProps() and getServerSideProps and SWR (https://swr.vercel.app/) a bit, general strategic comparisons between ssg vs ssr vs clientside.
    • “remark” and “remark-html” to process markdown into html. date-fns for formatting dates.