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 / nest-weather-api.json
Created May 6, 2023 09:32
nest-weather-api.json
{
"07724": {
"current": {
"temp_f": 46,
"temp_c": 7.8,
"condition": "Clear",
"sunrise": 1683366600,
"sunset": 1683417360,
"humidity": 99,
"gmt_offset": "-04.00",
@tylermneher
tylermneher / resume.json
Last active May 4, 2024 20:04
resume.json
{
"meta": {
"theme": "kendall"
},
"basics": {
"name": "Tyler M. Neher",
"label": "Data Scientist and Cybersecurity Professional",
"email": "tyler@neherdata.com",
"photo": "https://github.com/tylermneher.png",
"phone": "732-275-5997",
@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 Distrobox: 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
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 April 9, 2024 21:43
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 :

@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" />