From f00c271a82cc1d38c50adbed105f74394e0cf6e6 Mon Sep 17 00:00:00 2001 From: Jacob Date: Wed, 27 Sep 2023 03:32:44 +0900 Subject: [PATCH] chore: formatting --- .prettierignore | 3 + archetypes/default.md | 1 - content/_index.md | 2 +- content/about.md | 66 +++++++++++-------- content/blog/_index.md | 2 +- ...t-quickstart-for-javascript-programmers.md | 2 +- 6 files changed, 44 insertions(+), 32 deletions(-) create mode 100644 .prettierignore diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..54ee56f --- /dev/null +++ b/.prettierignore @@ -0,0 +1,3 @@ +*.html +static/ +resources/ diff --git a/archetypes/default.md b/archetypes/default.md index 00e77bd..26f317f 100644 --- a/archetypes/default.md +++ b/archetypes/default.md @@ -3,4 +3,3 @@ title: "{{ replace .Name "-" " " | title }}" date: {{ .Date }} draft: true --- - diff --git a/content/_index.md b/content/_index.md index 6e97b25..21e1bb9 100644 --- a/content/_index.md +++ b/content/_index.md @@ -1,5 +1,5 @@ --- -title: 'Web & Software Development Tutorials' +title: "Web & Software Development Tutorials" --- # GeekLaunch diff --git a/content/about.md b/content/about.md index ce94763..306961e 100644 --- a/content/about.md +++ b/content/about.md @@ -12,46 +12,56 @@ My professional software engineering experience includes two medical software co I'm experienced with many technologies and programming languages, including: {{%collapse title="Front-end web" %}} - - HTML/CSS/JavaScript - - TypeScript - - Angular - - React - - Vue - - Sass/SCSS + +- HTML/CSS/JavaScript +- TypeScript +- Angular +- React +- Vue +- Sass/SCSS + {{%/collapse%}} {{%collapse title="Server-side" %}} - - Node.js - - Microsoft SQL - - MySQL - - PostgreSQL + +- Node.js +- Microsoft SQL +- MySQL +- PostgreSQL + {{%/collapse%}} {{%collapse title="Applications programming" %}} - - Rust - - WebAssembly - - [AssemblyScript](https://www.assemblyscript.org/) - - C# - - Java - - Python 3 - - C - - Ocaml + +- Rust +- WebAssembly +- [AssemblyScript](https://www.assemblyscript.org/) +- C# +- Java +- Python 3 +- C +- Ocaml + {{%/collapse%}} {{%collapse title="Distributed ledger technology & smart contract development" %}} - - [Ethereum](https://ethereum.org/) blockchain - - Solidity - - [NEAR](https://near.org/) blockchain - - [Algorand](https://algorand.org/) blockchain - - [TEAL](https://developer.algorand.org/docs/get-details/dapps/avm/teal/)/[PyTEAL](https://github.com/algorand/pyteal) + +- [Ethereum](https://ethereum.org/) blockchain +- Solidity +- [NEAR](https://near.org/) blockchain +- [Algorand](https://algorand.org/) blockchain +- [TEAL](https://developer.algorand.org/docs/get-details/dapps/avm/teal/)/[PyTEAL](https://github.com/algorand/pyteal) + {{%/collapse%}} {{%collapse title="Other technologies" %}} - - Linux - - [Hugo](https://gohugo.io/) - - Git - - GitHub - - JIRA + +- Linux +- [Hugo](https://gohugo.io/) +- Git +- GitHub +- JIRA + {{%/collapse%}} I use the [Hugo static site generator](https://gohugo.io/) to maintain this website. diff --git a/content/blog/_index.md b/content/blog/_index.md index 2422b67..6c432cb 100644 --- a/content/blog/_index.md +++ b/content/blog/_index.md @@ -1,3 +1,3 @@ --- -title: 'Posts' +title: "Posts" --- diff --git a/content/blog/rust-quickstart-for-javascript-programmers.md b/content/blog/rust-quickstart-for-javascript-programmers.md index a2d5af5..f6295d1 100644 --- a/content/blog/rust-quickstart-for-javascript-programmers.md +++ b/content/blog/rust-quickstart-for-javascript-programmers.md @@ -740,7 +740,7 @@ Let's walk through the error message: To "borrow" a value is to take a reference to it. This says that we're trying to create a reference to a value that has been moved away: the container that used to hold the value—`my_string`—is empty! -- `` move occurs because `my_string` has type `String`, which does not implement the `Copy` trait `` +- ``move occurs because `my_string` has type `String`, which does not implement the `Copy` trait`` There are some values that don't really need the power of move semantics. These are usually small, stack-allocated, statically-sized values like many of the primitives. Instead of getting moved from one owner to another, these values are just copied from one place to another, since it's so cheap to do. Types like this implement the `Copy` trait. References are also `Copy`!