mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2026-06-30 01:06:00 -04:00
draft /uses page
This commit is contained in:
+1
-1
@@ -10,7 +10,7 @@
|
|||||||
"no-blanks-blockquote": true,
|
"no-blanks-blockquote": true,
|
||||||
"no-empty-links": false,
|
"no-empty-links": false,
|
||||||
"no-hard-tabs": false,
|
"no-hard-tabs": false,
|
||||||
"no-inline-html": { "allowed_elements": [ "span" ] },
|
"no-inline-html": { "allowed_elements": [ "span", "sup" ] },
|
||||||
"no-multiple-blanks": false,
|
"no-multiple-blanks": false,
|
||||||
"no-trailing-punctuation": false,
|
"no-trailing-punctuation": false,
|
||||||
"single-h1": false,
|
"single-h1": false,
|
||||||
|
|||||||
@@ -10,4 +10,5 @@
|
|||||||
@include responsive--list();
|
@include responsive--list();
|
||||||
@include responsive--single();
|
@include responsive--single();
|
||||||
@include responsive--videos();
|
@include responsive--videos();
|
||||||
|
@include responsive--etc();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,6 +17,7 @@
|
|||||||
@import 'pages/list';
|
@import 'pages/list';
|
||||||
@import 'pages/single';
|
@import 'pages/single';
|
||||||
@import 'pages/videos';
|
@import 'pages/videos';
|
||||||
|
@import 'pages/etc';
|
||||||
|
|
||||||
// Responsive Mixins
|
// Responsive Mixins
|
||||||
@import 'abstracts/responsive';
|
@import 'abstracts/responsive';
|
||||||
|
|||||||
@@ -0,0 +1,74 @@
|
|||||||
|
@charset "UTF-8";
|
||||||
|
|
||||||
|
// Video Styles
|
||||||
|
main#etc {
|
||||||
|
max-width: 910px;
|
||||||
|
padding: 1.5em 2.5em;
|
||||||
|
margin: 0 auto;
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
margin-top: 0;
|
||||||
|
text-align: center;
|
||||||
|
letter-spacing: -0.005em;
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
strong {
|
||||||
|
letter-spacing: 0.001em;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#content {
|
||||||
|
letter-spacing: -0.011em;
|
||||||
|
line-height: 1.7;
|
||||||
|
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3 {
|
||||||
|
margin: 0.5em 0;
|
||||||
|
font-weight: 700;
|
||||||
|
line-height: 1.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
list-style-position: outside;
|
||||||
|
list-style-type: square;
|
||||||
|
margin-left: 1em;
|
||||||
|
padding-left: 0;
|
||||||
|
|
||||||
|
li {
|
||||||
|
padding-left: 0.25em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Responsive
|
||||||
|
@mixin responsive--etc() {
|
||||||
|
main#etc {
|
||||||
|
padding: 1.25em 1.1em;
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 1.6em;
|
||||||
|
padding: 0 0.6em;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#content {
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3 {
|
||||||
|
margin: 0.5em 0;
|
||||||
|
font-size: 1.35em;
|
||||||
|
font-weight: 700;
|
||||||
|
line-height: 1.5;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -8,7 +8,6 @@ main#single {
|
|||||||
|
|
||||||
article div {
|
article div {
|
||||||
&#content {
|
&#content {
|
||||||
font-weight: 400;
|
|
||||||
letter-spacing: -0.011em;
|
letter-spacing: -0.011em;
|
||||||
line-height: 1.7;
|
line-height: 1.7;
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,130 @@
|
|||||||
|
---
|
||||||
|
title: "/uses 💻"
|
||||||
|
description: "Things I use."
|
||||||
|
date: 2020-01-22 09:51:08-0400
|
||||||
|
url: "/uses"
|
||||||
|
type: etc
|
||||||
|
layout: etc
|
||||||
|
---
|
||||||
|
|
||||||
|
~~I regularly get messages asking about specific things I use.~~ Nobody has asked me what I use. Ever. But here's a list of my daily lifelines anyways, mostly revolving around my Apple sheep-ness. Inspired by [many, many others](https://uses.tech/). 😊
|
||||||
|
|
||||||
|
|
||||||
|
## 💾 Development {#development}
|
||||||
|
|
||||||
|
- [**iTerm 2**](https://iterm2.com/)
|
||||||
|
- [My various ZSH aliases in my .dotfiles repository.](https://github.com/jakejarvis/dotfiles/blob/master/zsh/aliases.zsh)
|
||||||
|
- [Oh-My-ZSH](https://ohmyz.sh/)
|
||||||
|
- [zsh-autosuggestions](https://github.com/zsh-users/zsh-autosuggestions)
|
||||||
|
- [zsh-syntax-highlighting](https://github.com/zsh-users/zsh-syntax-highlighting)
|
||||||
|
- [**Visual Studio Code (Insiders build)**](https://code.visualstudio.com/insiders/)
|
||||||
|
- [All of my settings](https://gist.github.com/jakejarvis/80a04530e0142ff5b7b77c92d5c6f526) via [Settings Sync](https://marketplace.visualstudio.com/items?itemName=Shan.code-settings-sync).
|
||||||
|
- Themes:
|
||||||
|
- [Slime Theme](https://marketplace.visualstudio.com/items?itemName=smlombardi.slime)
|
||||||
|
- [Material Icon Theme](https://marketplace.visualstudio.com/items?itemName=PKief.material-icon-theme)
|
||||||
|
- [Source Code Pro font](https://github.com/adobe-fonts/source-code-pro)
|
||||||
|
- Extensions:
|
||||||
|
- [AWS Toolkit](https://marketplace.visualstudio.com/items?itemName=AmazonWebServices.aws-toolkit-vscode)
|
||||||
|
- [Better TOML](https://marketplace.visualstudio.com/items?itemName=bungcip.better-toml)
|
||||||
|
- [Debugger for Chrome](https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome)
|
||||||
|
- [Debugger for Firefox](https://marketplace.visualstudio.com/items?itemName=firefox-devtools.vscode-firefox-debug)
|
||||||
|
- [Docker](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-docker)
|
||||||
|
- [Duplicate action](https://marketplace.visualstudio.com/items?itemName=mrmlnc.vscode-duplicate)
|
||||||
|
- [EditorConfig](https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig)
|
||||||
|
- [GitHub Pull Requests](https://marketplace.visualstudio.com/items?itemName=GitHub.vscode-pull-request-github)
|
||||||
|
- [Live Share](https://marketplace.visualstudio.com/items?itemName=MS-vsliveshare.vsliveshare)
|
||||||
|
- [Remote Development Pack](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.vscode-remote-extensionpack)
|
||||||
|
- [Settings Sync](https://marketplace.visualstudio.com/items?itemName=Shan.code-settings-sync)
|
||||||
|
- [Visual Studio IntelliCode](https://marketplace.visualstudio.com/items?itemName=VisualStudioExptTeam.vscodeintellicode)
|
||||||
|
- [**Xcode**](https://developer.apple.com/xcode/)
|
||||||
|
- [**Docker Desktop**](https://www.docker.com/products/docker-desktop)
|
||||||
|
- [**VMware Fusion**](https://www.vmware.com/products/fusion.html)
|
||||||
|
- Microsoft's [free Windows 7 & 10 virtual machines](https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/) for developers are super convenient and shockingly generous.
|
||||||
|
- [**Sketch**](https://www.sketch.com/)
|
||||||
|
- [**Adobe Creative Cloud**](https://www.adobe.com/creativecloud.html)
|
||||||
|
- Still on the $20/month [Student Plan](https://www.adobe.com/creativecloud/buy/students.html), thankfully. Will need to re-evaulate once I'm kicked off; it's hard to justify spending almost 3x that...
|
||||||
|
- [**Transmit**](https://panic.com/transmit/)
|
||||||
|
- [**Sequel Pro**](https://www.sequelpro.com/)
|
||||||
|
- [**Robo 3T**](https://robomongo.org/)
|
||||||
|
- [**Local by Flywheel**](https://localbyflywheel.com/)
|
||||||
|
|
||||||
|
|
||||||
|
## 🌎 Browsing {#browsing}
|
||||||
|
|
||||||
|
- [**Firefox Developer Editon**](https://www.mozilla.org/en-US/firefox/developer/)
|
||||||
|
- [My default user.js settings.](https://github.com/jakejarvis/dotfiles/blob/master/firefox/user.js)
|
||||||
|
- Add-ons:
|
||||||
|
- [1Password](https://1password.com/browsers/firefox/)
|
||||||
|
- [BetterTTV](https://addons.mozilla.org/en-US/firefox/addon/betterttv/)
|
||||||
|
- [Cookie Editor](https://addons.mozilla.org/en-US/firefox/addon/cookie-editor/)
|
||||||
|
- [Country Flag & IP Whois](https://addons.mozilla.org/en-US/firefox/addon/country-flags-ip-whois/)
|
||||||
|
- [Decentraleyes](https://addons.mozilla.org/en-US/firefox/addon/decentraleyes/)
|
||||||
|
- [Facebook Container](https://addons.mozilla.org/en-US/firefox/addon/facebook-container/)
|
||||||
|
- [Firefox Multi-Account Containers](https://addons.mozilla.org/en-US/firefox/addon/multi-account-containers/)
|
||||||
|
- [Hide Private Mode](https://addons.mozilla.org/en-US/firefox/addon/hide-private-mode/)
|
||||||
|
- [HTTPS Everywhere](https://addons.mozilla.org/en-US/firefox/addon/https-everywhere/)
|
||||||
|
- [Mailvelope](https://addons.mozilla.org/en-US/firefox/addon/mailvelope/)
|
||||||
|
- [React Developer Tools](https://addons.mozilla.org/en-US/firefox/addon/react-devtools/)
|
||||||
|
- [OctoLinker](https://addons.mozilla.org/en-US/firefox/addon/octolinker/)
|
||||||
|
- [Save Image to Downloads](https://addons.mozilla.org/en-US/firefox/addon/save-image-2-downloads/)
|
||||||
|
- [Search by Image on Google](https://addons.mozilla.org/en-US/firefox/addon/search-by-image-on-google/)
|
||||||
|
- [uBlock Origin](https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/)
|
||||||
|
- [View Image](https://addons.mozilla.org/en-US/firefox/addon/view-image/)
|
||||||
|
|
||||||
|
|
||||||
|
## 💻 macOS {#macos}
|
||||||
|
|
||||||
|
- [**1Password**](https://1password.com/)
|
||||||
|
- [**Little Snitch**](https://www.obdev.at/products/littlesnitch/index.html)
|
||||||
|
- [~~Dropbox~~](https://www.dropbox.com/) → [**iCloud Drive**](https://www.icloud.com/iclouddrive)
|
||||||
|
- [Read why.](http://localhost:1313/notes/dropping-dropbox/)
|
||||||
|
- [~~VLC~~](https://www.videolan.org/vlc/index.html) → [**IINA**](https://iina.io/)
|
||||||
|
- [**Backblaze**](https://secure.backblaze.com/r/00x84e) (referral link)
|
||||||
|
- [**Transmission**](https://transmissionbt.com/)
|
||||||
|
- [**Unshaky**](https://unshaky.nestederror.com/) ⌨️
|
||||||
|
- Toooo lzy too vist the Aple Stre geeniusses oonce agin.
|
||||||
|
- [**DaisyDisk**](https://daisydiskapp.com/)
|
||||||
|
- [**Paragon NTFS**](https://www.paragon-software.com/us/home/ntfs-mac/#)
|
||||||
|
- [**iStat Menus**](https://bjango.com/mac/istatmenus/)
|
||||||
|
- [**Beamer**](https://beamer-app.com/)
|
||||||
|
- [**Amphetamine**](https://roaringapps.com/app/amphetamine)
|
||||||
|
- [**NVIDIA GeForce NOW** (beta)](https://www.nvidia.com/en-us/geforce-now/)
|
||||||
|
- [**Microsoft Office**](https://products.office.com/en-us/mac/microsoft-office-for-mac)
|
||||||
|
|
||||||
|
|
||||||
|
## 📱 iOS {#ios}
|
||||||
|
|
||||||
|
I have far too many apps to count, but here the essentials that have earned a spot on my home screen:
|
||||||
|
|
||||||
|
- [**1Password**](https://apps.apple.com/us/app/1password-password-manager/id568903335)
|
||||||
|
- [**Waze** (beta)](https://apps.apple.com/us/app/waze-navigation-live-traffic/id323229106)
|
||||||
|
- [**Google Maps**](https://apps.apple.com/us/app/google-maps-transit-food/id585027354)
|
||||||
|
- [**Dark Sky**](https://apps.apple.com/us/app/dark-sky-weather/id517329357)
|
||||||
|
- [**Xfinity Stream**](https://apps.apple.com/us/app/xfinity-stream/id731629156)
|
||||||
|
- [**Pocket Casts**](https://apps.apple.com/us/app/pocket-casts/id414834813)
|
||||||
|
- [**Audible**](https://apps.apple.com/us/app/audible-audiobooks-originals/id379693831)
|
||||||
|
- [**SiriusXM**](https://apps.apple.com/us/app/siriusxm-music-comedy-sports/id317951436)
|
||||||
|
- [**Plex** (beta)](https://apps.apple.com/us/app/plex-movies-tv-music-more/id383457673)
|
||||||
|
- [**Wunderlist**](https://apps.apple.com/us/app/wunderlist-to-do-list-tasks/id406644151)
|
||||||
|
- [**Reeder 4**](https://apps.apple.com/us/app/reeder-4/id1449412357)
|
||||||
|
- [**Blink Shell**](https://apps.apple.com/us/app/blink-shell-mosh-ssh-client/id1156707581)
|
||||||
|
|
||||||
|
|
||||||
|
## 🍎 Hardware {#hardware}
|
||||||
|
|
||||||
|
- **MacBook Pro 15"** (2018)
|
||||||
|
- Core i9, 2.9 GHZ
|
||||||
|
- 32 GB RAM
|
||||||
|
- 1 TB SSD
|
||||||
|
- Radeon Pro 560X 4 GB
|
||||||
|
- **iPhone 11 Pro**
|
||||||
|
- 512 GB in Midnight Green
|
||||||
|
- [Evutec Karbon case](https://evutec.com/collections/all-iphone-11-cases/products/evutec-karbon-iphone-11-pro-5-8-inch-unique-hard-smooth-heavy-duty-phone-case-cover-real-aramid-fiber-strong-protective-slim-1-6mm-durable-black-afix-free-vent-mount)
|
||||||
|
- **iPad Pro 10.5"** (2017)
|
||||||
|
- 256 GB in Space Gray
|
||||||
|
- **Apple Watch Series 3** (GPS + Cellular)
|
||||||
|
- Stainless Steel – Space Black
|
||||||
|
- 38mm (I have incredibly small wrists.)
|
||||||
|
- **Powerbeats<sup>3</sup> Wireless** (in the pretty rad [Pop Indigo](https://www.apple.com/shop/product/MREQ2LL/A/powerbeats3-wireless-earphones-beats-pop-collection-pop-indigo) color)
|
||||||
|
- I also have incredibly weird ears, apparently, so the AirPods went right back to the store when they came out. 😢
|
||||||
|
- ...but these are a great alternative with the [same pairing and continuity features](https://www.soundguys.com/how-does-apple-w1-chip-work-21049/) between all of my 🍎 devices.
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
{{ define "main" }}
|
||||||
|
<main id="etc">
|
||||||
|
<h1><a class="no-underline" href="{{ .Permalink }}">{{ .Title }}</a></h1>
|
||||||
|
|
||||||
|
<div id="content">
|
||||||
|
{{ .Content }}
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
{{ end }}
|
||||||
+1
-1
@@ -24,7 +24,7 @@
|
|||||||
"optimize:html": "html-minifier --html5 --collapse-whitespace --collapse-boolean-attributes --preserve-line-breaks --minify-css --file-ext html --input-dir public --output-dir public **/*.html",
|
"optimize:html": "html-minifier --html5 --collapse-whitespace --collapse-boolean-attributes --preserve-line-breaks --minify-css --file-ext html --input-dir public --output-dir public **/*.html",
|
||||||
"optimize:img": "find public/ -type d | xargs -n1 -P8 -I{} imagemin {}/* --plugin=jpegoptim --plugin.jpegoptim.progressive --plugin.jpegoptim.stripAll --plugin=pngquant --plugin.pngquant.speed=5 --plugin.pngquant.strip --plugin=optipng --plugin.optipng.optimizationLevel=2 --plugin=svgo --plugin=gifsicle --out-dir={}",
|
"optimize:img": "find public/ -type d | xargs -n1 -P8 -I{} imagemin {}/* --plugin=jpegoptim --plugin.jpegoptim.progressive --plugin.jpegoptim.stripAll --plugin=pngquant --plugin.pngquant.speed=5 --plugin.pngquant.strip --plugin=optipng --plugin.optipng.optimizationLevel=2 --plugin=svgo --plugin=gifsicle --out-dir={}",
|
||||||
"lint": "run-p lint:**",
|
"lint": "run-p lint:**",
|
||||||
"lint:markdown": "markdownlint content/notes/**/*.md",
|
"lint:markdown": "markdownlint content/**/*.md",
|
||||||
"lint:sass": "stylelint assets/sass/**/* --syntax scss",
|
"lint:sass": "stylelint assets/sass/**/* --syntax scss",
|
||||||
"lint:links": "linkinator http://localhost:1313/ --recurse --silent --skip https://www.shodan.io/ --skip https://images.shodan.io/ --skip https://archive.today/ --skip https://archive.is/ --skip https://www.linkedin.com/ --skip http://localhost:1313/y2k/ --skip 'asdfasdf404/?$'",
|
"lint:links": "linkinator http://localhost:1313/ --recurse --silent --skip https://www.shodan.io/ --skip https://images.shodan.io/ --skip https://archive.today/ --skip https://archive.is/ --skip https://www.linkedin.com/ --skip http://localhost:1313/y2k/ --skip 'asdfasdf404/?$'",
|
||||||
"debug:hugo": "hugo version; hugo env",
|
"debug:hugo": "hugo version; hugo env",
|
||||||
|
|||||||
@@ -4565,12 +4565,11 @@ regex-not@^1.0.0, regex-not@^1.0.2:
|
|||||||
safe-regex "^1.1.0"
|
safe-regex "^1.1.0"
|
||||||
|
|
||||||
registry-auth-token@^4.0.0:
|
registry-auth-token@^4.0.0:
|
||||||
version "4.1.0"
|
version "4.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.1.0.tgz#b17f4763c53785b5342fadb0a35d9825be976cfb"
|
resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.1.1.tgz#40a33be1e82539460f94328b0f7f0f84c16d9479"
|
||||||
integrity sha512-7uxS951DeOBOwsv8deX+l7HcjY2VZxaOgHtM6RKzg3HhpE+bJ0O7VbuMJLosC1T5WSFpHm0DuFIbqUl43jHpsA==
|
integrity sha512-9bKS7nTl9+/A1s7tnPeGrUpRcVY+LUh7bfFgzpndALdPfXQBfQV77rQVtqgUV3ti4vc/Ik81Ex8UJDWDQ12zQA==
|
||||||
dependencies:
|
dependencies:
|
||||||
rc "^1.2.8"
|
rc "^1.2.8"
|
||||||
safe-buffer "^5.0.1"
|
|
||||||
|
|
||||||
registry-url@^5.0.0:
|
registry-url@^5.0.0:
|
||||||
version "5.1.0"
|
version "5.1.0"
|
||||||
|
|||||||
Reference in New Issue
Block a user