From 514136c99af6f1807f07d23640405764f1c674df Mon Sep 17 00:00:00 2001 From: William Carroll Date: Fri, 27 Mar 2020 10:52:13 +0000 Subject: Run Prettier across projects Problem: Prettier was not running when I saved Emacs buffers. Why? - prettier-js-mode needs needs node; lorri exposes node to direnv; direnv exposes node to Emacs; lorri was not working as expected. Solution: Now that I'm using nix-buffer, I can properly expose node (and other dependencies) to my Emacs buffers. Now Prettier is working. Commentary: Since prettier hadn't worked for so long, I stopped thinking about it. As such, I did not include it as a dependency in boilerplate/typescript. I added it now. I retroactively ran prettier across a few of my frontend projects to unify the code styling. I may need to run... ```shell $ cd ~/briefcase $ nix-shell $ npx prettier --list-different "**/*.{js,ts,jsx,tsx,html,css,json}" ``` ...to see which files I should have formatted. --- website/learn/static/index.html | 56 ++++++++++++++++++++++++++++++----------- 1 file changed, 42 insertions(+), 14 deletions(-) (limited to 'website/learn') diff --git a/website/learn/static/index.html b/website/learn/static/index.html index e28869ca1854..1c421a43d715 100644 --- a/website/learn/static/index.html +++ b/website/learn/static/index.html @@ -4,7 +4,10 @@ - + Learn to code @@ -42,33 +45,58 @@

Pricing

I charge £50 per hour for video lessons - and £100 per hour for in-person - sessions. I am currently based in South Kensington, London. + and £100 per hour for in-person sessions. + I am currently based in South Kensington, London.

Contact

Whether you want to sign-up or simply want to learn more, send me an - email at wpcarro@gmail.com. + email at + wpcarro@gmail.com.

Why delay? Start today.

- + -- cgit 1.4.1