Skip to content

Commit

Permalink
chore: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob committed Sep 26, 2023
1 parent 468b9c0 commit f00c271
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 32 deletions.
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*.html
static/
resources/
1 change: 0 additions & 1 deletion archetypes/default.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---

2 changes: 1 addition & 1 deletion content/_index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: 'Web & Software Development Tutorials'
title: "Web & Software Development Tutorials"
---

# GeekLaunch
Expand Down
66 changes: 38 additions & 28 deletions content/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion content/blog/_index.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
---
title: 'Posts'
title: "Posts"
---
2 changes: 1 addition & 1 deletion content/blog/rust-quickstart-for-javascript-programmers.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`!

Expand Down

0 comments on commit f00c271

Please sign in to comment.