Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
947c073014 | |||
6d0b306280 | |||
bf7025ca2a | |||
8814f1b0a8 |
25
src/_drafts/my-thoughts-on-ticwatch-e3.md
Normal file
25
src/_drafts/my-thoughts-on-ticwatch-e3.md
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
---
|
||||||
|
layout: post
|
||||||
|
title: "My Thoughts on the Mobvoi TicWatch E3"
|
||||||
|
description: "If you're looking for a decent Android-compatible smart watch for a good price, the TicWatch E3 might be the one for you!"
|
||||||
|
tags: smart-watches wearables android-wear mobvoi
|
||||||
|
---
|
||||||
|
|
||||||
|
I've never been a huge fan of smartwatches ever since their inception in the early 2010's or so. Whether it's the inexplicably poor battery life from a device that's super low-powered and should last forever, or the lack of *good* support from mobile apps, I always seem to be annoyed when looking at watches. Plus it's yet another device to charge daily-ish just to carry around all day. But I do try to keep my head in the game at least for a good value-oriented watch that helps me manage my notifications more easily so I don't have to open my phone every time it chimes.
|
||||||
|
|
||||||
|
## Accessories
|
||||||
|
|
||||||
|
One other important aspect of a device you use pretty much daily is the ecosystem. And not just what the first-party manufacturer provides but also what the community and other companies sell to go along with it.
|
||||||
|
|
||||||
|
## Price
|
||||||
|
|
||||||
|
Now it comes down to the all-important price. Regardless of what features a watch may offer, ultimately the price is what dictates if it's a good purchase or not.
|
||||||
|
|
||||||
|
And that's where the TicWatch shines: it costs only $150 if you buy from Mobvoi directly, and they even offer an extra 2% discont if you're willing to create an account with them.
|
||||||
|
|
||||||
|
## Conclusion
|
||||||
|
|
||||||
|
Obviously, based on the price alone and how the watch is holding
|
||||||
|
... it's not going to truly compete with the Apple Watch or Samsung Galaxy in a competion for the **best** smart watch. *But* those watches cost at least twice as much new, and it is a competitive option when you're looking at other watches in the same price range.
|
||||||
|
|
||||||
|
|
22
src/_drafts/web-hosted-part-one.md
Normal file
22
src/_drafts/web-hosted-part-one.md
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
---
|
||||||
|
layout: post
|
||||||
|
title: "Web Hosted #1: How To Setup a Web Server in 2024"
|
||||||
|
description: "Even in 2024, knowing how to host a website is still important... and you can learn a lot by doing it without a hosting company!"
|
||||||
|
tags: web websites nginx apache
|
||||||
|
---
|
||||||
|
|
||||||
|
Back in the day, even as far back as the late 90's, you needed a website to be seen as a participant in the web. And
|
||||||
|
|
||||||
|
But still, unless you wanted to g
|
||||||
|
|
||||||
|
## The Hardware
|
||||||
|
|
||||||
|
Honestly, anything will do. From options as expensive and powerful as multi-server AMD Epyc- or Intel Xeon-backed clusters, all the way down to Single-Board Computers like the Raspberry Pi or Orange Pi, you can use anything that is supported by your Linux distribution of choice.
|
||||||
|
|
||||||
|
## The Operating System
|
||||||
|
|
||||||
|
Today we're going to go with Debian Bookworm. Ubuntu, OpenSUSE Leap, and AlmaLinux are just as good, but I'm more familiar with Debian and I love the community-backed distro. And Bookworm (aka Debian 12) is the current stable version of Debian as of the writing of this article.
|
||||||
|
|
||||||
|
## The Web Server
|
||||||
|
|
||||||
|
Nginx! Or Apache, both are cool. But I'm more familiar with Nginx and it's faster anyway.
|
@ -3,7 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<title>{{ page.title }}</title>
|
<title>{{ page.title }} | Bit Goblin</title>
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css">
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css">
|
||||||
<link rel="stylesheet" href="/assets/stylesheets/lumbridge.css">
|
<link rel="stylesheet" href="/assets/stylesheets/lumbridge.css">
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
|
||||||
|
@ -65,21 +65,6 @@ layout: default
|
|||||||
|
|
||||||
<img class="u-max-full-width" src="https://static.wikia.nocookie.net/minecraft_gamepedia/images/f/ff/Java_Edition_logo_12.png" alt="Minecraft Java Edition logo">
|
<img class="u-max-full-width" src="https://static.wikia.nocookie.net/minecraft_gamepedia/images/f/ff/Java_Edition_logo_12.png" alt="Minecraft Java Edition logo">
|
||||||
|
|
||||||
<p>This world is open to everyone who would like to play on it. There are no mods installed, and currently only world is available. I am open to adding mods in the future and even adding more worlds, just let me know!</p>
|
<p>These worlds are open to everyone who would like to play on them. There are no mods installed, I am open to adding mods in the future and even adding more worlds, just let me know!</p>
|
||||||
|
|
||||||
<p><strong>Note:</strong> The website is currently a work in progress, but it will be up soon!</p>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
<!-- Bit Goblin forum callout section -->
|
|
||||||
<section id="forum-section">
|
|
||||||
|
|
||||||
<h3>You can also participate in the <a href="{{ site.links.forum }}">community forum</a>!</h3>
|
|
||||||
|
|
||||||
<p>Some of us love the old-style internet forums to converse and help others out. Anything you would like to discuss may happen here under the proper forum sections.</p>
|
|
||||||
|
|
||||||
<p><strong>Note:</strong> Currently the Bit Goblin forum is under construction, but check back soon if you'd like to participate!</p>
|
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
@ -157,3 +157,6 @@ hr
|
|||||||
padding-top: 35px
|
padding-top: 35px
|
||||||
background: #212121
|
background: #212121
|
||||||
color: white
|
color: white
|
||||||
|
|
||||||
|
p
|
||||||
|
text-align: center
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
layout: page
|
layout: page
|
||||||
|
title: Blog
|
||||||
---
|
---
|
||||||
|
|
||||||
<ul id="post-list">
|
<ul id="post-list">
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
layout: page
|
layout: page
|
||||||
|
title: Contact
|
||||||
---
|
---
|
||||||
|
|
||||||
If you're looking to contact me for business inqueries, feel free to email me at [gballantine@bitgoblin.tech](mailto:gballantine@bitgoblin.tech).
|
If you're looking to contact me for business inqueries, feel free to email me at [gballantine@bitgoblin.tech](mailto:gballantine@bitgoblin.tech).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
layout: home
|
layout: home
|
||||||
|
title: Welcome to Bit Goblin!
|
||||||
---
|
---
|
||||||
|
|
||||||
Welcome! My name is Greg Ballantine and Bit Goblin is my passion project for creating YouTube videos on tech. I love tinkering with all things related to computers, and I enjoy documenting the things that I do so that others can use my struggles to ease their own. Whether it's buildings PCs, playing with networking gear, or exploring the beauty of Linux, there are lots of things to play with and try to help others with.
|
Welcome! My name is Greg Ballantine and Bit Goblin is my passion project for creating YouTube videos on tech. I love tinkering with all things related to computers, and I enjoy documenting the things that I do so that others can use my struggles to ease their own. Whether it's buildings PCs, playing with networking gear, or exploring the beauty of Linux, there are lots of things to play with and try to help others with.
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
layout: page
|
layout: page
|
||||||
|
title: Sponsors
|
||||||
---
|
---
|
||||||
|
|
||||||
These are the sponsors I work with...
|
These are the sponsors I work with...
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
layout: page
|
layout: page
|
||||||
|
title: Support
|
||||||
---
|
---
|
||||||
|
|
||||||
Unfortunately money doesn't grow on trees, and a lot of the stuff that I purchase to make videos on can be quite expensive. My content is available free-of-charge on YouTube, but if you don't mind helping support me financially any help would be much appreciated.
|
Unfortunately money doesn't grow on trees, and a lot of the stuff that I purchase to make videos on can be quite expensive. My content is available free-of-charge on YouTube, but if you don't mind helping support me financially any help would be much appreciated.
|
||||||
@ -7,4 +8,3 @@ Unfortunately money doesn't grow on trees, and a lot of the stuff that I purchas
|
|||||||
The primary way to support my work is through donations on [my Patreon page](https://patreon.com/BitGoblin). I don't have any reward tiers over there yet, but I do plan on adding some rewards at some point in the future.
|
The primary way to support my work is through donations on [my Patreon page](https://patreon.com/BitGoblin). I don't have any reward tiers over there yet, but I do plan on adding some rewards at some point in the future.
|
||||||
|
|
||||||
You can also support me by [joining Honey using my referral link](https://www.joinhoney.com/ref/9ohqcf9)! Honey helps you save money on popular websites by searching for coupons to get you discounts while you're shopping. And the best part is that it's free!
|
You can also support me by [joining Honey using my referral link](https://www.joinhoney.com/ref/9ohqcf9)! Honey helps you save money on popular websites by searching for coupons to get you discounts while you're shopping. And the best part is that it's free!
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user