- Wrote my statement for the Ducati hit-and-run yesterday. Submitted the insurance claim. An officer will meet me to investigate the footage onsite Monday and file the police report, if need be.
- Got the suspect’s insurance information! Full statement in my Google drive.
- HN/PW/NoSQL/FW/M:
- Always interested in new all-in-one doc tools: https://www.notion.so/. Tasks, tickets, docs, etc.
- Webpacks, Babe transpilerl, npm, etc. Redux for state.
- React came from Facebook.
- Redis streams, as opposed to pubsub or blocking lists.
- Founding a company by yourself is usually better than with a cofounder: http://mitsloan.mit.edu/ideas-made-to-matter/2-founders-are-not-always-better-1.
- Great reference for advancing my javascript: https://levelup.gitconnected.com/9-tricks-for-kickass-javascript-developers-in-2019-eb01dd3def2a.
- ‘Promises’ are a newer javacript entity that replace callbacks. They allow you to perform asynchronous tasks. Promises have ‘then’ and ‘catch’ methods, which are basically try/except clauses for the callback. Functions can be defined as ‘async’ which means they are just functions that return promises. ‘Await’ can be used in other async functions, which simply means return whatever the function returns when it is done.