Compare commits

...

5 Commits

3 changed files with 20 additions and 11 deletions

6
Gemfile.lock generated
View File

@ -16,7 +16,7 @@ GEM
base64 (0.2.0) base64 (0.2.0)
bigdecimal (3.1.8) bigdecimal (3.1.8)
colorator (1.1.0) colorator (1.1.0)
concurrent-ruby (1.3.2) concurrent-ruby (1.3.3)
connection_pool (2.4.1) connection_pool (2.4.1)
drb (2.2.1) drb (2.2.1)
em-websocket (0.5.3) em-websocket (0.5.3)
@ -129,8 +129,8 @@ GEM
rb-fsevent (0.11.2) rb-fsevent (0.11.2)
rb-inotify (0.11.1) rb-inotify (0.11.1)
ffi (~> 1.0) ffi (~> 1.0)
rexml (3.2.8) rexml (3.2.9)
strscan (>= 3.0.9) strscan
rouge (4.2.1) rouge (4.2.1)
safe_yaml (1.0.5) safe_yaml (1.0.5)
sass-embedded (1.77.4) sass-embedded (1.77.4)

View File

@ -6,15 +6,19 @@
// Our variables // Our variables
$serif-font-family: ui-serif, "Liberation Serif", Tinos, "Times New Roman", $serif-font-family: ui-serif, "Liberation Serif", Tinos, "Times New Roman",
serif, emoji; serif, "Noto Emoji", "Noto Color Emoji", emoji;
// The second font, system-ui, may map to serif or something else entirely // I would like to use system-ui as a fallback, but it just is too
// instead of sans-serif, but it's less of an issue than the others // inconsistent. Refer to https://caniuse.com/extended-system-fonts
// considering how serifs have distinguishable homoglyphs (I and l or O and 0 $sans-serif-font-family:
// etc.) ui-sans-serif,
$sans-serif-font-family: ui-sans-serif, system-ui, "Liberation Sans", "Arimo", "Liberation Sans",
"Arial", sans-serif; "Arimo",
"Arial",
sans-serif "Noto Emoji",
"Noto Color Emoji",
emoji;
$monospace-font-family: ui-monospace, "Liberation Mono", Cousine, "Courier New", $monospace-font-family: ui-monospace, "Liberation Mono", Cousine, "Courier New",
monospace, emoji; monospace, "Noto Emoji", "Noto Color Emoji", emoji;
// Must be in the end or undefined error. // Must be in the end or undefined error.
$base-font-family: $sans-serif-font-family; $base-font-family: $sans-serif-font-family;

View File

@ -11,6 +11,7 @@ redirect_from:
- /r/_nomap.md - /r/_nomap.md
- /r/_optout_nomap.md - /r/_optout_nomap.md
robots: noai robots: noai
sitemap: true
excerpt: Previously a blog post, now a note on _nomap in SSID. excerpt: Previously a blog post, now a note on _nomap in SSID.
--- ---
@ -20,6 +21,10 @@ _{{ page.excerpt }}_
`_nomap` in the end of your SSID will exclude your network from Google, Apple, WiGLE etc. `_nomap` in the end of your SSID will exclude your network from Google, Apple, WiGLE etc.
Microsoft has a separate [location services
opt-out](https://account.microsoft.com/privacy/location-services-opt-out)
which uses MAC addresses instead.
<!-- editorconfig-checker-disable --> <!-- editorconfig-checker-disable -->
<!-- prettier-ignore-start --> <!-- prettier-ignore-start -->