Przeglądaj źródła

Fixed images being mistaken for directories, properly opens images in new tabs/windows now, fixed bad link to pandoc in latest blog post

old
Jean 1 rok temu
rodzic
commit
ba4b05c5f6
Podpisane przez: easthighNerd <jean@easthighnerd.net> ID klucza GPG: F4B3EACD21AEFFF4
5 zmienionych plików z 12 dodań i 12 usunięć
  1. +3
    -3
      blog/2019/05/nexus_7_2013_wifi-and-ubuntu-touch/index.html
  2. +2
    -2
      blog/2022/11/why_my_website_is_nothing_fancy/index.html
  3. +2
    -2
      generate.sh
  4. +3
    -3
      res/mkd/blog/2019_05_26-nexus_7_2013_wifi-and-ubuntu_touch.md
  5. +2
    -2
      res/mkd/blog/2022_11_05-why_my_website_is_nothing_fancy.md

+ 3
- 3
blog/2019/05/nexus_7_2013_wifi-and-ubuntu-touch/index.html Wyświetl plik

@@ -58,11 +58,11 @@
</nav>
<main>
<h1 id="nexus-7-2013-wifi-and-ubuntu-touch">Nexus 7 2013 (WiFi) and Ubuntu Touch</h1>
<p><a href="/res/img/nexus_7_2013_wifi-scopes.png/" target="_blank">[IMAGE] Scopes (home screen)</a></p>
<p><a href="/res/img/nexus_7_2013_wifi-scopes.png" target="_blank">[IMAGE] Scopes (home screen)</a></p>
<p>About a month ago (give or take) I purchased a Nexus 7 2013 (WiFi) with the intent of flashing Ubuntu Touch (OTA 9) onto it. I had previously flashed Ubuntu Touch onto a Nexus 5 that I had gotten for Christmas last year, again with the intent of flashing Ubuntu Touch onto it, so I knew what I could look forward to and what I could expect.</p>
<h2 id="flashing-ubuntu-touch">Flashing Ubuntu Touch</h2>
<p>Flashing Ubuntu Touch onto the Nexus 7 was pretty easy overall. First thing I had to do was install <code>adb</code> and <code>fastboot</code> onto my computer (running Ubuntu), as well as the <code>ubports-installer</code> snap.</p>
<p><a href="/res/img/ubports_installer-nexus_7_2013_wifi.png/" target="_blank">[IMAGE] UBPorts installer</a></p>
<p><a href="/res/img/ubports_installer-nexus_7_2013_wifi.png" target="_blank">[IMAGE] UBPorts installer</a></p>
<p>Next, on the nexus 7 I needed to enable developer mode, enable USB debugging, unlock the bootloader, and re-enable dev mode and USB debugging. After that, I hooked up the Nexus 7 to my PC and launched the UBports Installer. It detected that the Nexus 7 was connected and pulled up the menu for flashing it right away. I clicked the needed buttons to flash it and let it do it’s thing.</p>
<h2 id="initial-setup">Initial Setup</h2>
<p>After Ubuntu Touch was flashed onto the Nexus 7, I went through the initial setup of the device. First was the standard stuff like setting up WiFi and creating a user account.</p>
@@ -93,7 +93,7 @@
</ul>
<p>*TELEports is still in beta as of writing</p>
<hr />
<p><a href="https://i.creativecommons.org/l/by-sa/4.0/88x31.png/" target="_blank">[IMAGE] CC BY-SA 4.0</a><br />
<p><a href="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" target="_blank">[IMAGE] CC BY-SA 4.0</a><br />
This work is licensed under a <a href="http://creativecommons.org/licenses/by-sa/4.0/" target="_blank">Creative Commons Attribution-ShareAlike 4.0 International License</a>.</p>
</main>
</body>


+ 2
- 2
blog/2022/11/why_my_website_is_nothing_fancy/index.html Wyświetl plik

@@ -63,7 +63,7 @@
<p>So you may be asking then, why?</p>
<h2 id="my-reasoning">My Reasoning</h2>
<p>When I created this website, I set out for it to be plain on purpose</p>
<p>I went for a design that sorta resembles what you might find on some <a href="https://en.wikipedia.org/wiki/Gemini_(protocol/)">Gemini</a> pages</p>
<p>I went for a design that sorta resembles what you might find on some <a href="https://en.wikipedia.org/wiki/Gemini_(protocol)/" target="_blank">Gemini</a> pages</p>
<p>I also wanted it to be quick to load</p>
<p>With a lack of fancy images on every damn page, no JavaScript trying to load, no analytics hogging bandwidth, site loads pretty quick, don’t it?</p>
<p>In my opinion, that’s how it should be!</p>
@@ -85,7 +85,7 @@
</p>
<p><em>* I cannot speak for anything that my hosting provider collects, which considering that this site is currently hosted on a VPS, and is just code being served by Apache2, there shouldn’t be any cause for concern</em></p>
<hr />
<p><a href="https://i.creativecommons.org/l/by-sa/4.0/88x31.png/" target="_blank">[IMAGE] CC BY-SA 4.0</a><br />
<p><a href="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" target="_blank">[IMAGE] CC BY-SA 4.0</a><br />
This work is licensed under a <a href="http://creativecommons.org/licenses/by-sa/4.0/" target="_blank">Creative Commons Attribution-ShareAlike 4.0 International License</a></p>
</main>
</body>


+ 2
- 2
generate.sh Wyświetl plik

@@ -14,12 +14,12 @@ if [[ ${1} = 'regen' ]] || [[ ${1} = '--regen' ]]; then
PAGE_TITLE="$(cat ${PAGE} | head -1 | sed -e 's|<!-- ||; s| -->||')"
DESTINATION_DIR="$(echo ${PAGE} | sed -e 's|index.html||')"
PAGE_CONTENT_FILE="$(cat ${PAGE} | head -2 | tail -1 | sed -e 's|<!-- ||; s| -->||')"
PAGE_CONTENT="$(pandoc --from markdown --to html ${PAGE_CONTENT_FILE} | sed -e 's|/\">|/\" target=\"_blank\">|g')"
PAGE_CONTENT="$(pandoc --from markdown --to html ${PAGE_CONTENT_FILE} | sed -e 's|/\">|/\" target=\"_blank\">|g; s|.png\">|.png\" target=\"_blank\">|g')"
fi

if [[ ! -z "${1}" ]] && [[ ! -z "${2}" ]] && [[ ! -z "${3}" ]]; then
PAGE_TITLE="${1}"
PAGE_CONTENT="$(pandoc --from markdown --to html ${2} | sed -e 's|/\">|/\" target=\"_blank\">|g')"
PAGE_CONTENT="$(pandoc --from markdown --to html ${2} | sed -e 's|/\">|/\" target=\"_blank\">|g; s|.png\">|.png\" target=\"_blank\">|g')"
PAGE_CONTENT_FILE="${2}"
DESTINATION_DIR="${3}"
fi


+ 3
- 3
res/mkd/blog/2019_05_26-nexus_7_2013_wifi-and-ubuntu_touch.md Wyświetl plik

@@ -1,7 +1,7 @@
Nexus 7 2013 (WiFi) and Ubuntu Touch
====================================

[[IMAGE] Scopes (home screen)](/res/img/nexus_7_2013_wifi-scopes.png/)
[[IMAGE] Scopes (home screen)](/res/img/nexus_7_2013_wifi-scopes.png)

About a month ago (give or take) I purchased a Nexus 7 2013 (WiFi) with the intent of flashing Ubuntu Touch (OTA 9) onto it. I had previously flashed Ubuntu Touch onto a Nexus 5 that I had gotten for Christmas last year, again with the intent of flashing Ubuntu Touch onto it, so I knew what I could look forward to and what I could expect.

@@ -10,7 +10,7 @@ Flashing Ubuntu Touch

Flashing Ubuntu Touch onto the Nexus 7 was pretty easy overall. First thing I had to do was install `adb` and `fastboot` onto my computer (running Ubuntu), as well as the `ubports-installer` snap.

[[IMAGE] UBPorts installer](/res/img/ubports_installer-nexus_7_2013_wifi.png/)
[[IMAGE] UBPorts installer](/res/img/ubports_installer-nexus_7_2013_wifi.png)

Next, on the nexus 7 I needed to enable developer mode, enable USB debugging, unlock the bootloader, and re-enable dev mode and USB debugging. After that, I hooked up the Nexus 7 to my PC and launched the UBports Installer. It detected that the Nexus 7 was connected and pulled up the menu for flashing it right away. I clicked the needed buttons to flash it and let it do it's thing.

@@ -61,6 +61,6 @@ Here are some apps I recommend using on Ubuntu Touch:

---

[[IMAGE] CC BY-SA 4.0](https://i.creativecommons.org/l/by-sa/4.0/88x31.png/)
[[IMAGE] CC BY-SA 4.0](https://i.creativecommons.org/l/by-sa/4.0/88x31.png)
\
This work is licensed under a [Creative Commons Attribution-ShareAlike 4.0 International License](http://creativecommons.org/licenses/by-sa/4.0/).

+ 2
- 2
res/mkd/blog/2022_11_05-why_my_website_is_nothing_fancy.md Wyświetl plik

@@ -12,7 +12,7 @@ My Reasoning

When I created this website, I set out for it to be plain on purpose

I went for a design that sorta resembles what you might find on some [Gemini](https://en.wikipedia.org/wiki/Gemini_(protocol/)) pages
I went for a design that sorta resembles what you might find on some [Gemini](https://en.wikipedia.org/wiki/Gemini_(protocol)/) pages

I also wanted it to be quick to load

@@ -56,6 +56,6 @@ _* I cannot speak for anything that my hosting provider collects, which consider

---

[[IMAGE] CC BY-SA 4.0](https://i.creativecommons.org/l/by-sa/4.0/88x31.png/)
[[IMAGE] CC BY-SA 4.0](https://i.creativecommons.org/l/by-sa/4.0/88x31.png)
\
This work is licensed under a [Creative Commons Attribution-ShareAlike 4.0 International License](http://creativecommons.org/licenses/by-sa/4.0/)

Ładowanie…
Anuluj
Zapisz