rename applications article

main
Jay Hankins 2022-08-28 21:56:48 -04:00
parent a9df8733c6
commit f8c02e2e68
7 changed files with 106 additions and 25 deletions

View File

@ -4,7 +4,7 @@ date_created: Sunday, August 28th 2022, 9:55:32 am
date_modified: Sunday, August 28th 2022, 10:12:14 am
---
This is a stub page for information about [[Applications|applications]] which help people send messages/communicate.
This is a stub page for information about [[Software Applications|applications]] which help people send messages/communicate.
Examples include:

View File

@ -1,7 +1,7 @@
---
title: Applications
title: Software Applications
date_created: Sunday, August 28th 2022, 9:54:34 am
date_modified: Sunday, August 28th 2022, 10:12:14 am
date_modified: Sunday, August 28th 2022, 8:38:51 pm
---
@ -15,4 +15,4 @@ date_modified: Sunday, August 28th 2022, 10:12:14 am
- [[Filesystem apps]]
- [[Productivity apps]]
- [[Messaging apps]]
- [[Web Browsers]]
- [[Web Browsers]]

View File

@ -4,7 +4,7 @@ date_created: Sunday, August 28th 2022, 9:56:41 am
date_modified: Sunday, August 28th 2022, 10:12:14 am
---
[[Applications]] for browsing the web, including:
[[Software Applications]] for browsing the web, including:
- Google Chrome
- Microsoft Edge

25
_pages/About.md Normal file
View File

@ -0,0 +1,25 @@
---
title: About this site
permalink: /about
date_created: Thursday, August 25th 2022, 4:20:53 pm
date_modified: Sunday, August 28th 2022, 4:37:10 pm
---
# About this site
This site is a [[Digital Garden]] about computers. It's similar in spirit to a wiki.
![alt](assets/chris-leipelt-1pVk3qfzbJ4-unsplash.jpg)
<small>Photo by <a href="https://unsplash.com/es/@cleipelt?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Chris Leipelt</a> on <a href="https://unsplash.com/?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Unsplash</a></small>
## Privacy Information
Please see [[Analytics and Privacy Information]] for details about analytics in use on this website.
## Backlog
- [ ] `prefers-color-scheme` dark mode support
- [ ] CI/CD
- [ ] experimental hosting
- [ ] search

View File

@ -1,18 +1,10 @@
---
title: About this site
permalink: /about
date_created: Thursday, August 25th 2022, 4:20:53 pm
date_modified: Sunday, August 28th 2022, 4:37:10 pm
title: Analytics and Privacy Information
date_created: Sunday, August 28th 2022, 8:40:43 pm
date_modified: Sunday, August 28th 2022, 8:40:55 pm
permalink: /privacy
---
This site is a [[Digital Garden]] about computers. It's similar in spirit to a wiki.
![alt](assets/chris-leipelt-1pVk3qfzbJ4-unsplash.jpg)
<small>Photo by <a href="https://unsplash.com/es/@cleipelt?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Chris Leipelt</a> on <a href="https://unsplash.com/?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Unsplash</a></small>
## Privacy Information
We respect your right to block web trackers. We tend to browse with ads and trackers blocked, too.
That said, if you have no adblocker, and JavaScript is enabled, your browser will connect to the cloud-hosted version of [GoatCounter](https://goatcounter.com/), an open-source privacy-focused analytics system. We are **not tracking** your activity on any 3rd-party sites.
@ -42,10 +34,3 @@ Goatcounter gives us minimal information about visitors and helps us understand
> Its true that certain “additional information” from other parties could reveal more such as correlating the `User-Agent` and location but would be hard, and the retrieved data would be limited (everyone in Indonesia using Firefox is a rather large pool of people). To determine whether a personal is identifiable “*account should be taken of all the means reasonably likely to be used*”, and this doesnt strike me as reasonably likely.
> <br>
> If a user (i.e. a customer on your site) would contact me for their rights to have insight in their data and/or have it removed, then I would have no way to reliably do so, even if they would provide me with most of their computers information. It might be possible if they provide their browsing history, but if you have full access to all their browsing data then what do you need GoatCounters data for?
## Backlog
- [ ] `prefers-color-scheme` dark mode support
- [ ] CI/CD
- [ ] experimental hosting
- [ ] search

View File

@ -8,11 +8,11 @@ Welcome to this [[Digital Garden|digital garden]]. Get started browsing it howev
Here are some broad-level starting topics:
- **[[Applications]]**
- **[[Computing Infrastructure|Infrastructure]]**
- **[[Miscellaneous]]**
- **[[Operating Systems]]**
- **[[Programming]]**
- **[[Smart Home]]**
- **[[Software Applications]]**
Or, view [[all|all content]].

71
_sass/_colors.scss Normal file
View File

@ -0,0 +1,71 @@
$colors: (
light: (
background: #fff,
primary-400: #acacac,
primary-500: #505050,
primary-600: #3c3c3c,
accent-500: #007bff,
accent-600: #0056b3,
color-primary: hsl(0, 0%, 10%),
color-text: hsl(0, 0%, 20%),
color-subtext: hsl(0, 0%, 30%),
color-border: hsl(0, 0%, 85%),
color-box-background: mix($color-primary, white, 4%)
),
dark: (
background: rgb(17, 35, 57),
primary-400: #acacac,
primary-500: #505050,
primary-600: #3c3c3c,
accent-500: #007bff,
accent-600: #0056b3,
color-primary: hsl(0, 0%, 96%),
color-text: hsl(0, 0%, 74%),
color-subtext: hsl(0, 0%, 49%),
color-border: hsl(0, 0%, 23%),
color-box-background: mix($color-primary, black, 4%)
),
);
$color-placeholder: 'here';
@function compose-color-variable($color-key) {
@return '--color-#{$color-key}';
}
:root {
@each $key, $value in map-get($colors, 'light') {
#{compose-color-variable($key)}: #{$value};
}
}
@media (prefers-color-scheme: dark) {
:root {
@each $key, $value in map-get($colors, 'dark') {
#{compose-color-variable($key)}: #{$value};
}
}
}
@function str-replace($string, $search, $replace: '') {
$index: str-index($string, $search);
@if not $index {
@return $string;
}
@return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);
}
@function color-get($palette, $color-key) {
@return map-get(map-get($colors, $palette), $color-key);
}
@mixin color-assign($property, $color-key, $template: '') {
$fallback: #{color-get("light", $color-key)};
$var: var(#{compose-color-variable($color-key)});
#{$property}: if(str-length($template) == 0, $fallback, #{str-replace($template, $color-placeholder, $fallback)});
#{$property}: if(str-length($template) == 0, $var, #{str-replace($template, $color-placeholder, $var)});
}