Skip to content

Commit

Permalink
Clean up anchors
Browse files Browse the repository at this point in the history
  • Loading branch information
adamyonk committed Apr 3, 2018
1 parent c1a8f7a commit 8dbd922
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ date: 2016-03-14 09:17:28 -0500
tags: [apple, macos, command-line]
---

I was recently trying to pull data off of an iMac for a friend, but didn't have any Macs around with FireWire ports to get at the iMac HD in target disk mode<sup>[1](#1)</sup>. This method does require an external hard drive.
I was recently trying to pull data off of an iMac for a friend, but didn't have any Macs around with FireWire ports to get at the iMac HD in target disk mode<sup><a name="1-ref"></a>[1](#1)</sup>. This method does require an external hard drive.

Start up your Mac in single-user mode<sup>[2](#2)</sup>, then run the following commands<sup>[3](#3)</sup>:
Start up your Mac in single-user mode<sup><a name="2-ref"></a>[2](#2)</sup>, then run the following commands<sup><a name="3-ref"></a>[3](#3)</sup>:

```bash
# Check the filesystem
Expand All @@ -34,11 +34,11 @@ mount -t hfs /dev/disk2s2 /Volumes/backup
rsync -ahz /Users/you/ /Volumes/backup/
```

<sup><a name="1">1</a></sup>Share files between two computers with target disk mode: [https://support.apple.com/en-us/HT201462][target disk mode]
<sup><a name="1"></a><a href="#1-ref">1</a></sup>Share files between two computers with target disk mode: [https://support.apple.com/en-us/HT201462][target disk mode]

<sup><a name="2">2</a></sup>How to start up your Mac in single-user or verbose mode: [https://support.apple.com/en-us/HT201573][single user mode]
<sup><a name="2"></a><a href="#2-ref">2</a></sup>How to start up your Mac in single-user or verbose mode: [https://support.apple.com/en-us/HT201573][single user mode]

<sup><a name="3">3</a></sup>Mount USB Memory Sticks in single user mode: [http://hints.macworld.com/article.php?story=20030714194313542][macworld]
<sup><a name="3"></a><a href="#3-ref">3</a></sup>Mount USB Memory Sticks in single user mode: [http://hints.macworld.com/article.php?story=20030714194313542][macworld]

[target disk mode]: https://support.apple.com/en-us/HT201462
[single user mode]: https://support.apple.com/en-us/HT201573
Expand Down
4 changes: 2 additions & 2 deletions src/pages/blog/2018-04-02-webpack-3-to-4.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ date: Mon, 02 Apr 2018 21:06:49 -0500
tags: [webpack, javascript]
---

I recently moved a large project from webpack 3 to 4, and the documentation is very light<sup>[1](#1)</sup>. I just wanted to throw together a few notes about the bumps in the road here. For more info about the release check out:
I recently moved a large project from webpack 3 to 4, and the documentation is very light<a name="1-ref"></a><sup>[1](#1)</sup>. I just wanted to throw together a few notes about the bumps in the road here. For more info about the release check out:

* The [webpack 4 announcement post](https://medium.com/webpack/webpack-4-released-today-6cdb994702d4) on Medium
* The [v4.0.0 tag release notes](https://github.com/webpack/webpack/releases/tag/v4.0.0) on GitHub
Expand Down Expand Up @@ -113,4 +113,4 @@ yarn add eslint-loader --dev
yarn add file-loader --dev
```

<sup><a name="1">1</a></sup>Apparently the webpack team was trying to hit a deadline and decided to forgo writing docs or a migration guide before the release.
<sup><a name="1"></a><a href="#1-ref">1</a></sup>Apparently the webpack team was trying to hit a deadline and decided to forgo writing docs or a migration guide before the release.

0 comments on commit 8dbd922

Please sign in to comment.