Skip to content

Instantly share code, notes, and snippets.

View tylermneher's full-sized avatar
:electron:
Focusing

Tyler M. Neher tylermneher

:electron:
Focusing
View GitHub Profile
@tylermneher
tylermneher / service_list.txt
Created April 20, 2022 07:01
Plaid Settlement List
@logicielactif
100CRM
101FinancialGroupLLC
11:FS
11913751CanadaInc
12AdaptiveMarketing
14Cities
17hats
1stSecurityBankofWashington
1stdibsDesignManager,Inc.

How to install Homebrew package manager on Steam Deck

(See also installing Distroboxm, which is included in SteamOS 3.5 and newer: https://distrobox.it/ )
(See also installing Nix package manager: https://determinate.systems/posts/nix-on-the-steam-deck )

You can install Homebrew (a package manager for macOS and Linux) without disabling the read-only partition with sudo steamos-readonly disable.
The package manager can be used alongside Flatpaks. Some software is only available on Flathub, and some software is only available on Homebrew.

  1. Switch to desktop mode (hold power button until a menu appears, then select "Switch to desktop mode")
  2. Click the logo at the bottom left, go to System, then go to Konsole
@martinwoodward
martinwoodward / mermaid.md
Created February 11, 2022 20:34
GitHub HTML Rendering Pipeline
```mermaid
sequenceDiagram
    participant dotcom
    participant iframe
    participant viewscreen
    dotcom->>iframe: loads html w/ iframe url
    iframe->>viewscreen: request template
    viewscreen->>iframe: html & javascript
 iframe->>dotcom: iframe ready
@taontech
taontech / urlschemes.json
Created February 7, 2022 10:07 — forked from esprengle/urlschemes.json
iOS app URL schemes
{
"com.8bit.bitwarden": "bitwarden://",
"com.apple.airport.mobileairportutility": "apmanage://",
"com.apple.appleseed.FeedbackAssistant": "applefeedback://",
"com.apple.AppStore": "itms-apps://itunes.apple.com/",
"com.apple.AppStoreConnect": "shortcuts://run-shortcut?name=Icon%20Themer&input=%7B%22launch%22%3A%22Connect%22%7D",
"com.apple.artistconnect": "shortcuts://run-shortcut?name=Icon%20Themer&input=%7B%22launch%22%3A%22Artists%22%7D",
"com.apple.bnd": "beatsbond://",
"com.apple.Bridge": "com.apple.bridge://x",
"com.apple.calculator": "shortcuts://x-callback-url/run-shortcut?x-error=calc://",
aahed
aalii
aapas
aargh
aarti
abaca
abaci
aback
abacs
abaft
@martinwoodward
martinwoodward / setup.md
Last active December 3, 2023 17:01
Camera Setup
@ThePredators
ThePredators / readme-mde.md
Last active June 20, 2025 02:53
Setup Mobile Development Environment

⭐ Setup Mobile Development Environment

⚠️ The following configuration has been tested on Intel, M1 & M2 Ships ⚠️

Pre-requisit :

If you have any issues with macOS, or need anything related to it check this documentation

Install Xcode Command Line tools :

@esprengle
esprengle / urlschemes.json
Created January 28, 2021 23:25
iOS app URL schemes
{
"com.8bit.bitwarden": "bitwarden://",
"com.apple.airport.mobileairportutility": "apmanage://",
"com.apple.appleseed.FeedbackAssistant": "applefeedback://",
"com.apple.AppStore": "itms-apps://itunes.apple.com/",
"com.apple.AppStoreConnect": "shortcuts://run-shortcut?name=Icon%20Themer&input=%7B%22launch%22%3A%22Connect%22%7D",
"com.apple.artistconnect": "shortcuts://run-shortcut?name=Icon%20Themer&input=%7B%22launch%22%3A%22Artists%22%7D",
"com.apple.bnd": "beatsbond://",
"com.apple.Bridge": "com.apple.bridge://x",
"com.apple.calculator": "shortcuts://x-callback-url/run-shortcut?x-error=calc://",
@rlanyi
rlanyi / download.sh
Created January 18, 2021 07:12
Download Apple Aerial Screensaver video files oneliner
curl http://a1.v2.phobos.apple.com.edgesuite.net/us/r1000/000/Features/atv/AutumnResources/videos/entries.json | jq -r .[].assets[].url | wget -i - -c
@miguelmota
miguelmota / index.html
Created January 3, 2021 06:40
Apple iOS "Add to Home Screen" HTML meta tags
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="application-name" content="MyApp" />
<meta name="apple-mobile-web-app-title" content="MyApp" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="apple-touch-icon" href="/icon.png" />