Plant Intelligence and the Imaginal Realm (Alex)
Why we make things and why it matters (Sherman)
The Wisdom of Insecurity
The most Human Human
Built to Sell
| // 3D Dom viewer, copy-paste this into your console to visualise the DOM as a stack of solid blocks. | |
| // You can also minify and save it as a bookmarklet (https://www.freecodecamp.org/news/what-are-bookmarklets/) | |
| (() => { | |
| const SHOW_SIDES = false; // color sides of DOM nodes? | |
| const COLOR_SURFACE = true; // color tops of DOM nodes? | |
| const COLOR_RANDOM = false; // randomise color? | |
| const COLOR_HUE = 190; // hue in HSL (https://hslpicker.com) | |
| const MAX_ROTATION = 180; // set to 360 to rotate all the way round | |
| const THICKNESS = 20; // thickness of layers | |
| const DISTANCE = 10000; // ¯\\_(ツ)_/¯ |
| #!/usr/local/bin/bb | |
| (require '[babashka.curl :as curl]) | |
| (require '[babashka.process :refer [sh]]) | |
| ; assume your api-key is stored in ~/openai.edn | |
| (def openai-cfg (clojure.edn/read-string (slurp (str (System/getProperty "user.home") "/.openai.edn")))) | |
| (defn pre-prompt | |
| [prompt] |
| #!/usr/bin/env bash | |
| # exit on error | |
| set -o errexit | |
| STORAGE_DIR=/opt/render/project/.render | |
| if [[ ! -d $STORAGE_DIR/chrome ]]; then | |
| echo "...Downloading Chrome" | |
| mkdir -p $STORAGE_DIR/chrome | |
| cd $STORAGE_DIR/chrome |
| // Copy and paste the code below in the javascript console | |
| document.getElementsByTagName("video")[0].playbackRate = 3 | |
| // (Replace '3' with any value; 2x is current cap through the Youtube UI) |
Plant Intelligence and the Imaginal Realm (Alex)
Why we make things and why it matters (Sherman)
The Wisdom of Insecurity
The most Human Human
Built to Sell
I've been deceiving you all. I had you believe that Svelte was a UI framework — unlike React and Vue etc, because it shifts work out of the client and into the compiler, but a framework nonetheless.
But that's not exactly accurate. In my defense, I didn't realise it myself until very recently. But with Svelte 3 around the corner, it's time to come clean about what Svelte really is.
Svelte is a language.
Specifically, Svelte is an attempt to answer a question that many people have asked, and a few have answered: what would it look like if we had a language for describing reactive user interfaces?
A few projects that have answered this question:
initialize: once, when the controller is first instantiatedconnect: anytime the controller is connected to the DOMIn your command-line run the following commands:
brew doctorbrew updateFrom time to time, Musk will send out an e-mail to the entire company to enforce a new policy or let them know about something that's bothering him. One of the more famous e-mails arrived in May 2010 with the subject line: Acronyms Seriously Suck:
There is a creeping tendency to use made up acronyms at SpaceX. Excessive use of made up acronyms is a significant impediment to communication and keeping communication good as we grow is incredibly important. Individually, a few acronyms here and there may not seem so bad, but if a thousand people are making these up, over time the result will be a huge glossary that we have to issue to new employees. No one can actually remember all these acronyms and people don't want to seem dumb in a meeting, so they just sit there in ignorance. This is particularly tough on new employees.
That needs to stop immediately or I will take drastic action - I have given enough warning over the years. Unless an acronym is approved by me, it should not enter the SpaceX glossary.
| require 'sidekiq/api' | |
| # 1. Clear retry set | |
| Sidekiq::RetrySet.new.clear | |
| # 2. Clear scheduled jobs | |
| Sidekiq::ScheduledSet.new.clear |