Skip to content

Instantly share code, notes, and snippets.

View pachun's full-sized avatar
🎯
Focusing

Nick Pachulski pachun

🎯
Focusing
View GitHub Profile
const ingredients = [
'Absinthe',
'Agave Syrup',
'Amaretto Liqueur',
'Amaro Liqueur',
'Angostura Bitters',
'Aperol',
'Apple',
'Apple Brandy',
'Applejack',
import React from "react"
import {
AsyncStorage,
FlatList,
KeyboardAvoidingView,
TextInput,
TouchableOpacity,
Vibration,
View,
} from "react-native"
@pachun
pachun / gist:e2b0ffa1fe827fedb242830f2e98e7bb
Last active April 1, 2024 21:29
Copy a Postgres Heroku database locally
$ heroku pg:backups:capture -a too-many-men-api
$ heroku pg:backups:download -a too-many-men-api
$ pg_restore -c -d too_many_men_api_development latest.dump
const injectedJavascript = [
"setTimeout(function() {",
" const metaTag = document.createElement('meta');",
" metaTag.setAttribute('name', 'viewport');",
" metaTag.setAttribute('content', 'width=device-width, initial-scale=1');",
" document.getElementsByTagName('head')[0].appendChild(metaTag);",
" setTimeout(function() {",
" const documentSize = { displayedMessageContentHeight: document.body.scrollHeight };",
import { useRef } from "react"
const useRefsWithKeys = <T>(): {
setRefForKey: (key: string) => (element: T) => void
getRefForKey: (key: string) => T
} => {
const ref = useRef<Record<string, T>>({})
const setRefForKey =
(key: string) =>
module Main exposing (main)
import Browser
import Html exposing (..)
type alias Model =
{}
module Lolcode exposing (main)
import Browser
import Html exposing (..)
type alias Model =
{}
@pachun
pachun / Dock add app.sh
Created June 22, 2022 15:39 — forked from andrewp-as-is/Dock add app.sh
macOS Dock scripts
#!/usr/bin/env bash
path=/Applications/Automator.app
defaults write com.apple.dock persistent-apps -array-add "<dict><key>tile-data</key><dict><key>file-data</key><dict><key>_CFURLString</key><string>$path</string><key>_CFURLStringType</key><integer>0</integer></dict></dict></dict>"; killall Dock
@pachun
pachun / de.sidneys.jxa.toggle-macos-accessibility-keyboard.scpt
Created June 21, 2022 03:29 — forked from sidneys/de.sidneys.jxa.toggle-macos-accessibility-keyboard.scpt
JavaScript for Automation (JXA) | Toggle macOS Accessibility Keyboard
/**
* toggle-macos-accessibility-keyboard
* javascript for automation (jxa)
*
* description:
* macOS automation script to toggle the macOS Accessibility Keyboard.
* Shows and hides the keyboard depending on its current state.
*
* author: sidneys
* homepage: http://sidneys.github.io
@pachun
pachun / spec.rb
Last active September 24, 2021 16:46
plaid_client_double = instance_double(Plaid::Client)
plaid_transactions_double = instance_double(Plaid::Transactions)
ENV["PLAID_ENVIRONMENT"] = "plaid_environment"
ENV["PLAID_CLIENT_ID"] = "plaid_client_id"
ENV["PLAID_SECRET"] = "plaid_secret"
ENV["PLAID_CLIENT_NAME"] = "plaid_client_name"
allow(Plaid::Client).to receive(:new).with(
env: "plaid_environment",