- Markdown style
[![Watch the video](https://img.youtube.com/vi/nTQUwghvy5Q/default.jpg)](https://youtu.be/nTQUwghvy5Q)
- HTML style
<a href="http://www.youtube.com/watch?feature=player_embedded&v=nTQUwghvy5Q" target="_blank">
[T]he difference between a bad programmer and a | |
good one is whether he considers his code or his | |
data structures more important. Bad programmers | |
worry about the code. Good programmers worry about | |
data structures and their relationships. | |
-- Linus Torvalds | |
~~~ | |
Clarity and brevity sometimes are at odds. | |
When they are, I choose clarity. | |
-- Jacob Kaplan-Moss |
Steps to deploy a Node.js app to DigitalOcean using PM2, NGINX as a reverse proxy and an SSL from LetsEncrypt
If you use the referal link below, you get $10 free (1 or 2 months) https://m.do.co/c/5424d440c63a
I will be using the root user, but would suggest creating a new user
import React from "react"; | |
import { Link } from "react-router-dom"; | |
export function createResource(getPromise) { | |
let cache = {}; | |
let inflight = {}; | |
let errors = {}; | |
function load(key) { | |
inflight[key] = getPromise(key) |
import { useState } from "react"; | |
export default function SlightlyComplexForm() { | |
const [urlVisible, setUrlVisible] = useState(false); | |
const handleSubmit = async (event) => { | |
// Same as before | |
}; | |
const handleEmailChange = (event) => { |
#!/usr/bin/env sh | |
# _ _ _ | |
# | | | | | | | |
# ___| | _| |__ __| |_ __ ___ | |
# / __| |/ / '_ \ / _` | '__/ __| | |
# \__ \ <| | | | (_| | | | (__ | |
# |___/_|\_\_| |_|\__,_|_| \___| | |
# | |
:: default : yabai -m config active_window_border_color 0x99DD0000 |