Privacy Policy

as of April 18, 2020

Collection and Use of Personal Information

I don't collect any personal information from users of this site. I take this quite seriously, I hate the modern web; and if for no other reason than the fact that I don't want hundreds of lines of Java Script slowing down my site, I don't participate in the standard data collection that we've come to expect from the web. There is no data collection happening on my site for any reason. I don't run ads, because I don't want any data collection happening that way. I don't collect any cookies, because I don't know how to. Don't believe me? Here's all of the JavaScript that runs in the background of my site:

function mobileMenu() {
    var x = document.getElementById("mobile-links")
    if (x.style.display === "none") {
        x.style.display = "block";
    } else {
        x.style.display = "none"; } }

If you don't write JavaScript, this is just a function that allows users to open and close the hamburger menu for navigation, when accessing the site on a mobile device. Furthermore, in the interest of transparency, my entire site is available on GitHub. Of course, as with any other website, user can just open up an inspector window and view all the HTML & CSS for that controls my website. But if you look at the GitHub repository, you can view all the code, and all the assets that I've used to create this website, exactly as I have them organized. (It's also just slightly easier to parse through this info on a GitHub repo, rather than an inspector window.)

Third Party Services

There are a few third-party services which I use to help drive some parts of this website. As an example, I host this site use GitHub pages, a really great and easy to use platform that allows you to spin up a site based on a GitHub repo. Unfortunately, this does complicate things a bit. While I'm perfectly comfortable just dropping all the JavaScript for my entire site here, that's not the case with everyone. So I've compiled a list below of all the services that I use to drive any piece of this website, and corresponding links to Terms of Service & Privacy Policy pages on those site:

There are a few third-party services which I use to help drive some parts of this website. As an example, I host this site use GitHub pages, a really great and easy to use platform that allows you to spin up a site based on a GitHub repo. Unfortunately, this does complicate things a bit. While I'm perfectly comfortable just dropping all the JavaScript for my entire site here, that's not the case with everyone. So I've compiled a list below of all the services that I use to drive any piece of this website, and corresponding links to Terms of Service & Privacy Policy pages on those site:

GitHub Pages (My hosting solution): Terms of Service, Privacy Policy.
Google Fonts (Powers all the Fonts on this site): Terms of Service, Privacy Policy.
Font Awesome (Social Icons & Hamburger Menu Icon): Terms of Service, Privacy Policy.
Spreadshop (Where I sell Merch): Terms of Service, Privacy Policy.
Airtable (Powers the Gear I Use Page): Terms of Service, Privacy Policy.

Furthermore, while I take a great deal of care in respecting my user's privacy, I would be lying if I pretended that every site in which I'm active on does the same. I have a YouTube channel, and a Twitter account; and to call these website's practices regarding privacy anything other than abominable; would be ridiculous. There are countless other social media type sites, that I link to from this very site. If you choose to interact with me on these third-party platforms, that's great, you're welcome to do so; but do so knowing what data collection is taking place on these sites; how to opt out of that collection if possible, and how to get around giving up you're data if it's not. Ad Blockers, Tracker Blockers & HTTPS are all great. Run a VPN if you wan't to, though, far warning, the usefulness of something like that does tend to be overstated by marketing departments.

All that being said, in the interest of making controlling your data as painless as possible, I've also compiled a list that links to Privacy Policies and Terms of Service pages for every site you will every be redirected too from this website.

Twitter: Terms of Service, Privacy Policy.
YouTube: Terms of Service, Privacy Policy.
Odysee (LBRY): Terms of Service, Privacy Policy.
Reddit: User Agreement, Privacy Policy.
GitHub: Terms of Service, Privacy Policy.
Snapchat: Terms of Service, Privacy Policy.


Terms of Service

as of September 22, 2021

Ownership of Site; Agreement to Terms of Use

These Terms and Conditions of User apply to my (Mackenzie Criswell) personal website located at https://makc.co. This site is the property of me (Mackenzie Criswell). BY USING THIS WEBSITE, YOU AGREE TO THESE TERMS OF USE; IF YOU DO NOT AGREE, DO NOT USE THIS WEBSITE.

Your Use of this Site

You may use any "deep-link", "page-scrape", "robot", "spider" or other automatic device, program, algorithm or methodology, or any similar or equivalent manual process, to access, acquire, copy or monitor any portion of the Site or any Content, or in any way reproduce or circumvent the navigational structure or presentation of the Site or any Content, to obtain or attempt to obtain any materials, documents or information through any means not purposely made available through the Site. For all intents and purposes, just consider this site open source. I don't care what you do with the data, and/or assets, available on this site.

You may attempt to gain unauthorized access to any portion or feature of the Site, or any other systems or networks connected to the Site, by hacking, password "mining" or any other illegitimate means. There are no unauthorized parts of this website, have fun.

All of that being said, feel free to explore and have fun, but please don't try to take my site down.

Accessibility

As mentioned in the above section, any user is free to use any automated system to crawl this website, for whatever reason. In the context of accessibility, I'm mainly talking about screen readers. But this section doesn't exist just for me to say that users have the right to use a screen reader, that should be assumed. Mainly I just want to mention the things I've done with my site to try and make it more accessible. If you have any additional ideas, as to how I can make my site more accessible, please feel free to direct those to the bug report page.

So what have I done to make the site more accessible? The main focus is making sure that my site is easy to navigate via they keyboard. This mainly involved adding title <tags> to any links, so that they can be read by screen-readers; and adding alternate text to <image> tags, for the same reason. I've also but some effort into the color-scheme on this site. I wan't to provide a reasonable amount of contrast for users with vision impairments. The site also functions with both a light and dark theme, that is triggered via a CSS media query, and should follow the operating system setting for the end user.